diff --git a/tests/lib/cmsis_dsp/transform/src/cf64.c b/tests/lib/cmsis_dsp/transform/src/cf64.c index a60fbe764f7..65bda073b45 100644 --- a/tests/lib/cmsis_dsp/transform/src/cf64.c +++ b/tests/lib/cmsis_dsp/transform/src/cf64.c @@ -1,6 +1,6 @@ /* - * Copyright (c) 2020 Stephanos Ioannidis - * Copyright (C) 2010-2020 ARM Limited or its affiliates. All rights reserved. + * Copyright (c) 2021 Stephanos Ioannidis + * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 */ @@ -17,10 +17,17 @@ #define SNR_ERROR_THRESH ((float64_t)250) static void test_arm_cfft_f64_cmplx_backend( - const arm_cfft_instance_f64 * inst, bool inverse, - const uint64_t *input, const uint64_t *ref, size_t length) + bool inverse, const uint64_t *input, const uint64_t *ref, size_t length) { + arm_cfft_instance_f64 inst; float64_t *output; + arm_status status; + + /* Initialise instance */ + status = arm_cfft_init_f64(&inst, length / 2); + + zassert_equal(status, ARM_MATH_SUCCESS, + ASSERT_MSG_INCORRECT_COMP_RESULT); /* Allocate output buffer */ output = malloc(length * sizeof(float64_t)); @@ -30,7 +37,7 @@ static void test_arm_cfft_f64_cmplx_backend( memcpy(output, input, length * sizeof(float64_t)); /* Run test function */ - arm_cfft_f64(inst, output, inverse, true); + arm_cfft_f64(&inst, output, inverse, true); /* Validate output */ zassert_true( @@ -43,125 +50,123 @@ static void test_arm_cfft_f64_cmplx_backend( } static void test_arm_cfft_f64_cmplx( - const arm_cfft_instance_f64 * inst, const uint64_t *input, const uint64_t *ref, size_t length) { - test_arm_cfft_f64_cmplx_backend(inst, false, input, ref, length); + test_arm_cfft_f64_cmplx_backend(false, input, ref, length); } -DEFINE_TEST_VARIANT4(arm_cfft_f64_cmplx, noisy_16, &arm_cfft_sR_f64_len16, +DEFINE_TEST_VARIANT3(arm_cfft_f64_cmplx, noisy_16, in_cfft_noisy_16, ref_cfft_noisy_16, 32); -DEFINE_TEST_VARIANT4(arm_cfft_f64_cmplx, noisy_32, &arm_cfft_sR_f64_len32, +DEFINE_TEST_VARIANT3(arm_cfft_f64_cmplx, noisy_32, in_cfft_noisy_32, ref_cfft_noisy_32, 64); -DEFINE_TEST_VARIANT4(arm_cfft_f64_cmplx, noisy_64, &arm_cfft_sR_f64_len64, +DEFINE_TEST_VARIANT3(arm_cfft_f64_cmplx, noisy_64, in_cfft_noisy_64, ref_cfft_noisy_64, 128); -DEFINE_TEST_VARIANT4(arm_cfft_f64_cmplx, noisy_128, &arm_cfft_sR_f64_len128, +DEFINE_TEST_VARIANT3(arm_cfft_f64_cmplx, noisy_128, in_cfft_noisy_128, ref_cfft_noisy_128, 256); -DEFINE_TEST_VARIANT4(arm_cfft_f64_cmplx, noisy_256, &arm_cfft_sR_f64_len256, +DEFINE_TEST_VARIANT3(arm_cfft_f64_cmplx, noisy_256, in_cfft_noisy_256, ref_cfft_noisy_256, 512); -DEFINE_TEST_VARIANT4(arm_cfft_f64_cmplx, noisy_512, &arm_cfft_sR_f64_len512, +DEFINE_TEST_VARIANT3(arm_cfft_f64_cmplx, noisy_512, in_cfft_noisy_512, ref_cfft_noisy_512, 1024); -DEFINE_TEST_VARIANT4(arm_cfft_f64_cmplx, noisy_1024, &arm_cfft_sR_f64_len1024, +DEFINE_TEST_VARIANT3(arm_cfft_f64_cmplx, noisy_1024, in_cfft_noisy_1024, ref_cfft_noisy_1024, 2048); -DEFINE_TEST_VARIANT4(arm_cfft_f64_cmplx, noisy_2048, &arm_cfft_sR_f64_len2048, +DEFINE_TEST_VARIANT3(arm_cfft_f64_cmplx, noisy_2048, in_cfft_noisy_2048, ref_cfft_noisy_2048, 4096); -DEFINE_TEST_VARIANT4(arm_cfft_f64_cmplx, noisy_4096, &arm_cfft_sR_f64_len4096, +DEFINE_TEST_VARIANT3(arm_cfft_f64_cmplx, noisy_4096, in_cfft_noisy_4096, ref_cfft_noisy_4096, 8192); -DEFINE_TEST_VARIANT4(arm_cfft_f64_cmplx, step_16, &arm_cfft_sR_f64_len16, +DEFINE_TEST_VARIANT3(arm_cfft_f64_cmplx, step_16, in_cfft_step_16, ref_cfft_step_16, 32); -DEFINE_TEST_VARIANT4(arm_cfft_f64_cmplx, step_32, &arm_cfft_sR_f64_len32, +DEFINE_TEST_VARIANT3(arm_cfft_f64_cmplx, step_32, in_cfft_step_32, ref_cfft_step_32, 64); -DEFINE_TEST_VARIANT4(arm_cfft_f64_cmplx, step_64, &arm_cfft_sR_f64_len64, +DEFINE_TEST_VARIANT3(arm_cfft_f64_cmplx, step_64, in_cfft_step_64, ref_cfft_step_64, 128); -DEFINE_TEST_VARIANT4(arm_cfft_f64_cmplx, step_128, &arm_cfft_sR_f64_len128, +DEFINE_TEST_VARIANT3(arm_cfft_f64_cmplx, step_128, in_cfft_step_128, ref_cfft_step_128, 256); -DEFINE_TEST_VARIANT4(arm_cfft_f64_cmplx, step_256, &arm_cfft_sR_f64_len256, +DEFINE_TEST_VARIANT3(arm_cfft_f64_cmplx, step_256, in_cfft_step_256, ref_cfft_step_256, 512); -DEFINE_TEST_VARIANT4(arm_cfft_f64_cmplx, step_512, &arm_cfft_sR_f64_len512, +DEFINE_TEST_VARIANT3(arm_cfft_f64_cmplx, step_512, in_cfft_step_512, ref_cfft_step_512, 1024); -DEFINE_TEST_VARIANT4(arm_cfft_f64_cmplx, step_1024, &arm_cfft_sR_f64_len1024, +DEFINE_TEST_VARIANT3(arm_cfft_f64_cmplx, step_1024, in_cfft_step_1024, ref_cfft_step_1024, 2048); -DEFINE_TEST_VARIANT4(arm_cfft_f64_cmplx, step_2048, &arm_cfft_sR_f64_len2048, +DEFINE_TEST_VARIANT3(arm_cfft_f64_cmplx, step_2048, in_cfft_step_2048, ref_cfft_step_2048, 4096); -DEFINE_TEST_VARIANT4(arm_cfft_f64_cmplx, step_4096, &arm_cfft_sR_f64_len4096, +DEFINE_TEST_VARIANT3(arm_cfft_f64_cmplx, step_4096, in_cfft_step_4096, ref_cfft_step_4096, 8192); static void test_arm_cifft_f64_cmplx( - const arm_cfft_instance_f64 * inst, const uint64_t *input, const uint64_t *ref, size_t length) { - test_arm_cfft_f64_cmplx_backend(inst, true, input, ref, length); + test_arm_cfft_f64_cmplx_backend(true, input, ref, length); } -DEFINE_TEST_VARIANT4(arm_cifft_f64_cmplx, noisy_16, &arm_cfft_sR_f64_len16, +DEFINE_TEST_VARIANT3(arm_cifft_f64_cmplx, noisy_16, in_cifft_noisy_16, in_cfft_noisy_16, 32); -DEFINE_TEST_VARIANT4(arm_cifft_f64_cmplx, noisy_32, &arm_cfft_sR_f64_len32, +DEFINE_TEST_VARIANT3(arm_cifft_f64_cmplx, noisy_32, in_cifft_noisy_32, in_cfft_noisy_32, 64); -DEFINE_TEST_VARIANT4(arm_cifft_f64_cmplx, noisy_64, &arm_cfft_sR_f64_len64, +DEFINE_TEST_VARIANT3(arm_cifft_f64_cmplx, noisy_64, in_cifft_noisy_64, in_cfft_noisy_64, 128); -DEFINE_TEST_VARIANT4(arm_cifft_f64_cmplx, noisy_128, &arm_cfft_sR_f64_len128, +DEFINE_TEST_VARIANT3(arm_cifft_f64_cmplx, noisy_128, in_cifft_noisy_128, in_cfft_noisy_128, 256); -DEFINE_TEST_VARIANT4(arm_cifft_f64_cmplx, noisy_256, &arm_cfft_sR_f64_len256, +DEFINE_TEST_VARIANT3(arm_cifft_f64_cmplx, noisy_256, in_cifft_noisy_256, in_cfft_noisy_256, 512); -DEFINE_TEST_VARIANT4(arm_cifft_f64_cmplx, noisy_512, &arm_cfft_sR_f64_len512, +DEFINE_TEST_VARIANT3(arm_cifft_f64_cmplx, noisy_512, in_cifft_noisy_512, in_cfft_noisy_512, 1024); -DEFINE_TEST_VARIANT4(arm_cifft_f64_cmplx, noisy_1024, &arm_cfft_sR_f64_len1024, +DEFINE_TEST_VARIANT3(arm_cifft_f64_cmplx, noisy_1024, in_cifft_noisy_1024, in_cfft_noisy_1024, 2048); -DEFINE_TEST_VARIANT4(arm_cifft_f64_cmplx, noisy_2048, &arm_cfft_sR_f64_len2048, +DEFINE_TEST_VARIANT3(arm_cifft_f64_cmplx, noisy_2048, in_cifft_noisy_2048, in_cfft_noisy_2048, 4096); -DEFINE_TEST_VARIANT4(arm_cifft_f64_cmplx, noisy_4096, &arm_cfft_sR_f64_len4096, +DEFINE_TEST_VARIANT3(arm_cifft_f64_cmplx, noisy_4096, in_cifft_noisy_4096, in_cfft_noisy_4096, 8192); -DEFINE_TEST_VARIANT4(arm_cifft_f64_cmplx, step_16, &arm_cfft_sR_f64_len16, +DEFINE_TEST_VARIANT3(arm_cifft_f64_cmplx, step_16, in_cifft_step_16, in_cfft_step_16, 32); -DEFINE_TEST_VARIANT4(arm_cifft_f64_cmplx, step_32, &arm_cfft_sR_f64_len32, +DEFINE_TEST_VARIANT3(arm_cifft_f64_cmplx, step_32, in_cifft_step_32, in_cfft_step_32, 64); -DEFINE_TEST_VARIANT4(arm_cifft_f64_cmplx, step_64, &arm_cfft_sR_f64_len64, +DEFINE_TEST_VARIANT3(arm_cifft_f64_cmplx, step_64, in_cifft_step_64, in_cfft_step_64, 128); -DEFINE_TEST_VARIANT4(arm_cifft_f64_cmplx, step_128, &arm_cfft_sR_f64_len128, +DEFINE_TEST_VARIANT3(arm_cifft_f64_cmplx, step_128, in_cifft_step_128, in_cfft_step_128, 256); -DEFINE_TEST_VARIANT4(arm_cifft_f64_cmplx, step_256, &arm_cfft_sR_f64_len256, +DEFINE_TEST_VARIANT3(arm_cifft_f64_cmplx, step_256, in_cifft_step_256, in_cfft_step_256, 512); -DEFINE_TEST_VARIANT4(arm_cifft_f64_cmplx, step_512, &arm_cfft_sR_f64_len512, +DEFINE_TEST_VARIANT3(arm_cifft_f64_cmplx, step_512, in_cifft_step_512, in_cfft_step_512, 1024); -DEFINE_TEST_VARIANT4(arm_cifft_f64_cmplx, step_1024, &arm_cfft_sR_f64_len1024, +DEFINE_TEST_VARIANT3(arm_cifft_f64_cmplx, step_1024, in_cifft_step_1024, in_cfft_step_1024, 2048); -DEFINE_TEST_VARIANT4(arm_cifft_f64_cmplx, step_2048, &arm_cfft_sR_f64_len2048, +DEFINE_TEST_VARIANT3(arm_cifft_f64_cmplx, step_2048, in_cifft_step_2048, in_cfft_step_2048, 4096); -DEFINE_TEST_VARIANT4(arm_cifft_f64_cmplx, step_4096, &arm_cfft_sR_f64_len4096, +DEFINE_TEST_VARIANT3(arm_cifft_f64_cmplx, step_4096, in_cifft_step_4096, in_cfft_step_4096, 8192); void test_transform_cf64(void) diff --git a/tests/lib/cmsis_dsp/transform/src/cf64.pat b/tests/lib/cmsis_dsp/transform/src/cf64.pat index 50170d8562d..c9fd0cc6414 100644 --- a/tests/lib/cmsis_dsp/transform/src/cf64.pat +++ b/tests/lib/cmsis_dsp/transform/src/cf64.pat @@ -1,24610 +1,24610 @@ static const uint64_t in_cfft_noisy_16[32] = { - 0x3fa0a425a6ffe96e, 0x0, - 0x3fdf1a830e9af528, 0x0, - 0x3fe4158b45facc14, 0x0, - 0x3fde14d1926d13ca, 0x0, - 0x3fa2e3b9e69f18d5, 0x0, - 0xbfdd5fc75f234002, 0x0, - 0xbfe91c66e089d414, 0x0, - 0xbfddf2377417d0ad, 0x0, - 0x3fab4603137b6431, 0x0, - 0x3fdf7789bfc57a06, 0x0, - 0x3fe6bfb1a337fc22, 0x0, - 0x3fdd623e293820ef, 0x0, - 0x3f850f16268b93ff, 0x0, - 0xbfd9fe60f0b76df4, 0x0, - 0xbfe627a515cf7678, 0x0, - 0xbfe07f4d3848df29, 0x0 + 0xbfa58a3e7ce8c268, 0x0, + 0x3fdf7503d421b8a3, 0x0, + 0x3fe7298971b2f05d, 0x0, + 0x3fe27d5ab48bbded, 0x0, + 0x3f8e957bf3faf458, 0x0, + 0xbfda690069668b72, 0x0, + 0xbfe71fc287a1a803, 0x0, + 0xbfddfb560e6e15ae, 0x0, + 0x3f98de5d5c60cb98, 0x0, + 0x3fdf04b94d0d4acb, 0x0, + 0x3fe5566e79baa53b, 0x0, + 0x3fdffff61cb3edfe, 0x0, + 0xbf7cc7493acba971, 0x0, + 0xbfdfd1ff3dab52f8, 0x0, + 0xbfe701f88151f40a, 0x0, + 0xbfe00d861e2461f8, 0x0 }; static const uint64_t in_cifft_noisy_16[32] = { - 0x3faaf5ca04605d94, 0x0, - 0xbfa4111bdce087b0, 0x3fbec9b6fe7f17c2, - 0xbf860bbd7c76c670, 0xc015e257f8894558, - 0xbfbb41f7fa2c29b7, 0x3fb8942a4e5c4f1e, - 0x3fd15fd31fa4ae1a, 0xbfc55b4d4f143700, - 0x3faaa80a6464a1d3, 0xbfca5194be393fa4, - 0x3fb68420f9c828b9, 0x3fc47f47eb37eb00, - 0x3f85962eeb99390a, 0xbfb32db412574efb, - 0xbfb0562da9db08b6, 0x0, - 0x3f85962eeb9938f8, 0x3fb32db412574efe, - 0x3fb68420f9c828b2, 0xbfc47f47eb37eb00, - 0x3faaa80a6464a1ce, 0x3fca5194be393fa5, - 0x3fd15fd31fa4ae1a, 0x3fc55b4d4f143700, - 0xbfbb41f7fa2c29b6, 0xbfb8942a4e5c4f20, - 0xbf860bbd7c76c838, 0x4015e257f8894558, - 0xbfa4111bdce087ae, 0xbfbec9b6fe7f17c1 + 0x3fbcf6b4ec0d16fe, 0x0, + 0xbfa9c9df688de925, 0xbfcccd2244264894, + 0xbfc1f0d290c2f6c4, 0xc01674b1c6dcc343, + 0xbfbcf489f19d767a, 0x3f8323285fcba484, + 0x3fa50d97df4d528c, 0x3fa52c5e07bb59b0, + 0xbfbafa9b702db951, 0x3fa4f38fc1d5a03d, + 0x3fb6ba1f7d284904, 0x3fa9dd7b1dc49300, + 0x3f6c2757fbfa7eb0, 0xbfbb08516aaad111, + 0xbfce10c05ec04979, 0x0, + 0x3f6c2757fbfa7ed0, 0x3fbb08516aaad111, + 0x3fb6ba1f7d284904, 0xbfa9dd7b1dc49300, + 0xbfbafa9b702db952, 0xbfa4f38fc1d5a03d, + 0x3fa50d97df4d528c, 0xbfa52c5e07bb59b0, + 0xbfbcf489f19d767b, 0xbf8323285fcba484, + 0xbfc1f0d290c2f6c4, 0x401674b1c6dcc343, + 0xbfa9c9df688de923, 0x3fcccd2244264894 }; static const uint64_t ref_cfft_noisy_16[32] = { - 0x3faaf5ca04605d94, 0x0, - 0xbfa4111bdce087b0, 0x3fbec9b6fe7f17c2, - 0xbf860bbd7c76c670, 0xc015e257f8894558, - 0xbfbb41f7fa2c29b7, 0x3fb8942a4e5c4f1e, - 0x3fd15fd31fa4ae1a, 0xbfc55b4d4f143700, - 0x3faaa80a6464a1d3, 0xbfca5194be393fa4, - 0x3fb68420f9c828b9, 0x3fc47f47eb37eb00, - 0x3f85962eeb99390a, 0xbfb32db412574efb, - 0xbfb0562da9db08b6, 0x0, - 0x3f85962eeb9938f8, 0x3fb32db412574efe, - 0x3fb68420f9c828b2, 0xbfc47f47eb37eb00, - 0x3faaa80a6464a1ce, 0x3fca5194be393fa5, - 0x3fd15fd31fa4ae1a, 0x3fc55b4d4f143700, - 0xbfbb41f7fa2c29b6, 0xbfb8942a4e5c4f20, - 0xbf860bbd7c76c838, 0x4015e257f8894558, - 0xbfa4111bdce087ae, 0xbfbec9b6fe7f17c1 + 0x3fbcf6b4ec0d16fe, 0x0, + 0xbfa9c9df688de925, 0xbfcccd2244264894, + 0xbfc1f0d290c2f6c4, 0xc01674b1c6dcc343, + 0xbfbcf489f19d767a, 0x3f8323285fcba484, + 0x3fa50d97df4d528c, 0x3fa52c5e07bb59b0, + 0xbfbafa9b702db951, 0x3fa4f38fc1d5a03d, + 0x3fb6ba1f7d284904, 0x3fa9dd7b1dc49300, + 0x3f6c2757fbfa7eb0, 0xbfbb08516aaad111, + 0xbfce10c05ec04979, 0x0, + 0x3f6c2757fbfa7ed0, 0x3fbb08516aaad111, + 0x3fb6ba1f7d284904, 0xbfa9dd7b1dc49300, + 0xbfbafa9b702db952, 0xbfa4f38fc1d5a03d, + 0x3fa50d97df4d528c, 0xbfa52c5e07bb59b0, + 0xbfbcf489f19d767b, 0xbf8323285fcba484, + 0xbfc1f0d290c2f6c4, 0x401674b1c6dcc343, + 0xbfa9c9df688de923, 0x3fcccd2244264894 }; static const uint64_t in_cfft_noisy_32[64] = { - 0xbfb7727caba4a4e2, 0x0, - 0x3fde42d807df6889, 0x0, - 0x3fe657c04a4cad07, 0x0, - 0x3fdd019c822018ec, 0x0, - 0xbfac3b3073488e80, 0x0, - 0xbfdf2b33554e47f6, 0x0, - 0xbfe72853fd707711, 0x0, - 0xbfe0fd9dde8a95e8, 0x0, - 0xbfa0cc15be30b476, 0x0, - 0x3fdedfdc08fe061d, 0x0, - 0x3fe2d2eca96d84b4, 0x0, - 0x3fde485b3925d608, 0x0, - 0xbf8f221bf61eca51, 0x0, - 0xbfe2d8fb7e6754d9, 0x0, - 0xbfe38660bf43c549, 0x0, - 0xbfe0c6b92cd23b3b, 0x0, - 0xbfb306f202efa7e5, 0x0, - 0x3fe1b30b0bcd973d, 0x0, - 0x3fe4ce3920fa45d0, 0x0, - 0x3fdf271d28240f4c, 0x0, - 0x3fa43e6523ebbac6, 0x0, - 0xbfde9f48b2c03aac, 0x0, - 0xbfe4df565ec71471, 0x0, - 0xbfe0edb107dd04b5, 0x0, - 0xbf7d12cd2e975cae, 0x0, - 0x3fe0d8c627735bbc, 0x0, - 0x3fe73415587f4cd1, 0x0, - 0x3fdec781ebe7721d, 0x0, - 0xbf641386411e31b8, 0x0, - 0xbfdf941ec561b8e6, 0x0, - 0xbfe79b20de7447c0, 0x0, - 0xbfe1eaff635413f6, 0x0 + 0x3fa89117984a9562, 0x0, + 0x3fddc2de7434712d, 0x0, + 0x3fe8953f1cd52833, 0x0, + 0x3fde365b89867849, 0x0, + 0xbfafbe46aab40401, 0x0, + 0xbfdee9c10a4d1b7a, 0x0, + 0xbfe61a026041333c, 0x0, + 0xbfdf0514866bb5c2, 0x0, + 0xbfb4ab8518e22a6c, 0x0, + 0x3fe27b90f4351232, 0x0, + 0x3fe7364e272ce422, 0x0, + 0x3fe09e911971446b, 0x0, + 0xbfbb5531fa2e1aa9, 0x0, + 0xbfddf28d1b1c50ef, 0x0, + 0xbfe6d26da0d26eca, 0x0, + 0xbfe098bc0fcec34a, 0x0, + 0x3fa5058b1de3a42a, 0x0, + 0x3fdcb985e7b42496, 0x0, + 0x3fe64ea42cf02730, 0x0, + 0x3fdd5a9357e2dbe8, 0x0, + 0xbfb47ddf1659640e, 0x0, + 0xbfe06d870dffbc64, 0x0, + 0xbfe78653753192cd, 0x0, + 0xbfdb09e1527bf464, 0x0, + 0x3fa7cb0593aaf57c, 0x0, + 0x3fe16f2910513255, 0x0, + 0x3fe5e228dbc3f202, 0x0, + 0x3fdd98ca4eb214f9, 0x0, + 0x3fa30b8f82a39660, 0x0, + 0xbfdd145b395848c6, 0x0, + 0xbfe2769458fdf6ff, 0x0, + 0xbfe02bdcaf820d19, 0x0 }; static const uint64_t in_cifft_noisy_32[64] = { - 0xbfe20e87bc32f84a, 0x0, - 0xbfc6c7673fc0df29, 0x3fd76c70a6eea912, - 0xbfc1ae3eec2aed60, 0xbfbe241878f594fb, - 0xbfc73705af2ed48b, 0xbfb3475e00775846, - 0xbfc210c649ec0db0, 0xc026417b075c8541, - 0x3fa5119061e1e5e2, 0xbfcc33b3c41c2bfa, - 0xbfaacb87d462ae78, 0xbf5af789c5441460, - 0xbfc01b210fbd8489, 0xbfa47718d1031716, - 0xbfc6a933a9995812, 0xbfce567995d5a538, - 0x3fb27d8fbb415eba, 0xbfb64b0fe40d2d34, - 0xbfd27e51738cee03, 0x3f709e1469d83620, - 0x3fcc69282eb9628f, 0x3fd74bbbc7acd810, - 0xbfca1c9abe2eda48, 0xbfd6d6c34f0334a0, - 0x3fb4b6ffd5287375, 0x3fd3b643684dbdb1, - 0xbf993551863c2408, 0xbfba9470e6c97d5a, - 0xbfb1b8e1671b01ac, 0xbfb67a9c46858a08, - 0xbfa36d44b89046e8, 0x0, - 0xbfb1b8e1671b01ae, 0x3fb67a9c46858a06, - 0xbf993551863c240c, 0x3fba9470e6c97d5b, - 0x3fb4b6ffd528737a, 0xbfd3b643684dbdb0, - 0xbfca1c9abe2eda50, 0x3fd6d6c34f0334a0, - 0x3fcc69282eb96290, 0xbfd74bbbc7acd80f, - 0xbfd27e51738cee03, 0xbf709e1469d83630, - 0x3fb27d8fbb415eb8, 0x3fb64b0fe40d2d35, - 0xbfc6a933a9995812, 0x3fce567995d5a538, - 0xbfc01b210fbd8489, 0x3fa47718d1031718, - 0xbfaacb87d462ae7a, 0x3f5af789c5441460, - 0x3fa5119061e1e5d4, 0x3fcc33b3c41c2bfc, - 0xbfc210c649ec0de8, 0x4026417b075c8541, - 0xbfc73705af2ed48c, 0x3fb3475e00775845, - 0xbfc1ae3eec2aed60, 0x3fbe241878f594fa, - 0xbfc6c7673fc0df28, 0xbfd76c70a6eea914 + 0x3fb9c44a29b4e4f0, 0x0, + 0x3fd54347b2c2333a, 0x3fbe17eb096f811a, + 0xbfa0dc38a6504f18, 0x3fd1e33746ec1ead, + 0x3fb12975e658d145, 0x3f885e3538125848, + 0x3fd6152bf51766e8, 0xc02635c1f3d5fc80, + 0xbfd1d28a567e523e, 0x3fcd89ff1d9b3be4, + 0xbfc43aed2ee5e524, 0x3f9521f998180fe0, + 0xbf832ae373c8384c, 0xbfd4fdae608912af, + 0xbfd42fcc6107458c, 0xbfc16ed9bd7e9390, + 0xbfc107065f7744e6, 0x3fcb571595fe1ad2, + 0x3fc116bf1c3ad388, 0x3fab2872b2c5bb58, + 0xbfb70c3904b9368a, 0xbfa036ea65bed442, + 0x3fc80763c66b54d0, 0x3fb37a27d496d540, + 0xbfc085b2870a16cc, 0xbfb90c6ac7714ddd, + 0x3fe19f78e421af92, 0x3f9688dd0ec3e850, + 0x3fd2f333749a1928, 0xbfca5a16af456f6b, + 0xbfb8e25d838fda50, 0x0, + 0x3fd2f333749a1928, 0x3fca5a16af456f6b, + 0x3fe19f78e421af92, 0xbf9688dd0ec3e850, + 0xbfc085b2870a16cc, 0x3fb90c6ac7714ddd, + 0x3fc80763c66b54d0, 0xbfb37a27d496d540, + 0xbfb70c3904b9368a, 0x3fa036ea65bed442, + 0x3fc116bf1c3ad388, 0xbfab2872b2c5bb58, + 0xbfc107065f7744e6, 0xbfcb571595fe1ad2, + 0xbfd42fcc6107458c, 0x3fc16ed9bd7e9390, + 0xbf832ae373c8384c, 0x3fd4fdae608912af, + 0xbfc43aed2ee5e524, 0xbf9521f998180fe0, + 0xbfd1d28a567e523e, 0xbfcd89ff1d9b3be4, + 0x3fd6152bf51766e8, 0x402635c1f3d5fc80, + 0x3fb12975e658d145, 0xbf885e3538125848, + 0xbfa0dc38a6504f18, 0xbfd1e33746ec1ead, + 0x3fd54347b2c2333a, 0xbfbe17eb096f811a }; static const uint64_t ref_cfft_noisy_32[64] = { - 0xbfe20e87bc32f84a, 0x0, - 0xbfc6c7673fc0df29, 0x3fd76c70a6eea912, - 0xbfc1ae3eec2aed60, 0xbfbe241878f594fb, - 0xbfc73705af2ed48b, 0xbfb3475e00775846, - 0xbfc210c649ec0db0, 0xc026417b075c8541, - 0x3fa5119061e1e5e2, 0xbfcc33b3c41c2bfa, - 0xbfaacb87d462ae78, 0xbf5af789c5441460, - 0xbfc01b210fbd8489, 0xbfa47718d1031716, - 0xbfc6a933a9995812, 0xbfce567995d5a538, - 0x3fb27d8fbb415eba, 0xbfb64b0fe40d2d34, - 0xbfd27e51738cee03, 0x3f709e1469d83620, - 0x3fcc69282eb9628f, 0x3fd74bbbc7acd810, - 0xbfca1c9abe2eda48, 0xbfd6d6c34f0334a0, - 0x3fb4b6ffd5287375, 0x3fd3b643684dbdb1, - 0xbf993551863c2408, 0xbfba9470e6c97d5a, - 0xbfb1b8e1671b01ac, 0xbfb67a9c46858a08, - 0xbfa36d44b89046e8, 0x0, - 0xbfb1b8e1671b01ae, 0x3fb67a9c46858a06, - 0xbf993551863c240c, 0x3fba9470e6c97d5b, - 0x3fb4b6ffd528737a, 0xbfd3b643684dbdb0, - 0xbfca1c9abe2eda50, 0x3fd6d6c34f0334a0, - 0x3fcc69282eb96290, 0xbfd74bbbc7acd80f, - 0xbfd27e51738cee03, 0xbf709e1469d83630, - 0x3fb27d8fbb415eb8, 0x3fb64b0fe40d2d35, - 0xbfc6a933a9995812, 0x3fce567995d5a538, - 0xbfc01b210fbd8489, 0x3fa47718d1031718, - 0xbfaacb87d462ae7a, 0x3f5af789c5441460, - 0x3fa5119061e1e5d4, 0x3fcc33b3c41c2bfc, - 0xbfc210c649ec0de8, 0x4026417b075c8541, - 0xbfc73705af2ed48c, 0x3fb3475e00775845, - 0xbfc1ae3eec2aed60, 0x3fbe241878f594fa, - 0xbfc6c7673fc0df28, 0xbfd76c70a6eea914 + 0x3fb9c44a29b4e4f0, 0x0, + 0x3fd54347b2c2333a, 0x3fbe17eb096f811a, + 0xbfa0dc38a6504f18, 0x3fd1e33746ec1ead, + 0x3fb12975e658d145, 0x3f885e3538125848, + 0x3fd6152bf51766e8, 0xc02635c1f3d5fc80, + 0xbfd1d28a567e523e, 0x3fcd89ff1d9b3be4, + 0xbfc43aed2ee5e524, 0x3f9521f998180fe0, + 0xbf832ae373c8384c, 0xbfd4fdae608912af, + 0xbfd42fcc6107458c, 0xbfc16ed9bd7e9390, + 0xbfc107065f7744e6, 0x3fcb571595fe1ad2, + 0x3fc116bf1c3ad388, 0x3fab2872b2c5bb58, + 0xbfb70c3904b9368a, 0xbfa036ea65bed442, + 0x3fc80763c66b54d0, 0x3fb37a27d496d540, + 0xbfc085b2870a16cc, 0xbfb90c6ac7714ddd, + 0x3fe19f78e421af92, 0x3f9688dd0ec3e850, + 0x3fd2f333749a1928, 0xbfca5a16af456f6b, + 0xbfb8e25d838fda50, 0x0, + 0x3fd2f333749a1928, 0x3fca5a16af456f6b, + 0x3fe19f78e421af92, 0xbf9688dd0ec3e850, + 0xbfc085b2870a16cc, 0x3fb90c6ac7714ddd, + 0x3fc80763c66b54d0, 0xbfb37a27d496d540, + 0xbfb70c3904b9368a, 0x3fa036ea65bed442, + 0x3fc116bf1c3ad388, 0xbfab2872b2c5bb58, + 0xbfc107065f7744e6, 0xbfcb571595fe1ad2, + 0xbfd42fcc6107458c, 0x3fc16ed9bd7e9390, + 0xbf832ae373c8384c, 0x3fd4fdae608912af, + 0xbfc43aed2ee5e524, 0xbf9521f998180fe0, + 0xbfd1d28a567e523e, 0xbfcd89ff1d9b3be4, + 0x3fd6152bf51766e8, 0x402635c1f3d5fc80, + 0x3fb12975e658d145, 0xbf885e3538125848, + 0xbfa0dc38a6504f18, 0xbfd1e33746ec1ead, + 0x3fd54347b2c2333a, 0xbfbe17eb096f811a }; static const uint64_t in_cfft_noisy_64[128] = { - 0xbfa8ba72755e557c, 0x0, - 0x3fdee87baa40e59e, 0x0, - 0x3fe71315059a5aa9, 0x0, - 0x3fdf4934a5b6a7c5, 0x0, - 0xbfa2bf0fcdc4d8f5, 0x0, - 0xbfd9d3bcdff218b1, 0x0, - 0xbfe525581eaf3527, 0x0, - 0xbfe22d5f0ca19349, 0x0, - 0xbf61c8e7d342963b, 0x0, - 0x3fe1c1f7d4bd7c6a, 0x0, - 0x3fe82f2816794859, 0x0, - 0x3fdd22540ed274aa, 0x0, - 0x3f68d5c09b189382, 0x0, - 0xbfdd78ee59d59b2e, 0x0, - 0xbfe924f5e4a7bb78, 0x0, - 0xbfdd24a761f26335, 0x0, - 0xbfa42b238ae1eeb4, 0x0, - 0x3fe17d4801eb7a23, 0x0, - 0x3fe7d0a452c91a59, 0x0, - 0x3fe0b26856663651, 0x0, - 0x3fa72730062eeb26, 0x0, - 0xbfe074abb87f2852, 0x0, - 0xbfe560657c274525, 0x0, - 0xbfe204b9a73dd4c2, 0x0, - 0xbf8b2ebfdcd8f2ab, 0x0, - 0x3fdff8f9e776fc0f, 0x0, - 0x3fe3183ae974aa02, 0x0, - 0x3fe3be8e835ab680, 0x0, - 0x3fa9971f6c8c1510, 0x0, - 0xbfdeebeea2a465e6, 0x0, - 0xbfe62f16d988ece5, 0x0, - 0xbfd9a11107421454, 0x0, - 0x3f695b44b19ca54f, 0x0, - 0x3fdbd1720c896a74, 0x0, - 0x3fe57f32d73f0dff, 0x0, - 0x3fdc41f98489c45e, 0x0, - 0x3f7f7b902963b93c, 0x0, - 0xbfdef3fc9c85852b, 0x0, - 0xbfe45bf8c87dabfa, 0x0, - 0xbfe12b4326211ae6, 0x0, - 0x3fa2e7e1c0f30827, 0x0, - 0x3fe2353321e2cfa7, 0x0, - 0x3fe70a906b646d7b, 0x0, - 0x3fda81ae298a945a, 0x0, - 0xbf5ac6edcf3fb3bb, 0x0, - 0xbfe142ae190fc689, 0x0, - 0xbfe641bba87dd9e0, 0x0, - 0xbfd9c8b8357eb704, 0x0, - 0x3f7b4eb98e8159e0, 0x0, - 0x3fde6b37f7f85bd4, 0x0, - 0x3fe82b039c7062bb, 0x0, - 0x3fe19df8f4223c57, 0x0, - 0xbf90fa9b0a8636db, 0x0, - 0xbfdeb90c70e30198, 0x0, - 0xbfe7965956717c2e, 0x0, - 0xbfe04132c9dd08a6, 0x0, - 0xbfadf45074aaa972, 0x0, - 0x3fdcd304a008fc3a, 0x0, - 0x3fe57f24e3129b91, 0x0, - 0x3fde4123be8c64dd, 0x0, - 0xbf91b3085459ba48, 0x0, - 0xbfe00711a80c9ab5, 0x0, - 0xbfe38001cd7c80ac, 0x0, - 0xbfe09df39b2d24d1, 0x0 + 0xbfa19f3eebc6b9b3, 0x0, + 0x3fe09e332b55834f, 0x0, + 0x3fe5b05db0dbab0f, 0x0, + 0x3fdc8270446799ee, 0x0, + 0xbf862d2dcd7026f8, 0x0, + 0xbfe0896a5f0aded0, 0x0, + 0xbfe4da07fd6cd265, 0x0, + 0xbfdf332f6a79b460, 0x0, + 0x3fbcda97bf2a5f51, 0x0, + 0x3fe0b1417e3c169d, 0x0, + 0x3fe7f7cb5ed5e138, 0x0, + 0x3fdc877e43885564, 0x0, + 0xbf9a4de51307e89a, 0x0, + 0xbfe00ae06b08d636, 0x0, + 0xbfe5a47bc567ff14, 0x0, + 0xbfdc2fdad2259e77, 0x0, + 0x3fa334b7e284708d, 0x0, + 0x3fddea7b84941dd6, 0x0, + 0x3fe6c136a9ed372c, 0x0, + 0x3fde6715d842821a, 0x0, + 0x3fa61ad028349b3a, 0x0, + 0xbfdea11258b7d7e8, 0x0, + 0xbfe5c08e64e72612, 0x0, + 0xbfdf69c267e7ced7, 0x0, + 0x3f953bce0b587569, 0x0, + 0x3fe12ea6d113dd12, 0x0, + 0x3fe5db0cf2456618, 0x0, + 0x3fde1afb478fa5a3, 0x0, + 0xbf8c3660f7388a03, 0x0, + 0xbfe06f1be896f46c, 0x0, + 0xbfe64888a7cb4448, 0x0, + 0xbfd9b06ff322f917, 0x0, + 0xbf8c51e15231bac2, 0x0, + 0x3fdf78476fae1e5b, 0x0, + 0x3fea0778db75123f, 0x0, + 0x3fe03469028f7c4a, 0x0, + 0xbfa026000ff9cbbe, 0x0, + 0xbfe02bc80af35111, 0x0, + 0xbfe818472e8ce877, 0x0, + 0xbfe0e157f36bd1f8, 0x0, + 0xbf815867f9556f0d, 0x0, + 0x3fdd12ab896123e0, 0x0, + 0x3fe59da0f602b765, 0x0, + 0x3fded9501b4f432c, 0x0, + 0x3fb428fa64e19651, 0x0, + 0xbfdc69385cc6df94, 0x0, + 0xbfe63eec8d538fc7, 0x0, + 0xbfdf3c6175c5f250, 0x0, + 0x3fa06a21afac4107, 0x0, + 0x3fe08b3e6a4dbe3a, 0x0, + 0x3fe5a3a4bfb6edc1, 0x0, + 0x3fe31773505abe42, 0x0, + 0xbfb53f51d24bcfaf, 0x0, + 0xbfdd433a9eb73c34, 0x0, + 0xbfe5e541ca38951d, 0x0, + 0xbfdc4cda4b7ed2cf, 0x0, + 0xbfaf538c3f5f446c, 0x0, + 0x3fdd26a62bac3824, 0x0, + 0x3fe71085d7c44808, 0x0, + 0x3fd94eeccab3c48c, 0x0, + 0x3f3a96492cc5e2c3, 0x0, + 0xbfd8c0548e1384f3, 0x0, + 0xbfe6ef96e6103574, 0x0, + 0xbfe1d5ed7bd8ec3b, 0x0 }; static const uint64_t in_cifft_noisy_64[128] = { - 0x3fccde69c1a5998e, 0x0, - 0xbfc6bb80e4fb2c4e, 0xbfc0152a8abea2a0, - 0xbfc06f281f601d1f, 0xbfc6342442da1efe, - 0x3f9513eae68e4110, 0xbfd2771fdf771142, - 0x3fcd0162253a93fb, 0xbfae672a7b9db87a, - 0x3fba36fb94a4ced6, 0xbfb9e933c90e3fcc, - 0xbfc8cc63dd5a1360, 0x3febdf7bd815ddaa, - 0x3fb7d4a15e7a8db6, 0xbfd5e265431774f8, - 0xbfc65c9465567801, 0xc0364a6fa5752cfc, - 0xbfd265667fbcb452, 0x3fc287706e88bbfc, - 0xbfc85a0bc5c05088, 0x3fb794ca00997106, - 0x3fad8f27a8008d72, 0x3fbc829dddf12d5c, - 0x3fb13c567e9b8964, 0x3fd66f80d7610185, - 0xbfd6bda7f8db3a86, 0xbfc001e3333b7681, - 0x3fdd0bb9f1ae7fb2, 0xbfc19a3570a2c35b, - 0xbfc6bc48dd178a3f, 0xbfc357ad3a6f31b6, - 0xbfcda7a577807822, 0xbfc1e1a3544dbff0, - 0xbfe249afe4163f20, 0xbfd6d3328b2c76a0, - 0xbfe25706bd357fda, 0x3fc1dc8565fd0ed0, - 0x3fa2d15df8b4ed50, 0xbfcef97adf86b78f, - 0xbfcf172a0ad11549, 0x3fe7d16b06a181e3, - 0x3fa194900a666340, 0xbfc8d0c15be2b0d7, - 0xbfa2767f22cf95de, 0xbfd59c479523e0b5, - 0x3fcc195ece678aac, 0x3fc65f2c197d13f2, - 0xbfbf709376b596e6, 0xbfa74309dd492700, - 0x3f9f3966fed7d29c, 0x3fc1601a0ea5d7e8, - 0x3fdc719afebd52fa, 0xbfce3cb34b965c4a, - 0xbfc9d7b18fc5bc0e, 0xbfe3ff505ba9c00b, - 0xbfcb79c0b4eb8aae, 0x3fc93264a79940c7, - 0x3fd7c36c44c35b5a, 0xbfcc412dde1a7308, - 0x3fbf9b89f98e6261, 0x3fd1d0c7b8d5f1f3, - 0xbf9189c53b86e020, 0xbfcbcf63a32cd2b4, - 0xbfb635a3d0659ba4, 0x0, - 0xbf9189c53b86e030, 0x3fcbcf63a32cd2ba, - 0x3fbf9b89f98e626a, 0xbfd1d0c7b8d5f1f4, - 0x3fd7c36c44c35b57, 0x3fcc412dde1a730b, - 0xbfcb79c0b4eb8aad, 0xbfc93264a79940c8, - 0xbfc9d7b18fc5bc11, 0x3fe3ff505ba9c00a, - 0x3fdc719afebd52f8, 0x3fce3cb34b965c56, - 0x3f9f3966fed7d29a, 0xbfc1601a0ea5d7e8, - 0xbfbf709376b59702, 0x3fa74309dd492700, - 0x3fcc195ece678aaf, 0xbfc65f2c197d13f0, - 0xbfa2767f22cf9606, 0x3fd59c479523e0b6, - 0x3fa194900a666332, 0x3fc8d0c15be2b0da, - 0xbfcf172a0ad11544, 0xbfe7d16b06a181e4, - 0x3fa2d15df8b4ed40, 0x3fcef97adf86b793, - 0xbfe25706bd357fd9, 0xbfc1dc8565fd0ed7, - 0xbfe249afe4163f21, 0x3fd6d3328b2c769f, - 0xbfcda7a577807822, 0x3fc1e1a3544dbff0, - 0xbfc6bc48dd178a41, 0x3fc357ad3a6f31b3, - 0x3fdd0bb9f1ae7fb4, 0x3fc19a3570a2c362, - 0xbfd6bda7f8db3a86, 0x3fc001e3333b767d, - 0x3fb13c567e9b8966, 0xbfd66f80d7610186, - 0x3fad8f27a8008d78, 0xbfbc829dddf12d56, - 0xbfc85a0bc5c0508c, 0xbfb794ca00997110, - 0xbfd265667fbcb452, 0xbfc287706e88bc00, - 0xbfc65c9465567873, 0x40364a6fa5752cfc, - 0x3fb7d4a15e7a8dad, 0x3fd5e265431774f8, - 0xbfc8cc63dd5a1359, 0xbfebdf7bd815ddac, - 0x3fba36fb94a4ced5, 0x3fb9e933c90e3fc8, - 0x3fcd0162253a93fa, 0x3fae672a7b9db884, - 0x3f9513eae68e4100, 0x3fd2771fdf771142, - 0xbfc06f281f601d1e, 0x3fc6342442da1f00, - 0xbfc6bb80e4fb2c50, 0x3fc0152a8abea29e + 0x3fd5a7d809c69672, 0x0, + 0xbfc0888dfcbee041, 0xbfc4dd2c1782fa98, + 0xbfd2c897bc05e7da, 0xbf9e9949cb0c1f58, + 0xbfd177560ef7e04c, 0xbfd409e99fc598f4, + 0x3fc8d2ccccca658c, 0xbf952e0de063d9b8, + 0xbfdb9db0b9beb405, 0x3fd6f09e82d345c6, + 0x3fca3589b4a7e648, 0x3f852ef0930fd968, + 0xbf9eff0b8dd91ef4, 0x3fe2cf6f8bcb294c, + 0x3fcabb5dfea926d4, 0xc03629cd30698880, + 0x3fa9c928f19b4b56, 0xbfc543d613d8b1ef, + 0xbfc4acbced865fe9, 0xbfcce7b5f46188c4, + 0xbfdc961ddc9294aa, 0xbfbc986e7accbb14, + 0xbfd659c72f7484be, 0xbfb7bb0e535b50d9, + 0x3fd72587ac715be1, 0xbfd055749fc34ff0, + 0xbfcc040df945d319, 0xbfa7803c789b9a28, + 0xbf99fb2c94395d67, 0xbfd14f634994f846, + 0xbfbc6749b2977d58, 0xbfc6d73e331ebad0, + 0xbfb16ceb63cce227, 0xbfd69827b9a05cd5, + 0xbfc75b24604478fc, 0xbfd6766cbedcd099, + 0x3fdb406f034fd85c, 0xbfe2dad3e56d2838, + 0x3fcba2d7abb8d5bd, 0x3fcf569a673916e1, + 0x3fd5f56648f1e51a, 0xbfb747c4aa2cbd24, + 0xbfc19b1f0b5c6533, 0x3fd075e9347a8a26, + 0x3fc298bcdcb9a6d8, 0xbfc6f0ee488f2d90, + 0x3fa7c0be0b8b9966, 0x3fd6d21527bc7e20, + 0x3fb65d0a078b70ae, 0x3fb19b40ba34e844, + 0xbfc7475d292b859e, 0x3fb8660ae58b93fa, + 0xbfe20c1492553c85, 0xbfc75edb6ce4c7ba, + 0xbfcd80640e0901c5, 0xbfc5d955bfa93723, + 0x3fc94d04897e40b1, 0xbfba84d5e4d80450, + 0x3f9d277ccfa66258, 0x3fdb2b07f35764fa, + 0x3f9be40a90d89be4, 0x3fdc396d1a49e3fc, + 0x3faba68f3117eb10, 0x0, + 0x3f9be40a90d89bd8, 0xbfdc396d1a49e3fc, + 0x3f9d277ccfa66250, 0xbfdb2b07f35764fa, + 0x3fc94d04897e40b1, 0x3fba84d5e4d8044e, + 0xbfcd80640e0901c4, 0x3fc5d955bfa93723, + 0xbfe20c1492553c86, 0x3fc75edb6ce4c7bb, + 0xbfc7475d292b859e, 0xbfb8660ae58b93fb, + 0x3fb65d0a078b70af, 0xbfb19b40ba34e840, + 0x3fa7c0be0b8b9966, 0xbfd6d21527bc7e20, + 0x3fc298bcdcb9a6da, 0x3fc6f0ee488f2d8f, + 0xbfc19b1f0b5c6533, 0xbfd075e9347a8a26, + 0x3fd5f56648f1e51a, 0x3fb747c4aa2cbd24, + 0x3fcba2d7abb8d5bf, 0xbfcf569a673916e2, + 0x3fdb406f034fd85b, 0x3fe2dad3e56d2838, + 0xbfc75b24604478fd, 0x3fd6766cbedcd09a, + 0xbfb16ceb63cce226, 0x3fd69827b9a05cd6, + 0xbfbc6749b2977d58, 0x3fc6d73e331ebad0, + 0xbf99fb2c94395d64, 0x3fd14f634994f845, + 0xbfcc040df945d31a, 0x3fa7803c789b9a20, + 0x3fd72587ac715be0, 0x3fd055749fc34ff0, + 0xbfd659c72f7484be, 0x3fb7bb0e535b50da, + 0xbfdc961ddc9294aa, 0x3fbc986e7accbb14, + 0xbfc4acbced865fe9, 0x3fcce7b5f46188c5, + 0x3fa9c928f19b4b5a, 0x3fc543d613d8b1f0, + 0x3fcabb5dfea926d4, 0x403629cd30698880, + 0xbf9eff0b8dd91ef2, 0xbfe2cf6f8bcb294c, + 0x3fca3589b4a7e64a, 0xbf852ef0930fd960, + 0xbfdb9db0b9beb405, 0xbfd6f09e82d345c7, + 0x3fc8d2ccccca658d, 0x3f952e0de063d9b8, + 0xbfd177560ef7e04c, 0x3fd409e99fc598f5, + 0xbfd2c897bc05e7da, 0x3f9e9949cb0c1f50, + 0xbfc0888dfcbee042, 0x3fc4dd2c1782fa97 }; static const uint64_t ref_cfft_noisy_64[128] = { - 0x3fccde69c1a5998e, 0x0, - 0xbfc6bb80e4fb2c4e, 0xbfc0152a8abea2a0, - 0xbfc06f281f601d1f, 0xbfc6342442da1efe, - 0x3f9513eae68e4110, 0xbfd2771fdf771142, - 0x3fcd0162253a93fb, 0xbfae672a7b9db87a, - 0x3fba36fb94a4ced6, 0xbfb9e933c90e3fcc, - 0xbfc8cc63dd5a1360, 0x3febdf7bd815ddaa, - 0x3fb7d4a15e7a8db6, 0xbfd5e265431774f8, - 0xbfc65c9465567801, 0xc0364a6fa5752cfc, - 0xbfd265667fbcb452, 0x3fc287706e88bbfc, - 0xbfc85a0bc5c05088, 0x3fb794ca00997106, - 0x3fad8f27a8008d72, 0x3fbc829dddf12d5c, - 0x3fb13c567e9b8964, 0x3fd66f80d7610185, - 0xbfd6bda7f8db3a86, 0xbfc001e3333b7681, - 0x3fdd0bb9f1ae7fb2, 0xbfc19a3570a2c35b, - 0xbfc6bc48dd178a3f, 0xbfc357ad3a6f31b6, - 0xbfcda7a577807822, 0xbfc1e1a3544dbff0, - 0xbfe249afe4163f20, 0xbfd6d3328b2c76a0, - 0xbfe25706bd357fda, 0x3fc1dc8565fd0ed0, - 0x3fa2d15df8b4ed50, 0xbfcef97adf86b78f, - 0xbfcf172a0ad11549, 0x3fe7d16b06a181e3, - 0x3fa194900a666340, 0xbfc8d0c15be2b0d7, - 0xbfa2767f22cf95de, 0xbfd59c479523e0b5, - 0x3fcc195ece678aac, 0x3fc65f2c197d13f2, - 0xbfbf709376b596e6, 0xbfa74309dd492700, - 0x3f9f3966fed7d29c, 0x3fc1601a0ea5d7e8, - 0x3fdc719afebd52fa, 0xbfce3cb34b965c4a, - 0xbfc9d7b18fc5bc0e, 0xbfe3ff505ba9c00b, - 0xbfcb79c0b4eb8aae, 0x3fc93264a79940c7, - 0x3fd7c36c44c35b5a, 0xbfcc412dde1a7308, - 0x3fbf9b89f98e6261, 0x3fd1d0c7b8d5f1f3, - 0xbf9189c53b86e020, 0xbfcbcf63a32cd2b4, - 0xbfb635a3d0659ba4, 0x0, - 0xbf9189c53b86e030, 0x3fcbcf63a32cd2ba, - 0x3fbf9b89f98e626a, 0xbfd1d0c7b8d5f1f4, - 0x3fd7c36c44c35b57, 0x3fcc412dde1a730b, - 0xbfcb79c0b4eb8aad, 0xbfc93264a79940c8, - 0xbfc9d7b18fc5bc11, 0x3fe3ff505ba9c00a, - 0x3fdc719afebd52f8, 0x3fce3cb34b965c56, - 0x3f9f3966fed7d29a, 0xbfc1601a0ea5d7e8, - 0xbfbf709376b59702, 0x3fa74309dd492700, - 0x3fcc195ece678aaf, 0xbfc65f2c197d13f0, - 0xbfa2767f22cf9606, 0x3fd59c479523e0b6, - 0x3fa194900a666332, 0x3fc8d0c15be2b0da, - 0xbfcf172a0ad11544, 0xbfe7d16b06a181e4, - 0x3fa2d15df8b4ed40, 0x3fcef97adf86b793, - 0xbfe25706bd357fd9, 0xbfc1dc8565fd0ed7, - 0xbfe249afe4163f21, 0x3fd6d3328b2c769f, - 0xbfcda7a577807822, 0x3fc1e1a3544dbff0, - 0xbfc6bc48dd178a41, 0x3fc357ad3a6f31b3, - 0x3fdd0bb9f1ae7fb4, 0x3fc19a3570a2c362, - 0xbfd6bda7f8db3a86, 0x3fc001e3333b767d, - 0x3fb13c567e9b8966, 0xbfd66f80d7610186, - 0x3fad8f27a8008d78, 0xbfbc829dddf12d56, - 0xbfc85a0bc5c0508c, 0xbfb794ca00997110, - 0xbfd265667fbcb452, 0xbfc287706e88bc00, - 0xbfc65c9465567873, 0x40364a6fa5752cfc, - 0x3fb7d4a15e7a8dad, 0x3fd5e265431774f8, - 0xbfc8cc63dd5a1359, 0xbfebdf7bd815ddac, - 0x3fba36fb94a4ced5, 0x3fb9e933c90e3fc8, - 0x3fcd0162253a93fa, 0x3fae672a7b9db884, - 0x3f9513eae68e4100, 0x3fd2771fdf771142, - 0xbfc06f281f601d1e, 0x3fc6342442da1f00, - 0xbfc6bb80e4fb2c50, 0x3fc0152a8abea29e + 0x3fd5a7d809c69672, 0x0, + 0xbfc0888dfcbee041, 0xbfc4dd2c1782fa98, + 0xbfd2c897bc05e7da, 0xbf9e9949cb0c1f58, + 0xbfd177560ef7e04c, 0xbfd409e99fc598f4, + 0x3fc8d2ccccca658c, 0xbf952e0de063d9b8, + 0xbfdb9db0b9beb405, 0x3fd6f09e82d345c6, + 0x3fca3589b4a7e648, 0x3f852ef0930fd968, + 0xbf9eff0b8dd91ef4, 0x3fe2cf6f8bcb294c, + 0x3fcabb5dfea926d4, 0xc03629cd30698880, + 0x3fa9c928f19b4b56, 0xbfc543d613d8b1ef, + 0xbfc4acbced865fe9, 0xbfcce7b5f46188c4, + 0xbfdc961ddc9294aa, 0xbfbc986e7accbb14, + 0xbfd659c72f7484be, 0xbfb7bb0e535b50d9, + 0x3fd72587ac715be1, 0xbfd055749fc34ff0, + 0xbfcc040df945d319, 0xbfa7803c789b9a28, + 0xbf99fb2c94395d67, 0xbfd14f634994f846, + 0xbfbc6749b2977d58, 0xbfc6d73e331ebad0, + 0xbfb16ceb63cce227, 0xbfd69827b9a05cd5, + 0xbfc75b24604478fc, 0xbfd6766cbedcd099, + 0x3fdb406f034fd85c, 0xbfe2dad3e56d2838, + 0x3fcba2d7abb8d5bd, 0x3fcf569a673916e1, + 0x3fd5f56648f1e51a, 0xbfb747c4aa2cbd24, + 0xbfc19b1f0b5c6533, 0x3fd075e9347a8a26, + 0x3fc298bcdcb9a6d8, 0xbfc6f0ee488f2d90, + 0x3fa7c0be0b8b9966, 0x3fd6d21527bc7e20, + 0x3fb65d0a078b70ae, 0x3fb19b40ba34e844, + 0xbfc7475d292b859e, 0x3fb8660ae58b93fa, + 0xbfe20c1492553c85, 0xbfc75edb6ce4c7ba, + 0xbfcd80640e0901c5, 0xbfc5d955bfa93723, + 0x3fc94d04897e40b1, 0xbfba84d5e4d80450, + 0x3f9d277ccfa66258, 0x3fdb2b07f35764fa, + 0x3f9be40a90d89be4, 0x3fdc396d1a49e3fc, + 0x3faba68f3117eb10, 0x0, + 0x3f9be40a90d89bd8, 0xbfdc396d1a49e3fc, + 0x3f9d277ccfa66250, 0xbfdb2b07f35764fa, + 0x3fc94d04897e40b1, 0x3fba84d5e4d8044e, + 0xbfcd80640e0901c4, 0x3fc5d955bfa93723, + 0xbfe20c1492553c86, 0x3fc75edb6ce4c7bb, + 0xbfc7475d292b859e, 0xbfb8660ae58b93fb, + 0x3fb65d0a078b70af, 0xbfb19b40ba34e840, + 0x3fa7c0be0b8b9966, 0xbfd6d21527bc7e20, + 0x3fc298bcdcb9a6da, 0x3fc6f0ee488f2d8f, + 0xbfc19b1f0b5c6533, 0xbfd075e9347a8a26, + 0x3fd5f56648f1e51a, 0x3fb747c4aa2cbd24, + 0x3fcba2d7abb8d5bf, 0xbfcf569a673916e2, + 0x3fdb406f034fd85b, 0x3fe2dad3e56d2838, + 0xbfc75b24604478fd, 0x3fd6766cbedcd09a, + 0xbfb16ceb63cce226, 0x3fd69827b9a05cd6, + 0xbfbc6749b2977d58, 0x3fc6d73e331ebad0, + 0xbf99fb2c94395d64, 0x3fd14f634994f845, + 0xbfcc040df945d31a, 0x3fa7803c789b9a20, + 0x3fd72587ac715be0, 0x3fd055749fc34ff0, + 0xbfd659c72f7484be, 0x3fb7bb0e535b50da, + 0xbfdc961ddc9294aa, 0x3fbc986e7accbb14, + 0xbfc4acbced865fe9, 0x3fcce7b5f46188c5, + 0x3fa9c928f19b4b5a, 0x3fc543d613d8b1f0, + 0x3fcabb5dfea926d4, 0x403629cd30698880, + 0xbf9eff0b8dd91ef2, 0xbfe2cf6f8bcb294c, + 0x3fca3589b4a7e64a, 0xbf852ef0930fd960, + 0xbfdb9db0b9beb405, 0xbfd6f09e82d345c7, + 0x3fc8d2ccccca658d, 0x3f952e0de063d9b8, + 0xbfd177560ef7e04c, 0x3fd409e99fc598f5, + 0xbfd2c897bc05e7da, 0x3f9e9949cb0c1f50, + 0xbfc0888dfcbee042, 0x3fc4dd2c1782fa97 }; static const uint64_t in_cfft_noisy_128[256] = { - 0xbfb7a6d1e151be34, 0x0, - 0x3fdd7e20bcba99f8, 0x0, - 0x3fe56e83948e3796, 0x0, - 0x3fdf8f73d6ec562b, 0x0, - 0x3f8a3a468293e7b1, 0x0, - 0xbfe168955bd5b74c, 0x0, - 0xbfe752f7871cd1fb, 0x0, - 0xbfe0b8671545bcf1, 0x0, - 0xbf865081f5e61cac, 0x0, - 0x3fe0bad7dbe6b151, 0x0, - 0x3fe417ed6410785e, 0x0, - 0x3fe097108d806fb0, 0x0, - 0xbf9ea6d0f714614d, 0x0, - 0xbfdc5059072560c7, 0x0, - 0xbfe57bcdf2d61259, 0x0, - 0xbfe1aa10e7a0e37b, 0x0, - 0xbf96082f251e2f9e, 0x0, - 0x3fe19d2c7400da94, 0x0, - 0x3fe6ac925eae8823, 0x0, - 0x3fdc97d40d4cdd48, 0x0, - 0x3fb0d16c1645c890, 0x0, - 0xbfdb88ff9b043bc9, 0x0, - 0xbfe72491664c67b6, 0x0, - 0xbfe0b577e42f393f, 0x0, - 0x3f85dcf2e5054c51, 0x0, - 0x3fe077b26867bd1f, 0x0, - 0x3fe66dfbc6b53701, 0x0, - 0x3fdd0c54efee10ad, 0x0, - 0x3fa44d0832febdc7, 0x0, - 0xbfde7e27f3ee7224, 0x0, - 0xbfe455dcad9eff5a, 0x0, - 0xbfdff345bfe68c99, 0x0, - 0x3fb14502cb7a613c, 0x0, - 0x3fdb0ae9cb702a72, 0x0, - 0x3fe5ed75f2cac982, 0x0, - 0x3fdbc79d28ad8d16, 0x0, - 0xbf80dcbe055f559a, 0x0, - 0xbfdeae2c9837d06c, 0x0, - 0xbfe2f79794571c5e, 0x0, - 0xbfdf8d79061697ce, 0x0, - 0x3fa66fc4bd54b916, 0x0, - 0x3fe00980a637e4fe, 0x0, - 0x3fe438c583b45ba1, 0x0, - 0x3fddf4fcbf2fe95c, 0x0, - 0x3f7f3f15db386582, 0x0, - 0xbfe13d55cbbc849a, 0x0, - 0xbfe4189e4e16315a, 0x0, - 0xbfdc801c9514b4d8, 0x0, - 0xbfa04f01a7fe148b, 0x0, - 0x3fe18cc256c47c64, 0x0, - 0x3fe6f5521e3fef7f, 0x0, - 0x3fe0ca6d2b9f107a, 0x0, - 0xbf8be89f184436cb, 0x0, - 0xbfe1977555a4ef8c, 0x0, - 0xbfe49f9fe4897b0e, 0x0, - 0xbfe04a38dc79a5a4, 0x0, - 0x3fa28bd24a3037aa, 0x0, - 0x3fda23bf2b13c96c, 0x0, - 0x3fe8113ed31d40a2, 0x0, - 0x3fdc1ed8c03246c2, 0x0, - 0xbfa38cd9e859c2eb, 0x0, - 0xbfdaf500114cb352, 0x0, - 0xbfe9396e13a7fd38, 0x0, - 0xbfe258439bb202ed, 0x0, - 0xbfb398e4e2b48c2b, 0x0, - 0x3fe176074e05ba1a, 0x0, - 0x3fe6d82e18a1b70c, 0x0, - 0x3fdd73b814534ad2, 0x0, - 0x3f6b623d26c1a581, 0x0, - 0xbfdeaf5139392593, 0x0, - 0xbfea1ed71fa794bb, 0x0, - 0xbfddc20609145e23, 0x0, - 0xbf87c5672665d219, 0x0, - 0x3fddf33456250fe3, 0x0, - 0x3fe54185e78a629c, 0x0, - 0x3fdf72193875994a, 0x0, - 0xbf90bcbff0a5fe83, 0x0, - 0xbfddb3575e930143, 0x0, - 0xbfe893add732ff5e, 0x0, - 0xbfe2b90423c7b1c8, 0x0, - 0x3fb65833981832e0, 0x0, - 0x3fdc11dbad0e9c90, 0x0, - 0x3fe9c5b0ea075a47, 0x0, - 0x3fde1ecca6a1afe2, 0x0, - 0xbf9e7ca7d860c2e3, 0x0, - 0xbfe003b7d62d7450, 0x0, - 0xbfe3d4860aa6502f, 0x0, - 0xbfe101b6a9c7fc37, 0x0, - 0x3faa5c8262d04773, 0x0, - 0x3fe2092bb5689178, 0x0, - 0x3fe80b8d52de64b7, 0x0, - 0x3fe0d8c0ec395053, 0x0, - 0xbf51c98df4875378, 0x0, - 0xbfe03607be9cf79d, 0x0, - 0xbfe771837e281819, 0x0, - 0xbfdf102183dca452, 0x0, - 0xbfa432ee1e64b874, 0x0, - 0x3fdc302596aceb04, 0x0, - 0x3fe5a0dfb0835bd4, 0x0, - 0x3fe1e19977d23895, 0x0, - 0x3f9d0d5b00b8f4e4, 0x0, - 0xbfe0ec62b9dcd312, 0x0, - 0xbfe552e26ac88e7a, 0x0, - 0xbfe130c888ceacc4, 0x0, - 0xbfa50fe04a6e7e93, 0x0, - 0x3fe02e0d09a236a1, 0x0, - 0x3fe70cb27ad8c1f1, 0x0, - 0x3fdef3f2392a2573, 0x0, - 0x3fb104530e6abd69, 0x0, - 0xbfda9d7dc9604ae2, 0x0, - 0xbfe5b5a6938e94e9, 0x0, - 0xbfe0e9281756ca3a, 0x0, - 0x3fa7ce6b3ac26d49, 0x0, - 0x3fe1047116792f2d, 0x0, - 0x3fe90551a7318f6a, 0x0, - 0x3fe1794a2bf9bc3e, 0x0, - 0xbf9fa0e536a6a2bd, 0x0, - 0xbfde3a106edefdd7, 0x0, - 0xbfe722c07ce7bc6a, 0x0, - 0xbfdd860ad301f750, 0x0, - 0xbf7a76adb309305b, 0x0, - 0x3fdb9d1a64aa99c3, 0x0, - 0x3fe5ccf008a8d934, 0x0, - 0x3fe0266e1519950a, 0x0, - 0x3fae2f9d9b205d3f, 0x0, - 0xbfdfad3c362e4cd9, 0x0, - 0xbfe68ddffa47a57f, 0x0, - 0xbfe1503bdccb2493, 0x0 + 0xbf8255c35c4ecec7, 0x0, + 0x3fe0f66c830ecc1b, 0x0, + 0x3fe5280da71c812f, 0x0, + 0x3fe050f9716d7c99, 0x0, + 0xbf96605179ee2db0, 0x0, + 0xbfdc797571a8b236, 0x0, + 0xbfe6a28bd97327b7, 0x0, + 0xbfdc9f40e0a8150f, 0x0, + 0xbf723f0de90e5be9, 0x0, + 0x3fde3b421e08786f, 0x0, + 0x3fe6cd67639cd228, 0x0, + 0x3fe1cdf25bcf9cf8, 0x0, + 0x3faa6022425dc24c, 0x0, + 0xbfdd268324057c35, 0x0, + 0xbfe54abe72ed2e20, 0x0, + 0xbfddc3fa8af82ebc, 0x0, + 0xbf9b14d9ebd79550, 0x0, + 0x3fe0a7b02eac1a83, 0x0, + 0x3fe6b42a0f4692ed, 0x0, + 0x3fdfaa1d9c374e2a, 0x0, + 0x3fa93d28c260c706, 0x0, + 0xbfe13cb83c778845, 0x0, + 0xbfe60fd8e2530ee3, 0x0, + 0xbfe2254cbce5c318, 0x0, + 0xbfafe4fed873fd7a, 0x0, + 0x3fdcf433e52f241c, 0x0, + 0x3fe5390e21933a0c, 0x0, + 0x3fda4396664b3c3f, 0x0, + 0xbfa29a963cb64848, 0x0, + 0xbfdedfebb22846dc, 0x0, + 0xbfe64a755e8b9da0, 0x0, + 0xbfe1cb9b66eaf69a, 0x0, + 0x3f4d9152ca380738, 0x0, + 0x3fdeff399ceca5fc, 0x0, + 0x3fe328392dd1f32a, 0x0, + 0x3fe0004e39a7d476, 0x0, + 0x3f8ac67b6a68f9e5, 0x0, + 0xbfde457efa69eb57, 0x0, + 0xbfe62ff6330169ab, 0x0, + 0xbfe02baa867389c4, 0x0, + 0x3fa7906a1a7f2014, 0x0, + 0x3fe09b19059693d2, 0x0, + 0x3fe7875f8e9fd060, 0x0, + 0x3fdd4c09c0c8d539, 0x0, + 0x3f8d83adcb58f85e, 0x0, + 0xbfdc994ce949073c, 0x0, + 0xbfe51654cf3ef23c, 0x0, + 0xbfe1472a43c2614c, 0x0, + 0xbf8154847b0abd5e, 0x0, + 0x3fe001823081511b, 0x0, + 0x3fe6f81bf1e11a9f, 0x0, + 0x3fe092c06aa637c5, 0x0, + 0x3fa0f805f0f52d05, 0x0, + 0xbfdc46020564b28e, 0x0, + 0xbfe5d627d2a749a8, 0x0, + 0xbfe0d5343c7b2cd5, 0x0, + 0x3f8ae74b1e9bffb1, 0x0, + 0x3fe09ce9d793bb03, 0x0, + 0x3fe60deaf1a0f874, 0x0, + 0x3fdbb2756272fc74, 0x0, + 0xbfa87cf11b38b3df, 0x0, + 0xbfdfa20a226d5cdc, 0x0, + 0xbfe5e6edeff9e2d0, 0x0, + 0xbfdf0503bde96d3b, 0x0, + 0xbfb01c8e7682021b, 0x0, + 0x3fe2631ac0c57c2c, 0x0, + 0x3fe5e48f2dcdbc0b, 0x0, + 0x3fe388aec04fc1d3, 0x0, + 0xbf53f9b6987b9dc0, 0x0, + 0xbfe0f5e720f3b121, 0x0, + 0xbfe64d58fa57abb3, 0x0, + 0xbfdf6b4811cbcee0, 0x0, + 0xbfb357dfbe83a28e, 0x0, + 0x3fdebfaecedd5fb6, 0x0, + 0x3fe3562c37d256cd, 0x0, + 0x3fe025fb55a091b9, 0x0, + 0x3fc1b255bba56b33, 0x0, + 0xbfdf110bbf428968, 0x0, + 0xbfe53b4f7ac4e3f2, 0x0, + 0xbfdd443f037c2616, 0x0, + 0xbf981e510ea5bb1a, 0x0, + 0x3fe11d4afc5eb137, 0x0, + 0x3fe6ca8f9b505234, 0x0, + 0x3fdd772dd192a776, 0x0, + 0x3f90a594625f2faf, 0x0, + 0xbfe1dc3157251947, 0x0, + 0xbfe4f1c2f017ab70, 0x0, + 0xbfdbac0246f3e7ca, 0x0, + 0x3f8a08ae3854f3d0, 0x0, + 0x3fe3c17291a5fcf0, 0x0, + 0x3fe6aac20074bdb9, 0x0, + 0x3fe0bffada4ecdc5, 0x0, + 0x3fa0a42ed2c05ace, 0x0, + 0xbfdbb2ceb00ee108, 0x0, + 0xbfe5e7275492aaec, 0x0, + 0xbfe109c7cf5cc1d2, 0x0, + 0xbf9f68888cdb322b, 0x0, + 0x3fe063b478be51d5, 0x0, + 0x3fe34febd911b29e, 0x0, + 0x3fddaa53cbbe1c42, 0x0, + 0x3faf530c8500aa26, 0x0, + 0xbfe2d6f27c147e61, 0x0, + 0xbfe6603f624e7e04, 0x0, + 0xbfe1e3fb88c7ef7f, 0x0, + 0xbfa24cd78b11399f, 0x0, + 0x3fe318dd1f4bafda, 0x0, + 0x3fe87168ca63fe7a, 0x0, + 0x3fda1a820840bd1d, 0x0, + 0x3fa689ef83be2c00, 0x0, + 0xbfde7b0b20ac6d6a, 0x0, + 0xbfe8ed4aaad00501, 0x0, + 0xbfde3c8ac22884e0, 0x0, + 0x3f735ba1ca0ac551, 0x0, + 0x3fdf3f91fbab1772, 0x0, + 0x3fe57f7b3740a70d, 0x0, + 0x3fde407d759e9490, 0x0, + 0xbf7b4f976e72af36, 0x0, + 0xbfddfdde2ebea5e9, 0x0, + 0xbfe4067b8bcefaf2, 0x0, + 0xbfe213d8f58050c9, 0x0, + 0xbfa174dbc20d37bd, 0x0, + 0x3fdbde4a794e0196, 0x0, + 0x3fe8cd3caea9e62f, 0x0, + 0x3fe144cea3b45814, 0x0, + 0x3f9c17d15b18af33, 0x0, + 0xbfdc0f27ae8c0d40, 0x0, + 0xbfe3c4b8fee06bd0, 0x0, + 0xbfe1362577479091, 0x0 }; static const uint64_t in_cifft_noisy_128[256] = { - 0xbf9d349d16447120, 0x0, - 0x3fc9a22026eaf7b9, 0x3fb07241ee7015c4, - 0xbfeaf9239e29e73f, 0x3fd6bf8ea5b5fdce, - 0xbfa8bff8cf97958c, 0x3fc2e9d866bc2508, - 0xbfe971c5ba02edfa, 0x3fddbf276ca2ee2e, - 0xbfd67c69d5a3baae, 0xbfc6ed672bede970, - 0x3fbdef2c1e3600e8, 0xbfda20b7e2d83b79, - 0x3fc6be0add21b296, 0x3fd77cc8ac409fe0, - 0xbfb1057c47852a1c, 0xbfb3ebc634d9e0ec, - 0x3fb7015c269c4887, 0x3fc053d941d128f2, - 0x3fc1929dfbcdf077, 0x3fc7efae2f3b7ded, - 0xbfd65c30b716bcfc, 0x3fc8725134b9a010, - 0xbfe16d0eaf86064c, 0x3fb7cd23e199919e, - 0x3fe0f58b0340a0cf, 0x3fc327706c81e934, - 0x3fa2925febe22377, 0xbfd80c5d16654bec, - 0xbff1656a89d53614, 0x3fd782a31eb7f27e, - 0xbfdbff04b89db4ca, 0xc04666f601a95e0f, - 0x3fcf22d5b7fa5f42, 0xbfc294af1c1489ad, - 0xbfdfb04fd04258d3, 0xbfd71318558ba59f, - 0x3fc64fdc263a0871, 0x3fd2cc9bf53b521a, - 0xbfb9f88733d7581d, 0x3fcc7d9a7e5a7320, - 0xbfd38f7e30a8f0a4, 0xbfc3faea5737f3fc, - 0xbfe1b4ffcf30bc50, 0xbfdacf6138a28204, - 0xbfcf730689a29dd4, 0x3fc4268240d958d4, - 0xbfe12597e4471ca6, 0xbfe0f40eef24fdf1, - 0x3fafe3527eeb1fd8, 0x3fbf30a5d369f164, - 0xbfc75fe780ee60cc, 0xbfe45fcfa3829eed, - 0x3fdba0a8989a6fb4, 0x3fc153bf75f6ec79, - 0x3fbd301bf9563b4e, 0x3fe05598651b8a10, - 0xbfd2e39eecd7138c, 0x3fd0f787c3e7dbcb, - 0x3fe11a029511f5de, 0x3fd03db67718e679, - 0x3fd3b33d33f5cc7d, 0x3fb40192c5ebdb39, - 0xbfa4893ddf7efe10, 0xbfe14f1f1190a708, - 0xbfb8ee0d31a01dee, 0xbf9fe0903a9a2bc4, - 0xbfd6016d999c032f, 0xbfd4dabc85035a3c, - 0xbfa7182f7bfd94bc, 0x3feb43c57c651b8c, - 0x3fc2eb33253ba248, 0xbf960520aee52fa0, - 0xbfb8b137a1d9a6e0, 0x3fe423c34b0283ec, - 0xbfaba6fd6649d21c, 0xbfe8e37be1079cd4, - 0x3fbd86aba43addb0, 0xbfd822da12bd4534, - 0x3fb42fd830cc5eb8, 0x3fa5911bbc61e618, - 0xbfd483ee60fad8f2, 0x3fdc2cf1bd594855, - 0xbfd47317fd07312b, 0xbfdf391ce547fa6e, - 0xbfd20f679fae7055, 0x3fe12e47e6afb6b4, - 0x3fbdf41b09d37104, 0xbfa7ba3c74b0655a, - 0x3fe230f3f25c95ca, 0xbfe78ce91f5db423, - 0xbfcdf09a679cb51b, 0x3fe1c58edf791d3c, - 0x3fb39699852bd0da, 0xbfe134867bc5066e, - 0x3fcd8e1f59c36e08, 0x3f8f006353fa5000, - 0xbfdcb484ff322f43, 0xbfb345171e144fc6, - 0x3fc0a3013eef7da6, 0x3fc829f54e711512, - 0xbfdcda3882d6c48b, 0xbfc73a161f91ca70, - 0xbfe25179c97f6f85, 0x3fd3c3a052784fda, - 0xbfc68b8b950f691c, 0xbfe2d94b314da254, - 0xbfe323bf4cbbbd4a, 0x3fda83c1d433148e, - 0x3fd4081ed8d63d8a, 0xbfc975b4b511a738, - 0xbf7cd223ca3ed780, 0x3fd0663e83e5cad4, - 0x3fca2a29492c463c, 0xbfb4273ab25e6cac, - 0x3fca0e402671a575, 0xbfe3e169137ccfb5, - 0x3fd7ee69210861ee, 0x3fee1ffd0e2d7d00, - 0xbfc167f0c087a00c, 0xbfde7c40c4bab491, - 0x3fda72f8752f8850, 0xbfd2e30e1e1c065c, - 0xbfe5f5ad326eb1cb, 0xbfc018bd93bd3081, - 0xbfc82d9a66d70858, 0x3fc48e5d4970eb8c, - 0x3fe3aa062eac84c7, 0x0, - 0xbfc82d9a66d70853, 0xbfc48e5d4970eb8e, - 0xbfe5f5ad326eb1cd, 0x3fc018bd93bd3085, - 0x3fda72f8752f8850, 0x3fd2e30e1e1c065c, - 0xbfc167f0c087a00a, 0x3fde7c40c4bab490, - 0x3fd7ee69210861f4, 0xbfee1ffd0e2d7d00, - 0x3fca0e402671a570, 0x3fe3e169137ccfb6, - 0x3fca2a29492c463a, 0x3fb4273ab25e6cbe, - 0xbf7cd223ca3ed760, 0xbfd0663e83e5cad4, - 0x3fd4081ed8d63d89, 0x3fc975b4b511a73e, - 0xbfe323bf4cbbbd49, 0xbfda83c1d4331490, - 0xbfc68b8b950f691c, 0x3fe2d94b314da251, - 0xbfe25179c97f6f84, 0xbfd3c3a052784fdc, - 0xbfdcda3882d6c492, 0x3fc73a161f91ca70, - 0x3fc0a3013eef7da2, 0xbfc829f54e71150f, - 0xbfdcb484ff322f44, 0x3fb345171e144fba, - 0x3fcd8e1f59c36deb, 0xbf8f006353fa5000, - 0x3fb39699852bd0d5, 0x3fe134867bc5066e, - 0xbfcdf09a679cb516, 0xbfe1c58edf791d3b, - 0x3fe230f3f25c95ca, 0x3fe78ce91f5db423, - 0x3fbdf41b09d3710d, 0x3fa7ba3c74b06560, - 0xbfd20f679fae7056, 0xbfe12e47e6afb6b4, - 0xbfd47317fd073130, 0x3fdf391ce547fa6c, - 0xbfd483ee60fad8ec, 0xbfdc2cf1bd594858, - 0x3fb42fd830cc5eb8, 0xbfa5911bbc61e610, - 0x3fbd86aba43addb2, 0x3fd822da12bd4533, - 0xbfaba6fd6649d238, 0x3fe8e37be1079cd5, - 0xbfb8b137a1d9a6da, 0xbfe423c34b0283ee, - 0x3fc2eb33253ba249, 0x3f960520aee52fc0, - 0xbfa7182f7bfd9494, 0xbfeb43c57c651b8a, - 0xbfd6016d999c0331, 0x3fd4dabc85035a3b, - 0xbfb8ee0d31a01dec, 0x3f9fe0903a9a2bec, - 0xbfa4893ddf7efe10, 0x3fe14f1f1190a708, - 0x3fd3b33d33f5cc7c, 0xbfb40192c5ebdb27, - 0x3fe11a029511f5de, 0xbfd03db67718e678, - 0xbfd2e39eecd7138e, 0xbfd0f787c3e7dbd0, - 0x3fbd301bf9563b4f, 0xbfe05598651b8a10, - 0x3fdba0a8989a6fb4, 0xbfc153bf75f6ec73, - 0xbfc75fe780ee60cd, 0x3fe45fcfa3829eec, - 0x3fafe3527eeb1fd4, 0xbfbf30a5d369f166, - 0xbfe12597e4471ca7, 0x3fe0f40eef24fdf0, - 0xbfcf730689a29dd7, 0xbfc4268240d958d6, - 0xbfe1b4ffcf30bc51, 0x3fdacf6138a28204, - 0xbfd38f7e30a8f0a5, 0x3fc3faea5737f3fe, - 0xbfb9f88733d75824, 0xbfcc7d9a7e5a7320, - 0x3fc64fdc263a0876, 0xbfd2cc9bf53b521a, - 0xbfdfb04fd04258d2, 0x3fd71318558ba59c, - 0x3fcf22d5b7fa5f3b, 0x3fc294af1c1489ae, - 0xbfdbff04b89db53c, 0x404666f601a95e0f, - 0xbff1656a89d53613, 0xbfd782a31eb7f286, - 0x3fa2925febe2236a, 0x3fd80c5d16654bed, - 0x3fe0f58b0340a0d0, 0xbfc327706c81e936, - 0xbfe16d0eaf86064d, 0xbfb7cd23e199919e, - 0xbfd65c30b716bcf8, 0xbfc8725134b9a016, - 0x3fc1929dfbcdf077, 0xbfc7efae2f3b7deb, - 0x3fb7015c269c488d, 0xbfc053d941d128f4, - 0xbfb1057c47852a20, 0x3fb3ebc634d9e0ea, - 0x3fc6be0add21b298, 0xbfd77cc8ac409fdd, - 0x3fbdef2c1e3600da, 0x3fda20b7e2d83b7a, - 0xbfd67c69d5a3baaa, 0x3fc6ed672bede976, - 0xbfe971c5ba02edf9, 0xbfddbf276ca2ee2f, - 0xbfa8bff8cf979574, 0xbfc2e9d866bc2503, - 0xbfeaf9239e29e73d, 0xbfd6bf8ea5b5fdd4, - 0x3fc9a22026eaf7c0, 0xbfb07241ee7015bf + 0x3fd8e1ef5d2d50c1, 0x0, + 0xbfabb219d819de08, 0x3fd20268b42c72b3, + 0x3fe07967b60706a3, 0xbfc925b0413018f0, + 0x3fed1dc5db4099c6, 0xbfe0642c0c0692a0, + 0xbfdf732a6c5ec14e, 0xbfbd67b5471e657e, + 0xbfe38af729020129, 0x3fbfda2ee1dd2593, + 0x3fcd407ff5e107f4, 0x3fc2daeb5e80e74c, + 0x3fd9f8b8faa8b4b8, 0x3fe32d68f19802c6, + 0x3fb2219fefc6b162, 0x3fda4113dd0bad44, + 0xbfe1e26a6cdefbbc, 0x3fc6c87525ce835e, + 0x3fe3a4abd1db66cc, 0xbfe24aafe001ed94, + 0xbfd8ed010d58e550, 0x3fe91008c5ec7db8, + 0x3fbda1b42b52cc23, 0xbfa60536d207883c, + 0x3fcbc969d8df1c84, 0x3fdd25e3be2a3045, + 0xbfdbfe10833a552b, 0xbfab5cf036993b30, + 0xbfda013f16002cee, 0xbfb7b0a3279cd733, + 0xbfe562e8e81c8b47, 0xc0464446df76a06c, + 0x3fa2487ed1f53466, 0x3fc574b307a7229c, + 0xbfc597ba76f6e046, 0x3fc1a9e0bf30c3f6, + 0xbfc8ebf7cb1a4085, 0x3fbc18a24a089988, + 0xbfb0458fc53cc944, 0x3fbedbe7781b5d24, + 0xbfcc8cb2c052db6d, 0xbfe33b6402839fa2, + 0x3fe31c8a040af7ea, 0xbfe0f0c705c696f7, + 0x3fd893dcbe163447, 0xbfa83a809fc56946, + 0xbfd07e81ba676bac, 0x3fb1c305703832ed, + 0x3fe4d62e976573fe, 0x3fbd52df8a77c18c, + 0xbfda48a7d6e463a8, 0xbfc438cdd2c8aa97, + 0x3fd0e119eac0c13d, 0xbfaf45cddcfe0b08, + 0xbfcfc6736e32e161, 0x3fd68fd385ae2bbd, + 0x3fb33383a5754186, 0xbfa0a256dff94311, + 0xbfec52d97803e8c0, 0x3fdbc18e519eb28d, + 0xbfbad6cb34ec37be, 0xbfbde6394b492cb8, + 0xbfa473d7068faff8, 0xbfe8442674b0d3c0, + 0xbfc2a6de10b5753b, 0x3fa6dbd576bfddfc, + 0x3fc177c1411793d0, 0x3fd0f2ba22eb98fd, + 0xbfc9e352703888ee, 0x3f9c700b4488eed4, + 0x3fc1aecb7d2291b9, 0xbfe17e247f2373c4, + 0xbfb006cca976459a, 0xbfdc8b9085eb71bd, + 0xbfd8895bd9a32dd5, 0xbfd060388521052b, + 0x3fd5354fdd1199bc, 0xbfdc6bfc6ef86a5e, + 0x3fe4962396c2f92a, 0xbfc74ab1c93fdf97, + 0xbfc9aca8f62d6b18, 0x3fad1ed4972dccdb, + 0xbfdfb0a9400b2861, 0x3fd4d2d1ab36c1aa, + 0xbfe2e732fa359e6e, 0xbfc5f92e3283aaec, + 0x3fd459655527225f, 0xbfe714dd9f079268, + 0x3fd33b310c3cefc6, 0xbfa483038dac0da2, + 0x3fe11f415697d337, 0xbfd7e77e8971f9d5, + 0x3fc115027ff93b46, 0x3feaf3e300348250, + 0xbfe5094240a69e49, 0xbfe6da55c9a4b620, + 0x3fda7ec576776287, 0xbfd534b6456da247, + 0x3f7fb7bc376804a0, 0x3fdd9b4edf66d1d1, + 0x3fd98ad7dc674eed, 0x3fa6f5a95661b308, + 0x3fd4c0354cc58585, 0xbfcdd4af4fad2d52, + 0x3fc6921e40a4cf7b, 0xbf8eed92e18c95e0, + 0xbfc8eb9671e460aa, 0xbfbff879e4f04c94, + 0x3fc450003ff30d24, 0x3fa23def396c6952, + 0xbfe08a8fc42f2cd2, 0xbfc504363293031a, + 0xbfd830c40f561ec5, 0x3fa6e55e16050608, + 0x3facc89ccf6f14fa, 0xbfe5289e684ce334, + 0x3fe28183d8829097, 0xbfd29a2db8f76ccf, + 0xbfde7aefb327b179, 0xbfd6c537ed3287f9, + 0x3fb9cf2d79e92e54, 0xbfc9e7d89260e03c, + 0xbfd8e0d5a4b5be97, 0xbfd85be423a2d6aa, + 0x3fd41f88d9b148d4, 0x3fba6f33b81d6d82, + 0xbf976070a1950bf0, 0x0, + 0x3fd41f88d9b148d3, 0xbfba6f33b81d6d88, + 0xbfd8e0d5a4b5be96, 0x3fd85be423a2d6aa, + 0x3fb9cf2d79e92e50, 0x3fc9e7d89260e03e, + 0xbfde7aefb327b17a, 0x3fd6c537ed3287f8, + 0x3fe28183d8829097, 0x3fd29a2db8f76ccf, + 0x3facc89ccf6f14f8, 0x3fe5289e684ce335, + 0xbfd830c40f561ec6, 0xbfa6e55e160505f8, + 0xbfe08a8fc42f2cd2, 0x3fc504363293031c, + 0x3fc450003ff30d22, 0xbfa23def396c6952, + 0xbfc8eb9671e460a8, 0x3fbff879e4f04c8c, + 0x3fc6921e40a4cf77, 0x3f8eed92e18c9620, + 0x3fd4c0354cc58585, 0x3fcdd4af4fad2d51, + 0x3fd98ad7dc674eee, 0xbfa6f5a95661b2f8, + 0x3f7fb7bc376804c0, 0xbfdd9b4edf66d1d2, + 0x3fda7ec576776286, 0x3fd534b6456da248, + 0xbfe5094240a69e49, 0x3fe6da55c9a4b620, + 0x3fc115027ff93b44, 0xbfeaf3e300348251, + 0x3fe11f415697d338, 0x3fd7e77e8971f9d5, + 0x3fd33b310c3cefc8, 0x3fa483038dac0d9f, + 0x3fd459655527225f, 0x3fe714dd9f079268, + 0xbfe2e732fa359e6f, 0x3fc5f92e3283aaf0, + 0xbfdfb0a9400b2863, 0xbfd4d2d1ab36c1a9, + 0xbfc9aca8f62d6b16, 0xbfad1ed4972dccd2, + 0x3fe4962396c2f92a, 0x3fc74ab1c93fdf96, + 0x3fd5354fdd1199bb, 0x3fdc6bfc6ef86a5d, + 0xbfd8895bd9a32dd4, 0x3fd060388521052c, + 0xbfb006cca97645a3, 0x3fdc8b9085eb71bd, + 0x3fc1aecb7d2291bb, 0x3fe17e247f2373c4, + 0xbfc9e352703888ef, 0xbf9c700b4488eef6, + 0x3fc177c1411793d0, 0xbfd0f2ba22eb98ff, + 0xbfc2a6de10b5753f, 0xbfa6dbd576bfde00, + 0xbfa473d7068faff8, 0x3fe8442674b0d3c0, + 0xbfbad6cb34ec37c2, 0x3fbde6394b492cb6, + 0xbfec52d97803e8c0, 0xbfdbc18e519eb28b, + 0x3fb33383a5754188, 0x3fa0a256dff94312, + 0xbfcfc6736e32e15f, 0xbfd68fd385ae2bbd, + 0x3fd0e119eac0c13e, 0x3faf45cddcfe0b18, + 0xbfda48a7d6e463a7, 0x3fc438cdd2c8aa94, + 0x3fe4d62e976573fe, 0xbfbd52df8a77c190, + 0xbfd07e81ba676baa, 0xbfb1c305703832ea, + 0x3fd893dcbe163446, 0x3fa83a809fc5694b, + 0x3fe31c8a040af7ea, 0x3fe0f0c705c696f7, + 0xbfcc8cb2c052db72, 0x3fe33b6402839fa3, + 0xbfb0458fc53cc944, 0xbfbedbe7781b5d24, + 0xbfc8ebf7cb1a4085, 0xbfbc18a24a089989, + 0xbfc597ba76f6e044, 0xbfc1a9e0bf30c3f6, + 0x3fa2487ed1f53460, 0xbfc574b307a72298, + 0xbfe562e8e81c8b47, 0x40464446df76a06c, + 0xbfda013f16002ced, 0x3fb7b0a3279cd733, + 0xbfdbfe10833a552a, 0x3fab5cf036993b38, + 0x3fcbc969d8df1c86, 0xbfdd25e3be2a3047, + 0x3fbda1b42b52cc23, 0x3fa60536d2078840, + 0xbfd8ed010d58e552, 0xbfe91008c5ec7db6, + 0x3fe3a4abd1db66cc, 0x3fe24aafe001ed94, + 0xbfe1e26a6cdefbbc, 0xbfc6c87525ce8362, + 0x3fb2219fefc6b162, 0xbfda4113dd0bad45, + 0x3fd9f8b8faa8b4b7, 0xbfe32d68f19802c6, + 0x3fcd407ff5e107f4, 0xbfc2daeb5e80e74e, + 0xbfe38af729020129, 0xbfbfda2ee1dd258c, + 0xbfdf732a6c5ec14f, 0x3fbd67b5471e6580, + 0x3fed1dc5db4099c6, 0x3fe0642c0c06929f, + 0x3fe07967b60706a4, 0x3fc925b0413018f0, + 0xbfabb219d819de14, 0xbfd20268b42c72b2 }; static const uint64_t ref_cfft_noisy_128[256] = { - 0xbf9d349d16447120, 0x0, - 0x3fc9a22026eaf7b9, 0x3fb07241ee7015c4, - 0xbfeaf9239e29e73f, 0x3fd6bf8ea5b5fdce, - 0xbfa8bff8cf97958c, 0x3fc2e9d866bc2508, - 0xbfe971c5ba02edfa, 0x3fddbf276ca2ee2e, - 0xbfd67c69d5a3baae, 0xbfc6ed672bede970, - 0x3fbdef2c1e3600e8, 0xbfda20b7e2d83b79, - 0x3fc6be0add21b296, 0x3fd77cc8ac409fe0, - 0xbfb1057c47852a1c, 0xbfb3ebc634d9e0ec, - 0x3fb7015c269c4887, 0x3fc053d941d128f2, - 0x3fc1929dfbcdf077, 0x3fc7efae2f3b7ded, - 0xbfd65c30b716bcfc, 0x3fc8725134b9a010, - 0xbfe16d0eaf86064c, 0x3fb7cd23e199919e, - 0x3fe0f58b0340a0cf, 0x3fc327706c81e934, - 0x3fa2925febe22377, 0xbfd80c5d16654bec, - 0xbff1656a89d53614, 0x3fd782a31eb7f27e, - 0xbfdbff04b89db4ca, 0xc04666f601a95e0f, - 0x3fcf22d5b7fa5f42, 0xbfc294af1c1489ad, - 0xbfdfb04fd04258d3, 0xbfd71318558ba59f, - 0x3fc64fdc263a0871, 0x3fd2cc9bf53b521a, - 0xbfb9f88733d7581d, 0x3fcc7d9a7e5a7320, - 0xbfd38f7e30a8f0a4, 0xbfc3faea5737f3fc, - 0xbfe1b4ffcf30bc50, 0xbfdacf6138a28204, - 0xbfcf730689a29dd4, 0x3fc4268240d958d4, - 0xbfe12597e4471ca6, 0xbfe0f40eef24fdf1, - 0x3fafe3527eeb1fd8, 0x3fbf30a5d369f164, - 0xbfc75fe780ee60cc, 0xbfe45fcfa3829eed, - 0x3fdba0a8989a6fb4, 0x3fc153bf75f6ec79, - 0x3fbd301bf9563b4e, 0x3fe05598651b8a10, - 0xbfd2e39eecd7138c, 0x3fd0f787c3e7dbcb, - 0x3fe11a029511f5de, 0x3fd03db67718e679, - 0x3fd3b33d33f5cc7d, 0x3fb40192c5ebdb39, - 0xbfa4893ddf7efe10, 0xbfe14f1f1190a708, - 0xbfb8ee0d31a01dee, 0xbf9fe0903a9a2bc4, - 0xbfd6016d999c032f, 0xbfd4dabc85035a3c, - 0xbfa7182f7bfd94bc, 0x3feb43c57c651b8c, - 0x3fc2eb33253ba248, 0xbf960520aee52fa0, - 0xbfb8b137a1d9a6e0, 0x3fe423c34b0283ec, - 0xbfaba6fd6649d21c, 0xbfe8e37be1079cd4, - 0x3fbd86aba43addb0, 0xbfd822da12bd4534, - 0x3fb42fd830cc5eb8, 0x3fa5911bbc61e618, - 0xbfd483ee60fad8f2, 0x3fdc2cf1bd594855, - 0xbfd47317fd07312b, 0xbfdf391ce547fa6e, - 0xbfd20f679fae7055, 0x3fe12e47e6afb6b4, - 0x3fbdf41b09d37104, 0xbfa7ba3c74b0655a, - 0x3fe230f3f25c95ca, 0xbfe78ce91f5db423, - 0xbfcdf09a679cb51b, 0x3fe1c58edf791d3c, - 0x3fb39699852bd0da, 0xbfe134867bc5066e, - 0x3fcd8e1f59c36e08, 0x3f8f006353fa5000, - 0xbfdcb484ff322f43, 0xbfb345171e144fc6, - 0x3fc0a3013eef7da6, 0x3fc829f54e711512, - 0xbfdcda3882d6c48b, 0xbfc73a161f91ca70, - 0xbfe25179c97f6f85, 0x3fd3c3a052784fda, - 0xbfc68b8b950f691c, 0xbfe2d94b314da254, - 0xbfe323bf4cbbbd4a, 0x3fda83c1d433148e, - 0x3fd4081ed8d63d8a, 0xbfc975b4b511a738, - 0xbf7cd223ca3ed780, 0x3fd0663e83e5cad4, - 0x3fca2a29492c463c, 0xbfb4273ab25e6cac, - 0x3fca0e402671a575, 0xbfe3e169137ccfb5, - 0x3fd7ee69210861ee, 0x3fee1ffd0e2d7d00, - 0xbfc167f0c087a00c, 0xbfde7c40c4bab491, - 0x3fda72f8752f8850, 0xbfd2e30e1e1c065c, - 0xbfe5f5ad326eb1cb, 0xbfc018bd93bd3081, - 0xbfc82d9a66d70858, 0x3fc48e5d4970eb8c, - 0x3fe3aa062eac84c7, 0x0, - 0xbfc82d9a66d70853, 0xbfc48e5d4970eb8e, - 0xbfe5f5ad326eb1cd, 0x3fc018bd93bd3085, - 0x3fda72f8752f8850, 0x3fd2e30e1e1c065c, - 0xbfc167f0c087a00a, 0x3fde7c40c4bab490, - 0x3fd7ee69210861f4, 0xbfee1ffd0e2d7d00, - 0x3fca0e402671a570, 0x3fe3e169137ccfb6, - 0x3fca2a29492c463a, 0x3fb4273ab25e6cbe, - 0xbf7cd223ca3ed760, 0xbfd0663e83e5cad4, - 0x3fd4081ed8d63d89, 0x3fc975b4b511a73e, - 0xbfe323bf4cbbbd49, 0xbfda83c1d4331490, - 0xbfc68b8b950f691c, 0x3fe2d94b314da251, - 0xbfe25179c97f6f84, 0xbfd3c3a052784fdc, - 0xbfdcda3882d6c492, 0x3fc73a161f91ca70, - 0x3fc0a3013eef7da2, 0xbfc829f54e71150f, - 0xbfdcb484ff322f44, 0x3fb345171e144fba, - 0x3fcd8e1f59c36deb, 0xbf8f006353fa5000, - 0x3fb39699852bd0d5, 0x3fe134867bc5066e, - 0xbfcdf09a679cb516, 0xbfe1c58edf791d3b, - 0x3fe230f3f25c95ca, 0x3fe78ce91f5db423, - 0x3fbdf41b09d3710d, 0x3fa7ba3c74b06560, - 0xbfd20f679fae7056, 0xbfe12e47e6afb6b4, - 0xbfd47317fd073130, 0x3fdf391ce547fa6c, - 0xbfd483ee60fad8ec, 0xbfdc2cf1bd594858, - 0x3fb42fd830cc5eb8, 0xbfa5911bbc61e610, - 0x3fbd86aba43addb2, 0x3fd822da12bd4533, - 0xbfaba6fd6649d238, 0x3fe8e37be1079cd5, - 0xbfb8b137a1d9a6da, 0xbfe423c34b0283ee, - 0x3fc2eb33253ba249, 0x3f960520aee52fc0, - 0xbfa7182f7bfd9494, 0xbfeb43c57c651b8a, - 0xbfd6016d999c0331, 0x3fd4dabc85035a3b, - 0xbfb8ee0d31a01dec, 0x3f9fe0903a9a2bec, - 0xbfa4893ddf7efe10, 0x3fe14f1f1190a708, - 0x3fd3b33d33f5cc7c, 0xbfb40192c5ebdb27, - 0x3fe11a029511f5de, 0xbfd03db67718e678, - 0xbfd2e39eecd7138e, 0xbfd0f787c3e7dbd0, - 0x3fbd301bf9563b4f, 0xbfe05598651b8a10, - 0x3fdba0a8989a6fb4, 0xbfc153bf75f6ec73, - 0xbfc75fe780ee60cd, 0x3fe45fcfa3829eec, - 0x3fafe3527eeb1fd4, 0xbfbf30a5d369f166, - 0xbfe12597e4471ca7, 0x3fe0f40eef24fdf0, - 0xbfcf730689a29dd7, 0xbfc4268240d958d6, - 0xbfe1b4ffcf30bc51, 0x3fdacf6138a28204, - 0xbfd38f7e30a8f0a5, 0x3fc3faea5737f3fe, - 0xbfb9f88733d75824, 0xbfcc7d9a7e5a7320, - 0x3fc64fdc263a0876, 0xbfd2cc9bf53b521a, - 0xbfdfb04fd04258d2, 0x3fd71318558ba59c, - 0x3fcf22d5b7fa5f3b, 0x3fc294af1c1489ae, - 0xbfdbff04b89db53c, 0x404666f601a95e0f, - 0xbff1656a89d53613, 0xbfd782a31eb7f286, - 0x3fa2925febe2236a, 0x3fd80c5d16654bed, - 0x3fe0f58b0340a0d0, 0xbfc327706c81e936, - 0xbfe16d0eaf86064d, 0xbfb7cd23e199919e, - 0xbfd65c30b716bcf8, 0xbfc8725134b9a016, - 0x3fc1929dfbcdf077, 0xbfc7efae2f3b7deb, - 0x3fb7015c269c488d, 0xbfc053d941d128f4, - 0xbfb1057c47852a20, 0x3fb3ebc634d9e0ea, - 0x3fc6be0add21b298, 0xbfd77cc8ac409fdd, - 0x3fbdef2c1e3600da, 0x3fda20b7e2d83b7a, - 0xbfd67c69d5a3baaa, 0x3fc6ed672bede976, - 0xbfe971c5ba02edf9, 0xbfddbf276ca2ee2f, - 0xbfa8bff8cf979574, 0xbfc2e9d866bc2503, - 0xbfeaf9239e29e73d, 0xbfd6bf8ea5b5fdd4, - 0x3fc9a22026eaf7c0, 0xbfb07241ee7015bf + 0x3fd8e1ef5d2d50c1, 0x0, + 0xbfabb219d819de08, 0x3fd20268b42c72b3, + 0x3fe07967b60706a3, 0xbfc925b0413018f0, + 0x3fed1dc5db4099c6, 0xbfe0642c0c0692a0, + 0xbfdf732a6c5ec14e, 0xbfbd67b5471e657e, + 0xbfe38af729020129, 0x3fbfda2ee1dd2593, + 0x3fcd407ff5e107f4, 0x3fc2daeb5e80e74c, + 0x3fd9f8b8faa8b4b8, 0x3fe32d68f19802c6, + 0x3fb2219fefc6b162, 0x3fda4113dd0bad44, + 0xbfe1e26a6cdefbbc, 0x3fc6c87525ce835e, + 0x3fe3a4abd1db66cc, 0xbfe24aafe001ed94, + 0xbfd8ed010d58e550, 0x3fe91008c5ec7db8, + 0x3fbda1b42b52cc23, 0xbfa60536d207883c, + 0x3fcbc969d8df1c84, 0x3fdd25e3be2a3045, + 0xbfdbfe10833a552b, 0xbfab5cf036993b30, + 0xbfda013f16002cee, 0xbfb7b0a3279cd733, + 0xbfe562e8e81c8b47, 0xc0464446df76a06c, + 0x3fa2487ed1f53466, 0x3fc574b307a7229c, + 0xbfc597ba76f6e046, 0x3fc1a9e0bf30c3f6, + 0xbfc8ebf7cb1a4085, 0x3fbc18a24a089988, + 0xbfb0458fc53cc944, 0x3fbedbe7781b5d24, + 0xbfcc8cb2c052db6d, 0xbfe33b6402839fa2, + 0x3fe31c8a040af7ea, 0xbfe0f0c705c696f7, + 0x3fd893dcbe163447, 0xbfa83a809fc56946, + 0xbfd07e81ba676bac, 0x3fb1c305703832ed, + 0x3fe4d62e976573fe, 0x3fbd52df8a77c18c, + 0xbfda48a7d6e463a8, 0xbfc438cdd2c8aa97, + 0x3fd0e119eac0c13d, 0xbfaf45cddcfe0b08, + 0xbfcfc6736e32e161, 0x3fd68fd385ae2bbd, + 0x3fb33383a5754186, 0xbfa0a256dff94311, + 0xbfec52d97803e8c0, 0x3fdbc18e519eb28d, + 0xbfbad6cb34ec37be, 0xbfbde6394b492cb8, + 0xbfa473d7068faff8, 0xbfe8442674b0d3c0, + 0xbfc2a6de10b5753b, 0x3fa6dbd576bfddfc, + 0x3fc177c1411793d0, 0x3fd0f2ba22eb98fd, + 0xbfc9e352703888ee, 0x3f9c700b4488eed4, + 0x3fc1aecb7d2291b9, 0xbfe17e247f2373c4, + 0xbfb006cca976459a, 0xbfdc8b9085eb71bd, + 0xbfd8895bd9a32dd5, 0xbfd060388521052b, + 0x3fd5354fdd1199bc, 0xbfdc6bfc6ef86a5e, + 0x3fe4962396c2f92a, 0xbfc74ab1c93fdf97, + 0xbfc9aca8f62d6b18, 0x3fad1ed4972dccdb, + 0xbfdfb0a9400b2861, 0x3fd4d2d1ab36c1aa, + 0xbfe2e732fa359e6e, 0xbfc5f92e3283aaec, + 0x3fd459655527225f, 0xbfe714dd9f079268, + 0x3fd33b310c3cefc6, 0xbfa483038dac0da2, + 0x3fe11f415697d337, 0xbfd7e77e8971f9d5, + 0x3fc115027ff93b46, 0x3feaf3e300348250, + 0xbfe5094240a69e49, 0xbfe6da55c9a4b620, + 0x3fda7ec576776287, 0xbfd534b6456da247, + 0x3f7fb7bc376804a0, 0x3fdd9b4edf66d1d1, + 0x3fd98ad7dc674eed, 0x3fa6f5a95661b308, + 0x3fd4c0354cc58585, 0xbfcdd4af4fad2d52, + 0x3fc6921e40a4cf7b, 0xbf8eed92e18c95e0, + 0xbfc8eb9671e460aa, 0xbfbff879e4f04c94, + 0x3fc450003ff30d24, 0x3fa23def396c6952, + 0xbfe08a8fc42f2cd2, 0xbfc504363293031a, + 0xbfd830c40f561ec5, 0x3fa6e55e16050608, + 0x3facc89ccf6f14fa, 0xbfe5289e684ce334, + 0x3fe28183d8829097, 0xbfd29a2db8f76ccf, + 0xbfde7aefb327b179, 0xbfd6c537ed3287f9, + 0x3fb9cf2d79e92e54, 0xbfc9e7d89260e03c, + 0xbfd8e0d5a4b5be97, 0xbfd85be423a2d6aa, + 0x3fd41f88d9b148d4, 0x3fba6f33b81d6d82, + 0xbf976070a1950bf0, 0x0, + 0x3fd41f88d9b148d3, 0xbfba6f33b81d6d88, + 0xbfd8e0d5a4b5be96, 0x3fd85be423a2d6aa, + 0x3fb9cf2d79e92e50, 0x3fc9e7d89260e03e, + 0xbfde7aefb327b17a, 0x3fd6c537ed3287f8, + 0x3fe28183d8829097, 0x3fd29a2db8f76ccf, + 0x3facc89ccf6f14f8, 0x3fe5289e684ce335, + 0xbfd830c40f561ec6, 0xbfa6e55e160505f8, + 0xbfe08a8fc42f2cd2, 0x3fc504363293031c, + 0x3fc450003ff30d22, 0xbfa23def396c6952, + 0xbfc8eb9671e460a8, 0x3fbff879e4f04c8c, + 0x3fc6921e40a4cf77, 0x3f8eed92e18c9620, + 0x3fd4c0354cc58585, 0x3fcdd4af4fad2d51, + 0x3fd98ad7dc674eee, 0xbfa6f5a95661b2f8, + 0x3f7fb7bc376804c0, 0xbfdd9b4edf66d1d2, + 0x3fda7ec576776286, 0x3fd534b6456da248, + 0xbfe5094240a69e49, 0x3fe6da55c9a4b620, + 0x3fc115027ff93b44, 0xbfeaf3e300348251, + 0x3fe11f415697d338, 0x3fd7e77e8971f9d5, + 0x3fd33b310c3cefc8, 0x3fa483038dac0d9f, + 0x3fd459655527225f, 0x3fe714dd9f079268, + 0xbfe2e732fa359e6f, 0x3fc5f92e3283aaf0, + 0xbfdfb0a9400b2863, 0xbfd4d2d1ab36c1a9, + 0xbfc9aca8f62d6b16, 0xbfad1ed4972dccd2, + 0x3fe4962396c2f92a, 0x3fc74ab1c93fdf96, + 0x3fd5354fdd1199bb, 0x3fdc6bfc6ef86a5d, + 0xbfd8895bd9a32dd4, 0x3fd060388521052c, + 0xbfb006cca97645a3, 0x3fdc8b9085eb71bd, + 0x3fc1aecb7d2291bb, 0x3fe17e247f2373c4, + 0xbfc9e352703888ef, 0xbf9c700b4488eef6, + 0x3fc177c1411793d0, 0xbfd0f2ba22eb98ff, + 0xbfc2a6de10b5753f, 0xbfa6dbd576bfde00, + 0xbfa473d7068faff8, 0x3fe8442674b0d3c0, + 0xbfbad6cb34ec37c2, 0x3fbde6394b492cb6, + 0xbfec52d97803e8c0, 0xbfdbc18e519eb28b, + 0x3fb33383a5754188, 0x3fa0a256dff94312, + 0xbfcfc6736e32e15f, 0xbfd68fd385ae2bbd, + 0x3fd0e119eac0c13e, 0x3faf45cddcfe0b18, + 0xbfda48a7d6e463a7, 0x3fc438cdd2c8aa94, + 0x3fe4d62e976573fe, 0xbfbd52df8a77c190, + 0xbfd07e81ba676baa, 0xbfb1c305703832ea, + 0x3fd893dcbe163446, 0x3fa83a809fc5694b, + 0x3fe31c8a040af7ea, 0x3fe0f0c705c696f7, + 0xbfcc8cb2c052db72, 0x3fe33b6402839fa3, + 0xbfb0458fc53cc944, 0xbfbedbe7781b5d24, + 0xbfc8ebf7cb1a4085, 0xbfbc18a24a089989, + 0xbfc597ba76f6e044, 0xbfc1a9e0bf30c3f6, + 0x3fa2487ed1f53460, 0xbfc574b307a72298, + 0xbfe562e8e81c8b47, 0x40464446df76a06c, + 0xbfda013f16002ced, 0x3fb7b0a3279cd733, + 0xbfdbfe10833a552a, 0x3fab5cf036993b38, + 0x3fcbc969d8df1c86, 0xbfdd25e3be2a3047, + 0x3fbda1b42b52cc23, 0x3fa60536d2078840, + 0xbfd8ed010d58e552, 0xbfe91008c5ec7db6, + 0x3fe3a4abd1db66cc, 0x3fe24aafe001ed94, + 0xbfe1e26a6cdefbbc, 0xbfc6c87525ce8362, + 0x3fb2219fefc6b162, 0xbfda4113dd0bad45, + 0x3fd9f8b8faa8b4b7, 0xbfe32d68f19802c6, + 0x3fcd407ff5e107f4, 0xbfc2daeb5e80e74e, + 0xbfe38af729020129, 0xbfbfda2ee1dd258c, + 0xbfdf732a6c5ec14f, 0x3fbd67b5471e6580, + 0x3fed1dc5db4099c6, 0x3fe0642c0c06929f, + 0x3fe07967b60706a4, 0x3fc925b0413018f0, + 0xbfabb219d819de14, 0xbfd20268b42c72b2 }; static const uint64_t in_cfft_noisy_256[512] = { - 0x3fb20c88d3a95653, 0x0, - 0x3fd6499d0369b35e, 0x0, - 0x3fe56769a8876e32, 0x0, - 0x3fdebee175eecb43, 0x0, - 0xbfa7d3b943d6ea7e, 0x0, - 0xbfe1c8e92a93017c, 0x0, - 0xbfe7988c23bee6e0, 0x0, - 0xbfdc2ed7d901528b, 0x0, - 0x3f8e012b553f0cd2, 0x0, - 0x3fdaf22d5bb38d8b, 0x0, - 0x3fe7cb4065392837, 0x0, - 0x3fdaf14720f13766, 0x0, - 0xbfa2b611fa2e9a3a, 0x0, - 0xbfdb26f60e52fdb7, 0x0, - 0xbfe890a70d45222d, 0x0, - 0xbfdde665a1c574b3, 0x0, - 0x3fab4e4a75675026, 0x0, - 0x3fde3c5b5d43e750, 0x0, - 0x3fe406cf587f919a, 0x0, - 0x3fd9de19d334ae10, 0x0, - 0x3f95d9938f794fb3, 0x0, - 0xbfe03ec7c6ccfcf9, 0x0, - 0xbfe64651de4128ba, 0x0, - 0xbfde49dda97fd9b6, 0x0, - 0x3fa876968e848986, 0x0, - 0x3fde8dfba87aeb2a, 0x0, - 0x3fe4e8e4387b5041, 0x0, - 0x3fde72508d545b96, 0x0, - 0xbf9363e8bf4ed215, 0x0, - 0xbfdcb21f84f6b54e, 0x0, - 0xbfe60f33d5aa5ee7, 0x0, - 0xbfe07e8563589fa6, 0x0, - 0xbf96e5dd3fb2e8a2, 0x0, - 0x3fde5e152ce149d7, 0x0, - 0x3fe5e61a94644b3c, 0x0, - 0x3fde14b43f3799ed, 0x0, - 0x3f9b13a9eb3080c2, 0x0, - 0xbfe14467a1a95565, 0x0, - 0xbfe57ad7dc235145, 0x0, - 0xbfdc6d474a92909a, 0x0, - 0x3f9e535069423d00, 0x0, - 0x3fdd3328eab5c48a, 0x0, - 0x3fe56c3568537a0d, 0x0, - 0x3fdb66e43758e924, 0x0, - 0xbf96db00bccf805f, 0x0, - 0xbfe1b4e1fe74c8d6, 0x0, - 0xbfe6579f718e58c7, 0x0, - 0xbfdf0dcd6183f65b, 0x0, - 0xbf9dc418ae0a26f6, 0x0, - 0x3fdf2be3e5789689, 0x0, - 0x3fe3ecdc3e0244c2, 0x0, - 0x3fe0d74a7b9bd279, 0x0, - 0xbf96405bbf30bbd0, 0x0, - 0xbfdfdeefa82fd3d1, 0x0, - 0xbfe629fe5bca6b4d, 0x0, - 0xbfddcb0eaf3cb3c0, 0x0, - 0x3fb0b61088b2beee, 0x0, - 0x3fd95b4d5fc95dc0, 0x0, - 0x3fe635cc0d46ef89, 0x0, - 0x3fdd8a500cf56090, 0x0, - 0xbfa9de18bce9012a, 0x0, - 0xbfdbdbe103d7bbb0, 0x0, - 0xbfe2912ce1047c41, 0x0, - 0xbfdfc3f1c496ccf5, 0x0, - 0xbf67290958800463, 0x0, - 0x3fdc2fae7cc00448, 0x0, - 0x3fe698754c74209a, 0x0, - 0x3fe0a6997122545d, 0x0, - 0x3fa7809987c94ffd, 0x0, - 0xbfe1548b48a16503, 0x0, - 0xbfe56c04ba9c3532, 0x0, - 0xbfdac54724fdb925, 0x0, - 0xbfa1a079c9c45d5c, 0x0, - 0x3fdd422b5e442a52, 0x0, - 0x3fe6439c94846f76, 0x0, - 0x3fe0948da48dd4ea, 0x0, - 0x3fadddc2efc76d49, 0x0, - 0xbfdf86b2a4e85ae8, 0x0, - 0xbfe66bb031e3bed9, 0x0, - 0xbfde845cf6c57f6e, 0x0, - 0x3faa94b2c3aec756, 0x0, - 0x3fe0c005a598175f, 0x0, - 0x3fe8f86550f38269, 0x0, - 0x3fdbf415fb0f93f0, 0x0, - 0xbf91e33800791891, 0x0, - 0xbfde10532a17c3fa, 0x0, - 0xbfe5fef8bd828d98, 0x0, - 0xbfdfc96d91e86ad4, 0x0, - 0xbfacc889c05ce48f, 0x0, - 0x3fe1e86aacc385f2, 0x0, - 0x3fe74144334d9116, 0x0, - 0x3fe2a391d35a7581, 0x0, - 0x3fb728e9a65f71c9, 0x0, - 0xbfe1b5ddd5e7a7c4, 0x0, - 0xbfe76b8293f9f4b5, 0x0, - 0xbfda853ca8200902, 0x0, - 0x3fad813cf0fc577b, 0x0, - 0x3fe1a59b5b8e22a3, 0x0, - 0x3fe1c051e3d5a1b2, 0x0, - 0x3fe0b1f01c2ad693, 0x0, - 0xbfb2c7b05f5da949, 0x0, - 0xbfe18c1ecd540f04, 0x0, - 0xbfe8ab514e04945b, 0x0, - 0xbfdd9b99184b82b5, 0x0, - 0x3fa65dee589a5430, 0x0, - 0x3fdd64936ca9cd19, 0x0, - 0x3fe80d77b3191ea1, 0x0, - 0x3fe0acecebcb2c55, 0x0, - 0x3f6c317d11eab6af, 0x0, - 0xbfde08798dfff1b9, 0x0, - 0xbfe62f81c40c6fd4, 0x0, - 0xbfe0be3efb6cacc9, 0x0, - 0xbfae80da9f3c4fdc, 0x0, - 0x3fdb5a8d662a0f97, 0x0, - 0x3fe5004116468638, 0x0, - 0x3fe2fa4a9322239f, 0x0, - 0x3fa1e034ef9d7e54, 0x0, - 0xbfdeb57ce4003193, 0x0, - 0xbfe739b74bda979e, 0x0, - 0xbfddcb3aa6028b21, 0x0, - 0xbf79b40fbc2ad835, 0x0, - 0x3fe0d9e436bd9cda, 0x0, - 0x3fe62cfa45d1c251, 0x0, - 0x3fdf4647609802dc, 0x0, - 0xbf84b660bdd838ee, 0x0, - 0xbfe13a6f61ac6ba3, 0x0, - 0xbfe784fbf16c08d0, 0x0, - 0xbfe1106cef2cb3bf, 0x0, - 0xbf99550e2256c7a3, 0x0, - 0x3fdbe2ca3c3be5fd, 0x0, - 0x3fe4cbdc34754093, 0x0, - 0x3fe00c48f5feda6a, 0x0, - 0xbfb182bc84aacf56, 0x0, - 0xbfe1484eb7b021fb, 0x0, - 0xbfe3fb90e29b76ed, 0x0, - 0xbfe07c9cda010d0f, 0x0, - 0xbfaa2d7f2605d4b1, 0x0, - 0x3fe0c7fef19d57f3, 0x0, - 0x3fe53615f260e516, 0x0, - 0x3fdc5ae3c734c0ca, 0x0, - 0xbf87963bad604932, 0x0, - 0xbfdf01c504d7faa8, 0x0, - 0xbfe74540e3c63c21, 0x0, - 0xbfe245287bef73c2, 0x0, - 0x3f66684f9e6f9018, 0x0, - 0x3fda4cce135d65a8, 0x0, - 0x3fe829bc88a5b669, 0x0, - 0x3fdd595fdfbeebfa, 0x0, - 0xbfb6379fd6710d7a, 0x0, - 0xbfda483fce500957, 0x0, - 0xbfe721fd261a7949, 0x0, - 0xbfdec26ccfa3e151, 0x0, - 0xbf948fbe40c8ce3f, 0x0, - 0x3fe013b6eee4036b, 0x0, - 0x3fe5d79f91a432e2, 0x0, - 0x3fdf66b35d36c181, 0x0, - 0xbfa91fbcc2126f6b, 0x0, - 0xbfe1c0aa63edc2f4, 0x0, - 0xbfe99ba9f8f52a27, 0x0, - 0xbfe0f1bbf93242fa, 0x0, - 0xbfb5fb0801e2df23, 0x0, - 0x3fdd840babaa20ee, 0x0, - 0x3fe6cb55e65a8bf5, 0x0, - 0x3fdebf70e4c3187f, 0x0, - 0xbfa771107659316c, 0x0, - 0xbfe067daa95d852f, 0x0, - 0xbfe611fd570db505, 0x0, - 0xbfe224901c76326e, 0x0, - 0x3fac6bbc17a91048, 0x0, - 0x3fe044e2921c46f5, 0x0, - 0x3fe5f594d6aeba56, 0x0, - 0x3fdebdc1b60f4985, 0x0, - 0xbf79475fdc501987, 0x0, - 0xbfddad7545d1d7ff, 0x0, - 0xbfe58e926895298d, 0x0, - 0xbfd6fdfa5c932d32, 0x0, - 0x3f9d86889d6f9eed, 0x0, - 0x3fe0f2c9db34bcb0, 0x0, - 0x3fe6e85d56cb9075, 0x0, - 0x3fde09964764de43, 0x0, - 0xbfad673b256f6552, 0x0, - 0xbfe1cc9f79038224, 0x0, - 0xbfe81aa3d25ca635, 0x0, - 0xbfe1dfaa37a3acc0, 0x0, - 0xbfa6eb60e8dc5115, 0x0, - 0x3fe17148d961b73d, 0x0, - 0x3fe63bdc6f5fbccc, 0x0, - 0x3fdc4708b1c69730, 0x0, - 0x3fa19ad5997cb251, 0x0, - 0xbfded84f80238870, 0x0, - 0xbfe781ecf3a9cef6, 0x0, - 0xbfdccfa59dc36e7a, 0x0, - 0xbf9c4a20d477fb29, 0x0, - 0x3fe00a0f1bb1b5b0, 0x0, - 0x3fe6c5e964a3f584, 0x0, - 0x3fdee6e9027ee6e0, 0x0, - 0x3fa6ff73b2b4c1dd, 0x0, - 0xbfe2570145e76f42, 0x0, - 0xbfe563d4651b51b3, 0x0, - 0xbfdee3900adc8842, 0x0, - 0xbf9108aa5726d339, 0x0, - 0x3fe18812edb15ef0, 0x0, - 0x3fe4eb3830e633c6, 0x0, - 0x3fdcc454f1b61fc4, 0x0, - 0x3f8f7855f074d476, 0x0, - 0xbfdb1109f11ca19f, 0x0, - 0xbfe80c1f43d665d7, 0x0, - 0xbfe032fca0f15715, 0x0, - 0x3fb3a497db255bd4, 0x0, - 0x3fe0a1a624d76858, 0x0, - 0x3fe4a30126f8fd35, 0x0, - 0x3fdebd4c3380e788, 0x0, - 0x3fb0122609a843a7, 0x0, - 0xbfe21dea583f1efb, 0x0, - 0xbfe55e3dcd665753, 0x0, - 0xbfe0156ec2e61296, 0x0, - 0x3fa87188b79d0966, 0x0, - 0x3fde78e4ee6ab9cc, 0x0, - 0x3fe93bd776fd933d, 0x0, - 0x3fe17035d3affb64, 0x0, - 0xbf4e526c397d220d, 0x0, - 0xbfe21a1867acecd0, 0x0, - 0xbfe5a16e8433a1b2, 0x0, - 0xbfe1aea85ef98c7f, 0x0, - 0x3f9fff77f9d0ac4a, 0x0, - 0x3fddead82717794a, 0x0, - 0x3fe544470a5f0950, 0x0, - 0x3fdef3572a39d8c5, 0x0, - 0xbf6b79f15765d21c, 0x0, - 0xbfdf61e84ed3d168, 0x0, - 0xbfe61c9e25aadd6e, 0x0, - 0xbfdbee4747b4ed30, 0x0, - 0x3f984fe25124c140, 0x0, - 0x3fdb2b1a3029723c, 0x0, - 0x3fe69edd6073a601, 0x0, - 0x3fdd356df6fe21be, 0x0, - 0x3fb23d08c94af649, 0x0, - 0xbfe058e147d72bfb, 0x0, - 0xbfe64da073e41169, 0x0, - 0xbfe34b8a491789b9, 0x0, - 0xbfb052ffdc9cb2c5, 0x0, - 0x3fdddf371a02af4e, 0x0, - 0x3fe96d27b1b3115c, 0x0, - 0x3fdf1bd57c094678, 0x0, - 0x3fb31516a7d6a57b, 0x0, - 0xbfdf9972f2c56778, 0x0, - 0xbfe67a0601b54ae4, 0x0, - 0xbfde16090eb3f8f3, 0x0, - 0xbfab1d25cc66200d, 0x0, - 0x3fe0fa27652fb164, 0x0, - 0x3fe5fa3c02a349a4, 0x0, - 0x3fe0a79308b30440, 0x0, - 0xbf9d4103cbe96909, 0x0, - 0xbfdc7c32a4ffcc50, 0x0, - 0xbfe5b09de3865497, 0x0, - 0xbfda3d70cb88cc82, 0x0 + 0x3fa3a093d12bc8b0, 0x0, + 0x3fdda0360699b0b6, 0x0, + 0x3fe58b53c36213ca, 0x0, + 0x3fd9d909e82a632a, 0x0, + 0x3fa30d89aa484b7c, 0x0, + 0xbfde052c178cff92, 0x0, + 0xbfe4c01feebf9195, 0x0, + 0xbfe0d06b1215320d, 0x0, + 0x3f9d40e616b7f846, 0x0, + 0x3fd9e68e056c256e, 0x0, + 0x3fe6efa92e51a842, 0x0, + 0x3fe0244a6251f0cf, 0x0, + 0x3f916cb78d188a67, 0x0, + 0xbfdde0fd3397a256, 0x0, + 0xbfe93264e320ef7c, 0x0, + 0xbfe366ee18b15339, 0x0, + 0x3fb2c45acd014d6e, 0x0, + 0x3fddb0b513f14ab7, 0x0, + 0x3fe728dac05b5730, 0x0, + 0x3fe0da47ae41c695, 0x0, + 0xbf9adc31d0836ef8, 0x0, + 0xbfd9f25f307cd10c, 0x0, + 0xbfe589601b203c56, 0x0, + 0xbfe026153068095e, 0x0, + 0xbfaa567b3b58c43c, 0x0, + 0x3fde0b0e5655fb40, 0x0, + 0x3fe55d36cac59f0d, 0x0, + 0x3fdf2268d6ac8e9f, 0x0, + 0xbfab57a9886d5734, 0x0, + 0xbfdd7e11eff49191, 0x0, + 0xbfe78b5bae70f424, 0x0, + 0xbfe03c86eea560d5, 0x0, + 0xbf9f1e28dee66570, 0x0, + 0x3fe1fa57ef27c7f7, 0x0, + 0x3fe85402ab832e6c, 0x0, + 0x3fdaf2ce16aab555, 0x0, + 0xbfb043fb36e07c75, 0x0, + 0xbfe0d1b65841b4dc, 0x0, + 0xbfe784bd5576de1a, 0x0, + 0xbfdf01b5013e1d4c, 0x0, + 0x3fa5e23394f87321, 0x0, + 0x3fe10702c4679664, 0x0, + 0x3fe5fc3c1957c677, 0x0, + 0x3fdd58cac63c9b4b, 0x0, + 0xbfbc36bbd51a51c1, 0x0, + 0xbfe108bac2467d11, 0x0, + 0xbfe61630744d36ec, 0x0, + 0xbfdff8f2ef03cbe7, 0x0, + 0x3fae9704303668b9, 0x0, + 0x3fdc8a1cb704eebe, 0x0, + 0x3fe3e24eb0aa4079, 0x0, + 0x3fd98a4a36e9a47a, 0x0, + 0xbfb073cc57035866, 0x0, + 0xbfdf5b717e02204e, 0x0, + 0xbfe616579cac1174, 0x0, + 0xbfde524dd3b09a96, 0x0, + 0x3f895fed78dd1e40, 0x0, + 0x3fdd37f9f2452ac0, 0x0, + 0x3fe946f96344fc87, 0x0, + 0x3fe068643913c713, 0x0, + 0x3f7b96c775493ad3, 0x0, + 0xbfe194f303a2811e, 0x0, + 0xbfe528a3eafba170, 0x0, + 0xbfde39588aefbe13, 0x0, + 0x3f50a71b20a9a44a, 0x0, + 0x3fe00ed24c0a7aa8, 0x0, + 0x3fe88cdf110f526d, 0x0, + 0x3fe2db4964d40497, 0x0, + 0x3fa9f086bc47fb61, 0x0, + 0xbfe2d56eda57a7dc, 0x0, + 0xbfe888bf645ad483, 0x0, + 0xbfe00f523be5f936, 0x0, + 0x3f70fe0566706618, 0x0, + 0x3fe1a64541c07987, 0x0, + 0x3fe688ba223f2f38, 0x0, + 0x3fe0d3d659cd6723, 0x0, + 0xbfb2fe14f19c0565, 0x0, + 0xbfdf1a9f555392fb, 0x0, + 0xbfe73c7ab8b13e03, 0x0, + 0xbfe19a99c6ae28be, 0x0, + 0x3f79ee7d48a4d844, 0x0, + 0x3fde82574b13fc8f, 0x0, + 0x3fe291582e948a65, 0x0, + 0x3fdf0fb6954654a9, 0x0, + 0x3f9c75e3433a863e, 0x0, + 0xbfdda0260b1de97e, 0x0, + 0xbfe3c392f303b2a6, 0x0, + 0xbfddfc2f9c31a016, 0x0, + 0xbf95e94badc14c0e, 0x0, + 0x3fdf010166865cbe, 0x0, + 0x3fe5861e07a47bae, 0x0, + 0x3fde47d6a6a32b8c, 0x0, + 0xbf6778078904d25d, 0x0, + 0xbfdb06e8fab21ef5, 0x0, + 0xbfe6340f71b52bdd, 0x0, + 0xbfde2ee5429d33ae, 0x0, + 0xbfa67548eda75649, 0x0, + 0x3fe035d706a5a39a, 0x0, + 0x3fe3964dcc03be3d, 0x0, + 0x3fe19d32fe9beca9, 0x0, + 0x3f6f42f0ddc9d723, 0x0, + 0xbfdc8fe2ea0f96f6, 0x0, + 0xbfe4e670b3bd3e82, 0x0, + 0xbfdd6c9cdd977808, 0x0, + 0xbfb0901f3d74574b, 0x0, + 0x3fdc384a6cda70c2, 0x0, + 0x3fe775c118502175, 0x0, + 0x3fdf6a8c0d9e5df0, 0x0, + 0xbfaa75e13d2b1108, 0x0, + 0xbfdc859932fdfeae, 0x0, + 0xbfe594683b075275, 0x0, + 0xbfdd2dcbffa5461e, 0x0, + 0x3fb17b7c3d2f0f14, 0x0, + 0x3fdea2e33f75812c, 0x0, + 0x3fe5a242687e4b9d, 0x0, + 0x3fdf7daad6cfcabd, 0x0, + 0x3fb243e054132bb9, 0x0, + 0xbfdec5ef7af5f69e, 0x0, + 0xbfe53b116ee06265, 0x0, + 0xbfdb674e4ff0b4b1, 0x0, + 0x3fa54005ee7672ce, 0x0, + 0x3fdfb0dacb8c1e96, 0x0, + 0x3fe5c1361923c8b1, 0x0, + 0x3fdabf29a8056012, 0x0, + 0x3f6a39eb1089c235, 0x0, + 0xbfe11c539ca367bc, 0x0, + 0xbfe94fde1a8d0312, 0x0, + 0xbfe1806bf7b65f65, 0x0, + 0xbfa75ca512d0d90b, 0x0, + 0x3fde2d3178de2f7b, 0x0, + 0x3fe90ca729bfca9d, 0x0, + 0x3fd9766004431734, 0x0, + 0xbfa7f11e7d92d5cb, 0x0, + 0xbfddaf31f4946141, 0x0, + 0xbfe83fefa478e9db, 0x0, + 0xbfd88c4c7a69790b, 0x0, + 0xbf9303ca16b71b31, 0x0, + 0x3fdaa5632139bbec, 0x0, + 0x3fe7e678effb9e1f, 0x0, + 0x3fe129ae91336016, 0x0, + 0xbfb9bea0fd4fa4f2, 0x0, + 0xbfe155d3014f238d, 0x0, + 0xbfe7895f64636988, 0x0, + 0xbfde0d93411c6f70, 0x0, + 0x3faee917334f5f7b, 0x0, + 0x3fdce0537d28da5f, 0x0, + 0x3fe30421665bd283, 0x0, + 0x3fdce374ab67165c, 0x0, + 0x3fb1463965c714c4, 0x0, + 0xbfe2ecd9d47ed6ab, 0x0, + 0xbfe519765614afe2, 0x0, + 0xbfe123ff9741871a, 0x0, + 0xbf9c295345ed9ecd, 0x0, + 0x3fe2cce3777260b0, 0x0, + 0x3fe64ca2268949af, 0x0, + 0x3fdc3f0ae4f58dac, 0x0, + 0x3f9f21b9d4d591ff, 0x0, + 0xbfdd144b920a6761, 0x0, + 0xbfe5f78138126073, 0x0, + 0xbfde784b96e91a8a, 0x0, + 0x3f897a7b9153a8e5, 0x0, + 0x3fdcbfb419740cdb, 0x0, + 0x3fe5f4bf61f8b213, 0x0, + 0x3fd8403ca2523e94, 0x0, + 0x3f90e6571317538e, 0x0, + 0xbfde4f7105654e0e, 0x0, + 0xbfe75118ddab5475, 0x0, + 0xbfe27512e6f8d831, 0x0, + 0x3f8808e51e361e6b, 0x0, + 0x3fda67283d0aaafc, 0x0, + 0x3fe9319a1c3e7741, 0x0, + 0x3fe1cd2c610073af, 0x0, + 0x3f9ab2c076cc4950, 0x0, + 0xbfe0dc81c9d4bfcc, 0x0, + 0xbfe856f39ab4cb65, 0x0, + 0xbfe048e689cff4f2, 0x0, + 0x3f9dc34031b2b1c5, 0x0, + 0x3fdd05d4c7192f60, 0x0, + 0x3fe78673387aec64, 0x0, + 0x3fddd2d445c6ea56, 0x0, + 0x3fad1ca71a07bac2, 0x0, + 0xbfe06c4c1a3481cb, 0x0, + 0xbfe743eac49017b4, 0x0, + 0xbfe06342619440f7, 0x0, + 0x3f922a6e77857f87, 0x0, + 0x3fdc745d340fdf88, 0x0, + 0x3fe656b2da7f7ef3, 0x0, + 0x3fe1d70db388f6b5, 0x0, + 0x3fa9184d0ccf751e, 0x0, + 0xbfe080171dc6243e, 0x0, + 0xbfe7cf4b9a28e03d, 0x0, + 0xbfdfcb06c28ac725, 0x0, + 0x3f97b25687ab0ab8, 0x0, + 0x3fde3171004fae23, 0x0, + 0x3fe765de09adce76, 0x0, + 0x3fdd04dc13324d72, 0x0, + 0xbfb3270f38dbd187, 0x0, + 0xbfe0e37a81f54efe, 0x0, + 0xbfe562679d151d41, 0x0, + 0xbfe028d6189c062a, 0x0, + 0xbfa3b0bdf589cf53, 0x0, + 0x3fdfa5dc81e5795d, 0x0, + 0x3fe75fd702873553, 0x0, + 0x3fe0c5de2e85ef63, 0x0, + 0xbfaa4a85498f5c69, 0x0, + 0xbfe0b76916c51083, 0x0, + 0xbfe595fe16b8eea3, 0x0, + 0xbfe004bc641ba5f6, 0x0, + 0x3f9b26ada4103553, 0x0, + 0x3fde99fe131ca6c2, 0x0, + 0x3fe5c898cc507f89, 0x0, + 0x3fe0aa28bb68e6cf, 0x0, + 0x3fc2c87726174a9e, 0x0, + 0xbfe1f2f6525cfdd5, 0x0, + 0xbfe3c9073b1ee31d, 0x0, + 0xbfe283e780229269, 0x0, + 0xbf936af1f55a1568, 0x0, + 0x3fe148dca9e7ca20, 0x0, + 0x3fe82393992d2d20, 0x0, + 0x3fdf46bd519f35eb, 0x0, + 0x3fa48c312301e7c0, 0x0, + 0xbfe0d73890b24f4d, 0x0, + 0xbfe68680bec8bcaf, 0x0, + 0xbfdc491c2abc6e26, 0x0, + 0xbfa0cb916b9fdaf8, 0x0, + 0x3fe28d07cb3df399, 0x0, + 0x3fe3b22798212b6e, 0x0, + 0x3fdcfed937f738d7, 0x0, + 0x3fafe62da50d7f52, 0x0, + 0xbfe109cbcee74d51, 0x0, + 0xbfe50dcc89478446, 0x0, + 0xbfde7888c3f1cddb, 0x0, + 0xbf936af60419bc2a, 0x0, + 0x3fddd9cce394658f, 0x0, + 0x3fe4edccda3618d5, 0x0, + 0x3fdf189e71237858, 0x0, + 0x3fafe2e19244bf2f, 0x0, + 0xbfdfa5a90b071b20, 0x0, + 0xbfe4d5106ac7dcc4, 0x0, + 0xbfe0f7e46bf2fa48, 0x0, + 0x3f9065dd70f01b14, 0x0, + 0x3fdd4fcc264a122d, 0x0, + 0x3fe7f05a8f1f3048, 0x0, + 0x3fdcc6e7c9a8cf77, 0x0, + 0x3fb12c2abd2e6ef5, 0x0, + 0xbfda365194af391d, 0x0, + 0xbfe6a61e97aa62d3, 0x0, + 0xbfe04548ada7b219, 0x0, + 0x3f79cdb54bc8e432, 0x0, + 0x3fdfe7c01c1fa5cd, 0x0, + 0x3fe75fb2f9d88d3d, 0x0, + 0x3fdf4cabb2881a94, 0x0, + 0x3f9fd8a6079d0bdb, 0x0, + 0xbfde94af658751e1, 0x0, + 0xbfe6ef6bdb9e446c, 0x0, + 0xbfe27c76f5c2950b, 0x0 }; static const uint64_t in_cifft_noisy_256[512] = { - 0xbff2fd4224ea388e, 0x0, - 0x3fd6f77caa1b7c64, 0xbfdb1fb0d9807e00, - 0xbfecc1a003bc1914, 0x3ff48d449371aa02, - 0x3fe1cc51db8c5b30, 0xbfc26618d480b622, - 0x3fa8f414424ef20e, 0xbfb41030c322eb60, - 0xbfd4fd2be918b301, 0xbfb3eb101903e336, - 0x3fd5db30e197c801, 0x3fdbbda70b0028f4, - 0x3fcceb2b78e51072, 0x3fe4ccc28adaa431, - 0xbfdadb675a1f5ad4, 0x3fdcce3c61f24768, - 0x3fec574952bda1c0, 0xbfd2676726936072, - 0xbfe28a5f3ecce9cc, 0x3fe697a852bfa98b, - 0xbfd85fdec1bc1220, 0xbfc069e06d772f30, - 0x3fdb604881067ff3, 0xbfb52ef1c51400bc, - 0x3fa34f6a2cae23c0, 0x3ff2393d6d82f358, - 0xbfdbb06a0e0e06c6, 0xbfa8e49b247196a0, - 0x3fc05acfc63aaf79, 0xbfc004d8317374fe, - 0xbfe19b5f19db4f7d, 0x3fe26565b4dd4d7d, - 0x3fc66e7e736c07c1, 0xbfadac3e2d0ab078, - 0xbff32baf152a7c9e, 0xbfca2c175e3084f0, - 0x3ff8c26ba2f2de80, 0x3fd9be120335d4c6, - 0x3fe4d66001545a48, 0x3fa12073709099a8, - 0xbfa74d1027cdcfcc, 0x3fcb2b6600a7e63c, - 0x3ff1f22f778098fa, 0xbfa9a5ab8bcdebac, - 0xbfdc2ed0d957f240, 0x3feac88872330662, - 0xbfd4d1f33c481da7, 0x3fd6665249b5874e, - 0x3fd49e7fa87978bd, 0xbfc6d9b6343d43f4, - 0x3fd6ad369ed31c6e, 0x3fe533e50f611c90, - 0xbfbfc1f71ec785fc, 0x3fc9248bd1cc83ae, - 0xbfd38916828ab702, 0x3feb5f432b312eb2, - 0x3fd1ce714f6bcbca, 0x3fd21fd95c7ad5b8, - 0xbfeffa1ac0e2c285, 0x3fdfa38e8243567c, - 0xbfe2c03464ba5848, 0x3fe42c635faefcda, - 0x3fdbb422925829df, 0xc05637e03de1200e, - 0x3fe9dd97b7f22042, 0x3fe7c97880e84c68, - 0x3fd13a8ec47f59ca, 0xbfdd821324334ebe, - 0x3fc1ef224331cfcf, 0xbfeab85adb9b1fc8, - 0xbfc556a094c3415c, 0x3fcb8c6215d7e506, - 0x3fdef44a0d5c261c, 0xbfacfd5aee99a3e8, - 0x3fead3a9ca5d5960, 0xbff0f0fc2ffd8095, - 0xbfda1d7a532754f0, 0x3fb1e9a43d564302, - 0x3fe639406eb82138, 0xbfc7060451628475, - 0x3fb11a64041dfa24, 0x3fe422bdb36600f6, - 0x3fe07ae1aa9e6626, 0x3fef8736c6118f2b, - 0xbfe3b77ca0ce4ca0, 0x3fc5feda91f37f15, - 0xbfcb78f982b755c6, 0x3ff27de4f4119e37, - 0xbfac8413ecf2f5e4, 0x3fc62a0894c3eeb4, - 0xbfc1d24d80a4a544, 0xbfda6561ac0f6b79, - 0xbfc301fa2d0488f7, 0xbf8429f0c4af77a0, - 0xbfd7937dd8b75180, 0xbfc44c4dcf139a62, - 0xbfd58733186871c5, 0xbfa355572f0d39a0, - 0x3fc439675c1be175, 0x3fe31494fc55a6b8, - 0x3febb826bc389dbd, 0xbf7d3e8e29929e80, - 0xbff2b3bbc5b38763, 0xbfdb675a8e77df50, - 0x3fdd4d637fe0582f, 0x3fe3a82b2774074f, - 0x3fec93f333492e98, 0xbfd02fd096b5c542, - 0xbfd6e67605c0cd83, 0x3fb1fcba90db298a, - 0xbfdec724e4c2b1e4, 0x3fedb406c1f451b4, - 0xbfe18e4950e2c94e, 0x3fdee61cfce072aa, - 0xbfc924019890f154, 0x3fd7afde7bca7f64, - 0xbfd1db7426057361, 0x3fe194e62c97d24b, - 0x3fb78cbc110b3600, 0x3fd563bbb14ee4f8, - 0xbfb05df8339c145a, 0x3fed976938425b12, - 0x3fd6dc07fa8cd496, 0xbfcc728ba056a5fd, - 0xbfd2426cd25cb2e6, 0x3fc7550ae47544ec, - 0x3fd9788dc804fec7, 0x3fe7ccffa6192c00, - 0x3fefae0d56dc5a3f, 0x3fab2c1d1b43c05a, - 0xbfe16b0c569c0cbe, 0x3fdbd8fd4bc4ae1e, - 0xbfc51752a8dcff7e, 0xbfe9a0650da469c6, - 0xbfe9fade0b771d14, 0xbfadcfd788d9c5e8, - 0x3fe8b86084c89e01, 0x3fc8642f3ecc952b, - 0x3fcf10b2a256c1aa, 0x3fca6c8b94fe318a, - 0xbfcbe6e011faf21a, 0x3fe26544971178a4, - 0x3fc6a9e991fbad84, 0x3fe5e83dc7f19198, - 0xbfcdcc9e39bb0bd1, 0xbfd65bc04b9d1827, - 0x3fc8c9435f25b4fe, 0x3fe889caa508c1f1, - 0x3ff176c16d9cfc7e, 0xbfb93590220bde90, - 0x3fe32f0521f2c9df, 0x3fe864c5a2379117, - 0xbfd5fadd82ab0c04, 0x3ff2e41d38ff4320, - 0xbfcfd6d5b468016d, 0xbfc11a5000695bd3, - 0x3febbd6d5ab8f4cd, 0xbfeedcec720565ba, - 0x3feee0ba2a3da8ba, 0x3f9c1a53bc1aa9c8, - 0xbfdcbf319c1229cb, 0xbfe8aa65da9a854a, - 0x3fe65f9ce11e8368, 0x3fd790cf385aceee, - 0xbfd7ed684efe7fbd, 0x3fb089fd58f941fc, - 0x3fed5fccf5aef45a, 0xbfd446f25492238c, - 0xbfe1ce9d873dcf6a, 0xbfd28d316113587b, - 0x3fc2a8132009769e, 0x3fd93bc18c88f5ce, - 0x3fd5116a51aa5898, 0x3fb8238842bddff0, - 0xbfa78a84a7f398b0, 0xbfe467086234e5d1, - 0xbfd3e814e85a9201, 0x3fc11a491264baa4, - 0xbfbc9dd692c43e00, 0x3fa3685ffd3df630, - 0x3fd4db4be78c28e9, 0x3ff030771c8e4922, - 0xbfd9a49f7841a058, 0x3fd0f4ad037d64d6, - 0xbfc070fb6d69d349, 0x3fd5857a137e8318, - 0x3fc39119adc262fc, 0x3fe810dea087d5b7, - 0xbfa59599438793c8, 0x3fe523e12e1e4529, - 0xbfb5aeca60c5520c, 0x3fda6ca6fba29e00, - 0xbfb87c97b23f9c98, 0x3fd01bca4b2519a0, - 0x3fef2ac914d00331, 0x3fb27db01004d230, - 0xbfcff74b68c9f24c, 0x3ff1e6afd36b54db, - 0x3fc1c701125cc399, 0x3fc36d020d5f1cb8, - 0x3fe4e73e100e93be, 0xbfe627c4f88355fa, - 0xbfb6200b1a60cedc, 0xbfecb198fdae3139, - 0x3fead0a3ef866285, 0x3fe43deb63c15854, - 0x3fb50168783c8a86, 0xbfe08bbe81bbbe2c, - 0x3ff1bca47c42ec52, 0x3fb3346328c02188, - 0x3fe77fcf076fa062, 0xbfcafafe2b6fabc2, - 0xbfbf5a8ad465d60c, 0xbfea1d517ca44c7e, - 0xbfd05d5a93cf459e, 0x3feee901535bdb64, - 0xbfb1a5b3e9f60d18, 0xbfdcddbc661243c0, - 0x3fbc63db03e52040, 0xbfdfc73a8906752c, - 0x3fdb957538101c7e, 0x3fdfa5963e821526, - 0xbef18f0a86288000, 0x3fc554924933cc01, - 0xbfddf803fe066811, 0x3fdb259948418f28, - 0x3fef500628745eda, 0x3fc03788c8c7c953, - 0x3fdd481951234013, 0x3fef906038075dc5, - 0x3ff018d854ce2400, 0x3f9076046f824220, - 0xbfd5fe4649eda6be, 0x3fe1dd10015efa8c, - 0xbfef146c3c694dc4, 0x3fea6c0cdb6125a4, - 0x3fa36c8a2a8fdd98, 0xbfca6e214b459f5b, - 0xbfca0056b8614e40, 0x3fde485b79e35f1e, - 0x3fc4daa9f3435331, 0xbfb56f2851f25e84, - 0xbf59ff3b2e6d9300, 0x3f81bb5206dfef50, - 0xbfe50d191089c788, 0x3fd129eb5ee15df2, - 0xbf6eec5dcab734c0, 0x3fcb1c4200ec981d, - 0xbfe1d7131105d2fc, 0xbfeba8346eb6879d, - 0xbfcddacf378bddf0, 0xbfd3082e049478f4, - 0x3ff14a2203f25235, 0xbfc47b274c9d9a12, - 0x3fe07e87e4f2e9e4, 0x0, - 0x3ff14a2203f25234, 0x3fc47b274c9d9a24, - 0xbfcddacf378bddf0, 0x3fd3082e049478f6, - 0xbfe1d7131105d300, 0x3feba8346eb6879c, - 0xbf6eec5dcab734e0, 0xbfcb1c4200ec981c, - 0xbfe50d191089c788, 0xbfd129eb5ee15df8, - 0xbf59ff3b2e6d9400, 0xbf81bb5206dff030, - 0x3fc4daa9f3435332, 0x3fb56f2851f25e88, - 0xbfca0056b8614e38, 0xbfde485b79e35f24, - 0x3fa36c8a2a8fdd98, 0x3fca6e214b459f55, - 0xbfef146c3c694dc0, 0xbfea6c0cdb6125a5, - 0xbfd5fe4649eda6be, 0xbfe1dd10015efa8e, - 0x3ff018d854ce2400, 0xbf9076046f8241d0, - 0x3fdd481951234018, 0xbfef906038075dc4, - 0x3fef500628745ed9, 0xbfc03788c8c7c948, - 0xbfddf803fe066810, 0xbfdb259948418f2d, - 0xbef18f0a86288000, 0xbfc554924933cc03, - 0x3fdb957538101c7e, 0xbfdfa5963e821527, - 0x3fbc63db03e52028, 0x3fdfc73a8906752a, - 0xbfb1a5b3e9f60d20, 0x3fdcddbc661243ba, - 0xbfd05d5a93cf459d, 0xbfeee901535bdb68, - 0xbfbf5a8ad465d61a, 0x3fea1d517ca44c7f, - 0x3fe77fcf076fa062, 0x3fcafafe2b6fabc1, - 0x3ff1bca47c42ec52, 0xbfb3346328c02170, - 0x3fb50168783c8a8c, 0x3fe08bbe81bbbe2e, - 0x3fead0a3ef866286, 0xbfe43deb63c15851, - 0xbfb6200b1a60cee6, 0x3fecb198fdae313c, - 0x3fe4e73e100e93bc, 0x3fe627c4f88355fa, - 0x3fc1c701125cc399, 0xbfc36d020d5f1cb8, - 0xbfcff74b68c9f23d, 0xbff1e6afd36b54da, - 0x3fef2ac914d0032f, 0xbfb27db01004d236, - 0xbfb87c97b23f9ca0, 0xbfd01bca4b2519a2, - 0xbfb5aeca60c55284, 0xbfda6ca6fba29e00, - 0xbfa59599438793c8, 0xbfe523e12e1e4528, - 0x3fc39119adc26303, 0xbfe810dea087d5b7, - 0xbfc070fb6d69d349, 0xbfd5857a137e831c, - 0xbfd9a49f7841a056, 0xbfd0f4ad037d64d6, - 0x3fd4db4be78c28e8, 0xbff030771c8e4921, - 0xbfbc9dd692c43e10, 0xbfa3685ffd3df660, - 0xbfd3e814e85a9204, 0xbfc11a491264baa9, - 0xbfa78a84a7f398e0, 0x3fe467086234e5d1, - 0x3fd5116a51aa588f, 0xbfb8238842bddfec, - 0x3fc2a813200976ae, 0xbfd93bc18c88f5d2, - 0xbfe1ce9d873dcf6c, 0x3fd28d3161135876, - 0x3fed5fccf5aef45a, 0x3fd446f25492238d, - 0xbfd7ed684efe7fbe, 0xbfb089fd58f94208, - 0x3fe65f9ce11e8369, 0xbfd790cf385aceeb, - 0xbfdcbf319c1229d2, 0x3fe8aa65da9a8548, - 0x3feee0ba2a3da8ba, 0xbf9c1a53bc1aa9a0, - 0x3febbd6d5ab8f4ca, 0x3feedcec720565be, - 0xbfcfd6d5b468016b, 0x3fc11a5000695bd9, - 0xbfd5fadd82ab0bfe, 0xbff2e41d38ff4320, - 0x3fe32f0521f2c9e2, 0xbfe864c5a2379114, - 0x3ff176c16d9cfc7e, 0x3fb93590220bde98, - 0x3fc8c9435f25b500, 0xbfe889caa508c1ef, - 0xbfcdcc9e39bb0bce, 0x3fd65bc04b9d1826, - 0x3fc6a9e991fbad8b, 0xbfe5e83dc7f19198, - 0xbfcbe6e011faf21a, 0xbfe26544971178a7, - 0x3fcf10b2a256c1ac, 0xbfca6c8b94fe3193, - 0x3fe8b86084c89e04, 0xbfc8642f3ecc952d, - 0xbfe9fade0b771d14, 0x3fadcfd788d9c5dc, - 0xbfc51752a8dcff89, 0x3fe9a0650da469c4, - 0xbfe16b0c569c0cbd, 0xbfdbd8fd4bc4ae22, - 0x3fefae0d56dc5a3f, 0xbfab2c1d1b43c032, - 0x3fd9788dc804fec7, 0xbfe7ccffa6192c00, - 0xbfd2426cd25cb2ea, 0xbfc7550ae47544fc, - 0x3fd6dc07fa8cd491, 0x3fcc728ba056a607, - 0xbfb05df8339c1447, 0xbfed976938425b12, - 0x3fb78cbc110b35f8, 0xbfd563bbb14ee4f9, - 0xbfd1db742605735e, 0xbfe194e62c97d24a, - 0xbfc924019890f154, 0xbfd7afde7bca7f67, - 0xbfe18e4950e2c94c, 0xbfdee61cfce072a8, - 0xbfdec724e4c2b1e2, 0xbfedb406c1f451b4, - 0xbfd6e67605c0cd84, 0xbfb1fcba90db2994, - 0x3fec93f333492e98, 0x3fd02fd096b5c546, - 0x3fdd4d637fe0582e, 0xbfe3a82b2774074e, - 0xbff2b3bbc5b38762, 0x3fdb675a8e77df4e, - 0x3febb826bc389dbe, 0x3f7d3e8e2992a000, - 0x3fc439675c1be17f, 0xbfe31494fc55a6b7, - 0xbfd58733186871c6, 0x3fa355572f0d3980, - 0xbfd7937dd8b75180, 0x3fc44c4dcf139a61, - 0xbfc301fa2d0488fe, 0x3f8429f0c4af7720, - 0xbfc1d24d80a4a54a, 0x3fda6561ac0f6b78, - 0xbfac8413ecf2f5a8, 0xbfc62a0894c3eebe, - 0xbfcb78f982b755be, 0xbff27de4f4119e37, - 0xbfe3b77ca0ce4ca0, 0xbfc5feda91f37f22, - 0x3fe07ae1aa9e6626, 0xbfef8736c6118f29, - 0x3fb11a64041dfa30, 0xbfe422bdb36600f6, - 0x3fe639406eb82137, 0x3fc7060451628478, - 0xbfda1d7a532754ef, 0xbfb1e9a43d564328, - 0x3fead3a9ca5d595e, 0x3ff0f0fc2ffd8096, - 0x3fdef44a0d5c261d, 0x3facfd5aee99a410, - 0xbfc556a094c34159, 0xbfcb8c6215d7e507, - 0x3fc1ef224331cfcf, 0x3feab85adb9b1fc8, - 0x3fd13a8ec47f59c5, 0x3fdd821324334ebe, - 0x3fe9dd97b7f22042, 0xbfe7c97880e84c67, - 0x3fdbb422925828fd, 0x405637e03de1200e, - 0xbfe2c03464ba5846, 0xbfe42c635faefcde, - 0xbfeffa1ac0e2c287, 0xbfdfa38e82435680, - 0x3fd1ce714f6bcbce, 0xbfd21fd95c7ad5b5, - 0xbfd38916828ab6fe, 0xbfeb5f432b312eb2, - 0xbfbfc1f71ec785f4, 0xbfc9248bd1cc83b1, - 0x3fd6ad369ed31c6f, 0xbfe533e50f611c8f, - 0x3fd49e7fa87978ba, 0x3fc6d9b6343d43fa, - 0xbfd4d1f33c481da2, 0xbfd6665249b58750, - 0xbfdc2ed0d957f238, 0xbfeac88872330664, - 0x3ff1f22f778098f9, 0x3fa9a5ab8bcdebb8, - 0xbfa74d1027cdcfc7, 0xbfcb2b6600a7e636, - 0x3fe4d66001545a46, 0xbfa1207370909988, - 0x3ff8c26ba2f2de82, 0xbfd9be120335d4ba, - 0xbff32baf152a7c9e, 0x3fca2c175e3084e0, - 0x3fc66e7e736c07bf, 0x3fadac3e2d0ab07c, - 0xbfe19b5f19db4f7d, 0xbfe26565b4dd4d7e, - 0x3fc05acfc63aaf7e, 0x3fc004d8317374ff, - 0xbfdbb06a0e0e06c4, 0x3fa8e49b2471969c, - 0x3fa34f6a2cae2408, 0xbff2393d6d82f358, - 0x3fdb604881067ff0, 0x3fb52ef1c51400c0, - 0xbfd85fdec1bc1224, 0x3fc069e06d772f26, - 0xbfe28a5f3ecce9c8, 0xbfe697a852bfa98c, - 0x3fec574952bda1c2, 0x3fd2676726936078, - 0xbfdadb675a1f5ad0, 0xbfdcce3c61f24764, - 0x3fcceb2b78e5107d, 0xbfe4ccc28adaa430, - 0x3fd5db30e197c7ff, 0xbfdbbda70b0028ee, - 0xbfd4fd2be918b303, 0x3fb3eb101903e336, - 0x3fa8f414424ef20c, 0x3fb41030c322eb5e, - 0x3fe1cc51db8c5b30, 0x3fc26618d480b62c, - 0xbfecc1a003bc1912, 0xbff48d449371aa03, - 0x3fd6f77caa1b7c63, 0x3fdb1fb0d9807e03 + 0xbfe927f57c820850, 0x0, + 0x3fcb6f4e54f81206, 0x3fbe20f4129d80d8, + 0xbfa6979d8d8580d8, 0x3ff14d241b256560, + 0x3fd17ac2e231edb6, 0xbfa6843af1c1fd50, + 0xbfc35dd14a4cdc7c, 0x3fd3996754c169d1, + 0x3fc88b431267d778, 0xbfe5b31c1ef16cd6, + 0xbfe4d030cc0135fa, 0x3fce1e30f0251405, + 0x3fd43efa607b7b2d, 0x3fe4c2de61a4ab40, + 0xbfacafaf7fa93958, 0x3fe8560e08196b1b, + 0xbfc0c4044c41e16b, 0xbfdba7f939e18226, + 0xbfed597ab9597911, 0xbfd1dd0b4c682b83, + 0x3fc36e4b40fddad0, 0x3fe91b2a14ffde9c, + 0xbfc1284d8f62a018, 0xbfd676a652698626, + 0x3fdd837e728f5633, 0x3fd90713a2abf06b, + 0xbfe5c9cf9c96fc06, 0xbfe41c7aa999e06d, + 0x3fe315bfdf396d62, 0xbfcd7b59af71bcf9, + 0xbfe50153c0cc0fac, 0xbfc0d4bb05015d70, + 0xbfd0ee2ee77444f4, 0x3fb26746ea95e224, + 0x3fbec24f1b234da5, 0xbfe257b511472f4e, + 0xbfe34c53fbfa8632, 0x3fc226a573f0d7f3, + 0xbfe3d45daf871437, 0xbfa104787204fac8, + 0xbfc2693af774af3b, 0x3fd6e10a99299282, + 0xbfe463b2c34fb3e7, 0x3fbbea52fedbda5c, + 0x3fe27ab9785b4ba5, 0x3fe402235a1cff4b, + 0x3fdd1a9f6f50aea3, 0x3fc0f6ae1cfb65a0, + 0xbfddac143ed3d1b7, 0x3fc45b28adb18685, + 0xbfb7cc64d1d20167, 0xbfc7cc4062112513, + 0x3fe6b9ddbea342f4, 0x3fc3ce79029f3f62, + 0x3fd9ed2560eaf6ee, 0xbfed4d6b8cc15a64, + 0xbff52a175c683427, 0xbfc619886ab09eb0, + 0x3fd41efaff950f60, 0x3ff52bae00cff2ff, + 0xbfe4e4a3b97346c0, 0x3fcf12ba0b47d5b6, + 0xbfb1d2d99334006c, 0xc0564cbb42c99726, + 0x3f467765d4f93200, 0xbfe88538e32c581d, + 0xbfea471684cd3c27, 0x3fb672e010a4d070, + 0xbff0d9c6a896c096, 0x3fdf04ef765b7957, + 0xbfc2d56f120bf0b0, 0xbfe2a0f8cd4bccc7, + 0xbfd51c178e9bd002, 0x3ff2faa200e1fb10, + 0x3fdff65c4ba7925f, 0x3fc2855ae2b882a9, + 0x3ff3fa2a98ea0dcd, 0xbff3bcdac8466800, + 0xbfd2cd796c1f2818, 0xbfe8d81c411a8dee, + 0x3fc1c2e1d573ed9a, 0x3fe8161d8e1e0059, + 0x3fe41eeb488a13bd, 0x3feac89cb1761c62, + 0x3f979c45debf8dc0, 0x3fed78dd6f27fce2, + 0xbfcbea2c659d7800, 0xbfdb5ed19cee41fd, + 0x3fee55088883bb38, 0x3fb3c455b80b9271, + 0x3fda928f58fdbc86, 0xbfd30ac77d9fcab5, + 0x3fbdbffd0027e83c, 0xbfeb9d31bd6d5ab4, + 0x3ff6dca291b63284, 0x3fc10700595e256c, + 0x3f8beca26ff0bd38, 0x3fbf9181bff80e44, + 0xbfc8ae8f3e64c391, 0xbfe7c1a7093db36b, + 0xbfe3249069f90585, 0xbfd036be3ba6ece9, + 0x3fb60578576a37c4, 0xbfe07bbf32a26eef, + 0x3fe6d5acb0bb5301, 0x3fe7a61ae0f3e6af, + 0xbfc0828a1d0cebbc, 0xbfe6e3f138f5ebc0, + 0xbfe110bd122d8972, 0x3fe75d3103a40c90, + 0xbfefad2936e5c103, 0xbfed59673cf0b4e4, + 0x3ff11bb2da5979ef, 0x3feb6678aaf553bf, + 0xbfdf6f4a3ce35b4f, 0xbfd651b2c49f99ed, + 0xbfd6b2d650ff0530, 0x3fbe9defc862d7ec, + 0x3fb1f98fd18bee83, 0x3fe0bd9fc5289d6c, + 0x3fe48f965bd2af79, 0xbfe244e63ee829fb, + 0x3fdf684d5a5904c1, 0xbfe3a3f893e845cd, + 0x3fc496ef1d5bae8a, 0xbfeea453db31eab5, + 0x3fd27c23911c3ce1, 0xbfc3c98bfa016e80, + 0xbfbcb63a28c869ac, 0xbfd0ecd1fb2c0a14, + 0x3fbc180127ce1824, 0xbfe3028065b9ab20, + 0x3fdacb495f996d75, 0xbfb56fdbb430203a, + 0x3faeeb610c5daade, 0x3fe6476cb2440fb5, + 0xbfc3f730bae70112, 0xbfd9ed12106303e1, + 0x3fea6b85da86e4b9, 0xbfe70bb68df8c196, + 0xbfb834bc22da051c, 0xbfde0a75335f8ce0, + 0x3f800a4d7e3f4840, 0x3fa8332e11bec528, + 0x3f9b668f6ba7c8b0, 0xbfa78349daa9a2d8, + 0xbfb4ef7f988bdad5, 0xbfc05a53b4ff3f26, + 0x3fe2657aef845b66, 0x3fd0009335a5fe53, + 0xbfd4765e1686f8f0, 0x3fe657b5267fb1d8, + 0xbfc020ec4adca541, 0x3fcaeac179acdad0, + 0xbfc5573745e4695f, 0xbfe30025f056afcc, + 0x3f879a4e92be04d0, 0x3fdcc1eff06b0071, + 0x3fe2d022fc943ac9, 0xbfec795eee3604cd, + 0xbfe3317e20642728, 0xbfaf78cf89387b88, + 0x3fd21c7ce7cf11d4, 0x3fd5cfbf5ba91a4f, + 0x3fd6ef9ca9d5e0de, 0xbfafc15e43582672, + 0xbfdab845930686e2, 0xbfea72a7ff1a13b9, + 0x3fe4b63291a1eb98, 0xbfd3fbb6fc4890cc, + 0xbfe794538540e1d8, 0xbfd3a6aa3fb3f6cf, + 0x3fe745be2ad03e0b, 0xbfe94e9210d31b80, + 0xbff5d9697d0b1aa8, 0x3feebaa0b6cd703a, + 0x3fbc8e23d7d5f848, 0xbfea346814cfbb7c, + 0xbfa9cf6474c05d80, 0x3fdd5b97266036f8, + 0x3fccdd9a8fb4108d, 0xbfe01b2531da4ffb, + 0x3ff2a4a85b7a25d0, 0x3fe88f4f1c36e749, + 0x3fc88362a46431ec, 0x3fea585116b5a7aa, + 0xbfe9c74df5f20789, 0x3ff514be77b914c0, + 0x3fc9d52ca8f62f96, 0x3fcadda01389fdba, + 0x3fb88e49b3450994, 0x3fdf2d3e0623cb80, + 0x3fcc1693a35e6469, 0xbfed6a81e6f82152, + 0x3feba6f87e90e2b3, 0xbf9e9118fd0fae80, + 0x3fec7c77a281d11d, 0xbfe8cc0c6d325a20, + 0xbfc3a0e88b801530, 0x3fe3d633f6d7ab99, + 0x3fbc5de6efc63be0, 0xbfd2677d3ad7095a, + 0x3fc08b93d3415dbc, 0x3fc863a2a1a31c36, + 0xbfef1dbc8fa4c66e, 0xbfde413cdb57c978, + 0xbfe130527c4c38c8, 0xbfc978c1cac10c34, + 0xbfe0dc682225ca0e, 0x3fe4d8dcb6ed14c5, + 0x3fca47c7c5c6eca2, 0xbfd7ac861d0f1341, + 0xbfb55f52a8daa9f7, 0xbfde04b0afe0ccae, + 0x3fd1ede788107380, 0xbfd3f382ed780f13, + 0xbf6f42a58bbb3d00, 0xbfc08156c872c182, + 0x3fc0695a89c4f315, 0x3fd37fe68b65f56a, + 0x3fe08f507c46724a, 0x3fab9abcc87b4a24, + 0x3fb110814ae271b4, 0x3fec67cae617a58c, + 0xbfd62b3b743b5e94, 0xbfcbe54c32679b6e, + 0x3fde161aefa5169e, 0xbfdf451526d338e9, + 0xbfb3cf4d4cb99310, 0x3f919e26d641f4b8, + 0x3ff1763d9c450533, 0xbfab08ff5c617414, + 0xbfc348ed3271383c, 0x3fe028c16020a25e, + 0xbfe3fc6afa6cf420, 0x3fe7a99205053627, + 0xbfc614b721bb1749, 0x3fe8fcf365d55144, + 0xbfe1e5b07911282e, 0xbfdc2d49029954d6, + 0xbfb152024c29a5c2, 0x3fcb686382669780, + 0x3fe0f60dab2c7064, 0xbfac68e9734b1e38, + 0x3fe2166585ef006f, 0x3ff00a2bb4d91df0, + 0x3fe92711813ea3ea, 0xbfde706cd13ee7fa, + 0x3fd3e8d535a3ff92, 0xbfe1e84eb0a38b3e, + 0x3fba2dba70139658, 0x3fd9aceba4853012, + 0x3fe46495550b3273, 0xbff3b1432e8a1d9f, + 0x3ff7df9746b25918, 0x0, + 0x3fe46495550b3272, 0x3ff3b1432e8a1d9e, + 0x3fba2dba70139654, 0xbfd9aceba4853012, + 0x3fd3e8d535a3ff94, 0x3fe1e84eb0a38b3f, + 0x3fe92711813ea3eb, 0x3fde706cd13ee7fb, + 0x3fe2166585ef006f, 0xbff00a2bb4d91df0, + 0x3fe0f60dab2c7064, 0x3fac68e9734b1e44, + 0xbfb152024c29a5cc, 0xbfcb686382669779, + 0xbfe1e5b07911282e, 0x3fdc2d49029954d6, + 0xbfc614b721bb1751, 0xbfe8fcf365d55145, + 0xbfe3fc6afa6cf41f, 0xbfe7a99205053626, + 0xbfc348ed32713840, 0xbfe028c16020a260, + 0x3ff1763d9c450533, 0x3fab08ff5c617410, + 0xbfb3cf4d4cb9930c, 0xbf919e26d641f4e0, + 0x3fde161aefa516a0, 0x3fdf451526d338eb, + 0xbfd62b3b743b5e92, 0x3fcbe54c32679b6b, + 0x3fb110814ae271b4, 0xbfec67cae617a58c, + 0x3fe08f507c46724a, 0xbfab9abcc87b4a38, + 0x3fc0695a89c4f315, 0xbfd37fe68b65f569, + 0xbf6f42a58bbb3c80, 0x3fc08156c872c181, + 0x3fd1ede788107382, 0x3fd3f382ed780f13, + 0xbfb55f52a8daa9f6, 0x3fde04b0afe0ccb0, + 0x3fca47c7c5c6eca1, 0x3fd7ac861d0f1341, + 0xbfe0dc682225ca0f, 0xbfe4d8dcb6ed14c5, + 0xbfe130527c4c38c8, 0x3fc978c1cac10c34, + 0xbfef1dbc8fa4c66c, 0x3fde413cdb57c976, + 0x3fc08b93d3415dba, 0xbfc863a2a1a31c37, + 0x3fbc5de6efc63be0, 0x3fd2677d3ad7095d, + 0xbfc3a0e88b80152c, 0xbfe3d633f6d7ab9a, + 0x3fec7c77a281d11d, 0x3fe8cc0c6d325a20, + 0x3feba6f87e90e2b4, 0x3f9e9118fd0fae80, + 0x3fcc1693a35e6468, 0x3fed6a81e6f82152, + 0x3fb88e49b3450994, 0xbfdf2d3e0623cb80, + 0x3fc9d52ca8f62f98, 0xbfcadda01389fdbc, + 0xbfe9c74df5f20789, 0xbff514be77b914bf, + 0x3fc88362a46431e4, 0xbfea585116b5a7ac, + 0x3ff2a4a85b7a25d0, 0xbfe88f4f1c36e747, + 0x3fccdd9a8fb4108d, 0x3fe01b2531da4ffb, + 0xbfa9cf6474c05d88, 0xbfdd5b97266036fc, + 0x3fbc8e23d7d5f850, 0x3fea346814cfbb7c, + 0xbff5d9697d0b1aa8, 0xbfeebaa0b6cd703a, + 0x3fe745be2ad03e0a, 0x3fe94e9210d31b81, + 0xbfe794538540e1d9, 0x3fd3a6aa3fb3f6cd, + 0x3fe4b63291a1eb9a, 0x3fd3fbb6fc4890cb, + 0xbfdab845930686e2, 0x3fea72a7ff1a13b8, + 0x3fd6ef9ca9d5e0e0, 0x3fafc15e4358268a, + 0x3fd21c7ce7cf11d8, 0xbfd5cfbf5ba91a4f, + 0xbfe3317e20642726, 0x3faf78cf89387b80, + 0x3fe2d022fc943ac9, 0x3fec795eee3604cd, + 0x3f879a4e92be04e8, 0xbfdcc1eff06b0071, + 0xbfc5573745e46965, 0x3fe30025f056afcd, + 0xbfc020ec4adca53c, 0xbfcaeac179acdacc, + 0xbfd4765e1686f8ef, 0xbfe657b5267fb1d9, + 0x3fe2657aef845b67, 0xbfd0009335a5fe54, + 0xbfb4ef7f988bdac9, 0x3fc05a53b4ff3f20, + 0x3f9b668f6ba7c890, 0x3fa78349daa9a2d8, + 0x3f800a4d7e3f4840, 0xbfa8332e11bec528, + 0xbfb834bc22da0514, 0x3fde0a75335f8cda, + 0x3fea6b85da86e4ba, 0x3fe70bb68df8c196, + 0xbfc3f730bae70115, 0x3fd9ed12106303dd, + 0x3faeeb610c5daad2, 0xbfe6476cb2440fb6, + 0x3fdacb495f996d75, 0x3fb56fdbb4302048, + 0x3fbc180127ce1824, 0x3fe3028065b9ab1f, + 0xbfbcb63a28c869a0, 0x3fd0ecd1fb2c0a12, + 0x3fd27c23911c3ce1, 0x3fc3c98bfa016e80, + 0x3fc496ef1d5bae8c, 0x3feea453db31eab6, + 0x3fdf684d5a5904c1, 0x3fe3a3f893e845cc, + 0x3fe48f965bd2af79, 0x3fe244e63ee829fc, + 0x3fb1f98fd18bee7d, 0xbfe0bd9fc5289d6d, + 0xbfd6b2d650ff0531, 0xbfbe9defc862d7ec, + 0xbfdf6f4a3ce35b4e, 0x3fd651b2c49f99f0, + 0x3ff11bb2da5979ef, 0xbfeb6678aaf553c0, + 0xbfefad2936e5c103, 0x3fed59673cf0b4e4, + 0xbfe110bd122d8972, 0xbfe75d3103a40c92, + 0xbfc0828a1d0cebb6, 0x3fe6e3f138f5ebc0, + 0x3fe6d5acb0bb52fe, 0xbfe7a61ae0f3e6ae, + 0x3fb60578576a37c6, 0x3fe07bbf32a26ef0, + 0xbfe3249069f90586, 0x3fd036be3ba6ece7, + 0xbfc8ae8f3e64c397, 0x3fe7c1a7093db36a, + 0x3f8beca26ff0bd10, 0xbfbf9181bff80e44, + 0x3ff6dca291b63284, 0xbfc10700595e256c, + 0x3fbdbffd0027e840, 0x3feb9d31bd6d5ab4, + 0x3fda928f58fdbc86, 0x3fd30ac77d9fcab5, + 0x3fee55088883bb37, 0xbfb3c455b80b9269, + 0xbfcbea2c659d77fc, 0x3fdb5ed19cee41fe, + 0x3f979c45debf8db0, 0xbfed78dd6f27fce4, + 0x3fe41eeb488a13bc, 0xbfeac89cb1761c60, + 0x3fc1c2e1d573ed9c, 0xbfe8161d8e1e005a, + 0xbfd2cd796c1f2818, 0x3fe8d81c411a8dee, + 0x3ff3fa2a98ea0dcc, 0x3ff3bcdac8466800, + 0x3fdff65c4ba7925e, 0xbfc2855ae2b882a7, + 0xbfd51c178e9bd000, 0xbff2faa200e1fb0e, + 0xbfc2d56f120bf0b0, 0x3fe2a0f8cd4bccc9, + 0xbff0d9c6a896c096, 0xbfdf04ef765b7953, + 0xbfea471684cd3c27, 0xbfb672e010a4d070, + 0x3f467765d4f93200, 0x3fe88538e32c581c, + 0xbfb1d2d99334006c, 0x40564cbb42c99726, + 0xbfe4e4a3b97346c0, 0xbfcf12ba0b47d5b8, + 0x3fd41efaff950f62, 0xbff52bae00cff300, + 0xbff52a175c683427, 0x3fc619886ab09eaa, + 0x3fd9ed2560eaf6ee, 0x3fed4d6b8cc15a61, + 0x3fe6b9ddbea342f6, 0xbfc3ce79029f3f63, + 0xbfb7cc64d1d2016c, 0x3fc7cc4062112514, + 0xbfddac143ed3d1bb, 0xbfc45b28adb18684, + 0x3fdd1a9f6f50aea3, 0xbfc0f6ae1cfb65a0, + 0x3fe27ab9785b4ba6, 0xbfe402235a1cff4b, + 0xbfe463b2c34fb3e8, 0xbfbbea52fedbda54, + 0xbfc2693af774af38, 0xbfd6e10a99299280, + 0xbfe3d45daf871436, 0x3fa104787204fae8, + 0xbfe34c53fbfa8631, 0xbfc226a573f0d7f2, + 0x3fbec24f1b234d9e, 0x3fe257b511472f4d, + 0xbfd0ee2ee77444f7, 0xbfb26746ea95e222, + 0xbfe50153c0cc0fac, 0x3fc0d4bb05015d70, + 0x3fe315bfdf396d61, 0x3fcd7b59af71bcfe, + 0xbfe5c9cf9c96fc05, 0x3fe41c7aa999e06c, + 0x3fdd837e728f5634, 0xbfd90713a2abf06c, + 0xbfc1284d8f62a01e, 0x3fd676a652698626, + 0x3fc36e4b40fddad0, 0xbfe91b2a14ffde9c, + 0xbfed597ab9597910, 0x3fd1dd0b4c682b82, + 0xbfc0c4044c41e167, 0x3fdba7f939e18224, + 0xbfacafaf7fa93958, 0xbfe8560e08196b1b, + 0x3fd43efa607b7b2a, 0xbfe4c2de61a4ab3f, + 0xbfe4d030cc0135fc, 0xbfce1e30f0251406, + 0x3fc88b431267d778, 0x3fe5b31c1ef16cd5, + 0xbfc35dd14a4cdc80, 0xbfd3996754c169d2, + 0x3fd17ac2e231edb6, 0x3fa6843af1c1fd48, + 0xbfa6979d8d8580e0, 0xbff14d241b256560, + 0x3fcb6f4e54f81203, 0xbfbe20f4129d80d0 }; static const uint64_t ref_cfft_noisy_256[512] = { - 0xbff2fd4224ea388e, 0x0, - 0x3fd6f77caa1b7c64, 0xbfdb1fb0d9807e00, - 0xbfecc1a003bc1914, 0x3ff48d449371aa02, - 0x3fe1cc51db8c5b30, 0xbfc26618d480b622, - 0x3fa8f414424ef20e, 0xbfb41030c322eb60, - 0xbfd4fd2be918b301, 0xbfb3eb101903e336, - 0x3fd5db30e197c801, 0x3fdbbda70b0028f4, - 0x3fcceb2b78e51072, 0x3fe4ccc28adaa431, - 0xbfdadb675a1f5ad4, 0x3fdcce3c61f24768, - 0x3fec574952bda1c0, 0xbfd2676726936072, - 0xbfe28a5f3ecce9cc, 0x3fe697a852bfa98b, - 0xbfd85fdec1bc1220, 0xbfc069e06d772f30, - 0x3fdb604881067ff3, 0xbfb52ef1c51400bc, - 0x3fa34f6a2cae23c0, 0x3ff2393d6d82f358, - 0xbfdbb06a0e0e06c6, 0xbfa8e49b247196a0, - 0x3fc05acfc63aaf79, 0xbfc004d8317374fe, - 0xbfe19b5f19db4f7d, 0x3fe26565b4dd4d7d, - 0x3fc66e7e736c07c1, 0xbfadac3e2d0ab078, - 0xbff32baf152a7c9e, 0xbfca2c175e3084f0, - 0x3ff8c26ba2f2de80, 0x3fd9be120335d4c6, - 0x3fe4d66001545a48, 0x3fa12073709099a8, - 0xbfa74d1027cdcfcc, 0x3fcb2b6600a7e63c, - 0x3ff1f22f778098fa, 0xbfa9a5ab8bcdebac, - 0xbfdc2ed0d957f240, 0x3feac88872330662, - 0xbfd4d1f33c481da7, 0x3fd6665249b5874e, - 0x3fd49e7fa87978bd, 0xbfc6d9b6343d43f4, - 0x3fd6ad369ed31c6e, 0x3fe533e50f611c90, - 0xbfbfc1f71ec785fc, 0x3fc9248bd1cc83ae, - 0xbfd38916828ab702, 0x3feb5f432b312eb2, - 0x3fd1ce714f6bcbca, 0x3fd21fd95c7ad5b8, - 0xbfeffa1ac0e2c285, 0x3fdfa38e8243567c, - 0xbfe2c03464ba5848, 0x3fe42c635faefcda, - 0x3fdbb422925829df, 0xc05637e03de1200e, - 0x3fe9dd97b7f22042, 0x3fe7c97880e84c68, - 0x3fd13a8ec47f59ca, 0xbfdd821324334ebe, - 0x3fc1ef224331cfcf, 0xbfeab85adb9b1fc8, - 0xbfc556a094c3415c, 0x3fcb8c6215d7e506, - 0x3fdef44a0d5c261c, 0xbfacfd5aee99a3e8, - 0x3fead3a9ca5d5960, 0xbff0f0fc2ffd8095, - 0xbfda1d7a532754f0, 0x3fb1e9a43d564302, - 0x3fe639406eb82138, 0xbfc7060451628475, - 0x3fb11a64041dfa24, 0x3fe422bdb36600f6, - 0x3fe07ae1aa9e6626, 0x3fef8736c6118f2b, - 0xbfe3b77ca0ce4ca0, 0x3fc5feda91f37f15, - 0xbfcb78f982b755c6, 0x3ff27de4f4119e37, - 0xbfac8413ecf2f5e4, 0x3fc62a0894c3eeb4, - 0xbfc1d24d80a4a544, 0xbfda6561ac0f6b79, - 0xbfc301fa2d0488f7, 0xbf8429f0c4af77a0, - 0xbfd7937dd8b75180, 0xbfc44c4dcf139a62, - 0xbfd58733186871c5, 0xbfa355572f0d39a0, - 0x3fc439675c1be175, 0x3fe31494fc55a6b8, - 0x3febb826bc389dbd, 0xbf7d3e8e29929e80, - 0xbff2b3bbc5b38763, 0xbfdb675a8e77df50, - 0x3fdd4d637fe0582f, 0x3fe3a82b2774074f, - 0x3fec93f333492e98, 0xbfd02fd096b5c542, - 0xbfd6e67605c0cd83, 0x3fb1fcba90db298a, - 0xbfdec724e4c2b1e4, 0x3fedb406c1f451b4, - 0xbfe18e4950e2c94e, 0x3fdee61cfce072aa, - 0xbfc924019890f154, 0x3fd7afde7bca7f64, - 0xbfd1db7426057361, 0x3fe194e62c97d24b, - 0x3fb78cbc110b3600, 0x3fd563bbb14ee4f8, - 0xbfb05df8339c145a, 0x3fed976938425b12, - 0x3fd6dc07fa8cd496, 0xbfcc728ba056a5fd, - 0xbfd2426cd25cb2e6, 0x3fc7550ae47544ec, - 0x3fd9788dc804fec7, 0x3fe7ccffa6192c00, - 0x3fefae0d56dc5a3f, 0x3fab2c1d1b43c05a, - 0xbfe16b0c569c0cbe, 0x3fdbd8fd4bc4ae1e, - 0xbfc51752a8dcff7e, 0xbfe9a0650da469c6, - 0xbfe9fade0b771d14, 0xbfadcfd788d9c5e8, - 0x3fe8b86084c89e01, 0x3fc8642f3ecc952b, - 0x3fcf10b2a256c1aa, 0x3fca6c8b94fe318a, - 0xbfcbe6e011faf21a, 0x3fe26544971178a4, - 0x3fc6a9e991fbad84, 0x3fe5e83dc7f19198, - 0xbfcdcc9e39bb0bd1, 0xbfd65bc04b9d1827, - 0x3fc8c9435f25b4fe, 0x3fe889caa508c1f1, - 0x3ff176c16d9cfc7e, 0xbfb93590220bde90, - 0x3fe32f0521f2c9df, 0x3fe864c5a2379117, - 0xbfd5fadd82ab0c04, 0x3ff2e41d38ff4320, - 0xbfcfd6d5b468016d, 0xbfc11a5000695bd3, - 0x3febbd6d5ab8f4cd, 0xbfeedcec720565ba, - 0x3feee0ba2a3da8ba, 0x3f9c1a53bc1aa9c8, - 0xbfdcbf319c1229cb, 0xbfe8aa65da9a854a, - 0x3fe65f9ce11e8368, 0x3fd790cf385aceee, - 0xbfd7ed684efe7fbd, 0x3fb089fd58f941fc, - 0x3fed5fccf5aef45a, 0xbfd446f25492238c, - 0xbfe1ce9d873dcf6a, 0xbfd28d316113587b, - 0x3fc2a8132009769e, 0x3fd93bc18c88f5ce, - 0x3fd5116a51aa5898, 0x3fb8238842bddff0, - 0xbfa78a84a7f398b0, 0xbfe467086234e5d1, - 0xbfd3e814e85a9201, 0x3fc11a491264baa4, - 0xbfbc9dd692c43e00, 0x3fa3685ffd3df630, - 0x3fd4db4be78c28e9, 0x3ff030771c8e4922, - 0xbfd9a49f7841a058, 0x3fd0f4ad037d64d6, - 0xbfc070fb6d69d349, 0x3fd5857a137e8318, - 0x3fc39119adc262fc, 0x3fe810dea087d5b7, - 0xbfa59599438793c8, 0x3fe523e12e1e4529, - 0xbfb5aeca60c5520c, 0x3fda6ca6fba29e00, - 0xbfb87c97b23f9c98, 0x3fd01bca4b2519a0, - 0x3fef2ac914d00331, 0x3fb27db01004d230, - 0xbfcff74b68c9f24c, 0x3ff1e6afd36b54db, - 0x3fc1c701125cc399, 0x3fc36d020d5f1cb8, - 0x3fe4e73e100e93be, 0xbfe627c4f88355fa, - 0xbfb6200b1a60cedc, 0xbfecb198fdae3139, - 0x3fead0a3ef866285, 0x3fe43deb63c15854, - 0x3fb50168783c8a86, 0xbfe08bbe81bbbe2c, - 0x3ff1bca47c42ec52, 0x3fb3346328c02188, - 0x3fe77fcf076fa062, 0xbfcafafe2b6fabc2, - 0xbfbf5a8ad465d60c, 0xbfea1d517ca44c7e, - 0xbfd05d5a93cf459e, 0x3feee901535bdb64, - 0xbfb1a5b3e9f60d18, 0xbfdcddbc661243c0, - 0x3fbc63db03e52040, 0xbfdfc73a8906752c, - 0x3fdb957538101c7e, 0x3fdfa5963e821526, - 0xbef18f0a86288000, 0x3fc554924933cc01, - 0xbfddf803fe066811, 0x3fdb259948418f28, - 0x3fef500628745eda, 0x3fc03788c8c7c953, - 0x3fdd481951234013, 0x3fef906038075dc5, - 0x3ff018d854ce2400, 0x3f9076046f824220, - 0xbfd5fe4649eda6be, 0x3fe1dd10015efa8c, - 0xbfef146c3c694dc4, 0x3fea6c0cdb6125a4, - 0x3fa36c8a2a8fdd98, 0xbfca6e214b459f5b, - 0xbfca0056b8614e40, 0x3fde485b79e35f1e, - 0x3fc4daa9f3435331, 0xbfb56f2851f25e84, - 0xbf59ff3b2e6d9300, 0x3f81bb5206dfef50, - 0xbfe50d191089c788, 0x3fd129eb5ee15df2, - 0xbf6eec5dcab734c0, 0x3fcb1c4200ec981d, - 0xbfe1d7131105d2fc, 0xbfeba8346eb6879d, - 0xbfcddacf378bddf0, 0xbfd3082e049478f4, - 0x3ff14a2203f25235, 0xbfc47b274c9d9a12, - 0x3fe07e87e4f2e9e4, 0x0, - 0x3ff14a2203f25234, 0x3fc47b274c9d9a24, - 0xbfcddacf378bddf0, 0x3fd3082e049478f6, - 0xbfe1d7131105d300, 0x3feba8346eb6879c, - 0xbf6eec5dcab734e0, 0xbfcb1c4200ec981c, - 0xbfe50d191089c788, 0xbfd129eb5ee15df8, - 0xbf59ff3b2e6d9400, 0xbf81bb5206dff030, - 0x3fc4daa9f3435332, 0x3fb56f2851f25e88, - 0xbfca0056b8614e38, 0xbfde485b79e35f24, - 0x3fa36c8a2a8fdd98, 0x3fca6e214b459f55, - 0xbfef146c3c694dc0, 0xbfea6c0cdb6125a5, - 0xbfd5fe4649eda6be, 0xbfe1dd10015efa8e, - 0x3ff018d854ce2400, 0xbf9076046f8241d0, - 0x3fdd481951234018, 0xbfef906038075dc4, - 0x3fef500628745ed9, 0xbfc03788c8c7c948, - 0xbfddf803fe066810, 0xbfdb259948418f2d, - 0xbef18f0a86288000, 0xbfc554924933cc03, - 0x3fdb957538101c7e, 0xbfdfa5963e821527, - 0x3fbc63db03e52028, 0x3fdfc73a8906752a, - 0xbfb1a5b3e9f60d20, 0x3fdcddbc661243ba, - 0xbfd05d5a93cf459d, 0xbfeee901535bdb68, - 0xbfbf5a8ad465d61a, 0x3fea1d517ca44c7f, - 0x3fe77fcf076fa062, 0x3fcafafe2b6fabc1, - 0x3ff1bca47c42ec52, 0xbfb3346328c02170, - 0x3fb50168783c8a8c, 0x3fe08bbe81bbbe2e, - 0x3fead0a3ef866286, 0xbfe43deb63c15851, - 0xbfb6200b1a60cee6, 0x3fecb198fdae313c, - 0x3fe4e73e100e93bc, 0x3fe627c4f88355fa, - 0x3fc1c701125cc399, 0xbfc36d020d5f1cb8, - 0xbfcff74b68c9f23d, 0xbff1e6afd36b54da, - 0x3fef2ac914d0032f, 0xbfb27db01004d236, - 0xbfb87c97b23f9ca0, 0xbfd01bca4b2519a2, - 0xbfb5aeca60c55284, 0xbfda6ca6fba29e00, - 0xbfa59599438793c8, 0xbfe523e12e1e4528, - 0x3fc39119adc26303, 0xbfe810dea087d5b7, - 0xbfc070fb6d69d349, 0xbfd5857a137e831c, - 0xbfd9a49f7841a056, 0xbfd0f4ad037d64d6, - 0x3fd4db4be78c28e8, 0xbff030771c8e4921, - 0xbfbc9dd692c43e10, 0xbfa3685ffd3df660, - 0xbfd3e814e85a9204, 0xbfc11a491264baa9, - 0xbfa78a84a7f398e0, 0x3fe467086234e5d1, - 0x3fd5116a51aa588f, 0xbfb8238842bddfec, - 0x3fc2a813200976ae, 0xbfd93bc18c88f5d2, - 0xbfe1ce9d873dcf6c, 0x3fd28d3161135876, - 0x3fed5fccf5aef45a, 0x3fd446f25492238d, - 0xbfd7ed684efe7fbe, 0xbfb089fd58f94208, - 0x3fe65f9ce11e8369, 0xbfd790cf385aceeb, - 0xbfdcbf319c1229d2, 0x3fe8aa65da9a8548, - 0x3feee0ba2a3da8ba, 0xbf9c1a53bc1aa9a0, - 0x3febbd6d5ab8f4ca, 0x3feedcec720565be, - 0xbfcfd6d5b468016b, 0x3fc11a5000695bd9, - 0xbfd5fadd82ab0bfe, 0xbff2e41d38ff4320, - 0x3fe32f0521f2c9e2, 0xbfe864c5a2379114, - 0x3ff176c16d9cfc7e, 0x3fb93590220bde98, - 0x3fc8c9435f25b500, 0xbfe889caa508c1ef, - 0xbfcdcc9e39bb0bce, 0x3fd65bc04b9d1826, - 0x3fc6a9e991fbad8b, 0xbfe5e83dc7f19198, - 0xbfcbe6e011faf21a, 0xbfe26544971178a7, - 0x3fcf10b2a256c1ac, 0xbfca6c8b94fe3193, - 0x3fe8b86084c89e04, 0xbfc8642f3ecc952d, - 0xbfe9fade0b771d14, 0x3fadcfd788d9c5dc, - 0xbfc51752a8dcff89, 0x3fe9a0650da469c4, - 0xbfe16b0c569c0cbd, 0xbfdbd8fd4bc4ae22, - 0x3fefae0d56dc5a3f, 0xbfab2c1d1b43c032, - 0x3fd9788dc804fec7, 0xbfe7ccffa6192c00, - 0xbfd2426cd25cb2ea, 0xbfc7550ae47544fc, - 0x3fd6dc07fa8cd491, 0x3fcc728ba056a607, - 0xbfb05df8339c1447, 0xbfed976938425b12, - 0x3fb78cbc110b35f8, 0xbfd563bbb14ee4f9, - 0xbfd1db742605735e, 0xbfe194e62c97d24a, - 0xbfc924019890f154, 0xbfd7afde7bca7f67, - 0xbfe18e4950e2c94c, 0xbfdee61cfce072a8, - 0xbfdec724e4c2b1e2, 0xbfedb406c1f451b4, - 0xbfd6e67605c0cd84, 0xbfb1fcba90db2994, - 0x3fec93f333492e98, 0x3fd02fd096b5c546, - 0x3fdd4d637fe0582e, 0xbfe3a82b2774074e, - 0xbff2b3bbc5b38762, 0x3fdb675a8e77df4e, - 0x3febb826bc389dbe, 0x3f7d3e8e2992a000, - 0x3fc439675c1be17f, 0xbfe31494fc55a6b7, - 0xbfd58733186871c6, 0x3fa355572f0d3980, - 0xbfd7937dd8b75180, 0x3fc44c4dcf139a61, - 0xbfc301fa2d0488fe, 0x3f8429f0c4af7720, - 0xbfc1d24d80a4a54a, 0x3fda6561ac0f6b78, - 0xbfac8413ecf2f5a8, 0xbfc62a0894c3eebe, - 0xbfcb78f982b755be, 0xbff27de4f4119e37, - 0xbfe3b77ca0ce4ca0, 0xbfc5feda91f37f22, - 0x3fe07ae1aa9e6626, 0xbfef8736c6118f29, - 0x3fb11a64041dfa30, 0xbfe422bdb36600f6, - 0x3fe639406eb82137, 0x3fc7060451628478, - 0xbfda1d7a532754ef, 0xbfb1e9a43d564328, - 0x3fead3a9ca5d595e, 0x3ff0f0fc2ffd8096, - 0x3fdef44a0d5c261d, 0x3facfd5aee99a410, - 0xbfc556a094c34159, 0xbfcb8c6215d7e507, - 0x3fc1ef224331cfcf, 0x3feab85adb9b1fc8, - 0x3fd13a8ec47f59c5, 0x3fdd821324334ebe, - 0x3fe9dd97b7f22042, 0xbfe7c97880e84c67, - 0x3fdbb422925828fd, 0x405637e03de1200e, - 0xbfe2c03464ba5846, 0xbfe42c635faefcde, - 0xbfeffa1ac0e2c287, 0xbfdfa38e82435680, - 0x3fd1ce714f6bcbce, 0xbfd21fd95c7ad5b5, - 0xbfd38916828ab6fe, 0xbfeb5f432b312eb2, - 0xbfbfc1f71ec785f4, 0xbfc9248bd1cc83b1, - 0x3fd6ad369ed31c6f, 0xbfe533e50f611c8f, - 0x3fd49e7fa87978ba, 0x3fc6d9b6343d43fa, - 0xbfd4d1f33c481da2, 0xbfd6665249b58750, - 0xbfdc2ed0d957f238, 0xbfeac88872330664, - 0x3ff1f22f778098f9, 0x3fa9a5ab8bcdebb8, - 0xbfa74d1027cdcfc7, 0xbfcb2b6600a7e636, - 0x3fe4d66001545a46, 0xbfa1207370909988, - 0x3ff8c26ba2f2de82, 0xbfd9be120335d4ba, - 0xbff32baf152a7c9e, 0x3fca2c175e3084e0, - 0x3fc66e7e736c07bf, 0x3fadac3e2d0ab07c, - 0xbfe19b5f19db4f7d, 0xbfe26565b4dd4d7e, - 0x3fc05acfc63aaf7e, 0x3fc004d8317374ff, - 0xbfdbb06a0e0e06c4, 0x3fa8e49b2471969c, - 0x3fa34f6a2cae2408, 0xbff2393d6d82f358, - 0x3fdb604881067ff0, 0x3fb52ef1c51400c0, - 0xbfd85fdec1bc1224, 0x3fc069e06d772f26, - 0xbfe28a5f3ecce9c8, 0xbfe697a852bfa98c, - 0x3fec574952bda1c2, 0x3fd2676726936078, - 0xbfdadb675a1f5ad0, 0xbfdcce3c61f24764, - 0x3fcceb2b78e5107d, 0xbfe4ccc28adaa430, - 0x3fd5db30e197c7ff, 0xbfdbbda70b0028ee, - 0xbfd4fd2be918b303, 0x3fb3eb101903e336, - 0x3fa8f414424ef20c, 0x3fb41030c322eb5e, - 0x3fe1cc51db8c5b30, 0x3fc26618d480b62c, - 0xbfecc1a003bc1912, 0xbff48d449371aa03, - 0x3fd6f77caa1b7c63, 0x3fdb1fb0d9807e03 + 0xbfe927f57c820850, 0x0, + 0x3fcb6f4e54f81206, 0x3fbe20f4129d80d8, + 0xbfa6979d8d8580d8, 0x3ff14d241b256560, + 0x3fd17ac2e231edb6, 0xbfa6843af1c1fd50, + 0xbfc35dd14a4cdc7c, 0x3fd3996754c169d1, + 0x3fc88b431267d778, 0xbfe5b31c1ef16cd6, + 0xbfe4d030cc0135fa, 0x3fce1e30f0251405, + 0x3fd43efa607b7b2d, 0x3fe4c2de61a4ab40, + 0xbfacafaf7fa93958, 0x3fe8560e08196b1b, + 0xbfc0c4044c41e16b, 0xbfdba7f939e18226, + 0xbfed597ab9597911, 0xbfd1dd0b4c682b83, + 0x3fc36e4b40fddad0, 0x3fe91b2a14ffde9c, + 0xbfc1284d8f62a018, 0xbfd676a652698626, + 0x3fdd837e728f5633, 0x3fd90713a2abf06b, + 0xbfe5c9cf9c96fc06, 0xbfe41c7aa999e06d, + 0x3fe315bfdf396d62, 0xbfcd7b59af71bcf9, + 0xbfe50153c0cc0fac, 0xbfc0d4bb05015d70, + 0xbfd0ee2ee77444f4, 0x3fb26746ea95e224, + 0x3fbec24f1b234da5, 0xbfe257b511472f4e, + 0xbfe34c53fbfa8632, 0x3fc226a573f0d7f3, + 0xbfe3d45daf871437, 0xbfa104787204fac8, + 0xbfc2693af774af3b, 0x3fd6e10a99299282, + 0xbfe463b2c34fb3e7, 0x3fbbea52fedbda5c, + 0x3fe27ab9785b4ba5, 0x3fe402235a1cff4b, + 0x3fdd1a9f6f50aea3, 0x3fc0f6ae1cfb65a0, + 0xbfddac143ed3d1b7, 0x3fc45b28adb18685, + 0xbfb7cc64d1d20167, 0xbfc7cc4062112513, + 0x3fe6b9ddbea342f4, 0x3fc3ce79029f3f62, + 0x3fd9ed2560eaf6ee, 0xbfed4d6b8cc15a64, + 0xbff52a175c683427, 0xbfc619886ab09eb0, + 0x3fd41efaff950f60, 0x3ff52bae00cff2ff, + 0xbfe4e4a3b97346c0, 0x3fcf12ba0b47d5b6, + 0xbfb1d2d99334006c, 0xc0564cbb42c99726, + 0x3f467765d4f93200, 0xbfe88538e32c581d, + 0xbfea471684cd3c27, 0x3fb672e010a4d070, + 0xbff0d9c6a896c096, 0x3fdf04ef765b7957, + 0xbfc2d56f120bf0b0, 0xbfe2a0f8cd4bccc7, + 0xbfd51c178e9bd002, 0x3ff2faa200e1fb10, + 0x3fdff65c4ba7925f, 0x3fc2855ae2b882a9, + 0x3ff3fa2a98ea0dcd, 0xbff3bcdac8466800, + 0xbfd2cd796c1f2818, 0xbfe8d81c411a8dee, + 0x3fc1c2e1d573ed9a, 0x3fe8161d8e1e0059, + 0x3fe41eeb488a13bd, 0x3feac89cb1761c62, + 0x3f979c45debf8dc0, 0x3fed78dd6f27fce2, + 0xbfcbea2c659d7800, 0xbfdb5ed19cee41fd, + 0x3fee55088883bb38, 0x3fb3c455b80b9271, + 0x3fda928f58fdbc86, 0xbfd30ac77d9fcab5, + 0x3fbdbffd0027e83c, 0xbfeb9d31bd6d5ab4, + 0x3ff6dca291b63284, 0x3fc10700595e256c, + 0x3f8beca26ff0bd38, 0x3fbf9181bff80e44, + 0xbfc8ae8f3e64c391, 0xbfe7c1a7093db36b, + 0xbfe3249069f90585, 0xbfd036be3ba6ece9, + 0x3fb60578576a37c4, 0xbfe07bbf32a26eef, + 0x3fe6d5acb0bb5301, 0x3fe7a61ae0f3e6af, + 0xbfc0828a1d0cebbc, 0xbfe6e3f138f5ebc0, + 0xbfe110bd122d8972, 0x3fe75d3103a40c90, + 0xbfefad2936e5c103, 0xbfed59673cf0b4e4, + 0x3ff11bb2da5979ef, 0x3feb6678aaf553bf, + 0xbfdf6f4a3ce35b4f, 0xbfd651b2c49f99ed, + 0xbfd6b2d650ff0530, 0x3fbe9defc862d7ec, + 0x3fb1f98fd18bee83, 0x3fe0bd9fc5289d6c, + 0x3fe48f965bd2af79, 0xbfe244e63ee829fb, + 0x3fdf684d5a5904c1, 0xbfe3a3f893e845cd, + 0x3fc496ef1d5bae8a, 0xbfeea453db31eab5, + 0x3fd27c23911c3ce1, 0xbfc3c98bfa016e80, + 0xbfbcb63a28c869ac, 0xbfd0ecd1fb2c0a14, + 0x3fbc180127ce1824, 0xbfe3028065b9ab20, + 0x3fdacb495f996d75, 0xbfb56fdbb430203a, + 0x3faeeb610c5daade, 0x3fe6476cb2440fb5, + 0xbfc3f730bae70112, 0xbfd9ed12106303e1, + 0x3fea6b85da86e4b9, 0xbfe70bb68df8c196, + 0xbfb834bc22da051c, 0xbfde0a75335f8ce0, + 0x3f800a4d7e3f4840, 0x3fa8332e11bec528, + 0x3f9b668f6ba7c8b0, 0xbfa78349daa9a2d8, + 0xbfb4ef7f988bdad5, 0xbfc05a53b4ff3f26, + 0x3fe2657aef845b66, 0x3fd0009335a5fe53, + 0xbfd4765e1686f8f0, 0x3fe657b5267fb1d8, + 0xbfc020ec4adca541, 0x3fcaeac179acdad0, + 0xbfc5573745e4695f, 0xbfe30025f056afcc, + 0x3f879a4e92be04d0, 0x3fdcc1eff06b0071, + 0x3fe2d022fc943ac9, 0xbfec795eee3604cd, + 0xbfe3317e20642728, 0xbfaf78cf89387b88, + 0x3fd21c7ce7cf11d4, 0x3fd5cfbf5ba91a4f, + 0x3fd6ef9ca9d5e0de, 0xbfafc15e43582672, + 0xbfdab845930686e2, 0xbfea72a7ff1a13b9, + 0x3fe4b63291a1eb98, 0xbfd3fbb6fc4890cc, + 0xbfe794538540e1d8, 0xbfd3a6aa3fb3f6cf, + 0x3fe745be2ad03e0b, 0xbfe94e9210d31b80, + 0xbff5d9697d0b1aa8, 0x3feebaa0b6cd703a, + 0x3fbc8e23d7d5f848, 0xbfea346814cfbb7c, + 0xbfa9cf6474c05d80, 0x3fdd5b97266036f8, + 0x3fccdd9a8fb4108d, 0xbfe01b2531da4ffb, + 0x3ff2a4a85b7a25d0, 0x3fe88f4f1c36e749, + 0x3fc88362a46431ec, 0x3fea585116b5a7aa, + 0xbfe9c74df5f20789, 0x3ff514be77b914c0, + 0x3fc9d52ca8f62f96, 0x3fcadda01389fdba, + 0x3fb88e49b3450994, 0x3fdf2d3e0623cb80, + 0x3fcc1693a35e6469, 0xbfed6a81e6f82152, + 0x3feba6f87e90e2b3, 0xbf9e9118fd0fae80, + 0x3fec7c77a281d11d, 0xbfe8cc0c6d325a20, + 0xbfc3a0e88b801530, 0x3fe3d633f6d7ab99, + 0x3fbc5de6efc63be0, 0xbfd2677d3ad7095a, + 0x3fc08b93d3415dbc, 0x3fc863a2a1a31c36, + 0xbfef1dbc8fa4c66e, 0xbfde413cdb57c978, + 0xbfe130527c4c38c8, 0xbfc978c1cac10c34, + 0xbfe0dc682225ca0e, 0x3fe4d8dcb6ed14c5, + 0x3fca47c7c5c6eca2, 0xbfd7ac861d0f1341, + 0xbfb55f52a8daa9f7, 0xbfde04b0afe0ccae, + 0x3fd1ede788107380, 0xbfd3f382ed780f13, + 0xbf6f42a58bbb3d00, 0xbfc08156c872c182, + 0x3fc0695a89c4f315, 0x3fd37fe68b65f56a, + 0x3fe08f507c46724a, 0x3fab9abcc87b4a24, + 0x3fb110814ae271b4, 0x3fec67cae617a58c, + 0xbfd62b3b743b5e94, 0xbfcbe54c32679b6e, + 0x3fde161aefa5169e, 0xbfdf451526d338e9, + 0xbfb3cf4d4cb99310, 0x3f919e26d641f4b8, + 0x3ff1763d9c450533, 0xbfab08ff5c617414, + 0xbfc348ed3271383c, 0x3fe028c16020a25e, + 0xbfe3fc6afa6cf420, 0x3fe7a99205053627, + 0xbfc614b721bb1749, 0x3fe8fcf365d55144, + 0xbfe1e5b07911282e, 0xbfdc2d49029954d6, + 0xbfb152024c29a5c2, 0x3fcb686382669780, + 0x3fe0f60dab2c7064, 0xbfac68e9734b1e38, + 0x3fe2166585ef006f, 0x3ff00a2bb4d91df0, + 0x3fe92711813ea3ea, 0xbfde706cd13ee7fa, + 0x3fd3e8d535a3ff92, 0xbfe1e84eb0a38b3e, + 0x3fba2dba70139658, 0x3fd9aceba4853012, + 0x3fe46495550b3273, 0xbff3b1432e8a1d9f, + 0x3ff7df9746b25918, 0x0, + 0x3fe46495550b3272, 0x3ff3b1432e8a1d9e, + 0x3fba2dba70139654, 0xbfd9aceba4853012, + 0x3fd3e8d535a3ff94, 0x3fe1e84eb0a38b3f, + 0x3fe92711813ea3eb, 0x3fde706cd13ee7fb, + 0x3fe2166585ef006f, 0xbff00a2bb4d91df0, + 0x3fe0f60dab2c7064, 0x3fac68e9734b1e44, + 0xbfb152024c29a5cc, 0xbfcb686382669779, + 0xbfe1e5b07911282e, 0x3fdc2d49029954d6, + 0xbfc614b721bb1751, 0xbfe8fcf365d55145, + 0xbfe3fc6afa6cf41f, 0xbfe7a99205053626, + 0xbfc348ed32713840, 0xbfe028c16020a260, + 0x3ff1763d9c450533, 0x3fab08ff5c617410, + 0xbfb3cf4d4cb9930c, 0xbf919e26d641f4e0, + 0x3fde161aefa516a0, 0x3fdf451526d338eb, + 0xbfd62b3b743b5e92, 0x3fcbe54c32679b6b, + 0x3fb110814ae271b4, 0xbfec67cae617a58c, + 0x3fe08f507c46724a, 0xbfab9abcc87b4a38, + 0x3fc0695a89c4f315, 0xbfd37fe68b65f569, + 0xbf6f42a58bbb3c80, 0x3fc08156c872c181, + 0x3fd1ede788107382, 0x3fd3f382ed780f13, + 0xbfb55f52a8daa9f6, 0x3fde04b0afe0ccb0, + 0x3fca47c7c5c6eca1, 0x3fd7ac861d0f1341, + 0xbfe0dc682225ca0f, 0xbfe4d8dcb6ed14c5, + 0xbfe130527c4c38c8, 0x3fc978c1cac10c34, + 0xbfef1dbc8fa4c66c, 0x3fde413cdb57c976, + 0x3fc08b93d3415dba, 0xbfc863a2a1a31c37, + 0x3fbc5de6efc63be0, 0x3fd2677d3ad7095d, + 0xbfc3a0e88b80152c, 0xbfe3d633f6d7ab9a, + 0x3fec7c77a281d11d, 0x3fe8cc0c6d325a20, + 0x3feba6f87e90e2b4, 0x3f9e9118fd0fae80, + 0x3fcc1693a35e6468, 0x3fed6a81e6f82152, + 0x3fb88e49b3450994, 0xbfdf2d3e0623cb80, + 0x3fc9d52ca8f62f98, 0xbfcadda01389fdbc, + 0xbfe9c74df5f20789, 0xbff514be77b914bf, + 0x3fc88362a46431e4, 0xbfea585116b5a7ac, + 0x3ff2a4a85b7a25d0, 0xbfe88f4f1c36e747, + 0x3fccdd9a8fb4108d, 0x3fe01b2531da4ffb, + 0xbfa9cf6474c05d88, 0xbfdd5b97266036fc, + 0x3fbc8e23d7d5f850, 0x3fea346814cfbb7c, + 0xbff5d9697d0b1aa8, 0xbfeebaa0b6cd703a, + 0x3fe745be2ad03e0a, 0x3fe94e9210d31b81, + 0xbfe794538540e1d9, 0x3fd3a6aa3fb3f6cd, + 0x3fe4b63291a1eb9a, 0x3fd3fbb6fc4890cb, + 0xbfdab845930686e2, 0x3fea72a7ff1a13b8, + 0x3fd6ef9ca9d5e0e0, 0x3fafc15e4358268a, + 0x3fd21c7ce7cf11d8, 0xbfd5cfbf5ba91a4f, + 0xbfe3317e20642726, 0x3faf78cf89387b80, + 0x3fe2d022fc943ac9, 0x3fec795eee3604cd, + 0x3f879a4e92be04e8, 0xbfdcc1eff06b0071, + 0xbfc5573745e46965, 0x3fe30025f056afcd, + 0xbfc020ec4adca53c, 0xbfcaeac179acdacc, + 0xbfd4765e1686f8ef, 0xbfe657b5267fb1d9, + 0x3fe2657aef845b67, 0xbfd0009335a5fe54, + 0xbfb4ef7f988bdac9, 0x3fc05a53b4ff3f20, + 0x3f9b668f6ba7c890, 0x3fa78349daa9a2d8, + 0x3f800a4d7e3f4840, 0xbfa8332e11bec528, + 0xbfb834bc22da0514, 0x3fde0a75335f8cda, + 0x3fea6b85da86e4ba, 0x3fe70bb68df8c196, + 0xbfc3f730bae70115, 0x3fd9ed12106303dd, + 0x3faeeb610c5daad2, 0xbfe6476cb2440fb6, + 0x3fdacb495f996d75, 0x3fb56fdbb4302048, + 0x3fbc180127ce1824, 0x3fe3028065b9ab1f, + 0xbfbcb63a28c869a0, 0x3fd0ecd1fb2c0a12, + 0x3fd27c23911c3ce1, 0x3fc3c98bfa016e80, + 0x3fc496ef1d5bae8c, 0x3feea453db31eab6, + 0x3fdf684d5a5904c1, 0x3fe3a3f893e845cc, + 0x3fe48f965bd2af79, 0x3fe244e63ee829fc, + 0x3fb1f98fd18bee7d, 0xbfe0bd9fc5289d6d, + 0xbfd6b2d650ff0531, 0xbfbe9defc862d7ec, + 0xbfdf6f4a3ce35b4e, 0x3fd651b2c49f99f0, + 0x3ff11bb2da5979ef, 0xbfeb6678aaf553c0, + 0xbfefad2936e5c103, 0x3fed59673cf0b4e4, + 0xbfe110bd122d8972, 0xbfe75d3103a40c92, + 0xbfc0828a1d0cebb6, 0x3fe6e3f138f5ebc0, + 0x3fe6d5acb0bb52fe, 0xbfe7a61ae0f3e6ae, + 0x3fb60578576a37c6, 0x3fe07bbf32a26ef0, + 0xbfe3249069f90586, 0x3fd036be3ba6ece7, + 0xbfc8ae8f3e64c397, 0x3fe7c1a7093db36a, + 0x3f8beca26ff0bd10, 0xbfbf9181bff80e44, + 0x3ff6dca291b63284, 0xbfc10700595e256c, + 0x3fbdbffd0027e840, 0x3feb9d31bd6d5ab4, + 0x3fda928f58fdbc86, 0x3fd30ac77d9fcab5, + 0x3fee55088883bb37, 0xbfb3c455b80b9269, + 0xbfcbea2c659d77fc, 0x3fdb5ed19cee41fe, + 0x3f979c45debf8db0, 0xbfed78dd6f27fce4, + 0x3fe41eeb488a13bc, 0xbfeac89cb1761c60, + 0x3fc1c2e1d573ed9c, 0xbfe8161d8e1e005a, + 0xbfd2cd796c1f2818, 0x3fe8d81c411a8dee, + 0x3ff3fa2a98ea0dcc, 0x3ff3bcdac8466800, + 0x3fdff65c4ba7925e, 0xbfc2855ae2b882a7, + 0xbfd51c178e9bd000, 0xbff2faa200e1fb0e, + 0xbfc2d56f120bf0b0, 0x3fe2a0f8cd4bccc9, + 0xbff0d9c6a896c096, 0xbfdf04ef765b7953, + 0xbfea471684cd3c27, 0xbfb672e010a4d070, + 0x3f467765d4f93200, 0x3fe88538e32c581c, + 0xbfb1d2d99334006c, 0x40564cbb42c99726, + 0xbfe4e4a3b97346c0, 0xbfcf12ba0b47d5b8, + 0x3fd41efaff950f62, 0xbff52bae00cff300, + 0xbff52a175c683427, 0x3fc619886ab09eaa, + 0x3fd9ed2560eaf6ee, 0x3fed4d6b8cc15a61, + 0x3fe6b9ddbea342f6, 0xbfc3ce79029f3f63, + 0xbfb7cc64d1d2016c, 0x3fc7cc4062112514, + 0xbfddac143ed3d1bb, 0xbfc45b28adb18684, + 0x3fdd1a9f6f50aea3, 0xbfc0f6ae1cfb65a0, + 0x3fe27ab9785b4ba6, 0xbfe402235a1cff4b, + 0xbfe463b2c34fb3e8, 0xbfbbea52fedbda54, + 0xbfc2693af774af38, 0xbfd6e10a99299280, + 0xbfe3d45daf871436, 0x3fa104787204fae8, + 0xbfe34c53fbfa8631, 0xbfc226a573f0d7f2, + 0x3fbec24f1b234d9e, 0x3fe257b511472f4d, + 0xbfd0ee2ee77444f7, 0xbfb26746ea95e222, + 0xbfe50153c0cc0fac, 0x3fc0d4bb05015d70, + 0x3fe315bfdf396d61, 0x3fcd7b59af71bcfe, + 0xbfe5c9cf9c96fc05, 0x3fe41c7aa999e06c, + 0x3fdd837e728f5634, 0xbfd90713a2abf06c, + 0xbfc1284d8f62a01e, 0x3fd676a652698626, + 0x3fc36e4b40fddad0, 0xbfe91b2a14ffde9c, + 0xbfed597ab9597910, 0x3fd1dd0b4c682b82, + 0xbfc0c4044c41e167, 0x3fdba7f939e18224, + 0xbfacafaf7fa93958, 0xbfe8560e08196b1b, + 0x3fd43efa607b7b2a, 0xbfe4c2de61a4ab3f, + 0xbfe4d030cc0135fc, 0xbfce1e30f0251406, + 0x3fc88b431267d778, 0x3fe5b31c1ef16cd5, + 0xbfc35dd14a4cdc80, 0xbfd3996754c169d2, + 0x3fd17ac2e231edb6, 0x3fa6843af1c1fd48, + 0xbfa6979d8d8580e0, 0xbff14d241b256560, + 0x3fcb6f4e54f81203, 0xbfbe20f4129d80d0 }; static const uint64_t in_cfft_noisy_512[1024] = { - 0xbf685aa6997e7a65, 0x0, - 0x3fde54741ce71783, 0x0, - 0x3fe6371e397b46fd, 0x0, - 0x3fdc433c34caf034, 0x0, - 0x3faef43688c073db, 0x0, - 0xbfde473b41178f15, 0x0, - 0xbfe7bab83634f071, 0x0, - 0xbfe07504803e5bbc, 0x0, - 0xbf907092dd10161a, 0x0, - 0x3fe2de3b526190f6, 0x0, - 0x3fe9990e8f7ec58a, 0x0, - 0x3fdb4099c4baab31, 0x0, - 0x3fb636f26fd7b9b2, 0x0, - 0xbfd95c7777ddae98, 0x0, - 0xbfe789dfc550c175, 0x0, - 0xbfdd339cb1f2b87b, 0x0, - 0xbfab601de7b98d60, 0x0, - 0x3fdf28e92d84dcf2, 0x0, - 0x3fe6cd581caf7237, 0x0, - 0x3fdeddc233c567f6, 0x0, - 0x3f91c9f088d41c80, 0x0, - 0xbfe0f5a67b0dd6a4, 0x0, - 0xbfe9027af3a5ae06, 0x0, - 0xbfdd0ced8226cf00, 0x0, - 0xbf6752adb69b0572, 0x0, - 0x3fdb1f0a796bb3ae, 0x0, - 0x3fe6f830d98015b3, 0x0, - 0x3fde79988753ce15, 0x0, - 0x3fabeccd938c06da, 0x0, - 0xbfde1d6e8a6a54db, 0x0, - 0xbfe83b8bed9e7d14, 0x0, - 0xbfd721f736b48f76, 0x0, - 0xbf89c2b612630578, 0x0, - 0x3fe0c6955c5821a3, 0x0, - 0x3fe9614ce1d7f50f, 0x0, - 0x3fde4e3d7b09bcd8, 0x0, - 0x3fa37e5892dbc9a3, 0x0, - 0xbfe047a97e80ad57, 0x0, - 0xbfe6f1e1fa299f81, 0x0, - 0xbfdeebe264e0a3ea, 0x0, - 0xbfb237f4a43b2725, 0x0, - 0x3fdc24695aa946e2, 0x0, - 0x3fe84ba13ff8d71b, 0x0, - 0x3fdcbd27528ac8cb, 0x0, - 0xbfa397d7755c2c5e, 0x0, - 0xbfdcc4dd7636baae, 0x0, - 0xbfe4d9b2388b2fac, 0x0, - 0xbfe0d5095260fd2e, 0x0, - 0x3f933b295e116b4c, 0x0, - 0x3fe2be31442d1d08, 0x0, - 0x3fe6e939db00c19e, 0x0, - 0x3fd92f505c5e869e, 0x0, - 0xbfa783c5724ff34c, 0x0, - 0xbfdf92359b74a868, 0x0, - 0xbfe566a9cb0d2deb, 0x0, - 0xbfdf354e8a13e89d, 0x0, - 0x3f71962e1ae8596a, 0x0, - 0x3fe014811c4718af, 0x0, - 0x3fe54b45118250f2, 0x0, - 0x3fe028f0020cc7e0, 0x0, - 0xbf85f033d04de3d1, 0x0, - 0xbfe1c2959c38aba8, 0x0, - 0xbfe4e273bbdd23d5, 0x0, - 0xbfd93a18b0d75ff7, 0x0, - 0x3fa4fc7c91379ca6, 0x0, - 0x3fdfe4e2bb72b333, 0x0, - 0x3fe6aca35779ce3f, 0x0, - 0x3fe0c35516273501, 0x0, - 0x3f8a920bd891f180, 0x0, - 0xbfdc8a080bfa7c03, 0x0, - 0xbfe793cc54a64250, 0x0, - 0xbfdeb16bd450f817, 0x0, - 0xbfa6d568c5272229, 0x0, - 0x3fdcbf15cc88e0f0, 0x0, - 0x3fe6d877b8c9c793, 0x0, - 0x3fdfe12170168400, 0x0, - 0x3f92711cfda31101, 0x0, - 0xbfdfd6667871c6ce, 0x0, - 0xbfe59652ee463b3b, 0x0, - 0xbfe08bd7b450d714, 0x0, - 0x3f9f353dc7437b6e, 0x0, - 0x3fe0eb03cdcd68ce, 0x0, - 0x3fe61ee7fa2b1ecd, 0x0, - 0x3fe269e32fa7c7d2, 0x0, - 0x3fa8ea731beb7275, 0x0, - 0xbfdd7abe12b3f816, 0x0, - 0xbfe653042085cef0, 0x0, - 0xbfdff3a6fa875930, 0x0, - 0x3fb1b12d2577d1e8, 0x0, - 0x3fe0de114e47b447, 0x0, - 0x3fe566ed208bfce8, 0x0, - 0x3fdfc5c99a266550, 0x0, - 0xbfb0a4995e6a7f63, 0x0, - 0xbfe1996b66649b18, 0x0, - 0xbfe6029da0e337de, 0x0, - 0xbfde9d24771603fb, 0x0, - 0x3fa827cf0c4e6833, 0x0, - 0x3fdec77bf9fea3d0, 0x0, - 0x3fe636d4540394b0, 0x0, - 0x3fdf03af736ff0dd, 0x0, - 0x3f7a100f0ee64dcc, 0x0, - 0xbfde3e57b499eb99, 0x0, - 0xbfe86cb65f146013, 0x0, - 0xbfe07159cbe60430, 0x0, - 0xbf91e575a0c6cb7a, 0x0, - 0x3fdf0cb371bd9f58, 0x0, - 0x3fe6cd793080891e, 0x0, - 0x3fdb70c1218d2471, 0x0, - 0xbf9d9cc4ba7b949f, 0x0, - 0xbfe01f57bbe6d753, 0x0, - 0xbfe69155fceb4fc9, 0x0, - 0xbfde7aafbc56fcdf, 0x0, - 0x3fa19ced9c8ab0a8, 0x0, - 0x3fe06ae1def0586d, 0x0, - 0x3fe7335104cc62ae, 0x0, - 0x3fdcb4cc63bc2ebc, 0x0, - 0x3fa2f9212b657dc5, 0x0, - 0xbfdb55f3f0c98cdd, 0x0, - 0xbfe6ddd729533708, 0x0, - 0xbfe2076f4e5f3b5c, 0x0, - 0x3f8049898327d1ad, 0x0, - 0x3fe1444627643bf2, 0x0, - 0x3fe74425861a7bda, 0x0, - 0x3fdcb01fd7577516, 0x0, - 0xbfaa6c84e3f4e41d, 0x0, - 0xbfdf2adbf20c600c, 0x0, - 0xbfe35746a6978ec2, 0x0, - 0xbfe0c2e2c1393078, 0x0, - 0xbf80eb921792ec0c, 0x0, - 0x3fe203242c67e76f, 0x0, - 0x3fe5489288a9d3c4, 0x0, - 0x3fddfeec20f02af2, 0x0, - 0x3f6879017b8297cd, 0x0, - 0xbfe08b892b572016, 0x0, - 0xbfe482aa7ff85ba8, 0x0, - 0xbfe1d4d6138dce30, 0x0, - 0xbfb1a4358edccdc3, 0x0, - 0x3fe222051b425be2, 0x0, - 0x3fe6280a79f2b7fc, 0x0, - 0x3fe143749afd069d, 0x0, - 0x3f832bc43417f057, 0x0, - 0xbfda994777144d54, 0x0, - 0xbfe6e6e876328d4b, 0x0, - 0xbfdd2353de23599b, 0x0, - 0x3f8ed36318583bb9, 0x0, - 0x3fddf6c4228cb042, 0x0, - 0x3fe67e9e91763085, 0x0, - 0x3fe057995f5591c0, 0x0, - 0x3f7b170bb50c5966, 0x0, - 0xbfe08ec9abddc811, 0x0, - 0xbfe8b036152e5110, 0x0, - 0xbfe2af539ba7a8a7, 0x0, - 0xbf86aac302f53b2d, 0x0, - 0x3fde6959b487803b, 0x0, - 0x3fe65c1f40693774, 0x0, - 0x3fdd98b84de0ba99, 0x0, - 0x3fb2d0a3928db5e6, 0x0, - 0xbfdc222f08abacf6, 0x0, - 0xbfe84e7b275e5893, 0x0, - 0xbfdf792ae2f9252b, 0x0, - 0x3fb19fa49f518298, 0x0, - 0x3fe09f3556a060f9, 0x0, - 0x3fe55a14b6f1a3f3, 0x0, - 0x3fdbbe8a2af4d87c, 0x0, - 0xbf9a3ecfc659a2b2, 0x0, - 0xbfe3728a70f2446c, 0x0, - 0xbfe4c33d28f98411, 0x0, - 0xbfdf9a1600f0b373, 0x0, - 0x3fa20c9537fa909b, 0x0, - 0x3fde95cf138d994a, 0x0, - 0x3fe66f96ca8ced52, 0x0, - 0x3fe036b6111bd69e, 0x0, - 0xbfa6783b8cd6dc4f, 0x0, - 0xbfde593a0c94d800, 0x0, - 0xbfe51e8ffcfae262, 0x0, - 0xbfe109c8788dcd6f, 0x0, - 0xbfa04d0590c79b71, 0x0, - 0x3fdf9acec867e6a0, 0x0, - 0x3fe7b5b1aced93ba, 0x0, - 0x3fe02eb0bba837b9, 0x0, - 0xbfb65158a49d95a8, 0x0, - 0xbfdc53c8c4ce12ca, 0x0, - 0xbfe46b5a3df2a63d, 0x0, - 0xbfe07b26cd7c42d3, 0x0, - 0x3f89b277e3ff5d70, 0x0, - 0x3fe0eb930463933b, 0x0, - 0x3fe9497a0156ac76, 0x0, - 0x3fe0b119e8636181, 0x0, - 0x3f50d5b8a43d16ad, 0x0, - 0xbfe06c409409f4d8, 0x0, - 0xbfe4e8076c424100, 0x0, - 0xbfdf2869bbe74bb9, 0x0, - 0x3f8f0cfd1f6a0628, 0x0, - 0x3fe2305241126aea, 0x0, - 0x3fe7785cba18d39a, 0x0, - 0x3fe079b8640d401e, 0x0, - 0x3f7ec0733c0dd438, 0x0, - 0xbfd9fee61b984c8f, 0x0, - 0xbfe759be158ebb9e, 0x0, - 0xbfddfe635eee5b82, 0x0, - 0x3fa6c43352d88556, 0x0, - 0x3fe2601dd4da2506, 0x0, - 0x3fe5ef7d28e50813, 0x0, - 0x3fdfbe04269aab21, 0x0, - 0x3f9832c6403aabf5, 0x0, - 0xbfe176e17b1e2540, 0x0, - 0xbfe83f8704b32d6e, 0x0, - 0xbfe246b4d13eb0ac, 0x0, - 0xbf96cdc7bb3a049e, 0x0, - 0x3fdbcbba0943d1a2, 0x0, - 0x3fe4496e60e29353, 0x0, - 0x3fde8e580354bcad, 0x0, - 0x3fa78466476fe88e, 0x0, - 0xbfde70baae57cb01, 0x0, - 0xbfe6107ec4caf4d5, 0x0, - 0xbfdc1c9c0d94cf33, 0x0, - 0x3f8f9cd7cd588482, 0x0, - 0x3fe06b35daf1775a, 0x0, - 0x3fe719badc1e58ae, 0x0, - 0x3fe47f0df1446704, 0x0, - 0x3f800adc2e5006ca, 0x0, - 0xbfd944f77c97aa72, 0x0, - 0xbfe4bff1e88fb3a8, 0x0, - 0xbfe1073e9d8b9f7f, 0x0, - 0x3fae4a2d67c0b400, 0x0, - 0x3fdf3818f2e3cc1d, 0x0, - 0x3fe8eb0738061d6a, 0x0, - 0x3fe03030af2f5883, 0x0, - 0xbf58f32e3407bc38, 0x0, - 0xbfddd7b8cb558fdf, 0x0, - 0xbfe848275a3c589c, 0x0, - 0xbfe0f585c61fc4fa, 0x0, - 0x3fa2942e092ed21e, 0x0, - 0x3fe0ea2b47a56acd, 0x0, - 0x3fe90c5a67849c2e, 0x0, - 0x3fe045093d14478d, 0x0, - 0x3fb3ac5e6d14a5d2, 0x0, - 0xbfdd0726842c00e4, 0x0, - 0xbfe6e21791d5e93c, 0x0, - 0xbfda00dce6da7bbd, 0x0, - 0xbfa325cbc5d5e08a, 0x0, - 0x3fe0e770a79944c9, 0x0, - 0x3fe8a5f80a589d67, 0x0, - 0x3fdd578302e313e0, 0x0, - 0x3f9c0bb7f65385d8, 0x0, - 0xbfdf2ec4bfcbc632, 0x0, - 0xbfe60567eb07b34a, 0x0, - 0xbfe040c9568bee95, 0x0, - 0xbf91b7c60d4faf7f, 0x0, - 0x3fe08715030c19d3, 0x0, - 0x3fe65831699a5b7a, 0x0, - 0x3fdf5314f233f121, 0x0, - 0x3f87e70c62609e0c, 0x0, - 0xbfde20b038f9348a, 0x0, - 0xbfe5043e25c58dfd, 0x0, - 0xbfdec22a03cb3eb2, 0x0, - 0xbfa4adcbf9f4d562, 0x0, - 0x3fe0084af44f3911, 0x0, - 0x3fe8080490336b34, 0x0, - 0x3fe0109bce434ce5, 0x0, - 0xbf9af7b3d2412426, 0x0, - 0xbfe11f396d5de52b, 0x0, - 0xbfe5a9765170d441, 0x0, - 0xbfe19b77f6520264, 0x0, - 0x3fb5ef4164209aaf, 0x0, - 0x3fdf3a7335780ef4, 0x0, - 0x3fe59e6fb5061b2c, 0x0, - 0x3fdd244276610316, 0x0, - 0x3f95c417059f5f70, 0x0, - 0xbfdc66dd5517cbca, 0x0, - 0xbfe7c3372a735f04, 0x0, - 0xbfe03ff8f3d61247, 0x0, - 0x3f8edc8e0c89a350, 0x0, - 0x3fd95cc3673a4ea8, 0x0, - 0x3fe2a2ae5d22b682, 0x0, - 0x3fe02d48c73a1c9c, 0x0, - 0xbfb4ba71f5e51eaf, 0x0, - 0xbfdc55f04f96e1c5, 0x0, - 0xbfe5641c921f086c, 0x0, - 0xbfdf829bccaef327, 0x0, - 0x3fb065d2b190d883, 0x0, - 0x3fde72380bfef030, 0x0, - 0x3fe2df48a2427c7a, 0x0, - 0x3fe137ec2a46f55d, 0x0, - 0x3f50f0e5e05a5268, 0x0, - 0xbfdda0e6f8527474, 0x0, - 0xbfe4b491adda31fe, 0x0, - 0xbfdca26b7cd50d02, 0x0, - 0xbf9dacb327ebd607, 0x0, - 0x3fdefeec2534e804, 0x0, - 0x3fe6eb68fa545dbb, 0x0, - 0x3fde1badcc424cc0, 0x0, - 0xbf857acb72fc9637, 0x0, - 0xbfe0b829d9c0366b, 0x0, - 0xbfe59a3d4c6db38a, 0x0, - 0xbfdc67da7b81df13, 0x0, - 0xbf7b76fcdbe3a92d, 0x0, - 0x3fdcf3a2bfa52939, 0x0, - 0x3fe4799843e478b0, 0x0, - 0x3fe13a4ebc82c63b, 0x0, - 0xbf9e6823e15322c2, 0x0, - 0xbfe1175ee7dd1587, 0x0, - 0xbfe813964723f3ec, 0x0, - 0xbfdc45aaf17756ee, 0x0, - 0xbf72a5131f660583, 0x0, - 0x3fe38e222e1a5123, 0x0, - 0x3fe889cd12338469, 0x0, - 0x3fdf9667385509aa, 0x0, - 0x3fa5164a89221939, 0x0, - 0xbfe0d16ae6b417c3, 0x0, - 0xbfe51887676f0f29, 0x0, - 0xbfe026c35e8481c6, 0x0, - 0x3fa68dad72e3a276, 0x0, - 0x3fdcd7c6e01b7815, 0x0, - 0x3fe56d147855e2a3, 0x0, - 0x3fdb618efa7b5680, 0x0, - 0x3fa0d64df40c3b60, 0x0, - 0xbfda9b80077f9163, 0x0, - 0xbfe7443be8dc88a0, 0x0, - 0xbfe0dd0b5864dfa3, 0x0, - 0xbfb32f6f94cbe1e1, 0x0, - 0x3fdf39846c7ef77f, 0x0, - 0x3fe31c071cf83d92, 0x0, - 0x3fdf11f85520419f, 0x0, - 0x3fb984a614b0a8e1, 0x0, - 0xbfdd4a3c7a169583, 0x0, - 0xbfe6ed21f8e2c150, 0x0, - 0xbfdd130ab22d1780, 0x0, - 0x3f84f03d7ff18eba, 0x0, - 0x3fddcbf4da9a19e4, 0x0, - 0x3fe2c8a013f40085, 0x0, - 0x3fe0b3f4cdf71cff, 0x0, - 0x3fa4e1b2d41eda28, 0x0, - 0xbfe04fa9cdb21388, 0x0, - 0xbfe62d76f1cf503b, 0x0, - 0xbfe29e8c16ca9fc3, 0x0, - 0x3fb1400de6557d50, 0x0, - 0x3fdb47a9fed0a59e, 0x0, - 0x3fe87883853ad291, 0x0, - 0x3fdc6943fb1b5002, 0x0, - 0x3f8cb620550afe77, 0x0, - 0xbfdef070a5b6a990, 0x0, - 0xbfe7c3777e422b54, 0x0, - 0xbfe22d58025d27f6, 0x0, - 0x3fc0d625a8b7f714, 0x0, - 0x3fe01ca7ecf14111, 0x0, - 0x3fe613ce9e5cc1f7, 0x0, - 0x3fd9438737730b95, 0x0, - 0x3fa30c76bdd2bc42, 0x0, - 0xbfda8f3a3050c56b, 0x0, - 0xbfe918135c5050df, 0x0, - 0xbfded245403f272b, 0x0, - 0xbfb387b0994d5659, 0x0, - 0x3fdee8ff779f5308, 0x0, - 0x3fe6f0bd47f692b3, 0x0, - 0x3fe3c23dfcd9939a, 0x0, - 0x3fa67dc0320e5824, 0x0, - 0xbfe179e0edb6a617, 0x0, - 0xbfea052aae741374, 0x0, - 0xbfe0f777be8c74e4, 0x0, - 0x3fb2176bc3007415, 0x0, - 0x3fdbb5e6fd73bbc0, 0x0, - 0x3fe9835e7621d56a, 0x0, - 0x3fdb9cf9d9ecf065, 0x0, - 0xbf946d127e367d20, 0x0, - 0xbfe1cf1ac53b55c9, 0x0, - 0xbfe66ca1945acce9, 0x0, - 0xbfe2581cc3a04f18, 0x0, - 0xbf8e9598461cb363, 0x0, - 0x3fde7ffdd1181ef9, 0x0, - 0x3fe69dfb75716f5f, 0x0, - 0x3fe110ed8416e05d, 0x0, - 0x3fa4088b7854cf92, 0x0, - 0xbfdcaf69162b7895, 0x0, - 0xbfe675208e111c77, 0x0, - 0xbfdd5f382642fe53, 0x0, - 0xbf8ea819d6040081, 0x0, - 0x3fe169bb749803d0, 0x0, - 0x3fe7fba59792ef7c, 0x0, - 0x3fddf3990cc9289c, 0x0, - 0x3fb02d0ddffdec84, 0x0, - 0xbfe17c3505b71a35, 0x0, - 0xbfe75c70c51fab01, 0x0, - 0xbfe2ab4b7fa698ca, 0x0, - 0x3fa1fc888420b74c, 0x0, - 0x3fde9b7e57377b13, 0x0, - 0x3fe4b34893878f85, 0x0, - 0x3fe094f42b3edefb, 0x0, - 0xbfb6bd208dbe8bc7, 0x0, - 0xbfdefb3090b964b3, 0x0, - 0xbfe77569652f0918, 0x0, - 0xbfddb548927f2635, 0x0, - 0x3f82066ad8224010, 0x0, - 0x3fdbdd5608c4deaa, 0x0, - 0x3fe6f9bb9536b000, 0x0, - 0x3fdde9fda760f8ae, 0x0, - 0xbf2f3eaf2398aba1, 0x0, - 0xbfe083d5f19ddd5a, 0x0, - 0xbfe6466e192d1965, 0x0, - 0xbfdcd801be00e2ca, 0x0, - 0x3f44222404e04149, 0x0, - 0x3fe02ad2f329e5da, 0x0, - 0x3fe69c09cd86fb18, 0x0, - 0x3fd8ad5f4e56fa34, 0x0, - 0xbfadbcacce599137, 0x0, - 0xbfe156ebfb373223, 0x0, - 0xbfe58013cd3217f3, 0x0, - 0xbfe04f0b68427379, 0x0, - 0xbfa322c43da99716, 0x0, - 0x3fe31c3f763ebcc8, 0x0, - 0x3fe64447a50eaebb, 0x0, - 0x3fe285a2c86f39e9, 0x0, - 0xbfa9aaa358cfcf68, 0x0, - 0xbfdf0c0e57920d67, 0x0, - 0xbfe685fe799c57bd, 0x0, - 0xbfe01b5fc0c29567, 0x0, - 0xbf8bdff4d72a58ee, 0x0, - 0x3fe011a83bb3b8e2, 0x0, - 0x3fe3e04bde4b342c, 0x0, - 0x3fe00260ae4c8a08, 0x0, - 0x3fa52daa7b67a34e, 0x0, - 0xbfdd7b46b9f4c575, 0x0, - 0xbfe8d0343ab770cd, 0x0, - 0xbfe02457b853a19e, 0x0, - 0xbfb219b141776de6, 0x0, - 0x3fda3f31901abfa5, 0x0, - 0x3fe48634e6390fa8, 0x0, - 0x3fd9ed7cb98f4a98, 0x0, - 0xbf8af01264ced1a3, 0x0, - 0xbfe15ac888a8a96a, 0x0, - 0xbfe6e6b4c6cc8502, 0x0, - 0xbfe18d9bdebf918f, 0x0, - 0xbfa4e4402cedc71a, 0x0, - 0x3fdad429465d56ca, 0x0, - 0x3fe55b2697545d35, 0x0, - 0x3fde60a8405d8c4c, 0x0, - 0xbf7c41091ffbd525, 0x0, - 0xbfe116e42f3c8b1d, 0x0, - 0xbfe483347651b7cc, 0x0, - 0xbfdbfff7d664d090, 0x0, - 0x3fa410e6b462f324, 0x0, - 0x3fdcf701218c4394, 0x0, - 0x3fe5b53b87df9aed, 0x0, - 0x3fe2ea09c08af485, 0x0, - 0x3f9619f7bce621c8, 0x0, - 0xbfe00ab13658f018, 0x0, - 0xbfe7a1483c6bca34, 0x0, - 0xbfdb995f16639698, 0x0, - 0xbf71e372af001307, 0x0, - 0x3fde47fbcc97155d, 0x0, - 0x3fe6bc00dc7ec929, 0x0, - 0x3fdde93dc1601c11, 0x0, - 0x3f7af4fe989ae421, 0x0, - 0xbfdd79238d5a1925, 0x0, - 0xbfe457f7eec3f566, 0x0, - 0xbfdceea7f196e675, 0x0, - 0x3fae095b77f23ee0, 0x0, - 0x3fe0794568750c7d, 0x0, - 0x3fe58d7ff0558d2a, 0x0, - 0x3fdcafc862f3946a, 0x0, - 0x3f89ab53eb627798, 0x0, - 0xbfe0e4fcfbdba56f, 0x0, - 0xbfe6a17c30892cb2, 0x0, - 0xbfe16e9f244f6404, 0x0, - 0x3f82eadc52fc3bac, 0x0, - 0x3fe16a428a12ea95, 0x0, - 0x3fe721323acc7d6f, 0x0, - 0x3fe1931290c4359f, 0x0, - 0x3fb48699e7082cef, 0x0, - 0xbfd9d982148b5d36, 0x0, - 0xbfe39e4f5005e7e9, 0x0, - 0xbfe0f33089da639f, 0x0, - 0xbf8bc0cdbc8b3bea, 0x0, - 0x3fdf8b8cdbad66a0, 0x0, - 0x3fe6b2e042f4699c, 0x0, - 0x3fe0b71b0c19e0de, 0x0, - 0xbfa690a4ebdd378d, 0x0, - 0xbfe02cc35d00250f, 0x0, - 0xbfe721ea333e412a, 0x0, - 0xbfdfe3ada1e2fedd, 0x0, - 0x3f9fc1fbea73e82f, 0x0, - 0x3fdfe8842d0da6b5, 0x0, - 0x3fe7a668ccbf40a2, 0x0, - 0x3fdeb1c470c3649e, 0x0, - 0xbfb870f9480b2021, 0x0, - 0xbfdd93e77f4bc32b, 0x0, - 0xbfe5da61b1871cbe, 0x0, - 0xbfe18b2781314882, 0x0, - 0xbfbcc2bb581a4962, 0x0, - 0x3fdfb1db593ca861, 0x0, - 0x3fe4e468151cc34a, 0x0, - 0x3fe3a05a7ae95797, 0x0, - 0xbf9ab12a9d8d7cd8, 0x0, - 0xbfda3e7921dc8114, 0x0, - 0xbfe57b23a01eafe2, 0x0, - 0xbfda8626780f5995, 0x0, - 0x3fb2125cf286ddea, 0x0, - 0x3fe27e211ed7a26b, 0x0, - 0x3fe839bd9a4b6c69, 0x0, - 0x3fdfc63c7e53a760, 0x0, - 0xbfbbcc80b7809bfc, 0x0, - 0xbfdf061ab7a52dff, 0x0, - 0xbfe8c1912e1659b7, 0x0, - 0xbfdc3a29c8c4feab, 0x0, - 0xbf99e47908a532ee, 0x0, - 0x3fe09d9dc4b1c426, 0x0, - 0x3fe50675c789cd07, 0x0, - 0x3fde5b5a71e1dbf3, 0x0, - 0x3fa7f1343872c2fe, 0x0, - 0xbfe0c27fedd87eef, 0x0, - 0xbfe4fdad5d8a9282, 0x0, - 0xbfdd328f3b00fd97, 0x0 + 0xbfa60f365b2d2f9e, 0x0, + 0x3fdf13586d181fb3, 0x0, + 0x3fe6f66f898770b4, 0x0, + 0x3fddec8adbb0daac, 0x0, + 0xbfa2c86a88fa8a2e, 0x0, + 0xbfe32db977e72205, 0x0, + 0xbfe6e5dfadb09146, 0x0, + 0xbfe0c6d55b85b8df, 0x0, + 0x3f878ec449f1f4f7, 0x0, + 0x3fdf3601653a1e8f, 0x0, + 0x3fe67140cf066f1d, 0x0, + 0x3fe0441f9c86f5bd, 0x0, + 0x3f747a4973f28fc0, 0x0, + 0xbfde2a4116c5a0fa, 0x0, + 0xbfe4033f66785321, 0x0, + 0xbfe2c2ae21660484, 0x0, + 0x3fb30044db682deb, 0x0, + 0x3fda4b762c6378e9, 0x0, + 0x3fe723adef15e077, 0x0, + 0x3fe23b7ab4f35fa9, 0x0, + 0xbf9c33926e4b1448, 0x0, + 0xbfda7544b5b69a32, 0x0, + 0xbfe458f02c60d306, 0x0, + 0xbfe282610eab9f00, 0x0, + 0xbf846359545b72d7, 0x0, + 0x3fe0d1099738b6e1, 0x0, + 0x3fe4f5eb1aaf201a, 0x0, + 0x3fe2e4684d4ffd53, 0x0, + 0x3fa20a5d44387869, 0x0, + 0xbfdee716d0fe743e, 0x0, + 0xbfe651b20041944c, 0x0, + 0xbfe0ebefa171a6b9, 0x0, + 0x3f79d15528836c50, 0x0, + 0x3fdb5d439ce672d4, 0x0, + 0x3fe4e615fbe096a9, 0x0, + 0x3fe21a17ec76a81f, 0x0, + 0xbfa581c9d818ffc4, 0x0, + 0xbfdf564c35378e25, 0x0, + 0xbfe3040ff1f03979, 0x0, + 0xbfe2c2fb5b008b38, 0x0, + 0xbfa8d87001453a7c, 0x0, + 0x3fdee3ee327a3a5b, 0x0, + 0x3fe463e0c499a228, 0x0, + 0x3fe25003f1d46bad, 0x0, + 0x3fade90042df4ea8, 0x0, + 0xbfe06df9cc67eaf9, 0x0, + 0xbfe9c423c8a40d0a, 0x0, + 0xbfde497f4f9f3acb, 0x0, + 0x3fa83e23d257f715, 0x0, + 0x3fe1e5aaa417e897, 0x0, + 0x3fe737acbaf73889, 0x0, + 0x3fd884dc8115801a, 0x0, + 0x3f7248ff30e11555, 0x0, + 0xbfe0dc5559cdd596, 0x0, + 0xbfe41707d62b5636, 0x0, + 0xbfdc77f297b640e0, 0x0, + 0xbfa7cf4b7f4786b6, 0x0, + 0x3fe150e06fd15077, 0x0, + 0x3fe53a00ad452276, 0x0, + 0x3fdbed3f67b66b27, 0x0, + 0x3fb22b95da7aeba1, 0x0, + 0xbfde15a896f68d35, 0x0, + 0xbfe72ef6f4a8625b, 0x0, + 0xbfde27c052ed6745, 0x0, + 0xbf9b079c89d7ba90, 0x0, + 0x3fe0e142d47d21c5, 0x0, + 0x3fe58cd44621aa6c, 0x0, + 0x3fd83e904a954df6, 0x0, + 0xbfaf51b7b0bded8c, 0x0, + 0xbfe1300b86130a5d, 0x0, + 0xbfe8147b702974c1, 0x0, + 0xbfdcd261c4da1340, 0x0, + 0x3f92a7f3f6783e2c, 0x0, + 0x3fe11dd588bb7cc2, 0x0, + 0x3fe61dd07e1473b0, 0x0, + 0x3fdeec3f0b9c114a, 0x0, + 0x3fab56f8c1c3a360, 0x0, + 0xbfdb83ac2450bc95, 0x0, + 0xbfe4c151fc75d348, 0x0, + 0xbfe0969f042bb450, 0x0, + 0xbf8f80a748a06b94, 0x0, + 0x3fe0bd425da22253, 0x0, + 0x3fe685e5e4c5152f, 0x0, + 0x3fe44eb3da5387ac, 0x0, + 0x3fbb1817011666a9, 0x0, + 0xbfdd7e886d24c06d, 0x0, + 0xbfe5a90d089d8516, 0x0, + 0xbfe2e3831f97cfbc, 0x0, + 0xbf931d4d90d3901c, 0x0, + 0x3fe136af468ee0b7, 0x0, + 0x3fe5a76d71fa9af4, 0x0, + 0x3fe0b96c9d0878df, 0x0, + 0xbfac6d73c0b6caa9, 0x0, + 0xbfdc72e6238f997f, 0x0, + 0xbfe61dc28e55624f, 0x0, + 0xbfe2f1812f099f91, 0x0, + 0x3fb9b8bc34d89edc, 0x0, + 0x3fdddcaf47af3632, 0x0, + 0x3fe635e737ccf4da, 0x0, + 0x3fdd85f666689110, 0x0, + 0x3f95625f1419fef6, 0x0, + 0xbfd7b4860ec74495, 0x0, + 0xbfe7e8fd7d442070, 0x0, + 0xbfe0087e0a6bb419, 0x0, + 0xbf9dab6cb43027e6, 0x0, + 0x3fe016e4c10ea576, 0x0, + 0x3fe708403fbedb06, 0x0, + 0x3fdba420b76cbed2, 0x0, + 0xbf6e78504f5224f9, 0x0, + 0xbfdfbdc780ef708b, 0x0, + 0xbfe4e0684ad7ffa3, 0x0, + 0xbfe08f717c71b0b1, 0x0, + 0x3f85b7e5cf2a911b, 0x0, + 0x3fe07a3d7a0697c1, 0x0, + 0x3fe6a148e7e67c41, 0x0, + 0x3fdaea4c971b1cb2, 0x0, + 0xbfa477f86c11980c, 0x0, + 0xbfe05b84b4f340eb, 0x0, + 0xbfe3b4479cdf894c, 0x0, + 0xbfde487e4dd96a18, 0x0, + 0x3fa8976acf807dde, 0x0, + 0x3fdf9628cc210cba, 0x0, + 0x3fe70e681b4e100e, 0x0, + 0x3fdbbd17d44a437d, 0x0, + 0x3fa553a74c7b0144, 0x0, + 0xbfde6b76bacdc811, 0x0, + 0xbfe6a42a44c34b43, 0x0, + 0xbfe425f3bcc697ff, 0x0, + 0xbfa76cdcfd8ed63c, 0x0, + 0x3fde8ad8fe77c4cf, 0x0, + 0x3fe58914075eedfe, 0x0, + 0x3fdfb4fea6940b0c, 0x0, + 0x3fa8f4a29a32ac71, 0x0, + 0xbfdd9400add51c8a, 0x0, + 0xbfe4bf78c3df3cb1, 0x0, + 0xbfe1b8768d5603b6, 0x0, + 0x3f9bce49d96c97e1, 0x0, + 0x3fe105090ffa5a8c, 0x0, + 0x3fe67a3b57a053f5, 0x0, + 0x3fde0c86ea6ace30, 0x0, + 0x3fa032e09b7dbc50, 0x0, + 0xbfe063333243f6ff, 0x0, + 0xbfe4692846cc4d84, 0x0, + 0xbfddf00bd0063fea, 0x0, + 0xbfc191b9ccb91725, 0x0, + 0x3fdf31b13a689ea4, 0x0, + 0x3fe42baa8061e219, 0x0, + 0x3fe1d25608bc01b1, 0x0, + 0x3f9644525c97355b, 0x0, + 0xbfda63e22b598354, 0x0, + 0xbfe6838a3dcc7527, 0x0, + 0xbfdbd55fb72bc345, 0x0, + 0xbf9471b1858070da, 0x0, + 0x3fdc2f21afbc8948, 0x0, + 0x3fe6fd77713ed9d6, 0x0, + 0x3fdfb53d63778bb8, 0x0, + 0xbfa415781aa23883, 0x0, + 0xbfe07be7729c1598, 0x0, + 0xbfe443c43c531301, 0x0, + 0xbfe10a34c3e81745, 0x0, + 0xbfaba942f44d69eb, 0x0, + 0x3fe0e18389e392e6, 0x0, + 0x3fe615466c5e707e, 0x0, + 0x3fd90a15020a5a39, 0x0, + 0x3fbc21ee977d23bf, 0x0, + 0xbfe04d46b450f948, 0x0, + 0xbfe2bd971e4ed77f, 0x0, + 0xbfdcfde62ba7bb68, 0x0, + 0x3fa68cef0dcf3453, 0x0, + 0x3fe05366ad8f7be4, 0x0, + 0x3fe86c3ae7b50723, 0x0, + 0x3fdf0472d81dc42a, 0x0, + 0xbfa0dd780d95566b, 0x0, + 0xbfe0b1ed95402607, 0x0, + 0xbfe6996410c0a79e, 0x0, + 0xbfe106a3d0ab09bc, 0x0, + 0xbfb90a57998589c9, 0x0, + 0x3fdc1df4460dccd3, 0x0, + 0x3fe5340cbcf74c7d, 0x0, + 0x3fe2e50cf8d5c606, 0x0, + 0x3fbd24d035c348af, 0x0, + 0xbfdb7fa14dcacac0, 0x0, + 0xbfe88c054f1605b2, 0x0, + 0xbfdce0a95d96877b, 0x0, + 0xbf903b2d0a32baaa, 0x0, + 0x3fe0bff7e3acf735, 0x0, + 0x3fe6b98cfb5f7cba, 0x0, + 0x3fddf96588a9e469, 0x0, + 0xbf9f48d1362eb924, 0x0, + 0xbfdd43d11a86faa4, 0x0, + 0xbfe636cf258501d5, 0x0, + 0xbfe153b7607bf32c, 0x0, + 0x3fa118601ae3b9ee, 0x0, + 0x3fdf37701f938e7c, 0x0, + 0x3fe634a7c3c1c76a, 0x0, + 0x3fe17eba7604840d, 0x0, + 0x3fbf81fe3f231cff, 0x0, + 0xbfe085c9d4eef0bc, 0x0, + 0xbfe67ef8cea3a3d6, 0x0, + 0xbfdce2d0e6a2f704, 0x0, + 0xbf7315a95898d03e, 0x0, + 0x3fe280f8cceaf05e, 0x0, + 0x3fe8dbaca85d84ee, 0x0, + 0x3fe22241f48c7f83, 0x0, + 0xbf916088d2d5d96f, 0x0, + 0xbfdb79d1f7c783f4, 0x0, + 0xbfe5d7851288fba8, 0x0, + 0xbfe0efba81928350, 0x0, + 0x3fa7bdad6d9a1d3f, 0x0, + 0x3fdd5778c8e9715a, 0x0, + 0x3fe56b3d0ad57331, 0x0, + 0x3fdbf5544f2573b1, 0x0, + 0xbf77885ce287b70c, 0x0, + 0xbfdd510d06c5e523, 0x0, + 0xbfe6534ff2a34112, 0x0, + 0xbfe1911c64d8ceef, 0x0, + 0xbfa54180fa03e01d, 0x0, + 0x3fdf0ac045c4d001, 0x0, + 0x3fe5a2a0166a2542, 0x0, + 0x3fe3929176cbe590, 0x0, + 0xbfb99aa914f7799b, 0x0, + 0xbfe0319cc565cba0, 0x0, + 0xbfe49915fcbf6c2c, 0x0, + 0xbfd6d18d785d83ac, 0x0, + 0xbf852ea6ba1e0654, 0x0, + 0x3fdddb7a10964ae9, 0x0, + 0x3fe4117ca4366b50, 0x0, + 0x3fe043647ed6082f, 0x0, + 0x3faa90869cdb7105, 0x0, + 0xbfdd5baea456495a, 0x0, + 0xbfe4f8e240dfdc02, 0x0, + 0xbfe070de51d1ba5c, 0x0, + 0x3fa7851bbe84659f, 0x0, + 0x3fdc6a2f7a3d3394, 0x0, + 0x3fe70835f7a73fb1, 0x0, + 0x3fe2b00023ca7694, 0x0, + 0x3f9c57c656b7388e, 0x0, + 0xbfe2c3ac4192a26d, 0x0, + 0xbfe6ad084c93cfe1, 0x0, + 0xbfdc2bf64ebec326, 0x0, + 0x3f94965906188f25, 0x0, + 0x3fe005c7726a0f9d, 0x0, + 0x3fe65b5970084ca4, 0x0, + 0x3fe13b3b38e7dddb, 0x0, + 0xbf9a593b59d369c7, 0x0, + 0xbfe2e5956b68d7fd, 0x0, + 0xbfe80395b4b692a3, 0x0, + 0xbfe1a0f2bdd111e2, 0x0, + 0x3f974f03fa950ae8, 0x0, + 0x3fe00bc9f1ca87f6, 0x0, + 0x3fe43bc846b46566, 0x0, + 0x3fe15fc2bc9f3edf, 0x0, + 0x3fa3e6d8e99d59cb, 0x0, + 0xbfe1da0d065ec632, 0x0, + 0xbfe7c6f753fbd041, 0x0, + 0xbfe2be92a0cf5194, 0x0, + 0x3f8bdcc4ca60f729, 0x0, + 0x3fe1aca545cfd974, 0x0, + 0x3fe5a60b5cbeeabf, 0x0, + 0x3fdfbbf7abc49ce0, 0x0, + 0x3f94740b6bd535e1, 0x0, + 0xbfdf01415576505d, 0x0, + 0xbfe99a8ef10ec3c8, 0x0, + 0xbfe126757ab73a4b, 0x0, + 0xbf94498d604d4c22, 0x0, + 0x3fe038aff1aa0641, 0x0, + 0x3fe724aeb1c35872, 0x0, + 0x3fdf682054886d18, 0x0, + 0xbfab0a5450322a18, 0x0, + 0xbfe18e0e9edb48d1, 0x0, + 0xbfe7086a9480fdbd, 0x0, + 0xbfdabf3dd2d106a6, 0x0, + 0x3f948ca51284bff1, 0x0, + 0x3fe0502b4f714162, 0x0, + 0x3fe524b1917da43b, 0x0, + 0x3fda7e69e3f54367, 0x0, + 0x3fafb4da4d366bfa, 0x0, + 0xbfe1b39983f59d6e, 0x0, + 0xbfe5ee8ad7af1882, 0x0, + 0xbfe263be18b76912, 0x0, + 0x3f86164f4fab6fb8, 0x0, + 0x3fdcfe2ac425f5e9, 0x0, + 0x3fe73ff9d9c95cf6, 0x0, + 0x3fe059d4b91b0155, 0x0, + 0x3f87042004b71f5c, 0x0, + 0xbfdee63be8e66e7d, 0x0, + 0xbfe71f165e8ba837, 0x0, + 0xbfe05a14f41e3236, 0x0, + 0x3f9499c6e066e5f9, 0x0, + 0x3fe023666bfb4e7c, 0x0, + 0x3fe2ef31b8f00e50, 0x0, + 0x3fdda51cb3c7f152, 0x0, + 0x3f4ed41662153fae, 0x0, + 0xbfe1b3a4d0bfe9c0, 0x0, + 0xbfe5adb70994a265, 0x0, + 0xbfdc43e70a4a9534, 0x0, + 0x3fb1a79c6d803289, 0x0, + 0x3fde2b607e7b5a17, 0x0, + 0x3fe914e6ce8d4d86, 0x0, + 0x3fde591d56995a12, 0x0, + 0x3f8ab443efbedac3, 0x0, + 0xbfe004a260f3c9f8, 0x0, + 0xbfe89d8d2467ad3f, 0x0, + 0xbfe0549f9cb2989c, 0x0, + 0x3faaa11b5fc13385, 0x0, + 0x3fde74dcef4d9041, 0x0, + 0x3fe7e6ce5dac7269, 0x0, + 0x3fe042722bc122e3, 0x0, + 0x3fb1de38c510e288, 0x0, + 0xbfdf367823a7162e, 0x0, + 0xbfea56967adfc56b, 0x0, + 0xbfe1faeb23250806, 0x0, + 0x3fb1997c026e8fc5, 0x0, + 0x3fe0bb4154bfdfa2, 0x0, + 0x3fe6c67e4ab10ea1, 0x0, + 0x3fdc32b342657474, 0x0, + 0x3f8f15658715ef23, 0x0, + 0xbfddcf0a8b533862, 0x0, + 0xbfe7266152d11507, 0x0, + 0xbfdd2886d7aecfbe, 0x0, + 0x3f9f4434e637acb7, 0x0, + 0x3fe00d98044db389, 0x0, + 0x3fe42859dd50034f, 0x0, + 0x3fdd41245f9e07a2, 0x0, + 0xbf8a74f777c57c24, 0x0, + 0xbfe1ad54f850b5cd, 0x0, + 0xbfe93a4f023bc2c4, 0x0, + 0xbfe095d78ad2d0b3, 0x0, + 0x3f8c3ce5d89cb1d4, 0x0, + 0x3fe179861de71a53, 0x0, + 0x3fe4df106e4bd712, 0x0, + 0x3fe099e72ce604c0, 0x0, + 0xbfa581f7ccf278d4, 0x0, + 0xbfdfa20524009287, 0x0, + 0xbfe6d7f0cd10be0b, 0x0, + 0xbfe095810fd528eb, 0x0, + 0xbfa1d1a2437a5a6d, 0x0, + 0x3fe1fcbeaa38d404, 0x0, + 0x3fe4f44a569c99f4, 0x0, + 0x3fdb40761b0ebb8b, 0x0, + 0xbfa3a0b0da10a920, 0x0, + 0xbfe1091b35061569, 0x0, + 0xbfe668829830ac0d, 0x0, + 0xbfdbb44ac8202fb8, 0x0, + 0xbf61b1d70cc34448, 0x0, + 0x3fe0fc2325431970, 0x0, + 0x3fe54197fdd16cb4, 0x0, + 0x3fe387de2920750e, 0x0, + 0xbfba745f761d595e, 0x0, + 0xbfd8ea41aa2be6d0, 0x0, + 0xbfe5465aecddcd4c, 0x0, + 0xbfddbc957681bf52, 0x0, + 0x3fc19b04b9038d5c, 0x0, + 0x3fdecdbd3ebee13b, 0x0, + 0x3fe4e19afb98a5bb, 0x0, + 0x3fdd7d0866ec5ff3, 0x0, + 0x3f8a88a014f4d36e, 0x0, + 0xbfe09a42bd0e30a8, 0x0, + 0xbfe7a1fa4b324a8f, 0x0, + 0xbfdd94603a7c10b6, 0x0, + 0xbf8b83b22544722e, 0x0, + 0x3fdfff1fb4390f24, 0x0, + 0x3fe5d4577f8e4707, 0x0, + 0x3fdda827c4eda068, 0x0, + 0x3f71cffd999d1dc3, 0x0, + 0xbfdda75a6ee2bf44, 0x0, + 0xbfe44e5932edd5ec, 0x0, + 0xbfde60ece0f0e6ed, 0x0, + 0xbfc16d2a58929234, 0x0, + 0x3fe092f4c397424e, 0x0, + 0x3fe7ca99e55df217, 0x0, + 0x3fdbbab1d36f3ef8, 0x0, + 0x3fbb8a4102792cb4, 0x0, + 0xbfdbde01b86fac53, 0x0, + 0xbfe8fea6fb802dc0, 0x0, + 0xbfdf3341d3cec423, 0x0, + 0x3fc49cc9062c985c, 0x0, + 0x3fdf44e2183d9b7a, 0x0, + 0x3fe6cebd1fa62cad, 0x0, + 0x3fdc089b3cd15876, 0x0, + 0x3f899977e3df72c2, 0x0, + 0xbfe0869395f1aaac, 0x0, + 0xbfe52b7262fa54fe, 0x0, + 0xbfdb890166b25c70, 0x0, + 0x3fbf220ea170caa7, 0x0, + 0x3fe0922700622042, 0x0, + 0x3fe5f2ddcc521bc4, 0x0, + 0x3fe21c2a70d80993, 0x0, + 0xbf9901831458703c, 0x0, + 0xbfdfb1dfa88abc8c, 0x0, + 0xbfe605e143a99ec4, 0x0, + 0xbfe00df697cfe963, 0x0, + 0xbf5cd5e0f92e56a9, 0x0, + 0x3fdfaa496523f9e9, 0x0, + 0x3fe36ce207583266, 0x0, + 0x3fe10d20a78def31, 0x0, + 0xbfc18ba9d9da91f0, 0x0, + 0xbfe0a18bd013c527, 0x0, + 0xbfe93842c8c27871, 0x0, + 0xbfdddec7ca471eab, 0x0, + 0xbfa175a8198c3b0b, 0x0, + 0x3fdbc16cd49dc15d, 0x0, + 0x3fe3c309e423115a, 0x0, + 0x3fded65d4f4276eb, 0x0, + 0x3fa53692bb7baa8b, 0x0, + 0xbfe141748371df63, 0x0, + 0xbfe57c54015fff06, 0x0, + 0xbfdf606b1636a2b7, 0x0, + 0xbfb2190f25664180, 0x0, + 0x3fded6d053d788ef, 0x0, + 0x3fe80169bf375c29, 0x0, + 0x3fdd35d1ff8f7812, 0x0, + 0xbfb8303019aaaf2d, 0x0, + 0xbfde4637b36fdb9f, 0x0, + 0xbfe654a821a828ea, 0x0, + 0xbfdc6ed847aeed9a, 0x0, + 0xbf95e18e83d0aa37, 0x0, + 0x3fe12ab5d15db98c, 0x0, + 0x3fe8ce9d7aee46ba, 0x0, + 0x3fdf31ffc4361f4c, 0x0, + 0xbfa5a4f9c412813c, 0x0, + 0xbfe265ac62c28692, 0x0, + 0xbfe5c8f61619c906, 0x0, + 0xbfe0fe7a1ef1c56b, 0x0, + 0xbfb3a309921742e5, 0x0, + 0x3fe0b43815701b68, 0x0, + 0x3fe75b31eda3a239, 0x0, + 0x3fdf346710b46425, 0x0, + 0x3fa30412e79cb9eb, 0x0, + 0xbfdab56a35a1ff46, 0x0, + 0xbfe608eb55ac5eb9, 0x0, + 0xbfe05bcb8c959462, 0x0, + 0x3f8cb414181ec000, 0x0, + 0x3fdb6f4690141ade, 0x0, + 0x3fe5204250842325, 0x0, + 0x3fdc801ba2a2e290, 0x0, + 0x3fb6786f1b8097a1, 0x0, + 0xbfe1533e0cdb527e, 0x0, + 0xbfe4b0f87b8d0c92, 0x0, + 0xbfdd4faba643e7d5, 0x0, + 0x3f7094652c281c1c, 0x0, + 0x3fdec0d5624284a3, 0x0, + 0x3fe79787d14a9a2e, 0x0, + 0x3fdb908ddb293646, 0x0, + 0x3faabcbecc3ebea7, 0x0, + 0xbfde374e07bb260e, 0x0, + 0xbfe657b6a260af27, 0x0, + 0xbfe01ffb5ff7ac10, 0x0, + 0xbf9b08e9f72dde06, 0x0, + 0x3fdf2d203949707e, 0x0, + 0x3fe685f7f99eeff6, 0x0, + 0x3fdf4d01e5e74b07, 0x0, + 0x3fbbeff37ab3adf3, 0x0, + 0xbfe1cac1267f2f70, 0x0, + 0xbfe867828a5917fd, 0x0, + 0xbfda9145480f9a33, 0x0, + 0x3f904a9a792a75cc, 0x0, + 0x3fda32a77ec0a366, 0x0, + 0x3fe8b33ed399a154, 0x0, + 0x3fdf80858482590c, 0x0, + 0xbf87107ddc173ff2, 0x0, + 0xbfdfbd00ccaaf15a, 0x0, + 0xbfe7262967bc4aac, 0x0, + 0xbfe12d9b8b1df3df, 0x0, + 0xbfa5469a577d4f7c, 0x0, + 0x3fe2190aa16a3ae3, 0x0, + 0x3fe98f8251799328, 0x0, + 0x3fe00057fcf2c4b2, 0x0, + 0xbfb1caa2a43eb784, 0x0, + 0xbfe06651866a95a6, 0x0, + 0xbfe648fdb02b1c0c, 0x0, + 0xbfdfc31fc1afbf91, 0x0, + 0xbfb9a733a6d46a13, 0x0, + 0x3fe0e5002473b7a6, 0x0, + 0x3fe3f264f9510c96, 0x0, + 0x3fdd1abecddb8e10, 0x0, + 0x3f9df83d9913a8fb, 0x0, + 0xbfdeb10996f82e19, 0x0, + 0xbfe3683c859e813c, 0x0, + 0xbfe13c78232b3cad, 0x0, + 0xbfa67f87f89b9e57, 0x0, + 0x3fdb614eece03cf8, 0x0, + 0x3fe7f6081435cfd2, 0x0, + 0x3fe0be82fa828ec1, 0x0, + 0xbfb5a8df01f7d09f, 0x0, + 0xbfe22d3351539026, 0x0, + 0xbfe4ff88541055a4, 0x0, + 0xbfdcc12c4e541b73, 0x0, + 0x3fa9b0ed670976ef, 0x0, + 0x3fe321da9bebd12c, 0x0, + 0x3fe77862054597e7, 0x0, + 0x3fdd9fe4ac2385cb, 0x0, + 0xbfaf7344e9ce27c1, 0x0, + 0xbfdf021ea2a78dc5, 0x0, + 0xbfe5fdf8299b0fe3, 0x0, + 0xbfdea816a0467f2d, 0x0, + 0xbfa2914f604548b1, 0x0, + 0x3fdf1deec03f77c1, 0x0, + 0x3fe7ccc679b123ab, 0x0, + 0x3fe1cbb4b6413310, 0x0, + 0x3f87b7a152811257, 0x0, + 0xbfe005c53b146076, 0x0, + 0xbfe87e5c364d2009, 0x0, + 0xbfe02c41848f084d, 0x0, + 0xbf8f3b41fb411741, 0x0, + 0x3fdde2b57f25fb7e, 0x0, + 0x3fe731446046eb90, 0x0, + 0x3fdd702bd892291a, 0x0, + 0xbfa9f6cd9a7de05e, 0x0, + 0xbfe1ed5e0fd8ab63, 0x0, + 0xbfe6edba886d2955, 0x0, + 0xbfdc47d8134272ed, 0x0 }; static const uint64_t in_cifft_noisy_512[1024] = { - 0x3ff1b860aa8827bc, 0x0, - 0xbfc3823e39686e29, 0xbff752fdc523ec68, - 0x3ffbb276927f5c88, 0x3fe07fc3eab9f75b, - 0x3fd1b8135a598065, 0xbfdd9703f343934c, - 0xbfdb8588232544a1, 0x3ff801cbe79bb7b6, - 0xbfb7d6617bca3d20, 0x3fad48c10fc5be88, - 0xbfed75b1ba8ed3e4, 0x3fc69447c8191c50, - 0x3fd5b434b8e42ab8, 0xbff0946929057114, - 0x3fe7bc7ed88d819b, 0xbfb89f807992bb52, - 0x3fe178418b0d6624, 0xbff62b36d7c66238, - 0xbfd5682316cc9b1b, 0x3ff1d1c57ce9fe91, - 0x3fdfe550eb249abb, 0x3fed79a99cfdbd76, - 0xbfe1c7615c10140e, 0x3fc9e9b7239132cd, - 0xbfe2269038e5dd5c, 0x3fdb2013bbe679a7, - 0x3fda076703e23c5c, 0xbff631296000b8fb, - 0xbfadc564c268512d, 0x3fb29d587e3109b8, - 0x3fe33131889a74ee, 0x3ff327fa514b359d, - 0xbff507e071a4d878, 0xbfc8c94e1b07e57c, - 0xbfd2e2e4bd1804b4, 0xbf9b512ffe5fb888, - 0xbfe11e6ab2e5206a, 0xbfff76ce00c63089, - 0xbff4f30ccd7e9bb7, 0xbff668b141ef2311, - 0xbfda56648b1fd0f3, 0xbfdd77f2ba60d5d0, - 0x3fd27164c528f5fe, 0xbff973475ddf531e, - 0x3fd663eafa94bd91, 0x3ff501e67a247721, - 0xbff1f4dde7ebaefb, 0xbff6433bc49a8e05, - 0x3fa817009c21228a, 0x3fb2d919b56c6cc4, - 0x3ff0ffb089020384, 0xbfef1b39dd139ff8, - 0xbfe36dc12d97c5b2, 0x3fb4fa776aa8ece0, - 0xbfd5fdaca2565c95, 0x3ffd69e4263e1907, - 0xbfdb4093fe0f9147, 0xbfb3d7e762f4abcc, - 0x3ff16ec7b314045a, 0x3ff8d3a3b9334ee6, - 0x3fdc59dd47731f30, 0x3fe8564a31f8bc65, - 0x3fe09d4e2f8c0939, 0x3fd3e2f9d060869e, - 0x3ffc77482ef8c748, 0xbff3f8ff6df6f4c8, - 0xbfc75e28f3acba52, 0xbfd4ed7b13348dda, - 0x3feb236c87ce0a42, 0x3ff1161aa0bc21f1, - 0x3ffa1aebbe322de4, 0x3ff3f1d51c145855, - 0x3fb42063a7d70e3a, 0x3fc3299ebbd4ffa4, - 0xbfefa66d6e426c48, 0x3ffec1fee329557e, - 0xbfe4df048d731cc1, 0x3fe51699a4e6afa4, - 0xbfe33ae7fc783092, 0x3fec1386af95b68c, - 0xbfed05d6770358f1, 0x3fe130c19e506057, - 0xbfdb113d7cf27128, 0x3fd951e7f7db4534, - 0xbfe99b5e145aa7c1, 0xbfdfbbc1f2b9199b, - 0x3fd1b24df355d287, 0xbfea81dd6ed0ce14, - 0x3fe42a16f44ce7ae, 0x3fe6ded7f0f973dd, - 0x3fe935d647a800ae, 0x3f90220eaa85a880, - 0xbfd47dfc68baf352, 0x3fd6037bb2f3e04b, - 0x3fcd3e8ef422e1e5, 0xbfcf84cf7638799c, - 0xbfa44a5bdc2042c1, 0xbff856876ed4d54a, - 0x3fd253201a030bd0, 0x3fca8724e3678e13, - 0xbff0a9efe61af908, 0x3fcb9347fad8508c, - 0x3fd58c33805e128a, 0x3fca1687c3f00cf0, - 0xbfe55c572d5437ef, 0x3fbdbdc63826fe2a, - 0x3fc4a2b042b25628, 0xbffa7bf8d2218187, - 0x4000f84e2cb79d68, 0x3fdf137ccd6a5570, - 0xbfc82384392bc04c, 0xbfb8f576ee8b5260, - 0xbfb007b28b8029f0, 0xbfd1cfbbffdff40a, - 0xbf9e029a05b71990, 0x3fcaff7a82066b03, - 0x3fd36ff369aa95d0, 0xbfe982f78b215a86, - 0xbfef66938554e52e, 0xbfba5ab149ea06a0, - 0x3fe75b7c2b246898, 0xbfea0cc81f27cdbc, - 0xbfe0e751c795f3a4, 0x3fe3cdd9be73bd0f, - 0x3fe580472ee9fefb, 0x3fe00e29d53bcc8c, - 0xbfa9a203a1c7eba6, 0xc06661091e0bde98, - 0x3fc18c0d250748a0, 0xbfd8b8b16a614130, - 0x3fc3bdefd041e34a, 0x3fda5f45afb9410b, - 0xbff66fb9dfade9d0, 0xbfe9afa2b47907eb, - 0x3ff2fbae791674fa, 0xbff10709d00e3076, - 0x3fc5870671b873f4, 0x3ff417cdd0d45e39, - 0xbfbe9c057dfc2b64, 0x3fa1bf76b350b010, - 0xbfef6cc78a68ce69, 0xbfbbb01f198ab9d4, - 0x3fe2f7f24c0685f4, 0x3ff4ce72a0fbeb03, - 0x3fba82853f62b478, 0x3feeb3da8c0b31ca, - 0x3ff262bcaf44df10, 0x3fd91d052b8a2e32, - 0xbfe0da939f1c7f38, 0x3fdcf2f70335ebb3, - 0xbfc9b4fe49bca8e3, 0xbfc17ca95ace985b, - 0x3fd6a9ee427a5c2f, 0xbfc60fc5a6df42c5, - 0xbffd66967ef288f8, 0xbfdfe98063bfafa4, - 0x3fe40df1750c83d3, 0x3ff57002dcc25792, - 0xbfd164bffd7e467e, 0x3fe02076b0e85c5a, - 0x3fe116be552bab58, 0xbfa5b1bb27bd2e10, - 0x3fe1a45a9579b3c8, 0x3fec6f14ea1f227a, - 0xbfe0b8541dd07d2c, 0x3fe7c24aae5957fc, - 0xbfd1e63b4a08e469, 0xbfe5043f2ae436d0, - 0x3faf65601d7885c0, 0x3ff6814c43ce50e6, - 0xbfedc4f30036d4de, 0x3fe43707a2072c99, - 0xbff05c4b7e915d22, 0xbfdb97e7b3cafb15, - 0xbfcd092e4f6db927, 0xbfd21756954ae3e2, - 0x3f9a03a530ea8dc0, 0x3fa08becbb4751d8, - 0xbffc149cc1de0948, 0xbfd7c4bebb090d2e, - 0x3fa64f51f3c32c78, 0xbfdcd6e5f6d32a3c, - 0x3fe1894a3335b3f7, 0x3fedc061927a8848, - 0xbfebf36b3edadc28, 0xbfe0a1642fa4f378, - 0xbfd85bbfe16806b6, 0xbffbafcd089d52b6, - 0x3fd4086dbe2e08a7, 0x3fe9c291516ea8c8, - 0xbfb6f17f32c4230c, 0xbfc5e3ce06e4568f, - 0x3ffc1339a5851491, 0xbfd01779943ace8f, - 0x3fca4105380ca084, 0x3fbdd3d38b810278, - 0xbfd70829f35b42fc, 0xbfc9474379b4575f, - 0xbff2447662b1c215, 0x3fe1f2a4e59aeb12, - 0x3fecbf24a672c6e0, 0x3ff103a04d0fe9e8, - 0xbfe17628dff397dd, 0x3ff49c9bb7bede48, - 0xbfeb622638bd1088, 0x3fce78698819138d, - 0x3fe38c00b322a8d6, 0x3fd4aeaae88f10d0, - 0x3ff06756bdd3dca6, 0x3f905ed0633d4b98, - 0x3fd1317cadf5b630, 0x3fe0aec488eb4a10, - 0x3fd85c7cbc2a45ea, 0x3fdc5d335ff9e175, - 0xbfd02ee622a79780, 0x3f8a128152944b40, - 0xbfdc6971eeeadc03, 0x3fc287537103fc48, - 0x3fdf587641ba18c0, 0xbfdd260ff99466a2, - 0x3ff490af510a2934, 0x3fd921e996b7df0c, - 0x3fb0bc4da20c3a22, 0x3fe38dba3954bcfe, - 0x3febca9053abf584, 0x3fbb27c49f367e28, - 0x3fd4b0a711a5c384, 0x3fe91729d5156694, - 0x3feb0bc618703152, 0xbff3f159baa751fb, - 0xbfd0ae69feeac8ae, 0xbff541ae2a866068, - 0x3fbd0cd700fbf985, 0xbfd4d8c354011b90, - 0x3ff0330d1ab1efc2, 0xbf304f9717326800, - 0x3fdcc548ad85be8f, 0xbff7b434084fdc26, - 0xbfbe3e95555b402a, 0x3ff0bdc0badddaab, - 0x3fe0a27186140def, 0x3ff6f1b0fdea5566, - 0x3fdfaa767796159e, 0x3fe173d3d6ea1fff, - 0x3fe83b54043b3357, 0x3fe885185d7bd172, - 0xbfec00e32ee04360, 0xbff04e2e4d5bc21a, - 0x3fa5acf82c84ec98, 0xbfebb1a7f3598728, - 0xbfdd28b3726aaa7d, 0x3ff344abf9ee80f1, - 0x3fba88fcab1aec40, 0xbfe292e406de49d8, - 0x3fe2dfd20b0eaa57, 0xbff1ef69573a1370, - 0xbff6279adbbff800, 0x3fed36be70668543, - 0xbfd0e9484edd0d56, 0xbfdf55897050ea80, - 0x3fe121ab46b63b80, 0xbfdb2b994ea118af, - 0x3fb838f07447ddfc, 0xbfd4f1f8d69ce299, - 0xbfd46ff1b01f6c5a, 0xbfec48fa826f3a64, - 0x3ff155d0b319b07f, 0xbfb73ec5f5841e3c, - 0x3ff5ced2b7b1c4b6, 0x3fe885897319a8a1, - 0xbfdb2a865141102a, 0xc000d18c237c9237, - 0xbfe60cc41da4b318, 0x3fea6edc49ea4ee0, - 0x3f626bc7dfc83600, 0xbff3fde80da1215b, - 0xbfd0201de7ed670b, 0xbff95fa639f0548b, - 0xbfe07aa8406cd8fe, 0x3fd066928cc1c640, - 0x3fe59d1a63d4c974, 0x3fc0650438c9649c, - 0xc0027160b5989242, 0x3ff1147e5ed80e2c, - 0xbfe6e3dbe13289fe, 0x3fe1206917987f19, - 0x3fd75f96c8cc2c38, 0x3fe1412db0bcbc3c, - 0x3fb8bde3481859b0, 0x3ffed1fad6d84f8e, - 0xbfe469f746344e6c, 0xbfd2b61f6bf22dae, - 0x3ff1bf7942a016d4, 0xbfcbd8afce572cb8, - 0xbfb8842981c2dac2, 0xbfd0275e852d3c75, - 0xbfe4aa03166a2a1a, 0xbfe111609ef52be7, - 0x3fea825e1fa755a6, 0x3fe523c23937d13c, - 0xbfe5972ed85bd4ff, 0xbf92889ba92304d0, - 0xbfea43955ac8c90e, 0x3fe43d89bf3f7619, - 0x3fd9df3621a3463f, 0x3fd173c47486f841, - 0xbfb36cdc999df2e8, 0x3fdeeb4fe49da324, - 0xbfb091471f0a7040, 0xbfde372e5a536d74, - 0x3fe420b599a7e522, 0x3fee7c9636dffe92, - 0x3ff08c101086778a, 0x3fc81a2e08768520, - 0xbfcde1ce5480d67b, 0x3fd85a7c7ee2096e, - 0x3fd1e867deabfb56, 0xbfbdfca7078756ce, - 0xbfe5ee07f957e6d8, 0x3fd48d38e93863e2, - 0x3fc146912cd64fde, 0xbfc8680e1ebc1296, - 0xbfefcf97c89df701, 0x3feabee965c44ae6, - 0xbfb28745afb846e0, 0xbfb31b6ae3262ab0, - 0x3fe2c786a3838c64, 0x3fcf2a4db11e8b84, - 0xbfebefb5e2a9584c, 0xbfe2069fd201910f, - 0x3fc10c6f997bc95c, 0x3fdfa4f54ef4230b, - 0x3fc4f0d9a4327066, 0xbfe1012f20ad7596, - 0x3fda7c81f917f30f, 0xbfce03cf9b6ae5e6, - 0xbfe2196a00fb6f9d, 0x3fe569616f1f67be, - 0xbfe444542b12e83e, 0xbff0c06ae183da8a, - 0x3fe7c60f277f734a, 0xbfbdca890986d358, - 0x3fe37b8a99fa1f48, 0xbff2212a04637c4a, - 0xbfc8a29ba6e68d38, 0x3f87d684daf11540, - 0xbfc75d4dedbfa5d5, 0xbfdd45e16ad90a9d, - 0x3fc23891e7d88106, 0x3fd4b765a5f298f3, - 0xbfe9421fc62d3546, 0xbfe3a9e7ac15ea8e, - 0xbfecb6f0ac782773, 0x3fd50c64ae030ebe, - 0x3f98299b57da7b00, 0x3fe7eecad7d860bc, - 0x3fedbbc18bbb8f8c, 0x3fd84a4c63c7ad0c, - 0xbfbb708ebbf6fb42, 0xbfb797ba419013be, - 0xbfdd2205790b9672, 0xbff393c519a0ef44, - 0xbfe612c5542e2e02, 0x3fd998fadb5c069d, - 0x3fd54f01a57af3ab, 0xbfebada98e2d0426, - 0xbfdec2baf629b02e, 0xbfcdb4a4a7377278, - 0xbfecad171caa2d6e, 0xbfed093f7d983c3c, - 0xbfdaa980e01b8bef, 0x3fdc5f4466df07ac, - 0xbff95b2a8d213844, 0xbff58b1070f52f16, - 0xbfce548f33043370, 0xbfd631d9cf700518, - 0xbff6afd81c09081a, 0x3fc8f27652a7d986, - 0xbfeffe8f7cf6d3ee, 0x3fc676534a1ec6d1, - 0xbfe6a5cc7c913ffa, 0x3fe01c00e6c15e0c, - 0x3fc066237532b18a, 0x3febf0b5ec984380, - 0xbfed3ec04841f045, 0x3fe2ef6c1a412076, - 0x3fd377cb131fef2f, 0x3ff1bddfd8823f5f, - 0x3fed4b93fbf1cbca, 0x3ff22f8d80d084be, - 0xbfd276a64cbb41c6, 0x3ff7b9f21313748c, - 0x3fe4c50b0000ce21, 0x3fef61c88cda6302, - 0x3fe9750f30628a24, 0x3fc76d31c5a5cf3e, - 0x3fe48d8e9ccdad9c, 0x3fea69b78c887cca, - 0xbff2414bd6333ee6, 0xbff1cb27bd1f5e3e, - 0x3fdb82cef078d992, 0x3fefdccea8008c28, - 0xbff6443fbf0c01c2, 0xbfc0639565e8d000, - 0x3fe400530c4c9937, 0xbfd1241d366f4e85, - 0x3fae2bec299ee3a8, 0xbffee47c2f7256ec, - 0xbff767bac525a599, 0x3ff4408aaacf714c, - 0xbfaa5a9e35830e90, 0xbfc3ce76daa8d6d5, - 0x3f8d1fd5a258d87c, 0xbfba6d89b593d218, - 0x3fd6110fde4f5e8d, 0x3fba53165c940daf, - 0x3fd0c19ace07aca6, 0x3fdf7ee9bec6e11c, - 0x3fd5802d7e48001e, 0x3feba21b6d781b13, - 0xc00314fd96bc90a5, 0xbfed67af5beab509, - 0x3fbf14534528066c, 0xbff05af846960715, - 0x3ff41bcd84610ba4, 0xbfb4ea888c0136e4, - 0xbfb6e5c7d9ca8c5a, 0x3fd9b99f7cb61dfe, - 0x3fdf4ab52b744afc, 0xbfe645d687ecb177, - 0x3fc0117147ff331d, 0xbfe7af077627ce6f, - 0x3fcde631f14f4252, 0xbfefc0f0eb4c7f7c, - 0x3fe6b109563ec9af, 0xbfe894a29985a834, - 0x3fb30f8229534774, 0xbfdc7e33c46c2c87, - 0xbfe43a3b56b8b554, 0xbff0cf4fa47da409, - 0x3fec64021c884251, 0x3fccaf7d1f12e4d8, - 0x3fcba86b745544d4, 0x3fb7c6821cb5e154, - 0x3fd08e65020fcc26, 0xbfc37b14b072ab00, - 0xbfcae0d18a2858aa, 0x3fb81939c07213fd, - 0x3fe806de48909984, 0xbfdf6f717dc60bcb, - 0xbfd16a3d202991b8, 0x3ff3fec11e6f0658, - 0xbff5817a2e626836, 0xbfdd6c38a957cad3, - 0x3fe496f710b52654, 0x3fdc388727917564, - 0x3fff062b1e76699f, 0x3fd4cb7f3d4c71d0, - 0xbff209b95a36afdc, 0x3fdb60111b18c404, - 0x3fc57a1d9471cb9a, 0x3fdce44f78a3ebca, - 0x3fdb2cf84bf55187, 0xbff251d8e971e140, - 0x3fd9303ef7cae096, 0x3ff309d83353e1db, - 0xbff23ee695c7f28a, 0x3fb86b3a231349b0, - 0x3fdd71a2ef5f9774, 0xbff77872f09a97be, - 0x3febd6ec83b86b82, 0x3ff0036e604251df, - 0xbfd04913349de0b9, 0xbff4a46758e5e0f9, - 0x3ff4f6aa5dfe5c10, 0x3fbe53d2743c9a1c, - 0x3fc289275af35494, 0x3ff3ad76dee031cc, - 0xbfe6cd810336d3c2, 0x3f6c349c26c92700, - 0x3fb670a7da315571, 0xbff1c71caa232066, - 0x3fe5698f71fd8bfe, 0x3fe7d750ff556b4a, - 0x3fedb3eb6218083c, 0xbf93c20209d898c0, - 0x3ff5f1631c02f83e, 0x3fd1b89a7f55cb38, - 0xbf73a815c424a6c0, 0x3fdc92dad69a7908, - 0x3fdbe31e64429a7a, 0x3fe85df1b9f6005a, - 0x3fe81248ef9734af, 0xbfb6128e74c7fcc0, - 0x3fd893468a349b3e, 0xbfa3c8aad470d008, - 0xbfd78676a04043a4, 0x3feffa64b3c55e1b, - 0x3fdb8e8ec44daf25, 0x3fed8baf4fa87364, - 0xbff5f696da8d395b, 0x3feb345d1ac9e91b, - 0xbfcf42a424f03e32, 0xbfd65d8e7262f37a, - 0x3fcc1a9410646984, 0x3fdc6948288d36d4, - 0xbff0083fa46b9598, 0x3fde7cbfc825fd5e, - 0xbfe4d818446e28b7, 0xbfb4dfcf6b3799c0, - 0xbfa9169604c2ec90, 0x0, - 0xbfe4d818446e28b5, 0x3fb4dfcf6b3799b0, - 0xbff0083fa46b9598, 0xbfde7cbfc825fd6c, - 0x3fcc1a941064698e, 0xbfdc6948288d36d6, - 0xbfcf42a424f03e3a, 0x3fd65d8e7262f378, - 0xbff5f696da8d395a, 0xbfeb345d1ac9e922, - 0x3fdb8e8ec44daf31, 0xbfed8baf4fa87364, - 0xbfd78676a0404396, 0xbfeffa64b3c55e19, - 0x3fd893468a349b3a, 0x3fa3c8aad470d004, - 0x3fe81248ef9734b4, 0x3fb6128e74c7fcc8, - 0x3fdbe31e64429a8b, 0xbfe85df1b9f6005a, - 0xbf73a815c424a540, 0xbfdc92dad69a7903, - 0x3ff5f1631c02f83f, 0xbfd1b89a7f55cb28, - 0x3fedb3eb6218083c, 0x3f93c20209d89990, - 0x3fe5698f71fd8c04, 0xbfe7d750ff556b4a, - 0x3fb670a7da31554e, 0x3ff1c71caa232064, - 0xbfe6cd810336d3c0, 0xbf6c349c26c92a00, - 0x3fc289275af354a8, 0xbff3ad76dee031cc, - 0x3ff4f6aa5dfe5c0f, 0xbfbe53d2743c99fa, - 0xbfd04913349de0c6, 0x3ff4a46758e5e0f9, - 0x3febd6ec83b86b82, 0xbff0036e604251dd, - 0x3fdd71a2ef5f9769, 0x3ff77872f09a97be, - 0xbff23ee695c7f28e, 0xbfb86b3a231349e0, - 0x3fd9303ef7cae0a3, 0xbff309d83353e1d9, - 0x3fdb2cf84bf55184, 0x3ff251d8e971e141, - 0x3fc57a1d9471cba8, 0xbfdce44f78a3ebc3, - 0xbff209b95a36afdc, 0xbfdb60111b18c411, - 0x3fff062b1e76699f, 0xbfd4cb7f3d4c71c4, - 0x3fe496f710b52656, 0xbfdc388727917554, - 0xbff5817a2e626838, 0x3fdd6c38a957cac9, - 0xbfd16a3d202991b0, 0xbff3fec11e6f0658, - 0x3fe806de48909980, 0x3fdf6f717dc60bd6, - 0xbfcae0d18a2858a8, 0xbfb81939c07213fe, - 0x3fd08e65020fcc20, 0x3fc37b14b072ab0c, - 0x3fcba86b745544d2, 0xbfb7c6821cb5e156, - 0x3fec64021c884250, 0xbfccaf7d1f12e4c0, - 0xbfe43a3b56b8b558, 0x3ff0cf4fa47da407, - 0x3fb30f8229534752, 0x3fdc7e33c46c2c8a, - 0x3fe6b109563ec9ae, 0x3fe894a29985a837, - 0x3fcde631f14f423c, 0x3fefc0f0eb4c7f7c, - 0x3fc0117147ff3316, 0x3fe7af077627ce70, - 0x3fdf4ab52b744af6, 0x3fe645d687ecb17b, - 0xbfb6e5c7d9ca8c48, 0xbfd9b99f7cb61dfa, - 0x3ff41bcd84610ba1, 0x3fb4ea888c0136fc, - 0x3fbf145345280634, 0x3ff05af846960716, - 0xc00314fd96bc90a6, 0x3fed67af5beab4fb, - 0x3fd5802d7e480025, 0xbfeba21b6d781b10, - 0x3fd0c19ace07acaa, 0xbfdf7ee9bec6e11f, - 0x3fd6110fde4f5e8f, 0xbfba53165c940da3, - 0x3f8d1fd5a258d87c, 0x3fba6d89b593d218, - 0xbfaa5a9e35830ec4, 0x3fc3ce76daa8d6d7, - 0xbff767bac525a598, 0xbff4408aaacf7152, - 0x3fae2bec299ee358, 0x3ffee47c2f7256ee, - 0x3fe400530c4c9937, 0x3fd1241d366f4e90, - 0xbff6443fbf0c01c3, 0x3fc0639565e8cfe8, - 0x3fdb82cef078d98c, 0xbfefdccea8008c24, - 0xbff2414bd6333ee8, 0x3ff1cb27bd1f5e3c, - 0x3fe48d8e9ccdada5, 0xbfea69b78c887cc7, - 0x3fe9750f30628a24, 0xbfc76d31c5a5cf31, - 0x3fe4c50b0000ce21, 0xbfef61c88cda62fe, - 0xbfd276a64cbb41bb, 0xbff7b9f21313748c, - 0x3fed4b93fbf1cbcc, 0xbff22f8d80d084bb, - 0x3fd377cb131fef35, 0xbff1bddfd8823f5d, - 0xbfed3ec04841f049, 0xbfe2ef6c1a412078, - 0x3fc066237532b116, 0xbfebf0b5ec984380, - 0xbfe6a5cc7c913ff8, 0xbfe01c00e6c15e0a, - 0xbfeffe8f7cf6d3ee, 0xbfc676534a1ec6da, - 0xbff6afd81c09081c, 0xbfc8f27652a7d994, - 0xbfce548f33043364, 0x3fd631d9cf700512, - 0xbff95b2a8d213844, 0x3ff58b1070f52f13, - 0xbfdaa980e01b8bef, 0xbfdc5f4466df07b0, - 0xbfecad171caa2d73, 0x3fed093f7d983c38, - 0xbfdec2baf629b033, 0x3fcdb4a4a7377278, - 0x3fd54f01a57af3aa, 0x3febada98e2d0426, - 0xbfe612c5542e2dff, 0xbfd998fadb5c069a, - 0xbfdd2205790b967c, 0x3ff393c519a0ef42, - 0xbfbb708ebbf6fb56, 0x3fb797ba419013d6, - 0x3fedbbc18bbb8f92, 0xbfd84a4c63c7ad0a, - 0x3f98299b57da7b40, 0xbfe7eecad7d860ba, - 0xbfecb6f0ac78276f, 0xbfd50c64ae030ec6, - 0xbfe9421fc62d3549, 0x3fe3a9e7ac15ea8a, - 0x3fc23891e7d8810d, 0xbfd4b765a5f298f2, - 0xbfc75d4dedbfa5dd, 0x3fdd45e16ad90a9c, - 0xbfc8a29ba6e68d18, 0xbf87d684daf114e0, - 0x3fe37b8a99fa1f44, 0x3ff2212a04637c4c, - 0x3fe7c60f277f734a, 0x3fbdca890986d380, - 0xbfe444542b12e844, 0x3ff0c06ae183da89, - 0xbfe2196a00fb6f98, 0xbfe569616f1f67be, - 0x3fda7c81f917f310, 0x3fce03cf9b6ae5ec, - 0x3fc4f0d9a432705d, 0x3fe1012f20ad7598, - 0x3fc10c6f997bc95c, 0xbfdfa4f54ef4230a, - 0xbfebefb5e2a9584c, 0x3fe2069fd201910c, - 0x3fe2c786a3838c67, 0xbfcf2a4db11e8b7e, - 0xbfb28745afb846d8, 0x3fb31b6ae3262aa0, - 0xbfefcf97c89df6fd, 0xbfeabee965c44ae4, - 0x3fc146912cd64fd6, 0x3fc8680e1ebc1296, - 0xbfe5ee07f957e6d8, 0xbfd48d38e93863e2, - 0x3fd1e867deabfb54, 0x3fbdfca7078756d4, - 0xbfcde1ce5480d684, 0xbfd85a7c7ee20975, - 0x3ff08c101086778a, 0xbfc81a2e0876850d, - 0x3fe420b599a7e526, 0xbfee7c9636dffe92, - 0xbfb091471f0a705c, 0x3fde372e5a536d72, - 0xbfb36cdc999df2e8, 0xbfdeeb4fe49da326, - 0x3fd9df3621a34641, 0xbfd173c47486f842, - 0xbfea43955ac8c90e, 0xbfe43d89bf3f761a, - 0xbfe5972ed85bd4ff, 0x3f92889ba9230428, - 0x3fea825e1fa755a8, 0xbfe523c23937d136, - 0xbfe4aa03166a2a17, 0x3fe111609ef52be4, - 0xbfb8842981c2dad2, 0x3fd0275e852d3c7a, - 0x3ff1bf7942a016d7, 0x3fcbd8afce572cd8, - 0xbfe469f746344e70, 0x3fd2b61f6bf22dae, - 0x3fb8bde3481859e0, 0xbffed1fad6d84f91, - 0x3fd75f96c8cc2c40, 0xbfe1412db0bcbc3c, - 0xbfe6e3dbe13289f8, 0xbfe1206917987f19, - 0xc0027160b5989240, 0xbff1147e5ed80e2e, - 0x3fe59d1a63d4c976, 0xbfc0650438c96478, - 0xbfe07aa8406cd901, 0xbfd066928cc1c640, - 0xbfd0201de7ed6715, 0x3ff95fa639f05489, - 0x3f626bc7dfc83100, 0x3ff3fde80da1215c, - 0xbfe60cc41da4b310, 0xbfea6edc49ea4ee3, - 0xbfdb2a8651411032, 0x4000d18c237c9236, - 0x3ff5ced2b7b1c4b6, 0xbfe885897319a89c, - 0x3ff155d0b319b07e, 0x3fb73ec5f5841e56, - 0xbfd46ff1b01f6c5e, 0x3fec48fa826f3a62, - 0x3fb838f07447ddf0, 0x3fd4f1f8d69ce2a0, - 0x3fe121ab46b63b80, 0x3fdb2b994ea118b0, - 0xbfd0e9484edd0d57, 0x3fdf55897050ea84, - 0xbff6279adbbff7fc, 0xbfed36be70668548, - 0x3fe2dfd20b0eaa57, 0x3ff1ef69573a1370, - 0x3fba88fcab1aec30, 0x3fe292e406de49db, - 0xbfdd28b3726aaa74, 0xbff344abf9ee80f2, - 0x3fa5acf82c84ec44, 0x3febb1a7f3598728, - 0xbfec00e32ee04364, 0x3ff04e2e4d5bc219, - 0x3fe83b54043b3359, 0xbfe885185d7bd170, - 0x3fdfaa767796159c, 0xbfe173d3d6ea1ffe, - 0x3fe0a27186140df4, 0xbff6f1b0fdea5564, - 0xbfbe3e95555b402a, 0xbff0bdc0badddaaa, - 0x3fdcc548ad85be85, 0x3ff7b434084fdc28, - 0x3ff0330d1ab1efbf, 0x3f304f971732b000, - 0x3fbd0cd700fbf96c, 0x3fd4d8c354011b94, - 0xbfd0ae69feeac8b6, 0x3ff541ae2a866066, - 0x3feb0bc618703148, 0x3ff3f159baa751fa, - 0x3fd4b0a711a5c386, 0xbfe91729d5156693, - 0x3febca9053abf586, 0xbfbb27c49f367e08, - 0x3fb0bc4da20c3a42, 0xbfe38dba3954bcfe, - 0x3ff490af510a2932, 0xbfd921e996b7def8, - 0x3fdf587641ba18b8, 0x3fdd260ff99466a0, - 0xbfdc6971eeeadc09, 0xbfc287537103fc6c, - 0xbfd02ee622a79786, 0xbf8a128152944c60, - 0x3fd85c7cbc2a45ec, 0xbfdc5d335ff9e17c, - 0x3fd1317cadf5b62f, 0xbfe0aec488eb4a12, - 0x3ff06756bdd3dca6, 0xbf905ed0633d4b50, - 0x3fe38c00b322a8d6, 0xbfd4aeaae88f10d0, - 0xbfeb622638bd108a, 0xbfce786988191396, - 0xbfe17628dff397de, 0xbff49c9bb7bede49, - 0x3fecbf24a672c6e4, 0xbff103a04d0fe9e8, - 0xbff2447662b1c213, 0xbfe1f2a4e59aeb16, - 0xbfd70829f35b42fe, 0x3fc9474379b45764, - 0x3fca4105380ca075, 0xbfbdd3d38b810270, - 0x3ffc1339a5851492, 0x3fd01779943ace9e, - 0xbfb6f17f32c42308, 0x3fc5e3ce06e4568f, - 0x3fd4086dbe2e08a3, 0xbfe9c291516ea8c6, - 0xbfd85bbfe16806c6, 0x3ffbafcd089d52b5, - 0xbfebf36b3edadc2a, 0x3fe0a1642fa4f374, - 0x3fe1894a3335b3fc, 0xbfedc061927a8849, - 0x3fa64f51f3c32c40, 0x3fdcd6e5f6d32a42, - 0xbffc149cc1de094a, 0x3fd7c4bebb090d1f, - 0x3f9a03a530ea8dc4, 0xbfa08becbb47521c, - 0xbfcd092e4f6db926, 0x3fd21756954ae3e3, - 0xbff05c4b7e915d22, 0x3fdb97e7b3cafb01, - 0xbfedc4f30036d4de, 0xbfe43707a2072c9c, - 0x3faf65601d7885c8, 0xbff6814c43ce50e6, - 0xbfd1e63b4a08e471, 0x3fe5043f2ae436cc, - 0xbfe0b8541dd07d26, 0xbfe7c24aae5957fd, - 0x3fe1a45a9579b3cd, 0xbfec6f14ea1f2276, - 0x3fe116be552bab58, 0x3fa5b1bb27bd2e18, - 0xbfd164bffd7e467b, 0xbfe02076b0e85c5a, - 0x3fe40df1750c83d9, 0xbff57002dcc25792, - 0xbffd66967ef288f6, 0x3fdfe98063bfaf90, - 0x3fd6a9ee427a5c34, 0x3fc60fc5a6df42c7, - 0xbfc9b4fe49bca8e5, 0x3fc17ca95ace9857, - 0xbfe0da939f1c7f35, 0xbfdcf2f70335ebba, - 0x3ff262bcaf44df13, 0xbfd91d052b8a2e2b, - 0x3fba82853f62b4a4, 0xbfeeb3da8c0b31ca, - 0x3fe2f7f24c0685f5, 0xbff4ce72a0fbeb03, - 0xbfef6cc78a68ce6a, 0x3fbbb01f198ab9cc, - 0xbfbe9c057dfc2b64, 0xbfa1bf76b350b00c, - 0x3fc5870671b87400, 0xbff417cdd0d45e38, - 0x3ff2fbae791674f8, 0x3ff10709d00e307a, - 0xbff66fb9dfade9d0, 0x3fe9afa2b47907e4, - 0x3fc3bdefd041e34a, 0xbfda5f45afb94108, - 0x3fc18c0d250748a8, 0x3fd8b8b16a61412d, - 0xbfa9a203a1c7f9da, 0x406661091e0bde98, - 0x3fe580472ee9fefd, 0xbfe00e29d53bcc86, - 0xbfe0e751c795f3a0, 0xbfe3cdd9be73bd12, - 0x3fe75b7c2b246896, 0x3fea0cc81f27cdc0, - 0xbfef66938554e531, 0x3fba5ab149ea0668, - 0x3fd36ff369aa95ca, 0x3fe982f78b215a86, - 0xbf9e029a05b71950, 0xbfcaff7a82066afa, - 0xbfb007b28b8029ec, 0x3fd1cfbbffdff410, - 0xbfc82384392bc052, 0x3fb8f576ee8b5268, - 0x4000f84e2cb79d69, 0xbfdf137ccd6a5563, - 0x3fc4a2b042b25618, 0x3ffa7bf8d2218188, - 0xbfe55c572d5437ed, 0xbfbdbdc63826fe5c, - 0x3fd58c33805e128e, 0xbfca1687c3f00cec, - 0xbff0a9efe61af907, 0xbfcb9347fad85090, - 0x3fd253201a030bce, 0xbfca8724e3678e0d, - 0xbfa44a5bdc204301, 0x3ff856876ed4d54c, - 0x3fcd3e8ef422e1e9, 0x3fcf84cf7638799c, - 0xbfd47dfc68baf354, 0xbfd6037bb2f3e04c, - 0x3fe935d647a800b1, 0xbf90220eaa85a840, - 0x3fe42a16f44ce7ad, 0xbfe6ded7f0f973db, - 0x3fd1b24df355d27b, 0x3fea81dd6ed0ce12, - 0xbfe99b5e145aa7c3, 0x3fdfbbc1f2b9198f, - 0xbfdb113d7cf27126, 0xbfd951e7f7db4536, - 0xbfed05d6770358f2, 0xbfe130c19e506059, - 0xbfe33ae7fc783091, 0xbfec1386af95b68f, - 0xbfe4df048d731cbe, 0xbfe51699a4e6afa6, - 0xbfefa66d6e426c43, 0xbffec1fee3295580, - 0x3fb42063a7d70e24, 0xbfc3299ebbd4ffa2, - 0x3ffa1aebbe322de6, 0xbff3f1d51c145853, - 0x3feb236c87ce0a4b, 0xbff1161aa0bc21ef, - 0xbfc75e28f3acba60, 0x3fd4ed7b13348ddb, - 0x3ffc77482ef8c746, 0x3ff3f8ff6df6f4cc, - 0x3fe09d4e2f8c093a, 0xbfd3e2f9d060869d, - 0x3fdc59dd47731f2b, 0xbfe8564a31f8bc66, - 0x3ff16ec7b314045e, 0xbff8d3a3b9334ee4, - 0xbfdb4093fe0f9142, 0x3fb3d7e762f4abc4, - 0xbfd5fdaca2565c83, 0xbffd69e4263e1907, - 0xbfe36dc12d97c5b2, 0xbfb4fa776aa8ed08, - 0x3ff0ffb089020382, 0x3fef1b39dd139ffa, - 0x3fa817009c212264, 0xbfb2d919b56c6cd6, - 0xbff1f4dde7ebaefb, 0x3ff6433bc49a8e04, - 0x3fd663eafa94bd96, 0xbff501e67a24771f, - 0x3fd27164c528f5ed, 0x3ff973475ddf531f, - 0xbfda56648b1fd0f6, 0x3fdd77f2ba60d5d2, - 0xbff4f30ccd7e9bb9, 0x3ff668b141ef2311, - 0xbfe11e6ab2e52072, 0x3fff76ce00c63087, - 0xbfd2e2e4bd1804b8, 0x3f9b512ffe5fb810, - 0xbff507e071a4d878, 0x3fc8c94e1b07e570, - 0x3fe33131889a74f0, 0xbff327fa514b359a, - 0xbfadc564c2685106, 0xbfb29d587e3109c0, - 0x3fda076703e23c5d, 0x3ff631296000b8fb, - 0xbfe2269038e5dd60, 0xbfdb2013bbe679b6, - 0xbfe1c7615c10140b, 0xbfc9e9b7239132df, - 0x3fdfe550eb249ac1, 0xbfed79a99cfdbd74, - 0xbfd5682316cc9b0e, 0xbff1d1c57ce9fe94, - 0x3fe178418b0d661d, 0x3ff62b36d7c66238, - 0x3fe7bc7ed88d819b, 0x3fb89f807992bb54, - 0x3fd5b434b8e42ab8, 0x3ff0946929057113, - 0xbfed75b1ba8ed3e2, 0xbfc69447c8191c50, - 0xbfb7d6617bca3d10, 0xbfad48c10fc5be70, - 0xbfdb85882325449b, 0xbff801cbe79bb7b6, - 0x3fd1b8135a598058, 0x3fdd9703f3439350, - 0x3ffbb276927f5c8a, 0xbfe07fc3eab9f756, - 0xbfc3823e39686e41, 0x3ff752fdc523ec66 + 0xbfb8e29ab4bc2fa4, 0x0, + 0xbfc199602539f3b8, 0xbfed0f7370e4a318, + 0xbfe75925b74494fe, 0x3fd961ca943ef88e, + 0x3fe030f26390b3c8, 0xbfea179f712598e3, + 0xbfeddc2b4a40932b, 0x3fe919c475784085, + 0xbfaa42e84179d800, 0x3fd5b89c458ae4c4, + 0xbfdbd015c77a3f49, 0xbff0d6788f088b56, + 0x3ff39c753ec521f7, 0xbfe2e4010ff81afb, + 0xbfe1561f88dafa7b, 0x3fe3f869ae791f22, + 0xbff447b0fbbb8302, 0xbfaf546edcbe214e, + 0xbfec3a1529f14598, 0x3fdd0ddf1d59c2bd, + 0xbfd47491f5117130, 0xbfd2cfb8244de86a, + 0xbfb7cd244d000514, 0x3fc2123919f18895, + 0xbfb83f3c57110958, 0x3fea5d1d9d6e2562, + 0xc0015d20162817e6, 0xbff68dd41116009b, + 0xbfc45053709c6404, 0xbfdc0542cae05426, + 0xbfcbaaf2b1623f6b, 0xbfc04b5c5a9fe49c, + 0xbff733a1d52016bb, 0x3ffb12d2ed0bf302, + 0x3fd5a9301acf13c2, 0xbfa3af4c5e27bed8, + 0x3fe03d6fe0daa822, 0xbfe5888405a43564, + 0x3fe458af435e5b48, 0x3fb0a7095893a110, + 0x3fc19ffec8b34950, 0xbfdf139dc2644120, + 0xbfb9c4292582371c, 0x3fcafd0a49e1a3c8, + 0xbfe363fb5aeaf0ea, 0xbfc94d33257f7ca0, + 0xbfd56a49d448467c, 0x3fd206c7fc34a854, + 0x3fef31f3901d963e, 0x3fed039e4e5f4be4, + 0x3fdd95b30d9a81e8, 0xbf96ebee138e5e50, + 0xbfe8c9c9ce1713d8, 0x3f6bbd395fd37800, + 0x3fe3d55155486b3c, 0xbff4b24c22aff828, + 0xbfed9a0c5242f962, 0x3fd85b2b6175afea, + 0xbfd0a110f60b1e3d, 0x3ff590fb8c8388ba, + 0x3feeab5cc2559888, 0xbff41dd3b9235c6c, + 0xbfe2ed8d20f72be0, 0x3fdc0540a88f7169, + 0xbfd7ac2047dcf95c, 0x3fec5d6ff5571739, + 0x3ff7b33c65841854, 0x3fc88c5cb07c1899, + 0xbfe6b3bef1dca818, 0xbfe707441e462407, + 0xbfcc82b50d3e954b, 0x3fb0aa8ac72de558, + 0x3ff1af5911da8145, 0xbfc0188fc6d7ff6f, + 0x3fcc27570b095c0b, 0x3fc8afa99fbff856, + 0xbff385982e87f7b2, 0x3fdcdd16ff0efa4c, + 0x3fcabd8bf756a15c, 0xbfe68c7fb1e25b38, + 0xbfb374d66b90e3b8, 0x3fb6311c76755278, + 0x3ffd19b6bcdbdaf6, 0xbfe1cf53f73654bc, + 0x3ffef19eb0b8a926, 0xbfdaf23d231a0687, + 0xbfc97de42e17c349, 0xbfdfc9999416cc69, + 0x3ff215fa9dc0cbf0, 0x3ff74d1250d9bd6c, + 0xbff0d3e2dd289047, 0x3fe0c68fd1a2c769, + 0x3fd78a47a44f6ed0, 0xbfe220fdb85c6c29, + 0x3ff30557d129c58f, 0x3ff5336b64aaa52b, + 0x3fdd1bc2797198f1, 0x3fe3c9865d5f2c6e, + 0xbfe142a64381bcb3, 0x3ff62cce8adb5aa5, + 0xbfb687ecbddd6bac, 0x3f53a7c08893b800, + 0xbfecd18205210481, 0xbff24c2ef909d3d1, + 0xbff004c9c0fc6af2, 0x3fe0ff7ad9c831d8, + 0xbfc2fbe64cfe3458, 0x3fa38ff82d765040, + 0x400006869fb6a966, 0x3fdcee65076f9bac, + 0x3fdcd9b0de2fc75a, 0xbff7bae905df4c11, + 0x3fc6b9729f39f08e, 0x3fb7989e6defdce2, + 0xbfc34d9e868bde4b, 0xbff7a8492474859c, + 0xbfc8b6bdc6b94736, 0xbfef918be518846b, + 0x3fd2f9f8aa50f040, 0xbfe3ec5f14a7309a, + 0xbfd5340c7e04bad9, 0x3fc5caabbb9dabd6, + 0x3fca166b07e118be, 0xbfe1532ac7f7dc42, + 0xbfe902635185b91f, 0xbff4479fff4ac05c, + 0xbfcd2150937de3b8, 0xc066647a10be550a, + 0x3f9a68d5465f85c0, 0x3ffd445c4ff69e18, + 0x3f9dd04c605d6170, 0xc00185f0706bc100, + 0x3fdce9375692f4d9, 0x3fda00c7edc128f6, + 0x3fdb9e2cc79a4414, 0x3fe68af6c229c0ae, + 0x3fe0136521a64dc7, 0x3fc1079128bd9a0a, + 0x3fb1d864b52bfdfc, 0x3fdbc0f47a4e7dd0, + 0xbfe1de24e8ed9f54, 0x3ffb513a2f8d5698, + 0x3fe2f51e06480ba6, 0xbfe4ae75cb172736, + 0x3fefcb57daf73e5e, 0x3ff31541a5bd67d0, + 0x3ff1ffb848ec9bf8, 0xbff7edcc62819eda, + 0xbfc0b0e4e8ec23ae, 0xbff8df32b671ad1f, + 0x3fe70d3f4b771362, 0xbfe2cdac8fe9044d, + 0x3fc9f565812c1594, 0x3fe3e43880bf759e, + 0xbfe9ca7c2085c91e, 0x3fe038a397183b0d, + 0x3fa12ae79ddd4878, 0xbfe12c70d3af6254, + 0x3fd8ace33fc428c1, 0xbfbc89e2b728a940, + 0xbfc90d7b7234e3e0, 0xbfad8dea8d03202c, + 0xbfd72be59cc45f48, 0xbfd7eacb13179f74, + 0x3fef77d9b51a91ef, 0xbfe28a63ebd68d0a, + 0xbfe612e7cad26e3e, 0xbfe191f664eb3dc5, + 0x3ff8cbf43793d089, 0x3fe032987fadd268, + 0x3fee53223169d2c6, 0xbfe8829d7033ae07, + 0x40020ad06679614c, 0xc000187f26917a4d, + 0xbff81ea0a30f0188, 0x3fd1ed869e49ca1a, + 0xbfebc7ec603720e7, 0x3fd4e22d6ff4cd52, + 0xbfe0a72e424135d2, 0x3fe9e4529022d473, + 0x3fe45828db0438f4, 0x4002b518e46153aa, + 0x3fc8597f12bc5b70, 0x3ff44b75c81dc76f, + 0xbff58dc5dde8f75d, 0x3ffab564c39042d8, + 0x3ff41d953f8eacdc, 0x3fd08ee55f669e84, + 0xbfed3471618e6345, 0xbfe9c02a5661a5c8, + 0xbfd61094011465ab, 0x3ff659e37e2c2a8b, + 0xbff0e392a89565f2, 0xbffd8a4d08037dd4, + 0xbfc2d0cb72b120d0, 0xbfec3d998b0495b6, + 0xbfe20ccaa9269928, 0xbfe2a6afa6d2886c, + 0xbfa7d3fa2966dfa0, 0xbfd0d9a9ce70e4ce, + 0xbfe2633ed2f4d3c5, 0x3fdc64409ee3b31a, + 0xbfd4cab04ecb19ec, 0x3fd9eb7ba3800e94, + 0x3fd25407d8329b9d, 0x3fecdec4372100be, + 0xbfeca0e866316172, 0xbfde2cb9c3390c6b, + 0x3fe3b356945e03d6, 0x3fd6bfd1503b251d, + 0x3fd961362cf9ab92, 0xbfc56e84c2ac212c, + 0xbff67e7f18beea15, 0x3fddd3a08e30e8b5, + 0x3ff8b44af475802c, 0xbff6e4d1869a505e, + 0xbfbd1e6e36ce6708, 0xbf9313a878e7c7a0, + 0xbfe200ea5f733a58, 0x3fe4a008983ac139, + 0xbfb58fdc14d8a9fc, 0x3ff06ab4f8b9b7d5, + 0xbf9c3e81281b1550, 0xbfd019ba8bd9e40f, + 0xbfead803c61ac83f, 0x3fb1a503371dd5da, + 0xbfe157d34b966666, 0x3fb75be3562c07a0, + 0x3fe41080ecc8226f, 0x3feac0c43791dade, + 0xbfc0a0ceabd7a4d2, 0x3fc6d0857bf3f0e4, + 0x3fd13f89dfc92e7a, 0x3f879e4c7fa370d8, + 0x3fecf35f27fa19e0, 0xbff478d87e1b838b, + 0xbfdcc936e7b1b20c, 0x3fe2d46b53f6f7ec, + 0x3ffa636695699955, 0xbfee3ed18f79c25a, + 0xbfdfd5d0691eddca, 0x3ff4756e760e951f, + 0x3fe1de57b53197dd, 0x3fe0d08105339c41, + 0xbfd6e9cc3d1b1660, 0xbfcd3c75aa99fdb7, + 0xbfe7ead5ed7d723a, 0x3fe524761b8818a6, + 0xbff470c2c81d1efe, 0x3fe1fbba3906d046, + 0x3ff496787be022c9, 0x400563aeebce2ddc, + 0xbfe793590556a5b4, 0xbfe747a0d4fba492, + 0x3fdda0fb7e245fd7, 0xbfdef4fe5e5f49c0, + 0xc002da8a3f632ade, 0xbf69e180a667fb80, + 0xbfee550e32cacddb, 0xbfd3bdefb6eecb20, + 0x3fd3bf4fb70ddf41, 0xbfc76d79d7a70398, + 0xbfcac5b88fe1cdac, 0x3fd4f2d7dfec6b3e, + 0x3fb38cde770db3aa, 0xbfaeb6fdd59b6fee, + 0xbfea31cf9fd4e7ce, 0xbfe3a3e1de23e551, + 0x3fe81d826b984516, 0xbfe080e4ca4fc526, + 0x3ffa544bce815cc4, 0x3fcf7502baccdb1c, + 0xbfc640b864b108c2, 0x3ff65f4353619584, + 0xbff7843aaeda50aa, 0x3fe3f78f713f7558, + 0xbfd461372209693d, 0x3fbd7966b8797668, + 0xbfb983d387dc1e48, 0xbfe88fd92bd10c1e, + 0xbfd6c878e207393c, 0x3fdd13ec9d8e9387, + 0x3fc1009e4fb8308c, 0x3fe68b993f7c60ec, + 0x3fe319b17b9d51a9, 0xbfc3bd91260634e7, + 0x3fec9e2ec46ad5f4, 0x3fb0ac9be34b94e6, + 0xbff11955096a4ad6, 0x3fe379cf726ce0da, + 0x3fc83ff89546eb13, 0xbfb4ecdb3babab3c, + 0x3fe64ceebec11ce6, 0x3ff148dbfd188d5c, + 0xbfdca66dba3702ea, 0x3feb032611c67ec9, + 0xbfef2f70d47ccaf6, 0x3fe4bf489db1b70e, + 0xbfe03b1d306dafa4, 0xbffdbedbdc0c5794, + 0xbfce77da4472e9ee, 0xbfd5bc0202be57dc, + 0x3fd113f3643b6021, 0xbfc7eebe982e3a06, + 0xbfe001fa224a554d, 0xbffb5f8ba848895e, + 0x3ff18eb244fc0ee4, 0xbfdaad2c7146074d, + 0x3fddb1bba31a1571, 0x3fa470524037a694, + 0xbff5a2cfddafd5bb, 0x3ff6e70a9d724553, + 0xbff1511745685e06, 0xbfe3e3095ddf0eca, + 0xbfebf2c7296ca758, 0x3fea6f9075313de8, + 0x3fdfc1c93d7bb588, 0x3ff33d22e7850ef1, + 0x3fdb270b7ad6b27c, 0xbff630f2786eb327, + 0x3ff1feff646e75dd, 0x3ff8a85e1c15ed33, + 0x3fe67e26a5c09434, 0x3ff42db91c671c4d, + 0x3fc80bbdc129c610, 0xbfb799454e7e3058, + 0xbfe8eda21f5920a0, 0xbfb11331cfb732d0, + 0x3ff9e24f6e053306, 0x3fce1de6eaf08070, + 0xbfe56f03d5f11148, 0xbff76a6d2928f315, + 0xbfe280b52ba6784e, 0x3fb0efafec94c18a, + 0xbfe3e845412c61c8, 0xbfd168cbfaaa4139, + 0xbf78c7b592de9200, 0xbff98222afe6b93d, + 0x3fb20c620db4c854, 0x3fc10d09ba033f8c, + 0xbfe2ae038a49ad19, 0xbfbb3fae02dd2288, + 0x3fe9be0768219901, 0xbfb4fc0420af8ed0, + 0x3fe4a97d9c8a68be, 0xbfc92cd7c3e8bb04, + 0xbff750182d545cee, 0x3fd4d4a021b59b85, + 0xbfd2b8ad8e03edd2, 0x3fcb59898983fc66, + 0x3fdfd118d3bdbea6, 0xbfe48719ab180a2a, + 0xbfe0cb92b266552d, 0x3ff50aa60b228a76, + 0xbff37d2cbefe735e, 0xbfea218c34a05218, + 0x3fed1df1dedee9bc, 0xbff25996cf069cd0, + 0x3fe589a8e1093dbb, 0xbfcdfd73e59b3603, + 0xbfd7363244f60e7c, 0x3fcea365df4ba758, + 0xbff43a719819a1a6, 0x3fdaf2ec1b1a3ecc, + 0xbfe3e621fb28bcaa, 0x3fe154c7009f4f35, + 0xbfb6aa23788e6360, 0x3ffc14ec991e4231, + 0xbfe2515a817e28bd, 0x3ffccec251125a7f, + 0xbfe479198cbd2c89, 0x3fe4ac4c8934b2bb, + 0x4000bab9f661117a, 0x3ff05a1a11a9ec7c, + 0x3fec2b346bbbab72, 0xbff3edc6c9e4e44a, + 0x3ff2114287dece60, 0x3fe48d4b5c509d56, + 0x3fe782ba0a5d171f, 0x3fc5cb0a96713ef8, + 0x3fe7e80364052cfa, 0x3fb64ffd0ddb0848, + 0xbfd7989e6d379442, 0xbfe861ca44519e80, + 0xbff063d592874419, 0xbfc121ae72229194, + 0x3fc427338bce291a, 0xbff2cc35108290be, + 0xbfd2232534f5957c, 0xbfe9379e6aa990a2, + 0x3feaa7784101ed92, 0xbfc5eaaf5c9f560a, + 0x3fe3a857e44957c8, 0xbfc3fb53eb87b00a, + 0x3fad9c1ca37bcc5e, 0xbfebc878ae7e9eda, + 0xbfe51b9cb0a24da2, 0xbfc97553764de91d, + 0xc0010d52412937e3, 0x3fa03946e2cadd20, + 0xbfea878c85da472a, 0x3fe0598af9d6e0ff, + 0x3fa2fbdcc60e7e6a, 0x400247aab465607b, + 0xbff366fe167bb5a7, 0x3fcc21244f285200, + 0x3fe42c407ee33963, 0xbff7328b9611d503, + 0xbfef9eb841d878f8, 0xbfc0879a65cdafdc, + 0xbfe32bebf51e9c26, 0x3fd4b67c7c8cc7ae, + 0xbfecc866514e956a, 0xbfb3d99766cab474, + 0x3fdc3c1a9023252c, 0xbfcee8563e743bfc, + 0x3fb2be011c662f92, 0xbfcba270842843a0, + 0xbfd5747a3432f9c9, 0xbff6f76aa7ac42df, + 0xbff351d8520faf57, 0x3fe4335789026d21, + 0xbfd449d258e91f5d, 0x3ff7158684ed3379, + 0xbfe0318248f7d8b2, 0x3fe7a59815326544, + 0x3fe5d874daa3b70f, 0x3fd999f708635f02, + 0xbfd9bbcc616883e0, 0x3ff13bc236d3a81a, + 0xbfe3fbb5312dc4ec, 0xbfdd9f3b2b71f07e, + 0x3f9ce395a776a000, 0xbfd223eb467fc37e, + 0x3fdbce4c9bb53d24, 0x3ff04087d482b112, + 0xbfa3c84515c611c0, 0x3fcff8d0054c2a76, + 0xbfe3c4f95aad0198, 0xbffca39649171000, + 0xbfe6638ba06e5fdf, 0x3fcafa530d5fbb82, + 0xbf936e775260ebc0, 0x3fbc44ff9d1d7586, + 0x3ff67bf9ad2bcee7, 0x3fba09302c678ce0, + 0xbf938e40f826cac0, 0x3ff47fa00e0ba7e4, + 0xbfbdd9ab17e43ed0, 0xbfe034b456ed435e, + 0x3fa1e5fe31940430, 0xbf93ba64b862a760, + 0x3ff7a903f86d4383, 0xbfdf1c932ee1e027, + 0xbfd55279fbf9d83e, 0x3fd7c81932aa438f, + 0x3fe0f4d76a620e31, 0x3fd1c2143c714ee8, + 0x3fd7fc73e2d236d4, 0xbfdeb29cb04b61b0, + 0xbffe910abc38cb8d, 0xbf9b7957a2f5d130, + 0x3fb22909bd202954, 0xbff465096b3a60a8, + 0xbff4138e6a50a5ae, 0x3fe20dece27c78b6, + 0x3fda0251a95eff9f, 0xbf89426375cf4690, + 0xbff5272c5d8fa1b7, 0xbff5f90c8f536fd3, + 0x3fdf9fa5a7136b87, 0xbfdfd4182f280772, + 0x3fec0cd17a864d7b, 0x3feb2334ffa596cb, + 0xbfce2d2b770b75ea, 0xbfd4cab0ea2226ed, + 0xbfe84370cc6c68a6, 0x3fc34cfd6f203974, + 0x3fd74407bc7c6a4a, 0x3fc5ce9e40e77e53, + 0x3ff1bfe8f988ea7c, 0xbfd4484058bcdfdd, + 0xbff9fb56116bf0cb, 0x3ff0063b71bb2c97, + 0x3fde962c044d8f2a, 0x3ffb3851c24ed1c1, + 0x3fb39202f883895c, 0xbfe42910ce030f59, + 0xbfd21795662e59fb, 0x3fdae8b3a852ef6d, + 0xbfd4adc27fd5b780, 0x3ff1e926744a8f72, + 0xbfb53aa28ef85848, 0x3fd1ac0521d0c8db, + 0x3fe3fa31c522384e, 0xbffa5ae52a6333f8, + 0x3ff0f3ab0220f420, 0x3fe947d381454338, + 0xbfde1b4410139129, 0x3ff815cf8b8f63fd, + 0x3fc46bb608f19bc2, 0x3fccda670e23e70b, + 0x3fdaa2715811bec8, 0x3ff0a3d5e3a4a1c4, + 0xbfe59d14adef7245, 0xbff6c9bfb09db078, + 0x3fcffd446d2d4832, 0xbfd3a683da0aa622, + 0x3fdd5ed05709ca79, 0x3fe04c2ab7af94bc, + 0x3fe0cd4b8476c7cc, 0x0, + 0x3fdd5ed05709ca74, 0xbfe04c2ab7af94b8, + 0x3fcffd446d2d482f, 0x3fd3a683da0aa626, + 0xbfe59d14adef7246, 0x3ff6c9bfb09db078, + 0x3fdaa2715811bec6, 0xbff0a3d5e3a4a1c2, + 0x3fc46bb608f19bc0, 0xbfccda670e23e708, + 0xbfde1b4410139123, 0xbff815cf8b8f63fc, + 0x3ff0f3ab0220f421, 0xbfe947d381454335, + 0x3fe3fa31c522384d, 0x3ffa5ae52a6333f9, + 0xbfb53aa28ef85860, 0xbfd1ac0521d0c8de, + 0xbfd4adc27fd5b780, 0xbff1e926744a8f73, + 0xbfd21795662e59fe, 0xbfdae8b3a852ef72, + 0x3fb39202f8838958, 0x3fe42910ce030f5c, + 0x3fde962c044d8f2c, 0xbffb3851c24ed1c1, + 0xbff9fb56116bf0ca, 0xbff0063b71bb2c97, + 0x3ff1bfe8f988ea7c, 0x3fd4484058bcdfdc, + 0x3fd74407bc7c6a48, 0xbfc5ce9e40e77e52, + 0xbfe84370cc6c68a6, 0xbfc34cfd6f20397c, + 0xbfce2d2b770b75e7, 0x3fd4cab0ea2226ef, + 0x3fec0cd17a864d7c, 0xbfeb2334ffa596ca, + 0x3fdf9fa5a7136b88, 0x3fdfd4182f280770, + 0xbff5272c5d8fa1b6, 0x3ff5f90c8f536fd2, + 0x3fda0251a95effa5, 0x3f89426375cf4600, + 0xbff4138e6a50a5ad, 0xbfe20dece27c78b5, + 0x3fb22909bd202958, 0x3ff465096b3a60a8, + 0xbffe910abc38cb8d, 0x3f9b7957a2f5d140, + 0x3fd7fc73e2d236d2, 0x3fdeb29cb04b61ad, + 0x3fe0f4d76a620e2e, 0xbfd1c2143c714eea, + 0xbfd55279fbf9d83c, 0xbfd7c81932aa4394, + 0x3ff7a903f86d4383, 0x3fdf1c932ee1e028, + 0x3fa1e5fe31940438, 0x3f93ba64b862a7a0, + 0xbfbdd9ab17e43ee0, 0x3fe034b456ed4360, + 0xbf938e40f826cab0, 0xbff47fa00e0ba7e4, + 0x3ff67bf9ad2bcee7, 0xbfba09302c678cf8, + 0xbf936e775260eb60, 0xbfbc44ff9d1d7582, + 0xbfe6638ba06e5fdc, 0xbfcafa530d5fbb8c, + 0xbfe3c4f95aad0196, 0x3ffca39649170ffe, + 0xbfa3c84515c611c0, 0xbfcff8d0054c2a71, + 0x3fdbce4c9bb53d22, 0xbff04087d482b111, + 0x3f9ce395a7769fa0, 0x3fd223eb467fc37a, + 0xbfe3fbb5312dc4ec, 0x3fdd9f3b2b71f080, + 0xbfd9bbcc616883e6, 0xbff13bc236d3a818, + 0x3fe5d874daa3b70d, 0xbfd999f708635f01, + 0xbfe0318248f7d8b3, 0xbfe7a59815326544, + 0xbfd449d258e91f60, 0xbff7158684ed3379, + 0xbff351d8520faf56, 0xbfe4335789026d1f, + 0xbfd5747a3432f9c5, 0x3ff6f76aa7ac42e0, + 0x3fb2be011c662f88, 0x3fcba270842843a8, + 0x3fdc3c1a9023252b, 0x3fcee8563e743c00, + 0xbfecc866514e956c, 0x3fb3d99766cab480, + 0xbfe32bebf51e9c25, 0xbfd4b67c7c8cc7ac, + 0xbfef9eb841d878f6, 0x3fc0879a65cdafdc, + 0x3fe42c407ee33963, 0x3ff7328b9611d503, + 0xbff366fe167bb5a6, 0xbfcc21244f285200, + 0x3fa2fbdcc60e7e70, 0xc00247aab465607b, + 0xbfea878c85da4722, 0xbfe0598af9d6e0ff, + 0xc0010d52412937e3, 0xbfa03946e2cadd40, + 0xbfe51b9cb0a24da0, 0x3fc97553764de91b, + 0x3fad9c1ca37bcc44, 0x3febc878ae7e9edc, + 0x3fe3a857e44957ca, 0x3fc3fb53eb87b004, + 0x3feaa7784101ed94, 0x3fc5eaaf5c9f560a, + 0xbfd2232534f5957b, 0x3fe9379e6aa990a2, + 0x3fc427338bce2926, 0x3ff2cc35108290bf, + 0xbff063d592874418, 0x3fc121ae72229190, + 0xbfd7989e6d379442, 0x3fe861ca44519e80, + 0x3fe7e80364052cfa, 0xbfb64ffd0ddb0860, + 0x3fe782ba0a5d1720, 0xbfc5cb0a96713ef8, + 0x3ff2114287dece62, 0xbfe48d4b5c509d57, + 0x3fec2b346bbbab70, 0x3ff3edc6c9e4e44b, + 0x4000bab9f6611179, 0xbff05a1a11a9ec7e, + 0xbfe479198cbd2c8c, 0xbfe4ac4c8934b2ba, + 0xbfe2515a817e28be, 0xbffccec251125a7e, + 0xbfb6aa23788e6364, 0xbffc14ec991e4231, + 0xbfe3e621fb28bcaa, 0xbfe154c7009f4f39, + 0xbff43a719819a1a6, 0xbfdaf2ec1b1a3ec0, + 0xbfd7363244f60e79, 0xbfcea365df4ba758, + 0x3fe589a8e1093dbc, 0x3fcdfd73e59b360f, + 0x3fed1df1dedee9bf, 0x3ff25996cf069ccf, + 0xbff37d2cbefe735f, 0x3fea218c34a05217, + 0xbfe0cb92b266552e, 0xbff50aa60b228a75, + 0x3fdfd118d3bdbea7, 0x3fe48719ab180a2a, + 0xbfd2b8ad8e03edcf, 0xbfcb59898983fc61, + 0xbff750182d545cf0, 0xbfd4d4a021b59b88, + 0x3fe4a97d9c8a68bf, 0x3fc92cd7c3e8bb05, + 0x3fe9be0768219904, 0x3fb4fc0420af8ed8, + 0xbfe2ae038a49ad1a, 0x3fbb3fae02dd227e, + 0x3fb20c620db4c84c, 0xbfc10d09ba033f80, + 0xbf78c7b592de9300, 0x3ff98222afe6b93f, + 0xbfe3e845412c61c8, 0x3fd168cbfaaa413a, + 0xbfe280b52ba67851, 0xbfb0efafec94c190, + 0xbfe56f03d5f11146, 0x3ff76a6d2928f316, + 0x3ff9e24f6e053308, 0xbfce1de6eaf08078, + 0xbfe8eda21f59209f, 0x3fb11331cfb732c0, + 0x3fc80bbdc129c618, 0x3fb799454e7e3038, + 0x3fe67e26a5c09434, 0xbff42db91c671c4d, + 0x3ff1feff646e75de, 0xbff8a85e1c15ed34, + 0x3fdb270b7ad6b27d, 0x3ff630f2786eb327, + 0x3fdfc1c93d7bb58a, 0xbff33d22e7850ef0, + 0xbfebf2c7296ca758, 0xbfea6f9075313dea, + 0xbff1511745685e08, 0x3fe3e3095ddf0ec8, + 0xbff5a2cfddafd5bb, 0xbff6e70a9d724552, + 0x3fddb1bba31a156e, 0xbfa470524037a678, + 0x3ff18eb244fc0ee4, 0x3fdaad2c71460752, + 0xbfe001fa224a554c, 0x3ffb5f8ba848895d, + 0x3fd113f3643b6023, 0x3fc7eebe982e3a06, + 0xbfce77da4472e9e6, 0x3fd5bc0202be57db, + 0xbfe03b1d306dafa3, 0x3ffdbedbdc0c5796, + 0xbfef2f70d47ccaf7, 0xbfe4bf489db1b710, + 0xbfdca66dba3702ec, 0xbfeb032611c67ecd, + 0x3fe64ceebec11ce5, 0xbff148dbfd188d5c, + 0x3fc83ff89546eb10, 0x3fb4ecdb3babab38, + 0xbff11955096a4ad6, 0xbfe379cf726ce0dc, + 0x3fec9e2ec46ad5f4, 0xbfb0ac9be34b94e9, + 0x3fe319b17b9d51a9, 0x3fc3bd91260634e6, + 0x3fc1009e4fb83088, 0xbfe68b993f7c60ed, + 0xbfd6c878e207393a, 0xbfdd13ec9d8e9389, + 0xbfb983d387dc1e3e, 0x3fe88fd92bd10c1d, + 0xbfd461372209693a, 0xbfbd7966b879765b, + 0xbff7843aaeda50aa, 0xbfe3f78f713f7558, + 0xbfc640b864b108c1, 0xbff65f4353619583, + 0x3ffa544bce815cc3, 0xbfcf7502baccdb18, + 0x3fe81d826b984515, 0x3fe080e4ca4fc526, + 0xbfea31cf9fd4e7cf, 0x3fe3a3e1de23e551, + 0x3fb38cde770db3aa, 0x3faeb6fdd59b6ff4, + 0xbfcac5b88fe1cda8, 0xbfd4f2d7dfec6b3f, + 0x3fd3bf4fb70ddf44, 0x3fc76d79d7a70398, + 0xbfee550e32cacdde, 0x3fd3bdefb6eecb1c, + 0xc002da8a3f632adf, 0x3f69e180a667fc80, + 0x3fdda0fb7e245fd7, 0x3fdef4fe5e5f49c0, + 0xbfe793590556a5b2, 0x3fe747a0d4fba490, + 0x3ff496787be022c8, 0xc00563aeebce2ddc, + 0xbff470c2c81d1efe, 0xbfe1fbba3906d048, + 0xbfe7ead5ed7d7239, 0xbfe524761b8818a7, + 0xbfd6e9cc3d1b165e, 0x3fcd3c75aa99fdbc, + 0x3fe1de57b53197de, 0xbfe0d08105339c43, + 0xbfdfd5d0691eddc8, 0xbff4756e760e951f, + 0x3ffa636695699954, 0x3fee3ed18f79c259, + 0xbfdcc936e7b1b20d, 0xbfe2d46b53f6f7f0, + 0x3fecf35f27fa19e0, 0x3ff478d87e1b838a, + 0x3fd13f89dfc92e7b, 0xbf879e4c7fa370e0, + 0xbfc0a0ceabd7a4d2, 0xbfc6d0857bf3f0e6, + 0x3fe41080ecc82271, 0xbfeac0c43791dadc, + 0xbfe157d34b966667, 0xbfb75be3562c078c, + 0xbfead803c61ac83f, 0xbfb1a503371dd5ee, + 0xbf9c3e81281b1540, 0x3fd019ba8bd9e410, + 0xbfb58fdc14d8a9f8, 0xbff06ab4f8b9b7d5, + 0xbfe200ea5f733a5a, 0xbfe4a008983ac136, + 0xbfbd1e6e36ce670c, 0x3f9313a878e7c760, + 0x3ff8b44af475802c, 0x3ff6e4d1869a505c, + 0xbff67e7f18beea15, 0xbfddd3a08e30e8b4, + 0x3fd961362cf9ab8d, 0x3fc56e84c2ac2120, + 0x3fe3b356945e03d4, 0xbfd6bfd1503b251e, + 0xbfeca0e866316172, 0x3fde2cb9c3390c6b, + 0x3fd25407d8329b9a, 0xbfecdec4372100bb, + 0xbfd4cab04ecb19ef, 0xbfd9eb7ba3800e93, + 0xbfe2633ed2f4d3c8, 0xbfdc64409ee3b320, + 0xbfa7d3fa2966dfc0, 0x3fd0d9a9ce70e4d0, + 0xbfe20ccaa9269929, 0x3fe2a6afa6d2886e, + 0xbfc2d0cb72b120d0, 0x3fec3d998b0495b2, + 0xbff0e392a89565f2, 0x3ffd8a4d08037dd3, + 0xbfd61094011465aa, 0xbff659e37e2c2a8b, + 0xbfed3471618e6346, 0x3fe9c02a5661a5ca, + 0x3ff41d953f8eacdb, 0xbfd08ee55f669e84, + 0xbff58dc5dde8f75c, 0xbffab564c39042d8, + 0x3fc8597f12bc5b6a, 0xbff44b75c81dc76d, + 0x3fe45828db0438f3, 0xc002b518e46153a9, + 0xbfe0a72e424135d4, 0xbfe9e4529022d472, + 0xbfebc7ec603720e6, 0xbfd4e22d6ff4cd50, + 0xbff81ea0a30f0188, 0xbfd1ed869e49ca1b, + 0x40020ad06679614b, 0x4000187f26917a4c, + 0x3fee53223169d2c6, 0x3fe8829d7033ae07, + 0x3ff8cbf43793d08a, 0xbfe032987fadd267, + 0xbfe612e7cad26e3b, 0x3fe191f664eb3dc4, + 0x3fef77d9b51a91f0, 0x3fe28a63ebd68d0b, + 0xbfd72be59cc45f46, 0x3fd7eacb13179f71, + 0xbfc90d7b7234e3e0, 0x3fad8dea8d032028, + 0x3fd8ace33fc428c2, 0x3fbc89e2b728a944, + 0x3fa12ae79ddd4870, 0x3fe12c70d3af6256, + 0xbfe9ca7c2085c91c, 0xbfe038a397183b0c, + 0x3fc9f565812c15a0, 0xbfe3e43880bf759c, + 0x3fe70d3f4b771363, 0x3fe2cdac8fe9044b, + 0xbfc0b0e4e8ec23ad, 0x3ff8df32b671ad21, + 0x3ff1ffb848ec9bf6, 0x3ff7edcc62819ed9, + 0x3fefcb57daf73e5e, 0xbff31541a5bd67d0, + 0x3fe2f51e06480ba6, 0x3fe4ae75cb172736, + 0xbfe1de24e8ed9f53, 0xbffb513a2f8d5697, + 0x3fb1d864b52bfdf8, 0xbfdbc0f47a4e7dd2, + 0x3fe0136521a64dc6, 0xbfc1079128bd9a0c, + 0x3fdb9e2cc79a4414, 0xbfe68af6c229c0af, + 0x3fdce9375692f4da, 0xbfda00c7edc128f3, + 0x3f9dd04c605d6140, 0x400185f0706bc100, + 0x3f9a68d5465f85b0, 0xbffd445c4ff69e16, + 0xbfcd2150937de3b8, 0x4066647a10be550a, + 0xbfe902635185b922, 0x3ff4479fff4ac05c, + 0x3fca166b07e118c6, 0x3fe1532ac7f7dc40, + 0xbfd5340c7e04bada, 0xbfc5caabbb9dabd6, + 0x3fd2f9f8aa50f040, 0x3fe3ec5f14a7309a, + 0xbfc8b6bdc6b94732, 0x3fef918be518846c, + 0xbfc34d9e868bde54, 0x3ff7a8492474859d, + 0x3fc6b9729f39f08a, 0xbfb7989e6defdcda, + 0x3fdcd9b0de2fc75a, 0x3ff7bae905df4c12, + 0x400006869fb6a968, 0xbfdcee65076f9baa, + 0xbfc2fbe64cfe3460, 0xbfa38ff82d765080, + 0xbff004c9c0fc6af1, 0xbfe0ff7ad9c831d7, + 0xbfecd18205210481, 0x3ff24c2ef909d3d1, + 0xbfb687ecbddd6ba4, 0xbf53a7c08893ba40, + 0xbfe142a64381bcb2, 0xbff62cce8adb5aa6, + 0x3fdd1bc2797198ef, 0xbfe3c9865d5f2c6c, + 0x3ff30557d129c58f, 0xbff5336b64aaa52c, + 0x3fd78a47a44f6eca, 0x3fe220fdb85c6c29, + 0xbff0d3e2dd289048, 0xbfe0c68fd1a2c768, + 0x3ff215fa9dc0cbef, 0xbff74d1250d9bd6e, + 0xbfc97de42e17c34e, 0x3fdfc9999416cc67, + 0x3ffef19eb0b8a925, 0x3fdaf23d231a0687, + 0x3ffd19b6bcdbdaf4, 0x3fe1cf53f73654bc, + 0xbfb374d66b90e3d2, 0xbfb6311c7675528c, + 0x3fcabd8bf756a15a, 0x3fe68c7fb1e25b37, + 0xbff385982e87f7b2, 0xbfdcdd16ff0efa52, + 0x3fcc27570b095c04, 0xbfc8afa99fbff864, + 0x3ff1af5911da8146, 0x3fc0188fc6d7ff72, + 0xbfcc82b50d3e9556, 0xbfb0aa8ac72de558, + 0xbfe6b3bef1dca815, 0x3fe707441e462406, + 0x3ff7b33c65841855, 0xbfc88c5cb07c1893, + 0xbfd7ac2047dcf960, 0xbfec5d6ff557173c, + 0xbfe2ed8d20f72bdf, 0xbfdc0540a88f716b, + 0x3feeab5cc2559888, 0x3ff41dd3b9235c6e, + 0xbfd0a110f60b1e40, 0xbff590fb8c8388ba, + 0xbfed9a0c5242f95e, 0xbfd85b2b6175afe9, + 0x3fe3d55155486b3c, 0x3ff4b24c22aff828, + 0xbfe8c9c9ce1713d9, 0xbf6bbd395fd379c0, + 0x3fdd95b30d9a81e8, 0x3f96ebee138e5e60, + 0x3fef31f3901d963e, 0xbfed039e4e5f4be6, + 0xbfd56a49d448467b, 0xbfd206c7fc34a852, + 0xbfe363fb5aeaf0e8, 0x3fc94d33257f7c9a, + 0xbfb9c4292582371c, 0xbfcafd0a49e1a3cf, + 0x3fc19ffec8b34950, 0x3fdf139dc2644127, + 0x3fe458af435e5b4a, 0xbfb0a7095893a128, + 0x3fe03d6fe0daa821, 0x3fe5888405a43565, + 0x3fd5a9301acf13c1, 0x3fa3af4c5e27bee8, + 0xbff733a1d52016bb, 0xbffb12d2ed0bf302, + 0xbfcbaaf2b1623f6d, 0x3fc04b5c5a9fe49b, + 0xbfc45053709c640c, 0x3fdc0542cae05427, + 0xc0015d20162817e6, 0x3ff68dd41116009b, + 0xbfb83f3c57110948, 0xbfea5d1d9d6e2562, + 0xbfb7cd244d00051a, 0xbfc2123919f18894, + 0xbfd47491f5117131, 0x3fd2cfb8244de867, + 0xbfec3a1529f14598, 0xbfdd0ddf1d59c2be, + 0xbff447b0fbbb8302, 0x3faf546edcbe2172, + 0xbfe1561f88dafa7c, 0xbfe3f869ae791f24, + 0x3ff39c753ec521f6, 0x3fe2e4010ff81afc, + 0xbfdbd015c77a3f4b, 0x3ff0d6788f088b57, + 0xbfaa42e84179d800, 0xbfd5b89c458ae4c6, + 0xbfeddc2b4a40932a, 0xbfe919c475784088, + 0x3fe030f26390b3c7, 0x3fea179f712598e3, + 0xbfe75925b7449500, 0xbfd961ca943ef88e, + 0xbfc199602539f3b2, 0x3fed0f7370e4a318 }; static const uint64_t ref_cfft_noisy_512[1024] = { - 0x3ff1b860aa8827bc, 0x0, - 0xbfc3823e39686e29, 0xbff752fdc523ec68, - 0x3ffbb276927f5c88, 0x3fe07fc3eab9f75b, - 0x3fd1b8135a598065, 0xbfdd9703f343934c, - 0xbfdb8588232544a1, 0x3ff801cbe79bb7b6, - 0xbfb7d6617bca3d20, 0x3fad48c10fc5be88, - 0xbfed75b1ba8ed3e4, 0x3fc69447c8191c50, - 0x3fd5b434b8e42ab8, 0xbff0946929057114, - 0x3fe7bc7ed88d819b, 0xbfb89f807992bb52, - 0x3fe178418b0d6624, 0xbff62b36d7c66238, - 0xbfd5682316cc9b1b, 0x3ff1d1c57ce9fe91, - 0x3fdfe550eb249abb, 0x3fed79a99cfdbd76, - 0xbfe1c7615c10140e, 0x3fc9e9b7239132cd, - 0xbfe2269038e5dd5c, 0x3fdb2013bbe679a7, - 0x3fda076703e23c5c, 0xbff631296000b8fb, - 0xbfadc564c268512d, 0x3fb29d587e3109b8, - 0x3fe33131889a74ee, 0x3ff327fa514b359d, - 0xbff507e071a4d878, 0xbfc8c94e1b07e57c, - 0xbfd2e2e4bd1804b4, 0xbf9b512ffe5fb888, - 0xbfe11e6ab2e5206a, 0xbfff76ce00c63089, - 0xbff4f30ccd7e9bb7, 0xbff668b141ef2311, - 0xbfda56648b1fd0f3, 0xbfdd77f2ba60d5d0, - 0x3fd27164c528f5fe, 0xbff973475ddf531e, - 0x3fd663eafa94bd91, 0x3ff501e67a247721, - 0xbff1f4dde7ebaefb, 0xbff6433bc49a8e05, - 0x3fa817009c21228a, 0x3fb2d919b56c6cc4, - 0x3ff0ffb089020384, 0xbfef1b39dd139ff8, - 0xbfe36dc12d97c5b2, 0x3fb4fa776aa8ece0, - 0xbfd5fdaca2565c95, 0x3ffd69e4263e1907, - 0xbfdb4093fe0f9147, 0xbfb3d7e762f4abcc, - 0x3ff16ec7b314045a, 0x3ff8d3a3b9334ee6, - 0x3fdc59dd47731f30, 0x3fe8564a31f8bc65, - 0x3fe09d4e2f8c0939, 0x3fd3e2f9d060869e, - 0x3ffc77482ef8c748, 0xbff3f8ff6df6f4c8, - 0xbfc75e28f3acba52, 0xbfd4ed7b13348dda, - 0x3feb236c87ce0a42, 0x3ff1161aa0bc21f1, - 0x3ffa1aebbe322de4, 0x3ff3f1d51c145855, - 0x3fb42063a7d70e3a, 0x3fc3299ebbd4ffa4, - 0xbfefa66d6e426c48, 0x3ffec1fee329557e, - 0xbfe4df048d731cc1, 0x3fe51699a4e6afa4, - 0xbfe33ae7fc783092, 0x3fec1386af95b68c, - 0xbfed05d6770358f1, 0x3fe130c19e506057, - 0xbfdb113d7cf27128, 0x3fd951e7f7db4534, - 0xbfe99b5e145aa7c1, 0xbfdfbbc1f2b9199b, - 0x3fd1b24df355d287, 0xbfea81dd6ed0ce14, - 0x3fe42a16f44ce7ae, 0x3fe6ded7f0f973dd, - 0x3fe935d647a800ae, 0x3f90220eaa85a880, - 0xbfd47dfc68baf352, 0x3fd6037bb2f3e04b, - 0x3fcd3e8ef422e1e5, 0xbfcf84cf7638799c, - 0xbfa44a5bdc2042c1, 0xbff856876ed4d54a, - 0x3fd253201a030bd0, 0x3fca8724e3678e13, - 0xbff0a9efe61af908, 0x3fcb9347fad8508c, - 0x3fd58c33805e128a, 0x3fca1687c3f00cf0, - 0xbfe55c572d5437ef, 0x3fbdbdc63826fe2a, - 0x3fc4a2b042b25628, 0xbffa7bf8d2218187, - 0x4000f84e2cb79d68, 0x3fdf137ccd6a5570, - 0xbfc82384392bc04c, 0xbfb8f576ee8b5260, - 0xbfb007b28b8029f0, 0xbfd1cfbbffdff40a, - 0xbf9e029a05b71990, 0x3fcaff7a82066b03, - 0x3fd36ff369aa95d0, 0xbfe982f78b215a86, - 0xbfef66938554e52e, 0xbfba5ab149ea06a0, - 0x3fe75b7c2b246898, 0xbfea0cc81f27cdbc, - 0xbfe0e751c795f3a4, 0x3fe3cdd9be73bd0f, - 0x3fe580472ee9fefb, 0x3fe00e29d53bcc8c, - 0xbfa9a203a1c7eba6, 0xc06661091e0bde98, - 0x3fc18c0d250748a0, 0xbfd8b8b16a614130, - 0x3fc3bdefd041e34a, 0x3fda5f45afb9410b, - 0xbff66fb9dfade9d0, 0xbfe9afa2b47907eb, - 0x3ff2fbae791674fa, 0xbff10709d00e3076, - 0x3fc5870671b873f4, 0x3ff417cdd0d45e39, - 0xbfbe9c057dfc2b64, 0x3fa1bf76b350b010, - 0xbfef6cc78a68ce69, 0xbfbbb01f198ab9d4, - 0x3fe2f7f24c0685f4, 0x3ff4ce72a0fbeb03, - 0x3fba82853f62b478, 0x3feeb3da8c0b31ca, - 0x3ff262bcaf44df10, 0x3fd91d052b8a2e32, - 0xbfe0da939f1c7f38, 0x3fdcf2f70335ebb3, - 0xbfc9b4fe49bca8e3, 0xbfc17ca95ace985b, - 0x3fd6a9ee427a5c2f, 0xbfc60fc5a6df42c5, - 0xbffd66967ef288f8, 0xbfdfe98063bfafa4, - 0x3fe40df1750c83d3, 0x3ff57002dcc25792, - 0xbfd164bffd7e467e, 0x3fe02076b0e85c5a, - 0x3fe116be552bab58, 0xbfa5b1bb27bd2e10, - 0x3fe1a45a9579b3c8, 0x3fec6f14ea1f227a, - 0xbfe0b8541dd07d2c, 0x3fe7c24aae5957fc, - 0xbfd1e63b4a08e469, 0xbfe5043f2ae436d0, - 0x3faf65601d7885c0, 0x3ff6814c43ce50e6, - 0xbfedc4f30036d4de, 0x3fe43707a2072c99, - 0xbff05c4b7e915d22, 0xbfdb97e7b3cafb15, - 0xbfcd092e4f6db927, 0xbfd21756954ae3e2, - 0x3f9a03a530ea8dc0, 0x3fa08becbb4751d8, - 0xbffc149cc1de0948, 0xbfd7c4bebb090d2e, - 0x3fa64f51f3c32c78, 0xbfdcd6e5f6d32a3c, - 0x3fe1894a3335b3f7, 0x3fedc061927a8848, - 0xbfebf36b3edadc28, 0xbfe0a1642fa4f378, - 0xbfd85bbfe16806b6, 0xbffbafcd089d52b6, - 0x3fd4086dbe2e08a7, 0x3fe9c291516ea8c8, - 0xbfb6f17f32c4230c, 0xbfc5e3ce06e4568f, - 0x3ffc1339a5851491, 0xbfd01779943ace8f, - 0x3fca4105380ca084, 0x3fbdd3d38b810278, - 0xbfd70829f35b42fc, 0xbfc9474379b4575f, - 0xbff2447662b1c215, 0x3fe1f2a4e59aeb12, - 0x3fecbf24a672c6e0, 0x3ff103a04d0fe9e8, - 0xbfe17628dff397dd, 0x3ff49c9bb7bede48, - 0xbfeb622638bd1088, 0x3fce78698819138d, - 0x3fe38c00b322a8d6, 0x3fd4aeaae88f10d0, - 0x3ff06756bdd3dca6, 0x3f905ed0633d4b98, - 0x3fd1317cadf5b630, 0x3fe0aec488eb4a10, - 0x3fd85c7cbc2a45ea, 0x3fdc5d335ff9e175, - 0xbfd02ee622a79780, 0x3f8a128152944b40, - 0xbfdc6971eeeadc03, 0x3fc287537103fc48, - 0x3fdf587641ba18c0, 0xbfdd260ff99466a2, - 0x3ff490af510a2934, 0x3fd921e996b7df0c, - 0x3fb0bc4da20c3a22, 0x3fe38dba3954bcfe, - 0x3febca9053abf584, 0x3fbb27c49f367e28, - 0x3fd4b0a711a5c384, 0x3fe91729d5156694, - 0x3feb0bc618703152, 0xbff3f159baa751fb, - 0xbfd0ae69feeac8ae, 0xbff541ae2a866068, - 0x3fbd0cd700fbf985, 0xbfd4d8c354011b90, - 0x3ff0330d1ab1efc2, 0xbf304f9717326800, - 0x3fdcc548ad85be8f, 0xbff7b434084fdc26, - 0xbfbe3e95555b402a, 0x3ff0bdc0badddaab, - 0x3fe0a27186140def, 0x3ff6f1b0fdea5566, - 0x3fdfaa767796159e, 0x3fe173d3d6ea1fff, - 0x3fe83b54043b3357, 0x3fe885185d7bd172, - 0xbfec00e32ee04360, 0xbff04e2e4d5bc21a, - 0x3fa5acf82c84ec98, 0xbfebb1a7f3598728, - 0xbfdd28b3726aaa7d, 0x3ff344abf9ee80f1, - 0x3fba88fcab1aec40, 0xbfe292e406de49d8, - 0x3fe2dfd20b0eaa57, 0xbff1ef69573a1370, - 0xbff6279adbbff800, 0x3fed36be70668543, - 0xbfd0e9484edd0d56, 0xbfdf55897050ea80, - 0x3fe121ab46b63b80, 0xbfdb2b994ea118af, - 0x3fb838f07447ddfc, 0xbfd4f1f8d69ce299, - 0xbfd46ff1b01f6c5a, 0xbfec48fa826f3a64, - 0x3ff155d0b319b07f, 0xbfb73ec5f5841e3c, - 0x3ff5ced2b7b1c4b6, 0x3fe885897319a8a1, - 0xbfdb2a865141102a, 0xc000d18c237c9237, - 0xbfe60cc41da4b318, 0x3fea6edc49ea4ee0, - 0x3f626bc7dfc83600, 0xbff3fde80da1215b, - 0xbfd0201de7ed670b, 0xbff95fa639f0548b, - 0xbfe07aa8406cd8fe, 0x3fd066928cc1c640, - 0x3fe59d1a63d4c974, 0x3fc0650438c9649c, - 0xc0027160b5989242, 0x3ff1147e5ed80e2c, - 0xbfe6e3dbe13289fe, 0x3fe1206917987f19, - 0x3fd75f96c8cc2c38, 0x3fe1412db0bcbc3c, - 0x3fb8bde3481859b0, 0x3ffed1fad6d84f8e, - 0xbfe469f746344e6c, 0xbfd2b61f6bf22dae, - 0x3ff1bf7942a016d4, 0xbfcbd8afce572cb8, - 0xbfb8842981c2dac2, 0xbfd0275e852d3c75, - 0xbfe4aa03166a2a1a, 0xbfe111609ef52be7, - 0x3fea825e1fa755a6, 0x3fe523c23937d13c, - 0xbfe5972ed85bd4ff, 0xbf92889ba92304d0, - 0xbfea43955ac8c90e, 0x3fe43d89bf3f7619, - 0x3fd9df3621a3463f, 0x3fd173c47486f841, - 0xbfb36cdc999df2e8, 0x3fdeeb4fe49da324, - 0xbfb091471f0a7040, 0xbfde372e5a536d74, - 0x3fe420b599a7e522, 0x3fee7c9636dffe92, - 0x3ff08c101086778a, 0x3fc81a2e08768520, - 0xbfcde1ce5480d67b, 0x3fd85a7c7ee2096e, - 0x3fd1e867deabfb56, 0xbfbdfca7078756ce, - 0xbfe5ee07f957e6d8, 0x3fd48d38e93863e2, - 0x3fc146912cd64fde, 0xbfc8680e1ebc1296, - 0xbfefcf97c89df701, 0x3feabee965c44ae6, - 0xbfb28745afb846e0, 0xbfb31b6ae3262ab0, - 0x3fe2c786a3838c64, 0x3fcf2a4db11e8b84, - 0xbfebefb5e2a9584c, 0xbfe2069fd201910f, - 0x3fc10c6f997bc95c, 0x3fdfa4f54ef4230b, - 0x3fc4f0d9a4327066, 0xbfe1012f20ad7596, - 0x3fda7c81f917f30f, 0xbfce03cf9b6ae5e6, - 0xbfe2196a00fb6f9d, 0x3fe569616f1f67be, - 0xbfe444542b12e83e, 0xbff0c06ae183da8a, - 0x3fe7c60f277f734a, 0xbfbdca890986d358, - 0x3fe37b8a99fa1f48, 0xbff2212a04637c4a, - 0xbfc8a29ba6e68d38, 0x3f87d684daf11540, - 0xbfc75d4dedbfa5d5, 0xbfdd45e16ad90a9d, - 0x3fc23891e7d88106, 0x3fd4b765a5f298f3, - 0xbfe9421fc62d3546, 0xbfe3a9e7ac15ea8e, - 0xbfecb6f0ac782773, 0x3fd50c64ae030ebe, - 0x3f98299b57da7b00, 0x3fe7eecad7d860bc, - 0x3fedbbc18bbb8f8c, 0x3fd84a4c63c7ad0c, - 0xbfbb708ebbf6fb42, 0xbfb797ba419013be, - 0xbfdd2205790b9672, 0xbff393c519a0ef44, - 0xbfe612c5542e2e02, 0x3fd998fadb5c069d, - 0x3fd54f01a57af3ab, 0xbfebada98e2d0426, - 0xbfdec2baf629b02e, 0xbfcdb4a4a7377278, - 0xbfecad171caa2d6e, 0xbfed093f7d983c3c, - 0xbfdaa980e01b8bef, 0x3fdc5f4466df07ac, - 0xbff95b2a8d213844, 0xbff58b1070f52f16, - 0xbfce548f33043370, 0xbfd631d9cf700518, - 0xbff6afd81c09081a, 0x3fc8f27652a7d986, - 0xbfeffe8f7cf6d3ee, 0x3fc676534a1ec6d1, - 0xbfe6a5cc7c913ffa, 0x3fe01c00e6c15e0c, - 0x3fc066237532b18a, 0x3febf0b5ec984380, - 0xbfed3ec04841f045, 0x3fe2ef6c1a412076, - 0x3fd377cb131fef2f, 0x3ff1bddfd8823f5f, - 0x3fed4b93fbf1cbca, 0x3ff22f8d80d084be, - 0xbfd276a64cbb41c6, 0x3ff7b9f21313748c, - 0x3fe4c50b0000ce21, 0x3fef61c88cda6302, - 0x3fe9750f30628a24, 0x3fc76d31c5a5cf3e, - 0x3fe48d8e9ccdad9c, 0x3fea69b78c887cca, - 0xbff2414bd6333ee6, 0xbff1cb27bd1f5e3e, - 0x3fdb82cef078d992, 0x3fefdccea8008c28, - 0xbff6443fbf0c01c2, 0xbfc0639565e8d000, - 0x3fe400530c4c9937, 0xbfd1241d366f4e85, - 0x3fae2bec299ee3a8, 0xbffee47c2f7256ec, - 0xbff767bac525a599, 0x3ff4408aaacf714c, - 0xbfaa5a9e35830e90, 0xbfc3ce76daa8d6d5, - 0x3f8d1fd5a258d87c, 0xbfba6d89b593d218, - 0x3fd6110fde4f5e8d, 0x3fba53165c940daf, - 0x3fd0c19ace07aca6, 0x3fdf7ee9bec6e11c, - 0x3fd5802d7e48001e, 0x3feba21b6d781b13, - 0xc00314fd96bc90a5, 0xbfed67af5beab509, - 0x3fbf14534528066c, 0xbff05af846960715, - 0x3ff41bcd84610ba4, 0xbfb4ea888c0136e4, - 0xbfb6e5c7d9ca8c5a, 0x3fd9b99f7cb61dfe, - 0x3fdf4ab52b744afc, 0xbfe645d687ecb177, - 0x3fc0117147ff331d, 0xbfe7af077627ce6f, - 0x3fcde631f14f4252, 0xbfefc0f0eb4c7f7c, - 0x3fe6b109563ec9af, 0xbfe894a29985a834, - 0x3fb30f8229534774, 0xbfdc7e33c46c2c87, - 0xbfe43a3b56b8b554, 0xbff0cf4fa47da409, - 0x3fec64021c884251, 0x3fccaf7d1f12e4d8, - 0x3fcba86b745544d4, 0x3fb7c6821cb5e154, - 0x3fd08e65020fcc26, 0xbfc37b14b072ab00, - 0xbfcae0d18a2858aa, 0x3fb81939c07213fd, - 0x3fe806de48909984, 0xbfdf6f717dc60bcb, - 0xbfd16a3d202991b8, 0x3ff3fec11e6f0658, - 0xbff5817a2e626836, 0xbfdd6c38a957cad3, - 0x3fe496f710b52654, 0x3fdc388727917564, - 0x3fff062b1e76699f, 0x3fd4cb7f3d4c71d0, - 0xbff209b95a36afdc, 0x3fdb60111b18c404, - 0x3fc57a1d9471cb9a, 0x3fdce44f78a3ebca, - 0x3fdb2cf84bf55187, 0xbff251d8e971e140, - 0x3fd9303ef7cae096, 0x3ff309d83353e1db, - 0xbff23ee695c7f28a, 0x3fb86b3a231349b0, - 0x3fdd71a2ef5f9774, 0xbff77872f09a97be, - 0x3febd6ec83b86b82, 0x3ff0036e604251df, - 0xbfd04913349de0b9, 0xbff4a46758e5e0f9, - 0x3ff4f6aa5dfe5c10, 0x3fbe53d2743c9a1c, - 0x3fc289275af35494, 0x3ff3ad76dee031cc, - 0xbfe6cd810336d3c2, 0x3f6c349c26c92700, - 0x3fb670a7da315571, 0xbff1c71caa232066, - 0x3fe5698f71fd8bfe, 0x3fe7d750ff556b4a, - 0x3fedb3eb6218083c, 0xbf93c20209d898c0, - 0x3ff5f1631c02f83e, 0x3fd1b89a7f55cb38, - 0xbf73a815c424a6c0, 0x3fdc92dad69a7908, - 0x3fdbe31e64429a7a, 0x3fe85df1b9f6005a, - 0x3fe81248ef9734af, 0xbfb6128e74c7fcc0, - 0x3fd893468a349b3e, 0xbfa3c8aad470d008, - 0xbfd78676a04043a4, 0x3feffa64b3c55e1b, - 0x3fdb8e8ec44daf25, 0x3fed8baf4fa87364, - 0xbff5f696da8d395b, 0x3feb345d1ac9e91b, - 0xbfcf42a424f03e32, 0xbfd65d8e7262f37a, - 0x3fcc1a9410646984, 0x3fdc6948288d36d4, - 0xbff0083fa46b9598, 0x3fde7cbfc825fd5e, - 0xbfe4d818446e28b7, 0xbfb4dfcf6b3799c0, - 0xbfa9169604c2ec90, 0x0, - 0xbfe4d818446e28b5, 0x3fb4dfcf6b3799b0, - 0xbff0083fa46b9598, 0xbfde7cbfc825fd6c, - 0x3fcc1a941064698e, 0xbfdc6948288d36d6, - 0xbfcf42a424f03e3a, 0x3fd65d8e7262f378, - 0xbff5f696da8d395a, 0xbfeb345d1ac9e922, - 0x3fdb8e8ec44daf31, 0xbfed8baf4fa87364, - 0xbfd78676a0404396, 0xbfeffa64b3c55e19, - 0x3fd893468a349b3a, 0x3fa3c8aad470d004, - 0x3fe81248ef9734b4, 0x3fb6128e74c7fcc8, - 0x3fdbe31e64429a8b, 0xbfe85df1b9f6005a, - 0xbf73a815c424a540, 0xbfdc92dad69a7903, - 0x3ff5f1631c02f83f, 0xbfd1b89a7f55cb28, - 0x3fedb3eb6218083c, 0x3f93c20209d89990, - 0x3fe5698f71fd8c04, 0xbfe7d750ff556b4a, - 0x3fb670a7da31554e, 0x3ff1c71caa232064, - 0xbfe6cd810336d3c0, 0xbf6c349c26c92a00, - 0x3fc289275af354a8, 0xbff3ad76dee031cc, - 0x3ff4f6aa5dfe5c0f, 0xbfbe53d2743c99fa, - 0xbfd04913349de0c6, 0x3ff4a46758e5e0f9, - 0x3febd6ec83b86b82, 0xbff0036e604251dd, - 0x3fdd71a2ef5f9769, 0x3ff77872f09a97be, - 0xbff23ee695c7f28e, 0xbfb86b3a231349e0, - 0x3fd9303ef7cae0a3, 0xbff309d83353e1d9, - 0x3fdb2cf84bf55184, 0x3ff251d8e971e141, - 0x3fc57a1d9471cba8, 0xbfdce44f78a3ebc3, - 0xbff209b95a36afdc, 0xbfdb60111b18c411, - 0x3fff062b1e76699f, 0xbfd4cb7f3d4c71c4, - 0x3fe496f710b52656, 0xbfdc388727917554, - 0xbff5817a2e626838, 0x3fdd6c38a957cac9, - 0xbfd16a3d202991b0, 0xbff3fec11e6f0658, - 0x3fe806de48909980, 0x3fdf6f717dc60bd6, - 0xbfcae0d18a2858a8, 0xbfb81939c07213fe, - 0x3fd08e65020fcc20, 0x3fc37b14b072ab0c, - 0x3fcba86b745544d2, 0xbfb7c6821cb5e156, - 0x3fec64021c884250, 0xbfccaf7d1f12e4c0, - 0xbfe43a3b56b8b558, 0x3ff0cf4fa47da407, - 0x3fb30f8229534752, 0x3fdc7e33c46c2c8a, - 0x3fe6b109563ec9ae, 0x3fe894a29985a837, - 0x3fcde631f14f423c, 0x3fefc0f0eb4c7f7c, - 0x3fc0117147ff3316, 0x3fe7af077627ce70, - 0x3fdf4ab52b744af6, 0x3fe645d687ecb17b, - 0xbfb6e5c7d9ca8c48, 0xbfd9b99f7cb61dfa, - 0x3ff41bcd84610ba1, 0x3fb4ea888c0136fc, - 0x3fbf145345280634, 0x3ff05af846960716, - 0xc00314fd96bc90a6, 0x3fed67af5beab4fb, - 0x3fd5802d7e480025, 0xbfeba21b6d781b10, - 0x3fd0c19ace07acaa, 0xbfdf7ee9bec6e11f, - 0x3fd6110fde4f5e8f, 0xbfba53165c940da3, - 0x3f8d1fd5a258d87c, 0x3fba6d89b593d218, - 0xbfaa5a9e35830ec4, 0x3fc3ce76daa8d6d7, - 0xbff767bac525a598, 0xbff4408aaacf7152, - 0x3fae2bec299ee358, 0x3ffee47c2f7256ee, - 0x3fe400530c4c9937, 0x3fd1241d366f4e90, - 0xbff6443fbf0c01c3, 0x3fc0639565e8cfe8, - 0x3fdb82cef078d98c, 0xbfefdccea8008c24, - 0xbff2414bd6333ee8, 0x3ff1cb27bd1f5e3c, - 0x3fe48d8e9ccdada5, 0xbfea69b78c887cc7, - 0x3fe9750f30628a24, 0xbfc76d31c5a5cf31, - 0x3fe4c50b0000ce21, 0xbfef61c88cda62fe, - 0xbfd276a64cbb41bb, 0xbff7b9f21313748c, - 0x3fed4b93fbf1cbcc, 0xbff22f8d80d084bb, - 0x3fd377cb131fef35, 0xbff1bddfd8823f5d, - 0xbfed3ec04841f049, 0xbfe2ef6c1a412078, - 0x3fc066237532b116, 0xbfebf0b5ec984380, - 0xbfe6a5cc7c913ff8, 0xbfe01c00e6c15e0a, - 0xbfeffe8f7cf6d3ee, 0xbfc676534a1ec6da, - 0xbff6afd81c09081c, 0xbfc8f27652a7d994, - 0xbfce548f33043364, 0x3fd631d9cf700512, - 0xbff95b2a8d213844, 0x3ff58b1070f52f13, - 0xbfdaa980e01b8bef, 0xbfdc5f4466df07b0, - 0xbfecad171caa2d73, 0x3fed093f7d983c38, - 0xbfdec2baf629b033, 0x3fcdb4a4a7377278, - 0x3fd54f01a57af3aa, 0x3febada98e2d0426, - 0xbfe612c5542e2dff, 0xbfd998fadb5c069a, - 0xbfdd2205790b967c, 0x3ff393c519a0ef42, - 0xbfbb708ebbf6fb56, 0x3fb797ba419013d6, - 0x3fedbbc18bbb8f92, 0xbfd84a4c63c7ad0a, - 0x3f98299b57da7b40, 0xbfe7eecad7d860ba, - 0xbfecb6f0ac78276f, 0xbfd50c64ae030ec6, - 0xbfe9421fc62d3549, 0x3fe3a9e7ac15ea8a, - 0x3fc23891e7d8810d, 0xbfd4b765a5f298f2, - 0xbfc75d4dedbfa5dd, 0x3fdd45e16ad90a9c, - 0xbfc8a29ba6e68d18, 0xbf87d684daf114e0, - 0x3fe37b8a99fa1f44, 0x3ff2212a04637c4c, - 0x3fe7c60f277f734a, 0x3fbdca890986d380, - 0xbfe444542b12e844, 0x3ff0c06ae183da89, - 0xbfe2196a00fb6f98, 0xbfe569616f1f67be, - 0x3fda7c81f917f310, 0x3fce03cf9b6ae5ec, - 0x3fc4f0d9a432705d, 0x3fe1012f20ad7598, - 0x3fc10c6f997bc95c, 0xbfdfa4f54ef4230a, - 0xbfebefb5e2a9584c, 0x3fe2069fd201910c, - 0x3fe2c786a3838c67, 0xbfcf2a4db11e8b7e, - 0xbfb28745afb846d8, 0x3fb31b6ae3262aa0, - 0xbfefcf97c89df6fd, 0xbfeabee965c44ae4, - 0x3fc146912cd64fd6, 0x3fc8680e1ebc1296, - 0xbfe5ee07f957e6d8, 0xbfd48d38e93863e2, - 0x3fd1e867deabfb54, 0x3fbdfca7078756d4, - 0xbfcde1ce5480d684, 0xbfd85a7c7ee20975, - 0x3ff08c101086778a, 0xbfc81a2e0876850d, - 0x3fe420b599a7e526, 0xbfee7c9636dffe92, - 0xbfb091471f0a705c, 0x3fde372e5a536d72, - 0xbfb36cdc999df2e8, 0xbfdeeb4fe49da326, - 0x3fd9df3621a34641, 0xbfd173c47486f842, - 0xbfea43955ac8c90e, 0xbfe43d89bf3f761a, - 0xbfe5972ed85bd4ff, 0x3f92889ba9230428, - 0x3fea825e1fa755a8, 0xbfe523c23937d136, - 0xbfe4aa03166a2a17, 0x3fe111609ef52be4, - 0xbfb8842981c2dad2, 0x3fd0275e852d3c7a, - 0x3ff1bf7942a016d7, 0x3fcbd8afce572cd8, - 0xbfe469f746344e70, 0x3fd2b61f6bf22dae, - 0x3fb8bde3481859e0, 0xbffed1fad6d84f91, - 0x3fd75f96c8cc2c40, 0xbfe1412db0bcbc3c, - 0xbfe6e3dbe13289f8, 0xbfe1206917987f19, - 0xc0027160b5989240, 0xbff1147e5ed80e2e, - 0x3fe59d1a63d4c976, 0xbfc0650438c96478, - 0xbfe07aa8406cd901, 0xbfd066928cc1c640, - 0xbfd0201de7ed6715, 0x3ff95fa639f05489, - 0x3f626bc7dfc83100, 0x3ff3fde80da1215c, - 0xbfe60cc41da4b310, 0xbfea6edc49ea4ee3, - 0xbfdb2a8651411032, 0x4000d18c237c9236, - 0x3ff5ced2b7b1c4b6, 0xbfe885897319a89c, - 0x3ff155d0b319b07e, 0x3fb73ec5f5841e56, - 0xbfd46ff1b01f6c5e, 0x3fec48fa826f3a62, - 0x3fb838f07447ddf0, 0x3fd4f1f8d69ce2a0, - 0x3fe121ab46b63b80, 0x3fdb2b994ea118b0, - 0xbfd0e9484edd0d57, 0x3fdf55897050ea84, - 0xbff6279adbbff7fc, 0xbfed36be70668548, - 0x3fe2dfd20b0eaa57, 0x3ff1ef69573a1370, - 0x3fba88fcab1aec30, 0x3fe292e406de49db, - 0xbfdd28b3726aaa74, 0xbff344abf9ee80f2, - 0x3fa5acf82c84ec44, 0x3febb1a7f3598728, - 0xbfec00e32ee04364, 0x3ff04e2e4d5bc219, - 0x3fe83b54043b3359, 0xbfe885185d7bd170, - 0x3fdfaa767796159c, 0xbfe173d3d6ea1ffe, - 0x3fe0a27186140df4, 0xbff6f1b0fdea5564, - 0xbfbe3e95555b402a, 0xbff0bdc0badddaaa, - 0x3fdcc548ad85be85, 0x3ff7b434084fdc28, - 0x3ff0330d1ab1efbf, 0x3f304f971732b000, - 0x3fbd0cd700fbf96c, 0x3fd4d8c354011b94, - 0xbfd0ae69feeac8b6, 0x3ff541ae2a866066, - 0x3feb0bc618703148, 0x3ff3f159baa751fa, - 0x3fd4b0a711a5c386, 0xbfe91729d5156693, - 0x3febca9053abf586, 0xbfbb27c49f367e08, - 0x3fb0bc4da20c3a42, 0xbfe38dba3954bcfe, - 0x3ff490af510a2932, 0xbfd921e996b7def8, - 0x3fdf587641ba18b8, 0x3fdd260ff99466a0, - 0xbfdc6971eeeadc09, 0xbfc287537103fc6c, - 0xbfd02ee622a79786, 0xbf8a128152944c60, - 0x3fd85c7cbc2a45ec, 0xbfdc5d335ff9e17c, - 0x3fd1317cadf5b62f, 0xbfe0aec488eb4a12, - 0x3ff06756bdd3dca6, 0xbf905ed0633d4b50, - 0x3fe38c00b322a8d6, 0xbfd4aeaae88f10d0, - 0xbfeb622638bd108a, 0xbfce786988191396, - 0xbfe17628dff397de, 0xbff49c9bb7bede49, - 0x3fecbf24a672c6e4, 0xbff103a04d0fe9e8, - 0xbff2447662b1c213, 0xbfe1f2a4e59aeb16, - 0xbfd70829f35b42fe, 0x3fc9474379b45764, - 0x3fca4105380ca075, 0xbfbdd3d38b810270, - 0x3ffc1339a5851492, 0x3fd01779943ace9e, - 0xbfb6f17f32c42308, 0x3fc5e3ce06e4568f, - 0x3fd4086dbe2e08a3, 0xbfe9c291516ea8c6, - 0xbfd85bbfe16806c6, 0x3ffbafcd089d52b5, - 0xbfebf36b3edadc2a, 0x3fe0a1642fa4f374, - 0x3fe1894a3335b3fc, 0xbfedc061927a8849, - 0x3fa64f51f3c32c40, 0x3fdcd6e5f6d32a42, - 0xbffc149cc1de094a, 0x3fd7c4bebb090d1f, - 0x3f9a03a530ea8dc4, 0xbfa08becbb47521c, - 0xbfcd092e4f6db926, 0x3fd21756954ae3e3, - 0xbff05c4b7e915d22, 0x3fdb97e7b3cafb01, - 0xbfedc4f30036d4de, 0xbfe43707a2072c9c, - 0x3faf65601d7885c8, 0xbff6814c43ce50e6, - 0xbfd1e63b4a08e471, 0x3fe5043f2ae436cc, - 0xbfe0b8541dd07d26, 0xbfe7c24aae5957fd, - 0x3fe1a45a9579b3cd, 0xbfec6f14ea1f2276, - 0x3fe116be552bab58, 0x3fa5b1bb27bd2e18, - 0xbfd164bffd7e467b, 0xbfe02076b0e85c5a, - 0x3fe40df1750c83d9, 0xbff57002dcc25792, - 0xbffd66967ef288f6, 0x3fdfe98063bfaf90, - 0x3fd6a9ee427a5c34, 0x3fc60fc5a6df42c7, - 0xbfc9b4fe49bca8e5, 0x3fc17ca95ace9857, - 0xbfe0da939f1c7f35, 0xbfdcf2f70335ebba, - 0x3ff262bcaf44df13, 0xbfd91d052b8a2e2b, - 0x3fba82853f62b4a4, 0xbfeeb3da8c0b31ca, - 0x3fe2f7f24c0685f5, 0xbff4ce72a0fbeb03, - 0xbfef6cc78a68ce6a, 0x3fbbb01f198ab9cc, - 0xbfbe9c057dfc2b64, 0xbfa1bf76b350b00c, - 0x3fc5870671b87400, 0xbff417cdd0d45e38, - 0x3ff2fbae791674f8, 0x3ff10709d00e307a, - 0xbff66fb9dfade9d0, 0x3fe9afa2b47907e4, - 0x3fc3bdefd041e34a, 0xbfda5f45afb94108, - 0x3fc18c0d250748a8, 0x3fd8b8b16a61412d, - 0xbfa9a203a1c7f9da, 0x406661091e0bde98, - 0x3fe580472ee9fefd, 0xbfe00e29d53bcc86, - 0xbfe0e751c795f3a0, 0xbfe3cdd9be73bd12, - 0x3fe75b7c2b246896, 0x3fea0cc81f27cdc0, - 0xbfef66938554e531, 0x3fba5ab149ea0668, - 0x3fd36ff369aa95ca, 0x3fe982f78b215a86, - 0xbf9e029a05b71950, 0xbfcaff7a82066afa, - 0xbfb007b28b8029ec, 0x3fd1cfbbffdff410, - 0xbfc82384392bc052, 0x3fb8f576ee8b5268, - 0x4000f84e2cb79d69, 0xbfdf137ccd6a5563, - 0x3fc4a2b042b25618, 0x3ffa7bf8d2218188, - 0xbfe55c572d5437ed, 0xbfbdbdc63826fe5c, - 0x3fd58c33805e128e, 0xbfca1687c3f00cec, - 0xbff0a9efe61af907, 0xbfcb9347fad85090, - 0x3fd253201a030bce, 0xbfca8724e3678e0d, - 0xbfa44a5bdc204301, 0x3ff856876ed4d54c, - 0x3fcd3e8ef422e1e9, 0x3fcf84cf7638799c, - 0xbfd47dfc68baf354, 0xbfd6037bb2f3e04c, - 0x3fe935d647a800b1, 0xbf90220eaa85a840, - 0x3fe42a16f44ce7ad, 0xbfe6ded7f0f973db, - 0x3fd1b24df355d27b, 0x3fea81dd6ed0ce12, - 0xbfe99b5e145aa7c3, 0x3fdfbbc1f2b9198f, - 0xbfdb113d7cf27126, 0xbfd951e7f7db4536, - 0xbfed05d6770358f2, 0xbfe130c19e506059, - 0xbfe33ae7fc783091, 0xbfec1386af95b68f, - 0xbfe4df048d731cbe, 0xbfe51699a4e6afa6, - 0xbfefa66d6e426c43, 0xbffec1fee3295580, - 0x3fb42063a7d70e24, 0xbfc3299ebbd4ffa2, - 0x3ffa1aebbe322de6, 0xbff3f1d51c145853, - 0x3feb236c87ce0a4b, 0xbff1161aa0bc21ef, - 0xbfc75e28f3acba60, 0x3fd4ed7b13348ddb, - 0x3ffc77482ef8c746, 0x3ff3f8ff6df6f4cc, - 0x3fe09d4e2f8c093a, 0xbfd3e2f9d060869d, - 0x3fdc59dd47731f2b, 0xbfe8564a31f8bc66, - 0x3ff16ec7b314045e, 0xbff8d3a3b9334ee4, - 0xbfdb4093fe0f9142, 0x3fb3d7e762f4abc4, - 0xbfd5fdaca2565c83, 0xbffd69e4263e1907, - 0xbfe36dc12d97c5b2, 0xbfb4fa776aa8ed08, - 0x3ff0ffb089020382, 0x3fef1b39dd139ffa, - 0x3fa817009c212264, 0xbfb2d919b56c6cd6, - 0xbff1f4dde7ebaefb, 0x3ff6433bc49a8e04, - 0x3fd663eafa94bd96, 0xbff501e67a24771f, - 0x3fd27164c528f5ed, 0x3ff973475ddf531f, - 0xbfda56648b1fd0f6, 0x3fdd77f2ba60d5d2, - 0xbff4f30ccd7e9bb9, 0x3ff668b141ef2311, - 0xbfe11e6ab2e52072, 0x3fff76ce00c63087, - 0xbfd2e2e4bd1804b8, 0x3f9b512ffe5fb810, - 0xbff507e071a4d878, 0x3fc8c94e1b07e570, - 0x3fe33131889a74f0, 0xbff327fa514b359a, - 0xbfadc564c2685106, 0xbfb29d587e3109c0, - 0x3fda076703e23c5d, 0x3ff631296000b8fb, - 0xbfe2269038e5dd60, 0xbfdb2013bbe679b6, - 0xbfe1c7615c10140b, 0xbfc9e9b7239132df, - 0x3fdfe550eb249ac1, 0xbfed79a99cfdbd74, - 0xbfd5682316cc9b0e, 0xbff1d1c57ce9fe94, - 0x3fe178418b0d661d, 0x3ff62b36d7c66238, - 0x3fe7bc7ed88d819b, 0x3fb89f807992bb54, - 0x3fd5b434b8e42ab8, 0x3ff0946929057113, - 0xbfed75b1ba8ed3e2, 0xbfc69447c8191c50, - 0xbfb7d6617bca3d10, 0xbfad48c10fc5be70, - 0xbfdb85882325449b, 0xbff801cbe79bb7b6, - 0x3fd1b8135a598058, 0x3fdd9703f3439350, - 0x3ffbb276927f5c8a, 0xbfe07fc3eab9f756, - 0xbfc3823e39686e41, 0x3ff752fdc523ec66 + 0xbfb8e29ab4bc2fa4, 0x0, + 0xbfc199602539f3b8, 0xbfed0f7370e4a318, + 0xbfe75925b74494fe, 0x3fd961ca943ef88e, + 0x3fe030f26390b3c8, 0xbfea179f712598e3, + 0xbfeddc2b4a40932b, 0x3fe919c475784085, + 0xbfaa42e84179d800, 0x3fd5b89c458ae4c4, + 0xbfdbd015c77a3f49, 0xbff0d6788f088b56, + 0x3ff39c753ec521f7, 0xbfe2e4010ff81afb, + 0xbfe1561f88dafa7b, 0x3fe3f869ae791f22, + 0xbff447b0fbbb8302, 0xbfaf546edcbe214e, + 0xbfec3a1529f14598, 0x3fdd0ddf1d59c2bd, + 0xbfd47491f5117130, 0xbfd2cfb8244de86a, + 0xbfb7cd244d000514, 0x3fc2123919f18895, + 0xbfb83f3c57110958, 0x3fea5d1d9d6e2562, + 0xc0015d20162817e6, 0xbff68dd41116009b, + 0xbfc45053709c6404, 0xbfdc0542cae05426, + 0xbfcbaaf2b1623f6b, 0xbfc04b5c5a9fe49c, + 0xbff733a1d52016bb, 0x3ffb12d2ed0bf302, + 0x3fd5a9301acf13c2, 0xbfa3af4c5e27bed8, + 0x3fe03d6fe0daa822, 0xbfe5888405a43564, + 0x3fe458af435e5b48, 0x3fb0a7095893a110, + 0x3fc19ffec8b34950, 0xbfdf139dc2644120, + 0xbfb9c4292582371c, 0x3fcafd0a49e1a3c8, + 0xbfe363fb5aeaf0ea, 0xbfc94d33257f7ca0, + 0xbfd56a49d448467c, 0x3fd206c7fc34a854, + 0x3fef31f3901d963e, 0x3fed039e4e5f4be4, + 0x3fdd95b30d9a81e8, 0xbf96ebee138e5e50, + 0xbfe8c9c9ce1713d8, 0x3f6bbd395fd37800, + 0x3fe3d55155486b3c, 0xbff4b24c22aff828, + 0xbfed9a0c5242f962, 0x3fd85b2b6175afea, + 0xbfd0a110f60b1e3d, 0x3ff590fb8c8388ba, + 0x3feeab5cc2559888, 0xbff41dd3b9235c6c, + 0xbfe2ed8d20f72be0, 0x3fdc0540a88f7169, + 0xbfd7ac2047dcf95c, 0x3fec5d6ff5571739, + 0x3ff7b33c65841854, 0x3fc88c5cb07c1899, + 0xbfe6b3bef1dca818, 0xbfe707441e462407, + 0xbfcc82b50d3e954b, 0x3fb0aa8ac72de558, + 0x3ff1af5911da8145, 0xbfc0188fc6d7ff6f, + 0x3fcc27570b095c0b, 0x3fc8afa99fbff856, + 0xbff385982e87f7b2, 0x3fdcdd16ff0efa4c, + 0x3fcabd8bf756a15c, 0xbfe68c7fb1e25b38, + 0xbfb374d66b90e3b8, 0x3fb6311c76755278, + 0x3ffd19b6bcdbdaf6, 0xbfe1cf53f73654bc, + 0x3ffef19eb0b8a926, 0xbfdaf23d231a0687, + 0xbfc97de42e17c349, 0xbfdfc9999416cc69, + 0x3ff215fa9dc0cbf0, 0x3ff74d1250d9bd6c, + 0xbff0d3e2dd289047, 0x3fe0c68fd1a2c769, + 0x3fd78a47a44f6ed0, 0xbfe220fdb85c6c29, + 0x3ff30557d129c58f, 0x3ff5336b64aaa52b, + 0x3fdd1bc2797198f1, 0x3fe3c9865d5f2c6e, + 0xbfe142a64381bcb3, 0x3ff62cce8adb5aa5, + 0xbfb687ecbddd6bac, 0x3f53a7c08893b800, + 0xbfecd18205210481, 0xbff24c2ef909d3d1, + 0xbff004c9c0fc6af2, 0x3fe0ff7ad9c831d8, + 0xbfc2fbe64cfe3458, 0x3fa38ff82d765040, + 0x400006869fb6a966, 0x3fdcee65076f9bac, + 0x3fdcd9b0de2fc75a, 0xbff7bae905df4c11, + 0x3fc6b9729f39f08e, 0x3fb7989e6defdce2, + 0xbfc34d9e868bde4b, 0xbff7a8492474859c, + 0xbfc8b6bdc6b94736, 0xbfef918be518846b, + 0x3fd2f9f8aa50f040, 0xbfe3ec5f14a7309a, + 0xbfd5340c7e04bad9, 0x3fc5caabbb9dabd6, + 0x3fca166b07e118be, 0xbfe1532ac7f7dc42, + 0xbfe902635185b91f, 0xbff4479fff4ac05c, + 0xbfcd2150937de3b8, 0xc066647a10be550a, + 0x3f9a68d5465f85c0, 0x3ffd445c4ff69e18, + 0x3f9dd04c605d6170, 0xc00185f0706bc100, + 0x3fdce9375692f4d9, 0x3fda00c7edc128f6, + 0x3fdb9e2cc79a4414, 0x3fe68af6c229c0ae, + 0x3fe0136521a64dc7, 0x3fc1079128bd9a0a, + 0x3fb1d864b52bfdfc, 0x3fdbc0f47a4e7dd0, + 0xbfe1de24e8ed9f54, 0x3ffb513a2f8d5698, + 0x3fe2f51e06480ba6, 0xbfe4ae75cb172736, + 0x3fefcb57daf73e5e, 0x3ff31541a5bd67d0, + 0x3ff1ffb848ec9bf8, 0xbff7edcc62819eda, + 0xbfc0b0e4e8ec23ae, 0xbff8df32b671ad1f, + 0x3fe70d3f4b771362, 0xbfe2cdac8fe9044d, + 0x3fc9f565812c1594, 0x3fe3e43880bf759e, + 0xbfe9ca7c2085c91e, 0x3fe038a397183b0d, + 0x3fa12ae79ddd4878, 0xbfe12c70d3af6254, + 0x3fd8ace33fc428c1, 0xbfbc89e2b728a940, + 0xbfc90d7b7234e3e0, 0xbfad8dea8d03202c, + 0xbfd72be59cc45f48, 0xbfd7eacb13179f74, + 0x3fef77d9b51a91ef, 0xbfe28a63ebd68d0a, + 0xbfe612e7cad26e3e, 0xbfe191f664eb3dc5, + 0x3ff8cbf43793d089, 0x3fe032987fadd268, + 0x3fee53223169d2c6, 0xbfe8829d7033ae07, + 0x40020ad06679614c, 0xc000187f26917a4d, + 0xbff81ea0a30f0188, 0x3fd1ed869e49ca1a, + 0xbfebc7ec603720e7, 0x3fd4e22d6ff4cd52, + 0xbfe0a72e424135d2, 0x3fe9e4529022d473, + 0x3fe45828db0438f4, 0x4002b518e46153aa, + 0x3fc8597f12bc5b70, 0x3ff44b75c81dc76f, + 0xbff58dc5dde8f75d, 0x3ffab564c39042d8, + 0x3ff41d953f8eacdc, 0x3fd08ee55f669e84, + 0xbfed3471618e6345, 0xbfe9c02a5661a5c8, + 0xbfd61094011465ab, 0x3ff659e37e2c2a8b, + 0xbff0e392a89565f2, 0xbffd8a4d08037dd4, + 0xbfc2d0cb72b120d0, 0xbfec3d998b0495b6, + 0xbfe20ccaa9269928, 0xbfe2a6afa6d2886c, + 0xbfa7d3fa2966dfa0, 0xbfd0d9a9ce70e4ce, + 0xbfe2633ed2f4d3c5, 0x3fdc64409ee3b31a, + 0xbfd4cab04ecb19ec, 0x3fd9eb7ba3800e94, + 0x3fd25407d8329b9d, 0x3fecdec4372100be, + 0xbfeca0e866316172, 0xbfde2cb9c3390c6b, + 0x3fe3b356945e03d6, 0x3fd6bfd1503b251d, + 0x3fd961362cf9ab92, 0xbfc56e84c2ac212c, + 0xbff67e7f18beea15, 0x3fddd3a08e30e8b5, + 0x3ff8b44af475802c, 0xbff6e4d1869a505e, + 0xbfbd1e6e36ce6708, 0xbf9313a878e7c7a0, + 0xbfe200ea5f733a58, 0x3fe4a008983ac139, + 0xbfb58fdc14d8a9fc, 0x3ff06ab4f8b9b7d5, + 0xbf9c3e81281b1550, 0xbfd019ba8bd9e40f, + 0xbfead803c61ac83f, 0x3fb1a503371dd5da, + 0xbfe157d34b966666, 0x3fb75be3562c07a0, + 0x3fe41080ecc8226f, 0x3feac0c43791dade, + 0xbfc0a0ceabd7a4d2, 0x3fc6d0857bf3f0e4, + 0x3fd13f89dfc92e7a, 0x3f879e4c7fa370d8, + 0x3fecf35f27fa19e0, 0xbff478d87e1b838b, + 0xbfdcc936e7b1b20c, 0x3fe2d46b53f6f7ec, + 0x3ffa636695699955, 0xbfee3ed18f79c25a, + 0xbfdfd5d0691eddca, 0x3ff4756e760e951f, + 0x3fe1de57b53197dd, 0x3fe0d08105339c41, + 0xbfd6e9cc3d1b1660, 0xbfcd3c75aa99fdb7, + 0xbfe7ead5ed7d723a, 0x3fe524761b8818a6, + 0xbff470c2c81d1efe, 0x3fe1fbba3906d046, + 0x3ff496787be022c9, 0x400563aeebce2ddc, + 0xbfe793590556a5b4, 0xbfe747a0d4fba492, + 0x3fdda0fb7e245fd7, 0xbfdef4fe5e5f49c0, + 0xc002da8a3f632ade, 0xbf69e180a667fb80, + 0xbfee550e32cacddb, 0xbfd3bdefb6eecb20, + 0x3fd3bf4fb70ddf41, 0xbfc76d79d7a70398, + 0xbfcac5b88fe1cdac, 0x3fd4f2d7dfec6b3e, + 0x3fb38cde770db3aa, 0xbfaeb6fdd59b6fee, + 0xbfea31cf9fd4e7ce, 0xbfe3a3e1de23e551, + 0x3fe81d826b984516, 0xbfe080e4ca4fc526, + 0x3ffa544bce815cc4, 0x3fcf7502baccdb1c, + 0xbfc640b864b108c2, 0x3ff65f4353619584, + 0xbff7843aaeda50aa, 0x3fe3f78f713f7558, + 0xbfd461372209693d, 0x3fbd7966b8797668, + 0xbfb983d387dc1e48, 0xbfe88fd92bd10c1e, + 0xbfd6c878e207393c, 0x3fdd13ec9d8e9387, + 0x3fc1009e4fb8308c, 0x3fe68b993f7c60ec, + 0x3fe319b17b9d51a9, 0xbfc3bd91260634e7, + 0x3fec9e2ec46ad5f4, 0x3fb0ac9be34b94e6, + 0xbff11955096a4ad6, 0x3fe379cf726ce0da, + 0x3fc83ff89546eb13, 0xbfb4ecdb3babab3c, + 0x3fe64ceebec11ce6, 0x3ff148dbfd188d5c, + 0xbfdca66dba3702ea, 0x3feb032611c67ec9, + 0xbfef2f70d47ccaf6, 0x3fe4bf489db1b70e, + 0xbfe03b1d306dafa4, 0xbffdbedbdc0c5794, + 0xbfce77da4472e9ee, 0xbfd5bc0202be57dc, + 0x3fd113f3643b6021, 0xbfc7eebe982e3a06, + 0xbfe001fa224a554d, 0xbffb5f8ba848895e, + 0x3ff18eb244fc0ee4, 0xbfdaad2c7146074d, + 0x3fddb1bba31a1571, 0x3fa470524037a694, + 0xbff5a2cfddafd5bb, 0x3ff6e70a9d724553, + 0xbff1511745685e06, 0xbfe3e3095ddf0eca, + 0xbfebf2c7296ca758, 0x3fea6f9075313de8, + 0x3fdfc1c93d7bb588, 0x3ff33d22e7850ef1, + 0x3fdb270b7ad6b27c, 0xbff630f2786eb327, + 0x3ff1feff646e75dd, 0x3ff8a85e1c15ed33, + 0x3fe67e26a5c09434, 0x3ff42db91c671c4d, + 0x3fc80bbdc129c610, 0xbfb799454e7e3058, + 0xbfe8eda21f5920a0, 0xbfb11331cfb732d0, + 0x3ff9e24f6e053306, 0x3fce1de6eaf08070, + 0xbfe56f03d5f11148, 0xbff76a6d2928f315, + 0xbfe280b52ba6784e, 0x3fb0efafec94c18a, + 0xbfe3e845412c61c8, 0xbfd168cbfaaa4139, + 0xbf78c7b592de9200, 0xbff98222afe6b93d, + 0x3fb20c620db4c854, 0x3fc10d09ba033f8c, + 0xbfe2ae038a49ad19, 0xbfbb3fae02dd2288, + 0x3fe9be0768219901, 0xbfb4fc0420af8ed0, + 0x3fe4a97d9c8a68be, 0xbfc92cd7c3e8bb04, + 0xbff750182d545cee, 0x3fd4d4a021b59b85, + 0xbfd2b8ad8e03edd2, 0x3fcb59898983fc66, + 0x3fdfd118d3bdbea6, 0xbfe48719ab180a2a, + 0xbfe0cb92b266552d, 0x3ff50aa60b228a76, + 0xbff37d2cbefe735e, 0xbfea218c34a05218, + 0x3fed1df1dedee9bc, 0xbff25996cf069cd0, + 0x3fe589a8e1093dbb, 0xbfcdfd73e59b3603, + 0xbfd7363244f60e7c, 0x3fcea365df4ba758, + 0xbff43a719819a1a6, 0x3fdaf2ec1b1a3ecc, + 0xbfe3e621fb28bcaa, 0x3fe154c7009f4f35, + 0xbfb6aa23788e6360, 0x3ffc14ec991e4231, + 0xbfe2515a817e28bd, 0x3ffccec251125a7f, + 0xbfe479198cbd2c89, 0x3fe4ac4c8934b2bb, + 0x4000bab9f661117a, 0x3ff05a1a11a9ec7c, + 0x3fec2b346bbbab72, 0xbff3edc6c9e4e44a, + 0x3ff2114287dece60, 0x3fe48d4b5c509d56, + 0x3fe782ba0a5d171f, 0x3fc5cb0a96713ef8, + 0x3fe7e80364052cfa, 0x3fb64ffd0ddb0848, + 0xbfd7989e6d379442, 0xbfe861ca44519e80, + 0xbff063d592874419, 0xbfc121ae72229194, + 0x3fc427338bce291a, 0xbff2cc35108290be, + 0xbfd2232534f5957c, 0xbfe9379e6aa990a2, + 0x3feaa7784101ed92, 0xbfc5eaaf5c9f560a, + 0x3fe3a857e44957c8, 0xbfc3fb53eb87b00a, + 0x3fad9c1ca37bcc5e, 0xbfebc878ae7e9eda, + 0xbfe51b9cb0a24da2, 0xbfc97553764de91d, + 0xc0010d52412937e3, 0x3fa03946e2cadd20, + 0xbfea878c85da472a, 0x3fe0598af9d6e0ff, + 0x3fa2fbdcc60e7e6a, 0x400247aab465607b, + 0xbff366fe167bb5a7, 0x3fcc21244f285200, + 0x3fe42c407ee33963, 0xbff7328b9611d503, + 0xbfef9eb841d878f8, 0xbfc0879a65cdafdc, + 0xbfe32bebf51e9c26, 0x3fd4b67c7c8cc7ae, + 0xbfecc866514e956a, 0xbfb3d99766cab474, + 0x3fdc3c1a9023252c, 0xbfcee8563e743bfc, + 0x3fb2be011c662f92, 0xbfcba270842843a0, + 0xbfd5747a3432f9c9, 0xbff6f76aa7ac42df, + 0xbff351d8520faf57, 0x3fe4335789026d21, + 0xbfd449d258e91f5d, 0x3ff7158684ed3379, + 0xbfe0318248f7d8b2, 0x3fe7a59815326544, + 0x3fe5d874daa3b70f, 0x3fd999f708635f02, + 0xbfd9bbcc616883e0, 0x3ff13bc236d3a81a, + 0xbfe3fbb5312dc4ec, 0xbfdd9f3b2b71f07e, + 0x3f9ce395a776a000, 0xbfd223eb467fc37e, + 0x3fdbce4c9bb53d24, 0x3ff04087d482b112, + 0xbfa3c84515c611c0, 0x3fcff8d0054c2a76, + 0xbfe3c4f95aad0198, 0xbffca39649171000, + 0xbfe6638ba06e5fdf, 0x3fcafa530d5fbb82, + 0xbf936e775260ebc0, 0x3fbc44ff9d1d7586, + 0x3ff67bf9ad2bcee7, 0x3fba09302c678ce0, + 0xbf938e40f826cac0, 0x3ff47fa00e0ba7e4, + 0xbfbdd9ab17e43ed0, 0xbfe034b456ed435e, + 0x3fa1e5fe31940430, 0xbf93ba64b862a760, + 0x3ff7a903f86d4383, 0xbfdf1c932ee1e027, + 0xbfd55279fbf9d83e, 0x3fd7c81932aa438f, + 0x3fe0f4d76a620e31, 0x3fd1c2143c714ee8, + 0x3fd7fc73e2d236d4, 0xbfdeb29cb04b61b0, + 0xbffe910abc38cb8d, 0xbf9b7957a2f5d130, + 0x3fb22909bd202954, 0xbff465096b3a60a8, + 0xbff4138e6a50a5ae, 0x3fe20dece27c78b6, + 0x3fda0251a95eff9f, 0xbf89426375cf4690, + 0xbff5272c5d8fa1b7, 0xbff5f90c8f536fd3, + 0x3fdf9fa5a7136b87, 0xbfdfd4182f280772, + 0x3fec0cd17a864d7b, 0x3feb2334ffa596cb, + 0xbfce2d2b770b75ea, 0xbfd4cab0ea2226ed, + 0xbfe84370cc6c68a6, 0x3fc34cfd6f203974, + 0x3fd74407bc7c6a4a, 0x3fc5ce9e40e77e53, + 0x3ff1bfe8f988ea7c, 0xbfd4484058bcdfdd, + 0xbff9fb56116bf0cb, 0x3ff0063b71bb2c97, + 0x3fde962c044d8f2a, 0x3ffb3851c24ed1c1, + 0x3fb39202f883895c, 0xbfe42910ce030f59, + 0xbfd21795662e59fb, 0x3fdae8b3a852ef6d, + 0xbfd4adc27fd5b780, 0x3ff1e926744a8f72, + 0xbfb53aa28ef85848, 0x3fd1ac0521d0c8db, + 0x3fe3fa31c522384e, 0xbffa5ae52a6333f8, + 0x3ff0f3ab0220f420, 0x3fe947d381454338, + 0xbfde1b4410139129, 0x3ff815cf8b8f63fd, + 0x3fc46bb608f19bc2, 0x3fccda670e23e70b, + 0x3fdaa2715811bec8, 0x3ff0a3d5e3a4a1c4, + 0xbfe59d14adef7245, 0xbff6c9bfb09db078, + 0x3fcffd446d2d4832, 0xbfd3a683da0aa622, + 0x3fdd5ed05709ca79, 0x3fe04c2ab7af94bc, + 0x3fe0cd4b8476c7cc, 0x0, + 0x3fdd5ed05709ca74, 0xbfe04c2ab7af94b8, + 0x3fcffd446d2d482f, 0x3fd3a683da0aa626, + 0xbfe59d14adef7246, 0x3ff6c9bfb09db078, + 0x3fdaa2715811bec6, 0xbff0a3d5e3a4a1c2, + 0x3fc46bb608f19bc0, 0xbfccda670e23e708, + 0xbfde1b4410139123, 0xbff815cf8b8f63fc, + 0x3ff0f3ab0220f421, 0xbfe947d381454335, + 0x3fe3fa31c522384d, 0x3ffa5ae52a6333f9, + 0xbfb53aa28ef85860, 0xbfd1ac0521d0c8de, + 0xbfd4adc27fd5b780, 0xbff1e926744a8f73, + 0xbfd21795662e59fe, 0xbfdae8b3a852ef72, + 0x3fb39202f8838958, 0x3fe42910ce030f5c, + 0x3fde962c044d8f2c, 0xbffb3851c24ed1c1, + 0xbff9fb56116bf0ca, 0xbff0063b71bb2c97, + 0x3ff1bfe8f988ea7c, 0x3fd4484058bcdfdc, + 0x3fd74407bc7c6a48, 0xbfc5ce9e40e77e52, + 0xbfe84370cc6c68a6, 0xbfc34cfd6f20397c, + 0xbfce2d2b770b75e7, 0x3fd4cab0ea2226ef, + 0x3fec0cd17a864d7c, 0xbfeb2334ffa596ca, + 0x3fdf9fa5a7136b88, 0x3fdfd4182f280770, + 0xbff5272c5d8fa1b6, 0x3ff5f90c8f536fd2, + 0x3fda0251a95effa5, 0x3f89426375cf4600, + 0xbff4138e6a50a5ad, 0xbfe20dece27c78b5, + 0x3fb22909bd202958, 0x3ff465096b3a60a8, + 0xbffe910abc38cb8d, 0x3f9b7957a2f5d140, + 0x3fd7fc73e2d236d2, 0x3fdeb29cb04b61ad, + 0x3fe0f4d76a620e2e, 0xbfd1c2143c714eea, + 0xbfd55279fbf9d83c, 0xbfd7c81932aa4394, + 0x3ff7a903f86d4383, 0x3fdf1c932ee1e028, + 0x3fa1e5fe31940438, 0x3f93ba64b862a7a0, + 0xbfbdd9ab17e43ee0, 0x3fe034b456ed4360, + 0xbf938e40f826cab0, 0xbff47fa00e0ba7e4, + 0x3ff67bf9ad2bcee7, 0xbfba09302c678cf8, + 0xbf936e775260eb60, 0xbfbc44ff9d1d7582, + 0xbfe6638ba06e5fdc, 0xbfcafa530d5fbb8c, + 0xbfe3c4f95aad0196, 0x3ffca39649170ffe, + 0xbfa3c84515c611c0, 0xbfcff8d0054c2a71, + 0x3fdbce4c9bb53d22, 0xbff04087d482b111, + 0x3f9ce395a7769fa0, 0x3fd223eb467fc37a, + 0xbfe3fbb5312dc4ec, 0x3fdd9f3b2b71f080, + 0xbfd9bbcc616883e6, 0xbff13bc236d3a818, + 0x3fe5d874daa3b70d, 0xbfd999f708635f01, + 0xbfe0318248f7d8b3, 0xbfe7a59815326544, + 0xbfd449d258e91f60, 0xbff7158684ed3379, + 0xbff351d8520faf56, 0xbfe4335789026d1f, + 0xbfd5747a3432f9c5, 0x3ff6f76aa7ac42e0, + 0x3fb2be011c662f88, 0x3fcba270842843a8, + 0x3fdc3c1a9023252b, 0x3fcee8563e743c00, + 0xbfecc866514e956c, 0x3fb3d99766cab480, + 0xbfe32bebf51e9c25, 0xbfd4b67c7c8cc7ac, + 0xbfef9eb841d878f6, 0x3fc0879a65cdafdc, + 0x3fe42c407ee33963, 0x3ff7328b9611d503, + 0xbff366fe167bb5a6, 0xbfcc21244f285200, + 0x3fa2fbdcc60e7e70, 0xc00247aab465607b, + 0xbfea878c85da4722, 0xbfe0598af9d6e0ff, + 0xc0010d52412937e3, 0xbfa03946e2cadd40, + 0xbfe51b9cb0a24da0, 0x3fc97553764de91b, + 0x3fad9c1ca37bcc44, 0x3febc878ae7e9edc, + 0x3fe3a857e44957ca, 0x3fc3fb53eb87b004, + 0x3feaa7784101ed94, 0x3fc5eaaf5c9f560a, + 0xbfd2232534f5957b, 0x3fe9379e6aa990a2, + 0x3fc427338bce2926, 0x3ff2cc35108290bf, + 0xbff063d592874418, 0x3fc121ae72229190, + 0xbfd7989e6d379442, 0x3fe861ca44519e80, + 0x3fe7e80364052cfa, 0xbfb64ffd0ddb0860, + 0x3fe782ba0a5d1720, 0xbfc5cb0a96713ef8, + 0x3ff2114287dece62, 0xbfe48d4b5c509d57, + 0x3fec2b346bbbab70, 0x3ff3edc6c9e4e44b, + 0x4000bab9f6611179, 0xbff05a1a11a9ec7e, + 0xbfe479198cbd2c8c, 0xbfe4ac4c8934b2ba, + 0xbfe2515a817e28be, 0xbffccec251125a7e, + 0xbfb6aa23788e6364, 0xbffc14ec991e4231, + 0xbfe3e621fb28bcaa, 0xbfe154c7009f4f39, + 0xbff43a719819a1a6, 0xbfdaf2ec1b1a3ec0, + 0xbfd7363244f60e79, 0xbfcea365df4ba758, + 0x3fe589a8e1093dbc, 0x3fcdfd73e59b360f, + 0x3fed1df1dedee9bf, 0x3ff25996cf069ccf, + 0xbff37d2cbefe735f, 0x3fea218c34a05217, + 0xbfe0cb92b266552e, 0xbff50aa60b228a75, + 0x3fdfd118d3bdbea7, 0x3fe48719ab180a2a, + 0xbfd2b8ad8e03edcf, 0xbfcb59898983fc61, + 0xbff750182d545cf0, 0xbfd4d4a021b59b88, + 0x3fe4a97d9c8a68bf, 0x3fc92cd7c3e8bb05, + 0x3fe9be0768219904, 0x3fb4fc0420af8ed8, + 0xbfe2ae038a49ad1a, 0x3fbb3fae02dd227e, + 0x3fb20c620db4c84c, 0xbfc10d09ba033f80, + 0xbf78c7b592de9300, 0x3ff98222afe6b93f, + 0xbfe3e845412c61c8, 0x3fd168cbfaaa413a, + 0xbfe280b52ba67851, 0xbfb0efafec94c190, + 0xbfe56f03d5f11146, 0x3ff76a6d2928f316, + 0x3ff9e24f6e053308, 0xbfce1de6eaf08078, + 0xbfe8eda21f59209f, 0x3fb11331cfb732c0, + 0x3fc80bbdc129c618, 0x3fb799454e7e3038, + 0x3fe67e26a5c09434, 0xbff42db91c671c4d, + 0x3ff1feff646e75de, 0xbff8a85e1c15ed34, + 0x3fdb270b7ad6b27d, 0x3ff630f2786eb327, + 0x3fdfc1c93d7bb58a, 0xbff33d22e7850ef0, + 0xbfebf2c7296ca758, 0xbfea6f9075313dea, + 0xbff1511745685e08, 0x3fe3e3095ddf0ec8, + 0xbff5a2cfddafd5bb, 0xbff6e70a9d724552, + 0x3fddb1bba31a156e, 0xbfa470524037a678, + 0x3ff18eb244fc0ee4, 0x3fdaad2c71460752, + 0xbfe001fa224a554c, 0x3ffb5f8ba848895d, + 0x3fd113f3643b6023, 0x3fc7eebe982e3a06, + 0xbfce77da4472e9e6, 0x3fd5bc0202be57db, + 0xbfe03b1d306dafa3, 0x3ffdbedbdc0c5796, + 0xbfef2f70d47ccaf7, 0xbfe4bf489db1b710, + 0xbfdca66dba3702ec, 0xbfeb032611c67ecd, + 0x3fe64ceebec11ce5, 0xbff148dbfd188d5c, + 0x3fc83ff89546eb10, 0x3fb4ecdb3babab38, + 0xbff11955096a4ad6, 0xbfe379cf726ce0dc, + 0x3fec9e2ec46ad5f4, 0xbfb0ac9be34b94e9, + 0x3fe319b17b9d51a9, 0x3fc3bd91260634e6, + 0x3fc1009e4fb83088, 0xbfe68b993f7c60ed, + 0xbfd6c878e207393a, 0xbfdd13ec9d8e9389, + 0xbfb983d387dc1e3e, 0x3fe88fd92bd10c1d, + 0xbfd461372209693a, 0xbfbd7966b879765b, + 0xbff7843aaeda50aa, 0xbfe3f78f713f7558, + 0xbfc640b864b108c1, 0xbff65f4353619583, + 0x3ffa544bce815cc3, 0xbfcf7502baccdb18, + 0x3fe81d826b984515, 0x3fe080e4ca4fc526, + 0xbfea31cf9fd4e7cf, 0x3fe3a3e1de23e551, + 0x3fb38cde770db3aa, 0x3faeb6fdd59b6ff4, + 0xbfcac5b88fe1cda8, 0xbfd4f2d7dfec6b3f, + 0x3fd3bf4fb70ddf44, 0x3fc76d79d7a70398, + 0xbfee550e32cacdde, 0x3fd3bdefb6eecb1c, + 0xc002da8a3f632adf, 0x3f69e180a667fc80, + 0x3fdda0fb7e245fd7, 0x3fdef4fe5e5f49c0, + 0xbfe793590556a5b2, 0x3fe747a0d4fba490, + 0x3ff496787be022c8, 0xc00563aeebce2ddc, + 0xbff470c2c81d1efe, 0xbfe1fbba3906d048, + 0xbfe7ead5ed7d7239, 0xbfe524761b8818a7, + 0xbfd6e9cc3d1b165e, 0x3fcd3c75aa99fdbc, + 0x3fe1de57b53197de, 0xbfe0d08105339c43, + 0xbfdfd5d0691eddc8, 0xbff4756e760e951f, + 0x3ffa636695699954, 0x3fee3ed18f79c259, + 0xbfdcc936e7b1b20d, 0xbfe2d46b53f6f7f0, + 0x3fecf35f27fa19e0, 0x3ff478d87e1b838a, + 0x3fd13f89dfc92e7b, 0xbf879e4c7fa370e0, + 0xbfc0a0ceabd7a4d2, 0xbfc6d0857bf3f0e6, + 0x3fe41080ecc82271, 0xbfeac0c43791dadc, + 0xbfe157d34b966667, 0xbfb75be3562c078c, + 0xbfead803c61ac83f, 0xbfb1a503371dd5ee, + 0xbf9c3e81281b1540, 0x3fd019ba8bd9e410, + 0xbfb58fdc14d8a9f8, 0xbff06ab4f8b9b7d5, + 0xbfe200ea5f733a5a, 0xbfe4a008983ac136, + 0xbfbd1e6e36ce670c, 0x3f9313a878e7c760, + 0x3ff8b44af475802c, 0x3ff6e4d1869a505c, + 0xbff67e7f18beea15, 0xbfddd3a08e30e8b4, + 0x3fd961362cf9ab8d, 0x3fc56e84c2ac2120, + 0x3fe3b356945e03d4, 0xbfd6bfd1503b251e, + 0xbfeca0e866316172, 0x3fde2cb9c3390c6b, + 0x3fd25407d8329b9a, 0xbfecdec4372100bb, + 0xbfd4cab04ecb19ef, 0xbfd9eb7ba3800e93, + 0xbfe2633ed2f4d3c8, 0xbfdc64409ee3b320, + 0xbfa7d3fa2966dfc0, 0x3fd0d9a9ce70e4d0, + 0xbfe20ccaa9269929, 0x3fe2a6afa6d2886e, + 0xbfc2d0cb72b120d0, 0x3fec3d998b0495b2, + 0xbff0e392a89565f2, 0x3ffd8a4d08037dd3, + 0xbfd61094011465aa, 0xbff659e37e2c2a8b, + 0xbfed3471618e6346, 0x3fe9c02a5661a5ca, + 0x3ff41d953f8eacdb, 0xbfd08ee55f669e84, + 0xbff58dc5dde8f75c, 0xbffab564c39042d8, + 0x3fc8597f12bc5b6a, 0xbff44b75c81dc76d, + 0x3fe45828db0438f3, 0xc002b518e46153a9, + 0xbfe0a72e424135d4, 0xbfe9e4529022d472, + 0xbfebc7ec603720e6, 0xbfd4e22d6ff4cd50, + 0xbff81ea0a30f0188, 0xbfd1ed869e49ca1b, + 0x40020ad06679614b, 0x4000187f26917a4c, + 0x3fee53223169d2c6, 0x3fe8829d7033ae07, + 0x3ff8cbf43793d08a, 0xbfe032987fadd267, + 0xbfe612e7cad26e3b, 0x3fe191f664eb3dc4, + 0x3fef77d9b51a91f0, 0x3fe28a63ebd68d0b, + 0xbfd72be59cc45f46, 0x3fd7eacb13179f71, + 0xbfc90d7b7234e3e0, 0x3fad8dea8d032028, + 0x3fd8ace33fc428c2, 0x3fbc89e2b728a944, + 0x3fa12ae79ddd4870, 0x3fe12c70d3af6256, + 0xbfe9ca7c2085c91c, 0xbfe038a397183b0c, + 0x3fc9f565812c15a0, 0xbfe3e43880bf759c, + 0x3fe70d3f4b771363, 0x3fe2cdac8fe9044b, + 0xbfc0b0e4e8ec23ad, 0x3ff8df32b671ad21, + 0x3ff1ffb848ec9bf6, 0x3ff7edcc62819ed9, + 0x3fefcb57daf73e5e, 0xbff31541a5bd67d0, + 0x3fe2f51e06480ba6, 0x3fe4ae75cb172736, + 0xbfe1de24e8ed9f53, 0xbffb513a2f8d5697, + 0x3fb1d864b52bfdf8, 0xbfdbc0f47a4e7dd2, + 0x3fe0136521a64dc6, 0xbfc1079128bd9a0c, + 0x3fdb9e2cc79a4414, 0xbfe68af6c229c0af, + 0x3fdce9375692f4da, 0xbfda00c7edc128f3, + 0x3f9dd04c605d6140, 0x400185f0706bc100, + 0x3f9a68d5465f85b0, 0xbffd445c4ff69e16, + 0xbfcd2150937de3b8, 0x4066647a10be550a, + 0xbfe902635185b922, 0x3ff4479fff4ac05c, + 0x3fca166b07e118c6, 0x3fe1532ac7f7dc40, + 0xbfd5340c7e04bada, 0xbfc5caabbb9dabd6, + 0x3fd2f9f8aa50f040, 0x3fe3ec5f14a7309a, + 0xbfc8b6bdc6b94732, 0x3fef918be518846c, + 0xbfc34d9e868bde54, 0x3ff7a8492474859d, + 0x3fc6b9729f39f08a, 0xbfb7989e6defdcda, + 0x3fdcd9b0de2fc75a, 0x3ff7bae905df4c12, + 0x400006869fb6a968, 0xbfdcee65076f9baa, + 0xbfc2fbe64cfe3460, 0xbfa38ff82d765080, + 0xbff004c9c0fc6af1, 0xbfe0ff7ad9c831d7, + 0xbfecd18205210481, 0x3ff24c2ef909d3d1, + 0xbfb687ecbddd6ba4, 0xbf53a7c08893ba40, + 0xbfe142a64381bcb2, 0xbff62cce8adb5aa6, + 0x3fdd1bc2797198ef, 0xbfe3c9865d5f2c6c, + 0x3ff30557d129c58f, 0xbff5336b64aaa52c, + 0x3fd78a47a44f6eca, 0x3fe220fdb85c6c29, + 0xbff0d3e2dd289048, 0xbfe0c68fd1a2c768, + 0x3ff215fa9dc0cbef, 0xbff74d1250d9bd6e, + 0xbfc97de42e17c34e, 0x3fdfc9999416cc67, + 0x3ffef19eb0b8a925, 0x3fdaf23d231a0687, + 0x3ffd19b6bcdbdaf4, 0x3fe1cf53f73654bc, + 0xbfb374d66b90e3d2, 0xbfb6311c7675528c, + 0x3fcabd8bf756a15a, 0x3fe68c7fb1e25b37, + 0xbff385982e87f7b2, 0xbfdcdd16ff0efa52, + 0x3fcc27570b095c04, 0xbfc8afa99fbff864, + 0x3ff1af5911da8146, 0x3fc0188fc6d7ff72, + 0xbfcc82b50d3e9556, 0xbfb0aa8ac72de558, + 0xbfe6b3bef1dca815, 0x3fe707441e462406, + 0x3ff7b33c65841855, 0xbfc88c5cb07c1893, + 0xbfd7ac2047dcf960, 0xbfec5d6ff557173c, + 0xbfe2ed8d20f72bdf, 0xbfdc0540a88f716b, + 0x3feeab5cc2559888, 0x3ff41dd3b9235c6e, + 0xbfd0a110f60b1e40, 0xbff590fb8c8388ba, + 0xbfed9a0c5242f95e, 0xbfd85b2b6175afe9, + 0x3fe3d55155486b3c, 0x3ff4b24c22aff828, + 0xbfe8c9c9ce1713d9, 0xbf6bbd395fd379c0, + 0x3fdd95b30d9a81e8, 0x3f96ebee138e5e60, + 0x3fef31f3901d963e, 0xbfed039e4e5f4be6, + 0xbfd56a49d448467b, 0xbfd206c7fc34a852, + 0xbfe363fb5aeaf0e8, 0x3fc94d33257f7c9a, + 0xbfb9c4292582371c, 0xbfcafd0a49e1a3cf, + 0x3fc19ffec8b34950, 0x3fdf139dc2644127, + 0x3fe458af435e5b4a, 0xbfb0a7095893a128, + 0x3fe03d6fe0daa821, 0x3fe5888405a43565, + 0x3fd5a9301acf13c1, 0x3fa3af4c5e27bee8, + 0xbff733a1d52016bb, 0xbffb12d2ed0bf302, + 0xbfcbaaf2b1623f6d, 0x3fc04b5c5a9fe49b, + 0xbfc45053709c640c, 0x3fdc0542cae05427, + 0xc0015d20162817e6, 0x3ff68dd41116009b, + 0xbfb83f3c57110948, 0xbfea5d1d9d6e2562, + 0xbfb7cd244d00051a, 0xbfc2123919f18894, + 0xbfd47491f5117131, 0x3fd2cfb8244de867, + 0xbfec3a1529f14598, 0xbfdd0ddf1d59c2be, + 0xbff447b0fbbb8302, 0x3faf546edcbe2172, + 0xbfe1561f88dafa7c, 0xbfe3f869ae791f24, + 0x3ff39c753ec521f6, 0x3fe2e4010ff81afc, + 0xbfdbd015c77a3f4b, 0x3ff0d6788f088b57, + 0xbfaa42e84179d800, 0xbfd5b89c458ae4c6, + 0xbfeddc2b4a40932a, 0xbfe919c475784088, + 0x3fe030f26390b3c7, 0x3fea179f712598e3, + 0xbfe75925b7449500, 0xbfd961ca943ef88e, + 0xbfc199602539f3b2, 0x3fed0f7370e4a318 }; static const uint64_t in_cfft_noisy_1024[2048] = { - 0xbf4d16b75e40129c, 0x0, - 0x3fe26a3c9634f4b3, 0x0, - 0x3fe6884a5c47b005, 0x0, - 0x3fdb07f6b37fd63d, 0x0, - 0x3fb52162c4a2cd04, 0x0, - 0xbfe2d398f05aa2f1, 0x0, - 0xbfe4f4a1f554c552, 0x0, - 0xbfdc3ee3e4778302, 0x0, - 0xbf7e4edd42318a66, 0x0, - 0x3fdf1e67639efa63, 0x0, - 0x3fe759ffce1770a5, 0x0, - 0x3fe0329345625139, 0x0, - 0xbf8c8ef86c402f93, 0x0, - 0xbfdced0dc2627fbc, 0x0, - 0xbfe7406c4489359c, 0x0, - 0xbfde1a3e90eadfc5, 0x0, - 0x3fa3c7aeaea8fc32, 0x0, - 0x3fdc19a5bfff2035, 0x0, - 0x3fe88035bfa61b9e, 0x0, - 0x3fdc4e989468da72, 0x0, - 0xbfa020119426f6cd, 0x0, - 0xbfdfb4e89fc1989c, 0x0, - 0xbfe824fcb85899e0, 0x0, - 0xbfda1a16736b9879, 0x0, - 0x3f8e2731286f881e, 0x0, - 0x3fdacbe2e20f1d4c, 0x0, - 0x3fe43c64fd3722cc, 0x0, - 0x3fe04eb307b335de, 0x0, - 0xbf800b4c61caf077, 0x0, - 0xbfe0419fba962089, 0x0, - 0xbfe8e9b7e7d1a9d1, 0x0, - 0xbfdf91d4606a5ce0, 0x0, - 0x3f95906c17afbc1a, 0x0, - 0x3fdfe400c1fe9581, 0x0, - 0x3fe50afd608033f2, 0x0, - 0x3fe2238861c2df9a, 0x0, - 0x3fb43328712b94d4, 0x0, - 0xbfe174a8971937a1, 0x0, - 0xbfe61211eeafadd0, 0x0, - 0xbfdf4a4953e9ac99, 0x0, - 0x3faa6daa13e5a374, 0x0, - 0x3fe1bc6460bca4c0, 0x0, - 0x3fe7535979f5f959, 0x0, - 0x3fdecd72181d9611, 0x0, - 0x3fb22ed36f968b1a, 0x0, - 0xbfe289ddf54d6aad, 0x0, - 0xbfe63738b6d97463, 0x0, - 0xbfdee18f340430ea, 0x0, - 0xbfa0bd1b432d6dda, 0x0, - 0x3fdf3ef0773b84cb, 0x0, - 0x3fe46168a3f64183, 0x0, - 0x3fdd184cabafbf57, 0x0, - 0xbf8f5f148b743174, 0x0, - 0xbfe2c6885cb530a1, 0x0, - 0xbfe6f862c543d19a, 0x0, - 0xbfddde5023b16133, 0x0, - 0x3f7dd7e58732765a, 0x0, - 0x3fe02a58a96b26b7, 0x0, - 0x3fe7a1d0a85ada0f, 0x0, - 0x3fdba813a70d1158, 0x0, - 0xbfa5ea6f9e07dfbc, 0x0, - 0xbfdf7d0d07b30d87, 0x0, - 0xbfe62cad66d8948d, 0x0, - 0xbfe051064ae243bb, 0x0, - 0xbfb048cca122404e, 0x0, - 0x3fe07bea4d67317e, 0x0, - 0x3fe56c2ce261117d, 0x0, - 0x3fdf155d565fa2a2, 0x0, - 0xbf9aae197039aa31, 0x0, - 0xbfe0fe65fac65303, 0x0, - 0xbfe524177f45b9e4, 0x0, - 0xbfddd4ffceabc5cf, 0x0, - 0xbf9f51ac3ce41a5d, 0x0, - 0x3fe21bc2a4cc9d5d, 0x0, - 0x3fe9131b4f697a29, 0x0, - 0x3fe19008d7f69301, 0x0, - 0xbf944f82210704dc, 0x0, - 0xbfe011b4119cd94b, 0x0, - 0xbfe7391caf21013d, 0x0, - 0xbfd7d95cc14a7685, 0x0, - 0x3fb399a16738b698, 0x0, - 0x3fe16f0cd6254e54, 0x0, - 0x3fe5feffbbf0b3e8, 0x0, - 0x3fdec5764a1ef11d, 0x0, - 0x3fb80516e8d984b1, 0x0, - 0xbfe1bbb024c9191f, 0x0, - 0xbfe4e6ac57b8ee27, 0x0, - 0xbfe2197cc0038e5b, 0x0, - 0x3fa8b201bf83f633, 0x0, - 0x3fdfc6a30c4457a5, 0x0, - 0x3fe5594e0f0d5560, 0x0, - 0x3fe04a36bd358ee3, 0x0, - 0xbfa233d6c69c1bb7, 0x0, - 0xbfe15d9fcd5b71d9, 0x0, - 0xbfe7c1587551a22c, 0x0, - 0xbfe432cd9a5ee95f, 0x0, - 0xbf8b656c5d64299f, 0x0, - 0x3fde56258d7549fd, 0x0, - 0x3fe5c95a5df7d1a1, 0x0, - 0x3fdd270a32322bfb, 0x0, - 0xbfaca46f77817bfe, 0x0, - 0xbfe06ff116d31c9d, 0x0, - 0xbfe838603281eea6, 0x0, - 0xbfe0aacb6375b593, 0x0, - 0x3f6c6b30fb33d9f1, 0x0, - 0x3fddef5e58d3e33e, 0x0, - 0x3fe6d9ac67764c0f, 0x0, - 0x3fe180eafc2e3e4a, 0x0, - 0x3f8add9eeeabbca2, 0x0, - 0xbfe107fe7fabab19, 0x0, - 0xbfe9e2c4ec560c55, 0x0, - 0xbfe0c6139325fbbb, 0x0, - 0xbfb137bdd3b6c582, 0x0, - 0x3fde3931e3ecee9d, 0x0, - 0x3fe4da06a4aa83f3, 0x0, - 0x3fdf2f00f94f16b2, 0x0, - 0x3fad6e38e6b2f8dd, 0x0, - 0xbfde2f0bdd3eec76, 0x0, - 0xbfe5c5b2b32a65be, 0x0, - 0xbfe1daffece34e95, 0x0, - 0x3f8399b97e578982, 0x0, - 0x3fe104fd018ca081, 0x0, - 0x3fe8a9c44f5a641a, 0x0, - 0x3fe09c36e6f53f8e, 0x0, - 0x3fa846d28ce82981, 0x0, - 0xbfe069978fe0dab0, 0x0, - 0xbfe5aecae6524c2b, 0x0, - 0xbfdca75bed8a5ac8, 0x0, - 0xbfb1b83579107400, 0x0, - 0x3fe0ba93a0cba4ca, 0x0, - 0x3fe66eff71a61782, 0x0, - 0x3fdf9f08427e45fc, 0x0, - 0xbfba2ef385c501fc, 0x0, - 0xbfe1018170c7964c, 0x0, - 0xbfe415c95087c0f2, 0x0, - 0xbfe08cad83b6ff81, 0x0, - 0xbfa3fd2c0fe718fb, 0x0, - 0x3fe17357364e2761, 0x0, - 0x3fe968b65002af85, 0x0, - 0x3fdadef9f7c33aeb, 0x0, - 0x3fb02abf39106849, 0x0, - 0xbfdde9362660db81, 0x0, - 0xbfe6a3d70e50386c, 0x0, - 0xbfdf249b2340fb2e, 0x0, - 0xbfaaf637811a0eea, 0x0, - 0x3fdf2c66380f0f21, 0x0, - 0x3fe84799621d5322, 0x0, - 0x3fdfa3d93cda85e5, 0x0, - 0xbf9da6c7ff218e2f, 0x0, - 0xbfdd5c8364a2dc09, 0x0, - 0xbfe69a6ce5f0ca98, 0x0, - 0xbfdeb7022a2c92f6, 0x0, - 0x3f9d57e05cc44765, 0x0, - 0x3fe08ba175e6ccb8, 0x0, - 0x3fe933f80a63631c, 0x0, - 0x3fda097a6bb5ab76, 0x0, - 0x3fa9f928df1c37e5, 0x0, - 0xbfdda528a85372c9, 0x0, - 0xbfe77843b9aa8179, 0x0, - 0xbfe0b8c634bb908a, 0x0, - 0xbfa98395d7e814d6, 0x0, - 0x3fe13c3d291ff988, 0x0, - 0x3fe6d0d0f940dd7b, 0x0, - 0x3fdb65cb95b7a04b, 0x0, - 0x3fa3dfa940e2cbdf, 0x0, - 0xbfe11df432ec8902, 0x0, - 0xbfe650b3d9874799, 0x0, - 0xbfddb57d0d54e9ec, 0x0, - 0xbfb454b31c8feaba, 0x0, - 0x3fe19eb2b058507b, 0x0, - 0x3fe7b1874e590880, 0x0, - 0x3fe180f727e154b3, 0x0, - 0xbfa542616ef404fb, 0x0, - 0xbfe427daac878c3e, 0x0, - 0xbfe50e540bc7cb16, 0x0, - 0xbfe2efaada2185af, 0x0, - 0x3fa8c081ad10f62d, 0x0, - 0x3fdb74ac13a82236, 0x0, - 0x3fe9a9560126e8cd, 0x0, - 0x3fe1e36eba9d8504, 0x0, - 0x3f7462dac1d55514, 0x0, - 0xbfdac9813600805c, 0x0, - 0xbfe7227ed82d43b9, 0x0, - 0xbfda2669ff0c96c8, 0x0, - 0x3fb359da9bd82514, 0x0, - 0x3fe1c9da8fea5323, 0x0, - 0x3fe7e941d035ed85, 0x0, - 0x3fde308dd72e3972, 0x0, - 0xbf95363e7f2fd638, 0x0, - 0xbfe04fcaee9ac980, 0x0, - 0xbfe8d2d06fe828d0, 0x0, - 0xbfe33d71a151aac8, 0x0, - 0x3fa4cf17ffcfef4f, 0x0, - 0x3fe0176a68c24663, 0x0, - 0x3fe8f2882d793568, 0x0, - 0x3fdd357cbc74210f, 0x0, - 0xbf80a61847830dd7, 0x0, - 0xbfe0fb9cfb57bc76, 0x0, - 0xbfe764eef2878ec5, 0x0, - 0xbfe0f5bb86e2e369, 0x0, - 0x3f8bbd2772f3542b, 0x0, - 0x3fe1d2c152d3d60e, 0x0, - 0x3fe567d5b8179eaf, 0x0, - 0x3fdcf5ce32fbb397, 0x0, - 0xbf97ca4692b0ec5b, 0x0, - 0xbfe1bec0acc0725a, 0x0, - 0xbfe7159c89919802, 0x0, - 0xbfdefc46d85232a9, 0x0, - 0x3fa8d7be7cc637d8, 0x0, - 0x3fe06f054d946adc, 0x0, - 0x3fe79414814bf500, 0x0, - 0x3fe3aec212f1abc4, 0x0, - 0xbf6870c5ce42f553, 0x0, - 0xbfe0b8be528726bc, 0x0, - 0xbfe6e3b142d38178, 0x0, - 0xbfde2e42bd5b87e0, 0x0, - 0xbf921568c9964c06, 0x0, - 0x3fe093fad1f2b8df, 0x0, - 0x3fe60503d6dce607, 0x0, - 0x3fe0132606c2a474, 0x0, - 0xbf7d1440ae0c2692, 0x0, - 0xbfde492f8c984a1c, 0x0, - 0xbfe5d19363eefcbb, 0x0, - 0xbfe044af9ca0c145, 0x0, - 0x3fafac08ac98f28e, 0x0, - 0x3fdcc84749d29379, 0x0, - 0x3fe7e9e3f9ac963f, 0x0, - 0x3fe02d88f269c3fe, 0x0, - 0x3fa325dc869dcee4, 0x0, - 0xbfde97bddf666236, 0x0, - 0xbfe73db73622de04, 0x0, - 0xbfdd75618143c6b2, 0x0, - 0x3f505f2bb18f02a6, 0x0, - 0x3fddd6e40685b8e8, 0x0, - 0x3fe763b558f71ba7, 0x0, - 0x3fe116cc8f96646d, 0x0, - 0xbf7d325c2b6fb6d3, 0x0, - 0xbfe17b26358007f6, 0x0, - 0xbfe72bf93f605dfa, 0x0, - 0xbfde1d1069b06da2, 0x0, - 0x3fb9b50f268efa9b, 0x0, - 0x3fd6c6a21a14237c, 0x0, - 0x3fe95c10cf136e88, 0x0, - 0x3fe12afbcf0f7bd8, 0x0, - 0xbfab973e319ae429, 0x0, - 0xbfe1a333848dab83, 0x0, - 0xbfe5f116d4cd4d9a, 0x0, - 0xbfdb359d87338049, 0x0, - 0x3f57f5bf8d688240, 0x0, - 0x3fe093e78e00cee1, 0x0, - 0x3fe31b117dae8c48, 0x0, - 0x3fe2de6a5b064c24, 0x0, - 0xbfa78b7baa5cb6fa, 0x0, - 0xbfdbb1b25049d619, 0x0, - 0xbfe6d4a0c49ca0f2, 0x0, - 0xbfde2479e536307d, 0x0, - 0x3fb2dfe70c5bfd3b, 0x0, - 0x3fe2422ed74703ea, 0x0, - 0x3fe85df69c43533d, 0x0, - 0x3fdd3230a0d001f6, 0x0, - 0x3fa64eaadf8f1ade, 0x0, - 0xbfdd1922bad14c3e, 0x0, - 0xbfe527d46c26ccb6, 0x0, - 0xbfe053e56df7d149, 0x0, - 0x3f6f00f7af7bd184, 0x0, - 0x3fddec413b2c70f1, 0x0, - 0x3fe26fe3f2d85570, 0x0, - 0x3fdbe8a3ba3a160c, 0x0, - 0x3f70166fbcbbc8ae, 0x0, - 0xbfdc52acb64ccdda, 0x0, - 0xbfe5c50e822e7783, 0x0, - 0xbfe0602915cc493b, 0x0, - 0x3f96a5e9227d8c5d, 0x0, - 0x3fe2079a70a7646e, 0x0, - 0x3fe6c0bcf955400a, 0x0, - 0x3fd8a14f932d1e8c, 0x0, - 0x3fb3ae1432e5385a, 0x0, - 0xbfe05b56b1ab00b1, 0x0, - 0xbfe3dcf19203a81e, 0x0, - 0xbfe09a450666be19, 0x0, - 0xbfac325726894023, 0x0, - 0x3fdf64af19d5bb05, 0x0, - 0x3fe721d52ffdbe02, 0x0, - 0x3fdc5c8e0c174500, 0x0, - 0xbfa0cf1b60f55604, 0x0, - 0xbfe2ae5ad63c7fce, 0x0, - 0xbfe4014886ea3cd9, 0x0, - 0xbfd803c7ecc1e611, 0x0, - 0xbf991e63ebe1dfa3, 0x0, - 0x3fdbe8b99f75528a, 0x0, - 0x3fe5f8b6d0b6c664, 0x0, - 0x3fe0c2847bc02c18, 0x0, - 0x3f2d7c10d8b09129, 0x0, - 0xbfde5ab3578f41ac, 0x0, - 0xbfe75f68d34645cf, 0x0, - 0xbfe02c2369f207f7, 0x0, - 0x3fb6948f8ac60871, 0x0, - 0x3fdf1d54ad443b73, 0x0, - 0x3fe8d7da500dcab8, 0x0, - 0x3fdb90c6ec7b4f7a, 0x0, - 0x3fb56d8509e12a00, 0x0, - 0xbfdc44d3432c9f4a, 0x0, - 0xbfe3271b3cec1c59, 0x0, - 0xbfe0a94d0378f585, 0x0, - 0xbfb53b533badec74, 0x0, - 0x3fe054c3f5adc459, 0x0, - 0x3fe49d75cb0a690f, 0x0, - 0x3fe18675dc3bf88c, 0x0, - 0xbf9ea702aa4f523b, 0x0, - 0xbfdc34176208fbda, 0x0, - 0xbfe7ba3e9bdcb588, 0x0, - 0xbfe1b5e8bebaecd3, 0x0, - 0x3f9234b14053d0f6, 0x0, - 0x3fe0fc5931e72c1c, 0x0, - 0x3fe5e9b5111516fc, 0x0, - 0x3fdef54187cf00f8, 0x0, - 0xbf948f484f99cabc, 0x0, - 0xbfe011c9d02af8c0, 0x0, - 0xbfe76564ca3f69d8, 0x0, - 0xbfe13981c03119fc, 0x0, - 0xbfa99c6b09d5c833, 0x0, - 0x3fdf34ce9abf1c3c, 0x0, - 0x3fe68933b6f57092, 0x0, - 0x3fe07b52d4b16e01, 0x0, - 0xbf903bbd57c7b0a0, 0x0, - 0xbfe13e2d72d2868d, 0x0, - 0xbfe53aff9f1b640d, 0x0, - 0xbfe21eddaf45ef19, 0x0, - 0xbfb330b34e13359a, 0x0, - 0x3fda92b340b431a8, 0x0, - 0x3fe9194b82cd7b1c, 0x0, - 0x3fdbbdb6644bb4e8, 0x0, - 0xbf74b4819b9a2e17, 0x0, - 0xbfe1b5211ca5b5b4, 0x0, - 0xbfe7799c00d74be5, 0x0, - 0xbfdd828cc00d9598, 0x0, - 0x3f94837e1ea15a48, 0x0, - 0x3fde6919acded804, 0x0, - 0x3fe4e7deb8d298f7, 0x0, - 0x3fe11875ca68ac65, 0x0, - 0x3f97ad48ce2279c8, 0x0, - 0xbfdea43f4bcefc6c, 0x0, - 0xbfe5ba79872b4c46, 0x0, - 0xbfe08bfb91352009, 0x0, - 0x3facd523867cfb94, 0x0, - 0x3fe1c07e8c71707f, 0x0, - 0x3fe63009e6271ca1, 0x0, - 0x3fda777c51107314, 0x0, - 0x3f9baa72187e9892, 0x0, - 0xbfddbd2b71b7ba2e, 0x0, - 0xbfe722ccecbeddea, 0x0, - 0xbfdaf94818116a87, 0x0, - 0xbf51b26c9394d27a, 0x0, - 0x3fddc99760ef5760, 0x0, - 0x3fe7c3d6e493b6fa, 0x0, - 0x3fddf07b3958ab48, 0x0, - 0x3fa954e7f3e67015, 0x0, - 0xbfe2b2e52700aa40, 0x0, - 0xbfe608a861fb22a0, 0x0, - 0xbfe1677352dd4c15, 0x0, - 0xbfa6c2427c13a3e7, 0x0, - 0x3fde4e14e1e3f17c, 0x0, - 0x3fe6566015b5cc26, 0x0, - 0x3fe032235f9b67ca, 0x0, - 0x3faaca20b64dcd65, 0x0, - 0xbfde6c0ad41d08a9, 0x0, - 0xbfe78af9fe36c752, 0x0, - 0xbfd8b41fd6e8b258, 0x0, - 0xbfadeb9cc8765eaf, 0x0, - 0x3fe0a6f039d231ff, 0x0, - 0x3fe47cdccd260fce, 0x0, - 0x3fe1bd26bb31be58, 0x0, - 0x3f94b1be10c60426, 0x0, - 0xbfde231dfb186290, 0x0, - 0xbfe72af19867ca62, 0x0, - 0xbfe406bedcdcbb52, 0x0, - 0xbfb23c638dcc1598, 0x0, - 0x3fdf8e1c65c5787f, 0x0, - 0x3fe7392590f8f8d8, 0x0, - 0x3fe00fa40ec61bab, 0x0, - 0xbf9be51b18b16737, 0x0, - 0xbfe2053f1629f40b, 0x0, - 0xbfe6e5064ec8fb67, 0x0, - 0xbfe1eb316b097708, 0x0, - 0x3f7b7fa4d8a637af, 0x0, - 0x3fe0ca45a00f5f03, 0x0, - 0x3fe9d59575c3d1f2, 0x0, - 0x3fdfe323b2bf61cf, 0x0, - 0x3f64853de2a9fced, 0x0, - 0xbfe01c5663461995, 0x0, - 0xbfe5ffc4685c9b3d, 0x0, - 0xbfdd3972799b0482, 0x0, - 0xbf8c05185feb11e3, 0x0, - 0x3fde55ceba48718f, 0x0, - 0x3fe7096a798d7aa4, 0x0, - 0x3fe1227c712ab48d, 0x0, - 0x3f998bea15aadd2a, 0x0, - 0xbfe0c2ee24fe7c72, 0x0, - 0xbfe643f78107fef4, 0x0, - 0xbfe04630a077e257, 0x0, - 0x3fa83f27046de456, 0x0, - 0x3fdca30b2a28ae1a, 0x0, - 0x3fe40153446d4c36, 0x0, - 0x3fe021e9498e3425, 0x0, - 0x3f9bf75bfd49e682, 0x0, - 0xbfdf04d5173f734b, 0x0, - 0xbfe58b34101617c5, 0x0, - 0xbfdae14f08a3d288, 0x0, - 0x3fb2ffb4cb263b17, 0x0, - 0x3fdf3f30b706a84b, 0x0, - 0x3fe8f2d9fdd6935e, 0x0, - 0x3fe15bde00b4c61f, 0x0, - 0xbfb1f6fb50fe939f, 0x0, - 0xbfdc405279bdac10, 0x0, - 0xbfe83115bd3c1626, 0x0, - 0xbfde916e91649242, 0x0, - 0x3f68e88dccfe21da, 0x0, - 0x3fe2d6629efa5449, 0x0, - 0x3fe7700d2add5fd6, 0x0, - 0x3fdff1329348224d, 0x0, - 0x3f9208ad75a3158c, 0x0, - 0xbfe0de717b91a65c, 0x0, - 0xbfe5f07d68f18dce, 0x0, - 0xbfdd8b5f917e2522, 0x0, - 0x3fae2a2fef00a5df, 0x0, - 0x3fe0ce0d6ad18ca7, 0x0, - 0x3fe2edda20dc63f4, 0x0, - 0x3fe21c71e51a5a02, 0x0, - 0x3fa87ac98047dbfc, 0x0, - 0xbfdda493e06c8325, 0x0, - 0xbfe7ebf2ef10910f, 0x0, - 0xbfe143d715d5a80a, 0x0, - 0xbf9cded2d0b2b770, 0x0, - 0x3fe002fd7bdced9d, 0x0, - 0x3fe7e2dd2fd19515, 0x0, - 0x3fdb3bd42be959a7, 0x0, - 0xbf96747df6285baa, 0x0, - 0xbfe2c3f491e6c4ba, 0x0, - 0xbfe5be2e5fcfe6db, 0x0, - 0xbfde3146a34f82dc, 0x0, - 0xbf92dd5f1a7bb338, 0x0, - 0x3fdae70763d6f06f, 0x0, - 0x3fe6ad4d9975291c, 0x0, - 0x3fe0909472904bd8, 0x0, - 0xbfadb1ca9c30d02d, 0x0, - 0xbfe0de116ab210a6, 0x0, - 0xbfe469ea2da6c3ac, 0x0, - 0xbfddfb16523cb15e, 0x0, - 0xbf92c2e3a80660a6, 0x0, - 0x3fdff0237aef9f02, 0x0, - 0x3fe597f91cb48879, 0x0, - 0x3fdbf7d530ac42da, 0x0, - 0xbf8053fba5df00ea, 0x0, - 0xbfe1057c2e882945, 0x0, - 0xbfe42fcd867d220e, 0x0, - 0xbfdfd05099e40b94, 0x0, - 0xbfbc42ea2580016b, 0x0, - 0x3fe01834dae14063, 0x0, - 0x3fe7b2e8a778ad8a, 0x0, - 0x3fe273f3d2de7c8a, 0x0, - 0xbfa98d45c5156394, 0x0, - 0xbfe2bd3f934dafb0, 0x0, - 0xbfe6c3b1c3ddd0e6, 0x0, - 0xbfdc40e6eba2d5bf, 0x0, - 0xbfa36c21456ebd98, 0x0, - 0x3fde9f30d6d92e0e, 0x0, - 0x3fe79cc082381e33, 0x0, - 0x3fdc4afa84f07b8a, 0x0, - 0x3faca37598b3b934, 0x0, - 0xbfdf13fb2cbe5cc6, 0x0, - 0xbfe6d087aca61475, 0x0, - 0xbfe0639cb2313520, 0x0, - 0xbfb30e32b762dce8, 0x0, - 0x3fdcc14e8241a33f, 0x0, - 0x3fe5459c208587f5, 0x0, - 0x3fe0e89facefa6aa, 0x0, - 0x3fa9d57fa673235d, 0x0, - 0xbfe2e8156aa13af5, 0x0, - 0xbfe64fbb84679e87, 0x0, - 0xbfe0d24f7799a240, 0x0, - 0x3fba59de62772b51, 0x0, - 0x3fde8eaedb1348c7, 0x0, - 0x3fe51e14dc8b39a8, 0x0, - 0x3fe325b3a4d0d1ff, 0x0, - 0x3f9a88c51053111a, 0x0, - 0xbfde87b77a33f0a5, 0x0, - 0xbfe2456ed2985be0, 0x0, - 0xbfdedcd621ca78db, 0x0, - 0xbf8f2f51744e25d4, 0x0, - 0x3fe223df35ead1b7, 0x0, - 0x3fe7ff72a41c6b64, 0x0, - 0x3fe1358f3dd249fb, 0x0, - 0xbf86b61e60a95fa8, 0x0, - 0xbfdf864bf0385820, 0x0, - 0xbfe50e4dafc65f29, 0x0, - 0xbfdd7fdc0ea13790, 0x0, - 0xbfb0d4ede2c4ed4b, 0x0, - 0x3fdf9143f7ce8e08, 0x0, - 0x3fe537975f2d1648, 0x0, - 0x3fe05e653d48b2d6, 0x0, - 0x3fb87c0ee1acc137, 0x0, - 0xbfdcc56df3ac658f, 0x0, - 0xbfe91aac47c746be, 0x0, - 0xbfdb0d59b5a2ce61, 0x0, - 0x3f822b94070b18e6, 0x0, - 0x3fe34b70d3b87d55, 0x0, - 0x3fe6f2317ba67925, 0x0, - 0x3fe0f47bc74564bc, 0x0, - 0xbf82e2b8db98adf7, 0x0, - 0xbfdb1829db92460f, 0x0, - 0xbfe5100edbb75688, 0x0, - 0xbfde91f29be11dda, 0x0, - 0xbf99388764b9a522, 0x0, - 0x3fdefd55a52644a6, 0x0, - 0x3fe5dc940781d450, 0x0, - 0x3fe39a3d1eaee16e, 0x0, - 0x3fa28781547123fc, 0x0, - 0xbfdf3b40b53df2e7, 0x0, - 0xbfe896f8d36d9784, 0x0, - 0xbfe0aa795ede4913, 0x0, - 0x3f7567a4259cb4f7, 0x0, - 0x3fe31f9e48169cbe, 0x0, - 0x3fe88a72553ebab7, 0x0, - 0x3fe396bd496aabe5, 0x0, - 0x3fa44218418a957e, 0x0, - 0xbfe0ee1cd0883165, 0x0, - 0xbfe658ec00e14af7, 0x0, - 0xbfe3686914286ab1, 0x0, - 0xbfb266203afa7236, 0x0, - 0x3fdbba7ff5f0f85c, 0x0, - 0x3fe3b1a24425a4aa, 0x0, - 0x3fe02013f15d37a3, 0x0, - 0x3f8001838609ede9, 0x0, - 0xbfe01f04baef2bc7, 0x0, - 0xbfe83e3d32b6f2b2, 0x0, - 0xbfe0b1a7bd5437dc, 0x0, - 0x3f9095ba46ed3b3c, 0x0, - 0x3fde8e8e31bc0712, 0x0, - 0x3fe6c5f994482aec, 0x0, - 0x3fdd1716e60be7eb, 0x0, - 0x3fc04c113c4e64cf, 0x0, - 0xbfe0852c395483a9, 0x0, - 0xbfe8d5629737f6b1, 0x0, - 0xbfe21ba68f33fb9e, 0x0, - 0x3f908b58493074b8, 0x0, - 0x3fdceb53e29cd994, 0x0, - 0x3fe70cc06582f1cb, 0x0, - 0x3fddb14b9be9764a, 0x0, - 0x3f9364fc05191415, 0x0, - 0xbfe11a5b977ab8a3, 0x0, - 0xbfe6b8a46777b020, 0x0, - 0xbfde9d5fcb21149a, 0x0, - 0xbfae4c480fc15f0b, 0x0, - 0x3fe14e206368ad49, 0x0, - 0x3fe72695633572fd, 0x0, - 0x3fd929c11c5b704f, 0x0, - 0x3fa517334276e8d6, 0x0, - 0xbfe048a57d0b33bd, 0x0, - 0xbfe7dc49122d8ab7, 0x0, - 0xbfd6c209a5d7315e, 0x0, - 0xbfab294961348a97, 0x0, - 0x3fdb17ab97818da6, 0x0, - 0x3fe5f0551eb75244, 0x0, - 0x3fe10f66455160fc, 0x0, - 0xbf8af2d04c1f5724, 0x0, - 0xbfe1ec2b93d5a5d2, 0x0, - 0xbfe5cdc617ff54d1, 0x0, - 0xbfda35a80224241a, 0x0, - 0x3fb443048da28185, 0x0, - 0x3fdfac5cbb44e8e1, 0x0, - 0x3fe504770680df90, 0x0, - 0x3fe12860541905f3, 0x0, - 0xbf873a7a17477956, 0x0, - 0xbfe143324630b0c5, 0x0, - 0xbfe565bee9e65c0f, 0x0, - 0xbfe18c50df671272, 0x0, - 0xbfa8d220b9570378, 0x0, - 0x3fe19b23c67927f4, 0x0, - 0x3fe7d69521cbf593, 0x0, - 0x3fd7e330987e2368, 0x0, - 0x3fb9fe6eeb9897b0, 0x0, - 0xbfdd2baaa5ed5901, 0x0, - 0xbfe827098c64ffc3, 0x0, - 0xbfe0aa1c59f25278, 0x0, - 0x3f98e50465516a2c, 0x0, - 0x3fdcff85e145fdbc, 0x0, - 0x3fe4466810f4c4c3, 0x0, - 0x3fdd683062bfea0c, 0x0, - 0xbfb2c541c8ec038c, 0x0, - 0xbfdde87af9e419df, 0x0, - 0xbfe6f6c707a6b32e, 0x0, - 0xbfdb600c0520e8f1, 0x0, - 0xbf95197d1ca825f6, 0x0, - 0x3fdc9461a273c20a, 0x0, - 0x3fe55b13b55f1fa1, 0x0, - 0x3fdd06f5c70abc9a, 0x0, - 0xbfaa438d0ac7f9c0, 0x0, - 0xbfe0898299e1e412, 0x0, - 0xbfe77e2d38bbe6cd, 0x0, - 0xbfded27f9b1b2a39, 0x0, - 0xbfa88a9bea9b9544, 0x0, - 0x3fe01991c1fdf5d6, 0x0, - 0x3fe6ec6d4320f7d2, 0x0, - 0x3fe1534f71463807, 0x0, - 0x3fa1f587e72bf6c4, 0x0, - 0xbfe08bc9b926aaf6, 0x0, - 0xbfe8142ececc99fb, 0x0, - 0xbfe10ae3a32d2b97, 0x0, - 0x3f826d7b5e480b56, 0x0, - 0x3fdd4c4dc442a6b4, 0x0, - 0x3fe721130e5fec69, 0x0, - 0x3fddb97b245f1fa0, 0x0, - 0xbf9a4af782177dd3, 0x0, - 0xbfdc4b8f1b8ad3f7, 0x0, - 0xbfe39c0ee9f4c91f, 0x0, - 0xbfda0dfcde490aa7, 0x0, - 0xbf88d524ee7e3d80, 0x0, - 0x3fe07d47e0b69a38, 0x0, - 0x3fe4cc33b5982da4, 0x0, - 0x3fdf0b2d50906145, 0x0, - 0xbfa720d8b8d570e6, 0x0, - 0xbfe0b5790e6e67af, 0x0, - 0xbfe92265d3497fb2, 0x0, - 0xbfdc03b3d543cb20, 0x0, - 0xbfb4ae68ca94fb6e, 0x0, - 0x3fdd3de8a4014b2c, 0x0, - 0x3fe5a9b5ded542df, 0x0, - 0x3fdc8eca0c597dd8, 0x0, - 0xbf9aa6de691f5b7e, 0x0, - 0xbfdd227fd51c474c, 0x0, - 0xbfe6067ff0f68fbc, 0x0, - 0xbfdbb2313422df48, 0x0, - 0x3fb2b07dbed4635a, 0x0, - 0x3fe111692d8f174d, 0x0, - 0x3fe6f544008804ba, 0x0, - 0x3fe1f65078f73f04, 0x0, - 0xbfa105e801365d84, 0x0, - 0xbfda6b6ae3e2419e, 0x0, - 0xbfe8a0f33d0830ff, 0x0, - 0xbfdd537e998ab2b0, 0x0, - 0xbf95c9c4c6e5ebbe, 0x0, - 0x3fe0072d1c438e91, 0x0, - 0x3fe724852ae2a204, 0x0, - 0x3fde55f9237a7e13, 0x0, - 0xbfb198af55e3dfb7, 0x0, - 0xbfdb768124357ba0, 0x0, - 0xbfe4b234de36e7e3, 0x0, - 0xbfdefffe2a2c9ac6, 0x0, - 0xbfbc1ddee43d4780, 0x0, - 0x3fdffbd4de79f634, 0x0, - 0x3fe6b48f09838ea5, 0x0, - 0x3fdc54269d0343b2, 0x0, - 0x3faaa573aa630ab3, 0x0, - 0xbfe11bbb03637930, 0x0, - 0xbfe5f6111b1d5ca5, 0x0, - 0xbfd9dbd77d7559bf, 0x0, - 0xbf99e310527d8315, 0x0, - 0x3fe0feb23b740ef9, 0x0, - 0x3fe59075b6fe5a56, 0x0, - 0x3fdc5c1234fd5e3c, 0x0, - 0xbfa8124780ddb079, 0x0, - 0xbfdd657edf1244f5, 0x0, - 0xbfe569fca030974c, 0x0, - 0xbfdd3a6b8e97d05b, 0x0, - 0xbf743558331b86f0, 0x0, - 0x3fe00fd56c15c1ad, 0x0, - 0x3fe66253dadf0ed4, 0x0, - 0x3fe011a0d76d154e, 0x0, - 0x3fa318786dea957d, 0x0, - 0xbfdd12f38865560b, 0x0, - 0xbfe6a9efeee8a7b4, 0x0, - 0xbfe0c9b892956e55, 0x0, - 0x3fb3ec4636f21841, 0x0, - 0x3fe0e43159f9bd6d, 0x0, - 0x3fe538e3a9dbb791, 0x0, - 0x3fe0ae242f500835, 0x0, - 0x3f6220962ab66193, 0x0, - 0xbfe0466305821df7, 0x0, - 0xbfe5b6f65f8da252, 0x0, - 0xbfdeb353a770d468, 0x0, - 0xbfaa0eaa834c54a9, 0x0, - 0x3fe2908a31f01523, 0x0, - 0x3fe5d3c56a785b48, 0x0, - 0x3fe1e890d2956a4b, 0x0, - 0x3fb278108abbb14c, 0x0, - 0xbfe11b4e3ef56102, 0x0, - 0xbfe5a458f8e459d9, 0x0, - 0xbfdc9a08f8d58caf, 0x0, - 0x3f6e5b46b346c9a7, 0x0, - 0x3fe0c611c3c8629b, 0x0, - 0x3fe6a69fc44e017f, 0x0, - 0x3fe022ab229f27d9, 0x0, - 0x3f8971f9ed4b6a93, 0x0, - 0xbfdb65e9f89e2651, 0x0, - 0xbfe64a9072f22a55, 0x0, - 0xbfe0095fb1f424a0, 0x0, - 0x3f97489a0ede40b2, 0x0, - 0x3fe01ed8a82f2e0b, 0x0, - 0x3fe7b51836be056f, 0x0, - 0x3fd9a6f08add6ae5, 0x0, - 0x3f984b9557aac70c, 0x0, - 0xbfdd11fd76d2e018, 0x0, - 0xbfe5f381b0f2525f, 0x0, - 0xbfdfc34e1df80d13, 0x0, - 0x3f9482dbecc3c5cb, 0x0, - 0x3fe2a92107d2413f, 0x0, - 0x3fe70d91b5f758ad, 0x0, - 0x3fe2a2e8f19cb95c, 0x0, - 0xbf3014ea9d314059, 0x0, - 0xbfde797d36298cb9, 0x0, - 0xbfe5ac544ef59e4e, 0x0, - 0xbfdc95c2e04c5450, 0x0, - 0xbfa74208d4780316, 0x0, - 0x3fdd95a98d29fbc6, 0x0, - 0x3fe6dd11b8395075, 0x0, - 0x3fdcd6b15dbb0a5c, 0x0, - 0x3fb2c34266f06791, 0x0, - 0xbfe08ae6c20b2368, 0x0, - 0xbfea0ac79ea4c43b, 0x0, - 0xbfdf8abdb5b96e59, 0x0, - 0x3ef84e420a38816f, 0x0, - 0x3fe0fbbd538ba1bf, 0x0, - 0x3fe36c7e4bf7fff2, 0x0, - 0x3fe19c7feb6e6284, 0x0, - 0x3fb20b21dda592fd, 0x0, - 0xbfe01b56df1b7d79, 0x0, - 0xbfe7a13f4dd9a4e9, 0x0, - 0xbfdde8224ce069d0, 0x0, - 0xbfb145a94c4e48b7, 0x0, - 0x3fe07ef007a78225, 0x0, - 0x3fe928514a3262b4, 0x0, - 0x3fe07b06de3a664c, 0x0, - 0x3f5d4ea8d95dc013, 0x0, - 0xbfe15a5f07b455f3, 0x0, - 0xbfe51644094666f9, 0x0, - 0xbfd7b2e47e30a32c, 0x0, - 0x3f9e733a9a45c6d1, 0x0, - 0x3fe16dd73157df96, 0x0, - 0x3fe5d5741394c0c8, 0x0, - 0x3fdf8f6d472061a0, 0x0, - 0xbfa803daf60a4fea, 0x0, - 0xbfdd77a05a229f81, 0x0, - 0xbfe56a153dc2eacd, 0x0, - 0xbfdea528e1cb06fc, 0x0, - 0x3faf79ae7012d129, 0x0, - 0x3fe1c2d1d9f64e5e, 0x0, - 0x3fe439f4c5514406, 0x0, - 0x3fe12edf89485f8b, 0x0, - 0xbfb2f9c7264ebfaa, 0x0, - 0xbfdc2e056fd245e8, 0x0, - 0xbfe7490045524e1a, 0x0, - 0xbfe11226b69aebb2, 0x0, - 0x3f798970218e6ef2, 0x0, - 0x3fe0c8574357ff4a, 0x0, - 0x3fe68089d2e00fb6, 0x0, - 0x3fdfc30f9bc7f1a1, 0x0, - 0x3fb219e591c27dcb, 0x0, - 0xbfe12be8e26e9f19, 0x0, - 0xbfe6eebad2938ab8, 0x0, - 0xbfde48d88eda45b0, 0x0, - 0xbfa739c5b45a3dda, 0x0, - 0x3fe0b3ae3016e15f, 0x0, - 0x3fe7b4514e497c08, 0x0, - 0x3fe0337736858315, 0x0, - 0xbf4405625cc92446, 0x0, - 0xbfddcd81b0547a66, 0x0, - 0xbfe53f5e4611d924, 0x0, - 0xbfe0302c80c95943, 0x0, - 0xbf7283c197d4f6db, 0x0, - 0x3fdfa64e61be5183, 0x0, - 0x3fe622c07b5b4d08, 0x0, - 0x3fdf894c96f11e5c, 0x0, - 0x3f97cb79b38bf50c, 0x0, - 0xbfddab6372867c3e, 0x0, - 0xbfe675d4f317e606, 0x0, - 0xbfd7d28a5311585c, 0x0, - 0x3fa11f662c5a7f3b, 0x0, - 0x3fe27c53cb07b3c2, 0x0, - 0x3fe4c997c6ee2dfc, 0x0, - 0x3fdfe5a3a65ceefa, 0x0, - 0x3fa665b3cccd4603, 0x0, - 0xbfe0a8ae4f8ea501, 0x0, - 0xbfe6314f753de9a3, 0x0, - 0xbfd7abd1b4d90bdf, 0x0, - 0xbfb1bf96fbc0b3b4, 0x0, - 0x3fde28ba2cb74944, 0x0, - 0x3fe706dd8592e804, 0x0, - 0x3fe1fa97ccf9e48e, 0x0, - 0xbfb4d789b3a287b1, 0x0, - 0xbfdeced6d23f6274, 0x0, - 0xbfe66e210ba0bb5c, 0x0, - 0xbfdff3d56ca1a7df, 0x0, - 0x3f8d48432efe3f88, 0x0, - 0x3fdd0d0db54da131, 0x0, - 0x3fe529662f5755b5, 0x0, - 0x3fe0d51bc630c03e, 0x0, - 0x3fb0acc8690ae44d, 0x0, - 0xbfe0a0ef841b89d9, 0x0, - 0xbfe7d17e077b90dc, 0x0, - 0xbfdb044ed2f74d2b, 0x0, - 0xbf61e1e05785f809, 0x0, - 0x3fe25cb7cf9cae6c, 0x0, - 0x3fe8b9cfab9a24b1, 0x0, - 0x3fdb00ef44ada81e, 0x0, - 0xbfa13bc2e01f8da8, 0x0, - 0xbfdfa1b8e9bfa1fc, 0x0, - 0xbfe85e49f95ce040, 0x0, - 0xbfde832e95f638cd, 0x0, - 0x3fa5248c004f10dd, 0x0, - 0x3fe0cd641d2e0c0a, 0x0, - 0x3fe5ee709c4741de, 0x0, - 0x3fddedde06e607b6, 0x0, - 0x3f6a2ee8ce078959, 0x0, - 0xbfe09d1f5631aa9c, 0x0, - 0xbfe8bf843f5fa70f, 0x0, - 0xbfe3879bd4f3aa67, 0x0, - 0x3fa94c6e259be410, 0x0, - 0x3fdf89bdcf00ab72, 0x0, - 0x3fe8ec4c6a96f599, 0x0, - 0x3fe024cec8ec20d6, 0x0, - 0xbf91b254cfb529de, 0x0, - 0xbfe315c2ba9bb374, 0x0, - 0xbfe672e795042182, 0x0, - 0xbfdbfd8740f48b1f, 0x0, - 0x3f936047d368c24a, 0x0, - 0x3fdd0866c18a562e, 0x0, - 0x3fe55878af90c7be, 0x0, - 0x3fe17f881c0ec448, 0x0, - 0x3fb997760fe37362, 0x0, - 0xbfe27385a9fc516a, 0x0, - 0xbfe719cf0701bb72, 0x0, - 0xbfdf75bfce6ca3aa, 0x0, - 0x3f88fa5199dabab0, 0x0, - 0x3fd9d78d31f932b8, 0x0, - 0x3fe71d91527e2850, 0x0, - 0x3fe1066d9e7334e4, 0x0, - 0xbfa996175da6c6c9, 0x0, - 0xbfdd26cb97656389, 0x0, - 0xbfe8d4d116b02aff, 0x0, - 0xbfdfe7fe1b1a2bbd, 0x0, - 0x3fb777e574b1f5f4, 0x0, - 0x3fdb99463d9db273, 0x0, - 0x3fe5e632bf9355dc, 0x0, - 0x3fe0795111d6754b, 0x0, - 0xbf81b6902d7ccfab, 0x0, - 0xbfdfa1a6495856d1, 0x0, - 0xbfe6479f2a3696ed, 0x0, - 0xbfde4b50ab3e2871, 0x0, - 0x3fa8543e5bd46830, 0x0, - 0x3fe0b2ad5ec40ee5, 0x0, - 0x3fe91cdbe1365a20, 0x0, - 0x3fe08b502defea44, 0x0, - 0xbf7252d540e831e2, 0x0, - 0xbfda0b027acb09b5, 0x0, - 0xbfe30e45b7a11598, 0x0, - 0xbfe09be3159f6020, 0x0, - 0xbf801825308e08bf, 0x0, - 0x3fdb0984dd9de203, 0x0, - 0x3fe7121358b54a94, 0x0, - 0x3fdf8ea8bd3160af, 0x0, - 0x3f9e87d6a776e295, 0x0, - 0xbfdcbbfe898095f7, 0x0, - 0xbfe53666014c848e, 0x0, - 0xbfdcd59e4b3865b8, 0x0, - 0x3f991445d0475264, 0x0, - 0x3fe0110c58e72481, 0x0, - 0x3fe7e0d2d58009ba, 0x0, - 0x3fe04033276f8214, 0x0, - 0xbfa371daa86a773c, 0x0, - 0xbfe199cd60c01ba6, 0x0, - 0xbfe639187f9c0982, 0x0, - 0xbfdb2e831f53d4f4, 0x0, - 0x3faafbb1d3487f13, 0x0, - 0x3fe0254ef94647de, 0x0, - 0x3fe6fbc0c9638cb2, 0x0, - 0x3fd8d9d6c66d7e59, 0x0, - 0x3f910a19998828aa, 0x0, - 0xbfe1739dbd0ec881, 0x0, - 0xbfe56a273318f00f, 0x0, - 0xbfde76d9b98e8901, 0x0, - 0xbf55ad0357729df2, 0x0, - 0x3fe02cb19669ea77, 0x0, - 0x3fe557ee6d0b1257, 0x0, - 0x3fdf977977fec4fc, 0x0, - 0xbf959c68e7d49f35, 0x0, - 0xbfdec0ac44edc916, 0x0, - 0xbfe5e6921aab0f4d, 0x0, - 0xbfe05b1b8aaf2f15, 0x0, - 0x3f96d9a416561e1c, 0x0, - 0x3fde961bc3428099, 0x0, - 0x3fe7175cf3cbc1b6, 0x0, - 0x3fe0ddc9430f35bc, 0x0, - 0x3fa100bc1180b015, 0x0, - 0xbfde05298872a402, 0x0, - 0xbfe63456bba628a7, 0x0, - 0xbfd85a8795026fc6, 0x0, - 0x3f9e7d95dc4d9851, 0x0, - 0x3fe21ac4328b7fc6, 0x0, - 0x3fe78dbee2b80abc, 0x0, - 0x3fd9cbf7e6177160, 0x0, - 0xbfa35e5df993afdd, 0x0, - 0xbfdb936dc7be23fd, 0x0, - 0xbfe776232c1e4180, 0x0, - 0xbfde449a1302f884, 0x0, - 0xbfa04e53474adec5, 0x0, - 0x3fdcc6d2369ec90f, 0x0, - 0x3fe50ccca73c6d66, 0x0, - 0x3fe0d89a625a367e, 0x0, - 0xbfa543ec7e8cac15, 0x0, - 0xbfe05df99ec2d5ef, 0x0, - 0xbfe7407c635ee076, 0x0, - 0xbfe27957e03bd787, 0x0, - 0x3f93be22ddd5a2e4, 0x0, - 0x3fdead325f81bf37, 0x0, - 0x3fe66ec4747b206d, 0x0, - 0x3fdf7fd42e0b6bd9, 0x0, - 0x3f816195cee80a9a, 0x0, - 0xbfe055c8343e1bbd, 0x0, - 0xbfe675ba74a57057, 0x0, - 0xbfdc1eb013e70960, 0x0, - 0xbfb0e1413a44be97, 0x0, - 0x3fe001a58b8e1251, 0x0, - 0x3fe5b4a50b4ea143, 0x0, - 0x3fdec96614d52ff5, 0x0, - 0xbfb2ddd6410621be, 0x0, - 0xbfde444dc1f2a39a, 0x0, - 0xbfe66f4a49c414ab, 0x0, - 0xbfe1716010c20163, 0x0, - 0x3f9e9e8a3566d001, 0x0, - 0x3fe04e87d845a8a3, 0x0, - 0x3fe7538aff1b2b88, 0x0, - 0x3fda3235e80a10df, 0x0, - 0xbfb331b529dd94ac, 0x0, - 0xbfe10b46a31e1700, 0x0, - 0xbfe5e8b3a7a365ee, 0x0, - 0xbfdb6d02c92bc369, 0x0, - 0xbf943166e34a4023, 0x0, - 0x3fe0250249f04549, 0x0, - 0x3fe56ff538a3349f, 0x0, - 0x3fe40448f714a260, 0x0, - 0x3f9b5b117777b192, 0x0, - 0xbfe35f4217e3f238, 0x0, - 0xbfe7c3348318cf60, 0x0, - 0xbfde30b2e7b86374, 0x0, - 0x3f99e289b2bc0b85, 0x0, - 0x3fe087a114016dc2, 0x0, - 0x3fe64beaf027549c, 0x0, - 0x3fdf6ccefbbb63c6, 0x0, - 0x3f9e61308cd8ac72, 0x0, - 0xbfdf7f136c86265b, 0x0, - 0xbfe5fe2359221d31, 0x0, - 0xbfddfdbcda5f7f4d, 0x0, - 0x3fa9d3fe119a92c0, 0x0, - 0x3fe01f502f95cde4, 0x0, - 0x3fe57cb58643dbbf, 0x0, - 0x3fe028e66259a0c6, 0x0, - 0x3f6f5ef84363940b, 0x0, - 0xbfe1fe3627c07ade, 0x0, - 0xbfe63db79a730f41, 0x0, - 0xbfdf9dbc5fe1af86, 0x0, - 0xbfa12201af0704e6, 0x0, - 0x3fde06211ce6d2c9, 0x0, - 0x3fe6c2d3b438026b, 0x0, - 0x3fda03f9209c7969, 0x0, - 0x3f90c1bd1fc40ec8, 0x0, - 0xbfdcdd9ca7ea3462, 0x0, - 0xbfe60da6178f82d7, 0x0, - 0xbfe0d32dcb7b1f9b, 0x0, - 0x3f7e1013fb9f4ec7, 0x0, - 0x3fe07fd8829bc41c, 0x0, - 0x3fe53b808c4ef455, 0x0, - 0x3fdc146c69d6b0e5, 0x0, - 0x3fa6973f6cab6f44, 0x0, - 0xbfd8a151d6dfc528, 0x0, - 0xbfe823d1b5aafed2, 0x0, - 0xbfe35b39d9e2e1a1, 0x0, - 0xbfb35107c2fab5a6, 0x0, - 0x3fd7fe8c29678d1d, 0x0, - 0x3fe5c2b0b92e9ded, 0x0, - 0x3fdd873f2c5dac94, 0x0, - 0xbfa182811524b12f, 0x0, - 0xbfe0d262871116e8, 0x0, - 0xbfe7d1651c3f136d, 0x0, - 0xbfdceb288855e11f, 0x0, - 0xbfaa61e6bb28e158, 0x0, - 0x3fe24de39afb0fcd, 0x0, - 0x3fe6d6f860d1fb0c, 0x0, - 0x3fdceae08aecce00, 0x0, - 0x3fa44da4350c9d8f, 0x0, - 0xbfe308ff74d6b471, 0x0, - 0xbfe5bb01673d3a36, 0x0, - 0xbfe34e8875be0e88, 0x0, - 0xbfaaf477a4376eda, 0x0, - 0x3fdc7e1a736b0814, 0x0, - 0x3fe85b117b11bce2, 0x0, - 0x3fe177979b259001, 0x0, - 0x3fb0a8d2524fc506, 0x0, - 0xbfdfe1f3a44fb2be, 0x0, - 0xbfe7feeca9454403, 0x0, - 0xbfdcb0195f1c0b7a, 0x0, - 0xbf8b13015005b5d6, 0x0, - 0x3fdfcdc6f4e0ecf7, 0x0, - 0x3fe6ab21909eb668, 0x0, - 0x3fe0f156397b5448, 0x0, - 0x3fa57d6616cc49b1, 0x0, - 0xbfe289ccc5112afd, 0x0, - 0xbfe425e6b8b470b4, 0x0, - 0xbfdd9c22f4e8b7ac, 0x0, - 0x3fa83632aee9e3d8, 0x0, - 0x3fde34c14a789a5d, 0x0, - 0x3fe63e5f08c431ad, 0x0, - 0x3fd9494afb512c45, 0x0, - 0xbf9fb067b841863c, 0x0, - 0xbfdc5a037d80f90e, 0x0, - 0xbfe516d7af4ef816, 0x0, - 0xbfdd92d77efe85d1, 0x0, - 0x3fb1ffeee0942270, 0x0, - 0x3fdf85271895df4a, 0x0, - 0x3fe6bcd199091d95, 0x0, - 0x3fdfe54a24b302f7, 0x0, - 0xbfa1abe0bc9dfec3, 0x0, - 0xbfe1724ec43fd472, 0x0, - 0xbfe3802525676da8, 0x0, - 0xbfe0f46b59fa593b, 0x0 + 0xbf9ad4f03fc385ac, 0x0, + 0x3fe16029b61f75d3, 0x0, + 0x3fe81d1110c8e626, 0x0, + 0x3fe01abc1e02216e, 0x0, + 0x3fa0b6a3c49caec4, 0x0, + 0xbfe139885a941f88, 0x0, + 0xbfe4537612a1b8fe, 0x0, + 0xbfddfd99620dbc54, 0x0, + 0x3f8bd1dbeb67886d, 0x0, + 0x3fdf55bbfd32dd22, 0x0, + 0x3fe5c562a11eef68, 0x0, + 0x3fdcf6d08abaea46, 0x0, + 0x3fa1d99f4e3ea089, 0x0, + 0xbfe00e01966be78d, 0x0, + 0xbfe6e50768bdfaa1, 0x0, + 0xbfdb35be0b6db78b, 0x0, + 0xbf96e0b1eae412ec, 0x0, + 0x3fe0ed8056c6e364, 0x0, + 0x3fe538536acda833, 0x0, + 0x3fde3b835e57689e, 0x0, + 0xbfa44406f8494c16, 0x0, + 0xbfe00119319b77ad, 0x0, + 0xbfe52f4dbe1c81f4, 0x0, + 0xbfe04e8be3d8dea5, 0x0, + 0xbfa8ebffb6a45250, 0x0, + 0x3fdc79cd4b065f46, 0x0, + 0x3fea1b155bbbcda0, 0x0, + 0x3fe0410ef4c9742d, 0x0, + 0xbf9f87eeebf2889b, 0x0, + 0xbfe06883f03bc2d4, 0x0, + 0xbfe8a70d7cf637c0, 0x0, + 0xbfe00b0ff85e77c1, 0x0, + 0xbf6a47a5f1f0d074, 0x0, + 0x3fdd458afcba2cc5, 0x0, + 0x3fe7d597f19a9866, 0x0, + 0x3fde7096cdb7b780, 0x0, + 0x3fa457a974052f66, 0x0, + 0xbfe184d7d1c5fb13, 0x0, + 0xbfe397ebaf6ee34c, 0x0, + 0xbfdd576345746d5b, 0x0, + 0xbfb253b7ec2c2e8a, 0x0, + 0x3fe02516cf114bca, 0x0, + 0x3fe959e7ea6cf12c, 0x0, + 0x3fde9a2704651096, 0x0, + 0x3fb146e763e5d9b0, 0x0, + 0xbfdbb983a2635fff, 0x0, + 0xbfe6032b75e4a1ba, 0x0, + 0xbfe13d9b4baa535f, 0x0, + 0xbfa57a07bee22988, 0x0, + 0x3fdf603664dfc23d, 0x0, + 0x3fe77891029bdb6b, 0x0, + 0x3fe0578756a38bfe, 0x0, + 0x3fa4139c55e35dff, 0x0, + 0xbfdd30f0e8b4151e, 0x0, + 0xbfe5dc11900517fd, 0x0, + 0xbfe0be21d737414e, 0x0, + 0xbf6ead5cda87c05e, 0x0, + 0x3fe16b4dbf73234c, 0x0, + 0x3fe77555cdd2167b, 0x0, + 0x3fddce6b7db8ec42, 0x0, + 0xbf9abc64a88af249, 0x0, + 0xbfe1c3b79fb61032, 0x0, + 0xbfe4b2492a0268df, 0x0, + 0xbfdf59d23151a8f9, 0x0, + 0xbfa1cbd1067230e4, 0x0, + 0x3fdd85fa568fa321, 0x0, + 0x3fe6b6d83fa67095, 0x0, + 0x3fe316e8fcbed6d6, 0x0, + 0xbfa477ef0c281857, 0x0, + 0xbfde2eee9500d629, 0x0, + 0xbfe6154394008930, 0x0, + 0xbfe4f28ef06dbd44, 0x0, + 0xbfadb7c569f6ed48, 0x0, + 0x3fdff77060c4ed12, 0x0, + 0x3fe7e25d8e74cae4, 0x0, + 0x3fe3621e59a825d0, 0x0, + 0xbfa7c17b82fd1073, 0x0, + 0xbfe2d0377609520a, 0x0, + 0xbfe698623cb2a19a, 0x0, + 0xbfdd6679080ee3d2, 0x0, + 0x3f8dbdb292be14e8, 0x0, + 0x3fdb536ee0fa0573, 0x0, + 0x3fe6072bd642b237, 0x0, + 0x3fdca4b95cd8a135, 0x0, + 0xbfb48f35bf206bad, 0x0, + 0xbfdf38cf80f82262, 0x0, + 0xbfe5b90674deb914, 0x0, + 0xbfe10cf6399fcd8c, 0x0, + 0x3f7730587f04906c, 0x0, + 0x3fdcefb2d364aa06, 0x0, + 0x3fe53fa8bf132e66, 0x0, + 0x3fe183f8a47ab00e, 0x0, + 0x3fae0d3d33955195, 0x0, + 0xbfdd527b15eaa2ad, 0x0, + 0xbfe640657d3e357c, 0x0, + 0xbfd8dcaf637da057, 0x0, + 0x3fa12929a162492f, 0x0, + 0x3fe0c12c12967f08, 0x0, + 0x3fe6dcef0b562e40, 0x0, + 0x3fe1478122cc4178, 0x0, + 0x3fb2d23cf9d36835, 0x0, + 0xbfdb5bed42c86172, 0x0, + 0xbfe5a34f7b539434, 0x0, + 0xbfe1bce54c75dd75, 0x0, + 0x3f9b57e2c4cf7eee, 0x0, + 0x3fe0cd697c6500e5, 0x0, + 0x3fe4206396d34689, 0x0, + 0x3fde1e37737ae155, 0x0, + 0x3f80a8e325d74d49, 0x0, + 0xbfde43b289f11673, 0x0, + 0xbfe805eff48e3e97, 0x0, + 0xbfe0d776eefbf384, 0x0, + 0x3fa0ff6fb8fc638f, 0x0, + 0x3fdbb578fd3f595c, 0x0, + 0x3fe88d18e19b3154, 0x0, + 0x3fdd1bc597c4edc5, 0x0, + 0xbfa43f66b0279d10, 0x0, + 0xbfe248a5186094f1, 0x0, + 0xbfe562d2ad06d3ef, 0x0, + 0xbfe10b9e0697ce40, 0x0, + 0x3f90a147aa242d49, 0x0, + 0x3fdd3078e7fa475a, 0x0, + 0x3fe0c7f432234621, 0x0, + 0x3fdd37ee7c2249d6, 0x0, + 0x3faf5c91c4ee7434, 0x0, + 0xbfe0ea53068a0d97, 0x0, + 0xbfe836e77000cdf2, 0x0, + 0xbfdd48fa6bfa969d, 0x0, + 0xbf81f049905d9e1d, 0x0, + 0x3fdfb5dd7d97a7ed, 0x0, + 0x3fea09c106d76fe3, 0x0, + 0x3fe20381b604ef3b, 0x0, + 0xbfad600623656083, 0x0, + 0xbfde6dc138a66e98, 0x0, + 0xbfe888bbbdd23167, 0x0, + 0xbfd9b884df6d4746, 0x0, + 0x3f91ddea33e9b646, 0x0, + 0x3fdf24083bd8e87d, 0x0, + 0x3fe5f2d68a4bd2d5, 0x0, + 0x3fdd93ac5122655d, 0x0, + 0x3fae27b062592b87, 0x0, + 0xbfe0fd07e3e4e649, 0x0, + 0xbfe4d08f325eabe6, 0x0, + 0xbfdf948a5a51b028, 0x0, + 0xbf813f1fcbf63622, 0x0, + 0x3fe10c0e364ecc90, 0x0, + 0x3fe466478930d506, 0x0, + 0x3fe04ff76f7a91a2, 0x0, + 0xbfb82cc4843b9524, 0x0, + 0xbfdd455cfadd409a, 0x0, + 0xbfe4a35d201c917f, 0x0, + 0xbfdc7b994f908b80, 0x0, + 0x3f86edf2aa4a44b7, 0x0, + 0x3fdd543252ea6bef, 0x0, + 0x3fe60bbb68e5cbdf, 0x0, + 0x3fe2ea273718742a, 0x0, + 0x3fb0cc90d11d71d3, 0x0, + 0xbfe065b39f39b459, 0x0, + 0xbfe6c61e18052434, 0x0, + 0xbfe1bab94cc98906, 0x0, + 0x3fb3ec6129d09d73, 0x0, + 0x3fdaa01ab0ec2948, 0x0, + 0x3fe830807ca7da0b, 0x0, + 0x3fe2ce3f4a97c91f, 0x0, + 0xbfb81ded4c837d8e, 0x0, + 0xbfe0771a1ca049f5, 0x0, + 0xbfe7847ac53d6248, 0x0, + 0xbfdaf6b942585efb, 0x0, + 0x3fb10e3121f30443, 0x0, + 0x3fe00ab786364731, 0x0, + 0x3fe96672da37bbb9, 0x0, + 0x3fe1539c656728cc, 0x0, + 0xbfb50c0f0ec77b29, 0x0, + 0xbfe01ebba99158ba, 0x0, + 0xbfe5b6a065a74b7c, 0x0, + 0xbfdff7b361b9b839, 0x0, + 0x3fba52622b471db7, 0x0, + 0x3fe47731c4bd9a6d, 0x0, + 0x3fe648fd61abe5ce, 0x0, + 0x3fdc528c790dcfa6, 0x0, + 0xbfa9091c327a6b5e, 0x0, + 0xbfe20c49bf1aae3e, 0x0, + 0xbfe6a3bfdc0502f5, 0x0, + 0xbfe0eb35061d5672, 0x0, + 0x3fc010ab5af2627b, 0x0, + 0x3fdf9fa20b218c31, 0x0, + 0x3fe6aa7679229581, 0x0, + 0x3fdfe43d9588721f, 0x0, + 0x3f418e6e9a646468, 0x0, + 0xbfde4541161c631c, 0x0, + 0xbfe68cef07c00868, 0x0, + 0xbfe00b337f5af8de, 0x0, + 0xbf90ea036cfff6bf, 0x0, + 0x3fe129ce125c8e08, 0x0, + 0x3fe5855bc08fe8a3, 0x0, + 0x3fe09fa3bd0e94d0, 0x0, + 0x3fb76cf545e79eb2, 0x0, + 0xbfe08e91ab14b136, 0x0, + 0xbfe79635d7587d66, 0x0, + 0xbfdd274c8fbbe69b, 0x0, + 0xbf81e8aa334c428b, 0x0, + 0x3fe226735fe1d5a7, 0x0, + 0x3fe64c8776cef2c5, 0x0, + 0x3fe0b731d5eaddab, 0x0, + 0xbfb5d6d94929c325, 0x0, + 0xbfdaf352f9000ad0, 0x0, + 0xbfe7859d85331c3b, 0x0, + 0xbfda0dc05581203e, 0x0, + 0x3fac2642c83ebe84, 0x0, + 0x3fe200994612b2ed, 0x0, + 0x3fe6c078cf0d3f25, 0x0, + 0x3fe1de3fa06366ac, 0x0, + 0xbf6babe2bc2f272f, 0x0, + 0xbfe13badbf20f0e3, 0x0, + 0xbfe3daeb0c6d7aa7, 0x0, + 0xbfe0f587664dfe8a, 0x0, + 0xbfc173bdb538b570, 0x0, + 0x3fe21b8f2c919fc2, 0x0, + 0x3fe623a9e289c1c6, 0x0, + 0x3fdcdfe00e54ee3c, 0x0, + 0xbfaf0ef5a4c188f8, 0x0, + 0xbfe061a121960d23, 0x0, + 0xbfe4f23a82f521f9, 0x0, + 0xbfe458b41d249f74, 0x0, + 0x3f7bd4173eae0081, 0x0, + 0x3fddffa268269ba9, 0x0, + 0x3fe484f3062b6cad, 0x0, + 0x3fe2f46c02ea1eed, 0x0, + 0xbf9d7c388818ba86, 0x0, + 0xbfdd52210841d956, 0x0, + 0xbfe73462637a6289, 0x0, + 0xbfdb636d2f48d4e3, 0x0, + 0xbfb2539965e9e361, 0x0, + 0x3fdf0c840ee8b4ba, 0x0, + 0x3fe7df04ff044dfd, 0x0, + 0x3fdf58ad5b84ceaf, 0x0, + 0xbf6433c6f8b1ddd4, 0x0, + 0xbfe031f345a5d4e7, 0x0, + 0xbfe51eb693bc3ca9, 0x0, + 0xbfddcfe10ffae31f, 0x0, + 0xbfab73bf3c9cd64b, 0x0, + 0x3fddd8544f9b3b80, 0x0, + 0x3fe45057dfcf2031, 0x0, + 0x3fe02723ab02cd35, 0x0, + 0x3fa8c73ee30c4e63, 0x0, + 0xbfe214183e4e3f74, 0x0, + 0xbfe82528b82abc87, 0x0, + 0xbfdc6b4d25268cb6, 0x0, + 0x3fac36907057bc71, 0x0, + 0x3fdccc35203e1585, 0x0, + 0x3fe71f037f5eb5f4, 0x0, + 0x3fdb0921f8482a27, 0x0, + 0xbfa84052b2badce2, 0x0, + 0xbfdf37bbbf3eba5e, 0x0, + 0xbfe74d4510a07c1d, 0x0, + 0xbfddb643720ddaf8, 0x0, + 0xbf78cc89b8424aa0, 0x0, + 0x3fdf44e5279b2e92, 0x0, + 0x3fe6b69049eaaa14, 0x0, + 0x3fdc8536e0b5be10, 0x0, + 0xbf8075c2dd698cb6, 0x0, + 0xbfde2c60c9df5ff0, 0x0, + 0xbfe61d9d3254a31c, 0x0, + 0xbfdebdac2507672e, 0x0, + 0x3f835a4c9380b599, 0x0, + 0x3fe275825f7955f2, 0x0, + 0x3fe5cd507713d8ac, 0x0, + 0x3fdedc6184650bff, 0x0, + 0xbf9d443e8bce3cc1, 0x0, + 0xbfde8b83ef256028, 0x0, + 0xbfe419a35d37860a, 0x0, + 0xbfdb07e5167ccbae, 0x0, + 0x3fa5ab2374dc3ce0, 0x0, + 0x3fe48b6c279efd36, 0x0, + 0x3fe267307881053a, 0x0, + 0x3fdd816c9b009306, 0x0, + 0x3f9bf22f0ca1eae3, 0x0, + 0xbfe09a1e53ec09a7, 0x0, + 0xbfe5b6f92c481c68, 0x0, + 0xbfe0a270743a7243, 0x0, + 0xbfa073fb52a2fcf5, 0x0, + 0x3fddd03b697f1995, 0x0, + 0x3fe830671c421d69, 0x0, + 0x3fe0ae5536a69ec6, 0x0, + 0x3fa219cac9611c72, 0x0, + 0xbfe18ffb6942fc11, 0x0, + 0xbfe28a7d0564e846, 0x0, + 0xbfdc669aa90bebe0, 0x0, + 0x3f8e92152437932a, 0x0, + 0x3fe10a0a75361d73, 0x0, + 0x3fe5e87b7a45f125, 0x0, + 0x3fdfcf8a6f3462b6, 0x0, + 0xbfb291c446881f34, 0x0, + 0xbfdd10aaaec4987c, 0x0, + 0xbfe6e147bb355368, 0x0, + 0xbfe062f136343a82, 0x0, + 0x3fa51ddcbe4dd197, 0x0, + 0x3fe26797d58c5d76, 0x0, + 0x3fe85ec8d46e6289, 0x0, + 0x3fdd131ed553de24, 0x0, + 0xbf9e80cae9583052, 0x0, + 0xbfddd0390ba02fbc, 0x0, + 0xbfe8048be1cce524, 0x0, + 0xbfdd4e668a4fb88d, 0x0, + 0x3f9241cc6906cac1, 0x0, + 0x3fe16e012390a768, 0x0, + 0x3fe312c927cc0a9d, 0x0, + 0x3fddd7ca8bf71292, 0x0, + 0x3fa52c1dbfc48753, 0x0, + 0xbfde9e93f1be9efc, 0x0, + 0xbfe890302327bb79, 0x0, + 0xbfe0e0a0c48d940d, 0x0, + 0x3f88128d42a2c71f, 0x0, + 0x3fe017c297eeb093, 0x0, + 0x3fe55538511ea14b, 0x0, + 0x3fe32b93085ac709, 0x0, + 0x3fa17eb461559850, 0x0, + 0xbfe041bf438c56e2, 0x0, + 0xbfe6b7bd008e6d5a, 0x0, + 0xbfe013d488bcdcd4, 0x0, + 0x3faba6129924ad51, 0x0, + 0x3fe155a3595a1833, 0x0, + 0x3fe8cce2cd7b6e1c, 0x0, + 0x3fdf8346e111ec00, 0x0, + 0x3fba10d7339a8aca, 0x0, + 0xbfe154da66a07622, 0x0, + 0xbfe5d3a59934773d, 0x0, + 0xbfe25ec61603be21, 0x0, + 0xbfaca3de45ab334d, 0x0, + 0x3fd9524c374037a4, 0x0, + 0x3fe6e0832ec6d7f4, 0x0, + 0x3fddc78a2557d52e, 0x0, + 0xbf959c58ecb89c7e, 0x0, + 0xbfdb622b6a13e74f, 0x0, + 0xbfe3a010a953e356, 0x0, + 0xbfd95d2e382a32b6, 0x0, + 0xbfb58bf90c834bed, 0x0, + 0x3fdec109c6aab888, 0x0, + 0x3fe5daefd8b588bb, 0x0, + 0x3fde741fee2ffef7, 0x0, + 0xbfabfe23d0b837e3, 0x0, + 0xbfe1d002af2c033b, 0x0, + 0xbfe4f6dae67038f3, 0x0, + 0xbfe0c1426df2deec, 0x0, + 0x3fa7bb235d526a96, 0x0, + 0x3fe1bbf07b329648, 0x0, + 0x3fe701d3dba23193, 0x0, + 0x3fddf3db250d8cf7, 0x0, + 0x3facb4b3417e70c7, 0x0, + 0xbfdff6f4b956e36c, 0x0, + 0xbfe5a9d717662a26, 0x0, + 0xbfe1a9530f57d59e, 0x0, + 0xbfa5197b49248dd6, 0x0, + 0x3fe058f22e9ff07d, 0x0, + 0x3fe2a964eda68d24, 0x0, + 0x3fe10ce9de917a2f, 0x0, + 0xbf750350b47af7c0, 0x0, + 0xbfdd0b67ecb680bd, 0x0, + 0xbfe3d94ff2480212, 0x0, + 0xbfdd15c2d8011e3c, 0x0, + 0x3fad02ab5fdc67ad, 0x0, + 0x3fdde8a8781ab306, 0x0, + 0x3fe5303dcd9548f6, 0x0, + 0x3fdafb31b31081bc, 0x0, + 0x3f81ca23d551f147, 0x0, + 0xbfe15bc328c54016, 0x0, + 0xbfe3caf756e1aaba, 0x0, + 0xbfdaafea18c529cc, 0x0, + 0xbf94d5e745f7b47c, 0x0, + 0x3fe244dd38808f69, 0x0, + 0x3fe545294d2bb22f, 0x0, + 0x3fdeb71e27b270a1, 0x0, + 0xbf63bb01b1037241, 0x0, + 0xbfdfc42763262dcd, 0x0, + 0xbfe5c2f0d8da46b1, 0x0, + 0xbfde653cc3885a1a, 0x0, + 0xbfb3a4a340b26a97, 0x0, + 0x3fe117fb19ed8091, 0x0, + 0x3fe6a14942781def, 0x0, + 0x3fe271c8fcbd817b, 0x0, + 0x3f7bc72d933a3763, 0x0, + 0xbfe19ffede8c4a2c, 0x0, + 0xbfe639a5a93396c7, 0x0, + 0xbfe09395bf45ca11, 0x0, + 0xbfb47fc4e3807513, 0x0, + 0x3fe2367d57c4cb50, 0x0, + 0x3fe3777a73bf32c9, 0x0, + 0x3fe214cd7cdf1b79, 0x0, + 0x3fb24a67f71e8398, 0x0, + 0xbfde0fb36c873964, 0x0, + 0xbfe6bdaafb3a18d1, 0x0, + 0xbfde1ccd720ca4f1, 0x0, + 0xbfa490974de2b6eb, 0x0, + 0x3fdc4643a977df3a, 0x0, + 0x3fe6fc86d03bd144, 0x0, + 0x3fe2163e0f100368, 0x0, + 0xbf9cf86caa43e4f5, 0x0, + 0xbfe174e7f7bb0053, 0x0, + 0xbfe6a64ff3ed4038, 0x0, + 0xbfdcd84048ea30e7, 0x0, + 0xbfb4a267daa3473a, 0x0, + 0x3fe0fa4428237288, 0x0, + 0x3fe67657fcf02e63, 0x0, + 0x3fdd69964eb79854, 0x0, + 0xbfa6e681121945d9, 0x0, + 0xbfe3d1c8e2d50a35, 0x0, + 0xbfe70d074aaa9a2f, 0x0, + 0xbfdc8358cd4007e6, 0x0, + 0x3f84a024fc07155c, 0x0, + 0x3fd96c590b176eca, 0x0, + 0x3fe7a0cfd40aef61, 0x0, + 0x3fe03f7c414654cc, 0x0, + 0x3fb79b22f38aeafe, 0x0, + 0xbfe1facfd557684d, 0x0, + 0xbfe6eb369f8a31d5, 0x0, + 0xbfde8798417e1a53, 0x0, + 0x3fa68f54467cdcd6, 0x0, + 0x3fde239f5728732f, 0x0, + 0x3fe5a57e6a9e5753, 0x0, + 0x3fe1110f08ea3c9b, 0x0, + 0xbfa30d3002926b8e, 0x0, + 0xbfdd11a31560f855, 0x0, + 0xbfe69a9917b5a8ac, 0x0, + 0xbfe1098d1408a22d, 0x0, + 0xbf53985fa383e49c, 0x0, + 0x3fe1f3f4ef99a5b9, 0x0, + 0x3fe460134919f2a4, 0x0, + 0x3fdb20dbd95d8209, 0x0, + 0xbf9f08ff1dd94aeb, 0x0, + 0xbfdc08a9cad52d0e, 0x0, + 0xbfe918cdde209a91, 0x0, + 0xbfde4bd1cee4aa3a, 0x0, + 0xbfa6f60174b7fe54, 0x0, + 0x3fe23d36a220f401, 0x0, + 0x3fe73e5526800053, 0x0, + 0x3fe0bdf516db50aa, 0x0, + 0xbfaef87aab93c386, 0x0, + 0xbfdccdef180713c1, 0x0, + 0xbfe7a5224d4965bb, 0x0, + 0xbfe041ac4cd81645, 0x0, + 0x3f870d121bb2b99e, 0x0, + 0x3fe37e8d707c0008, 0x0, + 0x3fe5f1109d76ad5b, 0x0, + 0x3fdcaf9246ee4801, 0x0, + 0x3f855db3ed8ca1c4, 0x0, + 0xbfde04af77bc2b4d, 0x0, + 0xbfe38717fdbc292a, 0x0, + 0xbfd9fad82027fbd2, 0x0, + 0xbf8a27bdfd48f2ac, 0x0, + 0x3fe0c8753fefe00e, 0x0, + 0x3fe76fb652dee5f4, 0x0, + 0x3fdb67818b018554, 0x0, + 0x3f9d266bd22f5e22, 0x0, + 0xbfe2bd4923d8d7f1, 0x0, + 0xbfe63779de8e6935, 0x0, + 0xbfdfabbb6b26f34d, 0x0, + 0xbf73e6c3bea9b40e, 0x0, + 0x3fdee7a170db726d, 0x0, + 0x3fe475bf47783873, 0x0, + 0x3fde848082f0da5d, 0x0, + 0xbf9559dee52f4ac5, 0x0, + 0xbfe16ad9ad71a83d, 0x0, + 0xbfe6e5781a22d036, 0x0, + 0xbfdf1e379887a633, 0x0, + 0x3fa78dc5573cb0b4, 0x0, + 0x3fe2a25e8adaa422, 0x0, + 0x3fe7e3bf49f44818, 0x0, + 0x3fe0069899dd0074, 0x0, + 0xbfa4f41f993f5ca2, 0x0, + 0xbfdf87809fb70dbf, 0x0, + 0xbfe772002f99bbbc, 0x0, + 0xbfe3b4047f2b4b06, 0x0, + 0xbfaad6b74b8459f6, 0x0, + 0x3fe0cb7814d2f4ab, 0x0, + 0x3fe334b502302661, 0x0, + 0x3fdcd6c9c0cd697a, 0x0, + 0xbf80bdad14284a59, 0x0, + 0xbfdee5e2d7068992, 0x0, + 0xbfe7fb19a10ba6e7, 0x0, + 0xbfe12e9cd5eea653, 0x0, + 0xbfc07398d0ed6369, 0x0, + 0x3fded9b99043039c, 0x0, + 0x3fe72875012b01a8, 0x0, + 0x3fde5d979847da5b, 0x0, + 0x3f8d4411042fb365, 0x0, + 0xbfdd770275cb459b, 0x0, + 0xbfe6650e8428e3e6, 0x0, + 0xbfdee53967387413, 0x0, + 0x3fa963aaf4bb308b, 0x0, + 0x3fe0f894288dffd1, 0x0, + 0x3fe817fa004cc0a7, 0x0, + 0x3fe14bab682702c8, 0x0, + 0xbfb45a7398e522e9, 0x0, + 0xbfddf0334d7c331c, 0x0, + 0xbfe37b005c6f3582, 0x0, + 0xbfdc855f792fd6e0, 0x0, + 0x3f9544be23a4b4eb, 0x0, + 0x3fdca8ad331f4a92, 0x0, + 0x3fe576e94be48d7f, 0x0, + 0x3fe1c19e6aa04bbe, 0x0, + 0x3fac14027c6395b7, 0x0, + 0xbfe0c2858e1cee6d, 0x0, + 0xbfe8bad6e5bd0df3, 0x0, + 0xbfddb8ba2a98fcc9, 0x0, + 0xbfb3662078e0369c, 0x0, + 0x3fdc5977b7748e94, 0x0, + 0x3fe5de90b10354c6, 0x0, + 0x3fe06a2d9d0230ed, 0x0, + 0xbfa8bfd28ab69e9a, 0x0, + 0xbfde16f93f4dcb8a, 0x0, + 0xbfe83db9de976816, 0x0, + 0xbfddd855dafa501a, 0x0, + 0x3fac02c3f8dfabab, 0x0, + 0x3fdd33495cbe95c6, 0x0, + 0x3fe48ac4c9106681, 0x0, + 0x3fe0f5a685c1c725, 0x0, + 0xbf8fb070bfbfc916, 0x0, + 0xbfddb4053e1fa453, 0x0, + 0xbfe6bf62cead71cb, 0x0, + 0xbfdf3dde12dffe14, 0x0, + 0x3f5eecbea3ccc4f0, 0x0, + 0x3fdc3e3bd541e059, 0x0, + 0x3fe654b21aa140e2, 0x0, + 0x3fdfb977fe4bef59, 0x0, + 0x3fb05a35edfd484d, 0x0, + 0xbfdad601ab005841, 0x0, + 0xbfe55058aab78125, 0x0, + 0xbfdbbca81b461742, 0x0, + 0x3f8299f5ce848bf5, 0x0, + 0x3fe3546932ebd689, 0x0, + 0x3fe7302689c9e1d4, 0x0, + 0x3fdd1b81531830e7, 0x0, + 0xbf9d1747f60926db, 0x0, + 0xbfdbd59de42ed6b5, 0x0, + 0xbfe6c697b61a34fb, 0x0, + 0xbfdfee72878220b3, 0x0, + 0x3fb55d5ce1f0d39b, 0x0, + 0x3fdfae63829093a7, 0x0, + 0x3fe75b8a010fdfb2, 0x0, + 0x3fde40886ecbad13, 0x0, + 0x3f9e8f457a24cccf, 0x0, + 0xbfe26260ab9b75d9, 0x0, + 0xbfe77e8b36dbb975, 0x0, + 0xbfe01237bc8666d4, 0x0, + 0xbfaa1d62b022bba2, 0x0, + 0x3fe081cd75efd839, 0x0, + 0x3fe4bc493461346c, 0x0, + 0x3fe10362a98f3687, 0x0, + 0xbfa3984071b846d2, 0x0, + 0xbfe009665144d453, 0x0, + 0xbfe448fc5d5f9c48, 0x0, + 0xbfe02254330b0a7a, 0x0, + 0xbf904ebc966403ff, 0x0, + 0x3fdbe15f7265e578, 0x0, + 0x3fe6322eb11419b0, 0x0, + 0x3fe052a0493985f2, 0x0, + 0x3fa4eee4ea219ec1, 0x0, + 0xbfe1ed301c337445, 0x0, + 0xbfe5a13d2248e507, 0x0, + 0xbfdf39586c907a3d, 0x0, + 0x3f77cd23a6dfca02, 0x0, + 0x3fdfc098080424c8, 0x0, + 0x3fe5c91238f6fd04, 0x0, + 0x3fe02e2798d85e41, 0x0, + 0xbfbc93b0a934efdd, 0x0, + 0xbfda5eefc723a024, 0x0, + 0xbfe407395ebde075, 0x0, + 0xbfe02831eff01685, 0x0, + 0x3fa0ded275278905, 0x0, + 0x3fdb59fdcc139c57, 0x0, + 0x3fe637dba93c52ce, 0x0, + 0x3fe272c65ec5f207, 0x0, + 0xbfa53725fef78ffa, 0x0, + 0xbfdb2895206ef67b, 0x0, + 0xbfe5c2eaa013f5e9, 0x0, + 0xbfe13f0fbbffbebb, 0x0, + 0x3fa5df9c3f6ea498, 0x0, + 0x3fddd48b0d3cac84, 0x0, + 0x3fe79dcd21310cea, 0x0, + 0x3fe236dc939fb9f7, 0x0, + 0xbf9ec6f03d74e10b, 0x0, + 0xbfdf1af1d87b6479, 0x0, + 0xbfe6bf4f2dc6856a, 0x0, + 0xbfe1a2aa9e307df3, 0x0, + 0xbfa0b4718a6b8ee2, 0x0, + 0x3fdb44529d6f6244, 0x0, + 0x3fe5775f2ee9e354, 0x0, + 0x3fdd0952dced275a, 0x0, + 0x3f19263d8ec4f63a, 0x0, + 0xbfe233b86b866357, 0x0, + 0xbfe7caf021d2de6e, 0x0, + 0xbfe1c65785942352, 0x0, + 0x3f9ce425453327d1, 0x0, + 0x3fdce8838531c764, 0x0, + 0x3fe1a0de76fa8623, 0x0, + 0x3fdf3ed556d261d6, 0x0, + 0x3f7b693473bb315f, 0x0, + 0xbfdf6f0b1ec6a4f7, 0x0, + 0xbfe47d83e2c31d49, 0x0, + 0xbfe04ea4c6c1dbe6, 0x0, + 0x3faee8ba6109a4dd, 0x0, + 0x3fdd8be3a75e5818, 0x0, + 0x3fe80907d0ad2869, 0x0, + 0x3fe0b809349f2356, 0x0, + 0xbfa60db920984fea, 0x0, + 0xbfe2c248a412982e, 0x0, + 0xbfe57609e8283595, 0x0, + 0xbfe1d56f32479698, 0x0, + 0x3fbe3372d2938c5f, 0x0, + 0x3fda2fad07cea97d, 0x0, + 0x3fe89b18d3201693, 0x0, + 0x3fe087f087760b57, 0x0, + 0xbfa5fea7185d8466, 0x0, + 0xbfdfda2cbedad648, 0x0, + 0xbfe37747768e50bc, 0x0, + 0xbfdcba48bc3a7be4, 0x0, + 0xbfa23cf76cdc0e59, 0x0, + 0x3fdf6f8f2ddfaf72, 0x0, + 0x3fe36b995674d472, 0x0, + 0x3fdc5aecaba8618a, 0x0, + 0xbfa0a6a2fc9fcee6, 0x0, + 0xbfe00409e43370fd, 0x0, + 0xbfe664b68fb2e46a, 0x0, + 0xbfddcae3cfa683ea, 0x0, + 0x3f8e4b5f28c62a74, 0x0, + 0x3fe1de7504b34571, 0x0, + 0x3fe41cd829025f72, 0x0, + 0x3fdea4d7bc3a56d0, 0x0, + 0x3f8124605ca661ab, 0x0, + 0xbfe0232ed18f1aab, 0x0, + 0xbfe96a820abf28e2, 0x0, + 0xbfe0183668a45090, 0x0, + 0xbfa081df95172f99, 0x0, + 0x3fdc3f28e5655cd6, 0x0, + 0x3fe560bc89598a2e, 0x0, + 0x3fdfa4b3c4bb87c2, 0x0, + 0xbf9f9c91cea09b58, 0x0, + 0xbfda1eb1d9eb0b80, 0x0, + 0xbfe6db9fd58f1977, 0x0, + 0xbfde833d6b5a3a1f, 0x0, + 0xbf7b3fbb09115822, 0x0, + 0x3fe07ce468a3ee1e, 0x0, + 0x3fe62cac843d5d7a, 0x0, + 0x3fe0783af2145772, 0x0, + 0xbfaa942857013f70, 0x0, + 0xbfe3ce9e05067696, 0x0, + 0xbfe67b5f40cb0157, 0x0, + 0xbfde87e7689bed49, 0x0, + 0x3fa15c1cae1bbc60, 0x0, + 0x3fdea5ca3e0882f5, 0x0, + 0x3fe689e510d7bc7f, 0x0, + 0x3fdc63ea0971c6cf, 0x0, + 0xbf75c6b5a6d09ce2, 0x0, + 0xbfdad85b759f6d57, 0x0, + 0xbfe77497dcd043ce, 0x0, + 0xbfd9ed11d54978f0, 0x0, + 0xbfa93221acf70a1a, 0x0, + 0x3fdbce53639fd9de, 0x0, + 0x3fe5140fead36309, 0x0, + 0x3fdd2c5bfa4a3192, 0x0, + 0xbfb44d18e6053645, 0x0, + 0xbfdde5e1f25743e5, 0x0, + 0xbfe484e9740d9560, 0x0, + 0xbfdefa63daada3fd, 0x0, + 0x3fa3c6f865942a17, 0x0, + 0x3fdc17edf905a382, 0x0, + 0x3fe62baea3df283a, 0x0, + 0x3fe55ff78a21fb5e, 0x0, + 0x3fb458f7c3a643c1, 0x0, + 0xbfe3191bd60e7325, 0x0, + 0xbfe7989ff4f64134, 0x0, + 0xbfda9e9bb407bb61, 0x0, + 0xbfa1dac0ed913ae4, 0x0, + 0x3fdfddbafe510914, 0x0, + 0x3fe745a92a42136a, 0x0, + 0x3fe270a908e92dee, 0x0, + 0xbfa73d53969ea52a, 0x0, + 0xbfe1435936e90d2a, 0x0, + 0xbfe1c0c00e62da6e, 0x0, + 0xbfdb8b01d9036566, 0x0, + 0xbf91c70ee4da7d62, 0x0, + 0x3fe08d93052811bf, 0x0, + 0x3fe65e6514491ff6, 0x0, + 0x3fe0daa8ce607fc9, 0x0, + 0xbfaa2f45ff645221, 0x0, + 0xbfdc0056647f654e, 0x0, + 0xbfe6c4ab6016fa43, 0x0, + 0xbfe00cd13ea06aee, 0x0, + 0x3f795158643d7568, 0x0, + 0x3fdc8222e068803e, 0x0, + 0x3fe213de3292312a, 0x0, + 0x3fe03139743011c8, 0x0, + 0xbfb698a5ad6e1169, 0x0, + 0xbfdea6e4a727d952, 0x0, + 0xbfe8d3c19e2f149c, 0x0, + 0xbfe1f60f82a111d2, 0x0, + 0xbfadad1bba86bd2b, 0x0, + 0x3fdee5530ab1b62d, 0x0, + 0x3fe522862fda60d1, 0x0, + 0x3fe2e8593647914a, 0x0, + 0x3fa2a0f1a9f5c1a9, 0x0, + 0xbfd752c454b5c667, 0x0, + 0xbfe75b37464ae065, 0x0, + 0xbfdea66505260068, 0x0, + 0xbfb7a242045a7f0e, 0x0, + 0x3fdd8dbfbceb0592, 0x0, + 0x3fe80a19b9e06602, 0x0, + 0x3fe053c07e002570, 0x0, + 0x3fb4601c88702328, 0x0, + 0xbfdd2c5baab3d785, 0x0, + 0xbfe5581440879f1e, 0x0, + 0xbfe022060d4a235d, 0x0, + 0xbf7519f212bdfa85, 0x0, + 0x3fe0c38259096ec6, 0x0, + 0x3fe49bdfbfc4765d, 0x0, + 0x3fe259ccb2dfcc33, 0x0, + 0xbf55827272de4ef1, 0x0, + 0xbfe0170e81a568e9, 0x0, + 0xbfe3fd140e7394da, 0x0, + 0xbfe14c127dbb2c0c, 0x0, + 0xbfb7d4426d8a69f1, 0x0, + 0x3fe166460823c425, 0x0, + 0x3fe551bdd1aefe6a, 0x0, + 0x3fdedbbf984c900c, 0x0, + 0xbfb445b8661bcb6b, 0x0, + 0xbfdf16fcd9411d7c, 0x0, + 0xbfe7e45aba11a864, 0x0, + 0xbfde127974d7f809, 0x0, + 0xbfa582d70d962e8d, 0x0, + 0x3fd691736f570cca, 0x0, + 0x3fe5fbf7e3afa163, 0x0, + 0x3fdf1274f509ad40, 0x0, + 0x3f9d09964fa626b7, 0x0, + 0xbfde912ff7f99f41, 0x0, + 0xbfe4ec9cefccef31, 0x0, + 0xbfe1ec3ca4c47fcb, 0x0, + 0x3facbc6d0e3e2b28, 0x0, + 0x3fe0d90366163365, 0x0, + 0x3fe7fa080f68ba38, 0x0, + 0x3fe097339bb431c5, 0x0, + 0xbfbf77e0183ad5e6, 0x0, + 0xbfdeee05045fbe41, 0x0, + 0xbfe7b1c2dcf59521, 0x0, + 0xbfdac6812fd7e33a, 0x0, + 0xbf864b6cd72d48ae, 0x0, + 0x3fdd94160f66a68f, 0x0, + 0x3fe79561b9e8a284, 0x0, + 0x3fdfc0c8809a8c2c, 0x0, + 0x3fb252948fb3a68d, 0x0, + 0xbfe0797188e56840, 0x0, + 0xbfe6660240c5032b, 0x0, + 0xbfe119ab82de5d32, 0x0, + 0x3fa2c7bd97bbd6ad, 0x0, + 0x3fdeb3718ee6fac9, 0x0, + 0x3fe304beef43c6f0, 0x0, + 0x3fe0ba81f0b54646, 0x0, + 0x3f90f24648e27b16, 0x0, + 0xbfe2a18c6b1870dc, 0x0, + 0xbfe320b1a20a4932, 0x0, + 0xbfe1e2bd2afd834e, 0x0, + 0xbf8575d917800778, 0x0, + 0x3fe0bcd32f35e812, 0x0, + 0x3feaecaf02c1aee0, 0x0, + 0x3fe02fd9985c8c27, 0x0, + 0x3f9812506fa89b70, 0x0, + 0xbfdad382911d5c5a, 0x0, + 0xbfe6954e132c3574, 0x0, + 0xbfda1703afe863ae, 0x0, + 0xbf73598296cded10, 0x0, + 0x3fdcc752b89e8961, 0x0, + 0x3fe507246817f4f2, 0x0, + 0x3fe07f5d07bbd921, 0x0, + 0xbfa2e86c9c42aaeb, 0x0, + 0xbfe065d082fa081b, 0x0, + 0xbfe8689fd8f28a07, 0x0, + 0xbfe0e062fb364696, 0x0, + 0xbf2e3fae710f32cf, 0x0, + 0x3fddca194780c7a8, 0x0, + 0x3fe414f015c85d14, 0x0, + 0x3fe24a74ada8381f, 0x0, + 0xbf7a980385298382, 0x0, + 0xbfe09ded174dce90, 0x0, + 0xbfe8f21c57a3d524, 0x0, + 0xbfde631fd5049198, 0x0, + 0x3f9d28e279115e11, 0x0, + 0x3fe06c0c38331f4b, 0x0, + 0x3fe57950213a663b, 0x0, + 0x3fe0090d98eb6ea8, 0x0, + 0x3f97620d9bcf7e0c, 0x0, + 0xbfde01c3c135d519, 0x0, + 0xbfe59a73b4fbf0f6, 0x0, + 0xbfe091022905aaf8, 0x0, + 0x3fa0a0416b57b50c, 0x0, + 0x3fe139e1a69893fe, 0x0, + 0x3fe820534e99ad03, 0x0, + 0x3fe05671a55e84c2, 0x0, + 0xbf87e6f83c559551, 0x0, + 0xbfddfe860a2bbfb0, 0x0, + 0xbfe8dcc222c54299, 0x0, + 0xbfe091421b79346a, 0x0, + 0x3f7208f80417baaa, 0x0, + 0x3fe1d9801a59573f, 0x0, + 0x3fe57c7aa29af2cd, 0x0, + 0x3fdfb0c5e22273c4, 0x0, + 0x3fb3152bd8ee550d, 0x0, + 0xbfdc9ddcce6a1bef, 0x0, + 0xbfe6a6807bb96fad, 0x0, + 0xbfdbf310ee2b3c6b, 0x0, + 0x3f95fad2c2e167ba, 0x0, + 0x3fe2fdf6ba2caa6c, 0x0, + 0x3fe5f2021e479d70, 0x0, + 0x3fde43dec443523a, 0x0, + 0xbf79f5ab1cce4949, 0x0, + 0xbfdb8bacff994189, 0x0, + 0xbfe7c6ddbeacd910, 0x0, + 0xbfdfcb75ac404af1, 0x0, + 0x3f71d76f75ad8f45, 0x0, + 0x3fe03f28acba7394, 0x0, + 0x3fe755cca4d292f7, 0x0, + 0x3fdbdeb0f1c2dc84, 0x0, + 0xbfa03c21e670404e, 0x0, + 0xbfdcece3bb15821c, 0x0, + 0xbfe5f5afa8da1384, 0x0, + 0xbfe1eee3c359c11c, 0x0, + 0xbfb1abea0c653896, 0x0, + 0x3fe059f498470138, 0x0, + 0x3fe7e56916a84fdf, 0x0, + 0x3fdb77a4dfcd8a70, 0x0, + 0xbfaad06a91cbeb11, 0x0, + 0xbfe2d3bb4a0335ec, 0x0, + 0xbfe50d52fdacf5b4, 0x0, + 0xbfd927ff836be19f, 0x0, + 0x3f9c6230ce54b141, 0x0, + 0x3fe0f0d30134df80, 0x0, + 0x3fe69f5d6c69f6e8, 0x0, + 0x3fe0b33e6027c506, 0x0, + 0x3fa0bb178312198f, 0x0, + 0xbfe00b4bc2b47c81, 0x0, + 0xbfe47ddcfde92979, 0x0, + 0xbfd89cbc28c93067, 0x0, + 0x3f615e29e332dfbd, 0x0, + 0x3fdd88999fb4c6a8, 0x0, + 0x3fe737ccc4ff1b2f, 0x0, + 0x3fdf48d7bb33927b, 0x0, + 0x3fa77d07067d16ea, 0x0, + 0xbfde5992551968f8, 0x0, + 0xbfe8847ff1ea7650, 0x0, + 0xbfdd7ed069650426, 0x0, + 0x3fa9c54e90d38845, 0x0, + 0x3fdfe8f0744e5d0e, 0x0, + 0x3fe7f5432ac48cc8, 0x0, + 0x3fe04fc4ebcb4e6d, 0x0, + 0xbf7ab864fa8868ab, 0x0, + 0xbfdba207ba0fb1c1, 0x0, + 0xbfe71faea55f55e9, 0x0, + 0xbfde9572b4b29ecc, 0x0, + 0x3fac5a4cab785716, 0x0, + 0x3fddb2c212101c30, 0x0, + 0x3fe7740de72ed581, 0x0, + 0x3fdb21306e6e0f31, 0x0, + 0xbf8ab3f2ee4dc8c7, 0x0, + 0xbfdb429ab411bd08, 0x0, + 0xbfe8d5203e31bd96, 0x0, + 0xbfe146d65cda9bc4, 0x0, + 0xbfac296fa3955ee8, 0x0, + 0x3fe0abcadd13052e, 0x0, + 0x3fe7a66cb10cf3d4, 0x0, + 0x3fe209253ad909af, 0x0, + 0x3fa05982cd16c409, 0x0, + 0xbfdbe58a4b0bf2d5, 0x0, + 0xbfe6c902b7fb6588, 0x0, + 0xbfdbb6794aa396ef, 0x0, + 0x3f8464bafd44ffe5, 0x0, + 0x3fda99ebf46e409a, 0x0, + 0x3fe92ca01bf16914, 0x0, + 0x3fdb376bedf29a37, 0x0, + 0xbf969cfdbe0f0b95, 0x0, + 0xbfe0594a2622b7e3, 0x0, + 0xbfe7515ca7080dbf, 0x0, + 0xbfe18ab60dd3a62a, 0x0, + 0x3fb6d04130462886, 0x0, + 0x3fe12684087e41cc, 0x0, + 0x3fe7fd6b7b3f4df6, 0x0, + 0x3fddbad5a971452d, 0x0, + 0xbf757b63faa51b3a, 0x0, + 0xbfdd0a54b6850a3f, 0x0, + 0xbfe65be25b86dafb, 0x0, + 0xbfda1441885ba261, 0x0, + 0x3f8192031d3b6114, 0x0, + 0x3fdfb8a0920d0ca7, 0x0, + 0x3fe8ef3bb1594299, 0x0, + 0x3fe076073cc830ec, 0x0, + 0x3fa2a379e847a13a, 0x0, + 0xbfe02c116ee716b9, 0x0, + 0xbfebb51af57d7ed4, 0x0, + 0xbfe071f2cab1952e, 0x0, + 0xbf79b7497949aa03, 0x0, + 0x3fddbe05799f7878, 0x0, + 0x3fe4c685e0cf4839, 0x0, + 0x3fe1db311267747c, 0x0, + 0x3f8fbd673a89f500, 0x0, + 0xbfd7c4eb08f66fef, 0x0, + 0xbfe6c75cc656811f, 0x0, + 0xbfdd2cd709dd648c, 0x0, + 0x3f9da86864ca9e10, 0x0, + 0x3fdda3b5e7f742a0, 0x0, + 0x3fe82a4bfe286806, 0x0, + 0x3fe088a362b2a8bb, 0x0, + 0xbfbe34797d9f5e09, 0x0, + 0xbfdf1762d2ee7214, 0x0, + 0xbfe470eb06b6beb8, 0x0, + 0xbfe1a6c31a7a93b1, 0x0, + 0xbfa1ea2639787449, 0x0, + 0x3fdcc76042749dbe, 0x0, + 0x3fe5df8ada2be99d, 0x0, + 0x3fd818be1f4d335f, 0x0, + 0xbfc5d2c9b79a28ad, 0x0, + 0xbfe082da479cd15e, 0x0, + 0xbfe79624fbc452dc, 0x0, + 0xbfe06e3471673dfc, 0x0, + 0xbf9c462501c53aa4, 0x0, + 0x3fe032977c6ffbb5, 0x0, + 0x3fe48d473b9f4c9b, 0x0, + 0x3fdd0cf3dce4eb84, 0x0, + 0xbfaad931b3b99315, 0x0, + 0xbfdda66db6bad36a, 0x0, + 0xbfe63f81d3d7b9d0, 0x0, + 0xbfe0286a0a6a8e3d, 0x0, + 0xbfab660d92accce1, 0x0, + 0x3fe0aa28605aef03, 0x0, + 0x3fe6b1f55dc51754, 0x0, + 0x3fe1c7cd16e99c62, 0x0, + 0x3f9fc8146a752879, 0x0, + 0xbfdcefab167bf6d3, 0x0, + 0xbfe61cb813c2f5a7, 0x0, + 0xbfe26f2eca2ee733, 0x0, + 0x3fb5adda72b88edf, 0x0, + 0x3fe2b8c8e1d92476, 0x0, + 0x3fe4e0a8a05ae0eb, 0x0, + 0x3fe268c8f2840192, 0x0, + 0xbfa085c97d1c8a57, 0x0, + 0xbfdb3c84a76540ff, 0x0, + 0xbfe6cb723c699000, 0x0, + 0xbfd9b1b9ca98038a, 0x0, + 0xbf83191ccc211854, 0x0, + 0x3fde00e1f1da45d5, 0x0, + 0x3fe5ff1c5dc60f89, 0x0, + 0x3fe158f4d3834d40, 0x0, + 0x3f5abb06e1c6e8db, 0x0, + 0xbfdd9e0223365644, 0x0, + 0xbfe4882c2724c9a3, 0x0, + 0xbfdf8e44cf1d2eb4, 0x0, + 0x3fb91f66ebbb492e, 0x0, + 0x3fe2cb101fec3d64, 0x0, + 0x3fe4644bbb646aa7, 0x0, + 0x3fe0244ad49ef2c1, 0x0, + 0xbfae4a606b3e098c, 0x0, + 0xbfe12075687121db, 0x0, + 0xbfe5e0aa0c75535c, 0x0, + 0xbfdd10038a7c1cc7, 0x0, + 0xbfb3b221193d4488, 0x0, + 0x3fdc7989c8a1d948, 0x0, + 0x3fe635728ab89771, 0x0, + 0x3fe12bba27e51b6c, 0x0, + 0xbf8f30f8b10b80e1, 0x0, + 0xbfdf0984a700b83d, 0x0, + 0xbfe53b76c0f2ee24, 0x0, + 0xbfe1144ce3f45d24, 0x0, + 0x3fb3099e2f703843, 0x0, + 0x3fe3042055f753d1, 0x0, + 0x3fe513e587dbccd8, 0x0, + 0x3fe031a3169625a6, 0x0, + 0xbfa097311be9ca4a, 0x0, + 0xbfdbc99687c05da6, 0x0, + 0xbfe4b64ac7141425, 0x0, + 0xbfdcba49d1c4b741, 0x0, + 0x3fb45f99508187cc, 0x0, + 0x3fdb80a5d1140b9d, 0x0, + 0x3fe5c5372bb7282b, 0x0, + 0x3fe024881be2bb5b, 0x0, + 0xbfb98f3ada629eda, 0x0, + 0xbfe15746087c081a, 0x0, + 0xbfe74526fd134dca, 0x0, + 0xbfe032690c89f51c, 0x0, + 0x3fb17bbbedd9a028, 0x0, + 0x3fe2499c3efd61dc, 0x0, + 0x3fe634df275cfa02, 0x0, + 0x3fe14b7acccc3dc0, 0x0, + 0xbfb109a384bba025, 0x0, + 0xbfe0b3794ff91658, 0x0, + 0xbfe490237887c046, 0x0, + 0xbfdcd4024afcd74a, 0x0, + 0xbfac63b3c8de76a3, 0x0, + 0x3fde66bcedc55562, 0x0, + 0x3fe76a21c20e9863, 0x0, + 0x3fdfc85a60a2a6f9, 0x0, + 0xbf8f654ba257d3b0, 0x0, + 0xbfe0a85bd3834138, 0x0, + 0xbfe5f4639ab3a2a2, 0x0, + 0xbfdfec61f68a1a6c, 0x0, + 0x3f7c474b5f34e384, 0x0, + 0x3fdd1e12378e2792, 0x0, + 0x3fe91e53f63ecef6, 0x0, + 0x3fdf1e7e0b8ee36b, 0x0, + 0xbfa24bdb00e17f1f, 0x0, + 0xbfde22740508c4f9, 0x0, + 0xbfe551a2d776aa33, 0x0, + 0xbfe06fbc1ebeac4e, 0x0, + 0x3f933494dd38273c, 0x0, + 0x3fdf6016784fe30c, 0x0, + 0x3fe553387302563b, 0x0, + 0x3fdcfc579dd9fede, 0x0, + 0xbfac7790986e52a6, 0x0, + 0xbfdfbbe12b6e764e, 0x0, + 0xbfe2165e1b0b6971, 0x0, + 0xbfe01ebe2d6516a5, 0x0, + 0xbf8faba543a95083, 0x0, + 0x3fde8467653d54bf, 0x0, + 0x3fe586dda8d88d51, 0x0, + 0x3fe14bae3dd36fc4, 0x0, + 0x3f8711d47582222a, 0x0, + 0xbfe1f84082459f86, 0x0, + 0xbfe615a6ee01477d, 0x0, + 0xbfdc31ec5fabfaba, 0x0 }; static const uint64_t in_cifft_noisy_1024[2048] = { - 0x3ff92de7e36d859e, 0x0, - 0xbfea82fed3716bb2, 0x3fef1f478d668674, - 0xc000daeec11c5e51, 0xbfd42fa31eb0a387, - 0xbfd8f1a95ee05819, 0xbff13aafca665fb4, - 0x3ff296e6bb6e1f37, 0x3ff99adfcacc65e1, - 0x3f64534ec8384680, 0xbffd7806ca4ff692, - 0x3ffbc3c6708e4497, 0xbfeb48e891660b96, - 0x3fbb7b0bc7a13398, 0x3fd3cebb3a1d45aa, - 0x400198e1e38e1b3e, 0xbfc0da9818fe4a86, - 0xbff6c6a25c494351, 0xbfcba45b3a1d0de7, - 0x3f85fb57509c3800, 0x3fe9fb05092d9da9, - 0xbfe7e4f261dcb920, 0xbff8be348d0f49ac, - 0x4000ad4d03ec1a6c, 0x3ff6d94661d936ea, - 0x3ff72c73ed072470, 0xbfc1c26cbf1b1dce, - 0x3ff1d0afb2a30de8, 0x40033af0b208c025, - 0x3ff48b93a633d039, 0xbff47a83ee98a9a8, - 0x3fce9f5a7c6873b4, 0x3ff022a528419f6e, - 0x3fdcac163f7d7f67, 0xbfcd79da06ed5334, - 0x3fe851f5b38903d3, 0xbfdd666fe3d2a22e, - 0xc008d438ce350004, 0x3feafc7fb910a902, - 0xbff1e6255e2a24b3, 0x3fee5dd0b535fd65, - 0xbff9f4a68e97065c, 0xbfd2a30e5c427e4a, - 0xbfeb32f0a6a65560, 0x3fee0a64aa2e9fef, - 0x3fc9ca9593f1f1ec, 0x3ff4023da20bd6b8, - 0x4000549b72e2502d, 0xbfde93bc9faa8beb, - 0x3ff1b2dc01b216e4, 0x3fd363baa62eaf8e, - 0xbfd609751e00fe2e, 0x3ff2c7f9bf68a2f2, - 0x3ff0ca3b447ba091, 0x3fde631068add90c, - 0x3fe82c7c6f16ceec, 0xc00404067f8d405f, - 0x3ff09f0327769f52, 0xbffaa50b1bfb09e6, - 0xbfe2fa25558e5bb2, 0xbffaa6c0fd3825c6, - 0xbff4ea94117508bf, 0xbff215dcc732eca9, - 0x3ff3ce1282a84731, 0x3fa0e5c4ab0fb32c, - 0xbff4917c7e368840, 0x3ff95cbbc12332cf, - 0x3fda3b0b39616f02, 0xbff2a3270f7ecf9a, - 0xbff2bc72fa47c5b0, 0xbfe02c89ae6d6484, - 0x3fd314db927e8cbd, 0xbff2984d780c5998, - 0xbfdddfc0d61dec7e, 0xbf9b8637316b4240, - 0xbfda0f318755a632, 0x3fd65ebe5c7e2d88, - 0x3fea67a7f0bcebc0, 0x3fd360aec40b3a85, - 0x3ff22ff2867f7d1d, 0x3f9b13e5257caea0, - 0xbfe503609f2e05ab, 0xbfbddca0e824cc34, - 0x3fecee54f46534e2, 0x3fc13af7977ac6da, - 0xc006e7e436405060, 0x3ffbf342c20e43e6, - 0xbff62d9010869304, 0x3fc357a55c4ebc7f, - 0x3fec1460273207ba, 0xbff94039c2f5f408, - 0xbff7010866f6f3e6, 0xbfd5fa4f61a60769, - 0xbfc89f30dea6242a, 0x3ff99930af692474, - 0x3fdd0311e242989d, 0x3ff7cb2cc02c3bfe, - 0x3fb8733046da7cc8, 0x3fb7331f6b359358, - 0x3fe930aa5c30eb58, 0x3ff76c9d3f9e0222, - 0x3fee3a82ce8f3ff8, 0xbfe7965c3ea1fd56, - 0x3fd888b45d8527e8, 0xbfc2b54bfc4e7740, - 0x3ff38d3375226bc6, 0xbfef1a3c6568a40e, - 0xbffdb89764f7d73c, 0xbfefbe3c952a8cbe, - 0x4004da2396d78df4, 0x3ff39d1207bb6f22, - 0xbfe5226c22544013, 0x3fd87f9cc81e2bc2, - 0x3feaafd60cde35d1, 0xbfdff0c252efa5ec, - 0x3fea2101ba55c4cb, 0x3ff22724da5c9efe, - 0x3fc13d2b485281e0, 0x3fe8323c66265762, - 0xbfe35e582c2dfe5e, 0x3fa7a15ef9a1a860, - 0xbfb0def23c8cff30, 0x3f83a5d7a7155640, - 0xc00380b42ceeeb58, 0xbfdf08d884173aef, - 0xbf7110eb74a7c400, 0x3fab20b20ab6df90, - 0xc002e71424472b04, 0xbfd9f5df250fd1d8, - 0xbfe48e83eec865ec, 0xbfc62b9185bd5fcb, - 0xc00181f86d7ae061, 0x4004292c76dd0236, - 0x3ff0f862d3f477ac, 0x3fc2894f5350fa14, - 0x3fec276b3cedae80, 0xbfe1c583c98aeb04, - 0xbfd5fe3283eb2fe6, 0xc00495636ff0a75a, - 0xbfdf3ef9e321a372, 0xbff2e4c25e8aa778, - 0x3fa9232217d165e0, 0x3fca971bb0d64797, - 0x3fe877e5b959a43d, 0x3ff3dd41ed561b70, - 0x3ff0bca4c7cad4a6, 0xbfebbb8425f17f71, - 0xbfd1ea3a3c6391a0, 0x3fc3d8077be08b00, - 0x3fe9e54d2f2f0eed, 0xbfebc498dd09fee2, - 0xbfc5ae4dcbc23410, 0xbfd8134058a643e1, - 0xbff1a58ae0119216, 0xbfe05afa2cd6111e, - 0x4000bd5d354c96d4, 0x4000c90e71892834, - 0xbfce951adb8de180, 0xbf46170f234cc800, - 0xbfd012776ed4966b, 0xbff3f5bb44bbcb80, - 0xbfd4887911432c1a, 0x3fcc72f8d9d98510, - 0xbfd5dd186f3e4f28, 0x3fe6f73cdc87663c, - 0x3fefb53b6d480d2e, 0x3fd11df3993b91a6, - 0xbfeb6f2c5feceb89, 0x3feaeb650133a68c, - 0xbfcd29eb16f63154, 0x3fd989bd79dc90fa, - 0xbfd6646f7ef145dc, 0x3fe001c753623528, - 0xbfd78409f101d946, 0x3fc7bf6132ffb594, - 0x3fe796c4fd9300cd, 0x3ff25b94aa7d2080, - 0xbff5402d0054a25c, 0xbfd9f39f81b93552, - 0x3fec711372d3f8d2, 0xbfcdea963e332614, - 0xc000e20283102f9f, 0xbfeb4fa0735d90bf, - 0x3fa9fd4d8b5a5084, 0xbfec779b317fa40c, - 0xbff6ee879d959286, 0xbff7605212767ca5, - 0x3fe13c0a403114c1, 0xc00466cf67997890, - 0x3ff8e84bb082e39e, 0x3ff3be6087a01b34, - 0x3ff25433b44a9e7b, 0xbfe2e03b4bf69e28, - 0xbfe8adfb9b930018, 0x3fc90b16fd5d57bf, - 0xbfc53b1dadc0a5ca, 0xbfe2892d50e66903, - 0x3fed13aded83d074, 0xc006f30eb5646aec, - 0xbfd50d9b3eba348c, 0x3fe868e4535a7d47, - 0xbfe895e438c36f59, 0xbfefd8c85566f2c2, - 0x3ff1466d78ad6b9e, 0xbfe6d1c4a1c1bba5, - 0x3fee4070ea72462b, 0x3fddadfabec79516, - 0xbfd05f285fcbb684, 0xbff28deef3757322, - 0x3fe7b77f75958509, 0x3fb738f255b5fed6, - 0x3ffaac38007e369a, 0xbfd4be2addffb633, - 0x3fbfd5e940620fb0, 0x3fe2613e25badc59, - 0x3fed14f0e9bfef42, 0xbfea15deea65a162, - 0xbff31559b29ae768, 0x3fc13e1aa43a14bc, - 0x3ff24a06e1ca4262, 0x3ff0c904a4f072a0, - 0xbfe7edecc8318126, 0x3ff26540c213dd95, - 0xbfe89a8e6b23e9c7, 0xbfe1e80ec74c1afc, - 0x3fe39ed239e44c92, 0x3fc0ee454ebe5954, - 0x40026d2c9f0b2d93, 0xbfead873b4b21bd3, - 0x3fdf2dab2c51c6f4, 0x3ff5cd3d971e929a, - 0x3feb7fe7bd028022, 0x3fa124ac1e5eeea2, - 0x3fc48e48985ff928, 0xbfd1ad73eda6c438, - 0xbfa27663da35abc0, 0xbfff039f828347e7, - 0x3fd6bd4f965af76e, 0xbfc606caa14315da, - 0xbfc54dc188baea20, 0x3ffb46fd9f263647, - 0x3fd75ea6f6918dd6, 0x4005cc65752ac38c, - 0xbfdba56d11aea2d9, 0x3f96e440d7fecf00, - 0x3fac356693c57168, 0x3ff15d18a9518f68, - 0xbfed912d46eb8380, 0x3fc77989e1ddc53a, - 0x3ffb4357a302117d, 0x3ff5e70ee145586b, - 0xbfc509e56b47672c, 0x3fd1a972c42e02ed, - 0x40051270612dc0ce, 0xbff13a528ac8915c, - 0x3ff33ada0eeb6e00, 0xc0767d785499e3b0, - 0x3fc8ce9b511529a0, 0x3fb3002040002d20, - 0xbff43115bc4fca02, 0xbfd3a2dc8a6b34b8, - 0xbff8719f1e9c024b, 0x3ffa7843653f6e74, - 0x3fddacdf1d586994, 0x3f87f54c078bc780, - 0x400776c5825cb4c4, 0xbff0f3e389e45e96, - 0xc0002f17c79d55f9, 0xc00018ea1b890b99, - 0x3fed7c5e3e6c936a, 0x3fe88bb0abdf2b1f, - 0xbfd7b03c5ad3cc58, 0x3fd31980c3a3d09d, - 0x3fe3c668eb184e76, 0x3fd6bbdca8476120, - 0xbf7c3ccf49c46100, 0xbff6904cd8d89d8f, - 0x3ff4372e50f4f47c, 0x3fe3a7b4175e0d99, - 0x3fe9fc5f94728f3b, 0x3fef5b8590bdd2f5, - 0x3fe8748e596c4c47, 0xbfe08169c9e33c82, - 0xbfc51b263e469aa8, 0x3ffe773efc63b110, - 0x4006ff0a2e4bdc7d, 0x3ff4d1e0ec7340fe, - 0x3fe678303013f9f1, 0x3fec3aa826baee0a, - 0xbfe5fa3b699a0ef3, 0x3fd76c6a5a422de1, - 0xbfc5364e65769a7f, 0x3fef0120b96776d4, - 0xbfea1864e3acbbc8, 0xbfd061cb70d552a6, - 0xbfe9f9a1203ed892, 0x3ff27abf7afbba88, - 0x3ff59397b828d7dd, 0x3f74bf21a971b760, - 0xbfe921eb6d4e4039, 0xbfbcebb0a5f51814, - 0xbff27a4051553450, 0x3fec972ac7b50cad, - 0x3fb3e102cd581b8c, 0xbff14d32b1c83fcf, - 0x3fdc459cbe5c2ec6, 0xbfc2a8bc5f3c0770, - 0xbfee7ca7d6194ad6, 0xbfd1a374139f53d6, - 0xbff5ebf084a69972, 0xbffa370e07eddaa7, - 0x3fe0b39e4d5c9532, 0xbfd84a2036d6fa02, - 0x3fe19ef1bd921173, 0x3fd7f3ba0239eecc, - 0xbff1448afc38448e, 0xbfe08bc7411c1f24, - 0xbff13227cd94b467, 0x3fcb25263383b3e9, - 0x3fd8b748baeadf1c, 0xbfed4d9f2ba4ed60, - 0x3f8d6bf8f359cba0, 0x3fe0b9edd9b8c4ee, - 0xbfefaf0a3e9a1ae7, 0x3feb64c0b7071742, - 0x3facb000f8353e80, 0x3fcecfc0a4b5011a, - 0xbff9d2bc2462bee8, 0x3ff874e553da40c6, - 0xbfda13a11088a4a7, 0x3fd980516a84003d, - 0xbffec3d92e146883, 0x3fbe0d30fbd95c50, - 0x3ff667fa0a12ed8a, 0xbfe77ddf7fb953b3, - 0x3ff50bdd51138f24, 0xbfe5d567cfe67cec, - 0xbfc90c22ef0d0990, 0xbfbfc95e20304680, - 0x3ff8bf195a74cb76, 0x3fca9448fd4f4684, - 0xbff957307fe9026e, 0xbfdf603742226db0, - 0xbffcf3fa5674fb45, 0xbfd270a14343f6b9, - 0xbfd40e0eb9f5e668, 0xbff777e5fe283911, - 0x3fe2dac611fdc6ca, 0x3fd248cc16aaaacc, - 0x3ffaf51e5174ce74, 0xbfeb52fd57b048e6, - 0xbfb9f3b2fa8168c0, 0x3ff2134443829df7, - 0x3fd60220ef68e560, 0xc0014ebcc09637b6, - 0x3fc2f06e3c059100, 0x3ff9a898035c0b60, - 0x40005968f2ae1841, 0xbfce34256992fcac, - 0x3fd9df8ed55d2947, 0xbfe0f751d269078d, - 0x3fef6d9ac74e6805, 0xbfe80b961e316eb2, - 0x3ff15ea08709b8a7, 0xbfe1ae55a340ea80, - 0x3ff70ac5c6b0687a, 0x3f8cfb8de6e972e0, - 0x4000dbb02d84c5eb, 0xbfe414736f39fbac, - 0xbfe822e9c83269d4, 0x3fd77efb71220c04, - 0xbff04bf13b854a1d, 0x3fed6051817e2d66, - 0x3fc379d5198dfd18, 0xbfe752c22ea142d2, - 0xc0010ab1ea14998c, 0x3fb639d06bfb52bc, - 0x3fd69da853e80c4e, 0x3fee9cd995d12da2, - 0x3f83e48087bd9480, 0x3fe04e8e6ebe9178, - 0xc000398fae5c5dea, 0xbff6c98fdddc83d0, - 0x3ff076da4a0f9e86, 0xbfeea09126bf2a72, - 0x3ff18e0715b659cf, 0xbfe5877b802c9826, - 0x3fedb58195bf484c, 0x3fd87f1f357d4770, - 0x3feafdb9f92a7ed2, 0xbfb02da65d9e7930, - 0xbff0c06bab034230, 0x40010dd9625b7a54, - 0xbff5c0c624da9947, 0xc00c56298231f2ba, - 0xbfd8dd6845a81fe4, 0x3ff98c1f1c208d5a, - 0x3fea25fdda3dbf02, 0xbfeb0cf8f7574e24, - 0xbff1556c7a0f6ed4, 0x3febc15246a967f4, - 0x3fcf9da5feb07406, 0xc00074912b58daee, - 0xbfeaa8433c5b656c, 0xbfc665309df3f05c, - 0x400710fdc783c374, 0x3fdc4ba182f0b472, - 0xbfd4d8ceca5265e8, 0xbfe17120ad445868, - 0x3fc4ea3371470556, 0xbfdd29565055532c, - 0xbfd5c49c8a7a1c79, 0x3fd587166c701411, - 0x3ff0ffee1ede08fc, 0x3ff86efa061b8136, - 0xbfdc650091f30ec6, 0xbfe90c54439c03a6, - 0xbfe0cd6056997542, 0x3febb6d2abbc1899, - 0x3fd5a3bc71afd2d4, 0x4006bd35de480b84, - 0x3fc56d245f2a589c, 0xbff52bffd6d98fca, - 0xc0001cc7a2dcb948, 0xbfe999eda065e3a8, - 0xbff020b3ceaa393e, 0x3fdf71baf89279c0, - 0xbff77fea4b068053, 0x3fe07942e86a23ef, - 0x3fda856675e99227, 0xbff9898379dba678, - 0xbfe796ebc3021fcb, 0x3ff609936c2a122c, - 0x3ffa3dedf8244af0, 0x4003ae0681204361, - 0x3fe4f839cb6c9314, 0xbfef5fa361245574, - 0x3fe9656dc4e1a182, 0x3fe101ff8f3dd6ad, - 0x3ff49767a701f754, 0x40003be88a6f55f0, - 0xc000ddd6fb574c15, 0xbfd6becabaa2a1c6, - 0x3ffbada9b411ce2a, 0xbfe630412cbfa776, - 0x3fd63178bcb2112e, 0x3f835267b284dd80, - 0xbfe9db87d005571f, 0xc000f3c0437d8c18, - 0xbff26e9eea5680fa, 0x3ff55a65b3de1a74, - 0xbffda580632ef6eb, 0xbff9c9329046afcd, - 0xbff599f615f35425, 0x3ff97e9aa57350b8, - 0x40008234c7b27039, 0x3fd7b0dbbfa84494, - 0x4005151f518ca118, 0xbfc1901f0832535e, - 0xbff5041cea1c10e0, 0x3fbc18637dce6358, - 0xbff37ce549663dee, 0x3ff7592892d6f7f7, - 0xbfdcd703d18be462, 0xbfe98de1f7714759, - 0x3fe41bdc3e4fd0cc, 0xbfff3f775cd8c0da, - 0xbff1e7ef1d6aa059, 0x3fc2a991b8c3b4e1, - 0x3fe286dcc43b7f56, 0xbfd9d1c20564b212, - 0xbfd19ae7df5a0f3a, 0xbfddc5a0be51601a, - 0xc0003ad9cf8c3ed2, 0xc0121e3d52499abc, - 0xbfe4afd77e6c8ba7, 0xbfd9b971c652faf9, - 0x3ff5846d0ba43fbb, 0xbfe78a7ec5f4ef0a, - 0xbfd2bcab7fa7de44, 0xbff6c6753fb8839e, - 0x3fe646c2aa637af2, 0xbfdba199ad7178fc, - 0xbfed454ebc111e84, 0xbf8429940996b860, - 0xbfe7d66661fc10b2, 0x4005786512fc8c71, - 0x3fe5a9145999e146, 0x3fdeb29a30f5c9f6, - 0xbfd8146107dcde60, 0x3fe5705f7f03e996, - 0xbfad7b49bebb1000, 0x3fde46702bfcf95f, - 0xbfe644dc70c7440c, 0x3ff37b954a09a76c, - 0x3fa4260dc82b2c30, 0xbfbfc401ffdf07fc, - 0xbff98e61befae3ce, 0xbff99305f87698eb, - 0xbfec9eb8bac3ad87, 0x3feb1b90c7a8de72, - 0xbfea6de9cc3a7674, 0x3ff1c14cef402e1d, - 0x3fef888cfb4ae0e1, 0x3ffc5a941c422a07, - 0xbfe065d5f10d3f46, 0xbfe15914446eb346, - 0x3fefefe90fe96f9e, 0x3fe1817ed26109e3, - 0x3fd2778048cb8ad1, 0xbff08e8b3b2e6062, - 0x3fc2d326d1b620f0, 0x3ffa3822ba432c00, - 0xbfdb221f8ef1701b, 0x3fdd11714c381ea0, - 0xbfe8a7cba09564f6, 0x3fe2426420e464ce, - 0x3feb580a6d63f3dc, 0xbfe1ef05b4d210f3, - 0x3ff9439daeb84bc6, 0x3fd24892391e6d74, - 0x3fedbf15c5530eae, 0x3ff8c323f5332454, - 0x3fe266c78f6e7c1c, 0xc00038ed3a84ac18, - 0xbff04089a83361b4, 0x3fdd1fcfb589ddca, - 0xbff19a5dd7b173be, 0xbfe5501b3481f530, - 0x3fed731a2452feed, 0x3fe197ab9651498c, - 0x3ffd55a5158f40ea, 0xbfb411a1228efea8, - 0xbfcf7e780a15b08a, 0x3fa694bc91bb6d50, - 0xbfc2c105566186f0, 0xbfedb2631bd0bde2, - 0xbff5cdb403a4200d, 0xbfe134952b4a7e3c, - 0xbfebd2ff76b35367, 0xbfec7ef46d53f8e9, - 0x3fc2ecaa8b3cfcde, 0xbff3b4f77067b7b1, - 0xc0008e7d7f3cae4e, 0xbfe26748970a1279, - 0xbfe9958308bec801, 0x3ff8a2a42b6101f0, - 0xbffecbd751ae1a8b, 0x3fe6d06275744369, - 0x3fe9737b59a999df, 0xbff96a69a1b91831, - 0x3ff202fab9cbb9d2, 0xbff540fe4a12f916, - 0x3fb18f9f73ef4cf8, 0x3fe316d9d99da3dd, - 0xbff1ed8cacb8fa00, 0xbfc7cc846522414f, - 0x3fc0c094298cabd4, 0xbff3b31142a50ab0, - 0x3feaecdc22172c70, 0x3fd75cc34d1ae272, - 0xbff1548d8b42d19d, 0x3ff15b3f4f5d3fb6, - 0x401062f4500a96fe, 0x3ff1acbddc9132de, - 0xbfe2348952cff894, 0xbfeeb3690c103498, - 0xbfe85df2f9ed3d35, 0x3fc2c5867d999872, - 0xbfe25e40bce4bc58, 0xbfabff1c3c69cec0, - 0x3fe2ba9556b8320a, 0x3fe4ef0b276302a6, - 0xbfd820575273d86a, 0x3f8663976dc12a40, - 0xbff302ad81fc1aaf, 0xbff2cd4db0ef745c, - 0x3fc8911ba96f8cb0, 0xbff0273325f2748e, - 0xbf895dd1c08f89c0, 0x3fcf5f364fd73c07, - 0x3fdb5fd17b160850, 0x3fbd23e8fab4488a, - 0x3fe118c6dd4c949e, 0x3f679fe0b6ecb400, - 0x3fe078da3afa7869, 0xc001aeac440cb9de, - 0x3fe07d6a3100d472, 0x40016b2cdc06fa76, - 0x3fc2f47bfc51b9b0, 0xbfe7002b61232a20, - 0xbfae2b99ea18a320, 0x3fd46021565b3b90, - 0x3fef006bb5649b2f, 0xbfeb6f49a4ded926, - 0x3f9887b18f4168c0, 0x3fed4eea8019a0ec, - 0xbfc5157c3a23245a, 0xbfb4ea1bfc320a9c, - 0x400051adea3da9d0, 0xbffcd03de8d2cf6a, - 0x3ff5e5f895441e4b, 0x3ff9408d9f799b4e, - 0xbfe1c0d934bbf75c, 0xbfd7ed673c48f674, - 0xbfec8c5b16814d49, 0x40006cfa902b9c4b, - 0xbff350aaab5e714e, 0x3fd437aee97c849e, - 0x3fe7a399d7747d2a, 0x3fefb7beba9dce98, - 0xbfcf23e5bf8d8228, 0xbfe06a55cb0dc20a, - 0x3fe7fc66a77edae7, 0x3fd69447b09fb388, - 0xbffc40df88c2d02c, 0xbffce6651bec3195, - 0xbfec71aec38b4b93, 0xbff394fb410b4b88, - 0xbff1d44fbdd8f567, 0xbfe1599702dd560e, - 0xbfe4cd6510565bd0, 0x3fdf2fb3930e34a2, - 0x3fc8595f523b2ec8, 0xbfe1c9908dd49156, - 0xbfd83fbe064cae44, 0xbff2ea308efaee42, - 0x4002650a138e0d86, 0x3fff306e1ed32087, - 0xbfded408f7cfa350, 0x3fd95044b637d834, - 0xbfee0ccf8b14b01b, 0xbff4f44cb71229d3, - 0x3ff2dc905b50c476, 0x3fd47486d2cb9a4a, - 0xbfea512d3c24382a, 0xbfd86e2438858cff, - 0xbfc3413a48964754, 0x3fda36079aa150a8, - 0xbfd2f7d963717ad5, 0x3ff1b6fe9114c818, - 0xbfe69d8e0eda523b, 0xbff26cb2b602c6f3, - 0x3f71ee7a786fa640, 0xc0030dacef1f1e0d, - 0xbfc3347c44c2315f, 0xbfeedb8b9b8e1f8b, - 0x3fe64f212b02a4f1, 0xbfc9b05a3bc3e327, - 0xbffa636557826452, 0x3fa027b01c5cfea0, - 0xbfb1204701362b60, 0xbfe422a5b38a209b, - 0xbff19d84838c4fa2, 0xbff7f6dd420b2cb3, - 0xbfe5cd25c1861f4f, 0x3fd1dfb26534d720, - 0xbfcb6cef17d6ca30, 0x3fdf611971ab0f7d, - 0x3fd873c4f1e9723e, 0xc00115434cfafae8, - 0xbfefb898458fe78d, 0xbfcaa929fc2ac928, - 0x3fdddb7ca8449796, 0xbfed98b7501b8d48, - 0xbf4fec6ea0f9a800, 0x3fe3d4ceaccd5319, - 0xbff89a7abc997770, 0xbfd10d5aea595c70, - 0x3ff05981198aad16, 0x3fb378dd9f126600, - 0xbff3506ffcc8c4c1, 0xbffc59ca770b0300, - 0x3fe8d38ef5bfce07, 0x3fb5cb5e2ca0faf0, - 0xbff96d1de7431dc2, 0xbff9819c2668cce5, - 0x3fd7986ce555818a, 0xc00e800c1d4772b1, - 0x3ff2d62d8661215c, 0xbfd85d8fab8a023f, - 0x3fe9967c83011ae2, 0x3fe8da125cd7a340, - 0xbfc5b8e8e9956470, 0x3ffb17b6b9973901, - 0xbff2477a7394ae0c, 0xc000591169176b5b, - 0x3fe766b051661fa0, 0x3fddffe9e699f236, - 0xbfdeab0ebafa0b8e, 0x3fe79740e0755938, - 0x3fe0247727aeea18, 0xbff1ba910548672f, - 0xbfe216a2c930b2f0, 0x3fe2d1b3f4780c5d, - 0xbfd1563af85f1f50, 0xbffaa66b12b5fd3c, - 0x3fe1263bac85ecfe, 0x3fcbbe9f7ea6480d, - 0x40023379c6145244, 0xbfd4cfdf41d24012, - 0xbfe7d030612008f0, 0xbfc7f61f9f141334, - 0x3fe6f99eeef32aea, 0xbff7043f51b6af9c, - 0xbfff1656d1339e53, 0x3fc6743f15ea1c46, - 0xbfd40718ac78e62b, 0xc0056a2e06ec029a, - 0x3fb483f1e0e16d40, 0xbfff9cc086093b15, - 0xbfce8797d3efd1af, 0x3ff7b00876dfdb1c, - 0xbfeb2df803d67248, 0xc007df69ef8d5be9, - 0x3feaac57eeb454c6, 0xbfe40f0ddbae42ae, - 0xbfe734f58ed90291, 0xbffbe98a193ec599, - 0x3fbc8beff78539c0, 0xbfee43a0a5c2f2ba, - 0xbff1199c2f53c320, 0xbffcea2311b0568c, - 0xbfd4dd77e4130a3b, 0x3feb71d65712893d, - 0xbfe35bd9a46d0185, 0xbfd8e15a56f4779a, - 0x3fc811f81b668b88, 0xbfe78d8e1f6e1eac, - 0xbfedd72821012114, 0xbffdd6cbb8c43406, - 0xbfe11b60e4c4ff68, 0x3ff50e29d080e1a6, - 0x3fcf2a76fc1c6e68, 0x3fe720a98692c1af, - 0xbfe3792cd5c18e36, 0xbfac19d4d9ca03c0, - 0xc0009da539a11eef, 0xbfe0aeb704497bca, - 0xbff6407760a19526, 0x3ff47d9e498cc818, - 0xbfe6a3376c86a014, 0x3ff0f7475f3de700, - 0x3fe65cbadc5b9282, 0xbff80918046f2bb4, - 0x3fe5d6136ea2d32a, 0x3fc03697931b33c9, - 0x3ff5bc60386054cc, 0x3fe57d9b83d1cb3e, - 0xbfe3e7e30a06027f, 0xbfc8343307617b9b, - 0xbfc48a70ba8b3d94, 0xbfe381819028e6fe, - 0xbfe4692675d531a4, 0x3fc571fed2938b6c, - 0xbfdb85015a46dea2, 0x3fe39dd3748bf96a, - 0x3ffbd7d9e79308e8, 0x4002f794d9b08b12, - 0xbff09414578cc3c6, 0xbfe73fe892617790, - 0x3faa32c0661bc980, 0xbff073e43b735b2e, - 0xbff7e76ac2ac68d1, 0xbff8fb8dc3c3e826, - 0x3ff01e91b094a970, 0x3fe527a9cad66b2c, - 0xc00836ddd00f7ef2, 0x3fec0840111fbf00, - 0xbfd2749104a8f708, 0xbf92565b70ee34c0, - 0xbfe564b95917c336, 0x3fc462b08a8e5552, - 0xc0002d10fee2db6b, 0x3fd0f3e53c19cb02, - 0x3fd8d076094cbef0, 0xbfeb5fca6c09408a, - 0x3fd4afac2f5398c2, 0x3fdc565c18b42bb0, - 0xbfbb975315222ecc, 0xbfabc17732990aa8, - 0xbfe40b3bd7875242, 0x3ff0721bab1b79e8, - 0x3fd71d5d74a065ea, 0x3ff01968c756ac7e, - 0xbfa9fe36067a1e3c, 0x3fcbf8599e78906c, - 0x4004e670f1231a12, 0xbff0fc6d992514d7, - 0xbfe321b0056d58ac, 0xbff840a789b8efe1, - 0x3ff72987b227d8b0, 0xbf8304b73123c3d4, - 0x3fe1d675d0784adc, 0x3fc7caea4ac4576c, - 0xbff41ef8bbc8ab7c, 0xbffba13a1eaf35ee, - 0x3fe1d02cef38064a, 0xbfd00761ab5bdcb4, - 0x3ff436a3296ba8d4, 0xbf97d61e22985a10, - 0x3fd3be5751246a84, 0x3fa54071b89e0c00, - 0x3fed15192bde42ac, 0xbfe230bd499cac82, - 0x3fe50dd696c34fe8, 0x3ff135b4ebb4d8e8, - 0xc00117f7c5b65110, 0x3fd34f84474b9c07, - 0x3ff7a4f7e9cc71be, 0x3fc34ca45890554c, - 0x3fd84a25f032f594, 0xbfd6a9934c93771b, - 0x3fffc13351ad3f8c, 0xbfd4f92558e1a051, - 0xbff998b86e8524f4, 0xbfee79ff764eee5b, - 0xbff97c1d1339e8ca, 0xbffaf6b856578820, - 0xc003737a7de4798b, 0x3fc67c22001d62e0, - 0xbfe246598e71e514, 0x3ff96e36e98367c2, - 0xbfdf62e9fd4a4954, 0x3fa8d78d373cafa8, - 0x3fec4eda1ef17734, 0xbfe3fc292e95eb3a, - 0xbfc2e0a8aa42b6be, 0xbfe92c397c1255e1, - 0xbfeb2646836b47b5, 0xbfd8cfe321aeb282, - 0xbfa11ccdc31c1b30, 0x3fee978236c306c6, - 0xbfda206917e43032, 0x3fba8423d4e30c48, - 0xbfdd1adca61df168, 0xbfec5d6baf2671a3, - 0xbfbb614d3b9705f0, 0x3fe18d4599d23ea8, - 0xbfdbeebf14342ecf, 0xc00a4ab8e7e191ba, - 0xbff70b720fe8c43a, 0xbfb5313910015d54, - 0x3fb217dde46064d0, 0x3ff21a2a14ab2e20, - 0xbfe4537c93b60a7d, 0x3fcadbcebbcceba4, - 0x3ffbfa8f5e1e5bd2, 0x3ffcadbac923a438, - 0xbff0f9ceb72c7bb6, 0x3fe778bb2aa365cb, - 0xbfd123ad43133019, 0xbfcd12118e619350, - 0x3fde2a350c994d60, 0xbff7ab248ce4a006, - 0xbfd8a4b2ba555cc1, 0x3fd8e7a074ab1045, - 0x3fe2dac085382bd6, 0x3ffe5c4b80ad3c90, - 0xbfec5ce9bf2cb8fc, 0x3ff4fb1258a398be, - 0xbffcdbb219093cfa, 0xbfebcdf819b8660a, - 0xbfdb5deb57dc0174, 0xbf8bff9e9f87a080, - 0xbffad177c1639cdc, 0x3fbdf7c071a31266, - 0xc000da9320f9c547, 0x3ffe93b0457f4308, - 0xc000a97ebec5da84, 0xbfef3841835285fe, - 0x3fe9420443890274, 0x3ff189da7c95a835, - 0x3ff72f23366c7b75, 0x3feb6a5a17036af3, - 0xbfd08296d455e7a6, 0xbff69009b7b6c286, - 0xbfe467895b77756a, 0x3fe9bd2aa86ff4eb, - 0x3fe63f3e10507002, 0x3fe4bb994d01a52a, - 0xbff80a66eb5de22e, 0xbf922a132c8b7aa0, - 0xbfe75b9fd5586b93, 0xc0077cf97a58b682, - 0x3ff03789c09027c5, 0x3ff3a287077b9658, - 0x3ffec626e21aa5eb, 0xc00368b447ec5229, - 0xbff3cf5b603bf058, 0xbffccb86d82b14db, - 0x3feb59c98217c3c4, 0x3fea2da988cb94dd, - 0x3f9d98c4b94ccd20, 0xbfe4a8f526f68d9e, - 0x3ff362920c9c6713, 0x3fd09cf2466a47e0, - 0x3ffa1b3c18843656, 0x3fa2e4efba2c54d0, - 0x3fc7bb02eff20e08, 0x3fee1005ad2d147e, - 0xbff7ba3aaa6bc816, 0x3ffeb3399c2a8bf6, - 0x3ffade25b724c054, 0x4003e8fb3d0a0f18, - 0x400394cfb50ac2fa, 0x3ff6992170612628, - 0x3fc6a02490d0f336, 0xc008ae7dc0b53618, - 0xbfe4d21240f68cd7, 0xbfdb3b51a3f539f9, - 0xbfd7a004ccd67f56, 0x3fe1825bd1604992, - 0x3fed6cea988ca82c, 0x3fe5b311c21930c0, - 0x3ff1a00d5dae891e, 0x3fda9d20533d5672, - 0x3fb4c5bfb59ec110, 0x3ffb36c423bd529e, - 0x3ff53a0d90a3c7f1, 0x40094cc10d9d28ec, - 0x3fea31dab63abae9, 0xbfe49a8614d2be2b, - 0xbff5c0cd24abad66, 0xbffcbe3c6ea25672, - 0x3f9808a353508910, 0x3ff79c14af25b005, - 0xbfe1018604356b6a, 0x3fec2f18a2f73003, - 0x3fecbd0a999f96dc, 0xbfe9246cdca78fb9, - 0x3fe9b2ae2a16a463, 0x3fc0a04215f64ba1, - 0xbff09ab0aefc0df6, 0xbfedcda4bad325e3, - 0x3fd1d00044d29e00, 0x3fc20539d6a2c346, - 0x3fd62030f49bc434, 0xbfaf102b377ab2c0, - 0xbfec40f98f6a692c, 0xbfe3d16991b4d855, - 0x3fd3a10bc7b2c1b9, 0x3fd44eb9768ef44f, - 0xbfe481854f13cef2, 0xbff221616d401c8a, - 0xbff71252a4ee6e7a, 0xbf9ecb1a907f0910, - 0xbfd9d6442dc00113, 0x3ff7596f1261e3da, - 0x3fcd9f96eafcb2c0, 0xbff7a784a5ad2506, - 0xbfe0b21e06549402, 0x3fe04fcc420366c4, - 0x3fff0fba11750eb8, 0x3fde475b557ec594, - 0x3ff44d7af3f533e0, 0xbfcbc5c9398511c4, - 0xc002d85d6a8ecb72, 0xbfe175e82187dc48, - 0x3fef21d9fde8af10, 0xbfc570028c5baef9, - 0x3fd5cfd4c792b5c8, 0x3fc745da1d656e78, - 0x3fd816ebf0b8e03c, 0xbfe05f58d1963c15, - 0xbff1b400072bb3f2, 0x3feafacd01e2e96e, - 0x3fd759964aaca1c4, 0x3fc4b42b09d4f970, - 0xbf9504e7ea4ce980, 0x4001d9eef1ce2ea6, - 0x3fde18f02ced7b28, 0x3fe7bb9a93678302, - 0x3fe097fbbf465d72, 0xbfcf523e8f0b537c, - 0xbfe4a42aeb7f18dd, 0x3ff73d9942e7cdc4, - 0x3ff348e98694e6e9, 0xbfa8fb2946297670, - 0x3f9a58c363b23ff0, 0x3fea102a7ec49596, - 0x3ffd50bdc223077a, 0xc000f54c71114626, - 0xbfeaf5f0167d145e, 0xbffa80f8f663a673, - 0x3ff5ce3afa344661, 0x3ff60e4f75be62ce, - 0xbfb252ede037e558, 0xbf92012e533f4b08, - 0xbfd4c717a063fcb7, 0xbffcc8e8aa8bff2d, - 0xbfec6915785166da, 0xbf6f71840e833d00, - 0x3ff860b896106941, 0xbfe7d6b2980a32b4, - 0xbfd2d6ab872db368, 0x3fe851cd309c72b2, - 0x3fe267a335f7717b, 0xbfe153259154cc06, - 0xbfc15d3c3d2879f4, 0x3fcc90266c960f50, - 0x3ff7dbf236701fc3, 0xbfc357eef65ebbe8, - 0xbfed01c90f3282d4, 0xbfdcf8cb6952b568, - 0x3fe75cc88a4c1210, 0xbfb3f908ed0f4794, - 0xbffefab7e89dac0c, 0x3fa9a1e57020e2fe, - 0x3ff47a614421e29d, 0xbffda9f5da2eb810, - 0x3ffc880b739e63ce, 0xbfd87a625649a318, - 0x3fef432908b77fc8, 0xbfd2bc10ceeaff64, - 0x3fde73944069cd3f, 0x3fead44899f3e106, - 0xbfe0ef92d1c40cd0, 0xbfd8f27ea8c63993, - 0x3fdf79c69a00dea4, 0xbff42e51fc959ce4, - 0x4001ea1adebf4d40, 0x4003d2990218bb4e, - 0x3fd667f259db3e78, 0x0, - 0x4001ea1adebf4d42, 0xc003d2990218bb4b, - 0x3fdf79c69a00dea0, 0x3ff42e51fc959ce4, - 0xbfe0ef92d1c40cca, 0x3fd8f27ea8c63994, - 0x3fde73944069cd40, 0xbfead44899f3e106, - 0x3fef432908b77fc4, 0x3fd2bc10ceeaff6e, - 0x3ffc880b739e63cd, 0x3fd87a625649a31c, - 0x3ff47a614421e29a, 0x3ffda9f5da2eb812, - 0xbffefab7e89dac0c, 0xbfa9a1e57020e378, - 0x3fe75cc88a4c120e, 0x3fb3f908ed0f47a2, - 0xbfed01c90f3282d3, 0x3fdcf8cb6952b55e, - 0x3ff7dbf236701fc0, 0x3fc357eef65ebbf4, - 0xbfc15d3c3d2879e4, 0xbfcc90266c960f5c, - 0x3fe267a335f7716d, 0x3fe153259154cc06, - 0xbfd2d6ab872db362, 0xbfe851cd309c72ac, - 0x3ff860b89610693b, 0x3fe7d6b2980a32b8, - 0xbfec6915785166db, 0x3f6f71840e833f00, - 0xbfd4c717a063fcc5, 0x3ffcc8e8aa8bff2c, - 0xbfb252ede037e548, 0x3f92012e533f4b08, - 0x3ff5ce3afa344664, 0xbff60e4f75be62c7, - 0xbfeaf5f0167d1464, 0x3ffa80f8f663a676, - 0x3ffd50bdc2230774, 0x4000f54c71114627, - 0x3f9a58c363b24080, 0xbfea102a7ec49597, - 0x3ff348e98694e6e8, 0x3fa8fb29462976d0, - 0xbfe4a42aeb7f18d5, 0xbff73d9942e7cdc3, - 0x3fe097fbbf465d71, 0x3fcf523e8f0b5374, - 0x3fde18f02ced7b22, 0xbfe7bb9a93678307, - 0xbf9504e7ea4ce840, 0xc001d9eef1ce2ea6, - 0x3fd759964aaca1d5, 0xbfc4b42b09d4f970, - 0xbff1b400072bb3f2, 0xbfeafacd01e2e96d, - 0x3fd816ebf0b8e027, 0x3fe05f58d1963c1d, - 0x3fd5cfd4c792b5cc, 0xbfc745da1d656e70, - 0x3fef21d9fde8af0e, 0x3fc570028c5baf0d, - 0xc002d85d6a8ecb70, 0x3fe175e82187dc46, - 0x3ff44d7af3f533e0, 0x3fcbc5c9398511dc, - 0x3fff0fba11750eb8, 0xbfde475b557ec57c, - 0xbfe0b21e065493fe, 0xbfe04fcc420366c9, - 0x3fcd9f96eafcb294, 0x3ff7a784a5ad2503, - 0xbfd9d6442dc00104, 0xbff7596f1261e3d9, - 0xbff71252a4ee6e78, 0x3f9ecb1a907f07b0, - 0xbfe481854f13cef2, 0x3ff221616d401c8a, - 0x3fd3a10bc7b2c1bc, 0xbfd44eb9768ef445, - 0xbfec40f98f6a692c, 0x3fe3d16991b4d854, - 0x3fd62030f49bc42c, 0x3faf102b377ab300, - 0x3fd1d00044d29df6, 0xbfc20539d6a2c321, - 0xbff09ab0aefc0dfa, 0x3fedcda4bad325dd, - 0x3fe9b2ae2a16a460, 0xbfc0a04215f64b76, - 0x3fecbd0a999f96de, 0x3fe9246cdca78fb7, - 0xbfe1018604356b6a, 0xbfec2f18a2f73003, - 0x3f9808a3535089a0, 0xbff79c14af25b004, - 0xbff5c0cd24abad6a, 0x3ffcbe3c6ea25670, - 0x3fea31dab63abae4, 0x3fe49a8614d2be2a, - 0x3ff53a0d90a3c7f6, 0xc0094cc10d9d28eb, - 0x3fb4c5bfb59ec148, 0xbffb36c423bd529b, - 0x3ff1a00d5dae8920, 0xbfda9d20533d5661, - 0x3fed6cea988ca82b, 0xbfe5b311c21930c4, - 0xbfd7a004ccd67f52, 0xbfe1825bd1604993, - 0xbfe4d21240f68cd7, 0x3fdb3b51a3f539fc, - 0x3fc6a02490d0f304, 0x4008ae7dc0b53619, - 0x400394cfb50ac2fc, 0xbff6992170612623, - 0x3ffade25b724c057, 0xc003e8fb3d0a0f16, - 0xbff7ba3aaa6bc811, 0xbffeb3399c2a8bf8, - 0x3fc7bb02eff20e08, 0xbfee1005ad2d1480, - 0x3ffa1b3c18843656, 0xbfa2e4efba2c5490, - 0x3ff362920c9c6715, 0xbfd09cf2466a47e0, - 0x3f9d98c4b94ccbf0, 0x3fe4a8f526f68d9b, - 0x3feb59c98217c3c4, 0xbfea2da988cb94d2, - 0xbff3cf5b603bf05a, 0x3ffccb86d82b14d8, - 0x3ffec626e21aa5e8, 0x400368b447ec522c, - 0x3ff03789c09027c8, 0xbff3a287077b9657, - 0xbfe75b9fd5586b9b, 0x40077cf97a58b680, - 0xbff80a66eb5de231, 0x3f922a132c8b79c8, - 0x3fe63f3e10507009, 0xbfe4bb994d01a528, - 0xbfe467895b77756c, 0xbfe9bd2aa86ff4f1, - 0xbfd08296d455e7bc, 0x3ff69009b7b6c286, - 0x3ff72f23366c7b76, 0xbfeb6a5a17036af0, - 0x3fe9420443890276, 0xbff189da7c95a832, - 0xc000a97ebec5da84, 0x3fef3841835285f4, - 0xc000da9320f9c546, 0xbffe93b0457f430c, - 0xbffad177c1639cde, 0xbfbdf7c071a312c0, - 0xbfdb5deb57dc0177, 0x3f8bff9e9f87a040, - 0xbffcdbb219093cfc, 0x3febcdf819b86602, - 0xbfec5ce9bf2cb8f8, 0xbff4fb1258a398be, - 0x3fe2dac085382bda, 0xbffe5c4b80ad3c8c, - 0xbfd8a4b2ba555cc6, 0xbfd8e7a074ab1049, - 0x3fde2a350c994d4e, 0x3ff7ab248ce4a004, - 0xbfd123ad43133012, 0x3fcd12118e619332, - 0xbff0f9ceb72c7bb4, 0xbfe778bb2aa365c7, - 0x3ffbfa8f5e1e5bd2, 0xbffcadbac923a434, - 0xbfe4537c93b60a77, 0xbfcadbcebbccebb4, - 0x3fb217dde4606510, 0xbff21a2a14ab2e22, - 0xbff70b720fe8c43a, 0x3fb5313910015d68, - 0xbfdbeebf14342ef4, 0x400a4ab8e7e191bb, - 0xbfbb614d3b9705c0, 0xbfe18d4599d23eae, - 0xbfdd1adca61df172, 0x3fec5d6baf2671a2, - 0xbfda206917e43026, 0xbfba8423d4e30c38, - 0xbfa11ccdc31c1b60, 0xbfee978236c306c4, - 0xbfeb2646836b47b6, 0x3fd8cfe321aeb26c, - 0xbfc2e0a8aa42b6ca, 0x3fe92c397c1255e5, - 0x3fec4eda1ef17734, 0x3fe3fc292e95eb44, - 0xbfdf62e9fd4a494c, 0xbfa8d78d373cafe0, - 0xbfe246598e71e509, 0xbff96e36e98367bf, - 0xc003737a7de4798b, 0xbfc67c22001d62fc, - 0xbff97c1d1339e8ce, 0x3ffaf6b85657881e, - 0xbff998b86e8524f8, 0x3fee79ff764eee55, - 0x3fffc13351ad3f8a, 0x3fd4f92558e1a06a, - 0x3fd84a25f032f590, 0x3fd6a9934c937717, - 0x3ff7a4f7e9cc71c0, 0xbfc34ca45890552d, - 0xc00117f7c5b65112, 0xbfd34f84474b9c19, - 0x3fe50dd696c34fee, 0xbff135b4ebb4d8e4, - 0x3fed15192bde42a5, 0x3fe230bd499cac81, - 0x3fd3be5751246a7c, 0xbfa54071b89e0ba0, - 0x3ff436a3296ba8d4, 0x3f97d61e22985ac0, - 0x3fe1d02cef38064a, 0x3fd00761ab5bdcba, - 0xbff41ef8bbc8ab7e, 0x3ffba13a1eaf35ea, - 0x3fe1d675d0784ade, 0xbfc7caea4ac45774, - 0x3ff72987b227d8af, 0x3f8304b73123c578, - 0xbfe321b0056d58ad, 0x3ff840a789b8efe2, - 0x4004e670f1231a12, 0x3ff0fc6d992514df, - 0xbfa9fe36067a1e64, 0xbfcbf8599e789062, - 0x3fd71d5d74a065f8, 0xbff01968c756ac7b, - 0xbfe40b3bd787523d, 0xbff0721bab1b79e8, - 0xbfbb975315222ecc, 0x3fabc17732990a80, - 0x3fd4afac2f5398bb, 0xbfdc565c18b42bb6, - 0x3fd8d076094cbeec, 0x3feb5fca6c09408e, - 0xc0002d10fee2db6b, 0xbfd0f3e53c19cb04, - 0xbfe564b95917c33a, 0xbfc462b08a8e5572, - 0xbfd2749104a8f70c, 0x3f92565b70ee3480, - 0xc00836ddd00f7f00, 0xbfec0840111fbf00, - 0x3ff01e91b094a96f, 0xbfe527a9cad66b26, - 0xbff7e76ac2ac68d4, 0x3ff8fb8dc3c3e824, - 0x3faa32c0661bc980, 0x3ff073e43b735b32, - 0xbff09414578cc3c9, 0x3fe73fe892617785, - 0x3ffbd7d9e79308e8, 0xc002f794d9b08b11, - 0xbfdb85015a46dea0, 0xbfe39dd3748bf96c, - 0xbfe4692675d531a6, 0xbfc571fed2938b74, - 0xbfc48a70ba8b3da8, 0x3fe381819028e700, - 0xbfe3e7e30a060282, 0x3fc8343307617b85, - 0x3ff5bc60386054cd, 0xbfe57d9b83d1cb42, - 0x3fe5d6136ea2d328, 0xbfc03697931b33ad, - 0x3fe65cbadc5b9279, 0x3ff80918046f2bb6, - 0xbfe6a3376c86a017, 0xbff0f7475f3de701, - 0xbff6407760a19523, 0xbff47d9e498cc818, - 0xc0009da539a11eef, 0x3fe0aeb704497bc4, - 0xbfe3792cd5c18e33, 0x3fac19d4d9ca03c0, - 0x3fcf2a76fc1c6e79, 0xbfe720a98692c1ac, - 0xbfe11b60e4c4ff60, 0xbff50e29d080e1aa, - 0xbfedd72821012120, 0x3ffdd6cbb8c43406, - 0x3fc811f81b668b9a, 0x3fe78d8e1f6e1eb1, - 0xbfe35bd9a46d018a, 0x3fd8e15a56f477a0, - 0xbfd4dd77e4130a2e, 0xbfeb71d65712893a, - 0xbff1199c2f53c322, 0x3ffcea2311b0568a, - 0x3fbc8beff785399c, 0x3fee43a0a5c2f2ba, - 0xbfe734f58ed90299, 0x3ffbe98a193ec598, - 0x3feaac57eeb454c8, 0x3fe40f0ddbae42b5, - 0xbfeb2df803d67257, 0x4007df69ef8d5be8, - 0xbfce8797d3efd1a7, 0xbff7b00876dfdb1e, - 0x3fb483f1e0e16cf8, 0x3fff9cc086093b15, - 0xbfd40718ac78e63e, 0x40056a2e06ec0299, - 0xbfff1656d1339e51, 0xbfc6743f15ea1c63, - 0x3fe6f99eeef32ae4, 0x3ff7043f51b6af9c, - 0xbfe7d030612008ee, 0x3fc7f61f9f141318, - 0x40023379c6145244, 0x3fd4cfdf41d24028, - 0x3fe1263bac85ecff, 0xbfcbbe9f7ea64802, - 0xbfd1563af85f1f52, 0x3ffaa66b12b5fd3e, - 0xbfe216a2c930b2f0, 0xbfe2d1b3f4780c58, - 0x3fe0247727aeea1a, 0x3ff1ba9105486731, - 0xbfdeab0ebafa0b89, 0xbfe79740e0755941, - 0x3fe766b051661fa0, 0xbfddffe9e699f248, - 0xbff2477a7394ae12, 0x4000591169176b5a, - 0xbfc5b8e8e9956474, 0xbffb17b6b9973900, - 0x3fe9967c83011ae4, 0xbfe8da125cd7a33a, - 0x3ff2d62d8661215b, 0x3fd85d8fab8a023d, - 0x3fd7986ce555816e, 0x400e800c1d4772b0, - 0xbff96d1de7431dc7, 0x3ff9819c2668ccdf, - 0x3fe8d38ef5bfce08, 0xbfb5cb5e2ca0fabc, - 0xbff3506ffcc8c4c2, 0x3ffc59ca770b02ff, - 0x3ff05981198aad14, 0xbfb378dd9f1265c0, - 0xbff89a7abc997770, 0x3fd10d5aea595c62, - 0xbf4fec6ea0f99000, 0xbfe3d4ceaccd5319, - 0x3fdddb7ca844978d, 0x3fed98b7501b8d4d, - 0xbfefb898458fe78f, 0x3fcaa929fc2ac912, - 0x3fd873c4f1e97238, 0x400115434cfafae6, - 0xbfcb6cef17d6ca3c, 0xbfdf611971ab0f77, - 0xbfe5cd25c1861f4b, 0xbfd1dfb26534d724, - 0xbff19d84838c4fa5, 0x3ff7f6dd420b2cb1, - 0xbfb1204701362b70, 0x3fe422a5b38a209c, - 0xbffa636557826455, 0xbfa027b01c5cff20, - 0x3fe64f212b02a4f2, 0x3fc9b05a3bc3e31a, - 0xbfc3347c44c2315f, 0x3feedb8b9b8e1f86, - 0x3f71ee7a786f9f00, 0x40030dacef1f1e0c, - 0xbfe69d8e0eda5239, 0x3ff26cb2b602c6f2, - 0xbfd2f7d963717ad5, 0xbff1b6fe9114c817, - 0xbfc3413a4896475a, 0xbfda36079aa150ab, - 0xbfea512d3c243828, 0x3fd86e2438858d00, - 0x3ff2dc905b50c479, 0xbfd47486d2cb9a48, - 0xbfee0ccf8b14b01f, 0x3ff4f44cb71229d1, - 0xbfded408f7cfa351, 0xbfd95044b637d840, - 0x4002650a138e0d88, 0xbfff306e1ed32086, - 0xbfd83fbe064cae50, 0x3ff2ea308efaee42, - 0x3fc8595f523b2ece, 0x3fe1c9908dd49154, - 0xbfe4cd6510565bd2, 0xbfdf2fb3930e34a8, - 0xbff1d44fbdd8f567, 0x3fe1599702dd5607, - 0xbfec71aec38b4b97, 0x3ff394fb410b4b86, - 0xbffc40df88c2d02e, 0x3ffce6651bec3192, - 0x3fe7fc66a77edaea, 0xbfd69447b09fb390, - 0xbfcf23e5bf8d8226, 0x3fe06a55cb0dc208, - 0x3fe7a399d7747d31, 0xbfefb7beba9dce95, - 0xbff350aaab5e714e, 0xbfd437aee97c84a0, - 0xbfec8c5b16814d3c, 0xc0006cfa902b9c4e, - 0xbfe1c0d934bbf75c, 0x3fd7ed673c48f670, - 0x3ff5e5f895441e4c, 0xbff9408d9f799b4a, - 0x400051adea3da9ce, 0x3ffcd03de8d2cf6e, - 0xbfc5157c3a232476, 0x3fb4ea1bfc320a80, - 0x3f9887b18f416940, 0xbfed4eea8019a0e7, - 0x3fef006bb5649b2a, 0x3feb6f49a4ded92d, - 0xbfae2b99ea18a2d0, 0xbfd46021565b3b88, - 0x3fc2f47bfc51b9bc, 0x3fe7002b61232a1b, - 0x3fe07d6a3100d47c, 0xc0016b2cdc06fa75, - 0x3fe078da3afa7866, 0x4001aeac440cb9df, - 0x3fe118c6dd4c94a0, 0xbf679fe0b6ecb600, - 0x3fdb5fd17b16084a, 0xbfbd23e8fab44858, - 0xbf895dd1c08f8ac0, 0xbfcf5f364fd73c10, - 0x3fc8911ba96f8c95, 0x3ff0273325f2748f, - 0xbff302ad81fc1ab2, 0x3ff2cd4db0ef745c, - 0xbfd820575273d86a, 0xbf8663976dc12a00, - 0x3fe2ba9556b83206, 0xbfe4ef0b2763029e, - 0xbfe25e40bce4bc5c, 0x3fabff1c3c69ceb0, - 0xbfe85df2f9ed3d34, 0xbfc2c5867d999888, - 0xbfe2348952cff898, 0x3feeb3690c103494, - 0x401062f4500a96fe, 0xbff1acbddc9132d6, - 0xbff1548d8b42d198, 0xbff15b3f4f5d3fb9, - 0x3feaecdc22172c73, 0xbfd75cc34d1ae272, - 0x3fc0c094298cabaa, 0x3ff3b31142a50ab0, - 0xbff1ed8cacb8fa03, 0x3fc7cc846522414f, - 0x3fb18f9f73ef4cb4, 0xbfe316d9d99da3dd, - 0x3ff202fab9cbb9d0, 0x3ff540fe4a12f916, - 0x3fe9737b59a999d6, 0x3ff96a69a1b91832, - 0xbffecbd751ae1a88, 0xbfe6d06275744370, - 0xbfe9958308bec7fa, 0xbff8a2a42b6101f1, - 0xc0008e7d7f3cae4e, 0x3fe26748970a1277, - 0x3fc2ecaa8b3cfcde, 0x3ff3b4f77067b7b1, - 0xbfebd2ff76b3536c, 0x3fec7ef46d53f8e2, - 0xbff5cdb403a4200f, 0x3fe134952b4a7e3c, - 0xbfc2c105566186f0, 0x3fedb2631bd0bddf, - 0xbfcf7e780a15b074, 0xbfa694bc91bb6d48, - 0x3ffd55a5158f40ea, 0x3fb411a1228efea4, - 0x3fed731a2452fef4, 0xbfe197ab96514984, - 0xbff19a5dd7b173c2, 0x3fe5501b3481f52c, - 0xbff04089a83361b2, 0xbfdd1fcfb589ddd4, - 0x3fe266c78f6e7c17, 0x400038ed3a84ac18, - 0x3fedbf15c5530eb2, 0xbff8c323f5332453, - 0x3ff9439daeb84bc6, 0xbfd24892391e6d6c, - 0x3feb580a6d63f3de, 0x3fe1ef05b4d210f6, - 0xbfe8a7cba09564f0, 0xbfe2426420e464d3, - 0xbfdb221f8ef17023, 0xbfdd11714c381ea6, - 0x3fc2d326d1b620f0, 0xbffa3822ba432c00, - 0x3fd2778048cb8ac5, 0x3ff08e8b3b2e6062, - 0x3fefefe90fe96f9e, 0xbfe1817ed26109e2, - 0xbfe065d5f10d3f4e, 0x3fe15914446eb343, - 0x3fef888cfb4ae0e3, 0xbffc5a941c422a07, - 0xbfea6de9cc3a7670, 0xbff1c14cef402e20, - 0xbfec9eb8bac3ad88, 0xbfeb1b90c7a8de78, - 0xbff98e61befae3d0, 0x3ff99305f87698ea, - 0x3fa4260dc82b2c50, 0x3fbfc401ffdf07e0, - 0xbfe644dc70c74405, 0xbff37b954a09a76a, - 0xbfad7b49bebb0f90, 0xbfde46702bfcf95c, - 0xbfd8146107dcde5b, 0xbfe5705f7f03e997, - 0x3fe5a9145999e146, 0xbfdeb29a30f5c9f5, - 0xbfe7d66661fc10aa, 0xc005786512fc8c71, - 0xbfed454ebc111e81, 0x3f8429940996b840, - 0x3fe646c2aa637af2, 0x3fdba199ad717904, - 0xbfd2bcab7fa7de44, 0x3ff6c6753fb883a0, - 0x3ff5846d0ba43fba, 0x3fe78a7ec5f4ef0f, - 0xbfe4afd77e6c8ba2, 0x3fd9b971c652faf6, - 0xc0003ad9cf8c3ed8, 0x40121e3d52499abb, - 0xbfd19ae7df5a0f44, 0x3fddc5a0be516012, - 0x3fe286dcc43b7f51, 0x3fd9d1c20564b21a, - 0xbff1e7ef1d6aa05c, 0xbfc2a991b8c3b4e1, - 0x3fe41bdc3e4fd0c6, 0x3fff3f775cd8c0d8, - 0xbfdcd703d18be460, 0x3fe98de1f7714757, - 0xbff37ce549663deb, 0xbff7592892d6f7f8, - 0xbff5041cea1c10e0, 0xbfbc18637dce6378, - 0x4005151f518ca117, 0x3fc1901f08325380, - 0x40008234c7b27039, 0xbfd7b0dbbfa84489, - 0xbff599f615f3541f, 0xbff97e9aa57350b9, - 0xbffda580632ef6ef, 0x3ff9c9329046afc9, - 0xbff26e9eea5680f6, 0xbff55a65b3de1a7a, - 0xbfe9db87d0055723, 0x4000f3c0437d8c18, - 0x3fd63178bcb21128, 0xbf835267b284db00, - 0x3ffbada9b411ce26, 0x3fe630412cbfa77c, - 0xc000ddd6fb574c16, 0x3fd6becabaa2a1b2, - 0x3ff49767a701f759, 0xc0003be88a6f55ef, - 0x3fe9656dc4e1a181, 0xbfe101ff8f3dd6ac, - 0x3fe4f839cb6c9312, 0x3fef5fa361245578, - 0x3ffa3dedf8244af4, 0xc003ae0681204360, - 0xbfe796ebc3021fc3, 0xbff609936c2a122e, - 0x3fda856675e9921a, 0x3ff9898379dba677, - 0xbff77fea4b068051, 0xbfe07942e86a23f6, - 0xbff020b3ceaa393d, 0xbfdf71baf89279cf, - 0xc0001cc7a2dcb94a, 0x3fe999eda065e398, - 0x3fc56d245f2a5888, 0x3ff52bffd6d98fc6, - 0x3fd5a3bc71afd2e2, 0xc006bd35de480b84, - 0xbfe0cd605699753f, 0xbfebb6d2abbc1894, - 0xbfdc650091f30ec7, 0x3fe90c54439c03a7, - 0x3ff0ffee1ede0900, 0xbff86efa061b8134, - 0xbfd5c49c8a7a1c76, 0xbfd587166c701424, - 0x3fc4ea3371470568, 0x3fdd29565055532a, - 0xbfd4d8ceca5265e8, 0x3fe17120ad445866, - 0x400710fdc783c375, 0xbfdc4ba182f0b45a, - 0xbfeaa8433c5b6568, 0x3fc665309df3f048, - 0x3fcf9da5feb073de, 0x400074912b58daef, - 0xbff1556c7a0f6ed3, 0xbfebc15246a967f8, - 0x3fea25fdda3dbefe, 0x3feb0cf8f7574e2b, - 0xbfd8dd6845a81fd4, 0xbff98c1f1c208d5d, - 0xbff5c0c624da994c, 0x400c56298231f2b8, - 0xbff0c06bab03422e, 0xc0010dd9625b7a56, - 0x3feafdb9f92a7ecf, 0x3fb02da65d9e7980, - 0x3fedb58195bf4856, 0xbfd87f1f357d4763, - 0x3ff18e0715b659cc, 0x3fe5877b802c9828, - 0x3ff076da4a0f9e85, 0x3feea09126bf2a75, - 0xc000398fae5c5deb, 0x3ff6c98fdddc83cd, - 0x3f83e48087bd9520, 0xbfe04e8e6ebe9179, - 0x3fd69da853e80c58, 0xbfee9cd995d12da3, - 0xc0010ab1ea14998d, 0xbfb639d06bfb5312, - 0x3fc379d5198dfd04, 0x3fe752c22ea142d2, - 0xbff04bf13b854a1c, 0xbfed6051817e2d6b, - 0xbfe822e9c83269d3, 0xbfd77efb71220c14, - 0x4000dbb02d84c5ec, 0x3fe414736f39fbb2, - 0x3ff70ac5c6b06878, 0xbf8cfb8de6e97220, - 0x3ff15ea08709b8a8, 0x3fe1ae55a340ea88, - 0x3fef6d9ac74e67ff, 0x3fe80b961e316eb8, - 0x3fd9df8ed55d293e, 0x3fe0f751d269078e, - 0x40005968f2ae1840, 0x3fce34256992fcd4, - 0x3fc2f06e3c059124, 0xbff9a898035c0b60, - 0x3fd60220ef68e54a, 0x40014ebcc09637b6, - 0xbfb9f3b2fa8168b0, 0xbff2134443829df8, - 0x3ffaf51e5174ce72, 0x3feb52fd57b048ec, - 0x3fe2dac611fdc6cc, 0xbfd248cc16aaaabc, - 0xbfd40e0eb9f5e670, 0x3ff777e5fe28390e, - 0xbffcf3fa5674fb44, 0x3fd270a14343f6b5, - 0xbff957307fe90271, 0x3fdf603742226d9c, - 0x3ff8bf195a74cb76, 0xbfca9448fd4f4658, - 0xbfc90c22ef0d09a4, 0x3fbfc95e20304678, - 0x3ff50bdd51138f24, 0x3fe5d567cfe67cf1, - 0x3ff667fa0a12ed88, 0x3fe77ddf7fb953b6, - 0xbffec3d92e146886, 0xbfbe0d30fbd95c60, - 0xbfda13a11088a4b0, 0xbfd980516a84004e, - 0xbff9d2bc2462bee5, 0xbff874e553da40c8, - 0x3facb000f8353de8, 0xbfcecfc0a4b50115, - 0xbfefaf0a3e9a1ae0, 0xbfeb64c0b707174b, - 0x3f8d6bf8f359cc80, 0xbfe0b9edd9b8c4ef, - 0x3fd8b748baeadf15, 0x3fed4d9f2ba4ed60, - 0xbff13227cd94b465, 0xbfcb25263383b400, - 0xbff1448afc38448f, 0x3fe08bc7411c1f1e, - 0x3fe19ef1bd921174, 0xbfd7f3ba0239eed4, - 0x3fe0b39e4d5c952f, 0x3fd84a2036d6fa12, - 0xbff5ebf084a69978, 0x3ffa370e07eddaa6, - 0xbfee7ca7d6194ad4, 0x3fd1a374139f53d4, - 0x3fdc459cbe5c2ed2, 0x3fc2a8bc5f3c0770, - 0x3fb3e102cd581b90, 0x3ff14d32b1c83fcf, - 0xbff27a405155344e, 0xbfec972ac7b50cb9, - 0xbfe921eb6d4e4036, 0x3fbcebb0a5f517e8, - 0x3ff59397b828d7dc, 0xbf74bf21a971b740, - 0xbfe9f9a1203ed887, 0xbff27abf7afbba8b, - 0xbfea1864e3acbbce, 0x3fd061cb70d5529a, - 0xbfc5364e65769a7c, 0xbfef0120b96776d4, - 0xbfe5fa3b699a0ef2, 0xbfd76c6a5a422dea, - 0x3fe678303013f9f4, 0xbfec3aa826baee06, - 0x4006ff0a2e4bdc7f, 0xbff4d1e0ec7340fa, - 0xbfc51b263e469aa4, 0xbffe773efc63b110, - 0x3fe8748e596c4c4a, 0x3fe08169c9e33c8b, - 0x3fe9fc5f94728f3e, 0xbfef5b8590bdd2f8, - 0x3ff4372e50f4f47f, 0xbfe3a7b4175e0d93, - 0xbf7c3ccf49c46200, 0x3ff6904cd8d89d8f, - 0x3fe3c668eb184e7b, 0xbfd6bbdca847611c, - 0xbfd7b03c5ad3cc5a, 0xbfd31980c3a3d09c, - 0x3fed7c5e3e6c936c, 0xbfe88bb0abdf2b1d, - 0xc0002f17c79d55fa, 0x400018ea1b890b98, - 0x400776c5825cb4c4, 0x3ff0f3e389e45e9b, - 0x3fddacdf1d586996, 0xbf87f54c078bc5a0, - 0xbff8719f1e9c0244, 0xbffa7843653f6e7a, - 0xbff43115bc4fca01, 0x3fd3a2dc8a6b34ae, - 0x3fc8ce9b51152998, 0xbfb3002040002d40, - 0x3ff33ada0eeb6d1c, 0x40767d785499e3b0, - 0x40051270612dc0cb, 0x3ff13a528ac89160, - 0xbfc509e56b476726, 0xbfd1a972c42e02df, - 0x3ffb4357a302117e, 0xbff5e70ee1455868, - 0xbfed912d46eb837c, 0xbfc77989e1ddc53e, - 0x3fac356693c57170, 0xbff15d18a9518f6b, - 0xbfdba56d11aea2dd, 0xbf96e440d7fecef0, - 0x3fd75ea6f6918df0, 0xc005cc65752ac38c, - 0xbfc54dc188baea07, 0xbffb46fd9f263646, - 0x3fd6bd4f965af770, 0x3fc606caa14315d8, - 0xbfa27663da35ac20, 0x3fff039f828347e7, - 0x3fc48e48985ff920, 0x3fd1ad73eda6c434, - 0x3feb7fe7bd028025, 0xbfa124ac1e5eeeab, - 0x3fdf2dab2c51c700, 0xbff5cd3d971e929c, - 0x40026d2c9f0b2d92, 0x3fead873b4b21bdc, - 0x3fe39ed239e44c92, 0xbfc0ee454ebe5968, - 0xbfe89a8e6b23e9c8, 0x3fe1e80ec74c1afa, - 0xbfe7edecc831811e, 0xbff26540c213dd98, - 0x3ff24a06e1ca4266, 0xbff0c904a4f07299, - 0xbff31559b29ae76a, 0xbfc13e1aa43a14cc, - 0x3fed14f0e9bfef3a, 0x3fea15deea65a168, - 0x3fbfd5e940620fd8, 0xbfe2613e25badc58, - 0x3ffaac38007e3697, 0x3fd4be2addffb645, - 0x3fe7b77f75958505, 0xbfb738f255b5fe8c, - 0xbfd05f285fcbb692, 0x3ff28deef375731f, - 0x3fee4070ea724630, 0xbfddadfabec79508, - 0x3ff1466d78ad6b9a, 0x3fe6d1c4a1c1bba6, - 0xbfe895e438c36f60, 0x3fefd8c85566f2bb, - 0xbfd50d9b3eba3480, 0xbfe868e4535a7d46, - 0x3fed13aded83d06a, 0x4006f30eb5646aec, - 0xbfc53b1dadc0a5be, 0x3fe2892d50e668fd, - 0xbfe8adfb9b930015, 0xbfc90b16fd5d57c3, - 0x3ff25433b44a9e7a, 0x3fe2e03b4bf69e26, - 0x3ff8e84bb082e3a0, 0xbff3be6087a01b30, - 0x3fe13c0a403114b2, 0x400466cf67997891, - 0xbff6ee879d959287, 0x3ff7605212767ca0, - 0x3fa9fd4d8b5a5048, 0x3fec779b317fa410, - 0xc000e20283102fa0, 0x3feb4fa0735d90ba, - 0x3fec711372d3f8ce, 0x3fcdea963e33261c, - 0xbff5402d0054a25a, 0x3fd9f39f81b93550, - 0x3fe796c4fd9300d3, 0xbff25b94aa7d2080, - 0xbfd78409f101d948, 0xbfc7bf6132ffb5ac, - 0xbfd6646f7ef145d1, 0xbfe001c75362352a, - 0xbfcd29eb16f63140, 0xbfd989bd79dc90f6, - 0xbfeb6f2c5feceb88, 0xbfeaeb650133a68c, - 0x3fefb53b6d480d2a, 0xbfd11df3993b91b0, - 0xbfd5dd186f3e4f13, 0xbfe6f73cdc87663c, - 0xbfd4887911432c1a, 0xbfcc72f8d9d9850a, - 0xbfd012776ed4966c, 0x3ff3f5bb44bbcb7f, - 0xbfce951adb8de180, 0x3f46170f234cc500, - 0x4000bd5d354c96d5, 0xc000c90e71892832, - 0xbff1a58ae0119218, 0x3fe05afa2cd61118, - 0xbfc5ae4dcbc23412, 0x3fd8134058a643e3, - 0x3fe9e54d2f2f0ee6, 0x3febc498dd09fedf, - 0xbfd1ea3a3c6391a6, 0xbfc3d8077be08b0c, - 0x3ff0bca4c7cad4a5, 0x3febbb8425f17f79, - 0x3fe877e5b959a444, 0xbff3dd41ed561b6e, - 0x3fa9232217d16630, 0xbfca971bb0d64798, - 0xbfdf3ef9e321a37a, 0x3ff2e4c25e8aa774, - 0xbfd5fe3283eb2ffd, 0x400495636ff0a759, - 0x3fec276b3cedae76, 0x3fe1c583c98aeb05, - 0x3ff0f862d3f477b0, 0xbfc2894f5350f9f8, - 0xc00181f86d7ae05f, 0xc004292c76dd0239, - 0xbfe48e83eec865ef, 0x3fc62b9185bd5fce, - 0xc002e71424472b04, 0x3fd9f5df250fd1d4, - 0xbf7110eb74a7c400, 0xbfab20b20ab6df70, - 0xc00380b42ceeeb58, 0x3fdf08d884173ae4, - 0xbfb0def23c8cff28, 0xbf83a5d7a71557c0, - 0xbfe35e582c2dfe58, 0xbfa7a15ef9a1a860, - 0x3fc13d2b485281c0, 0xbfe8323c66265760, - 0x3fea2101ba55c4ce, 0xbff22724da5c9efc, - 0x3feaafd60cde35d1, 0x3fdff0c252efa5f3, - 0xbfe5226c22544011, 0xbfd87f9cc81e2bcb, - 0x4004da2396d78df4, 0xbff39d1207bb6f1c, - 0xbffdb89764f7d73e, 0x3fefbe3c952a8cb7, - 0x3ff38d3375226bc6, 0x3fef1a3c6568a411, - 0x3fd888b45d8527f4, 0x3fc2b54bfc4e7748, - 0x3fee3a82ce8f3ff3, 0x3fe7965c3ea1fd5d, - 0x3fe930aa5c30eb5f, 0xbff76c9d3f9e021e, - 0x3fb8733046da7ce4, 0xbfb7331f6b359360, - 0x3fdd0311e242989f, 0xbff7cb2cc02c3bfe, - 0xbfc89f30dea62418, 0xbff99930af692474, - 0xbff7010866f6f3e6, 0x3fd5fa4f61a60764, - 0x3fec1460273207b8, 0x3ff94039c2f5f40a, - 0xbff62d9010869306, 0xbfc357a55c4ebc9a, - 0xc006e7e43640505e, 0xbffbf342c20e43e8, - 0x3fecee54f46534e2, 0xbfc13af7977ac6c4, - 0xbfe503609f2e05ae, 0x3fbddca0e824cc14, - 0x3ff22ff2867f7d21, 0xbf9b13e5257cae20, - 0x3fea67a7f0bcebc3, 0xbfd360aec40b3a77, - 0xbfda0f318755a62b, 0xbfd65ebe5c7e2d8a, - 0xbfdddfc0d61dec7c, 0x3f9b8637316b4220, - 0x3fd314db927e8cb5, 0x3ff2984d780c599a, - 0xbff2bc72fa47c5b2, 0x3fe02c89ae6d6480, - 0x3fda3b0b39616efe, 0x3ff2a3270f7ecf9a, - 0xbff4917c7e36883d, 0xbff95cbbc12332d0, - 0x3ff3ce1282a84730, 0xbfa0e5c4ab0fb35c, - 0xbff4ea94117508c2, 0x3ff215dcc732ecab, - 0xbfe2fa25558e5bbb, 0x3ffaa6c0fd3825c0, - 0x3ff09f0327769f4e, 0x3ffaa50b1bfb09eb, - 0x3fe82c7c6f16ceee, 0x400404067f8d405f, - 0x3ff0ca3b447ba090, 0xbfde631068add90c, - 0xbfd609751e00fe2c, 0xbff2c7f9bf68a2f1, - 0x3ff1b2dc01b216e5, 0xbfd363baa62eaf80, - 0x4000549b72e2502d, 0x3fde93bc9faa8bfe, - 0x3fc9ca9593f1f1f8, 0xbff4023da20bd6ba, - 0xbfeb32f0a6a65554, 0xbfee0a64aa2e9fee, - 0xbff9f4a68e97065c, 0x3fd2a30e5c427e3a, - 0xbff1e6255e2a24b4, 0xbfee5dd0b535fd6a, - 0xc008d438ce350004, 0xbfeafc7fb910a917, - 0x3fe851f5b38903d4, 0x3fdd666fe3d2a242, - 0x3fdcac163f7d7f69, 0x3fcd79da06ed5338, - 0x3fce9f5a7c6873a8, 0xbff022a528419f6e, - 0x3ff48b93a633d037, 0x3ff47a83ee98a9aa, - 0x3ff1d0afb2a30dec, 0xc0033af0b208c024, - 0x3ff72c73ed072472, 0x3fc1c26cbf1b1dc2, - 0x4000ad4d03ec1a6d, 0xbff6d94661d936e7, - 0xbfe7e4f261dcb92a, 0x3ff8be348d0f49a9, - 0x3f85fb57509c3a20, 0xbfe9fb05092d9da4, - 0xbff6c6a25c494352, 0x3fcba45b3a1d0dca, - 0x400198e1e38e1b3e, 0x3fc0da9818fe4a98, - 0x3fbb7b0bc7a133b0, 0xbfd3cebb3a1d45a0, - 0x3ffbc3c6708e4496, 0x3feb48e891660ba2, - 0x3f64534ec8384280, 0x3ffd7806ca4ff68f, - 0x3ff296e6bb6e1f3a, 0xbff99adfcacc65e1, - 0xbfd8f1a95ee05828, 0x3ff13aafca665fb3, - 0xc000daeec11c5e54, 0x3fd42fa31eb0a382, - 0xbfea82fed3716baa, 0xbfef1f478d668677 + 0x3ff654f627f9c034, 0x0, + 0x3ffa74b3b71806aa, 0xbfdd3925c4b06a31, + 0xbff0169c9deec3c6, 0x3feac565e960fa9e, + 0xbfe4c343702ff05b, 0x3fa67a79bc9cf7a4, + 0x3fe8770854d5ff1c, 0xbfd553eece5be5ec, + 0x3fbc67431e9e32f4, 0x3fe540c44e264c6c, + 0x3ffe32d6f1fc1202, 0x3fe21360ec935635, + 0xbfd95df2f569595c, 0x3fe27bb461f8c719, + 0xbff0b2a9873df302, 0xbff6fd27dfb965ef, + 0xbff96904e0706a88, 0x3fe7da13d486c982, + 0xbfebe60553366c1b, 0xbfb82e952f16c168, + 0x3fe5099f2c4ad37d, 0xbfdeadc42c9e72bd, + 0x3ff13304ef9ef441, 0xbffedad84b42ca1e, + 0xbfdfd48a065a3744, 0xbf93715228411560, + 0x3ff8fc3bbe8b65db, 0xbfcdf209f87e0086, + 0x3fd652b9ffe08c02, 0x3fd6a722e768240c, + 0xbfb4809dcbc3e250, 0x3ff485361022b502, + 0xbfe9555e3b152ff1, 0x3fc993ec5cfacc50, + 0xbfe44d51ee93f14a, 0x40047f7c6f7250e2, + 0x3fb0f6e90bee0733, 0x3fe3c3409e4a0c34, + 0x3fdbdaceba154025, 0x3fcf8fdd3ddbe026, + 0x3fc5cc141986a812, 0xbfde72db401f87b1, + 0x3ff643e770c705b7, 0xc00a199f05fe0a2e, + 0x400fcee81948bcaa, 0xbfd9399a4bb38dd1, + 0xbfe4754f22374da2, 0xbfba8e98dba325b0, + 0x3fee9ca93139c11c, 0x3fd411b4c00ab4f5, + 0xbff4297d549baf22, 0xbffa14ac7b8a683e, + 0x3fe8548954eb9b47, 0x3ff15a7eee41800c, + 0xc0084c2a54361254, 0x3fe865acd20c73ca, + 0x3ff86be22b9f97a0, 0x3ff594a42391015f, + 0xbfebc62645f375c1, 0x3ff3d713c42ba8c5, + 0xbf8e185e8665cb00, 0xc0004b2bd2c9e670, + 0x3ff84b2cd2b69ab0, 0xc006ccf0ae51fcd0, + 0x3fb2e60eb5de53ac, 0xbfb9e561fa99b460, + 0xbfe628d8d09b8272, 0xbfe5d37a75aeb91e, + 0x3ffed84c4b88526e, 0xbfe128f8803f34e9, + 0xbfe5ca42c642b88e, 0xbfe0fffb456bb3f6, + 0xbff910a79d419d62, 0x3ff44acb3350645c, + 0xbff0a6ae33748e5c, 0xbfe8146a049ad4bd, + 0x4003b197753da385, 0x3ffa65d60ac2bf27, + 0xbfda43cd33c91555, 0xbfdb46aaa64a5a87, + 0xbfea4db258e37d84, 0x3fe331f2d44757be, + 0x3ffa01eadc57866f, 0xbff48c2f15c51158, + 0x3fda47c52599e56d, 0xbfe120e1bf8e9df7, + 0x3ffc1f8773fa1302, 0x400254eb58fa2876, + 0xbfeadbd837f2b849, 0x3fcf6f290e95370e, + 0xbfd4bdb6f674ddd3, 0x3fe029f2d8fc0351, + 0xbff6cbace4ace091, 0xbfecd4c33068bc91, + 0x3fe71ef0d6fc1934, 0x3fefa4694968c40d, + 0xbffd641ff04b5bde, 0xbfed878037f57df7, + 0xbfe87147ef4fe5ad, 0xbffad3899e5f23f4, + 0xbf9bf8c184b2d330, 0xbfeec01107ba1328, + 0x3fe84e4f0f59b42b, 0x3feca3901a800f58, + 0x3ffe8d064c901162, 0x3fce60f9a1e8a60c, + 0x400032d13f1c7fca, 0x3fe4720fcddfa14c, + 0x3feb2559f74e3260, 0xbff601ae08527b34, + 0xbffa06b5cb4aeeb4, 0xbfec32b7e2eaa80d, + 0x3fcf77081988fa34, 0xbfc8ddd31abd10ec, + 0x3fd4ce1151df2f10, 0xbff49f4384026554, + 0x3fd8c55b078352d0, 0xbfe86bb743ba1b8e, + 0x3ffc356c9e309bb2, 0x3ff21d5b0c041c81, + 0xbfe007f27d85c334, 0x40082b6eaaf9322b, + 0xbfe7c2684cbc78ba, 0xbfa491c9d61257a8, + 0xbff67151b7f1fea4, 0x3febf2e51eaa75f0, + 0x3fc08e22839cb380, 0x3fe4642544e73000, + 0xbfefdc5da59bb6c2, 0xbffdab34b59db556, + 0x3fe61230916a9b27, 0xbff5b6987d81d0b6, + 0x3f8c48bef4c6f880, 0x3ff2efaf7a7602d2, + 0xbfe96aa3b4393ac4, 0x3fe64fa1e7966eff, + 0xbff189d7f1125763, 0xbffb1fe360fb1cc8, + 0xbfe7cc3564d2ed5e, 0x3ff2928db3a5d6a9, + 0x3feb319fd62533b3, 0xbfd469d2183f4bd0, + 0x3fe8431dc9e4c8bc, 0x3ff0629b2014f341, + 0xbff75ea00d36767d, 0xbfce342e84399470, + 0x3ff15c853f3267c8, 0xbffa85c1ec9259d0, + 0x3fd4039ddc16f0a0, 0x3fe919d8758bbc94, + 0xbff13d601fb42938, 0x3fcac420153d5ad0, + 0x3fd6f99a3f5f2288, 0xbfd63f527088a8f0, + 0xbfd207a1b02e7ad0, 0xbfc74b4b4c2afc74, + 0x3fea3e3c1bb6034e, 0xbfde6d53fa8a974a, + 0x4002ffe4b162ca2b, 0xbfe73945fbcff8b9, + 0xc0034902e4753d56, 0xbff9434c95c2d410, + 0x3fff290d25e3e448, 0xbfd2acb9bafdaefe, + 0x3fdb17a437e1bfde, 0xbfde9c84e39325c4, + 0xbfe95b6b95713808, 0xc00800e94dae42d1, + 0x3fd05319d9aab506, 0x3ff80e16f09a98fd, + 0x3fea57166140aedd, 0x3ff8ab5fe85168b3, + 0xbfea5a9477b59adf, 0xbfe44438dd808bb2, + 0xbfd266a36400c2c8, 0x3fd0d5a114efdff7, + 0x3fd422a07b44f506, 0x3fd470a43862f12a, + 0xbfe02b8a846ac0ff, 0xbff3c37322c2a812, + 0xbff84e7f48317bf3, 0x3fdaa461e0f4b904, + 0x400135b3c5df9656, 0x3ff46ce544fd2376, + 0xbff4cee0f0ee79d7, 0xbfd33645d012303e, + 0x3fb82867e5d04b3c, 0x3fe2508bc4b32535, + 0x3fec7c01d919a49e, 0xbff833e5e3fbe688, + 0xc00a95357f02473d, 0xc0041be5d6ecac9f, + 0x3fef96a027bbedf4, 0xbfdd3edca95d1910, + 0x3fe2493ec762807c, 0xc001200c18b1958b, + 0x3ff56864970db361, 0xbff20cecaf5cf41c, + 0x3fa3ad5cd8d13720, 0xbfae547451ffa8b0, + 0x3fee6654a7375c66, 0x3fbef6f8b37386a8, + 0xc003791b81db60dc, 0x3fe39aa1234c8ebd, + 0x3fe4eae9a981f0e8, 0x3ff05e6f5c962ab0, + 0xbfe00d240a71dbc0, 0xbfdbb598771f78e4, + 0xbfd16e84ab6cdaac, 0xbfea318e59f73cf2, + 0xbfc48b3ec008f0b2, 0xbff1e221c1ffc49e, + 0x3fe717ecb5be0439, 0x3ff33fc57c42248e, + 0x3ff503806db0a7ef, 0x3ff80c4765283310, + 0xbfdc15258f8c85b4, 0x3fc80429e47fce0c, + 0x3feeec477db6ce4c, 0x3ff030792a574f25, + 0x3ff217d1be07a07f, 0x3fea54875d0f4011, + 0xbfe2b780d2bfcff1, 0x3fbfc371ddf25990, + 0xbfe00a56870c5ea8, 0x3fb3eb57adc5b560, + 0x3fdb8768867b58d1, 0x3ff31cef7e4e5461, + 0xbff894622bda6f0d, 0xbfe8aabbb7fb1940, + 0x3f84c237d6320dc0, 0x3ffe6fd66f5c056f, + 0x40020e16329bf5c6, 0xbfe6a1bb11f90ef7, + 0xbff587df9a6ffa47, 0x3fd191917c3da1a2, + 0xc0002a6c5ac8b531, 0x3fc53f4411bb5968, + 0x3fef88f535755c3c, 0x3ff7de439f4d2261, + 0x3ffb577e5fc84a1c, 0xbfc8f34dc4437670, + 0x3fd02be2aab5ccaa, 0xc0001506d34e1a36, + 0x3fff5f303ccd1748, 0xbff1b12d6142b1a3, + 0xbfd30fb5cc4f7d2c, 0xbfeed47558684664, + 0x3fc46e11ac34f3a2, 0xbfd31fc3a7634ca9, + 0xbfccc64770379286, 0xbfdbe9800dc7fc6a, + 0x3fedae235b31fba2, 0x3fc35ec19f45cd70, + 0x3ff6a9186454c6c6, 0xc0765a4be82bf96a, + 0x3fcce348da9fcf70, 0xbffba089ff1e6f58, + 0x3fba6b95936bcd48, 0x3ff0901600729555, + 0xc0011c21449e8c15, 0x40050873c43ec51b, + 0x3fc69a14112ec85c, 0x3fe8ea3aa18a15a8, + 0x3ff2f16f5b7b43e0, 0x3fa201e197c57a10, + 0xbfe88706e580e2ec, 0x4001f51254e77eaf, + 0xbfda5a6f976b0cc0, 0xbfe36c28fd18d00e, + 0xbfd8d428e78ea0a0, 0x3fc50890c35fd990, + 0x3fccecae0c5654dc, 0x3ff5151ce06799c0, + 0x3fe1f8472aae49b0, 0xbfbf1a02c865e6f0, + 0x3feb34bba320fbc8, 0x3fffb781bd8305b6, + 0x3fe802b47b20e3c2, 0xbfd7e033674f8802, + 0xbffa5e6b41a97fac, 0xbff4e05a8fafa85e, + 0xbfe1333816afbfa2, 0xbfe53ed6930fa40f, + 0x3ff8937fd8e69a44, 0x3fd6e5f369833a38, + 0xbfd0d7276322acc2, 0x3fa45508b575fdee, + 0x3fefe0fec8182052, 0xbfebb10c5d7eabac, + 0xbfd4ea67b3a1ee07, 0xbfd8a35fc0ce1b49, + 0xbff5e1b6371a9bc5, 0xbfe38a24a9dca044, + 0xbfe65cddd57f08c5, 0x3fe74bbb97f130a8, + 0xbfd528a9863facec, 0xbfe01e6c9fcd4af7, + 0xbfcf4636f88583ba, 0x40011c5396f36d98, + 0x3fe6786c6d522b9b, 0x3fd5526e104d817a, + 0x3fefb4ad6b5903f6, 0xbff1ef43456944c3, + 0xbfa9046268636108, 0xbfde20ab4e4d2d4e, + 0xbfedf8886acbe777, 0xc000334415442e91, + 0x3ff01140ad3df068, 0x3fe654a46e64e8b4, + 0x3ff16192fe318f46, 0x3ff585136ae1006e, + 0xbfaefa07c1e8e8e0, 0xbff0bf98e431441c, + 0x3ff45fdeb1e400ee, 0x3fc2cce91627e858, + 0xbff7cae3d668be3c, 0xbfb8f6bfa1a88944, + 0xc002ff542d2cfaf6, 0xbffc05cf1bc584f1, + 0xbfe8bd0931ed3020, 0x3ff9988150a62ed7, + 0xbff4677168b0bc52, 0x3ff8a7ef2a3ac380, + 0x3ffa7d99e395ae80, 0xbffb73ed97f77bb8, + 0x3ff3a8e38eecb628, 0xbfebd8e43e9f58c6, + 0x3fece8cf536e75fe, 0xbfd479be85c12b66, + 0x3ff5b7fd3f98d44f, 0xbff0b40a1379e5fe, + 0xbff7a1aa1fb88f9e, 0xbfe44498f1dc7dd4, + 0xbfd3f6bca3835a93, 0xbff49b92be15f51e, + 0xbff10ccbae3c3c44, 0xbfec0077a1aeb7fb, + 0x3fbc5bc82c60a918, 0xbffce4a543e98868, + 0xc0017bf599bb68d0, 0x3fc7ab798b480bdc, + 0x3fe7f2fe4469ff5f, 0x3fa2088975ee9910, + 0xc0037edc4c2b9336, 0x3fe3df7a33751cde, + 0xbfedaa56a8dc2f5d, 0xc0075d6468447f8f, + 0xbfdff89037c339c0, 0xbfe27e5c45007c3e, + 0x3fc47b7551f8acf7, 0x3ffc954f56571752, + 0xbfe13d5a85e99770, 0x3fdceda0362f3cbe, + 0x3fe6e89edeb5e5d8, 0x4000be402155dbb7, + 0x3fe504dbfde542bd, 0xbfedfd78726763ea, + 0x3fc756aa2b9753ee, 0x3fce74037c6586ee, + 0x3fde19c901947d5a, 0xbfc4f33d0ffc94ce, + 0x3ffd89cf329ff207, 0xbfff00bf90a2749a, + 0xbfb6cf5ac0726368, 0xbff5e7da49cf98c4, + 0x3ff0f980edcdab00, 0xbfd69ac3a52a5b9d, + 0xbfbde8dbb19a9860, 0xc004b4a31338e0a1, + 0x3fefebc46b43d358, 0xbfe111947273a714, + 0xbfb6fbf6f2756338, 0x3f7ae076cd2c6b80, + 0x3fe0419764545588, 0x401003ddd6c644d7, + 0x3ff65c3deb8570c3, 0x3fe8666e15bd6771, + 0x3ff5ce65eca8f33f, 0x3fe2cb1ad00470b0, + 0xbff3ea77d1bf249f, 0x3fc46329cb221628, + 0x3ff15a9dee503226, 0xbfd1a1ef4c3908e9, + 0x3fe64844f0a6961a, 0x3ff0021ee35ce7d0, + 0xbfff725253020c0a, 0xbfca6193a28db700, + 0xbfe7c014a91e7a36, 0x3fc0892a4a963341, + 0x3fe83bd1e0de4725, 0xbfe868d8be4ad3d7, + 0x3ff2cec88a1868ba, 0xbfde57d81d178b96, + 0xbfe655ff6f91b2b6, 0xc0062285be0f8e74, + 0x3ff2dc7a9efe6e2a, 0xc0045edac1dfc0bb, + 0x3f7ea141345b34c4, 0xc003dcfebd203c0f, + 0x3f9417789d581558, 0x3fbe4aa250a21490, + 0xbfe9b7f56c532260, 0x4002d0177d5487c5, + 0x3fec28ed1204a526, 0xbfef1c9568349362, + 0x3fdddd6d6db02bec, 0x3ff211ccf975bd3e, + 0xbfe34345fc4eb4b0, 0x3fc5913aeb753522, + 0x3fe2a46c0d637e45, 0xc000a4cae0c78862, + 0x40024986ca6e2739, 0xbfe0c75870e5610e, + 0xbff034697f6f5479, 0x3fe7d8f80f5f5769, + 0xbfdd5e72ea817508, 0xbfaf2a3f7a6df6b4, + 0xbfe0e065bf13e694, 0x3fe5d659b2c2f361, + 0x3fc002b2788636e6, 0x3ff2a542d597f685, + 0xbfebdd65b5a22b4f, 0xbff2f4c8e574ca45, + 0xbfe540013bd03b7b, 0x3fe35e0cfc721ef1, + 0x3ff90f94282cc4c6, 0xbfb91fca274f5984, + 0x3fe8610fb516d4eb, 0xbfd4e84b1086d347, + 0xbfda01d2dee40072, 0x3fee27587022ae47, + 0xbfc7c33884769454, 0xbfcae33834a2204f, + 0x3fe240a48cb96f84, 0x3fe70216f6bcec2e, + 0xbfe6accab8a7e21c, 0x3ff36f228b8ab57e, + 0xbff962752b66b095, 0xbfd5c02657bd235f, + 0xbfb87d0b24d317f0, 0x3f87ff36c4252650, + 0x3fd4e98f5570beb6, 0xbfe10d699e2ad6fd, + 0x3ff0b87d95d4b4ca, 0x3ffecee10fbb9b38, + 0xbfe1f127e36df6d6, 0x3ff92a04665b31a5, + 0xbfe300900819a874, 0xbfe523159b5c33d6, + 0x3fd12a1d53c6c548, 0x3fed9a5ff2892f2f, + 0x3ff0bfc3d3c05be3, 0xbfdb99df14feadcc, + 0xbff0f4470105884e, 0x3fe10fbf16688d9b, + 0xbffaad45455d0d7c, 0x3ff87a21b736cc62, + 0xbfc50294be9b7ab0, 0xbfe0233916bd4930, + 0xbfe6c0ef4ac46677, 0x3ff326c12d801850, + 0x4005c85d46784ae5, 0xbfe5a4b4085619ee, + 0x3fd321951103d778, 0x3fe64bde38f409f4, + 0x3fff9b91f546eef3, 0x3fefe67328cad536, + 0xbff119c883bed6b1, 0x3ff30a480c58c008, + 0x3fe4f0203d199744, 0x3fd216b9d07d06c5, + 0xbff6c30cb1bce591, 0xc011c78ac290cc6a, + 0x3feff57b4caab14e, 0x3ff757df8bbdb9ae, + 0x3fe46a25675a782c, 0x3fdf276e83917dbc, + 0xbfaebb46d4a790e0, 0x3f964c78e4d0fea0, + 0xbff44b5d933b9114, 0xbfdafe95ac35c245, + 0xbff5a87dc48a7bfe, 0x3fc799deed698ee7, + 0x3fbcd82cbf3919d8, 0x3ff25bbf4394e87c, + 0x40083ad264555890, 0x4008950e3d529489, + 0xbfffd5b57592e14b, 0x3fe462208ad86b89, + 0x3feba7a8795af635, 0xbfe55ec309baa0ce, + 0xbfbb5b7a409fe95c, 0xbff670a08206631a, + 0x3fe49857400c04cb, 0x3ffcd487c64b2d64, + 0x3ff1deb81b4ec198, 0xbfd468c1a2faf98a, + 0xbff0499b7e1fdf38, 0xbfe5367737e5abec, + 0x3fd068d1eef1c94f, 0xbfd1b36ee67888eb, + 0xbfd881a40ee68d37, 0xbfe2240a6969f314, + 0xbff8001d36ac0ede, 0x3ff259054b2df31c, + 0xc005e1b87d87c0c9, 0x3fdaed83d3b5ae3f, + 0xbfe58ef0d44b5e5a, 0xbfcebfe4e3cc4d45, + 0xbff63bff9d503f0c, 0x3ff5143f229f13c0, + 0xbff0b3204bf8be26, 0xbfd0164c9e71e6c2, + 0x3fe7c1d2e282fdc4, 0x3fdb4d93a0490a04, + 0xbff3a98fd579ed2b, 0x3feab69136b5d626, + 0xbfef8b3a0bee155e, 0xbff227a3cdf6a6de, + 0xbff39b83154bb7a2, 0x3ff2d295115bed53, + 0xbfc1c535eed7f8cc, 0x40013bc794bd252f, + 0xbfed355f9c5f3124, 0xbfcede9043955ec3, + 0x3fe4202801bad9ac, 0x3ff304b6fd59c88c, + 0xbfd82ffddb032536, 0xbfc753c75d385a1c, + 0x3fdf76a8302a7972, 0xbfecd971b75f6c92, + 0x3fe9938c705bb44e, 0xbff61733428d8631, + 0xbff7600f6dcac75c, 0xbfea20c1033d5466, + 0x3fe5b5a3e99d6309, 0xbfd7f4490b44e97c, + 0x3ff414002a9bc268, 0xbfd3f0cd8098e3e7, + 0xbfd5d27a88386d66, 0x3ff2a8c5e301343e, + 0x3ffe806fecdbe1f3, 0x3fe8c84df48b82fa, + 0x3fed8fa2a121b1b6, 0x3fd36adab9373ee0, + 0xc00152b4ad904f98, 0xbfea8abdef4f3a49, + 0x3fef013fe274e8d2, 0xbfe6482b8f2bffd0, + 0xbfd5b11e706f11d1, 0xbfb12b341802ee54, + 0x3ff0d9f64888476f, 0xc003062cf81227e1, + 0x3fd1b89eed679202, 0xbfb2d69bb56439f8, + 0x40009d60a0311f82, 0xbff598b2b3289b40, + 0xbff4cea1fe74a1d1, 0xbfda3f81bcafc468, + 0xbfd9ae6935d67ecc, 0x4000d82f1965f1c9, + 0x4003afd74f456b9f, 0x4006dbd7604aaf61, + 0xbff18c81916b3ec6, 0xbfee65fdd0c1df53, + 0xbff0c794017de5fa, 0xbff16b3922a21770, + 0xbfe7e096c147d314, 0x3ff8c5b7275112c0, + 0xbff5fd21e65c8d66, 0xbfd6a140f6f39246, + 0xbfc821c656318b18, 0xbfbcc1c3d777cf00, + 0x3fd87f1f48e1a378, 0x4000b56a205944fb, + 0x3fd2a285b1d069d3, 0xbfd42640bd261294, + 0x3ff7336fb540672e, 0x3ff3626cc47e0c78, + 0xc0034bda027e170b, 0xbfd19f02c11adc9b, + 0xbff026ccb2c98e08, 0xbfeb5ec0dad3bdee, + 0x3ff07fb780bfa61b, 0xbfc551058e010e78, + 0x3fdcf209133bc26a, 0xbfc09068091a7d84, + 0xbff32f7d373b738e, 0x3fcc0f4702b30c17, + 0x3ff949ace48ddc25, 0x3fb0c636177da1b0, + 0x3fed86c36ffec036, 0xbfe985214f719556, + 0xbfea9479d93b4781, 0xbfe329a65755d6c0, + 0xbfe35fc045f8cf4e, 0x3fdcb0e8cae6b86a, + 0xbff031bb70dd3746, 0x3fe799305f1c3fa7, + 0x3fe5395c36ecc4c5, 0xbfe241f2b6569234, + 0x3fe1e798f575e5da, 0xbfe0ed634dae4455, + 0xbff65bceac915c83, 0x3fe15b6eacdee6de, + 0xbfeb8e3fe1dd27d2, 0xbff81faa61beb28e, + 0xbfe08f617ec06365, 0x400436aca95abb05, + 0x3fd0c6055649820a, 0x3fea59df0235ad6a, + 0xbfece5004cab3013, 0xbfea1f06dd3721e2, + 0xbf94dd44537637b0, 0x3fe17f8de43a47c9, + 0xc000c15a2f619d16, 0x3ff767e834ee082f, + 0xbffb20ade92b8e9c, 0x3fa1d127582c6060, + 0x3fd25f444aa08319, 0x3ff2018693788c24, + 0x3fa1d2fabe4e37b8, 0xc0000865b88d9b65, + 0x3fef0944c5410c28, 0x3fe1acd9a78c368b, + 0x4000b68cbe6d8d15, 0xbfd11928607c6a1c, + 0x40028618ffe80619, 0xbfc22b17903f064c, + 0x3feb510f31815215, 0xbfdefd2d2b6a06a8, + 0xbffb03bb679bbde9, 0xbf94ec5529011c98, + 0xc00071b92e183954, 0x40050e2421b6b027, + 0x3feaa8d56d383162, 0x3fe345038dcd7f98, + 0x3fd882a4b0973d4a, 0x3feefa6146dcbab1, + 0xbfd2639472de9326, 0x3ff839b5bb662e6a, + 0xbfd6ad544cdc2e46, 0x3ff58a84c96e49fc, + 0x3fe65078e27c37f2, 0x3fe756524af68ba8, + 0x3fe54dc626cecde9, 0xbff6e2561ecadf75, + 0x3ff78725d0e2921a, 0xbffae9666bdfeb3c, + 0xbffba8468213da07, 0xc00121555f4fe320, + 0xbff372a1c045befe, 0xbffc745b71050f03, + 0x3ff3a42eac355725, 0xbfe06ea40a7ae6b1, + 0xbfe2fd9600fcc964, 0x40003bb8fce5461f, + 0x3ff17acc2c7f60c0, 0xbff7c66c9de4a78e, + 0xbfe5c1e0093b1ebe, 0xbfea7f35f2ee691c, + 0x3fe654b35a069a79, 0x3ff1e57b89b31285, + 0xc0011cfb8b23f925, 0xbfc7cacc88d3b47c, + 0x3fbca94dce8ce8e4, 0x3fc07dff36174294, + 0x3ff0480b8faeed74, 0x3fdb83b8fc45a649, + 0xbfd19cb74803d2a0, 0x3ff1482160d838d8, + 0xc00001978c5244a2, 0x40006ebad3ad7e40, + 0x3fe8ccc022464854, 0xbfe3a1bfcdf9acb0, + 0x3fefaef30cb65c96, 0x3ff1e647052b756d, + 0x3fe50760913b291a, 0x3ff4f66298a75070, + 0xbfe08d39bacee5be, 0xc00031b97fe671a2, + 0x3ffb1dc3bba494fd, 0x3fe67b9098b2e421, + 0xc001993c44950eb8, 0x3fc708cbb3572bca, + 0x3ff400874d480a00, 0x40015d19fbf352c2, + 0xbfef0e54561db9d8, 0x3ff38d12afbb9677, + 0xbffb41e74494470c, 0x3fe08a6ac2ae995a, + 0x3fd07b0eabb5cf3c, 0xbff3a9b75256bf1a, + 0x3feb9d02dc79eb50, 0x3ffc0b03ae2558e0, + 0xbfce0b6db0c26d28, 0xbfefeca5643d5f17, + 0xbf98f7e217f1f1c0, 0xbfa7be458cdad900, + 0xbffac3021214a284, 0x3f87fd8e6a27dbc0, + 0xbfe5c7c1917b6de2, 0xbfa6ba72954b7cd0, + 0xbff1ddd393f42586, 0x3fdde08f115cd8a3, + 0xbfd805db8e0a0fee, 0xbff5d5c53df012d6, + 0x3fe28a25ec5ff98b, 0xbfd4c9f21bc39786, + 0xbff12f29e82617a0, 0xbfe1cf8cfec4f176, + 0xbfd36be43b0ca5e0, 0xbff9807dc7abad32, + 0xbfed4e20556eb2be, 0xc0064bd6982bda51, + 0x3fe510e0878aef9b, 0x3fec3c8e85af7714, + 0x3fcdceaf881355b4, 0x3ff3663517dc79cd, + 0xbfe9d6c9afb8e158, 0xbffaf03f8b2f022f, + 0xbff0b786dca1cb0c, 0xbfe38f6e53be5035, + 0xbff4247e510bdaac, 0x3fd4f402316a5df8, + 0x3fe779d77f72e18e, 0x3fd1f0bb0b119a92, + 0x3feef09360fa109e, 0xbff190756ee312f6, + 0x3fb0e39b14125efc, 0xbfd58e242915c6c7, + 0x3f947f205875a7e0, 0xbfc3f8056ae3ed9e, + 0xbfe2efcdd4a46350, 0x3fbc61daf6a666c2, + 0xbfe157fc88697c21, 0xbfd7fa18a68c1f0f, + 0x3fd91cf3cfaf2e34, 0xbfea06ad01a6bc7d, + 0xbff509bc1d7f0eca, 0x3fd98f38ba50e47c, + 0x3ff7ae56f1e55190, 0xbff5b712b03cef50, + 0xbfe6ae3373430728, 0xbff3eb0da52eed36, + 0xbff81daf7a6ad913, 0xbff6f427409e94fc, + 0x3fdbe277286df322, 0xbff5fdf8e0ed1175, + 0xbff4aaad8ec00d2b, 0x3fede9790b4a516a, + 0x3fde5d09eb428e92, 0x3ff8534833a04973, + 0xbfe734e8491cecfa, 0x3ff43a665ef05394, + 0xc00ac7fb9087f063, 0xbff73a166c599700, + 0xbffda2175df810c8, 0xbfec46433991fb17, + 0xbff9f8bda50f8bcf, 0xc00d8aaae49de300, + 0x3ff7bfc246a317ca, 0x3ff5f4087ab2e11a, + 0x4001b612118a1a1a, 0xbfeea6028605ac6a, + 0x3ff8546f98a2ac7a, 0xbff74903ab872380, + 0xbfed1b4ed795de47, 0x4004a78675209af2, + 0x3f935db5c429209c, 0xbffe7cb4d292bfd0, + 0xbfe7550d709ea342, 0xbfd7086297cacef8, + 0x3fbcb42e8cba518e, 0x3fc9b32c5f8c790a, + 0x3fe46476cff86057, 0x3ff7ae1e909a252a, + 0xbfe21850592b6b00, 0x3fedc6a57eb03e29, + 0x3fe0e5b09d1558ce, 0x3fe81f926e999fa2, + 0xbfec0a0ad2738b03, 0x3ff93ed1bb7a6b96, + 0xbff20f3452163cf9, 0x3fc3cab2991b1522, + 0x3fe3c00ff58bb7a5, 0x3ffa98069d8b257a, + 0xbfeac257eaec6da0, 0xbff696cb70afa659, + 0x3fee839453344fd8, 0x3ff3002e1cadf469, + 0x3ffaf30edbe398d2, 0xbfedf848882024eb, + 0x3fd1953578b146b7, 0xbfe664458b86e2f4, + 0xbff6bb08775dd120, 0xc003f9319b9ed920, + 0xbff3b11aefb54cdf, 0x3fdc56f2459a467d, + 0x3fccabc30641ad36, 0xbfdbe1231be47b5f, + 0x3ffd146761371ae4, 0xbff0e5f10e6de76c, + 0xbff1dbeb96ba5bf3, 0xbfd20893a8d2dc8c, + 0xbfed3e6e1b3c1682, 0xbff100f9a2bc9d21, + 0xbfe7c91eabcf405a, 0x3fa611fec7933cb0, + 0xbfae111089ddbdeb, 0xbfc6ca7b9c64adbe, + 0xc0001fedfe9fc89d, 0x3fe2c5ae0cb56f98, + 0x3ff261d3d7a4de99, 0xbfe3ea695c0d56a4, + 0x3fed96839beedaae, 0x4007f47bf443b173, + 0xbfa073eceda88700, 0x3fc11221d3245f76, + 0x3fee885d8880a925, 0xbff33c9a169dced9, + 0x3fd2a5581858602e, 0x3ff8a40d663f0fb9, + 0xbfc843e2d06943e4, 0xbfe8a42b91388147, + 0xc00658ac1887e01f, 0x3fe08e2127d5fc2b, + 0x3fe12bad76dcf3de, 0x3ff72381d527c1f4, + 0x3fe4a12ad1d27d8a, 0x3fde2d3ad9f082c4, + 0xbff99f05222162f6, 0xbfff6871dc78da2a, + 0x3fe8b26a64121133, 0xbff34860521faed4, + 0x3fb52b6a19dad080, 0x3fe5942e43afc0d6, + 0x3fbd1d60d70e3c30, 0x3fe5b499afa4ee9d, + 0x3fe0688a15f2779c, 0x3ff82ed666e8435c, + 0xbfc30350fa491152, 0xbfcc3685e4b544cc, + 0x3ff497b05b72d46f, 0x3ff3a7d3bc7696e5, + 0x3feed627c0f50a8e, 0x3fe0e8116577a06a, + 0x3fe7d82a1c6c428d, 0xbfc905a0136a69b7, + 0xbfcdea2d2fabe5c2, 0xbff889d2e8dc62eb, + 0xbfe91f3f0ee7e777, 0xbfea73d7b05298e2, + 0x3fe85857313f0a56, 0x3ffc699e9ccd1598, + 0x3fdb4a347a6ff23b, 0x3fee75d2ae6110fa, + 0x3ffaaf91c6e09a90, 0xbffc29dc0d200e04, + 0xbfca3724890e98b8, 0xbfd682c1a2c3eba8, + 0xbfda5c231fc7eba6, 0x3ff617187bff9060, + 0x3fe8b4a900710a8a, 0xbfc4d5b907c7ad9a, + 0x3ff5227c0a8822c2, 0xbff49c0aa58cd638, + 0xbff1470cb52a2c30, 0xbfc6c8e37514cbad, + 0xc003ed6c20dc8093, 0xbfc0d1f167598c67, + 0xc007da804e3e119e, 0xbfda92414720b429, + 0x3ff1f58d32dbb059, 0x3febc1fc151df864, + 0x3fce253410f394f4, 0x4004d8ba39f0652d, + 0xbfdf6b6574c9319a, 0xc00321f4fecd008c, + 0xbfcb72c195691bf4, 0xbffc68e948ebc5d0, + 0x3ff318dfdef933a4, 0xbfdbd9bb8521a55b, + 0xbfeaf3b2f9695a48, 0x3fc4ef7123103b00, + 0x3fe77dbc0eeeeec4, 0xbfdde9c9a597b475, + 0xbff3f0221bd00de0, 0x3feae32cf835f9c3, + 0xbfb82112a8606ae8, 0x3ff811fcfcb6bb1a, + 0x3fed3eeeb28141d2, 0x3fed616b6ad7b5b7, + 0xc0068d73a9eae596, 0xbfef2b2e3e400fcb, + 0x3fc1f88940e77848, 0x3feaeb2053994165, + 0x3fa18e8ef59589b8, 0xbfbd720e392c85b6, + 0xbff34ccddd809f0f, 0x3febe293a09f9a1a, + 0xbff560d3f3ccd069, 0x3ff2146be79029c2, + 0x3fdbd455d63a8581, 0xbf712553ea7e2c00, + 0xc005c437d575ed90, 0x3fb3c95962302cf0, + 0x3ff83ddc1f8a3e01, 0xbffe20efd8859fe0, + 0xbfdc43b5ccccdb54, 0xbfb12591bae13020, + 0xbfdb2092a2733138, 0x3faead240343d390, + 0x3fd426c970ef2fe2, 0x3ffb9268ee28d775, + 0xbfcc70c496243c50, 0x3fe4060858173bfb, + 0x3fa7a53f6b0879f8, 0x3ff5759e98261840, + 0x3fdfc9f8356decdd, 0x3fef1dcfa86b5a15, + 0xbfb4782542efed88, 0xc003a9768de8eda0, + 0xbff330a0b161283c, 0xbff4d365ebc5de48, + 0xbfddeec3b41a1f32, 0x4004384eaedd5377, + 0xbfbcb0f6c9e6c528, 0xbffdfe28f3e9b64d, + 0x3fd34156d3f0a071, 0x3fc1af01ad299c46, + 0x3fd846ac0f1fd1fe, 0x3fea41f1b492ccec, + 0x3fe9d5c6f4fefd5c, 0xbfca5aad921e2fe8, + 0xbfc0a26bceb4a0ca, 0xbfeafe64de4d1620, + 0x3ff3cc731fd75d1a, 0x3fd72a7fe45ec5ff, + 0xbfefbe29b75c94ed, 0x3ff5a86f51cf4f61, + 0xbff41693f693ad1e, 0x3fe1c3b010aafd54, + 0x3fd83eafa8552874, 0x3ff2409424717aa9, + 0x3fb7ff1ffe547f58, 0x3ff09a584a80be6a, + 0x3fe0ba90463265aa, 0xbfdde378dbf6ddaf, + 0x3fd0f223e191eb0e, 0xbfeb27ecf93ad05a, + 0x3ffa0fc3fdff4c1a, 0x3fdec16589a3d452, + 0xbfcc7070ac38f665, 0x4001c37dee6ab331, + 0xbfe8a24162cf45f4, 0x3fd88be25791e3e2, + 0x3ff06714044deef9, 0xbfeb6f3b29f1686a, + 0xbffcb1d97750c3f7, 0xbff6b980505dc23d, + 0xbfe3a940b2052588, 0x3ff4213bfb4734c7, + 0x3fe94ffaba45b49c, 0x3ff8a92ebc0e982e, + 0x3fe0bd48471d6a88, 0x3fa3fa3d72f900e0, + 0x3ffa41dc0480a73b, 0xbff5eff7c91fb6dd, + 0xbfe8490bc7d84977, 0x400171dfeb7e5c2b, + 0x3feaa04d4e0c82eb, 0xbfccf16825a5fbf8, + 0xc000c0b331056e39, 0xbffda507ee6da0a3, + 0xbfc4726880cb5398, 0x3fd358987c7b26c2, + 0x3ff2edaf4476515b, 0xbffd13ec0299b236, + 0xbff00cc7bb027bad, 0x3fd543d11d94564d, + 0x3fe7f0c5b3cf24ea, 0xbff0bd2b8e30a121, + 0xbfcfd1857cc306f6, 0x3ff5118c28a2f62b, + 0x3fd2fbaf3860cc72, 0x3fc05779c16f1fa8, + 0x3ff150662979737a, 0xbffcf429eaf0336b, + 0xbff5619f5c33f700, 0x3fb1bcbadf1ffb78, + 0x3fe934b1d436c7d6, 0xc001c865b652811a, + 0xbff4741bf1105a95, 0x3ff28bb4d2cd6193, + 0xbff1a252c03a2218, 0x3fe7e7302d974c83, + 0x3fef15f6536e5589, 0xbfef7753c494a285, + 0x3fc43cc452e78c2f, 0xbfd7af68fe412fdb, + 0xbfed5cd8ae4b0fd5, 0x3fe3c01cb3322a6a, + 0xbfde674581c4f78c, 0xbfc3fe59d5081dea, + 0xbfb38ecdb20bb360, 0xbffa0690f3a52368, + 0x40029179eab862ed, 0x3feb0adb0a74646e, + 0x3fbec33417852ef0, 0x3fcbd167434a8d38, + 0x3febc1029c625e5e, 0xbfe790a9e0b8fca2, + 0x3fe128b368bb03ed, 0x40082794ffef9f0f, + 0x3fd66466fc00a962, 0x3fd30eee8c318a2a, + 0x3ff2a1fcb80d8da6, 0x3feed570ed901ec1, + 0x3fedaa1b328fe153, 0x3fe346917c192425, + 0xc00d0e91104aa6a6, 0x0, + 0x3fedaa1b328fe150, 0xbfe346917c192424, + 0x3ff2a1fcb80d8da6, 0xbfeed570ed901ebc, + 0x3fd66466fc00a966, 0xbfd30eee8c318a28, + 0x3fe128b368bb03ec, 0xc0082794ffef9f10, + 0x3febc1029c625e60, 0x3fe790a9e0b8fca4, + 0x3fbec33417852ef8, 0xbfcbd167434a8d34, + 0x40029179eab862ec, 0xbfeb0adb0a74646f, + 0xbfb38ecdb20bb378, 0x3ffa0690f3a52369, + 0xbfde674581c4f798, 0x3fc3fe59d5081df0, + 0xbfed5cd8ae4b0fd1, 0xbfe3c01cb3322a6b, + 0x3fc43cc452e78c38, 0x3fd7af68fe412fdb, + 0x3fef15f6536e5586, 0x3fef7753c494a283, + 0xbff1a252c03a2219, 0xbfe7e7302d974c83, + 0xbff4741bf1105a97, 0xbff28bb4d2cd6193, + 0x3fe934b1d436c7d5, 0x4001c865b652811a, + 0xbff5619f5c33f6ff, 0xbfb1bcbadf1ffb78, + 0x3ff150662979737a, 0x3ffcf429eaf0336a, + 0x3fd2fbaf3860cc77, 0xbfc05779c16f1f98, + 0xbfcfd1857cc306f6, 0xbff5118c28a2f62b, + 0x3fe7f0c5b3cf24ea, 0x3ff0bd2b8e30a120, + 0xbff00cc7bb027bac, 0xbfd543d11d94564b, + 0x3ff2edaf4476515d, 0x3ffd13ec0299b235, + 0xbfc4726880cb5388, 0xbfd358987c7b26bf, + 0xc000c0b331056e3a, 0x3ffda507ee6da0a1, + 0x3feaa04d4e0c82ea, 0x3fccf16825a5fbe2, + 0xbfe8490bc7d84978, 0xc00171dfeb7e5c2a, + 0x3ffa41dc0480a740, 0x3ff5eff7c91fb6dc, + 0x3fe0bd48471d6a86, 0xbfa3fa3d72f900e8, + 0x3fe94ffaba45b499, 0xbff8a92ebc0e982b, + 0xbfe3a940b2052585, 0xbff4213bfb4734c7, + 0xbffcb1d97750c3fa, 0x3ff6b980505dc23b, + 0x3ff06714044deef8, 0x3feb6f3b29f16868, + 0xbfe8a24162cf45f2, 0xbfd88be25791e3e6, + 0xbfcc7070ac38f668, 0xc001c37dee6ab330, + 0x3ffa0fc3fdff4c1a, 0xbfdec16589a3d452, + 0x3fd0f223e191eb0d, 0x3feb27ecf93ad05a, + 0x3fe0ba90463265a5, 0x3fdde378dbf6ddb0, + 0x3fb7ff1ffe547f54, 0xbff09a584a80be6b, + 0x3fd83eafa8552878, 0xbff2409424717aa5, + 0xbff41693f693ad1f, 0xbfe1c3b010aafd50, + 0xbfefbe29b75c94ec, 0xbff5a86f51cf4f61, + 0x3ff3cc731fd75d19, 0xbfd72a7fe45ec5f9, + 0xbfc0a26bceb4a0ba, 0x3feafe64de4d1621, + 0x3fe9d5c6f4fefd5b, 0x3fca5aad921e2fe8, + 0x3fd846ac0f1fd206, 0xbfea41f1b492ccea, + 0x3fd34156d3f0a071, 0xbfc1af01ad299c54, + 0xbfbcb0f6c9e6c510, 0x3ffdfe28f3e9b64e, + 0xbfddeec3b41a1f34, 0xc004384eaedd5377, + 0xbff330a0b161283a, 0x3ff4d365ebc5de48, + 0xbfb4782542efed88, 0x4003a9768de8eda0, + 0x3fdfc9f8356decdf, 0xbfef1dcfa86b5a16, + 0x3fa7a53f6b0879d0, 0xbff5759e98261840, + 0xbfcc70c496243c60, 0xbfe4060858173bf9, + 0x3fd426c970ef2fe4, 0xbffb9268ee28d776, + 0xbfdb2092a2733131, 0xbfaead240343d3a0, + 0xbfdc43b5ccccdb4e, 0x3fb12591bae13020, + 0x3ff83ddc1f8a3e02, 0x3ffe20efd8859fde, + 0xc005c437d575ed90, 0xbfb3c95962302cd8, + 0x3fdbd455d63a8588, 0x3f712553ea7e2c00, + 0xbff560d3f3ccd06a, 0xbff2146be79029c1, + 0xbff34ccddd809f0c, 0xbfebe293a09f9a1c, + 0x3fa18e8ef59589d8, 0x3fbd720e392c85d4, + 0x3fc1f88940e77838, 0xbfeaeb2053994164, + 0xc0068d73a9eae596, 0x3fef2b2e3e400fcc, + 0x3fed3eeeb28141d6, 0xbfed616b6ad7b5bc, + 0xbfb82112a8606ae8, 0xbff811fcfcb6bb1a, + 0xbff3f0221bd00ddf, 0xbfeae32cf835f9c0, + 0x3fe77dbc0eeeeec0, 0x3fdde9c9a597b47a, + 0xbfeaf3b2f9695a4e, 0xbfc4ef7123103b08, + 0x3ff318dfdef933a1, 0x3fdbd9bb8521a55c, + 0xbfcb72c195691bfc, 0x3ffc68e948ebc5ce, + 0xbfdf6b6574c93190, 0x400321f4fecd008c, + 0x3fce253410f394f8, 0xc004d8ba39f0652f, + 0x3ff1f58d32dbb058, 0xbfebc1fc151df860, + 0xc007da804e3e119d, 0x3fda92414720b427, + 0xc003ed6c20dc8092, 0x3fc0d1f167598c70, + 0xbff1470cb52a2c31, 0x3fc6c8e37514cbb9, + 0x3ff5227c0a8822c2, 0x3ff49c0aa58cd63a, + 0x3fe8b4a900710a86, 0x3fc4d5b907c7ad8c, + 0xbfda5c231fc7eba6, 0xbff617187bff9060, + 0xbfca3724890e98b0, 0x3fd682c1a2c3ebb0, + 0x3ffaaf91c6e09a90, 0x3ffc29dc0d200e04, + 0x3fdb4a347a6ff23c, 0xbfee75d2ae6110fc, + 0x3fe85857313f0a58, 0xbffc699e9ccd159a, + 0xbfe91f3f0ee7e773, 0x3fea73d7b05298e6, + 0xbfcdea2d2fabe5c4, 0x3ff889d2e8dc62ed, + 0x3fe7d82a1c6c428d, 0x3fc905a0136a69ba, + 0x3feed627c0f50a90, 0xbfe0e8116577a06c, + 0x3ff497b05b72d46e, 0xbff3a7d3bc7696e6, + 0xbfc30350fa491153, 0x3fcc3685e4b544cc, + 0x3fe0688a15f277a2, 0xbff82ed666e8435d, + 0x3fbd1d60d70e3c40, 0xbfe5b499afa4ee9b, + 0x3fb52b6a19dad070, 0xbfe5942e43afc0d7, + 0x3fe8b26a64121132, 0x3ff34860521faed4, + 0xbff99f05222162f9, 0x3fff6871dc78da28, + 0x3fe4a12ad1d27d8c, 0xbfde2d3ad9f082c8, + 0x3fe12bad76dcf3dc, 0xbff72381d527c1f5, + 0xc00658ac1887e01f, 0xbfe08e2127d5fc2c, + 0xbfc843e2d06943e0, 0x3fe8a42b91388145, + 0x3fd2a5581858602e, 0xbff8a40d663f0fba, + 0x3fee885d8880a922, 0x3ff33c9a169dceda, + 0xbfa073eceda88720, 0xbfc11221d3245f70, + 0x3fed96839beedaae, 0xc007f47bf443b174, + 0x3ff261d3d7a4de9a, 0x3fe3ea695c0d56ac, + 0xc0001fedfe9fc89c, 0xbfe2c5ae0cb56f96, + 0xbfae111089ddbda8, 0x3fc6ca7b9c64adb0, + 0xbfe7c91eabcf4059, 0xbfa611fec7933cc0, + 0xbfed3e6e1b3c1686, 0x3ff100f9a2bc9d20, + 0xbff1dbeb96ba5bf3, 0x3fd20893a8d2dc8a, + 0x3ffd146761371ae2, 0x3ff0e5f10e6de76d, + 0x3fccabc30641ad38, 0x3fdbe1231be47b56, + 0xbff3b11aefb54ce0, 0xbfdc56f2459a467e, + 0xbff6bb08775dd121, 0x4003f9319b9ed91f, + 0x3fd1953578b146b3, 0x3fe664458b86e2f4, + 0x3ffaf30edbe398cf, 0x3fedf848882024ea, + 0x3fee839453344fd7, 0xbff3002e1cadf46b, + 0xbfeac257eaec6da0, 0x3ff696cb70afa65a, + 0x3fe3c00ff58bb7a4, 0xbffa98069d8b257a, + 0xbff20f3452163cfa, 0xbfc3cab2991b1518, + 0xbfec0a0ad2738b00, 0xbff93ed1bb7a6b93, + 0x3fe0e5b09d1558d0, 0xbfe81f926e999f9c, + 0xbfe21850592b6aff, 0xbfedc6a57eb03e2a, + 0x3fe46476cff86059, 0xbff7ae1e909a2529, + 0x3fbcb42e8cba5182, 0xbfc9b32c5f8c7902, + 0xbfe7550d709ea344, 0x3fd7086297cacef1, + 0x3f935db5c4292050, 0x3ffe7cb4d292bfd2, + 0xbfed1b4ed795de46, 0xc004a78675209af2, + 0x3ff8546f98a2ac7a, 0x3ff74903ab872380, + 0x4001b612118a1a19, 0x3feea6028605ac71, + 0x3ff7bfc246a317ca, 0xbff5f4087ab2e119, + 0xbff9f8bda50f8bcd, 0x400d8aaae49de301, + 0xbffda2175df810ca, 0x3fec46433991fb16, + 0xc00ac7fb9087f062, 0x3ff73a166c5996fe, + 0xbfe734e8491cecfc, 0xbff43a665ef05396, + 0x3fde5d09eb428e94, 0xbff8534833a04975, + 0xbff4aaad8ec00d2b, 0xbfede9790b4a516a, + 0x3fdbe277286df326, 0x3ff5fdf8e0ed1176, + 0xbff81daf7a6ad912, 0x3ff6f427409e94fc, + 0xbfe6ae337343072a, 0x3ff3eb0da52eed36, + 0x3ff7ae56f1e5518f, 0x3ff5b712b03cef50, + 0xbff509bc1d7f0ec8, 0xbfd98f38ba50e47e, + 0x3fd91cf3cfaf2e34, 0x3fea06ad01a6bc7b, + 0xbfe157fc88697c23, 0x3fd7fa18a68c1f08, + 0xbfe2efcdd4a4634f, 0xbfbc61daf6a666bf, + 0x3f947f205875a850, 0x3fc3f8056ae3eda8, + 0x3fb0e39b14125eec, 0x3fd58e242915c6c5, + 0x3feef09360fa10a2, 0x3ff190756ee312f6, + 0x3fe779d77f72e18f, 0xbfd1f0bb0b119a90, + 0xbff4247e510bdaab, 0xbfd4f402316a5df6, + 0xbff0b786dca1cb0e, 0x3fe38f6e53be5036, + 0xbfe9d6c9afb8e15b, 0x3ffaf03f8b2f0230, + 0x3fcdceaf881355b8, 0xbff3663517dc79cd, + 0x3fe510e0878aef9a, 0xbfec3c8e85af7715, + 0xbfed4e20556eb2bd, 0x40064bd6982bda51, + 0xbfd36be43b0ca5e2, 0x3ff9807dc7abad32, + 0xbff12f29e82617a0, 0x3fe1cf8cfec4f17c, + 0x3fe28a25ec5ff98b, 0x3fd4c9f21bc39786, + 0xbfd805db8e0a0ff2, 0x3ff5d5c53df012d6, + 0xbff1ddd393f42588, 0xbfdde08f115cd89b, + 0xbfe5c7c1917b6de0, 0x3fa6ba72954b7cc0, + 0xbffac3021214a286, 0xbf87fd8e6a27dd00, + 0xbf98f7e217f1f1e0, 0x3fa7be458cdad8f0, + 0xbfce0b6db0c26d14, 0x3fefeca5643d5f14, + 0x3feb9d02dc79eb50, 0xbffc0b03ae2558df, + 0x3fd07b0eabb5cf44, 0x3ff3a9b75256bf1c, + 0xbffb41e74494470d, 0xbfe08a6ac2ae995c, + 0xbfef0e54561db9d7, 0xbff38d12afbb9679, + 0x3ff400874d480a01, 0xc0015d19fbf352c3, + 0xc001993c44950eb7, 0xbfc708cbb3572bc4, + 0x3ffb1dc3bba494fc, 0xbfe67b9098b2e425, + 0xbfe08d39bacee5bf, 0x400031b97fe671a3, + 0x3fe50760913b291d, 0xbff4f66298a75070, + 0x3fefaef30cb65c97, 0xbff1e647052b756e, + 0x3fe8ccc022464855, 0x3fe3a1bfcdf9acb0, + 0xc00001978c5244a2, 0xc0006ebad3ad7e40, + 0xbfd19cb74803d2a0, 0xbff1482160d838d8, + 0x3ff0480b8faeed74, 0xbfdb83b8fc45a64a, + 0x3fbca94dce8ce8f4, 0xbfc07dff361742a0, + 0xc0011cfb8b23f927, 0x3fc7cacc88d3b488, + 0x3fe654b35a069a7a, 0xbff1e57b89b31284, + 0xbfe5c1e0093b1ec3, 0x3fea7f35f2ee691c, + 0x3ff17acc2c7f60bf, 0x3ff7c66c9de4a78e, + 0xbfe2fd9600fcc967, 0xc0003bb8fce5461e, + 0x3ff3a42eac355724, 0x3fe06ea40a7ae6b2, + 0xbff372a1c045befd, 0x3ffc745b71050f06, + 0xbffba8468213da0a, 0x400121555f4fe321, + 0x3ff78725d0e2921a, 0x3ffae9666bdfeb3e, + 0x3fe54dc626cecdec, 0x3ff6e2561ecadf71, + 0x3fe65078e27c37f2, 0xbfe756524af68ba5, + 0xbfd6ad544cdc2e54, 0xbff58a84c96e49fc, + 0xbfd2639472de9325, 0xbff839b5bb662e6b, + 0x3fd882a4b0973d48, 0xbfeefa6146dcbab0, + 0x3feaa8d56d383164, 0xbfe345038dcd7f99, + 0xc00071b92e183953, 0xc0050e2421b6b027, + 0xbffb03bb679bbde7, 0x3f94ec5529011c78, + 0x3feb510f31815217, 0x3fdefd2d2b6a06a6, + 0x40028618ffe80619, 0x3fc22b17903f0648, + 0x4000b68cbe6d8d16, 0x3fd11928607c6a1c, + 0x3fef0944c5410c28, 0xbfe1acd9a78c368d, + 0x3fa1d2fabe4e37a8, 0x40000865b88d9b63, + 0x3fd25f444aa0831a, 0xbff2018693788c23, + 0xbffb20ade92b8e9c, 0xbfa1d127582c6040, + 0xc000c15a2f619d16, 0xbff767e834ee082f, + 0xbf94dd4453763738, 0xbfe17f8de43a47c6, + 0xbfece5004cab3014, 0x3fea1f06dd3721e6, + 0x3fd0c60556498202, 0xbfea59df0235ad6e, + 0xbfe08f617ec06364, 0xc00436aca95abb06, + 0xbfeb8e3fe1dd27d1, 0x3ff81faa61beb28e, + 0xbff65bceac915c86, 0xbfe15b6eacdee6e4, + 0x3fe1e798f575e5de, 0x3fe0ed634dae4457, + 0x3fe5395c36ecc4c8, 0x3fe241f2b6569232, + 0xbff031bb70dd3745, 0xbfe799305f1c3fb0, + 0xbfe35fc045f8cf55, 0xbfdcb0e8cae6b869, + 0xbfea9479d93b477f, 0x3fe329a65755d6c0, + 0x3fed86c36ffec033, 0x3fe985214f719552, + 0x3ff949ace48ddc26, 0xbfb0c636177da1b8, + 0xbff32f7d373b7390, 0xbfcc0f4702b30c0b, + 0x3fdcf209133bc26b, 0x3fc09068091a7d86, + 0x3ff07fb780bfa61b, 0x3fc551058e010e70, + 0xbff026ccb2c98e07, 0x3feb5ec0dad3bdec, + 0xc0034bda027e170c, 0x3fd19f02c11adc9c, + 0x3ff7336fb5406730, 0xbff3626cc47e0c7a, + 0x3fd2a285b1d069d6, 0x3fd42640bd261298, + 0x3fd87f1f48e1a378, 0xc000b56a205944fa, + 0xbfc821c656318b21, 0x3fbcc1c3d777cef4, + 0xbff5fd21e65c8d68, 0x3fd6a140f6f3924a, + 0xbfe7e096c147d310, 0xbff8c5b7275112c3, + 0xbff0c794017de5f8, 0x3ff16b3922a2176e, + 0xbff18c81916b3ec6, 0x3fee65fdd0c1df50, + 0x4003afd74f456ba0, 0xc006dbd7604aaf62, + 0xbfd9ae6935d67eca, 0xc000d82f1965f1c8, + 0xbff4cea1fe74a1d2, 0x3fda3f81bcafc46b, + 0x40009d60a0311f82, 0x3ff598b2b3289b40, + 0x3fd1b89eed679204, 0x3fb2d69bb5643a00, + 0x3ff0d9f648884771, 0x4003062cf81227e0, + 0xbfd5b11e706f11cf, 0x3fb12b341802ee3c, + 0x3fef013fe274e8d2, 0x3fe6482b8f2bffd4, + 0xc00152b4ad904f98, 0x3fea8abdef4f3a44, + 0x3fed8fa2a121b1b8, 0xbfd36adab9373ed8, + 0x3ffe806fecdbe1f3, 0xbfe8c84df48b82fb, + 0xbfd5d27a88386d68, 0xbff2a8c5e3013440, + 0x3ff414002a9bc26a, 0x3fd3f0cd8098e3e0, + 0x3fe5b5a3e99d6306, 0x3fd7f4490b44e97a, + 0xbff7600f6dcac75c, 0x3fea20c1033d5464, + 0x3fe9938c705bb44e, 0x3ff61733428d8630, + 0x3fdf76a8302a7972, 0x3fecd971b75f6c92, + 0xbfd82ffddb032535, 0x3fc753c75d385a1c, + 0x3fe4202801bad9ad, 0xbff304b6fd59c88c, + 0xbfed355f9c5f3127, 0x3fcede9043955ed5, + 0xbfc1c535eed7f8bc, 0xc0013bc794bd2531, + 0xbff39b83154bb7a3, 0xbff2d295115bed53, + 0xbfef8b3a0bee155c, 0x3ff227a3cdf6a6de, + 0xbff3a98fd579ed2a, 0xbfeab69136b5d626, + 0x3fe7c1d2e282fdc7, 0xbfdb4d93a0490a03, + 0xbff0b3204bf8be27, 0x3fd0164c9e71e6bc, + 0xbff63bff9d503f0c, 0xbff5143f229f13c0, + 0xbfe58ef0d44b5e58, 0x3fcebfe4e3cc4d43, + 0xc005e1b87d87c0c9, 0xbfdaed83d3b5ae40, + 0xbff8001d36ac0edd, 0xbff259054b2df31a, + 0xbfd881a40ee68d3c, 0x3fe2240a6969f310, + 0x3fd068d1eef1c94a, 0x3fd1b36ee67888f5, + 0xbff0499b7e1fdf38, 0x3fe5367737e5abef, + 0x3ff1deb81b4ec196, 0x3fd468c1a2faf982, + 0x3fe49857400c04ce, 0xbffcd487c64b2d62, + 0xbfbb5b7a409fe940, 0x3ff670a082066318, + 0x3feba7a8795af637, 0x3fe55ec309baa0cc, + 0xbfffd5b57592e149, 0xbfe462208ad86b8e, + 0x40083ad264555890, 0xc008950e3d529488, + 0x3fbcd82cbf3919d8, 0xbff25bbf4394e87c, + 0xbff5a87dc48a7bfe, 0xbfc799deed698ede, + 0xbff44b5d933b9112, 0x3fdafe95ac35c242, + 0xbfaebb46d4a790e0, 0xbf964c78e4d0fe90, + 0x3fe46a25675a7830, 0xbfdf276e83917dc0, + 0x3feff57b4caab14e, 0xbff757df8bbdb9ae, + 0xbff6c30cb1bce591, 0x4011c78ac290cc6a, + 0x3fe4f0203d199742, 0xbfd216b9d07d06c7, + 0xbff119c883bed6af, 0xbff30a480c58c006, + 0x3fff9b91f546eef4, 0xbfefe67328cad539, + 0x3fd321951103d77c, 0xbfe64bde38f409f8, + 0x4005c85d46784ae6, 0x3fe5a4b4085619f0, + 0xbfe6c0ef4ac46678, 0xbff326c12d801852, + 0xbfc50294be9b7aa0, 0x3fe0233916bd4930, + 0xbffaad45455d0d7e, 0xbff87a21b736cc66, + 0xbff0f4470105884e, 0xbfe10fbf16688d9c, + 0x3ff0bfc3d3c05be4, 0x3fdb99df14feadd0, + 0x3fd12a1d53c6c54a, 0xbfed9a5ff2892f2f, + 0xbfe300900819a872, 0x3fe523159b5c33d8, + 0xbfe1f127e36df6d6, 0xbff92a04665b31a6, + 0x3ff0b87d95d4b4cb, 0xbffecee10fbb9b37, + 0x3fd4e98f5570beb8, 0x3fe10d699e2ad6ff, + 0xbfb87d0b24d317e0, 0xbf87ff36c4252720, + 0xbff962752b66b094, 0x3fd5c02657bd2363, + 0xbfe6accab8a7e215, 0xbff36f228b8ab57d, + 0x3fe240a48cb96f83, 0xbfe70216f6bcec2d, + 0xbfc7c33884769458, 0x3fcae33834a2204f, + 0xbfda01d2dee40074, 0xbfee27587022ae46, + 0x3fe8610fb516d4ea, 0x3fd4e84b1086d345, + 0x3ff90f94282cc4c6, 0x3fb91fca274f598c, + 0xbfe540013bd03b7a, 0xbfe35e0cfc721eef, + 0xbfebdd65b5a22b53, 0x3ff2f4c8e574ca46, + 0x3fc002b2788636dc, 0xbff2a542d597f684, + 0xbfe0e065bf13e696, 0xbfe5d659b2c2f363, + 0xbfdd5e72ea81750b, 0x3faf2a3f7a6df6a8, + 0xbff034697f6f5478, 0xbfe7d8f80f5f5767, + 0x40024986ca6e2739, 0x3fe0c75870e5610c, + 0x3fe2a46c0d637e43, 0x4000a4cae0c78864, + 0xbfe34345fc4eb4af, 0xbfc5913aeb753522, + 0x3fdddd6d6db02beb, 0xbff211ccf975bd3e, + 0x3fec28ed1204a526, 0x3fef1c9568349362, + 0xbfe9b7f56c532261, 0xc002d0177d5487c6, + 0x3f9417789d5815d0, 0xbfbe4aa250a21488, + 0x3f7ea141345b3540, 0x4003dcfebd203c0f, + 0x3ff2dc7a9efe6e28, 0x40045edac1dfc0b9, + 0xbfe655ff6f91b2b4, 0x40062285be0f8e74, + 0x3ff2cec88a1868b8, 0x3fde57d81d178b92, + 0x3fe83bd1e0de4721, 0x3fe868d8be4ad3da, + 0xbfe7c014a91e7a3a, 0xbfc0892a4a963335, + 0xbfff725253020c09, 0x3fca6193a28db6f0, + 0x3fe64844f0a6961c, 0xbff0021ee35ce7cf, + 0x3ff15a9dee503226, 0x3fd1a1ef4c3908e6, + 0xbff3ea77d1bf249e, 0xbfc46329cb22162c, + 0x3ff5ce65eca8f33e, 0xbfe2cb1ad00470ad, + 0x3ff65c3deb8570c1, 0xbfe8666e15bd6770, + 0x3fe041976454558b, 0xc01003ddd6c644d7, + 0xbfb6fbf6f2756328, 0xbf7ae076cd2c6a80, + 0x3fefebc46b43d352, 0x3fe111947273a712, + 0xbfbde8dbb19a9880, 0x4004b4a31338e0a3, + 0x3ff0f980edcdab01, 0x3fd69ac3a52a5b96, + 0xbfb6cf5ac0726380, 0x3ff5e7da49cf98c2, + 0x3ffd89cf329ff208, 0x3fff00bf90a27496, + 0x3fde19c901947d5c, 0x3fc4f33d0ffc94e2, + 0x3fc756aa2b9753fc, 0xbfce74037c6586f0, + 0x3fe504dbfde542bb, 0x3fedfd78726763eb, + 0x3fe6e89edeb5e5dc, 0xc000be402155dbb6, + 0xbfe13d5a85e99770, 0xbfdceda0362f3cbd, + 0x3fc47b7551f8acf8, 0xbffc954f56571750, + 0xbfdff89037c339b8, 0x3fe27e5c45007c3a, + 0xbfedaa56a8dc2f5c, 0x40075d6468447f90, + 0xc0037edc4c2b9336, 0xbfe3df7a33751cdd, + 0x3fe7f2fe4469ff5a, 0xbfa2088975ee98f0, + 0xc0017bf599bb68d0, 0xbfc7ab798b480bdc, + 0x3fbc5bc82c60a910, 0x3ffce4a543e98868, + 0xbff10ccbae3c3c45, 0x3fec0077a1aeb7fa, + 0xbfd3f6bca3835a8e, 0x3ff49b92be15f51f, + 0xbff7a1aa1fb88f9e, 0x3fe44498f1dc7dd4, + 0x3ff5b7fd3f98d450, 0x3ff0b40a1379e5fe, + 0x3fece8cf536e75fe, 0x3fd479be85c12b69, + 0x3ff3a8e38eecb628, 0x3febd8e43e9f58c9, + 0x3ffa7d99e395ae81, 0x3ffb73ed97f77bba, + 0xbff4677168b0bc52, 0xbff8a7ef2a3ac382, + 0xbfe8bd0931ed301b, 0xbff9988150a62ed8, + 0xc002ff542d2cfaf6, 0x3ffc05cf1bc584f2, + 0xbff7cae3d668be3a, 0x3fb8f6bfa1a88944, + 0x3ff45fdeb1e400f0, 0xbfc2cce91627e850, + 0xbfaefa07c1e8e890, 0x3ff0bf98e431441e, + 0x3ff16192fe318f46, 0xbff585136ae1006e, + 0x3ff01140ad3df068, 0xbfe654a46e64e8b5, + 0xbfedf8886acbe776, 0x4000334415442e91, + 0xbfa9046268636110, 0x3fde20ab4e4d2d55, + 0x3fefb4ad6b5903f7, 0x3ff1ef43456944c3, + 0x3fe6786c6d522b98, 0xbfd5526e104d817c, + 0xbfcf4636f88583c0, 0xc0011c5396f36d9a, + 0xbfd528a9863faced, 0x3fe01e6c9fcd4af2, + 0xbfe65cddd57f08c6, 0xbfe74bbb97f130a7, + 0xbff5e1b6371a9bc5, 0x3fe38a24a9dca040, + 0xbfd4ea67b3a1ee03, 0x3fd8a35fc0ce1b4f, + 0x3fefe0fec818204d, 0x3febb10c5d7eaba8, + 0xbfd0d7276322acc1, 0xbfa45508b575fdf4, + 0x3ff8937fd8e69a44, 0xbfd6e5f369833a39, + 0xbfe1333816afbfa4, 0x3fe53ed6930fa413, + 0xbffa5e6b41a97fac, 0x3ff4e05a8fafa85b, + 0x3fe802b47b20e3c8, 0x3fd7e033674f8801, + 0x3feb34bba320fbcc, 0xbfffb781bd8305b6, + 0x3fe1f8472aae49b2, 0x3fbf1a02c865e6f8, + 0x3fccecae0c5654dc, 0xbff5151ce06799bf, + 0xbfd8d428e78ea09c, 0xbfc50890c35fd996, + 0xbfda5a6f976b0cc6, 0x3fe36c28fd18d00e, + 0xbfe88706e580e2ee, 0xc001f51254e77eaf, + 0x3ff2f16f5b7b43e2, 0xbfa201e197c579e0, + 0x3fc69a14112ec85c, 0xbfe8ea3aa18a15a9, + 0xc0011c21449e8c15, 0xc0050873c43ec51c, + 0x3fba6b95936bcd40, 0xbff0901600729556, + 0x3fcce348da9fcf74, 0x3ffba089ff1e6f57, + 0x3ff6a9186454c6c6, 0x40765a4be82bf96a, + 0x3fedae235b31fba5, 0xbfc35ec19f45cd78, + 0xbfccc6477037928c, 0x3fdbe9800dc7fc60, + 0x3fc46e11ac34f3b2, 0x3fd31fc3a7634ca8, + 0xbfd30fb5cc4f7d2c, 0x3feed47558684668, + 0x3fff5f303ccd1748, 0x3ff1b12d6142b1a2, + 0x3fd02be2aab5ccae, 0x40001506d34e1a35, + 0x3ffb577e5fc84a1d, 0x3fc8f34dc4437684, + 0x3fef88f535755c3d, 0xbff7de439f4d2262, + 0xc0002a6c5ac8b52f, 0xbfc53f4411bb5972, + 0xbff587df9a6ffa48, 0xbfd191917c3da19e, + 0x40020e16329bf5c8, 0x3fe6a1bb11f90efa, + 0x3f84c237d6320d80, 0xbffe6fd66f5c056d, + 0xbff894622bda6f0a, 0x3fe8aabbb7fb1941, + 0x3fdb8768867b58d1, 0xbff31cef7e4e5462, + 0xbfe00a56870c5ea6, 0xbfb3eb57adc5b530, + 0xbfe2b780d2bfcff2, 0xbfbfc371ddf2598c, + 0x3ff217d1be07a07f, 0xbfea54875d0f400e, + 0x3feeec477db6ce48, 0xbff030792a574f24, + 0xbfdc15258f8c85bb, 0xbfc80429e47fce18, + 0x3ff503806db0a7f1, 0xbff80c476528330f, + 0x3fe717ecb5be043a, 0xbff33fc57c42248e, + 0xbfc48b3ec008f0ad, 0x3ff1e221c1ffc49d, + 0xbfd16e84ab6cdaa8, 0x3fea318e59f73cec, + 0xbfe00d240a71dbbe, 0x3fdbb598771f78e8, + 0x3fe4eae9a981f0ea, 0xbff05e6f5c962ab2, + 0xc003791b81db60dd, 0xbfe39aa1234c8ebe, + 0x3fee6654a7375c67, 0xbfbef6f8b37386b0, + 0x3fa3ad5cd8d13744, 0x3fae547451ffa8e0, + 0x3ff56864970db360, 0x3ff20cecaf5cf41c, + 0x3fe2493ec7628080, 0x4001200c18b1958b, + 0x3fef96a027bbedf8, 0x3fdd3edca95d1912, + 0xc00a95357f02473c, 0x40041be5d6ecaca0, + 0x3fec7c01d919a4a4, 0x3ff833e5e3fbe68a, + 0x3fb82867e5d04b48, 0xbfe2508bc4b32533, + 0xbff4cee0f0ee79d6, 0x3fd33645d012303b, + 0x400135b3c5df9656, 0xbff46ce544fd2378, + 0xbff84e7f48317bf2, 0xbfdaa461e0f4b8f8, + 0xbfe02b8a846ac0fe, 0x3ff3c37322c2a814, + 0x3fd422a07b44f50d, 0xbfd470a43862f128, + 0xbfd266a36400c2c3, 0xbfd0d5a114efdff7, + 0xbfea5a9477b59ae1, 0x3fe44438dd808bb3, + 0x3fea57166140aede, 0xbff8ab5fe85168b3, + 0x3fd05319d9aab4fe, 0xbff80e16f09a98fd, + 0xbfe95b6b95713806, 0x400800e94dae42d0, + 0x3fdb17a437e1bfe1, 0x3fde9c84e39325cd, + 0x3fff290d25e3e44a, 0x3fd2acb9bafdaf00, + 0xc0034902e4753d56, 0x3ff9434c95c2d410, + 0x4002ffe4b162ca2b, 0x3fe73945fbcff8b9, + 0x3fea3e3c1bb60352, 0x3fde6d53fa8a9751, + 0xbfd207a1b02e7ad2, 0x3fc74b4b4c2afc70, + 0x3fd6f99a3f5f2282, 0x3fd63f527088a8ee, + 0xbff13d601fb42936, 0xbfcac420153d5ad5, + 0x3fd4039ddc16f0b0, 0xbfe919d8758bbc94, + 0x3ff15c853f3267c9, 0x3ffa85c1ec9259d2, + 0xbff75ea00d36767e, 0x3fce342e84399470, + 0x3fe8431dc9e4c8bb, 0xbff0629b2014f33f, + 0x3feb319fd62533b3, 0x3fd469d2183f4bda, + 0xbfe7cc3564d2ed65, 0xbff2928db3a5d6a9, + 0xbff189d7f1125764, 0x3ffb1fe360fb1cca, + 0xbfe96aa3b4393ac6, 0xbfe64fa1e7966efe, + 0x3f8c48bef4c6f940, 0xbff2efaf7a7602d2, + 0x3fe61230916a9b28, 0x3ff5b6987d81d0b6, + 0xbfefdc5da59bb6c0, 0x3ffdab34b59db556, + 0x3fc08e22839cb380, 0xbfe4642544e73001, + 0xbff67151b7f1fea2, 0xbfebf2e51eaa75ef, + 0xbfe7c2684cbc78ba, 0x3fa491c9d61257ac, + 0xbfe007f27d85c334, 0xc0082b6eaaf9322a, + 0x3ffc356c9e309bb3, 0xbff21d5b0c041c80, + 0x3fd8c55b078352c3, 0x3fe86bb743ba1b8b, + 0x3fd4ce1151df2f18, 0x3ff49f4384026557, + 0x3fcf77081988fa48, 0x3fc8ddd31abd10e0, + 0xbffa06b5cb4aeeb5, 0x3fec32b7e2eaa80d, + 0x3feb2559f74e325c, 0x3ff601ae08527b36, + 0x400032d13f1c7fca, 0xbfe4720fcddfa14a, + 0x3ffe8d064c901162, 0xbfce60f9a1e8a604, + 0x3fe84e4f0f59b42a, 0xbfeca3901a800f5c, + 0xbf9bf8c184b2d2b0, 0x3feec01107ba1325, + 0xbfe87147ef4fe5ab, 0x3ffad3899e5f23f3, + 0xbffd641ff04b5be0, 0x3fed878037f57df9, + 0x3fe71ef0d6fc1933, 0xbfefa4694968c40d, + 0xbff6cbace4ace092, 0x3fecd4c33068bc96, + 0xbfd4bdb6f674ddd5, 0xbfe029f2d8fc0352, + 0xbfeadbd837f2b849, 0xbfcf6f290e953700, + 0x3ffc1f8773fa1302, 0xc00254eb58fa2876, + 0x3fda47c52599e56b, 0x3fe120e1bf8e9df8, + 0x3ffa01eadc57866e, 0x3ff48c2f15c5115a, + 0xbfea4db258e37d85, 0xbfe331f2d44757c2, + 0xbfda43cd33c91552, 0x3fdb46aaa64a5a88, + 0x4003b197753da386, 0xbffa65d60ac2bf25, + 0xbff0a6ae33748e5c, 0x3fe8146a049ad4bc, + 0xbff910a79d419d63, 0xbff44acb3350645c, + 0xbfe5ca42c642b88b, 0x3fe0fffb456bb3f6, + 0x3ffed84c4b88526e, 0x3fe128f8803f34e7, + 0xbfe628d8d09b8275, 0x3fe5d37a75aeb91c, + 0x3fb2e60eb5de53b4, 0x3fb9e561fa99b442, + 0x3ff84b2cd2b69aaf, 0x4006ccf0ae51fcd0, + 0xbf8e185e8665c980, 0x40004b2bd2c9e670, + 0xbfebc62645f375bc, 0xbff3d713c42ba8c5, + 0x3ff86be22b9f97a2, 0xbff594a423910160, + 0xc0084c2a54361253, 0xbfe865acd20c73ce, + 0x3fe8548954eb9b46, 0xbff15a7eee41800d, + 0xbff4297d549baf22, 0x3ffa14ac7b8a683f, + 0x3fee9ca93139c11d, 0xbfd411b4c00ab4f4, + 0xbfe4754f22374d9c, 0x3fba8e98dba325b0, + 0x400fcee81948bcaa, 0x3fd9399a4bb38dcc, + 0x3ff643e770c705b9, 0x400a199f05fe0a2f, + 0x3fc5cc141986a818, 0x3fde72db401f87b3, + 0x3fdbdaceba154024, 0xbfcf8fdd3ddbe022, + 0x3fb0f6e90bee072b, 0xbfe3c3409e4a0c34, + 0xbfe44d51ee93f149, 0xc0047f7c6f7250e2, + 0xbfe9555e3b152ff2, 0xbfc993ec5cfacc48, + 0xbfb4809dcbc3e240, 0xbff485361022b502, + 0x3fd652b9ffe08c04, 0xbfd6a722e768240c, + 0x3ff8fc3bbe8b65d9, 0x3fcdf209f87e0092, + 0xbfdfd48a065a3741, 0x3f937152284114e0, + 0x3ff13304ef9ef443, 0x3ffedad84b42ca1e, + 0x3fe5099f2c4ad384, 0x3fdeadc42c9e72c3, + 0xbfebe60553366c1d, 0x3fb82e952f16c17c, + 0xbff96904e0706a89, 0xbfe7da13d486c986, + 0xbff0b2a9873df302, 0x3ff6fd27dfb965ee, + 0xbfd95df2f569596a, 0xbfe27bb461f8c71a, + 0x3ffe32d6f1fc1205, 0xbfe21360ec93563c, + 0x3fbc67431e9e32dc, 0xbfe540c44e264c6e, + 0x3fe8770854d5ff1b, 0x3fd553eece5be5e0, + 0xbfe4c343702ff057, 0xbfa67a79bc9cf72c, + 0xbff0169c9deec3c4, 0xbfeac565e960faa1, + 0x3ffa74b3b71806aa, 0x3fdd3925c4b06a25 }; static const uint64_t ref_cfft_noisy_1024[2048] = { - 0x3ff92de7e36d859e, 0x0, - 0xbfea82fed3716bb2, 0x3fef1f478d668674, - 0xc000daeec11c5e51, 0xbfd42fa31eb0a387, - 0xbfd8f1a95ee05819, 0xbff13aafca665fb4, - 0x3ff296e6bb6e1f37, 0x3ff99adfcacc65e1, - 0x3f64534ec8384680, 0xbffd7806ca4ff692, - 0x3ffbc3c6708e4497, 0xbfeb48e891660b96, - 0x3fbb7b0bc7a13398, 0x3fd3cebb3a1d45aa, - 0x400198e1e38e1b3e, 0xbfc0da9818fe4a86, - 0xbff6c6a25c494351, 0xbfcba45b3a1d0de7, - 0x3f85fb57509c3800, 0x3fe9fb05092d9da9, - 0xbfe7e4f261dcb920, 0xbff8be348d0f49ac, - 0x4000ad4d03ec1a6c, 0x3ff6d94661d936ea, - 0x3ff72c73ed072470, 0xbfc1c26cbf1b1dce, - 0x3ff1d0afb2a30de8, 0x40033af0b208c025, - 0x3ff48b93a633d039, 0xbff47a83ee98a9a8, - 0x3fce9f5a7c6873b4, 0x3ff022a528419f6e, - 0x3fdcac163f7d7f67, 0xbfcd79da06ed5334, - 0x3fe851f5b38903d3, 0xbfdd666fe3d2a22e, - 0xc008d438ce350004, 0x3feafc7fb910a902, - 0xbff1e6255e2a24b3, 0x3fee5dd0b535fd65, - 0xbff9f4a68e97065c, 0xbfd2a30e5c427e4a, - 0xbfeb32f0a6a65560, 0x3fee0a64aa2e9fef, - 0x3fc9ca9593f1f1ec, 0x3ff4023da20bd6b8, - 0x4000549b72e2502d, 0xbfde93bc9faa8beb, - 0x3ff1b2dc01b216e4, 0x3fd363baa62eaf8e, - 0xbfd609751e00fe2e, 0x3ff2c7f9bf68a2f2, - 0x3ff0ca3b447ba091, 0x3fde631068add90c, - 0x3fe82c7c6f16ceec, 0xc00404067f8d405f, - 0x3ff09f0327769f52, 0xbffaa50b1bfb09e6, - 0xbfe2fa25558e5bb2, 0xbffaa6c0fd3825c6, - 0xbff4ea94117508bf, 0xbff215dcc732eca9, - 0x3ff3ce1282a84731, 0x3fa0e5c4ab0fb32c, - 0xbff4917c7e368840, 0x3ff95cbbc12332cf, - 0x3fda3b0b39616f02, 0xbff2a3270f7ecf9a, - 0xbff2bc72fa47c5b0, 0xbfe02c89ae6d6484, - 0x3fd314db927e8cbd, 0xbff2984d780c5998, - 0xbfdddfc0d61dec7e, 0xbf9b8637316b4240, - 0xbfda0f318755a632, 0x3fd65ebe5c7e2d88, - 0x3fea67a7f0bcebc0, 0x3fd360aec40b3a85, - 0x3ff22ff2867f7d1d, 0x3f9b13e5257caea0, - 0xbfe503609f2e05ab, 0xbfbddca0e824cc34, - 0x3fecee54f46534e2, 0x3fc13af7977ac6da, - 0xc006e7e436405060, 0x3ffbf342c20e43e6, - 0xbff62d9010869304, 0x3fc357a55c4ebc7f, - 0x3fec1460273207ba, 0xbff94039c2f5f408, - 0xbff7010866f6f3e6, 0xbfd5fa4f61a60769, - 0xbfc89f30dea6242a, 0x3ff99930af692474, - 0x3fdd0311e242989d, 0x3ff7cb2cc02c3bfe, - 0x3fb8733046da7cc8, 0x3fb7331f6b359358, - 0x3fe930aa5c30eb58, 0x3ff76c9d3f9e0222, - 0x3fee3a82ce8f3ff8, 0xbfe7965c3ea1fd56, - 0x3fd888b45d8527e8, 0xbfc2b54bfc4e7740, - 0x3ff38d3375226bc6, 0xbfef1a3c6568a40e, - 0xbffdb89764f7d73c, 0xbfefbe3c952a8cbe, - 0x4004da2396d78df4, 0x3ff39d1207bb6f22, - 0xbfe5226c22544013, 0x3fd87f9cc81e2bc2, - 0x3feaafd60cde35d1, 0xbfdff0c252efa5ec, - 0x3fea2101ba55c4cb, 0x3ff22724da5c9efe, - 0x3fc13d2b485281e0, 0x3fe8323c66265762, - 0xbfe35e582c2dfe5e, 0x3fa7a15ef9a1a860, - 0xbfb0def23c8cff30, 0x3f83a5d7a7155640, - 0xc00380b42ceeeb58, 0xbfdf08d884173aef, - 0xbf7110eb74a7c400, 0x3fab20b20ab6df90, - 0xc002e71424472b04, 0xbfd9f5df250fd1d8, - 0xbfe48e83eec865ec, 0xbfc62b9185bd5fcb, - 0xc00181f86d7ae061, 0x4004292c76dd0236, - 0x3ff0f862d3f477ac, 0x3fc2894f5350fa14, - 0x3fec276b3cedae80, 0xbfe1c583c98aeb04, - 0xbfd5fe3283eb2fe6, 0xc00495636ff0a75a, - 0xbfdf3ef9e321a372, 0xbff2e4c25e8aa778, - 0x3fa9232217d165e0, 0x3fca971bb0d64797, - 0x3fe877e5b959a43d, 0x3ff3dd41ed561b70, - 0x3ff0bca4c7cad4a6, 0xbfebbb8425f17f71, - 0xbfd1ea3a3c6391a0, 0x3fc3d8077be08b00, - 0x3fe9e54d2f2f0eed, 0xbfebc498dd09fee2, - 0xbfc5ae4dcbc23410, 0xbfd8134058a643e1, - 0xbff1a58ae0119216, 0xbfe05afa2cd6111e, - 0x4000bd5d354c96d4, 0x4000c90e71892834, - 0xbfce951adb8de180, 0xbf46170f234cc800, - 0xbfd012776ed4966b, 0xbff3f5bb44bbcb80, - 0xbfd4887911432c1a, 0x3fcc72f8d9d98510, - 0xbfd5dd186f3e4f28, 0x3fe6f73cdc87663c, - 0x3fefb53b6d480d2e, 0x3fd11df3993b91a6, - 0xbfeb6f2c5feceb89, 0x3feaeb650133a68c, - 0xbfcd29eb16f63154, 0x3fd989bd79dc90fa, - 0xbfd6646f7ef145dc, 0x3fe001c753623528, - 0xbfd78409f101d946, 0x3fc7bf6132ffb594, - 0x3fe796c4fd9300cd, 0x3ff25b94aa7d2080, - 0xbff5402d0054a25c, 0xbfd9f39f81b93552, - 0x3fec711372d3f8d2, 0xbfcdea963e332614, - 0xc000e20283102f9f, 0xbfeb4fa0735d90bf, - 0x3fa9fd4d8b5a5084, 0xbfec779b317fa40c, - 0xbff6ee879d959286, 0xbff7605212767ca5, - 0x3fe13c0a403114c1, 0xc00466cf67997890, - 0x3ff8e84bb082e39e, 0x3ff3be6087a01b34, - 0x3ff25433b44a9e7b, 0xbfe2e03b4bf69e28, - 0xbfe8adfb9b930018, 0x3fc90b16fd5d57bf, - 0xbfc53b1dadc0a5ca, 0xbfe2892d50e66903, - 0x3fed13aded83d074, 0xc006f30eb5646aec, - 0xbfd50d9b3eba348c, 0x3fe868e4535a7d47, - 0xbfe895e438c36f59, 0xbfefd8c85566f2c2, - 0x3ff1466d78ad6b9e, 0xbfe6d1c4a1c1bba5, - 0x3fee4070ea72462b, 0x3fddadfabec79516, - 0xbfd05f285fcbb684, 0xbff28deef3757322, - 0x3fe7b77f75958509, 0x3fb738f255b5fed6, - 0x3ffaac38007e369a, 0xbfd4be2addffb633, - 0x3fbfd5e940620fb0, 0x3fe2613e25badc59, - 0x3fed14f0e9bfef42, 0xbfea15deea65a162, - 0xbff31559b29ae768, 0x3fc13e1aa43a14bc, - 0x3ff24a06e1ca4262, 0x3ff0c904a4f072a0, - 0xbfe7edecc8318126, 0x3ff26540c213dd95, - 0xbfe89a8e6b23e9c7, 0xbfe1e80ec74c1afc, - 0x3fe39ed239e44c92, 0x3fc0ee454ebe5954, - 0x40026d2c9f0b2d93, 0xbfead873b4b21bd3, - 0x3fdf2dab2c51c6f4, 0x3ff5cd3d971e929a, - 0x3feb7fe7bd028022, 0x3fa124ac1e5eeea2, - 0x3fc48e48985ff928, 0xbfd1ad73eda6c438, - 0xbfa27663da35abc0, 0xbfff039f828347e7, - 0x3fd6bd4f965af76e, 0xbfc606caa14315da, - 0xbfc54dc188baea20, 0x3ffb46fd9f263647, - 0x3fd75ea6f6918dd6, 0x4005cc65752ac38c, - 0xbfdba56d11aea2d9, 0x3f96e440d7fecf00, - 0x3fac356693c57168, 0x3ff15d18a9518f68, - 0xbfed912d46eb8380, 0x3fc77989e1ddc53a, - 0x3ffb4357a302117d, 0x3ff5e70ee145586b, - 0xbfc509e56b47672c, 0x3fd1a972c42e02ed, - 0x40051270612dc0ce, 0xbff13a528ac8915c, - 0x3ff33ada0eeb6e00, 0xc0767d785499e3b0, - 0x3fc8ce9b511529a0, 0x3fb3002040002d20, - 0xbff43115bc4fca02, 0xbfd3a2dc8a6b34b8, - 0xbff8719f1e9c024b, 0x3ffa7843653f6e74, - 0x3fddacdf1d586994, 0x3f87f54c078bc780, - 0x400776c5825cb4c4, 0xbff0f3e389e45e96, - 0xc0002f17c79d55f9, 0xc00018ea1b890b99, - 0x3fed7c5e3e6c936a, 0x3fe88bb0abdf2b1f, - 0xbfd7b03c5ad3cc58, 0x3fd31980c3a3d09d, - 0x3fe3c668eb184e76, 0x3fd6bbdca8476120, - 0xbf7c3ccf49c46100, 0xbff6904cd8d89d8f, - 0x3ff4372e50f4f47c, 0x3fe3a7b4175e0d99, - 0x3fe9fc5f94728f3b, 0x3fef5b8590bdd2f5, - 0x3fe8748e596c4c47, 0xbfe08169c9e33c82, - 0xbfc51b263e469aa8, 0x3ffe773efc63b110, - 0x4006ff0a2e4bdc7d, 0x3ff4d1e0ec7340fe, - 0x3fe678303013f9f1, 0x3fec3aa826baee0a, - 0xbfe5fa3b699a0ef3, 0x3fd76c6a5a422de1, - 0xbfc5364e65769a7f, 0x3fef0120b96776d4, - 0xbfea1864e3acbbc8, 0xbfd061cb70d552a6, - 0xbfe9f9a1203ed892, 0x3ff27abf7afbba88, - 0x3ff59397b828d7dd, 0x3f74bf21a971b760, - 0xbfe921eb6d4e4039, 0xbfbcebb0a5f51814, - 0xbff27a4051553450, 0x3fec972ac7b50cad, - 0x3fb3e102cd581b8c, 0xbff14d32b1c83fcf, - 0x3fdc459cbe5c2ec6, 0xbfc2a8bc5f3c0770, - 0xbfee7ca7d6194ad6, 0xbfd1a374139f53d6, - 0xbff5ebf084a69972, 0xbffa370e07eddaa7, - 0x3fe0b39e4d5c9532, 0xbfd84a2036d6fa02, - 0x3fe19ef1bd921173, 0x3fd7f3ba0239eecc, - 0xbff1448afc38448e, 0xbfe08bc7411c1f24, - 0xbff13227cd94b467, 0x3fcb25263383b3e9, - 0x3fd8b748baeadf1c, 0xbfed4d9f2ba4ed60, - 0x3f8d6bf8f359cba0, 0x3fe0b9edd9b8c4ee, - 0xbfefaf0a3e9a1ae7, 0x3feb64c0b7071742, - 0x3facb000f8353e80, 0x3fcecfc0a4b5011a, - 0xbff9d2bc2462bee8, 0x3ff874e553da40c6, - 0xbfda13a11088a4a7, 0x3fd980516a84003d, - 0xbffec3d92e146883, 0x3fbe0d30fbd95c50, - 0x3ff667fa0a12ed8a, 0xbfe77ddf7fb953b3, - 0x3ff50bdd51138f24, 0xbfe5d567cfe67cec, - 0xbfc90c22ef0d0990, 0xbfbfc95e20304680, - 0x3ff8bf195a74cb76, 0x3fca9448fd4f4684, - 0xbff957307fe9026e, 0xbfdf603742226db0, - 0xbffcf3fa5674fb45, 0xbfd270a14343f6b9, - 0xbfd40e0eb9f5e668, 0xbff777e5fe283911, - 0x3fe2dac611fdc6ca, 0x3fd248cc16aaaacc, - 0x3ffaf51e5174ce74, 0xbfeb52fd57b048e6, - 0xbfb9f3b2fa8168c0, 0x3ff2134443829df7, - 0x3fd60220ef68e560, 0xc0014ebcc09637b6, - 0x3fc2f06e3c059100, 0x3ff9a898035c0b60, - 0x40005968f2ae1841, 0xbfce34256992fcac, - 0x3fd9df8ed55d2947, 0xbfe0f751d269078d, - 0x3fef6d9ac74e6805, 0xbfe80b961e316eb2, - 0x3ff15ea08709b8a7, 0xbfe1ae55a340ea80, - 0x3ff70ac5c6b0687a, 0x3f8cfb8de6e972e0, - 0x4000dbb02d84c5eb, 0xbfe414736f39fbac, - 0xbfe822e9c83269d4, 0x3fd77efb71220c04, - 0xbff04bf13b854a1d, 0x3fed6051817e2d66, - 0x3fc379d5198dfd18, 0xbfe752c22ea142d2, - 0xc0010ab1ea14998c, 0x3fb639d06bfb52bc, - 0x3fd69da853e80c4e, 0x3fee9cd995d12da2, - 0x3f83e48087bd9480, 0x3fe04e8e6ebe9178, - 0xc000398fae5c5dea, 0xbff6c98fdddc83d0, - 0x3ff076da4a0f9e86, 0xbfeea09126bf2a72, - 0x3ff18e0715b659cf, 0xbfe5877b802c9826, - 0x3fedb58195bf484c, 0x3fd87f1f357d4770, - 0x3feafdb9f92a7ed2, 0xbfb02da65d9e7930, - 0xbff0c06bab034230, 0x40010dd9625b7a54, - 0xbff5c0c624da9947, 0xc00c56298231f2ba, - 0xbfd8dd6845a81fe4, 0x3ff98c1f1c208d5a, - 0x3fea25fdda3dbf02, 0xbfeb0cf8f7574e24, - 0xbff1556c7a0f6ed4, 0x3febc15246a967f4, - 0x3fcf9da5feb07406, 0xc00074912b58daee, - 0xbfeaa8433c5b656c, 0xbfc665309df3f05c, - 0x400710fdc783c374, 0x3fdc4ba182f0b472, - 0xbfd4d8ceca5265e8, 0xbfe17120ad445868, - 0x3fc4ea3371470556, 0xbfdd29565055532c, - 0xbfd5c49c8a7a1c79, 0x3fd587166c701411, - 0x3ff0ffee1ede08fc, 0x3ff86efa061b8136, - 0xbfdc650091f30ec6, 0xbfe90c54439c03a6, - 0xbfe0cd6056997542, 0x3febb6d2abbc1899, - 0x3fd5a3bc71afd2d4, 0x4006bd35de480b84, - 0x3fc56d245f2a589c, 0xbff52bffd6d98fca, - 0xc0001cc7a2dcb948, 0xbfe999eda065e3a8, - 0xbff020b3ceaa393e, 0x3fdf71baf89279c0, - 0xbff77fea4b068053, 0x3fe07942e86a23ef, - 0x3fda856675e99227, 0xbff9898379dba678, - 0xbfe796ebc3021fcb, 0x3ff609936c2a122c, - 0x3ffa3dedf8244af0, 0x4003ae0681204361, - 0x3fe4f839cb6c9314, 0xbfef5fa361245574, - 0x3fe9656dc4e1a182, 0x3fe101ff8f3dd6ad, - 0x3ff49767a701f754, 0x40003be88a6f55f0, - 0xc000ddd6fb574c15, 0xbfd6becabaa2a1c6, - 0x3ffbada9b411ce2a, 0xbfe630412cbfa776, - 0x3fd63178bcb2112e, 0x3f835267b284dd80, - 0xbfe9db87d005571f, 0xc000f3c0437d8c18, - 0xbff26e9eea5680fa, 0x3ff55a65b3de1a74, - 0xbffda580632ef6eb, 0xbff9c9329046afcd, - 0xbff599f615f35425, 0x3ff97e9aa57350b8, - 0x40008234c7b27039, 0x3fd7b0dbbfa84494, - 0x4005151f518ca118, 0xbfc1901f0832535e, - 0xbff5041cea1c10e0, 0x3fbc18637dce6358, - 0xbff37ce549663dee, 0x3ff7592892d6f7f7, - 0xbfdcd703d18be462, 0xbfe98de1f7714759, - 0x3fe41bdc3e4fd0cc, 0xbfff3f775cd8c0da, - 0xbff1e7ef1d6aa059, 0x3fc2a991b8c3b4e1, - 0x3fe286dcc43b7f56, 0xbfd9d1c20564b212, - 0xbfd19ae7df5a0f3a, 0xbfddc5a0be51601a, - 0xc0003ad9cf8c3ed2, 0xc0121e3d52499abc, - 0xbfe4afd77e6c8ba7, 0xbfd9b971c652faf9, - 0x3ff5846d0ba43fbb, 0xbfe78a7ec5f4ef0a, - 0xbfd2bcab7fa7de44, 0xbff6c6753fb8839e, - 0x3fe646c2aa637af2, 0xbfdba199ad7178fc, - 0xbfed454ebc111e84, 0xbf8429940996b860, - 0xbfe7d66661fc10b2, 0x4005786512fc8c71, - 0x3fe5a9145999e146, 0x3fdeb29a30f5c9f6, - 0xbfd8146107dcde60, 0x3fe5705f7f03e996, - 0xbfad7b49bebb1000, 0x3fde46702bfcf95f, - 0xbfe644dc70c7440c, 0x3ff37b954a09a76c, - 0x3fa4260dc82b2c30, 0xbfbfc401ffdf07fc, - 0xbff98e61befae3ce, 0xbff99305f87698eb, - 0xbfec9eb8bac3ad87, 0x3feb1b90c7a8de72, - 0xbfea6de9cc3a7674, 0x3ff1c14cef402e1d, - 0x3fef888cfb4ae0e1, 0x3ffc5a941c422a07, - 0xbfe065d5f10d3f46, 0xbfe15914446eb346, - 0x3fefefe90fe96f9e, 0x3fe1817ed26109e3, - 0x3fd2778048cb8ad1, 0xbff08e8b3b2e6062, - 0x3fc2d326d1b620f0, 0x3ffa3822ba432c00, - 0xbfdb221f8ef1701b, 0x3fdd11714c381ea0, - 0xbfe8a7cba09564f6, 0x3fe2426420e464ce, - 0x3feb580a6d63f3dc, 0xbfe1ef05b4d210f3, - 0x3ff9439daeb84bc6, 0x3fd24892391e6d74, - 0x3fedbf15c5530eae, 0x3ff8c323f5332454, - 0x3fe266c78f6e7c1c, 0xc00038ed3a84ac18, - 0xbff04089a83361b4, 0x3fdd1fcfb589ddca, - 0xbff19a5dd7b173be, 0xbfe5501b3481f530, - 0x3fed731a2452feed, 0x3fe197ab9651498c, - 0x3ffd55a5158f40ea, 0xbfb411a1228efea8, - 0xbfcf7e780a15b08a, 0x3fa694bc91bb6d50, - 0xbfc2c105566186f0, 0xbfedb2631bd0bde2, - 0xbff5cdb403a4200d, 0xbfe134952b4a7e3c, - 0xbfebd2ff76b35367, 0xbfec7ef46d53f8e9, - 0x3fc2ecaa8b3cfcde, 0xbff3b4f77067b7b1, - 0xc0008e7d7f3cae4e, 0xbfe26748970a1279, - 0xbfe9958308bec801, 0x3ff8a2a42b6101f0, - 0xbffecbd751ae1a8b, 0x3fe6d06275744369, - 0x3fe9737b59a999df, 0xbff96a69a1b91831, - 0x3ff202fab9cbb9d2, 0xbff540fe4a12f916, - 0x3fb18f9f73ef4cf8, 0x3fe316d9d99da3dd, - 0xbff1ed8cacb8fa00, 0xbfc7cc846522414f, - 0x3fc0c094298cabd4, 0xbff3b31142a50ab0, - 0x3feaecdc22172c70, 0x3fd75cc34d1ae272, - 0xbff1548d8b42d19d, 0x3ff15b3f4f5d3fb6, - 0x401062f4500a96fe, 0x3ff1acbddc9132de, - 0xbfe2348952cff894, 0xbfeeb3690c103498, - 0xbfe85df2f9ed3d35, 0x3fc2c5867d999872, - 0xbfe25e40bce4bc58, 0xbfabff1c3c69cec0, - 0x3fe2ba9556b8320a, 0x3fe4ef0b276302a6, - 0xbfd820575273d86a, 0x3f8663976dc12a40, - 0xbff302ad81fc1aaf, 0xbff2cd4db0ef745c, - 0x3fc8911ba96f8cb0, 0xbff0273325f2748e, - 0xbf895dd1c08f89c0, 0x3fcf5f364fd73c07, - 0x3fdb5fd17b160850, 0x3fbd23e8fab4488a, - 0x3fe118c6dd4c949e, 0x3f679fe0b6ecb400, - 0x3fe078da3afa7869, 0xc001aeac440cb9de, - 0x3fe07d6a3100d472, 0x40016b2cdc06fa76, - 0x3fc2f47bfc51b9b0, 0xbfe7002b61232a20, - 0xbfae2b99ea18a320, 0x3fd46021565b3b90, - 0x3fef006bb5649b2f, 0xbfeb6f49a4ded926, - 0x3f9887b18f4168c0, 0x3fed4eea8019a0ec, - 0xbfc5157c3a23245a, 0xbfb4ea1bfc320a9c, - 0x400051adea3da9d0, 0xbffcd03de8d2cf6a, - 0x3ff5e5f895441e4b, 0x3ff9408d9f799b4e, - 0xbfe1c0d934bbf75c, 0xbfd7ed673c48f674, - 0xbfec8c5b16814d49, 0x40006cfa902b9c4b, - 0xbff350aaab5e714e, 0x3fd437aee97c849e, - 0x3fe7a399d7747d2a, 0x3fefb7beba9dce98, - 0xbfcf23e5bf8d8228, 0xbfe06a55cb0dc20a, - 0x3fe7fc66a77edae7, 0x3fd69447b09fb388, - 0xbffc40df88c2d02c, 0xbffce6651bec3195, - 0xbfec71aec38b4b93, 0xbff394fb410b4b88, - 0xbff1d44fbdd8f567, 0xbfe1599702dd560e, - 0xbfe4cd6510565bd0, 0x3fdf2fb3930e34a2, - 0x3fc8595f523b2ec8, 0xbfe1c9908dd49156, - 0xbfd83fbe064cae44, 0xbff2ea308efaee42, - 0x4002650a138e0d86, 0x3fff306e1ed32087, - 0xbfded408f7cfa350, 0x3fd95044b637d834, - 0xbfee0ccf8b14b01b, 0xbff4f44cb71229d3, - 0x3ff2dc905b50c476, 0x3fd47486d2cb9a4a, - 0xbfea512d3c24382a, 0xbfd86e2438858cff, - 0xbfc3413a48964754, 0x3fda36079aa150a8, - 0xbfd2f7d963717ad5, 0x3ff1b6fe9114c818, - 0xbfe69d8e0eda523b, 0xbff26cb2b602c6f3, - 0x3f71ee7a786fa640, 0xc0030dacef1f1e0d, - 0xbfc3347c44c2315f, 0xbfeedb8b9b8e1f8b, - 0x3fe64f212b02a4f1, 0xbfc9b05a3bc3e327, - 0xbffa636557826452, 0x3fa027b01c5cfea0, - 0xbfb1204701362b60, 0xbfe422a5b38a209b, - 0xbff19d84838c4fa2, 0xbff7f6dd420b2cb3, - 0xbfe5cd25c1861f4f, 0x3fd1dfb26534d720, - 0xbfcb6cef17d6ca30, 0x3fdf611971ab0f7d, - 0x3fd873c4f1e9723e, 0xc00115434cfafae8, - 0xbfefb898458fe78d, 0xbfcaa929fc2ac928, - 0x3fdddb7ca8449796, 0xbfed98b7501b8d48, - 0xbf4fec6ea0f9a800, 0x3fe3d4ceaccd5319, - 0xbff89a7abc997770, 0xbfd10d5aea595c70, - 0x3ff05981198aad16, 0x3fb378dd9f126600, - 0xbff3506ffcc8c4c1, 0xbffc59ca770b0300, - 0x3fe8d38ef5bfce07, 0x3fb5cb5e2ca0faf0, - 0xbff96d1de7431dc2, 0xbff9819c2668cce5, - 0x3fd7986ce555818a, 0xc00e800c1d4772b1, - 0x3ff2d62d8661215c, 0xbfd85d8fab8a023f, - 0x3fe9967c83011ae2, 0x3fe8da125cd7a340, - 0xbfc5b8e8e9956470, 0x3ffb17b6b9973901, - 0xbff2477a7394ae0c, 0xc000591169176b5b, - 0x3fe766b051661fa0, 0x3fddffe9e699f236, - 0xbfdeab0ebafa0b8e, 0x3fe79740e0755938, - 0x3fe0247727aeea18, 0xbff1ba910548672f, - 0xbfe216a2c930b2f0, 0x3fe2d1b3f4780c5d, - 0xbfd1563af85f1f50, 0xbffaa66b12b5fd3c, - 0x3fe1263bac85ecfe, 0x3fcbbe9f7ea6480d, - 0x40023379c6145244, 0xbfd4cfdf41d24012, - 0xbfe7d030612008f0, 0xbfc7f61f9f141334, - 0x3fe6f99eeef32aea, 0xbff7043f51b6af9c, - 0xbfff1656d1339e53, 0x3fc6743f15ea1c46, - 0xbfd40718ac78e62b, 0xc0056a2e06ec029a, - 0x3fb483f1e0e16d40, 0xbfff9cc086093b15, - 0xbfce8797d3efd1af, 0x3ff7b00876dfdb1c, - 0xbfeb2df803d67248, 0xc007df69ef8d5be9, - 0x3feaac57eeb454c6, 0xbfe40f0ddbae42ae, - 0xbfe734f58ed90291, 0xbffbe98a193ec599, - 0x3fbc8beff78539c0, 0xbfee43a0a5c2f2ba, - 0xbff1199c2f53c320, 0xbffcea2311b0568c, - 0xbfd4dd77e4130a3b, 0x3feb71d65712893d, - 0xbfe35bd9a46d0185, 0xbfd8e15a56f4779a, - 0x3fc811f81b668b88, 0xbfe78d8e1f6e1eac, - 0xbfedd72821012114, 0xbffdd6cbb8c43406, - 0xbfe11b60e4c4ff68, 0x3ff50e29d080e1a6, - 0x3fcf2a76fc1c6e68, 0x3fe720a98692c1af, - 0xbfe3792cd5c18e36, 0xbfac19d4d9ca03c0, - 0xc0009da539a11eef, 0xbfe0aeb704497bca, - 0xbff6407760a19526, 0x3ff47d9e498cc818, - 0xbfe6a3376c86a014, 0x3ff0f7475f3de700, - 0x3fe65cbadc5b9282, 0xbff80918046f2bb4, - 0x3fe5d6136ea2d32a, 0x3fc03697931b33c9, - 0x3ff5bc60386054cc, 0x3fe57d9b83d1cb3e, - 0xbfe3e7e30a06027f, 0xbfc8343307617b9b, - 0xbfc48a70ba8b3d94, 0xbfe381819028e6fe, - 0xbfe4692675d531a4, 0x3fc571fed2938b6c, - 0xbfdb85015a46dea2, 0x3fe39dd3748bf96a, - 0x3ffbd7d9e79308e8, 0x4002f794d9b08b12, - 0xbff09414578cc3c6, 0xbfe73fe892617790, - 0x3faa32c0661bc980, 0xbff073e43b735b2e, - 0xbff7e76ac2ac68d1, 0xbff8fb8dc3c3e826, - 0x3ff01e91b094a970, 0x3fe527a9cad66b2c, - 0xc00836ddd00f7ef2, 0x3fec0840111fbf00, - 0xbfd2749104a8f708, 0xbf92565b70ee34c0, - 0xbfe564b95917c336, 0x3fc462b08a8e5552, - 0xc0002d10fee2db6b, 0x3fd0f3e53c19cb02, - 0x3fd8d076094cbef0, 0xbfeb5fca6c09408a, - 0x3fd4afac2f5398c2, 0x3fdc565c18b42bb0, - 0xbfbb975315222ecc, 0xbfabc17732990aa8, - 0xbfe40b3bd7875242, 0x3ff0721bab1b79e8, - 0x3fd71d5d74a065ea, 0x3ff01968c756ac7e, - 0xbfa9fe36067a1e3c, 0x3fcbf8599e78906c, - 0x4004e670f1231a12, 0xbff0fc6d992514d7, - 0xbfe321b0056d58ac, 0xbff840a789b8efe1, - 0x3ff72987b227d8b0, 0xbf8304b73123c3d4, - 0x3fe1d675d0784adc, 0x3fc7caea4ac4576c, - 0xbff41ef8bbc8ab7c, 0xbffba13a1eaf35ee, - 0x3fe1d02cef38064a, 0xbfd00761ab5bdcb4, - 0x3ff436a3296ba8d4, 0xbf97d61e22985a10, - 0x3fd3be5751246a84, 0x3fa54071b89e0c00, - 0x3fed15192bde42ac, 0xbfe230bd499cac82, - 0x3fe50dd696c34fe8, 0x3ff135b4ebb4d8e8, - 0xc00117f7c5b65110, 0x3fd34f84474b9c07, - 0x3ff7a4f7e9cc71be, 0x3fc34ca45890554c, - 0x3fd84a25f032f594, 0xbfd6a9934c93771b, - 0x3fffc13351ad3f8c, 0xbfd4f92558e1a051, - 0xbff998b86e8524f4, 0xbfee79ff764eee5b, - 0xbff97c1d1339e8ca, 0xbffaf6b856578820, - 0xc003737a7de4798b, 0x3fc67c22001d62e0, - 0xbfe246598e71e514, 0x3ff96e36e98367c2, - 0xbfdf62e9fd4a4954, 0x3fa8d78d373cafa8, - 0x3fec4eda1ef17734, 0xbfe3fc292e95eb3a, - 0xbfc2e0a8aa42b6be, 0xbfe92c397c1255e1, - 0xbfeb2646836b47b5, 0xbfd8cfe321aeb282, - 0xbfa11ccdc31c1b30, 0x3fee978236c306c6, - 0xbfda206917e43032, 0x3fba8423d4e30c48, - 0xbfdd1adca61df168, 0xbfec5d6baf2671a3, - 0xbfbb614d3b9705f0, 0x3fe18d4599d23ea8, - 0xbfdbeebf14342ecf, 0xc00a4ab8e7e191ba, - 0xbff70b720fe8c43a, 0xbfb5313910015d54, - 0x3fb217dde46064d0, 0x3ff21a2a14ab2e20, - 0xbfe4537c93b60a7d, 0x3fcadbcebbcceba4, - 0x3ffbfa8f5e1e5bd2, 0x3ffcadbac923a438, - 0xbff0f9ceb72c7bb6, 0x3fe778bb2aa365cb, - 0xbfd123ad43133019, 0xbfcd12118e619350, - 0x3fde2a350c994d60, 0xbff7ab248ce4a006, - 0xbfd8a4b2ba555cc1, 0x3fd8e7a074ab1045, - 0x3fe2dac085382bd6, 0x3ffe5c4b80ad3c90, - 0xbfec5ce9bf2cb8fc, 0x3ff4fb1258a398be, - 0xbffcdbb219093cfa, 0xbfebcdf819b8660a, - 0xbfdb5deb57dc0174, 0xbf8bff9e9f87a080, - 0xbffad177c1639cdc, 0x3fbdf7c071a31266, - 0xc000da9320f9c547, 0x3ffe93b0457f4308, - 0xc000a97ebec5da84, 0xbfef3841835285fe, - 0x3fe9420443890274, 0x3ff189da7c95a835, - 0x3ff72f23366c7b75, 0x3feb6a5a17036af3, - 0xbfd08296d455e7a6, 0xbff69009b7b6c286, - 0xbfe467895b77756a, 0x3fe9bd2aa86ff4eb, - 0x3fe63f3e10507002, 0x3fe4bb994d01a52a, - 0xbff80a66eb5de22e, 0xbf922a132c8b7aa0, - 0xbfe75b9fd5586b93, 0xc0077cf97a58b682, - 0x3ff03789c09027c5, 0x3ff3a287077b9658, - 0x3ffec626e21aa5eb, 0xc00368b447ec5229, - 0xbff3cf5b603bf058, 0xbffccb86d82b14db, - 0x3feb59c98217c3c4, 0x3fea2da988cb94dd, - 0x3f9d98c4b94ccd20, 0xbfe4a8f526f68d9e, - 0x3ff362920c9c6713, 0x3fd09cf2466a47e0, - 0x3ffa1b3c18843656, 0x3fa2e4efba2c54d0, - 0x3fc7bb02eff20e08, 0x3fee1005ad2d147e, - 0xbff7ba3aaa6bc816, 0x3ffeb3399c2a8bf6, - 0x3ffade25b724c054, 0x4003e8fb3d0a0f18, - 0x400394cfb50ac2fa, 0x3ff6992170612628, - 0x3fc6a02490d0f336, 0xc008ae7dc0b53618, - 0xbfe4d21240f68cd7, 0xbfdb3b51a3f539f9, - 0xbfd7a004ccd67f56, 0x3fe1825bd1604992, - 0x3fed6cea988ca82c, 0x3fe5b311c21930c0, - 0x3ff1a00d5dae891e, 0x3fda9d20533d5672, - 0x3fb4c5bfb59ec110, 0x3ffb36c423bd529e, - 0x3ff53a0d90a3c7f1, 0x40094cc10d9d28ec, - 0x3fea31dab63abae9, 0xbfe49a8614d2be2b, - 0xbff5c0cd24abad66, 0xbffcbe3c6ea25672, - 0x3f9808a353508910, 0x3ff79c14af25b005, - 0xbfe1018604356b6a, 0x3fec2f18a2f73003, - 0x3fecbd0a999f96dc, 0xbfe9246cdca78fb9, - 0x3fe9b2ae2a16a463, 0x3fc0a04215f64ba1, - 0xbff09ab0aefc0df6, 0xbfedcda4bad325e3, - 0x3fd1d00044d29e00, 0x3fc20539d6a2c346, - 0x3fd62030f49bc434, 0xbfaf102b377ab2c0, - 0xbfec40f98f6a692c, 0xbfe3d16991b4d855, - 0x3fd3a10bc7b2c1b9, 0x3fd44eb9768ef44f, - 0xbfe481854f13cef2, 0xbff221616d401c8a, - 0xbff71252a4ee6e7a, 0xbf9ecb1a907f0910, - 0xbfd9d6442dc00113, 0x3ff7596f1261e3da, - 0x3fcd9f96eafcb2c0, 0xbff7a784a5ad2506, - 0xbfe0b21e06549402, 0x3fe04fcc420366c4, - 0x3fff0fba11750eb8, 0x3fde475b557ec594, - 0x3ff44d7af3f533e0, 0xbfcbc5c9398511c4, - 0xc002d85d6a8ecb72, 0xbfe175e82187dc48, - 0x3fef21d9fde8af10, 0xbfc570028c5baef9, - 0x3fd5cfd4c792b5c8, 0x3fc745da1d656e78, - 0x3fd816ebf0b8e03c, 0xbfe05f58d1963c15, - 0xbff1b400072bb3f2, 0x3feafacd01e2e96e, - 0x3fd759964aaca1c4, 0x3fc4b42b09d4f970, - 0xbf9504e7ea4ce980, 0x4001d9eef1ce2ea6, - 0x3fde18f02ced7b28, 0x3fe7bb9a93678302, - 0x3fe097fbbf465d72, 0xbfcf523e8f0b537c, - 0xbfe4a42aeb7f18dd, 0x3ff73d9942e7cdc4, - 0x3ff348e98694e6e9, 0xbfa8fb2946297670, - 0x3f9a58c363b23ff0, 0x3fea102a7ec49596, - 0x3ffd50bdc223077a, 0xc000f54c71114626, - 0xbfeaf5f0167d145e, 0xbffa80f8f663a673, - 0x3ff5ce3afa344661, 0x3ff60e4f75be62ce, - 0xbfb252ede037e558, 0xbf92012e533f4b08, - 0xbfd4c717a063fcb7, 0xbffcc8e8aa8bff2d, - 0xbfec6915785166da, 0xbf6f71840e833d00, - 0x3ff860b896106941, 0xbfe7d6b2980a32b4, - 0xbfd2d6ab872db368, 0x3fe851cd309c72b2, - 0x3fe267a335f7717b, 0xbfe153259154cc06, - 0xbfc15d3c3d2879f4, 0x3fcc90266c960f50, - 0x3ff7dbf236701fc3, 0xbfc357eef65ebbe8, - 0xbfed01c90f3282d4, 0xbfdcf8cb6952b568, - 0x3fe75cc88a4c1210, 0xbfb3f908ed0f4794, - 0xbffefab7e89dac0c, 0x3fa9a1e57020e2fe, - 0x3ff47a614421e29d, 0xbffda9f5da2eb810, - 0x3ffc880b739e63ce, 0xbfd87a625649a318, - 0x3fef432908b77fc8, 0xbfd2bc10ceeaff64, - 0x3fde73944069cd3f, 0x3fead44899f3e106, - 0xbfe0ef92d1c40cd0, 0xbfd8f27ea8c63993, - 0x3fdf79c69a00dea4, 0xbff42e51fc959ce4, - 0x4001ea1adebf4d40, 0x4003d2990218bb4e, - 0x3fd667f259db3e78, 0x0, - 0x4001ea1adebf4d42, 0xc003d2990218bb4b, - 0x3fdf79c69a00dea0, 0x3ff42e51fc959ce4, - 0xbfe0ef92d1c40cca, 0x3fd8f27ea8c63994, - 0x3fde73944069cd40, 0xbfead44899f3e106, - 0x3fef432908b77fc4, 0x3fd2bc10ceeaff6e, - 0x3ffc880b739e63cd, 0x3fd87a625649a31c, - 0x3ff47a614421e29a, 0x3ffda9f5da2eb812, - 0xbffefab7e89dac0c, 0xbfa9a1e57020e378, - 0x3fe75cc88a4c120e, 0x3fb3f908ed0f47a2, - 0xbfed01c90f3282d3, 0x3fdcf8cb6952b55e, - 0x3ff7dbf236701fc0, 0x3fc357eef65ebbf4, - 0xbfc15d3c3d2879e4, 0xbfcc90266c960f5c, - 0x3fe267a335f7716d, 0x3fe153259154cc06, - 0xbfd2d6ab872db362, 0xbfe851cd309c72ac, - 0x3ff860b89610693b, 0x3fe7d6b2980a32b8, - 0xbfec6915785166db, 0x3f6f71840e833f00, - 0xbfd4c717a063fcc5, 0x3ffcc8e8aa8bff2c, - 0xbfb252ede037e548, 0x3f92012e533f4b08, - 0x3ff5ce3afa344664, 0xbff60e4f75be62c7, - 0xbfeaf5f0167d1464, 0x3ffa80f8f663a676, - 0x3ffd50bdc2230774, 0x4000f54c71114627, - 0x3f9a58c363b24080, 0xbfea102a7ec49597, - 0x3ff348e98694e6e8, 0x3fa8fb29462976d0, - 0xbfe4a42aeb7f18d5, 0xbff73d9942e7cdc3, - 0x3fe097fbbf465d71, 0x3fcf523e8f0b5374, - 0x3fde18f02ced7b22, 0xbfe7bb9a93678307, - 0xbf9504e7ea4ce840, 0xc001d9eef1ce2ea6, - 0x3fd759964aaca1d5, 0xbfc4b42b09d4f970, - 0xbff1b400072bb3f2, 0xbfeafacd01e2e96d, - 0x3fd816ebf0b8e027, 0x3fe05f58d1963c1d, - 0x3fd5cfd4c792b5cc, 0xbfc745da1d656e70, - 0x3fef21d9fde8af0e, 0x3fc570028c5baf0d, - 0xc002d85d6a8ecb70, 0x3fe175e82187dc46, - 0x3ff44d7af3f533e0, 0x3fcbc5c9398511dc, - 0x3fff0fba11750eb8, 0xbfde475b557ec57c, - 0xbfe0b21e065493fe, 0xbfe04fcc420366c9, - 0x3fcd9f96eafcb294, 0x3ff7a784a5ad2503, - 0xbfd9d6442dc00104, 0xbff7596f1261e3d9, - 0xbff71252a4ee6e78, 0x3f9ecb1a907f07b0, - 0xbfe481854f13cef2, 0x3ff221616d401c8a, - 0x3fd3a10bc7b2c1bc, 0xbfd44eb9768ef445, - 0xbfec40f98f6a692c, 0x3fe3d16991b4d854, - 0x3fd62030f49bc42c, 0x3faf102b377ab300, - 0x3fd1d00044d29df6, 0xbfc20539d6a2c321, - 0xbff09ab0aefc0dfa, 0x3fedcda4bad325dd, - 0x3fe9b2ae2a16a460, 0xbfc0a04215f64b76, - 0x3fecbd0a999f96de, 0x3fe9246cdca78fb7, - 0xbfe1018604356b6a, 0xbfec2f18a2f73003, - 0x3f9808a3535089a0, 0xbff79c14af25b004, - 0xbff5c0cd24abad6a, 0x3ffcbe3c6ea25670, - 0x3fea31dab63abae4, 0x3fe49a8614d2be2a, - 0x3ff53a0d90a3c7f6, 0xc0094cc10d9d28eb, - 0x3fb4c5bfb59ec148, 0xbffb36c423bd529b, - 0x3ff1a00d5dae8920, 0xbfda9d20533d5661, - 0x3fed6cea988ca82b, 0xbfe5b311c21930c4, - 0xbfd7a004ccd67f52, 0xbfe1825bd1604993, - 0xbfe4d21240f68cd7, 0x3fdb3b51a3f539fc, - 0x3fc6a02490d0f304, 0x4008ae7dc0b53619, - 0x400394cfb50ac2fc, 0xbff6992170612623, - 0x3ffade25b724c057, 0xc003e8fb3d0a0f16, - 0xbff7ba3aaa6bc811, 0xbffeb3399c2a8bf8, - 0x3fc7bb02eff20e08, 0xbfee1005ad2d1480, - 0x3ffa1b3c18843656, 0xbfa2e4efba2c5490, - 0x3ff362920c9c6715, 0xbfd09cf2466a47e0, - 0x3f9d98c4b94ccbf0, 0x3fe4a8f526f68d9b, - 0x3feb59c98217c3c4, 0xbfea2da988cb94d2, - 0xbff3cf5b603bf05a, 0x3ffccb86d82b14d8, - 0x3ffec626e21aa5e8, 0x400368b447ec522c, - 0x3ff03789c09027c8, 0xbff3a287077b9657, - 0xbfe75b9fd5586b9b, 0x40077cf97a58b680, - 0xbff80a66eb5de231, 0x3f922a132c8b79c8, - 0x3fe63f3e10507009, 0xbfe4bb994d01a528, - 0xbfe467895b77756c, 0xbfe9bd2aa86ff4f1, - 0xbfd08296d455e7bc, 0x3ff69009b7b6c286, - 0x3ff72f23366c7b76, 0xbfeb6a5a17036af0, - 0x3fe9420443890276, 0xbff189da7c95a832, - 0xc000a97ebec5da84, 0x3fef3841835285f4, - 0xc000da9320f9c546, 0xbffe93b0457f430c, - 0xbffad177c1639cde, 0xbfbdf7c071a312c0, - 0xbfdb5deb57dc0177, 0x3f8bff9e9f87a040, - 0xbffcdbb219093cfc, 0x3febcdf819b86602, - 0xbfec5ce9bf2cb8f8, 0xbff4fb1258a398be, - 0x3fe2dac085382bda, 0xbffe5c4b80ad3c8c, - 0xbfd8a4b2ba555cc6, 0xbfd8e7a074ab1049, - 0x3fde2a350c994d4e, 0x3ff7ab248ce4a004, - 0xbfd123ad43133012, 0x3fcd12118e619332, - 0xbff0f9ceb72c7bb4, 0xbfe778bb2aa365c7, - 0x3ffbfa8f5e1e5bd2, 0xbffcadbac923a434, - 0xbfe4537c93b60a77, 0xbfcadbcebbccebb4, - 0x3fb217dde4606510, 0xbff21a2a14ab2e22, - 0xbff70b720fe8c43a, 0x3fb5313910015d68, - 0xbfdbeebf14342ef4, 0x400a4ab8e7e191bb, - 0xbfbb614d3b9705c0, 0xbfe18d4599d23eae, - 0xbfdd1adca61df172, 0x3fec5d6baf2671a2, - 0xbfda206917e43026, 0xbfba8423d4e30c38, - 0xbfa11ccdc31c1b60, 0xbfee978236c306c4, - 0xbfeb2646836b47b6, 0x3fd8cfe321aeb26c, - 0xbfc2e0a8aa42b6ca, 0x3fe92c397c1255e5, - 0x3fec4eda1ef17734, 0x3fe3fc292e95eb44, - 0xbfdf62e9fd4a494c, 0xbfa8d78d373cafe0, - 0xbfe246598e71e509, 0xbff96e36e98367bf, - 0xc003737a7de4798b, 0xbfc67c22001d62fc, - 0xbff97c1d1339e8ce, 0x3ffaf6b85657881e, - 0xbff998b86e8524f8, 0x3fee79ff764eee55, - 0x3fffc13351ad3f8a, 0x3fd4f92558e1a06a, - 0x3fd84a25f032f590, 0x3fd6a9934c937717, - 0x3ff7a4f7e9cc71c0, 0xbfc34ca45890552d, - 0xc00117f7c5b65112, 0xbfd34f84474b9c19, - 0x3fe50dd696c34fee, 0xbff135b4ebb4d8e4, - 0x3fed15192bde42a5, 0x3fe230bd499cac81, - 0x3fd3be5751246a7c, 0xbfa54071b89e0ba0, - 0x3ff436a3296ba8d4, 0x3f97d61e22985ac0, - 0x3fe1d02cef38064a, 0x3fd00761ab5bdcba, - 0xbff41ef8bbc8ab7e, 0x3ffba13a1eaf35ea, - 0x3fe1d675d0784ade, 0xbfc7caea4ac45774, - 0x3ff72987b227d8af, 0x3f8304b73123c578, - 0xbfe321b0056d58ad, 0x3ff840a789b8efe2, - 0x4004e670f1231a12, 0x3ff0fc6d992514df, - 0xbfa9fe36067a1e64, 0xbfcbf8599e789062, - 0x3fd71d5d74a065f8, 0xbff01968c756ac7b, - 0xbfe40b3bd787523d, 0xbff0721bab1b79e8, - 0xbfbb975315222ecc, 0x3fabc17732990a80, - 0x3fd4afac2f5398bb, 0xbfdc565c18b42bb6, - 0x3fd8d076094cbeec, 0x3feb5fca6c09408e, - 0xc0002d10fee2db6b, 0xbfd0f3e53c19cb04, - 0xbfe564b95917c33a, 0xbfc462b08a8e5572, - 0xbfd2749104a8f70c, 0x3f92565b70ee3480, - 0xc00836ddd00f7f00, 0xbfec0840111fbf00, - 0x3ff01e91b094a96f, 0xbfe527a9cad66b26, - 0xbff7e76ac2ac68d4, 0x3ff8fb8dc3c3e824, - 0x3faa32c0661bc980, 0x3ff073e43b735b32, - 0xbff09414578cc3c9, 0x3fe73fe892617785, - 0x3ffbd7d9e79308e8, 0xc002f794d9b08b11, - 0xbfdb85015a46dea0, 0xbfe39dd3748bf96c, - 0xbfe4692675d531a6, 0xbfc571fed2938b74, - 0xbfc48a70ba8b3da8, 0x3fe381819028e700, - 0xbfe3e7e30a060282, 0x3fc8343307617b85, - 0x3ff5bc60386054cd, 0xbfe57d9b83d1cb42, - 0x3fe5d6136ea2d328, 0xbfc03697931b33ad, - 0x3fe65cbadc5b9279, 0x3ff80918046f2bb6, - 0xbfe6a3376c86a017, 0xbff0f7475f3de701, - 0xbff6407760a19523, 0xbff47d9e498cc818, - 0xc0009da539a11eef, 0x3fe0aeb704497bc4, - 0xbfe3792cd5c18e33, 0x3fac19d4d9ca03c0, - 0x3fcf2a76fc1c6e79, 0xbfe720a98692c1ac, - 0xbfe11b60e4c4ff60, 0xbff50e29d080e1aa, - 0xbfedd72821012120, 0x3ffdd6cbb8c43406, - 0x3fc811f81b668b9a, 0x3fe78d8e1f6e1eb1, - 0xbfe35bd9a46d018a, 0x3fd8e15a56f477a0, - 0xbfd4dd77e4130a2e, 0xbfeb71d65712893a, - 0xbff1199c2f53c322, 0x3ffcea2311b0568a, - 0x3fbc8beff785399c, 0x3fee43a0a5c2f2ba, - 0xbfe734f58ed90299, 0x3ffbe98a193ec598, - 0x3feaac57eeb454c8, 0x3fe40f0ddbae42b5, - 0xbfeb2df803d67257, 0x4007df69ef8d5be8, - 0xbfce8797d3efd1a7, 0xbff7b00876dfdb1e, - 0x3fb483f1e0e16cf8, 0x3fff9cc086093b15, - 0xbfd40718ac78e63e, 0x40056a2e06ec0299, - 0xbfff1656d1339e51, 0xbfc6743f15ea1c63, - 0x3fe6f99eeef32ae4, 0x3ff7043f51b6af9c, - 0xbfe7d030612008ee, 0x3fc7f61f9f141318, - 0x40023379c6145244, 0x3fd4cfdf41d24028, - 0x3fe1263bac85ecff, 0xbfcbbe9f7ea64802, - 0xbfd1563af85f1f52, 0x3ffaa66b12b5fd3e, - 0xbfe216a2c930b2f0, 0xbfe2d1b3f4780c58, - 0x3fe0247727aeea1a, 0x3ff1ba9105486731, - 0xbfdeab0ebafa0b89, 0xbfe79740e0755941, - 0x3fe766b051661fa0, 0xbfddffe9e699f248, - 0xbff2477a7394ae12, 0x4000591169176b5a, - 0xbfc5b8e8e9956474, 0xbffb17b6b9973900, - 0x3fe9967c83011ae4, 0xbfe8da125cd7a33a, - 0x3ff2d62d8661215b, 0x3fd85d8fab8a023d, - 0x3fd7986ce555816e, 0x400e800c1d4772b0, - 0xbff96d1de7431dc7, 0x3ff9819c2668ccdf, - 0x3fe8d38ef5bfce08, 0xbfb5cb5e2ca0fabc, - 0xbff3506ffcc8c4c2, 0x3ffc59ca770b02ff, - 0x3ff05981198aad14, 0xbfb378dd9f1265c0, - 0xbff89a7abc997770, 0x3fd10d5aea595c62, - 0xbf4fec6ea0f99000, 0xbfe3d4ceaccd5319, - 0x3fdddb7ca844978d, 0x3fed98b7501b8d4d, - 0xbfefb898458fe78f, 0x3fcaa929fc2ac912, - 0x3fd873c4f1e97238, 0x400115434cfafae6, - 0xbfcb6cef17d6ca3c, 0xbfdf611971ab0f77, - 0xbfe5cd25c1861f4b, 0xbfd1dfb26534d724, - 0xbff19d84838c4fa5, 0x3ff7f6dd420b2cb1, - 0xbfb1204701362b70, 0x3fe422a5b38a209c, - 0xbffa636557826455, 0xbfa027b01c5cff20, - 0x3fe64f212b02a4f2, 0x3fc9b05a3bc3e31a, - 0xbfc3347c44c2315f, 0x3feedb8b9b8e1f86, - 0x3f71ee7a786f9f00, 0x40030dacef1f1e0c, - 0xbfe69d8e0eda5239, 0x3ff26cb2b602c6f2, - 0xbfd2f7d963717ad5, 0xbff1b6fe9114c817, - 0xbfc3413a4896475a, 0xbfda36079aa150ab, - 0xbfea512d3c243828, 0x3fd86e2438858d00, - 0x3ff2dc905b50c479, 0xbfd47486d2cb9a48, - 0xbfee0ccf8b14b01f, 0x3ff4f44cb71229d1, - 0xbfded408f7cfa351, 0xbfd95044b637d840, - 0x4002650a138e0d88, 0xbfff306e1ed32086, - 0xbfd83fbe064cae50, 0x3ff2ea308efaee42, - 0x3fc8595f523b2ece, 0x3fe1c9908dd49154, - 0xbfe4cd6510565bd2, 0xbfdf2fb3930e34a8, - 0xbff1d44fbdd8f567, 0x3fe1599702dd5607, - 0xbfec71aec38b4b97, 0x3ff394fb410b4b86, - 0xbffc40df88c2d02e, 0x3ffce6651bec3192, - 0x3fe7fc66a77edaea, 0xbfd69447b09fb390, - 0xbfcf23e5bf8d8226, 0x3fe06a55cb0dc208, - 0x3fe7a399d7747d31, 0xbfefb7beba9dce95, - 0xbff350aaab5e714e, 0xbfd437aee97c84a0, - 0xbfec8c5b16814d3c, 0xc0006cfa902b9c4e, - 0xbfe1c0d934bbf75c, 0x3fd7ed673c48f670, - 0x3ff5e5f895441e4c, 0xbff9408d9f799b4a, - 0x400051adea3da9ce, 0x3ffcd03de8d2cf6e, - 0xbfc5157c3a232476, 0x3fb4ea1bfc320a80, - 0x3f9887b18f416940, 0xbfed4eea8019a0e7, - 0x3fef006bb5649b2a, 0x3feb6f49a4ded92d, - 0xbfae2b99ea18a2d0, 0xbfd46021565b3b88, - 0x3fc2f47bfc51b9bc, 0x3fe7002b61232a1b, - 0x3fe07d6a3100d47c, 0xc0016b2cdc06fa75, - 0x3fe078da3afa7866, 0x4001aeac440cb9df, - 0x3fe118c6dd4c94a0, 0xbf679fe0b6ecb600, - 0x3fdb5fd17b16084a, 0xbfbd23e8fab44858, - 0xbf895dd1c08f8ac0, 0xbfcf5f364fd73c10, - 0x3fc8911ba96f8c95, 0x3ff0273325f2748f, - 0xbff302ad81fc1ab2, 0x3ff2cd4db0ef745c, - 0xbfd820575273d86a, 0xbf8663976dc12a00, - 0x3fe2ba9556b83206, 0xbfe4ef0b2763029e, - 0xbfe25e40bce4bc5c, 0x3fabff1c3c69ceb0, - 0xbfe85df2f9ed3d34, 0xbfc2c5867d999888, - 0xbfe2348952cff898, 0x3feeb3690c103494, - 0x401062f4500a96fe, 0xbff1acbddc9132d6, - 0xbff1548d8b42d198, 0xbff15b3f4f5d3fb9, - 0x3feaecdc22172c73, 0xbfd75cc34d1ae272, - 0x3fc0c094298cabaa, 0x3ff3b31142a50ab0, - 0xbff1ed8cacb8fa03, 0x3fc7cc846522414f, - 0x3fb18f9f73ef4cb4, 0xbfe316d9d99da3dd, - 0x3ff202fab9cbb9d0, 0x3ff540fe4a12f916, - 0x3fe9737b59a999d6, 0x3ff96a69a1b91832, - 0xbffecbd751ae1a88, 0xbfe6d06275744370, - 0xbfe9958308bec7fa, 0xbff8a2a42b6101f1, - 0xc0008e7d7f3cae4e, 0x3fe26748970a1277, - 0x3fc2ecaa8b3cfcde, 0x3ff3b4f77067b7b1, - 0xbfebd2ff76b3536c, 0x3fec7ef46d53f8e2, - 0xbff5cdb403a4200f, 0x3fe134952b4a7e3c, - 0xbfc2c105566186f0, 0x3fedb2631bd0bddf, - 0xbfcf7e780a15b074, 0xbfa694bc91bb6d48, - 0x3ffd55a5158f40ea, 0x3fb411a1228efea4, - 0x3fed731a2452fef4, 0xbfe197ab96514984, - 0xbff19a5dd7b173c2, 0x3fe5501b3481f52c, - 0xbff04089a83361b2, 0xbfdd1fcfb589ddd4, - 0x3fe266c78f6e7c17, 0x400038ed3a84ac18, - 0x3fedbf15c5530eb2, 0xbff8c323f5332453, - 0x3ff9439daeb84bc6, 0xbfd24892391e6d6c, - 0x3feb580a6d63f3de, 0x3fe1ef05b4d210f6, - 0xbfe8a7cba09564f0, 0xbfe2426420e464d3, - 0xbfdb221f8ef17023, 0xbfdd11714c381ea6, - 0x3fc2d326d1b620f0, 0xbffa3822ba432c00, - 0x3fd2778048cb8ac5, 0x3ff08e8b3b2e6062, - 0x3fefefe90fe96f9e, 0xbfe1817ed26109e2, - 0xbfe065d5f10d3f4e, 0x3fe15914446eb343, - 0x3fef888cfb4ae0e3, 0xbffc5a941c422a07, - 0xbfea6de9cc3a7670, 0xbff1c14cef402e20, - 0xbfec9eb8bac3ad88, 0xbfeb1b90c7a8de78, - 0xbff98e61befae3d0, 0x3ff99305f87698ea, - 0x3fa4260dc82b2c50, 0x3fbfc401ffdf07e0, - 0xbfe644dc70c74405, 0xbff37b954a09a76a, - 0xbfad7b49bebb0f90, 0xbfde46702bfcf95c, - 0xbfd8146107dcde5b, 0xbfe5705f7f03e997, - 0x3fe5a9145999e146, 0xbfdeb29a30f5c9f5, - 0xbfe7d66661fc10aa, 0xc005786512fc8c71, - 0xbfed454ebc111e81, 0x3f8429940996b840, - 0x3fe646c2aa637af2, 0x3fdba199ad717904, - 0xbfd2bcab7fa7de44, 0x3ff6c6753fb883a0, - 0x3ff5846d0ba43fba, 0x3fe78a7ec5f4ef0f, - 0xbfe4afd77e6c8ba2, 0x3fd9b971c652faf6, - 0xc0003ad9cf8c3ed8, 0x40121e3d52499abb, - 0xbfd19ae7df5a0f44, 0x3fddc5a0be516012, - 0x3fe286dcc43b7f51, 0x3fd9d1c20564b21a, - 0xbff1e7ef1d6aa05c, 0xbfc2a991b8c3b4e1, - 0x3fe41bdc3e4fd0c6, 0x3fff3f775cd8c0d8, - 0xbfdcd703d18be460, 0x3fe98de1f7714757, - 0xbff37ce549663deb, 0xbff7592892d6f7f8, - 0xbff5041cea1c10e0, 0xbfbc18637dce6378, - 0x4005151f518ca117, 0x3fc1901f08325380, - 0x40008234c7b27039, 0xbfd7b0dbbfa84489, - 0xbff599f615f3541f, 0xbff97e9aa57350b9, - 0xbffda580632ef6ef, 0x3ff9c9329046afc9, - 0xbff26e9eea5680f6, 0xbff55a65b3de1a7a, - 0xbfe9db87d0055723, 0x4000f3c0437d8c18, - 0x3fd63178bcb21128, 0xbf835267b284db00, - 0x3ffbada9b411ce26, 0x3fe630412cbfa77c, - 0xc000ddd6fb574c16, 0x3fd6becabaa2a1b2, - 0x3ff49767a701f759, 0xc0003be88a6f55ef, - 0x3fe9656dc4e1a181, 0xbfe101ff8f3dd6ac, - 0x3fe4f839cb6c9312, 0x3fef5fa361245578, - 0x3ffa3dedf8244af4, 0xc003ae0681204360, - 0xbfe796ebc3021fc3, 0xbff609936c2a122e, - 0x3fda856675e9921a, 0x3ff9898379dba677, - 0xbff77fea4b068051, 0xbfe07942e86a23f6, - 0xbff020b3ceaa393d, 0xbfdf71baf89279cf, - 0xc0001cc7a2dcb94a, 0x3fe999eda065e398, - 0x3fc56d245f2a5888, 0x3ff52bffd6d98fc6, - 0x3fd5a3bc71afd2e2, 0xc006bd35de480b84, - 0xbfe0cd605699753f, 0xbfebb6d2abbc1894, - 0xbfdc650091f30ec7, 0x3fe90c54439c03a7, - 0x3ff0ffee1ede0900, 0xbff86efa061b8134, - 0xbfd5c49c8a7a1c76, 0xbfd587166c701424, - 0x3fc4ea3371470568, 0x3fdd29565055532a, - 0xbfd4d8ceca5265e8, 0x3fe17120ad445866, - 0x400710fdc783c375, 0xbfdc4ba182f0b45a, - 0xbfeaa8433c5b6568, 0x3fc665309df3f048, - 0x3fcf9da5feb073de, 0x400074912b58daef, - 0xbff1556c7a0f6ed3, 0xbfebc15246a967f8, - 0x3fea25fdda3dbefe, 0x3feb0cf8f7574e2b, - 0xbfd8dd6845a81fd4, 0xbff98c1f1c208d5d, - 0xbff5c0c624da994c, 0x400c56298231f2b8, - 0xbff0c06bab03422e, 0xc0010dd9625b7a56, - 0x3feafdb9f92a7ecf, 0x3fb02da65d9e7980, - 0x3fedb58195bf4856, 0xbfd87f1f357d4763, - 0x3ff18e0715b659cc, 0x3fe5877b802c9828, - 0x3ff076da4a0f9e85, 0x3feea09126bf2a75, - 0xc000398fae5c5deb, 0x3ff6c98fdddc83cd, - 0x3f83e48087bd9520, 0xbfe04e8e6ebe9179, - 0x3fd69da853e80c58, 0xbfee9cd995d12da3, - 0xc0010ab1ea14998d, 0xbfb639d06bfb5312, - 0x3fc379d5198dfd04, 0x3fe752c22ea142d2, - 0xbff04bf13b854a1c, 0xbfed6051817e2d6b, - 0xbfe822e9c83269d3, 0xbfd77efb71220c14, - 0x4000dbb02d84c5ec, 0x3fe414736f39fbb2, - 0x3ff70ac5c6b06878, 0xbf8cfb8de6e97220, - 0x3ff15ea08709b8a8, 0x3fe1ae55a340ea88, - 0x3fef6d9ac74e67ff, 0x3fe80b961e316eb8, - 0x3fd9df8ed55d293e, 0x3fe0f751d269078e, - 0x40005968f2ae1840, 0x3fce34256992fcd4, - 0x3fc2f06e3c059124, 0xbff9a898035c0b60, - 0x3fd60220ef68e54a, 0x40014ebcc09637b6, - 0xbfb9f3b2fa8168b0, 0xbff2134443829df8, - 0x3ffaf51e5174ce72, 0x3feb52fd57b048ec, - 0x3fe2dac611fdc6cc, 0xbfd248cc16aaaabc, - 0xbfd40e0eb9f5e670, 0x3ff777e5fe28390e, - 0xbffcf3fa5674fb44, 0x3fd270a14343f6b5, - 0xbff957307fe90271, 0x3fdf603742226d9c, - 0x3ff8bf195a74cb76, 0xbfca9448fd4f4658, - 0xbfc90c22ef0d09a4, 0x3fbfc95e20304678, - 0x3ff50bdd51138f24, 0x3fe5d567cfe67cf1, - 0x3ff667fa0a12ed88, 0x3fe77ddf7fb953b6, - 0xbffec3d92e146886, 0xbfbe0d30fbd95c60, - 0xbfda13a11088a4b0, 0xbfd980516a84004e, - 0xbff9d2bc2462bee5, 0xbff874e553da40c8, - 0x3facb000f8353de8, 0xbfcecfc0a4b50115, - 0xbfefaf0a3e9a1ae0, 0xbfeb64c0b707174b, - 0x3f8d6bf8f359cc80, 0xbfe0b9edd9b8c4ef, - 0x3fd8b748baeadf15, 0x3fed4d9f2ba4ed60, - 0xbff13227cd94b465, 0xbfcb25263383b400, - 0xbff1448afc38448f, 0x3fe08bc7411c1f1e, - 0x3fe19ef1bd921174, 0xbfd7f3ba0239eed4, - 0x3fe0b39e4d5c952f, 0x3fd84a2036d6fa12, - 0xbff5ebf084a69978, 0x3ffa370e07eddaa6, - 0xbfee7ca7d6194ad4, 0x3fd1a374139f53d4, - 0x3fdc459cbe5c2ed2, 0x3fc2a8bc5f3c0770, - 0x3fb3e102cd581b90, 0x3ff14d32b1c83fcf, - 0xbff27a405155344e, 0xbfec972ac7b50cb9, - 0xbfe921eb6d4e4036, 0x3fbcebb0a5f517e8, - 0x3ff59397b828d7dc, 0xbf74bf21a971b740, - 0xbfe9f9a1203ed887, 0xbff27abf7afbba8b, - 0xbfea1864e3acbbce, 0x3fd061cb70d5529a, - 0xbfc5364e65769a7c, 0xbfef0120b96776d4, - 0xbfe5fa3b699a0ef2, 0xbfd76c6a5a422dea, - 0x3fe678303013f9f4, 0xbfec3aa826baee06, - 0x4006ff0a2e4bdc7f, 0xbff4d1e0ec7340fa, - 0xbfc51b263e469aa4, 0xbffe773efc63b110, - 0x3fe8748e596c4c4a, 0x3fe08169c9e33c8b, - 0x3fe9fc5f94728f3e, 0xbfef5b8590bdd2f8, - 0x3ff4372e50f4f47f, 0xbfe3a7b4175e0d93, - 0xbf7c3ccf49c46200, 0x3ff6904cd8d89d8f, - 0x3fe3c668eb184e7b, 0xbfd6bbdca847611c, - 0xbfd7b03c5ad3cc5a, 0xbfd31980c3a3d09c, - 0x3fed7c5e3e6c936c, 0xbfe88bb0abdf2b1d, - 0xc0002f17c79d55fa, 0x400018ea1b890b98, - 0x400776c5825cb4c4, 0x3ff0f3e389e45e9b, - 0x3fddacdf1d586996, 0xbf87f54c078bc5a0, - 0xbff8719f1e9c0244, 0xbffa7843653f6e7a, - 0xbff43115bc4fca01, 0x3fd3a2dc8a6b34ae, - 0x3fc8ce9b51152998, 0xbfb3002040002d40, - 0x3ff33ada0eeb6d1c, 0x40767d785499e3b0, - 0x40051270612dc0cb, 0x3ff13a528ac89160, - 0xbfc509e56b476726, 0xbfd1a972c42e02df, - 0x3ffb4357a302117e, 0xbff5e70ee1455868, - 0xbfed912d46eb837c, 0xbfc77989e1ddc53e, - 0x3fac356693c57170, 0xbff15d18a9518f6b, - 0xbfdba56d11aea2dd, 0xbf96e440d7fecef0, - 0x3fd75ea6f6918df0, 0xc005cc65752ac38c, - 0xbfc54dc188baea07, 0xbffb46fd9f263646, - 0x3fd6bd4f965af770, 0x3fc606caa14315d8, - 0xbfa27663da35ac20, 0x3fff039f828347e7, - 0x3fc48e48985ff920, 0x3fd1ad73eda6c434, - 0x3feb7fe7bd028025, 0xbfa124ac1e5eeeab, - 0x3fdf2dab2c51c700, 0xbff5cd3d971e929c, - 0x40026d2c9f0b2d92, 0x3fead873b4b21bdc, - 0x3fe39ed239e44c92, 0xbfc0ee454ebe5968, - 0xbfe89a8e6b23e9c8, 0x3fe1e80ec74c1afa, - 0xbfe7edecc831811e, 0xbff26540c213dd98, - 0x3ff24a06e1ca4266, 0xbff0c904a4f07299, - 0xbff31559b29ae76a, 0xbfc13e1aa43a14cc, - 0x3fed14f0e9bfef3a, 0x3fea15deea65a168, - 0x3fbfd5e940620fd8, 0xbfe2613e25badc58, - 0x3ffaac38007e3697, 0x3fd4be2addffb645, - 0x3fe7b77f75958505, 0xbfb738f255b5fe8c, - 0xbfd05f285fcbb692, 0x3ff28deef375731f, - 0x3fee4070ea724630, 0xbfddadfabec79508, - 0x3ff1466d78ad6b9a, 0x3fe6d1c4a1c1bba6, - 0xbfe895e438c36f60, 0x3fefd8c85566f2bb, - 0xbfd50d9b3eba3480, 0xbfe868e4535a7d46, - 0x3fed13aded83d06a, 0x4006f30eb5646aec, - 0xbfc53b1dadc0a5be, 0x3fe2892d50e668fd, - 0xbfe8adfb9b930015, 0xbfc90b16fd5d57c3, - 0x3ff25433b44a9e7a, 0x3fe2e03b4bf69e26, - 0x3ff8e84bb082e3a0, 0xbff3be6087a01b30, - 0x3fe13c0a403114b2, 0x400466cf67997891, - 0xbff6ee879d959287, 0x3ff7605212767ca0, - 0x3fa9fd4d8b5a5048, 0x3fec779b317fa410, - 0xc000e20283102fa0, 0x3feb4fa0735d90ba, - 0x3fec711372d3f8ce, 0x3fcdea963e33261c, - 0xbff5402d0054a25a, 0x3fd9f39f81b93550, - 0x3fe796c4fd9300d3, 0xbff25b94aa7d2080, - 0xbfd78409f101d948, 0xbfc7bf6132ffb5ac, - 0xbfd6646f7ef145d1, 0xbfe001c75362352a, - 0xbfcd29eb16f63140, 0xbfd989bd79dc90f6, - 0xbfeb6f2c5feceb88, 0xbfeaeb650133a68c, - 0x3fefb53b6d480d2a, 0xbfd11df3993b91b0, - 0xbfd5dd186f3e4f13, 0xbfe6f73cdc87663c, - 0xbfd4887911432c1a, 0xbfcc72f8d9d9850a, - 0xbfd012776ed4966c, 0x3ff3f5bb44bbcb7f, - 0xbfce951adb8de180, 0x3f46170f234cc500, - 0x4000bd5d354c96d5, 0xc000c90e71892832, - 0xbff1a58ae0119218, 0x3fe05afa2cd61118, - 0xbfc5ae4dcbc23412, 0x3fd8134058a643e3, - 0x3fe9e54d2f2f0ee6, 0x3febc498dd09fedf, - 0xbfd1ea3a3c6391a6, 0xbfc3d8077be08b0c, - 0x3ff0bca4c7cad4a5, 0x3febbb8425f17f79, - 0x3fe877e5b959a444, 0xbff3dd41ed561b6e, - 0x3fa9232217d16630, 0xbfca971bb0d64798, - 0xbfdf3ef9e321a37a, 0x3ff2e4c25e8aa774, - 0xbfd5fe3283eb2ffd, 0x400495636ff0a759, - 0x3fec276b3cedae76, 0x3fe1c583c98aeb05, - 0x3ff0f862d3f477b0, 0xbfc2894f5350f9f8, - 0xc00181f86d7ae05f, 0xc004292c76dd0239, - 0xbfe48e83eec865ef, 0x3fc62b9185bd5fce, - 0xc002e71424472b04, 0x3fd9f5df250fd1d4, - 0xbf7110eb74a7c400, 0xbfab20b20ab6df70, - 0xc00380b42ceeeb58, 0x3fdf08d884173ae4, - 0xbfb0def23c8cff28, 0xbf83a5d7a71557c0, - 0xbfe35e582c2dfe58, 0xbfa7a15ef9a1a860, - 0x3fc13d2b485281c0, 0xbfe8323c66265760, - 0x3fea2101ba55c4ce, 0xbff22724da5c9efc, - 0x3feaafd60cde35d1, 0x3fdff0c252efa5f3, - 0xbfe5226c22544011, 0xbfd87f9cc81e2bcb, - 0x4004da2396d78df4, 0xbff39d1207bb6f1c, - 0xbffdb89764f7d73e, 0x3fefbe3c952a8cb7, - 0x3ff38d3375226bc6, 0x3fef1a3c6568a411, - 0x3fd888b45d8527f4, 0x3fc2b54bfc4e7748, - 0x3fee3a82ce8f3ff3, 0x3fe7965c3ea1fd5d, - 0x3fe930aa5c30eb5f, 0xbff76c9d3f9e021e, - 0x3fb8733046da7ce4, 0xbfb7331f6b359360, - 0x3fdd0311e242989f, 0xbff7cb2cc02c3bfe, - 0xbfc89f30dea62418, 0xbff99930af692474, - 0xbff7010866f6f3e6, 0x3fd5fa4f61a60764, - 0x3fec1460273207b8, 0x3ff94039c2f5f40a, - 0xbff62d9010869306, 0xbfc357a55c4ebc9a, - 0xc006e7e43640505e, 0xbffbf342c20e43e8, - 0x3fecee54f46534e2, 0xbfc13af7977ac6c4, - 0xbfe503609f2e05ae, 0x3fbddca0e824cc14, - 0x3ff22ff2867f7d21, 0xbf9b13e5257cae20, - 0x3fea67a7f0bcebc3, 0xbfd360aec40b3a77, - 0xbfda0f318755a62b, 0xbfd65ebe5c7e2d8a, - 0xbfdddfc0d61dec7c, 0x3f9b8637316b4220, - 0x3fd314db927e8cb5, 0x3ff2984d780c599a, - 0xbff2bc72fa47c5b2, 0x3fe02c89ae6d6480, - 0x3fda3b0b39616efe, 0x3ff2a3270f7ecf9a, - 0xbff4917c7e36883d, 0xbff95cbbc12332d0, - 0x3ff3ce1282a84730, 0xbfa0e5c4ab0fb35c, - 0xbff4ea94117508c2, 0x3ff215dcc732ecab, - 0xbfe2fa25558e5bbb, 0x3ffaa6c0fd3825c0, - 0x3ff09f0327769f4e, 0x3ffaa50b1bfb09eb, - 0x3fe82c7c6f16ceee, 0x400404067f8d405f, - 0x3ff0ca3b447ba090, 0xbfde631068add90c, - 0xbfd609751e00fe2c, 0xbff2c7f9bf68a2f1, - 0x3ff1b2dc01b216e5, 0xbfd363baa62eaf80, - 0x4000549b72e2502d, 0x3fde93bc9faa8bfe, - 0x3fc9ca9593f1f1f8, 0xbff4023da20bd6ba, - 0xbfeb32f0a6a65554, 0xbfee0a64aa2e9fee, - 0xbff9f4a68e97065c, 0x3fd2a30e5c427e3a, - 0xbff1e6255e2a24b4, 0xbfee5dd0b535fd6a, - 0xc008d438ce350004, 0xbfeafc7fb910a917, - 0x3fe851f5b38903d4, 0x3fdd666fe3d2a242, - 0x3fdcac163f7d7f69, 0x3fcd79da06ed5338, - 0x3fce9f5a7c6873a8, 0xbff022a528419f6e, - 0x3ff48b93a633d037, 0x3ff47a83ee98a9aa, - 0x3ff1d0afb2a30dec, 0xc0033af0b208c024, - 0x3ff72c73ed072472, 0x3fc1c26cbf1b1dc2, - 0x4000ad4d03ec1a6d, 0xbff6d94661d936e7, - 0xbfe7e4f261dcb92a, 0x3ff8be348d0f49a9, - 0x3f85fb57509c3a20, 0xbfe9fb05092d9da4, - 0xbff6c6a25c494352, 0x3fcba45b3a1d0dca, - 0x400198e1e38e1b3e, 0x3fc0da9818fe4a98, - 0x3fbb7b0bc7a133b0, 0xbfd3cebb3a1d45a0, - 0x3ffbc3c6708e4496, 0x3feb48e891660ba2, - 0x3f64534ec8384280, 0x3ffd7806ca4ff68f, - 0x3ff296e6bb6e1f3a, 0xbff99adfcacc65e1, - 0xbfd8f1a95ee05828, 0x3ff13aafca665fb3, - 0xc000daeec11c5e54, 0x3fd42fa31eb0a382, - 0xbfea82fed3716baa, 0xbfef1f478d668677 + 0x3ff654f627f9c034, 0x0, + 0x3ffa74b3b71806aa, 0xbfdd3925c4b06a31, + 0xbff0169c9deec3c6, 0x3feac565e960fa9e, + 0xbfe4c343702ff05b, 0x3fa67a79bc9cf7a4, + 0x3fe8770854d5ff1c, 0xbfd553eece5be5ec, + 0x3fbc67431e9e32f4, 0x3fe540c44e264c6c, + 0x3ffe32d6f1fc1202, 0x3fe21360ec935635, + 0xbfd95df2f569595c, 0x3fe27bb461f8c719, + 0xbff0b2a9873df302, 0xbff6fd27dfb965ef, + 0xbff96904e0706a88, 0x3fe7da13d486c982, + 0xbfebe60553366c1b, 0xbfb82e952f16c168, + 0x3fe5099f2c4ad37d, 0xbfdeadc42c9e72bd, + 0x3ff13304ef9ef441, 0xbffedad84b42ca1e, + 0xbfdfd48a065a3744, 0xbf93715228411560, + 0x3ff8fc3bbe8b65db, 0xbfcdf209f87e0086, + 0x3fd652b9ffe08c02, 0x3fd6a722e768240c, + 0xbfb4809dcbc3e250, 0x3ff485361022b502, + 0xbfe9555e3b152ff1, 0x3fc993ec5cfacc50, + 0xbfe44d51ee93f14a, 0x40047f7c6f7250e2, + 0x3fb0f6e90bee0733, 0x3fe3c3409e4a0c34, + 0x3fdbdaceba154025, 0x3fcf8fdd3ddbe026, + 0x3fc5cc141986a812, 0xbfde72db401f87b1, + 0x3ff643e770c705b7, 0xc00a199f05fe0a2e, + 0x400fcee81948bcaa, 0xbfd9399a4bb38dd1, + 0xbfe4754f22374da2, 0xbfba8e98dba325b0, + 0x3fee9ca93139c11c, 0x3fd411b4c00ab4f5, + 0xbff4297d549baf22, 0xbffa14ac7b8a683e, + 0x3fe8548954eb9b47, 0x3ff15a7eee41800c, + 0xc0084c2a54361254, 0x3fe865acd20c73ca, + 0x3ff86be22b9f97a0, 0x3ff594a42391015f, + 0xbfebc62645f375c1, 0x3ff3d713c42ba8c5, + 0xbf8e185e8665cb00, 0xc0004b2bd2c9e670, + 0x3ff84b2cd2b69ab0, 0xc006ccf0ae51fcd0, + 0x3fb2e60eb5de53ac, 0xbfb9e561fa99b460, + 0xbfe628d8d09b8272, 0xbfe5d37a75aeb91e, + 0x3ffed84c4b88526e, 0xbfe128f8803f34e9, + 0xbfe5ca42c642b88e, 0xbfe0fffb456bb3f6, + 0xbff910a79d419d62, 0x3ff44acb3350645c, + 0xbff0a6ae33748e5c, 0xbfe8146a049ad4bd, + 0x4003b197753da385, 0x3ffa65d60ac2bf27, + 0xbfda43cd33c91555, 0xbfdb46aaa64a5a87, + 0xbfea4db258e37d84, 0x3fe331f2d44757be, + 0x3ffa01eadc57866f, 0xbff48c2f15c51158, + 0x3fda47c52599e56d, 0xbfe120e1bf8e9df7, + 0x3ffc1f8773fa1302, 0x400254eb58fa2876, + 0xbfeadbd837f2b849, 0x3fcf6f290e95370e, + 0xbfd4bdb6f674ddd3, 0x3fe029f2d8fc0351, + 0xbff6cbace4ace091, 0xbfecd4c33068bc91, + 0x3fe71ef0d6fc1934, 0x3fefa4694968c40d, + 0xbffd641ff04b5bde, 0xbfed878037f57df7, + 0xbfe87147ef4fe5ad, 0xbffad3899e5f23f4, + 0xbf9bf8c184b2d330, 0xbfeec01107ba1328, + 0x3fe84e4f0f59b42b, 0x3feca3901a800f58, + 0x3ffe8d064c901162, 0x3fce60f9a1e8a60c, + 0x400032d13f1c7fca, 0x3fe4720fcddfa14c, + 0x3feb2559f74e3260, 0xbff601ae08527b34, + 0xbffa06b5cb4aeeb4, 0xbfec32b7e2eaa80d, + 0x3fcf77081988fa34, 0xbfc8ddd31abd10ec, + 0x3fd4ce1151df2f10, 0xbff49f4384026554, + 0x3fd8c55b078352d0, 0xbfe86bb743ba1b8e, + 0x3ffc356c9e309bb2, 0x3ff21d5b0c041c81, + 0xbfe007f27d85c334, 0x40082b6eaaf9322b, + 0xbfe7c2684cbc78ba, 0xbfa491c9d61257a8, + 0xbff67151b7f1fea4, 0x3febf2e51eaa75f0, + 0x3fc08e22839cb380, 0x3fe4642544e73000, + 0xbfefdc5da59bb6c2, 0xbffdab34b59db556, + 0x3fe61230916a9b27, 0xbff5b6987d81d0b6, + 0x3f8c48bef4c6f880, 0x3ff2efaf7a7602d2, + 0xbfe96aa3b4393ac4, 0x3fe64fa1e7966eff, + 0xbff189d7f1125763, 0xbffb1fe360fb1cc8, + 0xbfe7cc3564d2ed5e, 0x3ff2928db3a5d6a9, + 0x3feb319fd62533b3, 0xbfd469d2183f4bd0, + 0x3fe8431dc9e4c8bc, 0x3ff0629b2014f341, + 0xbff75ea00d36767d, 0xbfce342e84399470, + 0x3ff15c853f3267c8, 0xbffa85c1ec9259d0, + 0x3fd4039ddc16f0a0, 0x3fe919d8758bbc94, + 0xbff13d601fb42938, 0x3fcac420153d5ad0, + 0x3fd6f99a3f5f2288, 0xbfd63f527088a8f0, + 0xbfd207a1b02e7ad0, 0xbfc74b4b4c2afc74, + 0x3fea3e3c1bb6034e, 0xbfde6d53fa8a974a, + 0x4002ffe4b162ca2b, 0xbfe73945fbcff8b9, + 0xc0034902e4753d56, 0xbff9434c95c2d410, + 0x3fff290d25e3e448, 0xbfd2acb9bafdaefe, + 0x3fdb17a437e1bfde, 0xbfde9c84e39325c4, + 0xbfe95b6b95713808, 0xc00800e94dae42d1, + 0x3fd05319d9aab506, 0x3ff80e16f09a98fd, + 0x3fea57166140aedd, 0x3ff8ab5fe85168b3, + 0xbfea5a9477b59adf, 0xbfe44438dd808bb2, + 0xbfd266a36400c2c8, 0x3fd0d5a114efdff7, + 0x3fd422a07b44f506, 0x3fd470a43862f12a, + 0xbfe02b8a846ac0ff, 0xbff3c37322c2a812, + 0xbff84e7f48317bf3, 0x3fdaa461e0f4b904, + 0x400135b3c5df9656, 0x3ff46ce544fd2376, + 0xbff4cee0f0ee79d7, 0xbfd33645d012303e, + 0x3fb82867e5d04b3c, 0x3fe2508bc4b32535, + 0x3fec7c01d919a49e, 0xbff833e5e3fbe688, + 0xc00a95357f02473d, 0xc0041be5d6ecac9f, + 0x3fef96a027bbedf4, 0xbfdd3edca95d1910, + 0x3fe2493ec762807c, 0xc001200c18b1958b, + 0x3ff56864970db361, 0xbff20cecaf5cf41c, + 0x3fa3ad5cd8d13720, 0xbfae547451ffa8b0, + 0x3fee6654a7375c66, 0x3fbef6f8b37386a8, + 0xc003791b81db60dc, 0x3fe39aa1234c8ebd, + 0x3fe4eae9a981f0e8, 0x3ff05e6f5c962ab0, + 0xbfe00d240a71dbc0, 0xbfdbb598771f78e4, + 0xbfd16e84ab6cdaac, 0xbfea318e59f73cf2, + 0xbfc48b3ec008f0b2, 0xbff1e221c1ffc49e, + 0x3fe717ecb5be0439, 0x3ff33fc57c42248e, + 0x3ff503806db0a7ef, 0x3ff80c4765283310, + 0xbfdc15258f8c85b4, 0x3fc80429e47fce0c, + 0x3feeec477db6ce4c, 0x3ff030792a574f25, + 0x3ff217d1be07a07f, 0x3fea54875d0f4011, + 0xbfe2b780d2bfcff1, 0x3fbfc371ddf25990, + 0xbfe00a56870c5ea8, 0x3fb3eb57adc5b560, + 0x3fdb8768867b58d1, 0x3ff31cef7e4e5461, + 0xbff894622bda6f0d, 0xbfe8aabbb7fb1940, + 0x3f84c237d6320dc0, 0x3ffe6fd66f5c056f, + 0x40020e16329bf5c6, 0xbfe6a1bb11f90ef7, + 0xbff587df9a6ffa47, 0x3fd191917c3da1a2, + 0xc0002a6c5ac8b531, 0x3fc53f4411bb5968, + 0x3fef88f535755c3c, 0x3ff7de439f4d2261, + 0x3ffb577e5fc84a1c, 0xbfc8f34dc4437670, + 0x3fd02be2aab5ccaa, 0xc0001506d34e1a36, + 0x3fff5f303ccd1748, 0xbff1b12d6142b1a3, + 0xbfd30fb5cc4f7d2c, 0xbfeed47558684664, + 0x3fc46e11ac34f3a2, 0xbfd31fc3a7634ca9, + 0xbfccc64770379286, 0xbfdbe9800dc7fc6a, + 0x3fedae235b31fba2, 0x3fc35ec19f45cd70, + 0x3ff6a9186454c6c6, 0xc0765a4be82bf96a, + 0x3fcce348da9fcf70, 0xbffba089ff1e6f58, + 0x3fba6b95936bcd48, 0x3ff0901600729555, + 0xc0011c21449e8c15, 0x40050873c43ec51b, + 0x3fc69a14112ec85c, 0x3fe8ea3aa18a15a8, + 0x3ff2f16f5b7b43e0, 0x3fa201e197c57a10, + 0xbfe88706e580e2ec, 0x4001f51254e77eaf, + 0xbfda5a6f976b0cc0, 0xbfe36c28fd18d00e, + 0xbfd8d428e78ea0a0, 0x3fc50890c35fd990, + 0x3fccecae0c5654dc, 0x3ff5151ce06799c0, + 0x3fe1f8472aae49b0, 0xbfbf1a02c865e6f0, + 0x3feb34bba320fbc8, 0x3fffb781bd8305b6, + 0x3fe802b47b20e3c2, 0xbfd7e033674f8802, + 0xbffa5e6b41a97fac, 0xbff4e05a8fafa85e, + 0xbfe1333816afbfa2, 0xbfe53ed6930fa40f, + 0x3ff8937fd8e69a44, 0x3fd6e5f369833a38, + 0xbfd0d7276322acc2, 0x3fa45508b575fdee, + 0x3fefe0fec8182052, 0xbfebb10c5d7eabac, + 0xbfd4ea67b3a1ee07, 0xbfd8a35fc0ce1b49, + 0xbff5e1b6371a9bc5, 0xbfe38a24a9dca044, + 0xbfe65cddd57f08c5, 0x3fe74bbb97f130a8, + 0xbfd528a9863facec, 0xbfe01e6c9fcd4af7, + 0xbfcf4636f88583ba, 0x40011c5396f36d98, + 0x3fe6786c6d522b9b, 0x3fd5526e104d817a, + 0x3fefb4ad6b5903f6, 0xbff1ef43456944c3, + 0xbfa9046268636108, 0xbfde20ab4e4d2d4e, + 0xbfedf8886acbe777, 0xc000334415442e91, + 0x3ff01140ad3df068, 0x3fe654a46e64e8b4, + 0x3ff16192fe318f46, 0x3ff585136ae1006e, + 0xbfaefa07c1e8e8e0, 0xbff0bf98e431441c, + 0x3ff45fdeb1e400ee, 0x3fc2cce91627e858, + 0xbff7cae3d668be3c, 0xbfb8f6bfa1a88944, + 0xc002ff542d2cfaf6, 0xbffc05cf1bc584f1, + 0xbfe8bd0931ed3020, 0x3ff9988150a62ed7, + 0xbff4677168b0bc52, 0x3ff8a7ef2a3ac380, + 0x3ffa7d99e395ae80, 0xbffb73ed97f77bb8, + 0x3ff3a8e38eecb628, 0xbfebd8e43e9f58c6, + 0x3fece8cf536e75fe, 0xbfd479be85c12b66, + 0x3ff5b7fd3f98d44f, 0xbff0b40a1379e5fe, + 0xbff7a1aa1fb88f9e, 0xbfe44498f1dc7dd4, + 0xbfd3f6bca3835a93, 0xbff49b92be15f51e, + 0xbff10ccbae3c3c44, 0xbfec0077a1aeb7fb, + 0x3fbc5bc82c60a918, 0xbffce4a543e98868, + 0xc0017bf599bb68d0, 0x3fc7ab798b480bdc, + 0x3fe7f2fe4469ff5f, 0x3fa2088975ee9910, + 0xc0037edc4c2b9336, 0x3fe3df7a33751cde, + 0xbfedaa56a8dc2f5d, 0xc0075d6468447f8f, + 0xbfdff89037c339c0, 0xbfe27e5c45007c3e, + 0x3fc47b7551f8acf7, 0x3ffc954f56571752, + 0xbfe13d5a85e99770, 0x3fdceda0362f3cbe, + 0x3fe6e89edeb5e5d8, 0x4000be402155dbb7, + 0x3fe504dbfde542bd, 0xbfedfd78726763ea, + 0x3fc756aa2b9753ee, 0x3fce74037c6586ee, + 0x3fde19c901947d5a, 0xbfc4f33d0ffc94ce, + 0x3ffd89cf329ff207, 0xbfff00bf90a2749a, + 0xbfb6cf5ac0726368, 0xbff5e7da49cf98c4, + 0x3ff0f980edcdab00, 0xbfd69ac3a52a5b9d, + 0xbfbde8dbb19a9860, 0xc004b4a31338e0a1, + 0x3fefebc46b43d358, 0xbfe111947273a714, + 0xbfb6fbf6f2756338, 0x3f7ae076cd2c6b80, + 0x3fe0419764545588, 0x401003ddd6c644d7, + 0x3ff65c3deb8570c3, 0x3fe8666e15bd6771, + 0x3ff5ce65eca8f33f, 0x3fe2cb1ad00470b0, + 0xbff3ea77d1bf249f, 0x3fc46329cb221628, + 0x3ff15a9dee503226, 0xbfd1a1ef4c3908e9, + 0x3fe64844f0a6961a, 0x3ff0021ee35ce7d0, + 0xbfff725253020c0a, 0xbfca6193a28db700, + 0xbfe7c014a91e7a36, 0x3fc0892a4a963341, + 0x3fe83bd1e0de4725, 0xbfe868d8be4ad3d7, + 0x3ff2cec88a1868ba, 0xbfde57d81d178b96, + 0xbfe655ff6f91b2b6, 0xc0062285be0f8e74, + 0x3ff2dc7a9efe6e2a, 0xc0045edac1dfc0bb, + 0x3f7ea141345b34c4, 0xc003dcfebd203c0f, + 0x3f9417789d581558, 0x3fbe4aa250a21490, + 0xbfe9b7f56c532260, 0x4002d0177d5487c5, + 0x3fec28ed1204a526, 0xbfef1c9568349362, + 0x3fdddd6d6db02bec, 0x3ff211ccf975bd3e, + 0xbfe34345fc4eb4b0, 0x3fc5913aeb753522, + 0x3fe2a46c0d637e45, 0xc000a4cae0c78862, + 0x40024986ca6e2739, 0xbfe0c75870e5610e, + 0xbff034697f6f5479, 0x3fe7d8f80f5f5769, + 0xbfdd5e72ea817508, 0xbfaf2a3f7a6df6b4, + 0xbfe0e065bf13e694, 0x3fe5d659b2c2f361, + 0x3fc002b2788636e6, 0x3ff2a542d597f685, + 0xbfebdd65b5a22b4f, 0xbff2f4c8e574ca45, + 0xbfe540013bd03b7b, 0x3fe35e0cfc721ef1, + 0x3ff90f94282cc4c6, 0xbfb91fca274f5984, + 0x3fe8610fb516d4eb, 0xbfd4e84b1086d347, + 0xbfda01d2dee40072, 0x3fee27587022ae47, + 0xbfc7c33884769454, 0xbfcae33834a2204f, + 0x3fe240a48cb96f84, 0x3fe70216f6bcec2e, + 0xbfe6accab8a7e21c, 0x3ff36f228b8ab57e, + 0xbff962752b66b095, 0xbfd5c02657bd235f, + 0xbfb87d0b24d317f0, 0x3f87ff36c4252650, + 0x3fd4e98f5570beb6, 0xbfe10d699e2ad6fd, + 0x3ff0b87d95d4b4ca, 0x3ffecee10fbb9b38, + 0xbfe1f127e36df6d6, 0x3ff92a04665b31a5, + 0xbfe300900819a874, 0xbfe523159b5c33d6, + 0x3fd12a1d53c6c548, 0x3fed9a5ff2892f2f, + 0x3ff0bfc3d3c05be3, 0xbfdb99df14feadcc, + 0xbff0f4470105884e, 0x3fe10fbf16688d9b, + 0xbffaad45455d0d7c, 0x3ff87a21b736cc62, + 0xbfc50294be9b7ab0, 0xbfe0233916bd4930, + 0xbfe6c0ef4ac46677, 0x3ff326c12d801850, + 0x4005c85d46784ae5, 0xbfe5a4b4085619ee, + 0x3fd321951103d778, 0x3fe64bde38f409f4, + 0x3fff9b91f546eef3, 0x3fefe67328cad536, + 0xbff119c883bed6b1, 0x3ff30a480c58c008, + 0x3fe4f0203d199744, 0x3fd216b9d07d06c5, + 0xbff6c30cb1bce591, 0xc011c78ac290cc6a, + 0x3feff57b4caab14e, 0x3ff757df8bbdb9ae, + 0x3fe46a25675a782c, 0x3fdf276e83917dbc, + 0xbfaebb46d4a790e0, 0x3f964c78e4d0fea0, + 0xbff44b5d933b9114, 0xbfdafe95ac35c245, + 0xbff5a87dc48a7bfe, 0x3fc799deed698ee7, + 0x3fbcd82cbf3919d8, 0x3ff25bbf4394e87c, + 0x40083ad264555890, 0x4008950e3d529489, + 0xbfffd5b57592e14b, 0x3fe462208ad86b89, + 0x3feba7a8795af635, 0xbfe55ec309baa0ce, + 0xbfbb5b7a409fe95c, 0xbff670a08206631a, + 0x3fe49857400c04cb, 0x3ffcd487c64b2d64, + 0x3ff1deb81b4ec198, 0xbfd468c1a2faf98a, + 0xbff0499b7e1fdf38, 0xbfe5367737e5abec, + 0x3fd068d1eef1c94f, 0xbfd1b36ee67888eb, + 0xbfd881a40ee68d37, 0xbfe2240a6969f314, + 0xbff8001d36ac0ede, 0x3ff259054b2df31c, + 0xc005e1b87d87c0c9, 0x3fdaed83d3b5ae3f, + 0xbfe58ef0d44b5e5a, 0xbfcebfe4e3cc4d45, + 0xbff63bff9d503f0c, 0x3ff5143f229f13c0, + 0xbff0b3204bf8be26, 0xbfd0164c9e71e6c2, + 0x3fe7c1d2e282fdc4, 0x3fdb4d93a0490a04, + 0xbff3a98fd579ed2b, 0x3feab69136b5d626, + 0xbfef8b3a0bee155e, 0xbff227a3cdf6a6de, + 0xbff39b83154bb7a2, 0x3ff2d295115bed53, + 0xbfc1c535eed7f8cc, 0x40013bc794bd252f, + 0xbfed355f9c5f3124, 0xbfcede9043955ec3, + 0x3fe4202801bad9ac, 0x3ff304b6fd59c88c, + 0xbfd82ffddb032536, 0xbfc753c75d385a1c, + 0x3fdf76a8302a7972, 0xbfecd971b75f6c92, + 0x3fe9938c705bb44e, 0xbff61733428d8631, + 0xbff7600f6dcac75c, 0xbfea20c1033d5466, + 0x3fe5b5a3e99d6309, 0xbfd7f4490b44e97c, + 0x3ff414002a9bc268, 0xbfd3f0cd8098e3e7, + 0xbfd5d27a88386d66, 0x3ff2a8c5e301343e, + 0x3ffe806fecdbe1f3, 0x3fe8c84df48b82fa, + 0x3fed8fa2a121b1b6, 0x3fd36adab9373ee0, + 0xc00152b4ad904f98, 0xbfea8abdef4f3a49, + 0x3fef013fe274e8d2, 0xbfe6482b8f2bffd0, + 0xbfd5b11e706f11d1, 0xbfb12b341802ee54, + 0x3ff0d9f64888476f, 0xc003062cf81227e1, + 0x3fd1b89eed679202, 0xbfb2d69bb56439f8, + 0x40009d60a0311f82, 0xbff598b2b3289b40, + 0xbff4cea1fe74a1d1, 0xbfda3f81bcafc468, + 0xbfd9ae6935d67ecc, 0x4000d82f1965f1c9, + 0x4003afd74f456b9f, 0x4006dbd7604aaf61, + 0xbff18c81916b3ec6, 0xbfee65fdd0c1df53, + 0xbff0c794017de5fa, 0xbff16b3922a21770, + 0xbfe7e096c147d314, 0x3ff8c5b7275112c0, + 0xbff5fd21e65c8d66, 0xbfd6a140f6f39246, + 0xbfc821c656318b18, 0xbfbcc1c3d777cf00, + 0x3fd87f1f48e1a378, 0x4000b56a205944fb, + 0x3fd2a285b1d069d3, 0xbfd42640bd261294, + 0x3ff7336fb540672e, 0x3ff3626cc47e0c78, + 0xc0034bda027e170b, 0xbfd19f02c11adc9b, + 0xbff026ccb2c98e08, 0xbfeb5ec0dad3bdee, + 0x3ff07fb780bfa61b, 0xbfc551058e010e78, + 0x3fdcf209133bc26a, 0xbfc09068091a7d84, + 0xbff32f7d373b738e, 0x3fcc0f4702b30c17, + 0x3ff949ace48ddc25, 0x3fb0c636177da1b0, + 0x3fed86c36ffec036, 0xbfe985214f719556, + 0xbfea9479d93b4781, 0xbfe329a65755d6c0, + 0xbfe35fc045f8cf4e, 0x3fdcb0e8cae6b86a, + 0xbff031bb70dd3746, 0x3fe799305f1c3fa7, + 0x3fe5395c36ecc4c5, 0xbfe241f2b6569234, + 0x3fe1e798f575e5da, 0xbfe0ed634dae4455, + 0xbff65bceac915c83, 0x3fe15b6eacdee6de, + 0xbfeb8e3fe1dd27d2, 0xbff81faa61beb28e, + 0xbfe08f617ec06365, 0x400436aca95abb05, + 0x3fd0c6055649820a, 0x3fea59df0235ad6a, + 0xbfece5004cab3013, 0xbfea1f06dd3721e2, + 0xbf94dd44537637b0, 0x3fe17f8de43a47c9, + 0xc000c15a2f619d16, 0x3ff767e834ee082f, + 0xbffb20ade92b8e9c, 0x3fa1d127582c6060, + 0x3fd25f444aa08319, 0x3ff2018693788c24, + 0x3fa1d2fabe4e37b8, 0xc0000865b88d9b65, + 0x3fef0944c5410c28, 0x3fe1acd9a78c368b, + 0x4000b68cbe6d8d15, 0xbfd11928607c6a1c, + 0x40028618ffe80619, 0xbfc22b17903f064c, + 0x3feb510f31815215, 0xbfdefd2d2b6a06a8, + 0xbffb03bb679bbde9, 0xbf94ec5529011c98, + 0xc00071b92e183954, 0x40050e2421b6b027, + 0x3feaa8d56d383162, 0x3fe345038dcd7f98, + 0x3fd882a4b0973d4a, 0x3feefa6146dcbab1, + 0xbfd2639472de9326, 0x3ff839b5bb662e6a, + 0xbfd6ad544cdc2e46, 0x3ff58a84c96e49fc, + 0x3fe65078e27c37f2, 0x3fe756524af68ba8, + 0x3fe54dc626cecde9, 0xbff6e2561ecadf75, + 0x3ff78725d0e2921a, 0xbffae9666bdfeb3c, + 0xbffba8468213da07, 0xc00121555f4fe320, + 0xbff372a1c045befe, 0xbffc745b71050f03, + 0x3ff3a42eac355725, 0xbfe06ea40a7ae6b1, + 0xbfe2fd9600fcc964, 0x40003bb8fce5461f, + 0x3ff17acc2c7f60c0, 0xbff7c66c9de4a78e, + 0xbfe5c1e0093b1ebe, 0xbfea7f35f2ee691c, + 0x3fe654b35a069a79, 0x3ff1e57b89b31285, + 0xc0011cfb8b23f925, 0xbfc7cacc88d3b47c, + 0x3fbca94dce8ce8e4, 0x3fc07dff36174294, + 0x3ff0480b8faeed74, 0x3fdb83b8fc45a649, + 0xbfd19cb74803d2a0, 0x3ff1482160d838d8, + 0xc00001978c5244a2, 0x40006ebad3ad7e40, + 0x3fe8ccc022464854, 0xbfe3a1bfcdf9acb0, + 0x3fefaef30cb65c96, 0x3ff1e647052b756d, + 0x3fe50760913b291a, 0x3ff4f66298a75070, + 0xbfe08d39bacee5be, 0xc00031b97fe671a2, + 0x3ffb1dc3bba494fd, 0x3fe67b9098b2e421, + 0xc001993c44950eb8, 0x3fc708cbb3572bca, + 0x3ff400874d480a00, 0x40015d19fbf352c2, + 0xbfef0e54561db9d8, 0x3ff38d12afbb9677, + 0xbffb41e74494470c, 0x3fe08a6ac2ae995a, + 0x3fd07b0eabb5cf3c, 0xbff3a9b75256bf1a, + 0x3feb9d02dc79eb50, 0x3ffc0b03ae2558e0, + 0xbfce0b6db0c26d28, 0xbfefeca5643d5f17, + 0xbf98f7e217f1f1c0, 0xbfa7be458cdad900, + 0xbffac3021214a284, 0x3f87fd8e6a27dbc0, + 0xbfe5c7c1917b6de2, 0xbfa6ba72954b7cd0, + 0xbff1ddd393f42586, 0x3fdde08f115cd8a3, + 0xbfd805db8e0a0fee, 0xbff5d5c53df012d6, + 0x3fe28a25ec5ff98b, 0xbfd4c9f21bc39786, + 0xbff12f29e82617a0, 0xbfe1cf8cfec4f176, + 0xbfd36be43b0ca5e0, 0xbff9807dc7abad32, + 0xbfed4e20556eb2be, 0xc0064bd6982bda51, + 0x3fe510e0878aef9b, 0x3fec3c8e85af7714, + 0x3fcdceaf881355b4, 0x3ff3663517dc79cd, + 0xbfe9d6c9afb8e158, 0xbffaf03f8b2f022f, + 0xbff0b786dca1cb0c, 0xbfe38f6e53be5035, + 0xbff4247e510bdaac, 0x3fd4f402316a5df8, + 0x3fe779d77f72e18e, 0x3fd1f0bb0b119a92, + 0x3feef09360fa109e, 0xbff190756ee312f6, + 0x3fb0e39b14125efc, 0xbfd58e242915c6c7, + 0x3f947f205875a7e0, 0xbfc3f8056ae3ed9e, + 0xbfe2efcdd4a46350, 0x3fbc61daf6a666c2, + 0xbfe157fc88697c21, 0xbfd7fa18a68c1f0f, + 0x3fd91cf3cfaf2e34, 0xbfea06ad01a6bc7d, + 0xbff509bc1d7f0eca, 0x3fd98f38ba50e47c, + 0x3ff7ae56f1e55190, 0xbff5b712b03cef50, + 0xbfe6ae3373430728, 0xbff3eb0da52eed36, + 0xbff81daf7a6ad913, 0xbff6f427409e94fc, + 0x3fdbe277286df322, 0xbff5fdf8e0ed1175, + 0xbff4aaad8ec00d2b, 0x3fede9790b4a516a, + 0x3fde5d09eb428e92, 0x3ff8534833a04973, + 0xbfe734e8491cecfa, 0x3ff43a665ef05394, + 0xc00ac7fb9087f063, 0xbff73a166c599700, + 0xbffda2175df810c8, 0xbfec46433991fb17, + 0xbff9f8bda50f8bcf, 0xc00d8aaae49de300, + 0x3ff7bfc246a317ca, 0x3ff5f4087ab2e11a, + 0x4001b612118a1a1a, 0xbfeea6028605ac6a, + 0x3ff8546f98a2ac7a, 0xbff74903ab872380, + 0xbfed1b4ed795de47, 0x4004a78675209af2, + 0x3f935db5c429209c, 0xbffe7cb4d292bfd0, + 0xbfe7550d709ea342, 0xbfd7086297cacef8, + 0x3fbcb42e8cba518e, 0x3fc9b32c5f8c790a, + 0x3fe46476cff86057, 0x3ff7ae1e909a252a, + 0xbfe21850592b6b00, 0x3fedc6a57eb03e29, + 0x3fe0e5b09d1558ce, 0x3fe81f926e999fa2, + 0xbfec0a0ad2738b03, 0x3ff93ed1bb7a6b96, + 0xbff20f3452163cf9, 0x3fc3cab2991b1522, + 0x3fe3c00ff58bb7a5, 0x3ffa98069d8b257a, + 0xbfeac257eaec6da0, 0xbff696cb70afa659, + 0x3fee839453344fd8, 0x3ff3002e1cadf469, + 0x3ffaf30edbe398d2, 0xbfedf848882024eb, + 0x3fd1953578b146b7, 0xbfe664458b86e2f4, + 0xbff6bb08775dd120, 0xc003f9319b9ed920, + 0xbff3b11aefb54cdf, 0x3fdc56f2459a467d, + 0x3fccabc30641ad36, 0xbfdbe1231be47b5f, + 0x3ffd146761371ae4, 0xbff0e5f10e6de76c, + 0xbff1dbeb96ba5bf3, 0xbfd20893a8d2dc8c, + 0xbfed3e6e1b3c1682, 0xbff100f9a2bc9d21, + 0xbfe7c91eabcf405a, 0x3fa611fec7933cb0, + 0xbfae111089ddbdeb, 0xbfc6ca7b9c64adbe, + 0xc0001fedfe9fc89d, 0x3fe2c5ae0cb56f98, + 0x3ff261d3d7a4de99, 0xbfe3ea695c0d56a4, + 0x3fed96839beedaae, 0x4007f47bf443b173, + 0xbfa073eceda88700, 0x3fc11221d3245f76, + 0x3fee885d8880a925, 0xbff33c9a169dced9, + 0x3fd2a5581858602e, 0x3ff8a40d663f0fb9, + 0xbfc843e2d06943e4, 0xbfe8a42b91388147, + 0xc00658ac1887e01f, 0x3fe08e2127d5fc2b, + 0x3fe12bad76dcf3de, 0x3ff72381d527c1f4, + 0x3fe4a12ad1d27d8a, 0x3fde2d3ad9f082c4, + 0xbff99f05222162f6, 0xbfff6871dc78da2a, + 0x3fe8b26a64121133, 0xbff34860521faed4, + 0x3fb52b6a19dad080, 0x3fe5942e43afc0d6, + 0x3fbd1d60d70e3c30, 0x3fe5b499afa4ee9d, + 0x3fe0688a15f2779c, 0x3ff82ed666e8435c, + 0xbfc30350fa491152, 0xbfcc3685e4b544cc, + 0x3ff497b05b72d46f, 0x3ff3a7d3bc7696e5, + 0x3feed627c0f50a8e, 0x3fe0e8116577a06a, + 0x3fe7d82a1c6c428d, 0xbfc905a0136a69b7, + 0xbfcdea2d2fabe5c2, 0xbff889d2e8dc62eb, + 0xbfe91f3f0ee7e777, 0xbfea73d7b05298e2, + 0x3fe85857313f0a56, 0x3ffc699e9ccd1598, + 0x3fdb4a347a6ff23b, 0x3fee75d2ae6110fa, + 0x3ffaaf91c6e09a90, 0xbffc29dc0d200e04, + 0xbfca3724890e98b8, 0xbfd682c1a2c3eba8, + 0xbfda5c231fc7eba6, 0x3ff617187bff9060, + 0x3fe8b4a900710a8a, 0xbfc4d5b907c7ad9a, + 0x3ff5227c0a8822c2, 0xbff49c0aa58cd638, + 0xbff1470cb52a2c30, 0xbfc6c8e37514cbad, + 0xc003ed6c20dc8093, 0xbfc0d1f167598c67, + 0xc007da804e3e119e, 0xbfda92414720b429, + 0x3ff1f58d32dbb059, 0x3febc1fc151df864, + 0x3fce253410f394f4, 0x4004d8ba39f0652d, + 0xbfdf6b6574c9319a, 0xc00321f4fecd008c, + 0xbfcb72c195691bf4, 0xbffc68e948ebc5d0, + 0x3ff318dfdef933a4, 0xbfdbd9bb8521a55b, + 0xbfeaf3b2f9695a48, 0x3fc4ef7123103b00, + 0x3fe77dbc0eeeeec4, 0xbfdde9c9a597b475, + 0xbff3f0221bd00de0, 0x3feae32cf835f9c3, + 0xbfb82112a8606ae8, 0x3ff811fcfcb6bb1a, + 0x3fed3eeeb28141d2, 0x3fed616b6ad7b5b7, + 0xc0068d73a9eae596, 0xbfef2b2e3e400fcb, + 0x3fc1f88940e77848, 0x3feaeb2053994165, + 0x3fa18e8ef59589b8, 0xbfbd720e392c85b6, + 0xbff34ccddd809f0f, 0x3febe293a09f9a1a, + 0xbff560d3f3ccd069, 0x3ff2146be79029c2, + 0x3fdbd455d63a8581, 0xbf712553ea7e2c00, + 0xc005c437d575ed90, 0x3fb3c95962302cf0, + 0x3ff83ddc1f8a3e01, 0xbffe20efd8859fe0, + 0xbfdc43b5ccccdb54, 0xbfb12591bae13020, + 0xbfdb2092a2733138, 0x3faead240343d390, + 0x3fd426c970ef2fe2, 0x3ffb9268ee28d775, + 0xbfcc70c496243c50, 0x3fe4060858173bfb, + 0x3fa7a53f6b0879f8, 0x3ff5759e98261840, + 0x3fdfc9f8356decdd, 0x3fef1dcfa86b5a15, + 0xbfb4782542efed88, 0xc003a9768de8eda0, + 0xbff330a0b161283c, 0xbff4d365ebc5de48, + 0xbfddeec3b41a1f32, 0x4004384eaedd5377, + 0xbfbcb0f6c9e6c528, 0xbffdfe28f3e9b64d, + 0x3fd34156d3f0a071, 0x3fc1af01ad299c46, + 0x3fd846ac0f1fd1fe, 0x3fea41f1b492ccec, + 0x3fe9d5c6f4fefd5c, 0xbfca5aad921e2fe8, + 0xbfc0a26bceb4a0ca, 0xbfeafe64de4d1620, + 0x3ff3cc731fd75d1a, 0x3fd72a7fe45ec5ff, + 0xbfefbe29b75c94ed, 0x3ff5a86f51cf4f61, + 0xbff41693f693ad1e, 0x3fe1c3b010aafd54, + 0x3fd83eafa8552874, 0x3ff2409424717aa9, + 0x3fb7ff1ffe547f58, 0x3ff09a584a80be6a, + 0x3fe0ba90463265aa, 0xbfdde378dbf6ddaf, + 0x3fd0f223e191eb0e, 0xbfeb27ecf93ad05a, + 0x3ffa0fc3fdff4c1a, 0x3fdec16589a3d452, + 0xbfcc7070ac38f665, 0x4001c37dee6ab331, + 0xbfe8a24162cf45f4, 0x3fd88be25791e3e2, + 0x3ff06714044deef9, 0xbfeb6f3b29f1686a, + 0xbffcb1d97750c3f7, 0xbff6b980505dc23d, + 0xbfe3a940b2052588, 0x3ff4213bfb4734c7, + 0x3fe94ffaba45b49c, 0x3ff8a92ebc0e982e, + 0x3fe0bd48471d6a88, 0x3fa3fa3d72f900e0, + 0x3ffa41dc0480a73b, 0xbff5eff7c91fb6dd, + 0xbfe8490bc7d84977, 0x400171dfeb7e5c2b, + 0x3feaa04d4e0c82eb, 0xbfccf16825a5fbf8, + 0xc000c0b331056e39, 0xbffda507ee6da0a3, + 0xbfc4726880cb5398, 0x3fd358987c7b26c2, + 0x3ff2edaf4476515b, 0xbffd13ec0299b236, + 0xbff00cc7bb027bad, 0x3fd543d11d94564d, + 0x3fe7f0c5b3cf24ea, 0xbff0bd2b8e30a121, + 0xbfcfd1857cc306f6, 0x3ff5118c28a2f62b, + 0x3fd2fbaf3860cc72, 0x3fc05779c16f1fa8, + 0x3ff150662979737a, 0xbffcf429eaf0336b, + 0xbff5619f5c33f700, 0x3fb1bcbadf1ffb78, + 0x3fe934b1d436c7d6, 0xc001c865b652811a, + 0xbff4741bf1105a95, 0x3ff28bb4d2cd6193, + 0xbff1a252c03a2218, 0x3fe7e7302d974c83, + 0x3fef15f6536e5589, 0xbfef7753c494a285, + 0x3fc43cc452e78c2f, 0xbfd7af68fe412fdb, + 0xbfed5cd8ae4b0fd5, 0x3fe3c01cb3322a6a, + 0xbfde674581c4f78c, 0xbfc3fe59d5081dea, + 0xbfb38ecdb20bb360, 0xbffa0690f3a52368, + 0x40029179eab862ed, 0x3feb0adb0a74646e, + 0x3fbec33417852ef0, 0x3fcbd167434a8d38, + 0x3febc1029c625e5e, 0xbfe790a9e0b8fca2, + 0x3fe128b368bb03ed, 0x40082794ffef9f0f, + 0x3fd66466fc00a962, 0x3fd30eee8c318a2a, + 0x3ff2a1fcb80d8da6, 0x3feed570ed901ec1, + 0x3fedaa1b328fe153, 0x3fe346917c192425, + 0xc00d0e91104aa6a6, 0x0, + 0x3fedaa1b328fe150, 0xbfe346917c192424, + 0x3ff2a1fcb80d8da6, 0xbfeed570ed901ebc, + 0x3fd66466fc00a966, 0xbfd30eee8c318a28, + 0x3fe128b368bb03ec, 0xc0082794ffef9f10, + 0x3febc1029c625e60, 0x3fe790a9e0b8fca4, + 0x3fbec33417852ef8, 0xbfcbd167434a8d34, + 0x40029179eab862ec, 0xbfeb0adb0a74646f, + 0xbfb38ecdb20bb378, 0x3ffa0690f3a52369, + 0xbfde674581c4f798, 0x3fc3fe59d5081df0, + 0xbfed5cd8ae4b0fd1, 0xbfe3c01cb3322a6b, + 0x3fc43cc452e78c38, 0x3fd7af68fe412fdb, + 0x3fef15f6536e5586, 0x3fef7753c494a283, + 0xbff1a252c03a2219, 0xbfe7e7302d974c83, + 0xbff4741bf1105a97, 0xbff28bb4d2cd6193, + 0x3fe934b1d436c7d5, 0x4001c865b652811a, + 0xbff5619f5c33f6ff, 0xbfb1bcbadf1ffb78, + 0x3ff150662979737a, 0x3ffcf429eaf0336a, + 0x3fd2fbaf3860cc77, 0xbfc05779c16f1f98, + 0xbfcfd1857cc306f6, 0xbff5118c28a2f62b, + 0x3fe7f0c5b3cf24ea, 0x3ff0bd2b8e30a120, + 0xbff00cc7bb027bac, 0xbfd543d11d94564b, + 0x3ff2edaf4476515d, 0x3ffd13ec0299b235, + 0xbfc4726880cb5388, 0xbfd358987c7b26bf, + 0xc000c0b331056e3a, 0x3ffda507ee6da0a1, + 0x3feaa04d4e0c82ea, 0x3fccf16825a5fbe2, + 0xbfe8490bc7d84978, 0xc00171dfeb7e5c2a, + 0x3ffa41dc0480a740, 0x3ff5eff7c91fb6dc, + 0x3fe0bd48471d6a86, 0xbfa3fa3d72f900e8, + 0x3fe94ffaba45b499, 0xbff8a92ebc0e982b, + 0xbfe3a940b2052585, 0xbff4213bfb4734c7, + 0xbffcb1d97750c3fa, 0x3ff6b980505dc23b, + 0x3ff06714044deef8, 0x3feb6f3b29f16868, + 0xbfe8a24162cf45f2, 0xbfd88be25791e3e6, + 0xbfcc7070ac38f668, 0xc001c37dee6ab330, + 0x3ffa0fc3fdff4c1a, 0xbfdec16589a3d452, + 0x3fd0f223e191eb0d, 0x3feb27ecf93ad05a, + 0x3fe0ba90463265a5, 0x3fdde378dbf6ddb0, + 0x3fb7ff1ffe547f54, 0xbff09a584a80be6b, + 0x3fd83eafa8552878, 0xbff2409424717aa5, + 0xbff41693f693ad1f, 0xbfe1c3b010aafd50, + 0xbfefbe29b75c94ec, 0xbff5a86f51cf4f61, + 0x3ff3cc731fd75d19, 0xbfd72a7fe45ec5f9, + 0xbfc0a26bceb4a0ba, 0x3feafe64de4d1621, + 0x3fe9d5c6f4fefd5b, 0x3fca5aad921e2fe8, + 0x3fd846ac0f1fd206, 0xbfea41f1b492ccea, + 0x3fd34156d3f0a071, 0xbfc1af01ad299c54, + 0xbfbcb0f6c9e6c510, 0x3ffdfe28f3e9b64e, + 0xbfddeec3b41a1f34, 0xc004384eaedd5377, + 0xbff330a0b161283a, 0x3ff4d365ebc5de48, + 0xbfb4782542efed88, 0x4003a9768de8eda0, + 0x3fdfc9f8356decdf, 0xbfef1dcfa86b5a16, + 0x3fa7a53f6b0879d0, 0xbff5759e98261840, + 0xbfcc70c496243c60, 0xbfe4060858173bf9, + 0x3fd426c970ef2fe4, 0xbffb9268ee28d776, + 0xbfdb2092a2733131, 0xbfaead240343d3a0, + 0xbfdc43b5ccccdb4e, 0x3fb12591bae13020, + 0x3ff83ddc1f8a3e02, 0x3ffe20efd8859fde, + 0xc005c437d575ed90, 0xbfb3c95962302cd8, + 0x3fdbd455d63a8588, 0x3f712553ea7e2c00, + 0xbff560d3f3ccd06a, 0xbff2146be79029c1, + 0xbff34ccddd809f0c, 0xbfebe293a09f9a1c, + 0x3fa18e8ef59589d8, 0x3fbd720e392c85d4, + 0x3fc1f88940e77838, 0xbfeaeb2053994164, + 0xc0068d73a9eae596, 0x3fef2b2e3e400fcc, + 0x3fed3eeeb28141d6, 0xbfed616b6ad7b5bc, + 0xbfb82112a8606ae8, 0xbff811fcfcb6bb1a, + 0xbff3f0221bd00ddf, 0xbfeae32cf835f9c0, + 0x3fe77dbc0eeeeec0, 0x3fdde9c9a597b47a, + 0xbfeaf3b2f9695a4e, 0xbfc4ef7123103b08, + 0x3ff318dfdef933a1, 0x3fdbd9bb8521a55c, + 0xbfcb72c195691bfc, 0x3ffc68e948ebc5ce, + 0xbfdf6b6574c93190, 0x400321f4fecd008c, + 0x3fce253410f394f8, 0xc004d8ba39f0652f, + 0x3ff1f58d32dbb058, 0xbfebc1fc151df860, + 0xc007da804e3e119d, 0x3fda92414720b427, + 0xc003ed6c20dc8092, 0x3fc0d1f167598c70, + 0xbff1470cb52a2c31, 0x3fc6c8e37514cbb9, + 0x3ff5227c0a8822c2, 0x3ff49c0aa58cd63a, + 0x3fe8b4a900710a86, 0x3fc4d5b907c7ad8c, + 0xbfda5c231fc7eba6, 0xbff617187bff9060, + 0xbfca3724890e98b0, 0x3fd682c1a2c3ebb0, + 0x3ffaaf91c6e09a90, 0x3ffc29dc0d200e04, + 0x3fdb4a347a6ff23c, 0xbfee75d2ae6110fc, + 0x3fe85857313f0a58, 0xbffc699e9ccd159a, + 0xbfe91f3f0ee7e773, 0x3fea73d7b05298e6, + 0xbfcdea2d2fabe5c4, 0x3ff889d2e8dc62ed, + 0x3fe7d82a1c6c428d, 0x3fc905a0136a69ba, + 0x3feed627c0f50a90, 0xbfe0e8116577a06c, + 0x3ff497b05b72d46e, 0xbff3a7d3bc7696e6, + 0xbfc30350fa491153, 0x3fcc3685e4b544cc, + 0x3fe0688a15f277a2, 0xbff82ed666e8435d, + 0x3fbd1d60d70e3c40, 0xbfe5b499afa4ee9b, + 0x3fb52b6a19dad070, 0xbfe5942e43afc0d7, + 0x3fe8b26a64121132, 0x3ff34860521faed4, + 0xbff99f05222162f9, 0x3fff6871dc78da28, + 0x3fe4a12ad1d27d8c, 0xbfde2d3ad9f082c8, + 0x3fe12bad76dcf3dc, 0xbff72381d527c1f5, + 0xc00658ac1887e01f, 0xbfe08e2127d5fc2c, + 0xbfc843e2d06943e0, 0x3fe8a42b91388145, + 0x3fd2a5581858602e, 0xbff8a40d663f0fba, + 0x3fee885d8880a922, 0x3ff33c9a169dceda, + 0xbfa073eceda88720, 0xbfc11221d3245f70, + 0x3fed96839beedaae, 0xc007f47bf443b174, + 0x3ff261d3d7a4de9a, 0x3fe3ea695c0d56ac, + 0xc0001fedfe9fc89c, 0xbfe2c5ae0cb56f96, + 0xbfae111089ddbda8, 0x3fc6ca7b9c64adb0, + 0xbfe7c91eabcf4059, 0xbfa611fec7933cc0, + 0xbfed3e6e1b3c1686, 0x3ff100f9a2bc9d20, + 0xbff1dbeb96ba5bf3, 0x3fd20893a8d2dc8a, + 0x3ffd146761371ae2, 0x3ff0e5f10e6de76d, + 0x3fccabc30641ad38, 0x3fdbe1231be47b56, + 0xbff3b11aefb54ce0, 0xbfdc56f2459a467e, + 0xbff6bb08775dd121, 0x4003f9319b9ed91f, + 0x3fd1953578b146b3, 0x3fe664458b86e2f4, + 0x3ffaf30edbe398cf, 0x3fedf848882024ea, + 0x3fee839453344fd7, 0xbff3002e1cadf46b, + 0xbfeac257eaec6da0, 0x3ff696cb70afa65a, + 0x3fe3c00ff58bb7a4, 0xbffa98069d8b257a, + 0xbff20f3452163cfa, 0xbfc3cab2991b1518, + 0xbfec0a0ad2738b00, 0xbff93ed1bb7a6b93, + 0x3fe0e5b09d1558d0, 0xbfe81f926e999f9c, + 0xbfe21850592b6aff, 0xbfedc6a57eb03e2a, + 0x3fe46476cff86059, 0xbff7ae1e909a2529, + 0x3fbcb42e8cba5182, 0xbfc9b32c5f8c7902, + 0xbfe7550d709ea344, 0x3fd7086297cacef1, + 0x3f935db5c4292050, 0x3ffe7cb4d292bfd2, + 0xbfed1b4ed795de46, 0xc004a78675209af2, + 0x3ff8546f98a2ac7a, 0x3ff74903ab872380, + 0x4001b612118a1a19, 0x3feea6028605ac71, + 0x3ff7bfc246a317ca, 0xbff5f4087ab2e119, + 0xbff9f8bda50f8bcd, 0x400d8aaae49de301, + 0xbffda2175df810ca, 0x3fec46433991fb16, + 0xc00ac7fb9087f062, 0x3ff73a166c5996fe, + 0xbfe734e8491cecfc, 0xbff43a665ef05396, + 0x3fde5d09eb428e94, 0xbff8534833a04975, + 0xbff4aaad8ec00d2b, 0xbfede9790b4a516a, + 0x3fdbe277286df326, 0x3ff5fdf8e0ed1176, + 0xbff81daf7a6ad912, 0x3ff6f427409e94fc, + 0xbfe6ae337343072a, 0x3ff3eb0da52eed36, + 0x3ff7ae56f1e5518f, 0x3ff5b712b03cef50, + 0xbff509bc1d7f0ec8, 0xbfd98f38ba50e47e, + 0x3fd91cf3cfaf2e34, 0x3fea06ad01a6bc7b, + 0xbfe157fc88697c23, 0x3fd7fa18a68c1f08, + 0xbfe2efcdd4a4634f, 0xbfbc61daf6a666bf, + 0x3f947f205875a850, 0x3fc3f8056ae3eda8, + 0x3fb0e39b14125eec, 0x3fd58e242915c6c5, + 0x3feef09360fa10a2, 0x3ff190756ee312f6, + 0x3fe779d77f72e18f, 0xbfd1f0bb0b119a90, + 0xbff4247e510bdaab, 0xbfd4f402316a5df6, + 0xbff0b786dca1cb0e, 0x3fe38f6e53be5036, + 0xbfe9d6c9afb8e15b, 0x3ffaf03f8b2f0230, + 0x3fcdceaf881355b8, 0xbff3663517dc79cd, + 0x3fe510e0878aef9a, 0xbfec3c8e85af7715, + 0xbfed4e20556eb2bd, 0x40064bd6982bda51, + 0xbfd36be43b0ca5e2, 0x3ff9807dc7abad32, + 0xbff12f29e82617a0, 0x3fe1cf8cfec4f17c, + 0x3fe28a25ec5ff98b, 0x3fd4c9f21bc39786, + 0xbfd805db8e0a0ff2, 0x3ff5d5c53df012d6, + 0xbff1ddd393f42588, 0xbfdde08f115cd89b, + 0xbfe5c7c1917b6de0, 0x3fa6ba72954b7cc0, + 0xbffac3021214a286, 0xbf87fd8e6a27dd00, + 0xbf98f7e217f1f1e0, 0x3fa7be458cdad8f0, + 0xbfce0b6db0c26d14, 0x3fefeca5643d5f14, + 0x3feb9d02dc79eb50, 0xbffc0b03ae2558df, + 0x3fd07b0eabb5cf44, 0x3ff3a9b75256bf1c, + 0xbffb41e74494470d, 0xbfe08a6ac2ae995c, + 0xbfef0e54561db9d7, 0xbff38d12afbb9679, + 0x3ff400874d480a01, 0xc0015d19fbf352c3, + 0xc001993c44950eb7, 0xbfc708cbb3572bc4, + 0x3ffb1dc3bba494fc, 0xbfe67b9098b2e425, + 0xbfe08d39bacee5bf, 0x400031b97fe671a3, + 0x3fe50760913b291d, 0xbff4f66298a75070, + 0x3fefaef30cb65c97, 0xbff1e647052b756e, + 0x3fe8ccc022464855, 0x3fe3a1bfcdf9acb0, + 0xc00001978c5244a2, 0xc0006ebad3ad7e40, + 0xbfd19cb74803d2a0, 0xbff1482160d838d8, + 0x3ff0480b8faeed74, 0xbfdb83b8fc45a64a, + 0x3fbca94dce8ce8f4, 0xbfc07dff361742a0, + 0xc0011cfb8b23f927, 0x3fc7cacc88d3b488, + 0x3fe654b35a069a7a, 0xbff1e57b89b31284, + 0xbfe5c1e0093b1ec3, 0x3fea7f35f2ee691c, + 0x3ff17acc2c7f60bf, 0x3ff7c66c9de4a78e, + 0xbfe2fd9600fcc967, 0xc0003bb8fce5461e, + 0x3ff3a42eac355724, 0x3fe06ea40a7ae6b2, + 0xbff372a1c045befd, 0x3ffc745b71050f06, + 0xbffba8468213da0a, 0x400121555f4fe321, + 0x3ff78725d0e2921a, 0x3ffae9666bdfeb3e, + 0x3fe54dc626cecdec, 0x3ff6e2561ecadf71, + 0x3fe65078e27c37f2, 0xbfe756524af68ba5, + 0xbfd6ad544cdc2e54, 0xbff58a84c96e49fc, + 0xbfd2639472de9325, 0xbff839b5bb662e6b, + 0x3fd882a4b0973d48, 0xbfeefa6146dcbab0, + 0x3feaa8d56d383164, 0xbfe345038dcd7f99, + 0xc00071b92e183953, 0xc0050e2421b6b027, + 0xbffb03bb679bbde7, 0x3f94ec5529011c78, + 0x3feb510f31815217, 0x3fdefd2d2b6a06a6, + 0x40028618ffe80619, 0x3fc22b17903f0648, + 0x4000b68cbe6d8d16, 0x3fd11928607c6a1c, + 0x3fef0944c5410c28, 0xbfe1acd9a78c368d, + 0x3fa1d2fabe4e37a8, 0x40000865b88d9b63, + 0x3fd25f444aa0831a, 0xbff2018693788c23, + 0xbffb20ade92b8e9c, 0xbfa1d127582c6040, + 0xc000c15a2f619d16, 0xbff767e834ee082f, + 0xbf94dd4453763738, 0xbfe17f8de43a47c6, + 0xbfece5004cab3014, 0x3fea1f06dd3721e6, + 0x3fd0c60556498202, 0xbfea59df0235ad6e, + 0xbfe08f617ec06364, 0xc00436aca95abb06, + 0xbfeb8e3fe1dd27d1, 0x3ff81faa61beb28e, + 0xbff65bceac915c86, 0xbfe15b6eacdee6e4, + 0x3fe1e798f575e5de, 0x3fe0ed634dae4457, + 0x3fe5395c36ecc4c8, 0x3fe241f2b6569232, + 0xbff031bb70dd3745, 0xbfe799305f1c3fb0, + 0xbfe35fc045f8cf55, 0xbfdcb0e8cae6b869, + 0xbfea9479d93b477f, 0x3fe329a65755d6c0, + 0x3fed86c36ffec033, 0x3fe985214f719552, + 0x3ff949ace48ddc26, 0xbfb0c636177da1b8, + 0xbff32f7d373b7390, 0xbfcc0f4702b30c0b, + 0x3fdcf209133bc26b, 0x3fc09068091a7d86, + 0x3ff07fb780bfa61b, 0x3fc551058e010e70, + 0xbff026ccb2c98e07, 0x3feb5ec0dad3bdec, + 0xc0034bda027e170c, 0x3fd19f02c11adc9c, + 0x3ff7336fb5406730, 0xbff3626cc47e0c7a, + 0x3fd2a285b1d069d6, 0x3fd42640bd261298, + 0x3fd87f1f48e1a378, 0xc000b56a205944fa, + 0xbfc821c656318b21, 0x3fbcc1c3d777cef4, + 0xbff5fd21e65c8d68, 0x3fd6a140f6f3924a, + 0xbfe7e096c147d310, 0xbff8c5b7275112c3, + 0xbff0c794017de5f8, 0x3ff16b3922a2176e, + 0xbff18c81916b3ec6, 0x3fee65fdd0c1df50, + 0x4003afd74f456ba0, 0xc006dbd7604aaf62, + 0xbfd9ae6935d67eca, 0xc000d82f1965f1c8, + 0xbff4cea1fe74a1d2, 0x3fda3f81bcafc46b, + 0x40009d60a0311f82, 0x3ff598b2b3289b40, + 0x3fd1b89eed679204, 0x3fb2d69bb5643a00, + 0x3ff0d9f648884771, 0x4003062cf81227e0, + 0xbfd5b11e706f11cf, 0x3fb12b341802ee3c, + 0x3fef013fe274e8d2, 0x3fe6482b8f2bffd4, + 0xc00152b4ad904f98, 0x3fea8abdef4f3a44, + 0x3fed8fa2a121b1b8, 0xbfd36adab9373ed8, + 0x3ffe806fecdbe1f3, 0xbfe8c84df48b82fb, + 0xbfd5d27a88386d68, 0xbff2a8c5e3013440, + 0x3ff414002a9bc26a, 0x3fd3f0cd8098e3e0, + 0x3fe5b5a3e99d6306, 0x3fd7f4490b44e97a, + 0xbff7600f6dcac75c, 0x3fea20c1033d5464, + 0x3fe9938c705bb44e, 0x3ff61733428d8630, + 0x3fdf76a8302a7972, 0x3fecd971b75f6c92, + 0xbfd82ffddb032535, 0x3fc753c75d385a1c, + 0x3fe4202801bad9ad, 0xbff304b6fd59c88c, + 0xbfed355f9c5f3127, 0x3fcede9043955ed5, + 0xbfc1c535eed7f8bc, 0xc0013bc794bd2531, + 0xbff39b83154bb7a3, 0xbff2d295115bed53, + 0xbfef8b3a0bee155c, 0x3ff227a3cdf6a6de, + 0xbff3a98fd579ed2a, 0xbfeab69136b5d626, + 0x3fe7c1d2e282fdc7, 0xbfdb4d93a0490a03, + 0xbff0b3204bf8be27, 0x3fd0164c9e71e6bc, + 0xbff63bff9d503f0c, 0xbff5143f229f13c0, + 0xbfe58ef0d44b5e58, 0x3fcebfe4e3cc4d43, + 0xc005e1b87d87c0c9, 0xbfdaed83d3b5ae40, + 0xbff8001d36ac0edd, 0xbff259054b2df31a, + 0xbfd881a40ee68d3c, 0x3fe2240a6969f310, + 0x3fd068d1eef1c94a, 0x3fd1b36ee67888f5, + 0xbff0499b7e1fdf38, 0x3fe5367737e5abef, + 0x3ff1deb81b4ec196, 0x3fd468c1a2faf982, + 0x3fe49857400c04ce, 0xbffcd487c64b2d62, + 0xbfbb5b7a409fe940, 0x3ff670a082066318, + 0x3feba7a8795af637, 0x3fe55ec309baa0cc, + 0xbfffd5b57592e149, 0xbfe462208ad86b8e, + 0x40083ad264555890, 0xc008950e3d529488, + 0x3fbcd82cbf3919d8, 0xbff25bbf4394e87c, + 0xbff5a87dc48a7bfe, 0xbfc799deed698ede, + 0xbff44b5d933b9112, 0x3fdafe95ac35c242, + 0xbfaebb46d4a790e0, 0xbf964c78e4d0fe90, + 0x3fe46a25675a7830, 0xbfdf276e83917dc0, + 0x3feff57b4caab14e, 0xbff757df8bbdb9ae, + 0xbff6c30cb1bce591, 0x4011c78ac290cc6a, + 0x3fe4f0203d199742, 0xbfd216b9d07d06c7, + 0xbff119c883bed6af, 0xbff30a480c58c006, + 0x3fff9b91f546eef4, 0xbfefe67328cad539, + 0x3fd321951103d77c, 0xbfe64bde38f409f8, + 0x4005c85d46784ae6, 0x3fe5a4b4085619f0, + 0xbfe6c0ef4ac46678, 0xbff326c12d801852, + 0xbfc50294be9b7aa0, 0x3fe0233916bd4930, + 0xbffaad45455d0d7e, 0xbff87a21b736cc66, + 0xbff0f4470105884e, 0xbfe10fbf16688d9c, + 0x3ff0bfc3d3c05be4, 0x3fdb99df14feadd0, + 0x3fd12a1d53c6c54a, 0xbfed9a5ff2892f2f, + 0xbfe300900819a872, 0x3fe523159b5c33d8, + 0xbfe1f127e36df6d6, 0xbff92a04665b31a6, + 0x3ff0b87d95d4b4cb, 0xbffecee10fbb9b37, + 0x3fd4e98f5570beb8, 0x3fe10d699e2ad6ff, + 0xbfb87d0b24d317e0, 0xbf87ff36c4252720, + 0xbff962752b66b094, 0x3fd5c02657bd2363, + 0xbfe6accab8a7e215, 0xbff36f228b8ab57d, + 0x3fe240a48cb96f83, 0xbfe70216f6bcec2d, + 0xbfc7c33884769458, 0x3fcae33834a2204f, + 0xbfda01d2dee40074, 0xbfee27587022ae46, + 0x3fe8610fb516d4ea, 0x3fd4e84b1086d345, + 0x3ff90f94282cc4c6, 0x3fb91fca274f598c, + 0xbfe540013bd03b7a, 0xbfe35e0cfc721eef, + 0xbfebdd65b5a22b53, 0x3ff2f4c8e574ca46, + 0x3fc002b2788636dc, 0xbff2a542d597f684, + 0xbfe0e065bf13e696, 0xbfe5d659b2c2f363, + 0xbfdd5e72ea81750b, 0x3faf2a3f7a6df6a8, + 0xbff034697f6f5478, 0xbfe7d8f80f5f5767, + 0x40024986ca6e2739, 0x3fe0c75870e5610c, + 0x3fe2a46c0d637e43, 0x4000a4cae0c78864, + 0xbfe34345fc4eb4af, 0xbfc5913aeb753522, + 0x3fdddd6d6db02beb, 0xbff211ccf975bd3e, + 0x3fec28ed1204a526, 0x3fef1c9568349362, + 0xbfe9b7f56c532261, 0xc002d0177d5487c6, + 0x3f9417789d5815d0, 0xbfbe4aa250a21488, + 0x3f7ea141345b3540, 0x4003dcfebd203c0f, + 0x3ff2dc7a9efe6e28, 0x40045edac1dfc0b9, + 0xbfe655ff6f91b2b4, 0x40062285be0f8e74, + 0x3ff2cec88a1868b8, 0x3fde57d81d178b92, + 0x3fe83bd1e0de4721, 0x3fe868d8be4ad3da, + 0xbfe7c014a91e7a3a, 0xbfc0892a4a963335, + 0xbfff725253020c09, 0x3fca6193a28db6f0, + 0x3fe64844f0a6961c, 0xbff0021ee35ce7cf, + 0x3ff15a9dee503226, 0x3fd1a1ef4c3908e6, + 0xbff3ea77d1bf249e, 0xbfc46329cb22162c, + 0x3ff5ce65eca8f33e, 0xbfe2cb1ad00470ad, + 0x3ff65c3deb8570c1, 0xbfe8666e15bd6770, + 0x3fe041976454558b, 0xc01003ddd6c644d7, + 0xbfb6fbf6f2756328, 0xbf7ae076cd2c6a80, + 0x3fefebc46b43d352, 0x3fe111947273a712, + 0xbfbde8dbb19a9880, 0x4004b4a31338e0a3, + 0x3ff0f980edcdab01, 0x3fd69ac3a52a5b96, + 0xbfb6cf5ac0726380, 0x3ff5e7da49cf98c2, + 0x3ffd89cf329ff208, 0x3fff00bf90a27496, + 0x3fde19c901947d5c, 0x3fc4f33d0ffc94e2, + 0x3fc756aa2b9753fc, 0xbfce74037c6586f0, + 0x3fe504dbfde542bb, 0x3fedfd78726763eb, + 0x3fe6e89edeb5e5dc, 0xc000be402155dbb6, + 0xbfe13d5a85e99770, 0xbfdceda0362f3cbd, + 0x3fc47b7551f8acf8, 0xbffc954f56571750, + 0xbfdff89037c339b8, 0x3fe27e5c45007c3a, + 0xbfedaa56a8dc2f5c, 0x40075d6468447f90, + 0xc0037edc4c2b9336, 0xbfe3df7a33751cdd, + 0x3fe7f2fe4469ff5a, 0xbfa2088975ee98f0, + 0xc0017bf599bb68d0, 0xbfc7ab798b480bdc, + 0x3fbc5bc82c60a910, 0x3ffce4a543e98868, + 0xbff10ccbae3c3c45, 0x3fec0077a1aeb7fa, + 0xbfd3f6bca3835a8e, 0x3ff49b92be15f51f, + 0xbff7a1aa1fb88f9e, 0x3fe44498f1dc7dd4, + 0x3ff5b7fd3f98d450, 0x3ff0b40a1379e5fe, + 0x3fece8cf536e75fe, 0x3fd479be85c12b69, + 0x3ff3a8e38eecb628, 0x3febd8e43e9f58c9, + 0x3ffa7d99e395ae81, 0x3ffb73ed97f77bba, + 0xbff4677168b0bc52, 0xbff8a7ef2a3ac382, + 0xbfe8bd0931ed301b, 0xbff9988150a62ed8, + 0xc002ff542d2cfaf6, 0x3ffc05cf1bc584f2, + 0xbff7cae3d668be3a, 0x3fb8f6bfa1a88944, + 0x3ff45fdeb1e400f0, 0xbfc2cce91627e850, + 0xbfaefa07c1e8e890, 0x3ff0bf98e431441e, + 0x3ff16192fe318f46, 0xbff585136ae1006e, + 0x3ff01140ad3df068, 0xbfe654a46e64e8b5, + 0xbfedf8886acbe776, 0x4000334415442e91, + 0xbfa9046268636110, 0x3fde20ab4e4d2d55, + 0x3fefb4ad6b5903f7, 0x3ff1ef43456944c3, + 0x3fe6786c6d522b98, 0xbfd5526e104d817c, + 0xbfcf4636f88583c0, 0xc0011c5396f36d9a, + 0xbfd528a9863faced, 0x3fe01e6c9fcd4af2, + 0xbfe65cddd57f08c6, 0xbfe74bbb97f130a7, + 0xbff5e1b6371a9bc5, 0x3fe38a24a9dca040, + 0xbfd4ea67b3a1ee03, 0x3fd8a35fc0ce1b4f, + 0x3fefe0fec818204d, 0x3febb10c5d7eaba8, + 0xbfd0d7276322acc1, 0xbfa45508b575fdf4, + 0x3ff8937fd8e69a44, 0xbfd6e5f369833a39, + 0xbfe1333816afbfa4, 0x3fe53ed6930fa413, + 0xbffa5e6b41a97fac, 0x3ff4e05a8fafa85b, + 0x3fe802b47b20e3c8, 0x3fd7e033674f8801, + 0x3feb34bba320fbcc, 0xbfffb781bd8305b6, + 0x3fe1f8472aae49b2, 0x3fbf1a02c865e6f8, + 0x3fccecae0c5654dc, 0xbff5151ce06799bf, + 0xbfd8d428e78ea09c, 0xbfc50890c35fd996, + 0xbfda5a6f976b0cc6, 0x3fe36c28fd18d00e, + 0xbfe88706e580e2ee, 0xc001f51254e77eaf, + 0x3ff2f16f5b7b43e2, 0xbfa201e197c579e0, + 0x3fc69a14112ec85c, 0xbfe8ea3aa18a15a9, + 0xc0011c21449e8c15, 0xc0050873c43ec51c, + 0x3fba6b95936bcd40, 0xbff0901600729556, + 0x3fcce348da9fcf74, 0x3ffba089ff1e6f57, + 0x3ff6a9186454c6c6, 0x40765a4be82bf96a, + 0x3fedae235b31fba5, 0xbfc35ec19f45cd78, + 0xbfccc6477037928c, 0x3fdbe9800dc7fc60, + 0x3fc46e11ac34f3b2, 0x3fd31fc3a7634ca8, + 0xbfd30fb5cc4f7d2c, 0x3feed47558684668, + 0x3fff5f303ccd1748, 0x3ff1b12d6142b1a2, + 0x3fd02be2aab5ccae, 0x40001506d34e1a35, + 0x3ffb577e5fc84a1d, 0x3fc8f34dc4437684, + 0x3fef88f535755c3d, 0xbff7de439f4d2262, + 0xc0002a6c5ac8b52f, 0xbfc53f4411bb5972, + 0xbff587df9a6ffa48, 0xbfd191917c3da19e, + 0x40020e16329bf5c8, 0x3fe6a1bb11f90efa, + 0x3f84c237d6320d80, 0xbffe6fd66f5c056d, + 0xbff894622bda6f0a, 0x3fe8aabbb7fb1941, + 0x3fdb8768867b58d1, 0xbff31cef7e4e5462, + 0xbfe00a56870c5ea6, 0xbfb3eb57adc5b530, + 0xbfe2b780d2bfcff2, 0xbfbfc371ddf2598c, + 0x3ff217d1be07a07f, 0xbfea54875d0f400e, + 0x3feeec477db6ce48, 0xbff030792a574f24, + 0xbfdc15258f8c85bb, 0xbfc80429e47fce18, + 0x3ff503806db0a7f1, 0xbff80c476528330f, + 0x3fe717ecb5be043a, 0xbff33fc57c42248e, + 0xbfc48b3ec008f0ad, 0x3ff1e221c1ffc49d, + 0xbfd16e84ab6cdaa8, 0x3fea318e59f73cec, + 0xbfe00d240a71dbbe, 0x3fdbb598771f78e8, + 0x3fe4eae9a981f0ea, 0xbff05e6f5c962ab2, + 0xc003791b81db60dd, 0xbfe39aa1234c8ebe, + 0x3fee6654a7375c67, 0xbfbef6f8b37386b0, + 0x3fa3ad5cd8d13744, 0x3fae547451ffa8e0, + 0x3ff56864970db360, 0x3ff20cecaf5cf41c, + 0x3fe2493ec7628080, 0x4001200c18b1958b, + 0x3fef96a027bbedf8, 0x3fdd3edca95d1912, + 0xc00a95357f02473c, 0x40041be5d6ecaca0, + 0x3fec7c01d919a4a4, 0x3ff833e5e3fbe68a, + 0x3fb82867e5d04b48, 0xbfe2508bc4b32533, + 0xbff4cee0f0ee79d6, 0x3fd33645d012303b, + 0x400135b3c5df9656, 0xbff46ce544fd2378, + 0xbff84e7f48317bf2, 0xbfdaa461e0f4b8f8, + 0xbfe02b8a846ac0fe, 0x3ff3c37322c2a814, + 0x3fd422a07b44f50d, 0xbfd470a43862f128, + 0xbfd266a36400c2c3, 0xbfd0d5a114efdff7, + 0xbfea5a9477b59ae1, 0x3fe44438dd808bb3, + 0x3fea57166140aede, 0xbff8ab5fe85168b3, + 0x3fd05319d9aab4fe, 0xbff80e16f09a98fd, + 0xbfe95b6b95713806, 0x400800e94dae42d0, + 0x3fdb17a437e1bfe1, 0x3fde9c84e39325cd, + 0x3fff290d25e3e44a, 0x3fd2acb9bafdaf00, + 0xc0034902e4753d56, 0x3ff9434c95c2d410, + 0x4002ffe4b162ca2b, 0x3fe73945fbcff8b9, + 0x3fea3e3c1bb60352, 0x3fde6d53fa8a9751, + 0xbfd207a1b02e7ad2, 0x3fc74b4b4c2afc70, + 0x3fd6f99a3f5f2282, 0x3fd63f527088a8ee, + 0xbff13d601fb42936, 0xbfcac420153d5ad5, + 0x3fd4039ddc16f0b0, 0xbfe919d8758bbc94, + 0x3ff15c853f3267c9, 0x3ffa85c1ec9259d2, + 0xbff75ea00d36767e, 0x3fce342e84399470, + 0x3fe8431dc9e4c8bb, 0xbff0629b2014f33f, + 0x3feb319fd62533b3, 0x3fd469d2183f4bda, + 0xbfe7cc3564d2ed65, 0xbff2928db3a5d6a9, + 0xbff189d7f1125764, 0x3ffb1fe360fb1cca, + 0xbfe96aa3b4393ac6, 0xbfe64fa1e7966efe, + 0x3f8c48bef4c6f940, 0xbff2efaf7a7602d2, + 0x3fe61230916a9b28, 0x3ff5b6987d81d0b6, + 0xbfefdc5da59bb6c0, 0x3ffdab34b59db556, + 0x3fc08e22839cb380, 0xbfe4642544e73001, + 0xbff67151b7f1fea2, 0xbfebf2e51eaa75ef, + 0xbfe7c2684cbc78ba, 0x3fa491c9d61257ac, + 0xbfe007f27d85c334, 0xc0082b6eaaf9322a, + 0x3ffc356c9e309bb3, 0xbff21d5b0c041c80, + 0x3fd8c55b078352c3, 0x3fe86bb743ba1b8b, + 0x3fd4ce1151df2f18, 0x3ff49f4384026557, + 0x3fcf77081988fa48, 0x3fc8ddd31abd10e0, + 0xbffa06b5cb4aeeb5, 0x3fec32b7e2eaa80d, + 0x3feb2559f74e325c, 0x3ff601ae08527b36, + 0x400032d13f1c7fca, 0xbfe4720fcddfa14a, + 0x3ffe8d064c901162, 0xbfce60f9a1e8a604, + 0x3fe84e4f0f59b42a, 0xbfeca3901a800f5c, + 0xbf9bf8c184b2d2b0, 0x3feec01107ba1325, + 0xbfe87147ef4fe5ab, 0x3ffad3899e5f23f3, + 0xbffd641ff04b5be0, 0x3fed878037f57df9, + 0x3fe71ef0d6fc1933, 0xbfefa4694968c40d, + 0xbff6cbace4ace092, 0x3fecd4c33068bc96, + 0xbfd4bdb6f674ddd5, 0xbfe029f2d8fc0352, + 0xbfeadbd837f2b849, 0xbfcf6f290e953700, + 0x3ffc1f8773fa1302, 0xc00254eb58fa2876, + 0x3fda47c52599e56b, 0x3fe120e1bf8e9df8, + 0x3ffa01eadc57866e, 0x3ff48c2f15c5115a, + 0xbfea4db258e37d85, 0xbfe331f2d44757c2, + 0xbfda43cd33c91552, 0x3fdb46aaa64a5a88, + 0x4003b197753da386, 0xbffa65d60ac2bf25, + 0xbff0a6ae33748e5c, 0x3fe8146a049ad4bc, + 0xbff910a79d419d63, 0xbff44acb3350645c, + 0xbfe5ca42c642b88b, 0x3fe0fffb456bb3f6, + 0x3ffed84c4b88526e, 0x3fe128f8803f34e7, + 0xbfe628d8d09b8275, 0x3fe5d37a75aeb91c, + 0x3fb2e60eb5de53b4, 0x3fb9e561fa99b442, + 0x3ff84b2cd2b69aaf, 0x4006ccf0ae51fcd0, + 0xbf8e185e8665c980, 0x40004b2bd2c9e670, + 0xbfebc62645f375bc, 0xbff3d713c42ba8c5, + 0x3ff86be22b9f97a2, 0xbff594a423910160, + 0xc0084c2a54361253, 0xbfe865acd20c73ce, + 0x3fe8548954eb9b46, 0xbff15a7eee41800d, + 0xbff4297d549baf22, 0x3ffa14ac7b8a683f, + 0x3fee9ca93139c11d, 0xbfd411b4c00ab4f4, + 0xbfe4754f22374d9c, 0x3fba8e98dba325b0, + 0x400fcee81948bcaa, 0x3fd9399a4bb38dcc, + 0x3ff643e770c705b9, 0x400a199f05fe0a2f, + 0x3fc5cc141986a818, 0x3fde72db401f87b3, + 0x3fdbdaceba154024, 0xbfcf8fdd3ddbe022, + 0x3fb0f6e90bee072b, 0xbfe3c3409e4a0c34, + 0xbfe44d51ee93f149, 0xc0047f7c6f7250e2, + 0xbfe9555e3b152ff2, 0xbfc993ec5cfacc48, + 0xbfb4809dcbc3e240, 0xbff485361022b502, + 0x3fd652b9ffe08c04, 0xbfd6a722e768240c, + 0x3ff8fc3bbe8b65d9, 0x3fcdf209f87e0092, + 0xbfdfd48a065a3741, 0x3f937152284114e0, + 0x3ff13304ef9ef443, 0x3ffedad84b42ca1e, + 0x3fe5099f2c4ad384, 0x3fdeadc42c9e72c3, + 0xbfebe60553366c1d, 0x3fb82e952f16c17c, + 0xbff96904e0706a89, 0xbfe7da13d486c986, + 0xbff0b2a9873df302, 0x3ff6fd27dfb965ee, + 0xbfd95df2f569596a, 0xbfe27bb461f8c71a, + 0x3ffe32d6f1fc1205, 0xbfe21360ec93563c, + 0x3fbc67431e9e32dc, 0xbfe540c44e264c6e, + 0x3fe8770854d5ff1b, 0x3fd553eece5be5e0, + 0xbfe4c343702ff057, 0xbfa67a79bc9cf72c, + 0xbff0169c9deec3c4, 0xbfeac565e960faa1, + 0x3ffa74b3b71806aa, 0x3fdd3925c4b06a25 }; static const uint64_t in_cfft_noisy_2048[4096] = { - 0xbfa278cab7fab10f, 0x0, - 0x3fe0947fb524e79a, 0x0, - 0x3fe67eb4b4883cf2, 0x0, - 0x3fddfa1669a503bb, 0x0, - 0xbfb39a02aa8458f2, 0x0, - 0xbfdd4b27fe7bbe1e, 0x0, - 0xbfe71500997fa070, 0x0, - 0xbfdce377126b4094, 0x0, - 0xbf9591571a65c747, 0x0, - 0x3fe3b636996f0644, 0x0, - 0x3fe5f8d360a4dd68, 0x0, - 0x3fddeb72d9aa3413, 0x0, - 0x3fa23872742032ea, 0x0, - 0xbfde129e5472d752, 0x0, - 0xbfe6adf8afaff824, 0x0, - 0xbfe01e947a739aa9, 0x0, - 0xbfaa87df9acf7890, 0x0, - 0x3fd822ca46315b5e, 0x0, - 0x3fe5a49e7faac35f, 0x0, - 0x3fdf59e5f967d7e9, 0x0, - 0x3fa629aa854a14c3, 0x0, - 0xbfe02c0af7e91018, 0x0, - 0xbfe701263e5fc16b, 0x0, - 0xbfe02608fa157812, 0x0, - 0xbfc08ae6006362d2, 0x0, - 0x3fe146e138d0093e, 0x0, - 0x3fe97fe72c6290cc, 0x0, - 0x3fe0133d44fb66e9, 0x0, - 0x3faf861a260a1375, 0x0, - 0xbfde94e4d6f8ddb8, 0x0, - 0xbfe58332f5add071, 0x0, - 0xbfdd866e02847b85, 0x0, - 0x3f931d76023ba2e4, 0x0, - 0x3fddd8ba6eef2a73, 0x0, - 0x3fdf6827fa68c3e2, 0x0, - 0x3fe139d71107f047, 0x0, - 0x3f9aa29c933fdf10, 0x0, - 0xbfd945114eb30018, 0x0, - 0xbfe6ffbbaddfdb1d, 0x0, - 0xbfdfb813b08b3683, 0x0, - 0xbfad18d9d45f7794, 0x0, - 0x3fe09fa39bd27a31, 0x0, - 0x3fe2cf360f16a4e3, 0x0, - 0x3fde59a90ee8e99f, 0x0, - 0x3fa9c470a5e88d7b, 0x0, - 0xbfddec86591e4843, 0x0, - 0xbfe77257ff1632ea, 0x0, - 0xbfdd0b70670c65eb, 0x0, - 0xbfaaafc7fbc40e68, 0x0, - 0x3fe153be663ffc30, 0x0, - 0x3fe68d673ead4913, 0x0, - 0x3fdd57f1177a116f, 0x0, - 0xbf9ed95c722bfa41, 0x0, - 0xbfe1ae51bd6731d4, 0x0, - 0xbfe54035c99cf061, 0x0, - 0xbfe0a4999fcd5c4e, 0x0, - 0x3fa35a9836d92c38, 0x0, - 0x3fe06854333e6311, 0x0, - 0x3fe746a0c4d8ebd5, 0x0, - 0x3fdd62020cbb70b2, 0x0, - 0xbf9867ffaa34a2e7, 0x0, - 0xbfe1d259c9096b09, 0x0, - 0xbfe59071cd465394, 0x0, - 0xbfdfe3bcc47e6e04, 0x0, - 0x3fa97b6b61524b5b, 0x0, - 0x3fe1adc698e97bda, 0x0, - 0x3fe5089eeffae22c, 0x0, - 0x3fe147fc18d00295, 0x0, - 0xbfad769f4f305c09, 0x0, - 0xbfe1b3638cb89422, 0x0, - 0xbfe6f635a68c91a4, 0x0, - 0xbfdbf743e62f3444, 0x0, - 0x3fab01f3b2fa0bec, 0x0, - 0x3fda30753da5fc72, 0x0, - 0x3fe57e6e6a2415bc, 0x0, - 0x3fe032b052d86f92, 0x0, - 0xbf54cdaeef576357, 0x0, - 0xbfde9ac85e870c87, 0x0, - 0xbfe7209a5900ca22, 0x0, - 0xbfdb08fa9af978d6, 0x0, - 0xbfa20bd423f4bcf0, 0x0, - 0x3fe07341c94e3032, 0x0, - 0x3fe540ef4d6c42ce, 0x0, - 0x3fdceea3bd28bfbe, 0x0, - 0xbf9cf0fa547a78f3, 0x0, - 0xbfe1c9a9819d36ab, 0x0, - 0xbfe71f558f66e3dc, 0x0, - 0xbfdfb37140e184ae, 0x0, - 0xbf9ad84cc43f06f3, 0x0, - 0x3fe2ae12b72b00d0, 0x0, - 0x3fe645ae9a0faa55, 0x0, - 0x3fdd6bd3e3f64575, 0x0, - 0x3fb3f9f12d9b7a88, 0x0, - 0xbfe1247833f50cbf, 0x0, - 0xbfe7341d52f24dac, 0x0, - 0xbfe0abd05756b3d5, 0x0, - 0x3f9454ad57ad3a3c, 0x0, - 0x3fdfa5440ca84514, 0x0, - 0x3fe4bf5a01d5e42b, 0x0, - 0x3fdb809c14745aac, 0x0, - 0xbfa4f435b394d67c, 0x0, - 0xbfdfa304d7dd7e0d, 0x0, - 0xbfe7a112dedb8716, 0x0, - 0xbfdeeda2bc4ab481, 0x0, - 0xbfb222cec659cff7, 0x0, - 0x3fdca1072a3edb0b, 0x0, - 0x3fe5e7a94555899b, 0x0, - 0x3fe1d00b7379ec59, 0x0, - 0xbf9ab97db8bd7c0d, 0x0, - 0xbfdc1881023b5334, 0x0, - 0xbfe57a6f99733268, 0x0, - 0xbfe0196d17a7bb3c, 0x0, - 0x3f77dc937b3f94fe, 0x0, - 0x3fdc0973f67321b0, 0x0, - 0x3fe7a1a7d1e2a81a, 0x0, - 0x3fe22787f0d2b33c, 0x0, - 0xbf981b6623e89f1c, 0x0, - 0xbfe0c14d40b25bc9, 0x0, - 0xbfead051403a43c3, 0x0, - 0xbfe1f20573e0af42, 0x0, - 0x3fb0f45385e032a7, 0x0, - 0x3fe1f475c04c7614, 0x0, - 0x3fe2eca23e45e123, 0x0, - 0x3fdd505f6b66b9b1, 0x0, - 0x3fa0213faea2c8cc, 0x0, - 0xbfdd3e9015aa1f69, 0x0, - 0xbfe8f9c27c5d36f9, 0x0, - 0xbfe281221a22a94b, 0x0, - 0xbfa3cd8ab5d7b8a7, 0x0, - 0x3fe1b6be4da5c434, 0x0, - 0x3fe7af63915ebace, 0x0, - 0x3fe14dcb65ad65a2, 0x0, - 0xbf85cfec3dbffaa9, 0x0, - 0xbfe1befd71f94d6e, 0x0, - 0xbfe770c36b11b73f, 0x0, - 0xbfe14d40d2ee4042, 0x0, - 0x3faa796c992895c6, 0x0, - 0x3fdf8c2fd6544da7, 0x0, - 0x3fe7f8310a5e5607, 0x0, - 0x3fe00cc24e1d94cf, 0x0, - 0x3fa29b813a258c2c, 0x0, - 0xbfdf216a4bf30b80, 0x0, - 0xbfe6970040e2217a, 0x0, - 0xbfdfd77c2e07253c, 0x0, - 0x3f97076f7e5de7e8, 0x0, - 0x3fe0dba592217e2f, 0x0, - 0x3fe942664efcab1d, 0x0, - 0x3fde5d8c9c8052a3, 0x0, - 0xbf82d4c7efce62c5, 0x0, - 0xbfe26f22640845f8, 0x0, - 0xbfe8f71ff1ef1ea9, 0x0, - 0xbfdabab5808cd5e5, 0x0, - 0xbf97da31b927c7b3, 0x0, - 0x3fda8e074aad2aaf, 0x0, - 0x3fe7639cd57d7f9d, 0x0, - 0x3fe2943fb99ab0b7, 0x0, - 0x3fc1179eb39e5512, 0x0, - 0xbfe152a0a38cee1c, 0x0, - 0xbfe88aa5d38d9553, 0x0, - 0xbfe13709f1e1e3c8, 0x0, - 0x3fb4f9f8c340a1c0, 0x0, - 0x3fdce62282ecaeab, 0x0, - 0x3fe7d45f9714368e, 0x0, - 0x3fe2400aff178575, 0x0, - 0x3f95e0782f6213d7, 0x0, - 0xbfdfdd874cc7585d, 0x0, - 0xbfe6b8a47a9647b0, 0x0, - 0xbfdf2a936486c732, 0x0, - 0x3f96d76adee46018, 0x0, - 0x3fe08c55c1386eeb, 0x0, - 0x3fe63d051249f5e5, 0x0, - 0x3fdc2c690be46461, 0x0, - 0xbfaa15332922e522, 0x0, - 0xbfe0fc3c56800546, 0x0, - 0xbfe69cc094c2a5e5, 0x0, - 0xbfe1a3f2a82a1ee2, 0x0, - 0xbf9eb1b934b609a6, 0x0, - 0x3fdf23ffdb2b1404, 0x0, - 0x3fe8d13ee9867f94, 0x0, - 0x3fdc39d031d54274, 0x0, - 0x3fa3fcd38e6b8402, 0x0, - 0xbfdccf22f9b471a6, 0x0, - 0xbfe4f323be56ec0c, 0x0, - 0xbfe2063d69d65210, 0x0, - 0xbf6b95213dc4b93a, 0x0, - 0x3fdfb6f6addbc84d, 0x0, - 0x3fe842ab96bc5eca, 0x0, - 0x3fdc4f039647d6b2, 0x0, - 0xbfa83c7dea866bca, 0x0, - 0xbfe258b4bd089fb7, 0x0, - 0xbfe614e5e8676b04, 0x0, - 0xbfdfec01e4f45f2b, 0x0, - 0xbf6df6cd534e7aff, 0x0, - 0x3fe063a88e2fb9c9, 0x0, - 0x3fe6c5150a246d48, 0x0, - 0x3fdf5b22db835c5c, 0x0, - 0xbf908ea889cf8afa, 0x0, - 0xbfe10e0a4797e94f, 0x0, - 0xbfe4a81b535d72bd, 0x0, - 0xbfdf19c4977fd309, 0x0, - 0x3f9470c71d663b32, 0x0, - 0x3fe114fa3d531726, 0x0, - 0x3fe51afbfc233d2c, 0x0, - 0x3fe10ff3409d91ad, 0x0, - 0x3fb03289b575229f, 0x0, - 0xbfe0c486b870cbff, 0x0, - 0xbfe4efa996d1cb08, 0x0, - 0xbfdc8eb22921b2e7, 0x0, - 0x3faa7128aa4cdc2f, 0x0, - 0x3fe1074b30bf91b9, 0x0, - 0x3fe7d82c2b9f6017, 0x0, - 0x3fe17b3127e231d6, 0x0, - 0x3fa50393c0810b0c, 0x0, - 0xbfde13534590aa0c, 0x0, - 0xbfe4cc6f7db710af, 0x0, - 0xbfe0c2c7b9eca2c7, 0x0, - 0x3fa18a013a688c6e, 0x0, - 0x3fde36a4a526d6a4, 0x0, - 0x3fe4a4158aa6776e, 0x0, - 0x3fdfa01d223f41bc, 0x0, - 0xbfa36c4152de2e0e, 0x0, - 0xbfdeae3b2dafcb3b, 0x0, - 0xbfe9fc5732bf3146, 0x0, - 0xbfdd4d7cf1d22115, 0x0, - 0x3f6808d30547cccf, 0x0, - 0x3fdf1bfc8083b4da, 0x0, - 0x3fe6c71c608cf173, 0x0, - 0x3fdc92a4581a4091, 0x0, - 0xbf9d35e40bdfa0e9, 0x0, - 0xbfd9e4680620afc3, 0x0, - 0xbfe561ab6cfff9ed, 0x0, - 0xbfe02baf080505c9, 0x0, - 0xbfa6abc995a0d9cd, 0x0, - 0x3fe16d7dd5dd9bbd, 0x0, - 0x3fe4611d24f8a2ef, 0x0, - 0x3fddb0cf7f3a7807, 0x0, - 0xbf74f807ffe6e4a5, 0x0, - 0xbfda0316947fd97d, 0x0, - 0xbfe5267074e99ca9, 0x0, - 0xbfe2b0b74d99d62e, 0x0, - 0xbf73a27189e7cb3b, 0x0, - 0x3fe12ce6ea3642b3, 0x0, - 0x3fe529a1eb032910, 0x0, - 0x3fe106ea1106e874, 0x0, - 0xbf950a98199530df, 0x0, - 0xbfdc8466f47b005a, 0x0, - 0xbfe6c18dcc478822, 0x0, - 0xbfe2030d5bf557e1, 0x0, - 0x3f9acf3763f624d9, 0x0, - 0x3fdf1870b34aefaf, 0x0, - 0x3fe62f53619f7a78, 0x0, - 0x3fe2214661b93983, 0x0, - 0x3fa103a5663c6e78, 0x0, - 0xbfdca297e4c8f4e8, 0x0, - 0xbfe739799853ad3d, 0x0, - 0xbfde3f4cf86c7054, 0x0, - 0x3f84fb367a71c014, 0x0, - 0x3fdf3a1e34d04f87, 0x0, - 0x3fe769164e6d1d07, 0x0, - 0x3fe0d160753f3a29, 0x0, - 0x3f75753ec1896eba, 0x0, - 0xbfdc801c249f6ca0, 0x0, - 0xbfe5cf365a2354ea, 0x0, - 0xbfdf53bd16718bb8, 0x0, - 0x3f8794bfc3fe97cf, 0x0, - 0x3fdb94f55902349f, 0x0, - 0x3fe3d9f8165c0588, 0x0, - 0x3fe04e02312da6e4, 0x0, - 0x3f89670569a3c84a, 0x0, - 0xbfdecf6b8553f737, 0x0, - 0xbfe3bb8020527718, 0x0, - 0xbfdd9256d3ce458e, 0x0, - 0xbfa3428c27b2779e, 0x0, - 0x3fdfafd2bf806bc7, 0x0, - 0x3fe933da40d3d6c2, 0x0, - 0x3fe1a8e15706a8a4, 0x0, - 0xbfaab18dbc128704, 0x0, - 0xbfddd5f9a85a71a3, 0x0, - 0xbfe6903737b18910, 0x0, - 0xbfde27f9cde8c1d6, 0x0, - 0x3f9f2495b1493717, 0x0, - 0x3fe0561ee2854915, 0x0, - 0x3fe80c71d13ba668, 0x0, - 0x3fdfbd78fafa5041, 0x0, - 0xbfbb07b392d79b63, 0x0, - 0xbfdde6d01dfdd7ad, 0x0, - 0xbfe624af9656005d, 0x0, - 0xbfe14bab9499afb8, 0x0, - 0x3f987a9f4394bf7c, 0x0, - 0x3fde7bc4c65261e9, 0x0, - 0x3fe397b4515883d8, 0x0, - 0x3fe095763390b89e, 0x0, - 0x3f94bdc563b87d4e, 0x0, - 0xbfe021348d527258, 0x0, - 0xbfe635722f012db3, 0x0, - 0xbfe00cec23f4083e, 0x0, - 0xbfb193643d462452, 0x0, - 0x3fdcd02a37458b94, 0x0, - 0x3fe4dd627d3a56cc, 0x0, - 0x3fe05f5ad91b2e44, 0x0, - 0xbf96122b8ebe6094, 0x0, - 0xbfe2dbe7f1928e88, 0x0, - 0xbfe5c8a8608257ef, 0x0, - 0xbfdc2285d026580e, 0x0, - 0x3fadac3d13a61e43, 0x0, - 0x3fdded3358cba2ef, 0x0, - 0x3fe684aa03d0d218, 0x0, - 0x3fd7e6c7aa580ada, 0x0, - 0x3fb3b716b3a355e2, 0x0, - 0xbfdb090008a3d6de, 0x0, - 0xbfe7070b07612da2, 0x0, - 0xbfdffb884bbcd7f4, 0x0, - 0xbfa6fcfc2d3be016, 0x0, - 0x3fe08a7bb5a80b3d, 0x0, - 0x3fe7f6b1792847b9, 0x0, - 0x3fe13fa3cc550bf6, 0x0, - 0xbfb03259b2490111, 0x0, - 0xbfe14d3e33b489df, 0x0, - 0xbfe60c3373be978f, 0x0, - 0xbfde35d57bce0412, 0x0, - 0x3faab0e3cc57a286, 0x0, - 0x3fde21886cae7e74, 0x0, - 0x3fe658ab1c479458, 0x0, - 0x3fe15948bd4552c4, 0x0, - 0x3fa6af964f18ab9e, 0x0, - 0xbfe04832aefd3449, 0x0, - 0xbfe6ddb6032c0570, 0x0, - 0xbfdfd4eb603d1a7d, 0x0, - 0x3fb0a56dfc432f5f, 0x0, - 0x3fdcfb1f5ce1619b, 0x0, - 0x3fe69cdfa7ec8319, 0x0, - 0x3fe2a010ca6474e1, 0x0, - 0x3f800ef72e5c2c37, 0x0, - 0xbfe280a2bab20853, 0x0, - 0xbfe5873f158ee352, 0x0, - 0xbfda266c0d8e7bf1, 0x0, - 0xbfad4d4b43889a0c, 0x0, - 0x3fdeb7c44f3c40d2, 0x0, - 0x3fe4592f960a3c03, 0x0, - 0x3fe1b6fb1ac61934, 0x0, - 0xbfb24f33160a6491, 0x0, - 0xbfe05881d8c4bb2e, 0x0, - 0xbfe630a1098aca70, 0x0, - 0xbfe0df00b3c95b21, 0x0, - 0xbfa42f17b7292b34, 0x0, - 0x3fe0ed7f20ee4bd6, 0x0, - 0x3fe3ad40f8c7a10e, 0x0, - 0x3fe0e37e951e1897, 0x0, - 0x3f390efe51dd4301, 0x0, - 0xbfe0c33945567aa9, 0x0, - 0xbfe3f3df042fa3d0, 0x0, - 0xbfdf9c059c79f8c0, 0x0, - 0x3fa39d3c3322640e, 0x0, - 0x3fdd087ae29977da, 0x0, - 0x3fe46434b2b4acfc, 0x0, - 0x3fe2e579c011577a, 0x0, - 0x3f958ac45d9e3dcd, 0x0, - 0xbfe0ff52fe7a559d, 0x0, - 0xbfe6ec35195064b5, 0x0, - 0xbfe2ebeb1d082613, 0x0, - 0x3f8656ccdbec0489, 0x0, - 0x3fe19b9035d5a9b9, 0x0, - 0x3fe53a5ec0d624bb, 0x0, - 0x3fdd29e5889b2bee, 0x0, - 0xbfa8403023ab01ce, 0x0, - 0xbfe029d6acd585e1, 0x0, - 0xbfe9263633f6a186, 0x0, - 0xbfdfa54ee4d6f8e9, 0x0, - 0x3f9706f2522d94bc, 0x0, - 0x3fdffab0d505f95a, 0x0, - 0x3fe6e1155ac82851, 0x0, - 0x3fe1c2b5df65b2b5, 0x0, - 0x3fbebba2091db21c, 0x0, - 0xbfe157a930bdb948, 0x0, - 0xbfe619950d4d92d6, 0x0, - 0xbfe286ef67e32200, 0x0, - 0x3f921622b7b43985, 0x0, - 0x3fddd316aa0c8887, 0x0, - 0x3fe848cd6d27ada6, 0x0, - 0x3fdf86c0c539a173, 0x0, - 0xbfa53acbcd01d042, 0x0, - 0xbfde2fcca28d4b30, 0x0, - 0xbfe65b9a3f9c4e57, 0x0, - 0xbfddd7d991381c9d, 0x0, - 0x3fad8e3135ab6052, 0x0, - 0x3fdd426cdf42c022, 0x0, - 0x3fe72e249c178914, 0x0, - 0x3fdfa5393719d8dc, 0x0, - 0x3fa1a22dd65d2d55, 0x0, - 0xbfdb9df989253901, 0x0, - 0xbfe5de4e8aac56d6, 0x0, - 0xbfd8f47b6c7a1f38, 0x0, - 0x3f91eb232f436773, 0x0, - 0x3fdbf6c902abebac, 0x0, - 0x3fe4201ac84ff324, 0x0, - 0x3fdf24292baf4840, 0x0, - 0xbf79cc212ee965e5, 0x0, - 0xbfdd74f0f5f1019e, 0x0, - 0xbfe683ba5aebdf58, 0x0, - 0xbfe3cd961f7bab87, 0x0, - 0x3f82b14dcb15b657, 0x0, - 0x3fe0026b1ac9c86b, 0x0, - 0x3fe991259443170c, 0x0, - 0x3fe18a82a58f4149, 0x0, - 0x3fac67f43763d9f8, 0x0, - 0xbfe0db14761eebcf, 0x0, - 0xbfe8d3ee364665bd, 0x0, - 0xbfe23cb1e36b5f53, 0x0, - 0x3faf7ac207b4d103, 0x0, - 0x3fdd8d3f6e97af83, 0x0, - 0x3fe76dbe641f2ca0, 0x0, - 0x3fe02d2902948767, 0x0, - 0xbfab154d4a84de58, 0x0, - 0xbfdc1915a7d0eeab, 0x0, - 0xbfe5857234dc770e, 0x0, - 0xbfe209158b35a5e6, 0x0, - 0x3f902561743037d8, 0x0, - 0x3fdcfc9bdea8b150, 0x0, - 0x3fe6a1430e3626a0, 0x0, - 0x3fe265295d5039c6, 0x0, - 0xbfa2b7bc8faab6da, 0x0, - 0xbfde2c9b7d612337, 0x0, - 0xbfe87693c7b9e787, 0x0, - 0xbfe312f22b0233e4, 0x0, - 0xbfb4bb01c2ae3d04, 0x0, - 0x3fe005b73a5b633d, 0x0, - 0x3fe56a76e868840e, 0x0, - 0x3fe09811d0b27aae, 0x0, - 0x3f66846a255d427d, 0x0, - 0xbfe09b970bb6fd6b, 0x0, - 0xbfe73214054d7dc3, 0x0, - 0xbfdb29e36c7f66b1, 0x0, - 0x3fb3049180c6cf75, 0x0, - 0x3fe3040c1caab15f, 0x0, - 0x3fe56970f8cb9642, 0x0, - 0x3fe18a50a3a8d61c, 0x0, - 0x3fbef4381b55e57d, 0x0, - 0xbfdf5bee3528bf9f, 0x0, - 0xbfea000bd867078c, 0x0, - 0xbfe18ce8b027a408, 0x0, - 0x3f86227f7fa9d44f, 0x0, - 0x3fe3a47d4dffe8e8, 0x0, - 0x3fe4d34008b70319, 0x0, - 0x3fe00dfe031cb462, 0x0, - 0x3f9c1a8f94bf034c, 0x0, - 0xbfe05ab71171b2e7, 0x0, - 0xbfe5f910e924e373, 0x0, - 0xbfe235cb83a7bd19, 0x0, - 0xbfb106c819b5f1ac, 0x0, - 0x3fde0a210fa33996, 0x0, - 0x3fe5cebc9be06065, 0x0, - 0x3fe01cc8f83a4d32, 0x0, - 0x3fbc56e2f67f562e, 0x0, - 0xbfdfd4723f0c4a96, 0x0, - 0xbfe5f7046c39eb39, 0x0, - 0xbfd849842fc535a8, 0x0, - 0x3f93bf717fed5c19, 0x0, - 0x3fe1de23ee89f8e6, 0x0, - 0x3fe50b015d4a133e, 0x0, - 0x3fe0b0638d43cd43, 0x0, - 0xbf82566436fc54a1, 0x0, - 0xbfe127673f2ce23d, 0x0, - 0xbfe617a8622009b5, 0x0, - 0xbfe1e84843374d6d, 0x0, - 0x3fb5bec7ba1f264a, 0x0, - 0x3fe24aeb15b025ce, 0x0, - 0x3fe71d78e663d4e3, 0x0, - 0x3fe1859acf67ebea, 0x0, - 0x3fb173cdb6c63b5f, 0x0, - 0xbfdf79a14caa444e, 0x0, - 0xbfe6be7d91fca631, 0x0, - 0xbfe216f01ac0e3fe, 0x0, - 0x3f965e2676de3a80, 0x0, - 0x3fddd7c9e2ae83c2, 0x0, - 0x3fe450b1d19a4483, 0x0, - 0x3fe11718d7dd366a, 0x0, - 0xbf9cd45f9d4aea14, 0x0, - 0xbfdad5e3c226263f, 0x0, - 0xbfe6e3ee9c42d7b7, 0x0, - 0xbfdd0acd48cb85b6, 0x0, - 0xbf886e466a8f3a1e, 0x0, - 0x3fdca1943854883a, 0x0, - 0x3fe6ed8b903526a7, 0x0, - 0x3fdb43fae5f76fd7, 0x0, - 0x3f9c2c1b152d3f76, 0x0, - 0xbfdb0e262e8ef517, 0x0, - 0xbfe4cce1f88e902b, 0x0, - 0xbfe05636c4145c6e, 0x0, - 0x3fb18b73eba9b64d, 0x0, - 0x3fdc5106378e4b87, 0x0, - 0x3fe957a4260bedf6, 0x0, - 0x3fe079b66f415df8, 0x0, - 0x3f97be279e7fd31e, 0x0, - 0xbfe095e3c11c29d7, 0x0, - 0xbfe7ec0f947864fb, 0x0, - 0xbfe2e92116b8d611, 0x0, - 0xbfab79f6985d0308, 0x0, - 0x3fdbf4667c8d188e, 0x0, - 0x3fe8aa9fa7d72f51, 0x0, - 0x3fe07cc955eaa9f9, 0x0, - 0xbfa5ec3932012e6b, 0x0, - 0xbfddab43084f5834, 0x0, - 0xbfe51c75664dd10b, 0x0, - 0xbfe276fa18b302dd, 0x0, - 0x3f8c6fdd7cadd187, 0x0, - 0x3fe2db43eb11313b, 0x0, - 0x3fe54a22271e8dbd, 0x0, - 0x3fe1702f35c968df, 0x0, - 0xbfacbcc557487ad4, 0x0, - 0xbfda549caeceffa2, 0x0, - 0xbfe662ce2c2570db, 0x0, - 0xbfe2452c499f98b2, 0x0, - 0xbf9ed99ac308cd35, 0x0, - 0x3fdba2b9cbf096a2, 0x0, - 0x3fe422a4044d8b7f, 0x0, - 0x3fdcfa0a52829446, 0x0, - 0xbfa2bb5b3d7213cd, 0x0, - 0xbfe00d7800278494, 0x0, - 0xbfe6ed821fde990c, 0x0, - 0xbfdaaeeb641fa1d9, 0x0, - 0x3f8e5e03e1b626a8, 0x0, - 0x3fe0ae0c680521ed, 0x0, - 0x3fe6c9ef7f83c887, 0x0, - 0x3fe0e7708b0dfe89, 0x0, - 0xbf9dbceaa14d3ffc, 0x0, - 0xbfe0af6db996c66d, 0x0, - 0xbfe767448ff0f1d2, 0x0, - 0xbfdf9ac818d293aa, 0x0, - 0x3fa9c21f9b2f42f3, 0x0, - 0x3fe0191d26f4cc53, 0x0, - 0x3fe57ae4bb84ab26, 0x0, - 0x3fd853dd18080f4d, 0x0, - 0x3fa54fd075e16867, 0x0, - 0xbfde1bd90a135f3c, 0x0, - 0xbfe6860311abec2d, 0x0, - 0xbfde8911b3165278, 0x0, - 0xbf91412fc3a4723c, 0x0, - 0x3fd8b7bb2df90dba, 0x0, - 0x3fe6ea6a25d6e6c7, 0x0, - 0x3fe1a4cda37d720b, 0x0, - 0xbf876a9542366115, 0x0, - 0xbfdbb8d6705e7058, 0x0, - 0xbfe745aa9db8f69d, 0x0, - 0xbfe1c846fae14ff3, 0x0, - 0xbf84ac13231b096c, 0x0, - 0x3fe029a7e54fe1ec, 0x0, - 0x3fe4002da7035130, 0x0, - 0x3fe0cec0884700d5, 0x0, - 0xbfb60beeec1132d2, 0x0, - 0xbfe1094606ef5a7e, 0x0, - 0xbfe380ff721b57ad, 0x0, - 0xbfe09bec6387e936, 0x0, - 0xbfaf4dd38e2326bc, 0x0, - 0x3fe16846d9f6babb, 0x0, - 0x3fe55f688f14b9c0, 0x0, - 0x3fe26926cb92d330, 0x0, - 0xbf839a25d1d9cdf1, 0x0, - 0xbfe16fd7c52cf460, 0x0, - 0xbfe77c1a7ed64480, 0x0, - 0xbfe0899123ff33fc, 0x0, - 0xbf989d5dc7f597c4, 0x0, - 0x3fe14163dc9887ee, 0x0, - 0x3fe3b3b460054566, 0x0, - 0x3fdf8612fc2461b2, 0x0, - 0xbf90674386efab73, 0x0, - 0xbfdbcfb30d35501d, 0x0, - 0xbfe7ad42e194f721, 0x0, - 0xbfe1b79e534cd68c, 0x0, - 0xbf7d0ac22972753c, 0x0, - 0x3fe06311649f9800, 0x0, - 0x3fe70352f2223be4, 0x0, - 0x3fdde95233630905, 0x0, - 0xbfa30deb1ce1a454, 0x0, - 0xbfdcfdf88ab7cd29, 0x0, - 0xbfe6b4f3652618c1, 0x0, - 0xbfdd3bd4af1f2a80, 0x0, - 0xbf93750bdda4e302, 0x0, - 0x3fe13ec13cd3afed, 0x0, - 0x3fe7b58b0e678f79, 0x0, - 0x3fe0af927939de94, 0x0, - 0xbfa7c6b3cd207485, 0x0, - 0xbfe01391af894dad, 0x0, - 0xbfe8ac890824558c, 0x0, - 0xbfe0a81f2559aba8, 0x0, - 0xbf70a67c032011b0, 0x0, - 0x3fe0c1890b4664c9, 0x0, - 0x3fe3ed0b615f5365, 0x0, - 0x3fe131e6bc28373e, 0x0, - 0xbf96c79f646bdcd7, 0x0, - 0xbfe0878b4c941f9f, 0x0, - 0xbfe62b3dbcf57163, 0x0, - 0xbfdeecd6148084e3, 0x0, - 0xbfb2cd052802f413, 0x0, - 0x3fe1c15c9fe7a42e, 0x0, - 0x3fe3946ec37576ea, 0x0, - 0x3fe101d8c4944bec, 0x0, - 0xbfb3e95b0ad8f89e, 0x0, - 0xbfe014d241c54c82, 0x0, - 0xbfe635dbcf4726c2, 0x0, - 0xbfdf986621c403c5, 0x0, - 0x3f9c4ef86bc9aeb1, 0x0, - 0x3fe1ff77f2735044, 0x0, - 0x3fe642c3f6368e26, 0x0, - 0x3fe0478010333baf, 0x0, - 0x3f8e3fbb463f5fc3, 0x0, - 0xbfe10036920b1cdf, 0x0, - 0xbfe7828c7e7f05f6, 0x0, - 0xbfe1f1d4d1b8716b, 0x0, - 0xbfa1423e4eb2254c, 0x0, - 0x3fdfa1707af39519, 0x0, - 0x3fe84b80f85717e2, 0x0, - 0x3fe1722525d16aab, 0x0, - 0xbf8fd26349ea530b, 0x0, - 0xbfde27905e3b2f21, 0x0, - 0xbfe6099f759f272f, 0x0, - 0xbfdf69b769badf4e, 0x0, - 0x3f8418cc30b8199f, 0x0, - 0x3fe1b530f0a5798e, 0x0, - 0x3fe57aee45dcf8bc, 0x0, - 0x3fdfb4649d9b10cc, 0x0, - 0x3fbcf6c7e91f9845, 0x0, - 0xbfdd413188167a10, 0x0, - 0xbfe5e0a48889bb54, 0x0, - 0xbfe129885fb2868a, 0x0, - 0xbfb108fbbbc09c11, 0x0, - 0x3fe3bc680e586ec6, 0x0, - 0x3fe66b5f28f46cd5, 0x0, - 0x3fd5a297607b5f9e, 0x0, - 0x3fab41c13f815074, 0x0, - 0xbfe043ae63476838, 0x0, - 0xbfe45561cfb7c6f6, 0x0, - 0xbfdc51ad801c5897, 0x0, - 0xbf98a1cad061cbf6, 0x0, - 0x3fdbe00954ae5fe2, 0x0, - 0x3fe831e317c6c177, 0x0, - 0x3fe13958c09196b9, 0x0, - 0x3fa44af55eab6967, 0x0, - 0xbfdeced19fbe1378, 0x0, - 0xbfe56f4eb27556cf, 0x0, - 0xbfdfa72b2b261982, 0x0, - 0xbf849904904a9d53, 0x0, - 0x3fd6912e3c558fb8, 0x0, - 0x3fe3f20dc67487e5, 0x0, - 0x3fe0ccca04302d26, 0x0, - 0x3f91717033693c16, 0x0, - 0xbfdd8ef72c11a2f6, 0x0, - 0xbfe52d069a855658, 0x0, - 0xbfe08f574c7261bc, 0x0, - 0x3fbaceb836cb393c, 0x0, - 0x3fde40958141e245, 0x0, - 0x3fe9110bc0d1bc26, 0x0, - 0x3fdd5b441e38c345, 0x0, - 0xbf885e999f90983a, 0x0, - 0xbfdf40098f35fe63, 0x0, - 0xbfe65e896b6a8bba, 0x0, - 0xbfe10566ab239f25, 0x0, - 0xbf723d50aa2b8512, 0x0, - 0x3fe17260cf0720e8, 0x0, - 0x3fe46595958ddea5, 0x0, - 0x3fdd1a24b2fd9f94, 0x0, - 0x3f8d2cb7592726c6, 0x0, - 0xbfdfffccc5e26bc0, 0x0, - 0xbfe878b8e2dee7bf, 0x0, - 0xbfdcba06bbb716d2, 0x0, - 0xbfae0e774038df73, 0x0, - 0x3fdddd4984358f7f, 0x0, - 0x3fe71b26e57a7a53, 0x0, - 0x3fe16c9bd3154a8a, 0x0, - 0x3f3bbbafc4666c8b, 0x0, - 0xbfde6ef5b537c52f, 0x0, - 0xbfe68d1c25d4c3f4, 0x0, - 0xbfe120ee5bc5e2ad, 0x0, - 0xbfa7c667bcead7ad, 0x0, - 0x3fdfd0a224d93223, 0x0, - 0x3fe81fec5e51bcaa, 0x0, - 0x3fe29d488f6bc2e3, 0x0, - 0xbfb75a128e3ae9e5, 0x0, - 0xbfde90e4a0097464, 0x0, - 0xbfe3961870e9e3a2, 0x0, - 0xbfe26a73e73e5b86, 0x0, - 0x3fa117680cc8df7c, 0x0, - 0x3fdffe6e6124fef3, 0x0, - 0x3fe70c470cf51155, 0x0, - 0x3fdd1e89576cf54a, 0x0, - 0x3f912983a025eb51, 0x0, - 0xbfdb9bd775b64bdb, 0x0, - 0xbfe56b35f9135fa5, 0x0, - 0xbfe033943511d3c2, 0x0, - 0x3faef720f26be9db, 0x0, - 0x3fdc8e1213f42502, 0x0, - 0x3fe4d79a05f98018, 0x0, - 0x3fdfd922c7365fb7, 0x0, - 0x3fb8dee977e4b181, 0x0, - 0xbfe0aed8c09178b5, 0x0, - 0xbfe54f14766f4cd5, 0x0, - 0xbfe1400136d09eb4, 0x0, - 0x3fb39c97688a0889, 0x0, - 0x3fdf361a71cc3346, 0x0, - 0x3fe6d076a8cbf329, 0x0, - 0x3fda1a090fa9763b, 0x0, - 0xbf981d76c68b9de5, 0x0, - 0xbfdf0f2cc7f991c0, 0x0, - 0xbfe7d9200e5b6bd2, 0x0, - 0xbfdf3a56d47e15b0, 0x0, - 0x3fb9a11d608fb255, 0x0, - 0x3fde97f71dabbf1e, 0x0, - 0x3fe669a018341c1c, 0x0, - 0x3fe0ed4d818b2078, 0x0, - 0x3fa39100316f7a80, 0x0, - 0xbfde184aff57fd15, 0x0, - 0xbfe78e1ab8f64565, 0x0, - 0xbfdc484b8ebc37df, 0x0, - 0x3fa292015a3a9cbc, 0x0, - 0x3fe02db6e07629f1, 0x0, - 0x3fe86b0d1cf5cf13, 0x0, - 0x3fe069772eac6faf, 0x0, - 0xbf90f34592c6c798, 0x0, - 0xbfe073dc5eb8dfc3, 0x0, - 0xbfe6276b49728001, 0x0, - 0xbfded732643b0914, 0x0, - 0xbf8a58a712489fb8, 0x0, - 0x3fdebae4ba1533ec, 0x0, - 0x3fe6b0358e40c8de, 0x0, - 0x3fdf44fd3838af51, 0x0, - 0xbfa4656db074e7b2, 0x0, - 0xbfd9c40e7bd750ee, 0x0, - 0xbfe87004170f6c0f, 0x0, - 0xbfe167fe3974356b, 0x0, - 0xbf704d4ac174b073, 0x0, - 0x3fe15fcf3da475fd, 0x0, - 0x3fe651c123d51a93, 0x0, - 0x3fde65556ecf79dd, 0x0, - 0xbf79d024ce8bcdbd, 0x0, - 0xbfdf06527ddaa29b, 0x0, - 0xbfe619c393f08a85, 0x0, - 0xbfde21a355bd1202, 0x0, - 0x3f8a92eac27aba92, 0x0, - 0x3fe0956480bdfcca, 0x0, - 0x3fe5b5ab2f53098b, 0x0, - 0x3fdc903672eca5c3, 0x0, - 0x3fb0dbf6d61ac19a, 0x0, - 0xbfe0d23af3611836, 0x0, - 0xbfe4363589c08fad, 0x0, - 0xbfe0a6c1e215eb7d, 0x0, - 0x3f8c7eef07dbe181, 0x0, - 0x3fde8bdc4452102f, 0x0, - 0x3fe58b9e38e15342, 0x0, - 0x3fdc28fc9ccd1bb4, 0x0, - 0xbf8d9384ebd1a7f4, 0x0, - 0xbfdace0b446dd604, 0x0, - 0xbfe49b12623c0026, 0x0, - 0xbfdde01ba28a8423, 0x0, - 0xbfaf432a2d9e73da, 0x0, - 0x3fdfb0ee813876a4, 0x0, - 0x3fe7652e76260c3c, 0x0, - 0x3fdfad767ef2a062, 0x0, - 0x3f7142aa2ae55ccf, 0x0, - 0xbfd91db8beca8bcd, 0x0, - 0xbfe4cbba6e0c6d16, 0x0, - 0xbfda672ebc7cbb44, 0x0, - 0xbfab246eacfa0a72, 0x0, - 0x3fddf525aab5a67c, 0x0, - 0x3fe7c143757514a4, 0x0, - 0x3fdd3245083db447, 0x0, - 0xbf9911d4f4fcefe9, 0x0, - 0xbfe21ded07b1cbac, 0x0, - 0xbfe71690b779a91c, 0x0, - 0xbfe1df47e26f1468, 0x0, - 0xbf7f63426d3176cc, 0x0, - 0x3fe1cb5198c6d8f4, 0x0, - 0x3fe5934868a8cacc, 0x0, - 0x3fdf07b1fa7a8c6b, 0x0, - 0xbfb39df7265223a3, 0x0, - 0xbfded1e69357e807, 0x0, - 0xbfe71c41ee82b18a, 0x0, - 0xbfd757a0299aa08e, 0x0, - 0xbf954aeddea94e36, 0x0, - 0x3fe19f9065bb3f42, 0x0, - 0x3fe31267ebba56d8, 0x0, - 0x3fe0c2430bfa624a, 0x0, - 0xbfa0b29c4d4a99a3, 0x0, - 0xbfddd571b6a11bce, 0x0, - 0xbfe71219c2ed3d39, 0x0, - 0xbfe0bd13b77c6c22, 0x0, - 0xbf910a60496470bf, 0x0, - 0x3fe1d960462e4cd0, 0x0, - 0x3fe42671fe8ef3fa, 0x0, - 0x3fdf83faa4702014, 0x0, - 0xbf9c210f70ea64f6, 0x0, - 0xbfe01f44022bf4ef, 0x0, - 0xbfe9708bfb81b13b, 0x0, - 0xbfdfd9deebc18694, 0x0, - 0xbf785bff887a75dd, 0x0, - 0x3fdebbb648444480, 0x0, - 0x3fe6abab83780be1, 0x0, - 0x3fdd1b6381c2502b, 0x0, - 0x3fb2b3016977eb3d, 0x0, - 0xbfddc8292b447200, 0x0, - 0xbfe46b1c7fe9fb41, 0x0, - 0xbfe0690690e8d40a, 0x0, - 0xbfba409691d6dc9c, 0x0, - 0x3fda96b81539cf53, 0x0, - 0x3fe5a8080f2bba2b, 0x0, - 0x3fdf52ec8ef5a9ec, 0x0, - 0x3fb08bd68af7f9f4, 0x0, - 0xbfe0bf912c4cf2d1, 0x0, - 0xbfe572404bf980f6, 0x0, - 0xbfddabc34e42912d, 0x0, - 0xbfb2cf9e59eddc44, 0x0, - 0x3fdfa29bf0646bde, 0x0, - 0x3fe6b50c3e117bde, 0x0, - 0x3fdfc4c82a855e3d, 0x0, - 0xbfba6fa2afeeef74, 0x0, - 0xbfdf639781d31d8c, 0x0, - 0xbfe95b4bc522c57f, 0x0, - 0xbfe3313c64f89f12, 0x0, - 0x3fad17447d30690d, 0x0, - 0x3fdbc90d79b26f88, 0x0, - 0x3fe3ddeed72e6d6c, 0x0, - 0x3fe116f82f5ae2be, 0x0, - 0x3f9fa39d1edc3b57, 0x0, - 0xbfe029b1cab48ed8, 0x0, - 0xbfe5533aa7d326f0, 0x0, - 0xbfe0e25559229555, 0x0, - 0x3faaef945a8ea7e4, 0x0, - 0x3fe3e0ef474d9062, 0x0, - 0x3fe564acd78feca3, 0x0, - 0x3fdbdf8a0bdecbf4, 0x0, - 0xbf80bb9405d89986, 0x0, - 0xbfdc9eca6618df3e, 0x0, - 0xbfe5e1cf651d0f05, 0x0, - 0xbfde30d94e5e991b, 0x0, - 0xbfb8ab8e47664664, 0x0, - 0x3fda87cc13638a6d, 0x0, - 0x3fe738d1e784a28c, 0x0, - 0x3fdc5ff83450ff9b, 0x0, - 0xbf86b36f24145e25, 0x0, - 0xbfdd52ee389b94d6, 0x0, - 0xbfe52919af1fddf5, 0x0, - 0xbfdca70f3b4ebd28, 0x0, - 0xbf8983bda578a97c, 0x0, - 0x3fe03393f0a30bb3, 0x0, - 0x3fe592bb87992f32, 0x0, - 0x3fdcad7de0297c4b, 0x0, - 0xbfa65d8580753602, 0x0, - 0xbfe1617b406e9216, 0x0, - 0xbfe590ee5073e594, 0x0, - 0xbfe039f6d68b0222, 0x0, - 0xbfa771857847e2ba, 0x0, - 0x3fe025cf1f25f16d, 0x0, - 0x3fe5f9d3d0cbfcfa, 0x0, - 0x3fdeb4fded9feadb, 0x0, - 0xbf8d0575551d8959, 0x0, - 0xbfe04808954fc114, 0x0, - 0xbfe77861faec4687, 0x0, - 0xbfdd5975671c3868, 0x0, - 0xbf923c1d990e4f23, 0x0, - 0x3fe18302bef523eb, 0x0, - 0x3fe79f8dee6f52fc, 0x0, - 0x3fde1c0849ad0830, 0x0, - 0x3fb4d1d5080e8222, 0x0, - 0xbfde5467a9bde13e, 0x0, - 0xbfe77d6a86ee55df, 0x0, - 0xbfe2446754eb4715, 0x0, - 0x3fa341158e568174, 0x0, - 0x3fdeecbcb83f44c1, 0x0, - 0x3fe65306897224bb, 0x0, - 0x3fe238c957924232, 0x0, - 0xbf822fb4922aa215, 0x0, - 0xbfdbc7527093ae9e, 0x0, - 0xbfe32f1e700c2e2f, 0x0, - 0xbfddced91ecd715b, 0x0, - 0x3fa45020a7838fb5, 0x0, - 0x3fe4d9eafb3992b4, 0x0, - 0x3fe38987b790c7cb, 0x0, - 0x3fe0eee279e0cc14, 0x0, - 0x3fb1989341e936ec, 0x0, - 0xbfdf387f732c2e1b, 0x0, - 0xbfe5c883d4b35602, 0x0, - 0xbfe157fc08994da1, 0x0, - 0x3fa80f87c5072fd7, 0x0, - 0x3fde1b33ab2d136f, 0x0, - 0x3fe87f802dbd5c4f, 0x0, - 0x3fe19aea3ba27ea0, 0x0, - 0xbfb10b8436cadba7, 0x0, - 0xbfe12565608b9214, 0x0, - 0xbfe53ce707c00273, 0x0, - 0xbfde7c432e0c1526, 0x0, - 0x3f9d7c1ac58fe749, 0x0, - 0x3fe1116d1e43fbab, 0x0, - 0x3fe3e909beb9f30c, 0x0, - 0x3fddf4ed9922fd1a, 0x0, - 0x3faab670433087f8, 0x0, - 0xbfe153c8ffb2027a, 0x0, - 0xbfe6053ef7893986, 0x0, - 0xbfdb4b7e2a1a63c0, 0x0, - 0xbf303ab1e1b901f1, 0x0, - 0x3fdf06dc5f021114, 0x0, - 0x3fe5df67d6a01f08, 0x0, - 0x3fe28fbc13dd2418, 0x0, - 0xbfa20b6646c7fcb3, 0x0, - 0xbfe19696815a63b6, 0x0, - 0xbfe895ddfc413ab7, 0x0, - 0xbfdf8e62e26d0fef, 0x0, - 0x3f8de97696103962, 0x0, - 0x3fe08bd76034c4e2, 0x0, - 0x3fe448fbab05720a, 0x0, - 0x3fe2e166931b0e9f, 0x0, - 0xbf70044598e2f80f, 0x0, - 0xbfe25cc0302d3953, 0x0, - 0xbfe7fdcdf065d4f8, 0x0, - 0xbfde5310c4004443, 0x0, - 0xbfbdfd4f611efa17, 0x0, - 0x3fe1b3d98557c047, 0x0, - 0x3fe7aa45a6910248, 0x0, - 0x3fe296befa4e64b3, 0x0, - 0xbfb625cc1988a850, 0x0, - 0xbfe0c5e8e3d3b5a4, 0x0, - 0xbfe7fe746ae1e04e, 0x0, - 0xbfde0bf5aebf7fb6, 0x0, - 0xbfbf6828d040bd9c, 0x0, - 0x3fdce9f0fc5a8a73, 0x0, - 0x3fe928551d068073, 0x0, - 0x3fe0bad612c2cce3, 0x0, - 0x3fb4588800ebf815, 0x0, - 0xbfe0e35426007554, 0x0, - 0xbfe769d04ed0db0a, 0x0, - 0xbfddf59013e1ad90, 0x0, - 0x3fa83956efe680ad, 0x0, - 0x3fe208f606e76840, 0x0, - 0x3fe810036f697028, 0x0, - 0x3fdf8e4d150af4b3, 0x0, - 0xbfb84ed152d11e1a, 0x0, - 0xbfde7739b5580e50, 0x0, - 0xbfe767e14f6fd074, 0x0, - 0xbfe0a03674be5a79, 0x0, - 0xbf995d5b365c5382, 0x0, - 0x3fdcd311de8cdc0a, 0x0, - 0x3fe5ee77a0c794c3, 0x0, - 0x3fdf3de117c2bf4e, 0x0, - 0x3fb732748b1b1ac8, 0x0, - 0xbfe0af8441db0ec6, 0x0, - 0xbfe72b6e50229d76, 0x0, - 0xbfdfb54a864bd961, 0x0, - 0xbfa28d84df7f2808, 0x0, - 0x3fe1570462846331, 0x0, - 0x3fe6fee2c74cb7d9, 0x0, - 0x3fdd4834b6b60cae, 0x0, - 0x3f813ddd08ca9b1a, 0x0, - 0xbfde58a69095fc9b, 0x0, - 0xbfe6c68629cc0468, 0x0, - 0xbfe047f2a4f3b83e, 0x0, - 0x3f9009a588bc7558, 0x0, - 0x3fdd7a67ab9252d2, 0x0, - 0x3fe43481aa6c7b58, 0x0, - 0x3fe0f35b4391e841, 0x0, - 0x3f972e75d7a71e8c, 0x0, - 0xbfe253fd24b55541, 0x0, - 0xbfe9fb33eee466d2, 0x0, - 0xbfde2958ea17c5cf, 0x0, - 0x3fa402b4a2dc64c4, 0x0, - 0x3fdee410406f3bd1, 0x0, - 0x3fe8244a909622f5, 0x0, - 0x3fe0653f6e97ed1a, 0x0, - 0x3fb2646ac37425da, 0x0, - 0xbfdd9787dcdc204b, 0x0, - 0xbfe772e6251d3807, 0x0, - 0xbfde8a01ba8b6d41, 0x0, - 0x3f7ff27f8ca8f192, 0x0, - 0x3fe012629667704d, 0x0, - 0x3fe7aa71bb89c7ca, 0x0, - 0x3fdec7f5e1fbcc38, 0x0, - 0x3fa9678e1bd12422, 0x0, - 0xbfdd79035fd50993, 0x0, - 0xbfe6106c8ec8e127, 0x0, - 0xbfdbe493b455ebfc, 0x0, - 0x3fc027926db9856f, 0x0, - 0x3fdf07fb0d19bb16, 0x0, - 0x3fe5ce16d49e123c, 0x0, - 0x3fe0297aba3e93e7, 0x0, - 0xbf9fcbd9b9c085d9, 0x0, - 0xbfe275b40e65069d, 0x0, - 0xbfe44e3a1b54c182, 0x0, - 0xbfdbabc1f6f9b4f6, 0x0, - 0x3faaaa3338bfd089, 0x0, - 0x3fdf737a4da56039, 0x0, - 0x3fe607674eec744c, 0x0, - 0x3fe1ae1536f83a22, 0x0, - 0xbf7e97279c43e678, 0x0, - 0xbfe04e31bfdda73c, 0x0, - 0xbfe6f2ecb5aa61e5, 0x0, - 0xbfde61a2dad3864f, 0x0, - 0xbf79cebd00ee61be, 0x0, - 0x3fdf57722976daab, 0x0, - 0x3fe57be3d9291e21, 0x0, - 0x3fdb2ef76db18f87, 0x0, - 0xbfb438cdf04fa1c5, 0x0, - 0xbfdd712c27149114, 0x0, - 0xbfe5d8f547b9c838, 0x0, - 0xbfe09886d404ac49, 0x0, - 0x3fa7a2b261b39d1f, 0x0, - 0x3fd6b106179aa530, 0x0, - 0x3fe4ff44a4236382, 0x0, - 0x3fe01e6d344fc7a1, 0x0, - 0x3faf92bdcdadada4, 0x0, - 0xbfe205f8ae39092c, 0x0, - 0xbfe4781347ae7899, 0x0, - 0xbfe04239d33c17d9, 0x0, - 0xbfa8af17090db73a, 0x0, - 0x3fe1f677604136cd, 0x0, - 0x3fe5e9510a1d7184, 0x0, - 0x3fe13b8a639ce3c6, 0x0, - 0xbf80cfe2fdb29094, 0x0, - 0xbfdb84fa4be88a6d, 0x0, - 0xbfe95a475fdc3751, 0x0, - 0xbfe086d1d79d49aa, 0x0, - 0xbfa83d99547374c5, 0x0, - 0x3fe0922ba4cd77c3, 0x0, - 0x3fe5a9ca2b95eb3a, 0x0, - 0x3fdf3c135be533df, 0x0, - 0x3fb2f47663b5d80a, 0x0, - 0xbfe02fdadac23753, 0x0, - 0xbfe775f6b511f0ad, 0x0, - 0xbfddbbccb781ec64, 0x0, - 0x3f8db0d63303952a, 0x0, - 0x3fdbd2454d2fe5c6, 0x0, - 0x3fe5b568fcdbbbcb, 0x0, - 0x3fe3816e7b699fe2, 0x0, - 0xbfa3258e4456b1ce, 0x0, - 0xbfe0a8a55f68da3b, 0x0, - 0xbfe6c2959c4994aa, 0x0, - 0xbfe0159a86f59575, 0x0, - 0xbfa2e91112d26b6d, 0x0, - 0x3fddd7d8980478ea, 0x0, - 0x3fe4f70467a8e134, 0x0, - 0x3fe0a462a585a12f, 0x0, - 0xbf97151fa78a35cd, 0x0, - 0xbfdf0e2c4e1af151, 0x0, - 0xbfe5a3bd4167d478, 0x0, - 0xbfe15a95306079b4, 0x0, - 0xbf52a98b56ce0dc0, 0x0, - 0x3fe285a31e49af99, 0x0, - 0x3fe6d48171bcbf15, 0x0, - 0x3fe0ddc0b3420bae, 0x0, - 0xbfa0f74c8342d532, 0x0, - 0xbfddc68cc0c950a1, 0x0, - 0xbfe5b0517bbedb88, 0x0, - 0xbfda5d959e70d698, 0x0, - 0x3fc1067cc5a313d0, 0x0, - 0x3fdf8ec63436565e, 0x0, - 0x3fe5b139543d68c9, 0x0, - 0x3fe201e24eaa10f4, 0x0, - 0x3f79dc07558a6ea2, 0x0, - 0xbfdfc430d7e27c69, 0x0, - 0xbfe3f61c8fd3d54b, 0x0, - 0xbfda24138a11c80f, 0x0, - 0x3f9043ecbdeaa692, 0x0, - 0x3fddfea32a8e4ce5, 0x0, - 0x3fe5e8690b94e6f1, 0x0, - 0x3fdbebe6d2d51856, 0x0, - 0xbfa5e5be8b8a3b4a, 0x0, - 0xbfdecbbe5059d7b6, 0x0, - 0xbfe452a18bf4501d, 0x0, - 0xbfe1608a4e34888b, 0x0, - 0x3f69ab7e9b79ef88, 0x0, - 0x3fe0e433a025ed2c, 0x0, - 0x3fe71aa81d87b1ff, 0x0, - 0x3fe12e1b75684717, 0x0, - 0x3f9a7a67077a0987, 0x0, - 0xbfdef1e26b998a6b, 0x0, - 0xbfe4da8a84161645, 0x0, - 0xbfe08e0ad94fd0c9, 0x0, - 0xbfa6777c1b9a4c25, 0x0, - 0x3fe1a31bd58d4964, 0x0, - 0x3fe9cfdef6e67509, 0x0, - 0x3fe1ff40912f5942, 0x0, - 0x3fabb4eaa300ce67, 0x0, - 0xbfde27d6971b9514, 0x0, - 0xbfe62bfb0375521d, 0x0, - 0xbfdf52b1ae61ff7b, 0x0, - 0x3f6f7e8e9897d6aa, 0x0, - 0x3fdc86f32a4886ba, 0x0, - 0x3fe7957eaedd6f92, 0x0, - 0x3fdba3af1bfc1987, 0x0, - 0xbfac681c272af1e8, 0x0, - 0xbfdc6d13c6e4117e, 0x0, - 0xbfe6c38d204f0d57, 0x0, - 0xbfe2a7fb48c93301, 0x0, - 0x3f7d6bb02b9af27d, 0x0, - 0x3fdef2ee2192cd19, 0x0, - 0x3fe6b804594cb672, 0x0, - 0x3fe1a220de95a00d, 0x0, - 0x3fa92db041f805ec, 0x0, - 0xbfe0ad257f734730, 0x0, - 0xbfe83af4a030f61a, 0x0, - 0xbfdec6aa3bb979ff, 0x0, - 0x3f8d1fd6dac676c3, 0x0, - 0x3fdc5a3274622873, 0x0, - 0x3fe6007a450b3aa9, 0x0, - 0x3fdf4c7f9b98efca, 0x0, - 0x3fb44d19a0ff4145, 0x0, - 0xbfe020f314c8f65a, 0x0, - 0xbfe5b7dd2e1026e2, 0x0, - 0xbfe130b08efda231, 0x0, - 0x3fa0f3c771572567, 0x0, - 0x3fddf5a6f4d564ae, 0x0, - 0x3fe4e64eab7b3ea3, 0x0, - 0x3fdc471cc4a3f333, 0x0, - 0x3f807c4bb9878b85, 0x0, - 0xbfe18cc11ac9e5be, 0x0, - 0xbfe87c274134b0a3, 0x0, - 0xbfdfb3d447577f9c, 0x0, - 0x3fa5108afa0d47c3, 0x0, - 0x3fe34e1cf0bd473a, 0x0, - 0x3fe6a67d08b41dad, 0x0, - 0x3fdd6e596bd4baca, 0x0, - 0xbf93d9aa34b37f41, 0x0, - 0xbfe22289afa5f555, 0x0, - 0xbfe56e5f2823501d, 0x0, - 0xbfe0dd6dac396fc6, 0x0, - 0xbf8d7f61908c2c04, 0x0, - 0x3fda83f3ae60f923, 0x0, - 0x3fe5ce2833b7040e, 0x0, - 0x3fdc02ee5ae53d71, 0x0, - 0xbfa6720e0fcf8101, 0x0, - 0xbfde93a26bc1854a, 0x0, - 0xbfe547a25ffd8c42, 0x0, - 0xbfe197375b2eb3f7, 0x0, - 0xbfa481213bb31b8f, 0x0, - 0x3fe19d3e2c055892, 0x0, - 0x3fe6de191538f42c, 0x0, - 0x3fdead243812447e, 0x0, - 0xbfa3249cade6c2f4, 0x0, - 0xbfe01059aa4e45b6, 0x0, - 0xbfe4e4c9ed751ef9, 0x0, - 0xbfe0b7de94853bd4, 0x0, - 0xbfa48ecb0972af8b, 0x0, - 0x3fe260aa5dc528b8, 0x0, - 0x3fe92867e9c8c306, 0x0, - 0x3fdf10e7cfd4e211, 0x0, - 0x3f956bfbc9867860, 0x0, - 0xbfe0881b4c089067, 0x0, - 0xbfe6d06eecca2f78, 0x0, - 0xbfddfb732b8392cc, 0x0, - 0x3f92a44f527ba825, 0x0, - 0x3fdb8afd51787e8a, 0x0, - 0x3fe5fc815fb399ed, 0x0, - 0x3fdf8a973e538504, 0x0, - 0x3f9de2b1ce5e5c27, 0x0, - 0xbfe12ea071f9acda, 0x0, - 0xbfe7a2390f3bcbaa, 0x0, - 0xbfe0c04d20e1d1be, 0x0, - 0xbf7ccd4e43410e0f, 0x0, - 0x3fe03e6f6fab544c, 0x0, - 0x3fe60a4053aeda3c, 0x0, - 0x3fe01207aab8c0df, 0x0, - 0x3fa3e62d6470bce2, 0x0, - 0xbfe1951e1bf5d4fa, 0x0, - 0xbfe6944c3243115a, 0x0, - 0xbfe18d9b4ff2764a, 0x0, - 0xbfb0bd3f48174832, 0x0, - 0x3fe0aa751e35059d, 0x0, - 0x3fe8ae928454360f, 0x0, - 0x3fd9865825f11b08, 0x0, - 0x3fa35010c717fafe, 0x0, - 0xbfdf0c58d96e919c, 0x0, - 0xbfe46bc0ab7c80ce, 0x0, - 0xbfe1ca401587c958, 0x0, - 0xbf970c46e347ce15, 0x0, - 0x3fdd1dfe538eb734, 0x0, - 0x3fe60f9cb1afcfa7, 0x0, - 0x3fdeb8ee9674849f, 0x0, - 0x3f9d72caf7c2ba60, 0x0, - 0xbfe12946fdf39655, 0x0, - 0xbfe7cc549fc0f0f9, 0x0, - 0xbfe257c66b999f05, 0x0, - 0xbfb19a36cf14c7de, 0x0, - 0x3fe29f860655a303, 0x0, - 0x3fe6bdae3da43b2a, 0x0, - 0x3fe0eea50c00fca4, 0x0, - 0x3f771c80bdb0d725, 0x0, - 0xbfe0f1d47f829e57, 0x0, - 0xbfe69dbc78855245, 0x0, - 0xbfdcf17655938c15, 0x0, - 0x3f981cb8959b6f8a, 0x0, - 0x3fdd0b9a07ab14b4, 0x0, - 0x3fe5970461d1f201, 0x0, - 0x3fdaa1c54e782e13, 0x0, - 0xbf9fd285a2fcb416, 0x0, - 0xbfe10b0f02ec1b92, 0x0, - 0xbfe7b171d81968e4, 0x0, - 0xbfdebb057c23e827, 0x0, - 0x3fa5558aaa7660da, 0x0, - 0x3fe1acfd2a7d4812, 0x0, - 0x3fe4aa5a47fee8fd, 0x0, - 0x3fdaf78961cf7afe, 0x0, - 0x3fb0c88cd18879a2, 0x0, - 0xbfe189282094098a, 0x0, - 0xbfe8e6055f7d5b29, 0x0, - 0xbfe28f1f9ed4f9fa, 0x0, - 0xbf80259d6d6b41b1, 0x0, - 0x3fe0ddb7994ba59b, 0x0, - 0x3fe3df401c4f8998, 0x0, - 0x3fdbe557933e5ae9, 0x0, - 0x3f6bb46f7d06841f, 0x0, - 0xbfde69c44331de25, 0x0, - 0xbfe8792a34a9a4d0, 0x0, - 0xbfe24a5f2b7de792, 0x0, - 0xbf920ade5da052e9, 0x0, - 0x3fdc968748332d84, 0x0, - 0x3fe3c6438b2e1f86, 0x0, - 0x3fe12799febda964, 0x0, - 0xbf9213641ff872cc, 0x0, - 0xbfe13b0d654f6895, 0x0, - 0xbfe65aa721d555a0, 0x0, - 0xbfe35faa1770a754, 0x0, - 0x3fa729ba837e4f3f, 0x0, - 0x3fddbca153f17404, 0x0, - 0x3fe3e5add7f9a6eb, 0x0, - 0x3fdce602b903ecb4, 0x0, - 0xbfbbce311b65f2ae, 0x0, - 0xbfe00e74ed6f39e5, 0x0, - 0xbfe667ebe7674819, 0x0, - 0xbfdb338726352383, 0x0, - 0x3fabf4ba84142a7c, 0x0, - 0x3fdf67c6f7a609d3, 0x0, - 0x3fe6c855dc8c59ca, 0x0, - 0x3fde52444808d7be, 0x0, - 0x3f84b375960e60a4, 0x0, - 0xbfde1f5d8eee4bf9, 0x0, - 0xbfe65ed0929a5f4a, 0x0, - 0xbfe14d89e145298e, 0x0, - 0x3f61144bdedd8ac9, 0x0, - 0x3fe080ffc239d72c, 0x0, - 0x3fe76afdcf9a333b, 0x0, - 0x3fdc4c179032ed89, 0x0, - 0xbf88c7d7d4c46d04, 0x0, - 0xbfde4778bced8879, 0x0, - 0xbfe79553fcb91ffc, 0x0, - 0xbfdbec85ce1f94c2, 0x0, - 0xbf92a1f9fe9f8a45, 0x0, - 0x3fdf7229dd045f72, 0x0, - 0x3fe82a21a19c0713, 0x0, - 0x3fe09a615d4159b3, 0x0, - 0xbfab74199e3346b5, 0x0, - 0xbfd879e5dd9c0a76, 0x0, - 0xbfe58910846ea1f4, 0x0, - 0xbfdcb6ab3b0fe8fe, 0x0, - 0xbf7840f187d380d5, 0x0, - 0x3fddf6eae2340539, 0x0, - 0x3fe74f8bbf6e30cf, 0x0, - 0x3fe53022ea945b75, 0x0, - 0x3fb5716ac3932495, 0x0, - 0xbfdf9b3ce25c2e5f, 0x0, - 0xbfe51e9f6b9ab79d, 0x0, - 0xbfdf679aac511e6a, 0x0, - 0xbfa3123f6e314b64, 0x0, - 0x3fdf7792060000d8, 0x0, - 0x3fe661e9f358827d, 0x0, - 0x3fe1ac8ba9f558cc, 0x0, - 0xbf9d91a93b7cb5b3, 0x0, - 0xbfe07307048f0bac, 0x0, - 0xbfe4a338a9b28ad3, 0x0, - 0xbfdd3520c2dc5bd2, 0x0, - 0xbfa147ff83599e8d, 0x0, - 0x3fe119bc3022875b, 0x0, - 0x3fe72fa0a50fc284, 0x0, - 0x3fdd577c0a913cc9, 0x0, - 0xbfa4065aca038c27, 0x0, - 0xbfe34a95b41621c8, 0x0, - 0xbfe3bcddf822ebb0, 0x0, - 0xbfdc44610f805f55, 0x0, - 0xbf89f39eaa48c46d, 0x0, - 0x3fe10ec469348037, 0x0, - 0x3fe7dd4ea9731cfe, 0x0, - 0x3fde35cc2e17ba9a, 0x0, - 0x3fbaa4c9f358f243, 0x0, - 0xbfe0ea8f6a184e8b, 0x0, - 0xbfe7037379bb30ed, 0x0, - 0xbfdf573ffaa18ac4, 0x0, - 0xbf968b522c925bca, 0x0, - 0x3fdebddeb9c94a5e, 0x0, - 0x3fe775b213238685, 0x0, - 0x3fdf40c387c0bb65, 0x0, - 0xbf59dd447f66d08c, 0x0, - 0xbfda62d1913bb11d, 0x0, - 0xbfe5707aad94ce68, 0x0, - 0xbfd64139c6434f28, 0x0, - 0xbfa3824773e9fe04, 0x0, - 0x3fdf65e8c86816c5, 0x0, - 0x3fe4199991e6acb4, 0x0, - 0x3fda7e7821959386, 0x0, - 0x3f802d70e302796b, 0x0, - 0xbfdcdb838e18136c, 0x0, - 0xbfe43cb069526420, 0x0, - 0xbfdedbfc417d56bd, 0x0, - 0xbfa76310fab420e0, 0x0, - 0x3fdd02baba588df8, 0x0, - 0x3fe2a6f01f075de4, 0x0, - 0x3fdde2e2d8d2f003, 0x0, - 0xbfba719028e111f0, 0x0, - 0xbfdf78b519ae002a, 0x0, - 0xbfe4d0751e6e617b, 0x0, - 0xbfe1148486cb96f4, 0x0, - 0xbfa47b54e92327ef, 0x0, - 0x3fde284ea56a41cf, 0x0, - 0x3fe593821101aae3, 0x0, - 0x3fe2257dfda7e4b5, 0x0, - 0xbfb09fae04f18682, 0x0, - 0xbfdf337e5747f814, 0x0, - 0xbfe6cb87c3d685b4, 0x0, - 0xbfddc4bdf9aedaf5, 0x0, - 0x3f94a28b005e8a00, 0x0, - 0x3fd929f0c01edc89, 0x0, - 0x3fe585550081243b, 0x0, - 0x3fe1c8cc88ec8010, 0x0, - 0x3f9af223ef38cbe0, 0x0, - 0xbfe092c115285830, 0x0, - 0xbfe714103fcfdee3, 0x0, - 0xbfdea871b2bc6c47, 0x0, - 0xbfb366430ebef1a5, 0x0, - 0x3fe044f71c97226f, 0x0, - 0x3fe5bcc1a59f6fd1, 0x0, - 0x3fdbb0feca6e80c6, 0x0, - 0xbf7e12b728c5f658, 0x0, - 0xbfdd894c9f9ce159, 0x0, - 0xbfe6bf1af85846a7, 0x0, - 0xbfe0fa1ef8a7683c, 0x0, - 0x3fa0fb8274595b93, 0x0, - 0x3fe0e555f9f17c91, 0x0, - 0x3fe7fdb5f69c8399, 0x0, - 0x3fe231519b05eaba, 0x0, - 0xbfb59ca376011d7c, 0x0, - 0xbfe23ada0455212a, 0x0, - 0xbfe64a49bfaade23, 0x0, - 0xbfde692e9d6e36cf, 0x0, - 0xbf7fed87796921e3, 0x0, - 0x3fe0ff3bb184f714, 0x0, - 0x3fe8c352bcfe072c, 0x0, - 0x3fdd952828609bbc, 0x0, - 0x3fa2dd7cb4527e80, 0x0, - 0xbfe17d106bc7823a, 0x0, - 0xbfe456bfc49ce79d, 0x0, - 0xbfdae6cd6d4618c9, 0x0, - 0x3fb456727678f45d, 0x0, - 0x3fd704c3c2a8ac3e, 0x0, - 0x3fe6bf57c45cb0f3, 0x0, - 0x3fdef5ead501c00c, 0x0, - 0x3fb68de3e146a58a, 0x0, - 0xbfe111c740c6653a, 0x0, - 0xbfe801e265695377, 0x0, - 0xbfdee6a8381f51ee, 0x0, - 0xbfc018e8cca08c5a, 0x0, - 0x3fdc8f457b3dd718, 0x0, - 0x3fe6dd3f06949282, 0x0, - 0x3fe11405b7dd6630, 0x0, - 0xbfaad5cf08daea2c, 0x0, - 0xbfe0540f803f2016, 0x0, - 0xbfe54c1c4d466ca1, 0x0, - 0xbfdff69c42fd523d, 0x0, - 0x3fb159bf1018b927, 0x0, - 0x3fd9c48313651254, 0x0, - 0x3fe6af1d708d38ed, 0x0, - 0x3fe168d1e70d2253, 0x0, - 0xbf4e62a2c83bc8f4, 0x0, - 0xbfdbf36c5fe1923d, 0x0, - 0xbfe63048bb9c1ba6, 0x0, - 0xbfe1dc88d06cd46f, 0x0, - 0x3f92e10e01c158fe, 0x0, - 0x3fdead9c874283c6, 0x0, - 0x3fe4c02642eb5bc6, 0x0, - 0x3fe14c97b0ddfe8d, 0x0, - 0x3f60b08755c9a279, 0x0, - 0xbfe05a3ef9e76fd5, 0x0, - 0xbfe481f01ace015f, 0x0, - 0xbfde2b5be59070f1, 0x0, - 0x3f849e49561e9079, 0x0, - 0x3fd8ee8fc2129358, 0x0, - 0x3fe802c01cd1db75, 0x0, - 0x3fdeeb7dfd320864, 0x0, - 0xbf507c72dc5ba5ec, 0x0, - 0xbfe01bef8ecc4e05, 0x0, - 0xbfe4da34ed91d454, 0x0, - 0xbfdda4cfc9d2e5d1, 0x0, - 0x3f85943d7bc4b017, 0x0, - 0x3fdca9296ebc0505, 0x0, - 0x3fe71f24d97ec2f6, 0x0, - 0x3fe2f978b663ddff, 0x0, - 0xbf8cdfe3372fe5e9, 0x0, - 0xbfdf45c6957ed226, 0x0, - 0xbfe5d9aff0c5b6ec, 0x0, - 0xbfdd3630ddf86ff4, 0x0, - 0x3f9ac05a3f606c2e, 0x0, - 0x3fe19bfda8a5b3bf, 0x0, - 0x3fe8c060f6bd4a7a, 0x0, - 0x3fdc0886b343f724, 0x0, - 0xbfaa0ec409065ede, 0x0, - 0xbfdfcc9148f18343, 0x0, - 0xbfe8e058118bf56c, 0x0, - 0xbfe0d2ac149153fe, 0x0, - 0x3fac300738e729e6, 0x0, - 0x3fe06c9a9c8cf0d3, 0x0, - 0x3fe4eaaec8cf2772, 0x0, - 0x3fdefcb931276e65, 0x0, - 0xbf82e30a4678b5ab, 0x0, - 0xbfdb49518ac0439e, 0x0, - 0xbfe80b806d56ac13, 0x0, - 0xbfdec653516919b4, 0x0, - 0xbf88cfc011163d8d, 0x0, - 0x3fdea561899fe951, 0x0, - 0x3fe31e96deada192, 0x0, - 0x3fe02d0b0061f565, 0x0, - 0x3f7f2d8d2864d04a, 0x0, - 0xbfdd306fdf43391c, 0x0, - 0xbfe4349c5044adce, 0x0, - 0xbfd84bc0315582f0, 0x0, - 0x3f87c1d2a08feed0, 0x0, - 0x3fe0b4e32bcf720b, 0x0, - 0x3fe4037bb14387e3, 0x0, - 0x3fdceba6b23f7f1d, 0x0, - 0x3fa1b9f05ecb8585, 0x0, - 0xbfe0d5582aaaf723, 0x0, - 0xbfe4f786c184663a, 0x0, - 0xbfdbc8be2aafc501, 0x0, - 0x3fa26dadd8cfe846, 0x0, - 0x3fe0bbbe17d76095, 0x0, - 0x3fe74767d206aab9, 0x0, - 0x3fdb9c5cae4da2b5, 0x0, - 0xbf50f9ffce94ab1b, 0x0, - 0xbfe0b07c00538512, 0x0, - 0xbfe5f348273204c7, 0x0, - 0xbfdea270bd054363, 0x0, - 0x3fa89414e0f8722f, 0x0, - 0x3fe10362c83900fa, 0x0, - 0x3fe422ee06dc81d2, 0x0, - 0x3fdd80d9af6fc0e0, 0x0, - 0xbfa3a27d12e013f8, 0x0, - 0xbfdf69c74164ba07, 0x0, - 0xbfe54d7028e9b7a2, 0x0, - 0xbfe1159685b9b91c, 0x0, - 0x3f8554faf3dd99f1, 0x0, - 0x3fde0f08eab7e595, 0x0, - 0x3fe650f483251c46, 0x0, - 0x3fd898bcdf587455, 0x0, - 0x3fae83cbf8f3b131, 0x0, - 0xbfdc21a8f88fa584, 0x0, - 0xbfe6147950ce60cc, 0x0, - 0xbfe086db2930e602, 0x0, - 0xbf9c235765eb8387, 0x0, - 0x3fdbd9e8798382a9, 0x0, - 0x3fe5de841cb05895, 0x0, - 0x3fde9ad82d6fff53, 0x0, - 0xbf8b3f37c6d2d727, 0x0, - 0xbfe1e63e0e2ec0ec, 0x0, - 0xbfe617f0b43bac2a, 0x0, - 0xbfe006c90e35753c, 0x0, - 0xbfa65b6b8f2cf8ca, 0x0, - 0x3fdbf6fdefcb129d, 0x0, - 0x3fe6bd3747571edd, 0x0, - 0x3fdecd1c03eb79c9, 0x0, - 0x3fb27c55bdd7f7e0, 0x0, - 0xbfdcced5dc863d23, 0x0, - 0xbfe6ed649c5311be, 0x0, - 0xbfdde1b1f61cbefe, 0x0, - 0x3f9634e0654e7927, 0x0, - 0x3fe2ee39424985d5, 0x0, - 0x3fe5641ceac7b5ca, 0x0, - 0x3fe174eee40eb367, 0x0, - 0x3f68988269a72c71, 0x0, - 0xbfddae650d96ce2a, 0x0, - 0xbfe77856bbc530e3, 0x0, - 0xbfe09f2aba4695eb, 0x0, - 0x3f8de402399ac501, 0x0, - 0x3fdf611aefb6da34, 0x0, - 0x3fe73321ce1017d9, 0x0, - 0x3fe1939688c13847, 0x0, - 0x3fc0e79efb5691aa, 0x0, - 0xbfdfe31d2c3264ce, 0x0, - 0xbfe5526423b85dca, 0x0, - 0xbfdd4e4a8dcb82eb, 0x0, - 0x3f957fd516e0cc68, 0x0, - 0x3fe099e961bd2835, 0x0, - 0x3fea447d17d482c8, 0x0, - 0x3fdf7bacd331e19a, 0x0, - 0x3f77a070803ef951, 0x0, - 0xbfe041c0cb4c4667, 0x0, - 0xbfe4c51794343e46, 0x0, - 0xbfe0384c8bf18da9, 0x0, - 0x3fa45ce3a73a1eeb, 0x0, - 0x3fe00418a0b89f71, 0x0, - 0x3fe44b9d9eac53a7, 0x0, - 0x3fddcc8771a9e6a0, 0x0, - 0xbfab9ae1c6bf5c72, 0x0, - 0xbfdf95cae6d47e17, 0x0, - 0xbfe36bdad9629565, 0x0, - 0xbfdf4e599dea10ee, 0x0, - 0x3fb4b72975f6d5d0, 0x0, - 0x3fe039ab9faa9330, 0x0, - 0x3fe5e55bb44483d0, 0x0, - 0x3fdbf045aa008be5, 0x0, - 0xbf70d75f2466b4aa, 0x0, - 0xbfdc5e28bf4cbded, 0x0, - 0xbfe4a8cdab45714d, 0x0, - 0xbfdf908c302eab91, 0x0, - 0xbfa27578241ab5db, 0x0, - 0x3fe1811bb2f04be8, 0x0, - 0x3fe64ca654b579e4, 0x0, - 0x3fe043435b396cc6, 0x0, - 0x3f810c8658688d77, 0x0, - 0xbfdd6ea80ed73eb2, 0x0, - 0xbfe49b230b49e167, 0x0, - 0xbfde4bafaa990224, 0x0, - 0xbfae003d2561d6e7, 0x0, - 0x3fde7e2537de349a, 0x0, - 0x3fe5710c38ba6720, 0x0, - 0x3fe4844f91135ad9, 0x0, - 0xbf7334f3d2b03a64, 0x0, - 0xbfe0d382c0830681, 0x0, - 0xbfe6e49498c70cb0, 0x0, - 0xbfe0b15dbec7389d, 0x0, - 0x3f97896a54694f99, 0x0, - 0x3fdd7b009690fa27, 0x0, - 0x3fe74b3ef69ae6bf, 0x0, - 0x3fe0134ff9d779d4, 0x0, - 0xbfab0b7362e91b5f, 0x0, - 0xbfdc02426416d0bc, 0x0, - 0xbfe6bc5d7a47e037, 0x0, - 0xbfdf472f95faa78b, 0x0, - 0xbfb0ce442af852a7, 0x0, - 0x3fddec4636736a5a, 0x0, - 0x3fe6fd7a236940d8, 0x0, - 0x3fde700daf1c33ce, 0x0, - 0xbfa4e03f531fbcff, 0x0, - 0xbfdc546bce521014, 0x0, - 0xbfe75f876bdd6919, 0x0, - 0xbfe2da2b7268157f, 0x0, - 0xbf96401faac210b3, 0x0, - 0x3fe0e457442c893d, 0x0, - 0x3fe40e9751a47ee8, 0x0, - 0x3fdf6ddcb8201ecc, 0x0, - 0x3fae515ebbe5da50, 0x0, - 0xbfddb4492e423515, 0x0, - 0xbfe48b6e961ba73e, 0x0, - 0xbfe0c7800240ae21, 0x0, - 0x3fbbc68972976549, 0x0, - 0x3fe050bd8a678378, 0x0, - 0x3fe6b559ce7dcdf8, 0x0, - 0x3fe06726baa70b14, 0x0, - 0x3f909508c64ca1cf, 0x0, - 0xbfe01d76c8b25e52, 0x0, - 0xbfe715333939639f, 0x0, - 0xbfddfe585025a2ff, 0x0, - 0xbfb4b5207bb21097, 0x0, - 0x3fe03ee206c6d38c, 0x0, - 0x3fe41387675a9140, 0x0, - 0x3fdeb306d8235c1b, 0x0, - 0xbf5dbb5074ce6e1f, 0x0, - 0xbfded16d5277b482, 0x0, - 0xbfe609858aef1ba7, 0x0, - 0xbfe16d01449bfdc2, 0x0, - 0xbfa1b89e729baba9, 0x0, - 0x3fe10c4ffb267efb, 0x0, - 0x3fe59ed366f1eea4, 0x0, - 0x3fdcbc83bf151de9, 0x0, - 0xbfadc4827127cfff, 0x0, - 0xbfdc3e5dcbdf532b, 0x0, - 0xbfe71d6aae03f721, 0x0, - 0xbfdf75a5f9122812, 0x0, - 0xbfa9de338638d3b1, 0x0, - 0x3fdece7fc924afa0, 0x0, - 0x3fe6a06c8f3cf444, 0x0, - 0x3fddfef7d898d346, 0x0, - 0x3fad929a2bbdbccc, 0x0, - 0xbfe08ad4f84638f7, 0x0, - 0xbfe555c73d97ed04, 0x0, - 0xbfe18f43de09f990, 0x0, - 0xbfa6a5384215a5af, 0x0, - 0x3fdfa9c39ace162c, 0x0, - 0x3fe52f79b2e5f675, 0x0, - 0x3fe1b6b3ea11c9ac, 0x0, - 0x3fac161b8a0d7f1a, 0x0, - 0xbfe014c8e48e6d09, 0x0, - 0xbfe57532c45e283e, 0x0, - 0xbfe307f82779e218, 0x0, - 0x3f8edaa8fbc5c104, 0x0, - 0x3fe065100b4c45cb, 0x0, - 0x3fe345d00d0b6d31, 0x0, - 0x3fdf373ac39ceffe, 0x0, - 0x3fa73a9fb6f9f049, 0x0, - 0xbfe0830649d15ce7, 0x0, - 0xbfe86d1add34b012, 0x0, - 0xbfe271f5ba0fec12, 0x0, - 0xbfb77587dd703888, 0x0, - 0x3fe19e6e09a07fcc, 0x0, - 0x3fe88ae4c747e398, 0x0, - 0x3fe164b6cfb70aa0, 0x0, - 0x3f901628afb39163, 0x0, - 0xbfdf13676bdc516d, 0x0, - 0xbfe528182a0fb6e1, 0x0, - 0xbfe21ec918f8317f, 0x0, - 0xbf9e2039e5e879c1, 0x0, - 0x3fdf36a7aea65d71, 0x0, - 0x3fe692e67d802f24, 0x0, - 0x3fdf573af484df24, 0x0, - 0xbfa412f0dc72c609, 0x0, - 0xbfe076d2722838b1, 0x0, - 0xbfe6b0d9ca75f576, 0x0, - 0xbfdeac7903d2150d, 0x0, - 0x3f87a0fb8ad4ca2a, 0x0, - 0x3fe175345761eb25, 0x0, - 0x3fe541e3ae5ff16e, 0x0, - 0x3fe0c124296001ed, 0x0, - 0xbf6e21e83e7b39a5, 0x0, - 0xbfe1518abd7e8e66, 0x0, - 0xbfe61e20e8577f6d, 0x0, - 0xbfdf5f1228816a52, 0x0, - 0x3fa4326589aeb63c, 0x0, - 0x3fe09bf2cf3c668a, 0x0, - 0x3fe78979f5903393, 0x0, - 0x3fdffd195ba47156, 0x0, - 0xbf8f7210d626d390, 0x0, - 0xbfdf2f03ad8f5897, 0x0, - 0xbfe782b4688012dc, 0x0, - 0xbfdd9d26e57ec552, 0x0, - 0xbfa66a2057d8ac93, 0x0, - 0x3fe0bd92771e4269, 0x0, - 0x3fe3abbdaf57460f, 0x0, - 0x3fe1d989373dab17, 0x0, - 0xbfa32de2679fb4a4, 0x0, - 0xbfde6fcb26eda819, 0x0, - 0xbfe31de951b52396, 0x0, - 0xbfe0597fa579dfeb, 0x0, - 0xbfaa6cc8129902ab, 0x0, - 0x3fdec7ffaa7329f4, 0x0, - 0x3fe701971064dd10, 0x0, - 0x3fe0d9fd152ccb25, 0x0, - 0x3fb79e0149eb74c6, 0x0, - 0xbfd8479d61952bdb, 0x0, - 0xbfe524d3f75e87d4, 0x0, - 0xbfde42ef675fa0d6, 0x0, - 0x3f6154f418f21245, 0x0, - 0x3fe172049dcd139e, 0x0, - 0x3fe5bce823f34999, 0x0, - 0x3fddf5f6c8e6fcba, 0x0, - 0xbf920cc2979e3f05, 0x0, - 0xbfdd237b1e33eddd, 0x0, - 0xbfe50859eb789517, 0x0, - 0xbfe1b93bc8502969, 0x0, - 0xbfa4e10b176806c6, 0x0, - 0x3fe01918513010bc, 0x0, - 0x3fe6278696f0b2ec, 0x0, - 0x3fe00a59c41823f9, 0x0, - 0x3fb5755385211182, 0x0, - 0xbfdf8a84d901407f, 0x0, - 0xbfe5ba49c7e66a2a, 0x0, - 0xbfe0c7b4034dac1e, 0x0, - 0x3f51b0e28cb52abf, 0x0, - 0x3fe33b1621c516e0, 0x0, - 0x3fe56fcfe7c8be02, 0x0, - 0x3fde892d36c6117d, 0x0, - 0x3fb0c2206d662be4, 0x0, - 0xbfe088722b172245, 0x0, - 0xbfe6c0fbdad327f9, 0x0, - 0xbfe0e82bbbc5d95d, 0x0, - 0xbf8fa94b166e1294, 0x0, - 0x3fe069add8341fc0, 0x0, - 0x3fe4494765d5c3a6, 0x0, - 0x3fdc2dbfd9818c1d, 0x0, - 0xbfb42e5adcf61994, 0x0, - 0xbfde40bed8c93b0f, 0x0, - 0xbfe64e8abd1dea86, 0x0, - 0xbfda881dd4ed74b9, 0x0, - 0x3fba9edc52b9c875, 0x0, - 0x3fdffcf100410341, 0x0, - 0x3fe8164c82b94d60, 0x0, - 0x3fdbf883816e66ef, 0x0, - 0xbf7902d9fdebb77e, 0x0, - 0xbfddd7f3f3cfbaee, 0x0, - 0xbfe5d584d560f1a5, 0x0, - 0xbfdd3e0fb7fc1e47, 0x0, - 0x3f72cd5618ef7d4d, 0x0, - 0x3fdd93fa0fbf6930, 0x0, - 0x3fe46af28151517c, 0x0, - 0x3fe0680b65d5ad5d, 0x0, - 0x3f96e38bd2aca2a5, 0x0, - 0xbfe268fe3f4fd51e, 0x0, - 0xbfe4a34162c9ba6b, 0x0, - 0xbfdc44495d4df47c, 0x0, - 0xbfae3e830ecf2f63, 0x0, - 0x3fded16ad0ac2461, 0x0, - 0x3fe599c13f56a416, 0x0, - 0x3fdec8a99d304cf5, 0x0, - 0x3fb6a9ffe61c2d0f, 0x0, - 0xbfe26713c4094e8c, 0x0, - 0xbfe50152a3ed00a3, 0x0, - 0xbfde2c38aec41df4, 0x0, - 0xbfbd50b78d9aef3f, 0x0, - 0x3fdd6691ab2a2427, 0x0, - 0x3fe481f99b2ae528, 0x0, - 0x3fde9686c513ed25, 0x0, - 0x3f9c090dde509a7c, 0x0, - 0xbfe272c4c9124766, 0x0, - 0xbfe691dd4df13b7a, 0x0, - 0xbfe2c1dcd8b962b5, 0x0, - 0xbfb3b8dd5ac2fc59, 0x0, - 0x3fe1d0b7eefbff6a, 0x0, - 0x3fe69abf0afaca5f, 0x0, - 0x3fe0d0d83bdd0043, 0x0, - 0x3fb1c9b59ebf053f, 0x0, - 0xbfdc59af584bc4de, 0x0, - 0xbfe6fce840e147cb, 0x0, - 0xbfdd027800308b88, 0x0, - 0xbfa6ffca695d02c5, 0x0, - 0x3fdac152c64890bc, 0x0, - 0x3fe6f3ec4f57b9ad, 0x0, - 0x3fe0f5b66c348cfb, 0x0, - 0x3f97634cb6f5bb90, 0x0, - 0xbfe05f716e085511, 0x0, - 0xbfe6b871d845c792, 0x0, - 0xbfe310ffcae7326a, 0x0, - 0x3f95f8eb037ec103, 0x0, - 0x3fe0514387649ce8, 0x0, - 0x3fe6ab55c7a0765d, 0x0, - 0x3fd74b378faa9b6c, 0x0, - 0xbfb02f8b15a4ce79, 0x0, - 0xbfdbe72eb0a70301, 0x0, - 0xbfe726b92e361790, 0x0, - 0xbfe0cb442c91c487, 0x0, - 0xbfbf0430597724e8, 0x0, - 0x3fe09777785c9f6f, 0x0, - 0x3fe82d14205f12df, 0x0, - 0x3fdef546a4e623ff, 0x0, - 0xbfb9ff006f7ddddf, 0x0, - 0xbfdb1e5c34fcedf7, 0x0, - 0xbfe1c7016f8b45f3, 0x0, - 0xbfe075a9b3623836, 0x0, - 0x3faa00684d09e920, 0x0, - 0x3fe017ed58f3595b, 0x0, - 0x3fe756a91470e5d2, 0x0, - 0x3fdf361229a60c5d, 0x0, - 0xbfac9ce16168172e, 0x0, - 0xbfddcdddab495cf8, 0x0, - 0xbfe774de3488e352, 0x0, - 0xbfdfe24b7b5af1c6, 0x0, - 0xbf9ed15b7213656a, 0x0, - 0x3fe03194be37234a, 0x0, - 0x3fe7bfbaab58b562, 0x0, - 0x3fe1a427eddd5fbf, 0x0, - 0x3fa1c93bf0aadba5, 0x0, - 0xbfe0def60f903fc4, 0x0, - 0xbfe98f63836354fe, 0x0, - 0xbfdee854271663a9, 0x0, - 0xbf90cddf4c2c7f54, 0x0, - 0x3fe05188c3d3f32d, 0x0, - 0x3fe5567a67e2958e, 0x0, - 0x3fdf28a957fac5a4, 0x0, - 0xbfabedfa1568f2a4, 0x0, - 0xbfe294a36d2334e9, 0x0, - 0xbfe3787b524bcee7, 0x0, - 0xbfe0fea86780f3b0, 0x0, - 0x3fb628a26bac07bc, 0x0, - 0x3fde54d569d43e11, 0x0, - 0x3fe3ea695ddbb048, 0x0, - 0x3fe094ccba139eb9, 0x0, - 0x3fa63829a4dca7ab, 0x0, - 0xbfe288656efe8f81, 0x0, - 0xbfe55ffe9452192c, 0x0, - 0xbfe025604627106c, 0x0, - 0x3f9dba7af3a593d2, 0x0, - 0x3fe0cb85dd66ed81, 0x0, - 0x3fe3ce88b4a6d12c, 0x0, - 0x3fe230e387790bfa, 0x0, - 0x3fa11e6e819e1740, 0x0, - 0xbfe0e425f89c5519, 0x0, - 0xbfe4b1de87c2fdb2, 0x0, - 0xbfdc9848aeb6fced, 0x0, - 0x3fa3f19901de750c, 0x0, - 0x3fdba388f517b33a, 0x0, - 0x3fe36b6ae8272dc9, 0x0, - 0x3fe2270ca63e785e, 0x0, - 0xbf95284bc4e0a9e9, 0x0, - 0xbfdccb33ee97afec, 0x0, - 0xbfe86001e0618877, 0x0, - 0xbfdfcce349382103, 0x0, - 0x3f90b6624aea4d7f, 0x0, - 0x3fdf05d81a37342c, 0x0, - 0x3fe2bea708f9211b, 0x0, - 0x3fe16e74a09d00ff, 0x0, - 0xbf7c7e1878907fa0, 0x0, - 0xbfe051d950c060a4, 0x0, - 0xbfe72153b2168fdd, 0x0, - 0xbfe075d2bc182cb8, 0x0, - 0xbf9abebde7c017a2, 0x0, - 0x3fdcb184849114f6, 0x0, - 0x3fe50cd57387b209, 0x0, - 0x3fe05d660c9a0d7f, 0x0, - 0xbfa18b79a7e1fa5d, 0x0, - 0xbfdabcdc6e7a914a, 0x0, - 0xbfe6f03428b94ca5, 0x0, - 0xbfdfb6b9763a6f3b, 0x0, - 0x3f8668d516319cad, 0x0, - 0x3fdefdf862bdb8f1, 0x0, - 0x3fe4836ee5e2918f, 0x0, - 0x3fe24e40fc538c50, 0x0, - 0x3fa84308da570c0f, 0x0, - 0xbfe1f7af4b50f07d, 0x0, - 0xbfe709806eabf9fe, 0x0, - 0xbfdd4352e1d2ecaa, 0x0, - 0x3fa062f2ec1b85be, 0x0, - 0x3fe0adbca31c1117, 0x0, - 0x3fe560fbd7c2b481, 0x0, - 0x3fe0867dea0969df, 0x0, - 0x3f9d4c5fe44e951c, 0x0, - 0xbfe0a0f59a04bd62, 0x0, - 0xbfe75add66ecfeba, 0x0, - 0xbfddba09bcbce1c0, 0x0, - 0x3fabf2ea2e5c0926, 0x0, - 0x3fe27150163b82b4, 0x0, - 0x3fe6557b59acfcaa, 0x0, - 0x3fe2bd653f47ac5e, 0x0, - 0x3fbeb761e21127fc, 0x0, - 0xbfe18bdd13a20157, 0x0, - 0xbfe8148359670d09, 0x0, - 0xbfe05c91d4cc1dc6, 0x0, - 0x3f92fe3061d58547, 0x0, - 0x3fe2bcdc6f36dd9a, 0x0, - 0x3fe6f1901c722bb8, 0x0, - 0x3fdcf1ff67e163a3, 0x0, - 0xbfa507ac61d0a147, 0x0, - 0xbfe12861818e8509, 0x0, - 0xbfe496035604bb50, 0x0, - 0xbfe06dc1a93a4260, 0x0, - 0x3fa6f7bcd0c0afba, 0x0, - 0x3fe09048650ffbef, 0x0, - 0x3fe531d5dce6aed2, 0x0, - 0x3fe35f95392d8802, 0x0, - 0xbfa3a0fe924e7385, 0x0, - 0xbfe06f99dd9b2f7d, 0x0, - 0xbfe6cdba36c3b4b6, 0x0, - 0xbfdde5b6b87b7fdc, 0x0, - 0xbf8bab4af8a01693, 0x0, - 0x3fe37340689e13e2, 0x0, - 0x3fe7530257b2aa42, 0x0, - 0x3fde0326f35d10d6, 0x0, - 0x3fa3a5498373c5ab, 0x0, - 0xbfdd846d87487b2e, 0x0, - 0xbfea0fa607090084, 0x0, - 0xbfdc816238086fca, 0x0, - 0x3fb60b1fb95a1931, 0x0, - 0x3fe0f7d138da3e6f, 0x0, - 0x3fe664e2f66339ac, 0x0, - 0x3fde575b97da2586, 0x0, - 0xbfb145e3bfaa3099, 0x0, - 0xbfdf0cda0fe35bb7, 0x0, - 0xbfe7a10d4fbd8865, 0x0, - 0xbfdf327d3c1671d5, 0x0, - 0x3fbbd2767c83e381, 0x0, - 0x3fdc5e2c8513f135, 0x0, - 0x3fe7cd1877250970, 0x0, - 0x3fdbf65a91c174f4, 0x0, - 0x3f907d44bdae82c4, 0x0, - 0xbfda2b8d61c1acef, 0x0, - 0xbfe69754744db2b3, 0x0, - 0xbfde0ebaf65e6dd9, 0x0, - 0x3fb0f3701bb5cd80, 0x0, - 0x3fe1bd232933c8c5, 0x0, - 0x3fe6305ded9e958b, 0x0, - 0x3fdd2e7d9d0a934f, 0x0, - 0xbf962e817ec0b6ea, 0x0, - 0xbfde549789355941, 0x0, - 0xbfe63c52c9dcd574, 0x0, - 0xbfddcdfbff4837ca, 0x0, - 0x3f848b612013ec5b, 0x0, - 0x3fdd5428851ca0fd, 0x0, - 0x3fe7450a097ca1c5, 0x0, - 0x3fdec89b93652b07, 0x0, - 0x3f75f8056a177977, 0x0, - 0xbfde3efcc58184e0, 0x0, - 0xbfe6540a8e3ff74e, 0x0, - 0xbfdb8fdcafe3887e, 0x0, - 0x3f91931c0012a7f9, 0x0, - 0x3fe0c3cc5a7a1639, 0x0, - 0x3fe5eb958339dbe9, 0x0, - 0x3fe08ca7f894d64b, 0x0, - 0x3fa1269ca524d73b, 0x0, - 0xbfe0a2a5eaafb6c5, 0x0, - 0xbfe3e7dc9a186586, 0x0, - 0xbfe17327f3d5f894, 0x0, - 0xbf9b71e92f2ced52, 0x0, - 0x3fe031a6f740252e, 0x0, - 0x3fe71288b8e2e775, 0x0, - 0x3fddf773a9adda22, 0x0, - 0xbf9a085598e1b765, 0x0, - 0xbfe19bc3ec6660c3, 0x0, - 0xbfe69a9bebaf98d9, 0x0, - 0xbfdf675095206e77, 0x0, - 0x3fb2e4a4bc1925f6, 0x0, - 0x3fe216fbfafa7355, 0x0, - 0x3fe620f1cf34cffe, 0x0, - 0x3fdd23ff94e35bd0, 0x0, - 0x3f883e4b99a6c24e, 0x0, - 0xbfe18be607b98d17, 0x0, - 0xbfe466eab672b57f, 0x0, - 0xbfde3f0974db48c6, 0x0, - 0xbfb9d4a4dd8e99d9, 0x0, - 0x3fdd98c0baa29ca1, 0x0, - 0x3fe6aebbd0633f6a, 0x0, - 0x3fe03ae5399d648f, 0x0, - 0xbfa2db108bd2ec7b, 0x0, - 0xbfda234324e9f0f3, 0x0, - 0xbfe6aa440aa2b8ba, 0x0, - 0xbfdbccb10170bc68, 0x0, - 0x3f8e0008c0122a60, 0x0, - 0x3fe04d8b0a8ed6b9, 0x0, - 0x3fe62f878add0928, 0x0, - 0x3fdd93b3782aa7af, 0x0, - 0xbf7977d26f167534, 0x0, - 0xbfde5b9039d3bce1, 0x0, - 0xbfe634f38f4ef1a1, 0x0, - 0xbfe0fbafdbcec1e4, 0x0, - 0xbfb56f30ec074f5b, 0x0, - 0x3fdd759c5037e42e, 0x0, - 0x3fe93decaae9a649, 0x0, - 0x3fdd984e48989804, 0x0, - 0x3fabb60d082beba1, 0x0, - 0xbfe143f10112762b, 0x0, - 0xbfe4ea23520a706d, 0x0, - 0xbfddb02da69ae1d5, 0x0, - 0xbf986a7054ec0ac6, 0x0, - 0x3fda83622f711c2d, 0x0, - 0x3fe8f5433f2788e6, 0x0, - 0x3fe15c8b99a607ad, 0x0, - 0xbfa1a60a97894d96, 0x0, - 0xbfdfe946a564f35b, 0x0, - 0xbfe4bb460818c814, 0x0, - 0xbfe01b6bd1f1d772, 0x0, - 0xbfb33e24de929c3f, 0x0, - 0x3fdb4dc16b7742eb, 0x0, - 0x3fe6752ee8a72a98, 0x0, - 0x3fdbccfc1dcee6fa, 0x0, - 0x3fb6bb1d2afcbb28, 0x0, - 0xbfe0770f9ca336c1, 0x0, - 0xbfe572509423bad3, 0x0, - 0xbfe1f6d736b1bc27, 0x0, - 0x3fb1e1b88e30010a, 0x0, - 0x3fdf6bc70bffd780, 0x0, - 0x3fe54b39e724d5bd, 0x0, - 0x3fde080ba54ee111, 0x0, - 0xbf51b98166acd81e, 0x0, - 0xbfdd2b2b1176e990, 0x0, - 0xbfe54549feae13a4, 0x0, - 0xbfe0237171286717, 0x0, - 0xbfbe40f1bb903804, 0x0, - 0x3fe0ad21b922ca06, 0x0, - 0x3fe5e5fae976061b, 0x0, - 0x3fdbd16fca6b6238, 0x0, - 0x3fad594b103dd722, 0x0, - 0xbfdac23a659e0f27, 0x0, - 0xbfe41a6f1c28aba6, 0x0, - 0xbfe048117072bae9, 0x0, - 0xbfa95382971e278e, 0x0, - 0x3fdf617577b39231, 0x0, - 0x3fe6b174a62f9f58, 0x0, - 0x3fe04595e97d8fa2, 0x0, - 0x3f9aff4294dd7b1f, 0x0, - 0xbfdffc436dd20785, 0x0, - 0xbfe5ac7f10003c4c, 0x0, - 0xbfe20cf601955210, 0x0, - 0xbf9f954ab5ae7dcc, 0x0, - 0x3fde00ff9020b2f5, 0x0, - 0x3fe71182e95d659b, 0x0, - 0x3fdffe65665fe7b7, 0x0, - 0xbfc170a74772eb10, 0x0, - 0xbfe0e43f740ff4d7, 0x0, - 0xbfe3754917d1cc21, 0x0, - 0xbfe3ca2d0e5bb299, 0x0, - 0x3fbb203b6036de2c, 0x0, - 0x3fdb1630e8f4fe12, 0x0, - 0x3fe5cfe4e99ad102, 0x0, - 0x3fe06af741e74ed6, 0x0, - 0xbfa90a93fd0d8d1d, 0x0, - 0xbfdc82beef87c482, 0x0, - 0xbfe5a686b70c0bc4, 0x0, - 0xbfdf3ac58036e57e, 0x0, - 0x3fc02f90d31911d9, 0x0, - 0x3fe046db64d84d2e, 0x0, - 0x3fe673b178fae8be, 0x0, - 0x3fdef8fb6d9736d0, 0x0, - 0xbf9eb0bf395b8a92, 0x0, - 0xbfdf5ea6c8c74192, 0x0, - 0xbfe666716f4f8447, 0x0, - 0xbfddf2adbdd1551e, 0x0, - 0x3fa4b9e063793a9b, 0x0, - 0x3fe041565bd9e26c, 0x0, - 0x3fe7cf94beeefd36, 0x0, - 0x3fded7ee86cd6508, 0x0, - 0x3fa832a26c006b40, 0x0, - 0xbfe1e96686279685, 0x0, - 0xbfe5960ff3f76c2a, 0x0, - 0xbfe04e9eb7803240, 0x0, - 0x3f8d48ac7717afb3, 0x0, - 0x3fde11a1e0cafe2c, 0x0, - 0x3fe3eec274111a7b, 0x0, - 0x3fe02b97121762e9, 0x0, - 0x3f59a48da3a1e5eb, 0x0, - 0xbfdf0c9984f54559, 0x0, - 0xbfe72613b9dc6466, 0x0, - 0xbfd83a1b49aa3894, 0x0, - 0xbf9f7be23b008604, 0x0, - 0x3fdc15ce530e968f, 0x0, - 0x3fe4f10117f20626, 0x0, - 0x3fdbc3b71bc6cc2a, 0x0, - 0x3fb324b7e9f8a633, 0x0, - 0xbfe034ae70e65459, 0x0, - 0xbfe6d4bdf09273c7, 0x0, - 0xbfe124216d96c397, 0x0, - 0x3f968f957d63ac1b, 0x0, - 0x3fdfd86e1c62ec9c, 0x0, - 0x3fe78d94a9184f75, 0x0, - 0x3fe2d7a90f7782b2, 0x0, - 0x3f86a447581b509d, 0x0, - 0xbfe1963b2b2e504b, 0x0, - 0xbfe7b599e4ebe1b9, 0x0, - 0xbfde8d08a75852d0, 0x0, - 0xbfb07ebf46cd3743, 0x0, - 0x3fdf651117d3f4d2, 0x0, - 0x3fe5d1ccac84acaa, 0x0, - 0x3fdc4117410f74ef, 0x0, - 0x3f70651543fbb362, 0x0, - 0xbfe10a26032c1ea4, 0x0, - 0xbfe803ba7a14d320, 0x0, - 0xbfdd9434dcbccf71, 0x0, - 0xbf89df25a79f4a01, 0x0, - 0x3fdbf0bc8836900a, 0x0, - 0x3fe6baef4e118d53, 0x0, - 0x3fe0de6ae9fae812, 0x0, - 0x3f8e7dcc32973bf8, 0x0, - 0xbfde4ad355ddb689, 0x0, - 0xbfe4874ac6f5b996, 0x0, - 0xbfda9c7c8611ec4b, 0x0, - 0xbf8ce2c5ee81512e, 0x0, - 0x3fdc848f1cbfffee, 0x0, - 0x3fe88d43bf382ad0, 0x0, - 0x3fde7fe4c51f0572, 0x0, - 0x3f99041a09b7d26e, 0x0, - 0xbfe13b226cba06c5, 0x0, - 0xbfe80fffcab3c82c, 0x0, - 0xbfdeb7542ff761d7, 0x0 + 0x3f9293c3bc4b8c87, 0x0, + 0x3fdf60408ef845cb, 0x0, + 0x3fe711ff982eeca9, 0x0, + 0x3fdc2a576d1cd230, 0x0, + 0x3f9a1543bfc4ac73, 0x0, + 0xbfda9e81b4d5dd57, 0x0, + 0xbfe63eae54244380, 0x0, + 0xbfde4434117cad97, 0x0, + 0x3fadca676969057e, 0x0, + 0x3fe025b22e2d2fcd, 0x0, + 0x3fe5ea4f49392ace, 0x0, + 0x3fddb30c806865a0, 0x0, + 0xbf88e5a499aae6dc, 0x0, + 0xbfe11d87e096b239, 0x0, + 0xbfe76946e4d0683f, 0x0, + 0xbfdc935422d4d8c1, 0x0, + 0xbf31e141b5982d44, 0x0, + 0x3fde99b3d4fa66a7, 0x0, + 0x3fe551b294bb149a, 0x0, + 0x3fe086e50c5396b5, 0x0, + 0xbfa8fcc182053306, 0x0, + 0xbfd9a2cbf3c4bfa8, 0x0, + 0xbfe4ca0881babfc9, 0x0, + 0xbfe0eacb77e1b379, 0x0, + 0xbf9345badf8483c0, 0x0, + 0x3fe06d8a62e07f4e, 0x0, + 0x3fe57cf7afca057d, 0x0, + 0x3fe1f40481a72729, 0x0, + 0x3f628ae6d87d8c21, 0x0, + 0xbfe12d26f9acb7d3, 0x0, + 0xbfe609a5a38aab22, 0x0, + 0xbfe2c734ef8770b2, 0x0, + 0x3f905af7100a35ab, 0x0, + 0x3fe003ebb3314935, 0x0, + 0x3fe675693c6c1ec8, 0x0, + 0x3fdf8a80930d68d9, 0x0, + 0x3fb7ddfcac5f3418, 0x0, + 0xbfe026f39f1161f2, 0x0, + 0xbfe77b5198a3694c, 0x0, + 0xbfe0a250d1f6cdaf, 0x0, + 0xbfa7559f4bfa92f8, 0x0, + 0x3fe06c898780ac8b, 0x0, + 0x3fe43fbeb3ceeba2, 0x0, + 0x3fe0e18c39771e3f, 0x0, + 0xbfaa6edd56bb0982, 0x0, + 0xbfde78cc4b717966, 0x0, + 0xbfe6abbeec0ba159, 0x0, + 0xbfdc05000777d167, 0x0, + 0x3f912294f2b697d7, 0x0, + 0x3fe372ca2a0daec8, 0x0, + 0x3fe7e42df94de0f9, 0x0, + 0x3fdbd009cd398dfc, 0x0, + 0x3f9ec9d59d0a9238, 0x0, + 0xbfe0a03042e9c8d2, 0x0, + 0xbfe763981d610ad3, 0x0, + 0xbfdf9c605ecf4110, 0x0, + 0xbfb7297a97c6ebfd, 0x0, + 0x3fe0e951fcb982fd, 0x0, + 0x3fe4ce69c358dd48, 0x0, + 0x3fe339108b967034, 0x0, + 0x3fb73c4cc0a06e5e, 0x0, + 0xbfdfa7e4339def78, 0x0, + 0xbfe66dc2d1c0f272, 0x0, + 0xbfdaa86018f7c4b8, 0x0, + 0xbf85250a2659b505, 0x0, + 0x3fe0dde804919088, 0x0, + 0x3fe50c70300242f1, 0x0, + 0x3fe1c18a7a6f13ea, 0x0, + 0xbfabd6b2cf38e594, 0x0, + 0xbfdbf5cbb8defecc, 0x0, + 0xbfe4ad0f439a544b, 0x0, + 0xbfe295867fe79c4e, 0x0, + 0x3fa6a5a17397f3e2, 0x0, + 0x3fdaac443098212a, 0x0, + 0x3fe681223ba16020, 0x0, + 0x3fdc7901c354c9b8, 0x0, + 0xbfc0ab605feb9a13, 0x0, + 0xbfdef3a0d28f4332, 0x0, + 0xbfe6ef59fef444a2, 0x0, + 0xbfddbc17dfa997bc, 0x0, + 0xbf9dcfe5518df0c3, 0x0, + 0x3fdce79d50a6665c, 0x0, + 0x3fe67ba8a0319890, 0x0, + 0x3fd98079a2f38f60, 0x0, + 0x3facb7a03533fc92, 0x0, + 0xbfde53ddaa2555db, 0x0, + 0xbfe4dc8fbc8a4b67, 0x0, + 0xbfde47dbf3512ebf, 0x0, + 0x3fa2be38a15051f6, 0x0, + 0x3fdebaf5844bc138, 0x0, + 0x3fe7baf764bd2d42, 0x0, + 0x3fe04e2cb366d6b6, 0x0, + 0x3fb57cf18f32cf79, 0x0, + 0xbfe1f13bfe02c408, 0x0, + 0xbfe54e3ae2645319, 0x0, + 0xbfdf3b48373f4d3f, 0x0, + 0x3f842c79cd1f1681, 0x0, + 0x3fddbf499d8bd286, 0x0, + 0x3fe7f77f90dc0f1f, 0x0, + 0x3fd85a861840e98b, 0x0, + 0xbfa4631f63c98c12, 0x0, + 0xbfdf338f07945286, 0x0, + 0xbfe5fb9a924553ae, 0x0, + 0xbfe20946898aaa4f, 0x0, + 0x3fb4cb50ebb4cd52, 0x0, + 0x3fe0c92dcdb468ba, 0x0, + 0x3fe48e5d499f5b72, 0x0, + 0x3fe13ed51d4f1bf5, 0x0, + 0x3fa23b4795d8ab17, 0x0, + 0xbfdd7acdbc3dcbe0, 0x0, + 0xbfe6aaa1b28c714d, 0x0, + 0xbfdc7263ee9da9fb, 0x0, + 0xbf89c0a2c17823aa, 0x0, + 0x3fe18fcaa6b54537, 0x0, + 0x3fe643106eb1d04d, 0x0, + 0x3fe2dbdf11c0ba3c, 0x0, + 0x3f8fb2aef463e845, 0x0, + 0xbfde3a1f2067cd66, 0x0, + 0xbfe83b580f34490f, 0x0, + 0xbfdddf4704b0be77, 0x0, + 0xbf93680b7737349f, 0x0, + 0x3fddfb05dc77de58, 0x0, + 0x3fe9857378afe60d, 0x0, + 0x3fdfc57646e03267, 0x0, + 0x3f42b7b9d7f24f2a, 0x0, + 0xbfe0db2086e78433, 0x0, + 0xbfe720b25403c76e, 0x0, + 0xbfdfd49db75bdd8a, 0x0, + 0xbf8539d45fd2453c, 0x0, + 0x3fddb8e974502eca, 0x0, + 0x3fe5657ad35cb7ba, 0x0, + 0x3fe1cbc11d253f3d, 0x0, + 0x3f9613e9c95d848c, 0x0, + 0xbfdcd367ae56133b, 0x0, + 0xbfe81054784e2caf, 0x0, + 0xbfde15235e151c2e, 0x0, + 0xbfc504658abaa544, 0x0, + 0x3fdebf593128d3b8, 0x0, + 0x3fe847ee276c37ee, 0x0, + 0x3fe0792ef3009f65, 0x0, + 0x3fa67a3af7397a24, 0x0, + 0xbfe32271ce00633b, 0x0, + 0xbfe7f68aff740092, 0x0, + 0xbfe2065bc89de7fc, 0x0, + 0xbfa3ae46dd8b6702, 0x0, + 0x3fd95df454ba1b68, 0x0, + 0x3fe4983c7b0513b5, 0x0, + 0x3fe10c0d78c2f765, 0x0, + 0x3f98fedeffedda89, 0x0, + 0xbfe17240c196a476, 0x0, + 0xbfe58754b47d6086, 0x0, + 0xbfdcf3ba56aa56f8, 0x0, + 0xbf7425c017ff32a3, 0x0, + 0x3fe2087e6b92c92b, 0x0, + 0x3fe61b4c5dc1d637, 0x0, + 0x3fe0ebbd7000bb71, 0x0, + 0xbfa296c592bf8880, 0x0, + 0xbfdc2d4201f3ef64, 0x0, + 0xbfe6923ade1b1466, 0x0, + 0xbfe1003d6e279ec8, 0x0, + 0xbf9c6faecd343ec1, 0x0, + 0x3fd82fd6c45f773d, 0x0, + 0x3fe51fa8d76ad41a, 0x0, + 0x3fdaff2ff5e87f90, 0x0, + 0x3fb449116061575e, 0x0, + 0xbfdd16cfb8959dc3, 0x0, + 0xbfe3f21fa835def0, 0x0, + 0xbfe2105ca3acadbb, 0x0, + 0xbfb20792eb90b712, 0x0, + 0x3fdee180d3b8ee58, 0x0, + 0x3fe57f65c65d8591, 0x0, + 0x3fdd6b41ea6076eb, 0x0, + 0xbf9a6cd838604aaf, 0x0, + 0xbfe249cf55c766c5, 0x0, + 0xbfe4e5213ee13038, 0x0, + 0xbfdfdbcf4c29c3b9, 0x0, + 0xbf9084d853662cb0, 0x0, + 0x3fdae3cfa5894eca, 0x0, + 0x3fe65b9cfdd92c7d, 0x0, + 0x3fdcdc5aa3ea8d13, 0x0, + 0x3fbecbd280f27b4f, 0x0, + 0xbfe059cd79f14602, 0x0, + 0xbfe5a09e2e27e686, 0x0, + 0xbfdf2bb417e4782f, 0x0, + 0xbf85cac994ae5eae, 0x0, + 0x3fde0fa2f7982cbc, 0x0, + 0x3fe62db6b1db634e, 0x0, + 0x3fe16eb008dcc6e2, 0x0, + 0xbf738bd1e3dea36c, 0x0, + 0xbfe1883bccc259d6, 0x0, + 0xbfe29e5df5974c41, 0x0, + 0xbfe19db103b2192f, 0x0, + 0xbfaaeb6859dca7ce, 0x0, + 0x3fe1f9fca699e283, 0x0, + 0x3fe3dd65076116c2, 0x0, + 0x3fe04b4957822ed4, 0x0, + 0xbf8034fbc1cfa5ec, 0x0, + 0xbfdfbe9d4fbb0560, 0x0, + 0xbfe3c6a03b011fa6, 0x0, + 0xbfe243f5a9ed7d27, 0x0, + 0xbfab0cc931eb8777, 0x0, + 0x3fe1501653e82bdf, 0x0, + 0x3fe61415c80e7978, 0x0, + 0x3fdd84f00e3c1e54, 0x0, + 0x3fbbffb99f42b535, 0x0, + 0xbfe06df9599550ef, 0x0, + 0xbfe633afe8825eef, 0x0, + 0xbfe0875aa6957d6b, 0x0, + 0xbf984dc0b344b169, 0x0, + 0x3fd986eb9a4fc630, 0x0, + 0x3fe59e89228f074a, 0x0, + 0x3fdcccfba392c0c2, 0x0, + 0x3fa9020905303efd, 0x0, + 0xbfe0fe85ec540a07, 0x0, + 0xbfe88289782aa3e2, 0x0, + 0xbfdc368dd6ac52ef, 0x0, + 0xbf8e318bcfd52c58, 0x0, + 0x3fd8de20b270ced6, 0x0, + 0x3fe753b496787256, 0x0, + 0x3fe27c908444b72e, 0x0, + 0xbf8311e4aa35757b, 0x0, + 0xbfdde4393be32cde, 0x0, + 0xbfe73df3f7aa29f0, 0x0, + 0xbfe1f6f358b26c76, 0x0, + 0xbfb6d0b3ee83a4c3, 0x0, + 0x3fde8f08bcabcee9, 0x0, + 0x3fe5818c2b6435fc, 0x0, + 0x3fe05fbf6ae2e07f, 0x0, + 0x3f90f9e71645e748, 0x0, + 0xbfdd9e2153fceef5, 0x0, + 0xbfe4667df84d53e9, 0x0, + 0xbfdb25be225e3404, 0x0, + 0x3fa71266d976ddc0, 0x0, + 0x3fdb27466a7dd668, 0x0, + 0x3fe32eef981d38c5, 0x0, + 0x3fe28fe719c2ad26, 0x0, + 0x3faa56c18146ef06, 0x0, + 0xbfde66ea3bb043ce, 0x0, + 0xbfe5f55cd64863dc, 0x0, + 0xbfdf6ce1b8b93d6e, 0x0, + 0x3f850800558e0526, 0x0, + 0x3fdce26d6969b7d1, 0x0, + 0x3fe4d7e29dce6786, 0x0, + 0x3fe0fbb49348a0a2, 0x0, + 0xbf641b28e9576e95, 0x0, + 0xbfdea8f6fb18ee97, 0x0, + 0xbfe78db720dc72d3, 0x0, + 0xbfe284f3aa3aa39a, 0x0, + 0xbfaa3629492c641d, 0x0, + 0x3fd763ca3ad58cda, 0x0, + 0x3fe524167d247833, 0x0, + 0x3fe0dff1e4e1d776, 0x0, + 0xbf7dc641b1a9d3b9, 0x0, + 0xbfe052a06a1c4000, 0x0, + 0xbfe80eede26a0ea8, 0x0, + 0xbfdcdb1732a4dca2, 0x0, + 0xbfa3e0f01cb18262, 0x0, + 0x3fdd5ecd9fbd2070, 0x0, + 0x3fe4877bae14d315, 0x0, + 0x3fe1ba50e0c82bfd, 0x0, + 0xbfa5251d25903166, 0x0, + 0xbfe229694f6269ca, 0x0, + 0xbfe7c4367c82c97d, 0x0, + 0xbfe03d8cb106e1fd, 0x0, + 0xbf8fc69fe9acab57, 0x0, + 0x3fdd204e708f4425, 0x0, + 0x3fe3087aac87ac18, 0x0, + 0x3fe12200c3de0a83, 0x0, + 0x3fa0080f07a5b93b, 0x0, + 0xbfde5886f211dd37, 0x0, + 0xbfe7e97b73ecadf6, 0x0, + 0xbfe19e9102c623cb, 0x0, + 0x3f9d866d833072f8, 0x0, + 0x3fde726edd2d5c76, 0x0, + 0x3fe5269af8703548, 0x0, + 0x3fdc23faaf304865, 0x0, + 0xbfb238d23933a2c5, 0x0, + 0xbfe0034ef686b03c, 0x0, + 0xbfe997cd2310b32e, 0x0, + 0xbfdc116cb3d1f3b4, 0x0, + 0x3f8d29a4a8ae0c37, 0x0, + 0x3fdf55259b2e5f76, 0x0, + 0x3fe81f9a986e9b8b, 0x0, + 0x3fe366e790faedb9, 0x0, + 0xbfa4dc26a678fdca, 0x0, + 0xbfdd5e0ab4be40ad, 0x0, + 0xbfe72a672a52188e, 0x0, + 0xbfdcbd69aeb6d197, 0x0, + 0x3fa87161c032b1a0, 0x0, + 0x3fdf36e51362f7e2, 0x0, + 0x3fe854b7731085e4, 0x0, + 0x3fe09ec8981d2fe9, 0x0, + 0xbf99bac612ca604e, 0x0, + 0xbfdf45278d75b17b, 0x0, + 0xbfe79da5c659378f, 0x0, + 0xbfe4b9328eb28570, 0x0, + 0xbf38ede63158b369, 0x0, + 0x3fe1ea4461592904, 0x0, + 0x3fe2f6447f52ec9c, 0x0, + 0x3fddce6b224b9838, 0x0, + 0x3fb2a172153c9e87, 0x0, + 0xbfe036a1b0d12eb2, 0x0, + 0xbfe692eb2c478717, 0x0, + 0xbfdfe7a84259cda1, 0x0, + 0x3fa4572a8bdc9ae5, 0x0, + 0x3fe2567d6bf27267, 0x0, + 0x3fe66f3ced665337, 0x0, + 0x3fe1bb0125e0dc29, 0x0, + 0xbf9bc404e4c9078a, 0x0, + 0xbfdbe8db26961236, 0x0, + 0xbfe4a02fccbd34e5, 0x0, + 0xbfe1a8dc835021b8, 0x0, + 0x3f929c52ca6909cc, 0x0, + 0x3fe0b81d7473d582, 0x0, + 0x3fe81675fe08dc11, 0x0, + 0x3fde90471f657a5c, 0x0, + 0x3fb20c7011365add, 0x0, + 0xbfdd5f0c0600f17d, 0x0, + 0xbfe4a54856b621bc, 0x0, + 0xbfdf322c024976ca, 0x0, + 0xbf760bca80b0e68b, 0x0, + 0x3fdf9a62882a8037, 0x0, + 0x3fe67d087b4ecac1, 0x0, + 0x3fdc06bbf231253c, 0x0, + 0x3f456b825a7f9fbe, 0x0, + 0xbfe0e219616ed1d2, 0x0, + 0xbfe71b668cdc4f3a, 0x0, + 0xbfdcabecf7f6199a, 0x0, + 0xbf92a1b0aa839e96, 0x0, + 0x3fe3da4f4ba9f249, 0x0, + 0x3fe496b16244cb29, 0x0, + 0x3fe0c6dc5e1f50c7, 0x0, + 0xbf979be0b44c3b57, 0x0, + 0xbfde99c0215a374c, 0x0, + 0xbfe762365250db7c, 0x0, + 0xbfe1c17125ba9fd2, 0x0, + 0x3f7ecbf67b50eece, 0x0, + 0x3fde8a4c42af7fa5, 0x0, + 0x3fe50fae01cc7e06, 0x0, + 0x3fde3832f4811c1f, 0x0, + 0xbfb5183bdc5eb52e, 0x0, + 0xbfe3346c4827a7ae, 0x0, + 0xbfe624695bca46ac, 0x0, + 0xbfe179a0cbeafd89, 0x0, + 0x3f9893ff5b8f5fcb, 0x0, + 0x3fd8a878ac4ee8de, 0x0, + 0x3fe7dda0ae90a2f5, 0x0, + 0x3fe11e7397b744d2, 0x0, + 0xbf79b9564b0ac36d, 0x0, + 0xbfdd8af3219ec8ca, 0x0, + 0xbfe7a2a8fc852d6e, 0x0, + 0xbfdf02d4497b4c72, 0x0, + 0x3fa560bb27684ffd, 0x0, + 0x3fde3e001a608984, 0x0, + 0x3fe96eb6168f6f66, 0x0, + 0x3fdd6b8fcb13cfdd, 0x0, + 0x3fabd8ace3dca54b, 0x0, + 0xbfde17bae5413bd6, 0x0, + 0xbfe438665fc6e4ff, 0x0, + 0xbfe116f476eaae82, 0x0, + 0xbfae8156b394e537, 0x0, + 0x3fe1f9011e33b4ae, 0x0, + 0x3fe6b7e7138a78e4, 0x0, + 0x3fdf4f5ae0d52bd1, 0x0, + 0xbf9b35b6f20c4512, 0x0, + 0xbfe195d76b3080c1, 0x0, + 0xbfe6f824b26e9741, 0x0, + 0xbfd855779be6d162, 0x0, + 0xbfbded7b08a481bf, 0x0, + 0x3fd997c8f5fcbbb3, 0x0, + 0x3feaae28994c041c, 0x0, + 0x3fe1b6dfc10dc117, 0x0, + 0x3fb02d8cfb02a645, 0x0, + 0xbfe04fd5f9267ced, 0x0, + 0xbfe5b74e5e1e62e2, 0x0, + 0xbfe19641c7cf06c1, 0x0, + 0x3fb12f03fba67c82, 0x0, + 0x3fdd26a133473e73, 0x0, + 0x3fe6f080de51a13e, 0x0, + 0x3fdd1c7bb867d624, 0x0, + 0xbfb530eba114c7d2, 0x0, + 0xbfdd9789fa922966, 0x0, + 0xbfe74439c192d6e0, 0x0, + 0xbfe045e86778d853, 0x0, + 0xbf8935052e396e9b, 0x0, + 0x3fd629dc4c6d7674, 0x0, + 0x3fe6e91af38f41dc, 0x0, + 0x3fdbbd0896caff82, 0x0, + 0x3fbb4354ce086df3, 0x0, + 0xbfe0ab01a851bbd0, 0x0, + 0xbfe564412b493d20, 0x0, + 0xbfe315c4fde68d2b, 0x0, + 0x3fac36058816588b, 0x0, + 0x3fe051278584f366, 0x0, + 0x3fe578dfa615d028, 0x0, + 0x3fdcd1bf3ebe34d0, 0x0, + 0x3f890c29e93c581f, 0x0, + 0xbfe2a7bcd44fa7fb, 0x0, + 0xbfe848e53bd02a76, 0x0, + 0xbfdb50c7c6eafae1, 0x0, + 0x3fa1752d4d2ec9ac, 0x0, + 0x3fdf27173c7918ea, 0x0, + 0x3fe56bcae5e099d7, 0x0, + 0x3fe016f910ce4f95, 0x0, + 0x3fa4ef877f016c95, 0x0, + 0xbfe006fc2f978c6c, 0x0, + 0xbfe49e543ff14111, 0x0, + 0xbfe0741a7ad67caf, 0x0, + 0x3fbdacbe3d7f07f3, 0x0, + 0x3fe092bb4f19133b, 0x0, + 0x3fe6e5a62e811109, 0x0, + 0x3fe082312c681720, 0x0, + 0x3fadbcc507910eb0, 0x0, + 0xbfde0ddda487800c, 0x0, + 0xbfe75731148d0586, 0x0, + 0xbfe1c08b4d70160a, 0x0, + 0x3f644ac3ac574a0e, 0x0, + 0x3fe150073fcee6af, 0x0, + 0x3fe646b48ec83d5a, 0x0, + 0x3fdc379d7ed16a1b, 0x0, + 0x3f80889b8205348c, 0x0, + 0xbfe1a0249ca1c653, 0x0, + 0xbfe61e53e3842770, 0x0, + 0xbfe01278ca2f55f5, 0x0, + 0xbf7a305464e385a8, 0x0, + 0x3fde34c987ffbc79, 0x0, + 0x3fe7a88c0fb659b9, 0x0, + 0x3fe0ba55b1e9c6d3, 0x0, + 0xbfbb39f32c9dcc42, 0x0, + 0xbfdf96a6a17344e5, 0x0, + 0xbfe53b0f9da444eb, 0x0, + 0xbfdfbfbc11c419ab, 0x0, + 0x3fa7cde8f087ff82, 0x0, + 0x3fdf257fe588ee80, 0x0, + 0x3fe766033418c5c7, 0x0, + 0x3fdc99f92f0f269d, 0x0, + 0x3f8d948fef7a9856, 0x0, + 0xbfe1f10ea347dbb1, 0x0, + 0xbfe40f73512e306e, 0x0, + 0xbfe14a45b96e6e33, 0x0, + 0x3f946cdbf9a7e984, 0x0, + 0x3fdb0b6f1feca23f, 0x0, + 0x3fe39d830586eeb4, 0x0, + 0x3fdb8f1c969d8185, 0x0, + 0x3f8e90cbd57441ae, 0x0, + 0xbfe1ba6d180ddad6, 0x0, + 0xbfe77df37dff3d44, 0x0, + 0xbfe22be4be89dc71, 0x0, + 0x3fa8728ab44806ec, 0x0, + 0x3fe1754361f7ceb5, 0x0, + 0x3fe59d95447e1b37, 0x0, + 0x3fdc7610fff4bc0b, 0x0, + 0x3f79ab2b7b63ec69, 0x0, + 0xbfda6853183eacf0, 0x0, + 0xbfe6dcc4b8c9becd, 0x0, + 0xbfe0d32f4494ccdc, 0x0, + 0xbf6bb3d313270c12, 0x0, + 0x3fdc7376f84b8c78, 0x0, + 0x3fe62000b44597d3, 0x0, + 0x3fdc6a7a89adec25, 0x0, + 0xbfb1b1c64b3547cf, 0x0, + 0xbfe2b3cc6bb74008, 0x0, + 0xbfe656c68f9786dc, 0x0, + 0xbfdb67e274b368fb, 0x0, + 0xbfa88f8df4d8cfcd, 0x0, + 0x3fd7f3474003323a, 0x0, + 0x3fe5809d6900000e, 0x0, + 0x3fdbc6dd94e48036, 0x0, + 0x3faa252eb021ed64, 0x0, + 0xbfdf3fe1989e2c1c, 0x0, + 0xbfe56d04b4ec89e9, 0x0, + 0xbfdf522db33933a4, 0x0, + 0x3fa3ac2716c207f6, 0x0, + 0x3fdf11429aa8f798, 0x0, + 0x3fe60db4e5aef6bc, 0x0, + 0x3fe1145d0632631e, 0x0, + 0x3faeb8b35ba2906e, 0x0, + 0xbfe093320652f368, 0x0, + 0xbfe9ace24aa645b2, 0x0, + 0xbfdace4763a7d020, 0x0, + 0x3fac49172e25f799, 0x0, + 0x3fdb85376253740c, 0x0, + 0x3fe45899c375fbcb, 0x0, + 0x3fe0a50efa9e2325, 0x0, + 0xbfaca2b1fe4ca65b, 0x0, + 0xbfdcd2126518cb2a, 0x0, + 0xbfe68f19e72d4011, 0x0, + 0xbfe11eb88112ddb1, 0x0, + 0xbf813140a52a1d65, 0x0, + 0x3fde0ff461357c47, 0x0, + 0x3fe4d58df0132590, 0x0, + 0x3fe0d9017a2ac652, 0x0, + 0xbf77c63b09b758dd, 0x0, + 0xbfdef883dad062ef, 0x0, + 0xbfe603d9cc77fb70, 0x0, + 0xbfdd87aec25f0fe8, 0x0, + 0xbf96bc18bb0c0e02, 0x0, + 0x3fe2e17e48df87c6, 0x0, + 0x3fe568db432039b1, 0x0, + 0x3fdbbefcc8f856c6, 0x0, + 0x3fba3884b94e1817, 0x0, + 0xbfdeed017c186af2, 0x0, + 0xbfe74c53b5217052, 0x0, + 0xbfdfd469453f8638, 0x0, + 0x3fa5903f0816d5d4, 0x0, + 0x3fe1a2b4c26cbe30, 0x0, + 0x3fe62e050514ae52, 0x0, + 0x3fe1f8c102e19b03, 0x0, + 0x3fa7b8a2a6a22308, 0x0, + 0xbfdc2c7ba3d2fd6d, 0x0, + 0xbfe63c6794f6eec2, 0x0, + 0xbfdc8d1f7946ddd3, 0x0, + 0xbf9a73bd70ac0e98, 0x0, + 0x3fe1a85a36520990, 0x0, + 0x3fe1bdd7804df32c, 0x0, + 0x3fdd7b8ef86dd930, 0x0, + 0xbfa81fa1cad8d4cd, 0x0, + 0xbfe22629d366ff66, 0x0, + 0xbfe72de487b31462, 0x0, + 0xbfe1d8f90738f5dc, 0x0, + 0xbfaa8d9f39bcffd4, 0x0, + 0x3fdbfd1e0f00fdb9, 0x0, + 0x3fe77a6ec58da4d2, 0x0, + 0x3fdd1e94ab272bec, 0x0, + 0xbfb33b28878102c6, 0x0, + 0xbfe0243b527cc0a3, 0x0, + 0xbfe55d51b8fdcdfd, 0x0, + 0xbfe075a56314e546, 0x0, + 0xbfa41b0400f76c21, 0x0, + 0x3fe1cd302acf2d02, 0x0, + 0x3fe4c7ec87149b6e, 0x0, + 0x3fde97fe2e8962f8, 0x0, + 0x3f86ec5f0c29b937, 0x0, + 0xbfd7f858e34076f0, 0x0, + 0xbfe61fffa953409e, 0x0, + 0xbfdf68839b5819fd, 0x0, + 0xbf8595144607783b, 0x0, + 0x3fdaf633ad2c2d29, 0x0, + 0x3fe81418c9910b79, 0x0, + 0x3fdf9eada4ebc61d, 0x0, + 0x3fa17b1aa3de9150, 0x0, + 0xbfe1acf0732e1b6a, 0x0, + 0xbfe704cedc5652f7, 0x0, + 0xbfe1ec7b237177b6, 0x0, + 0xbf954e8136761387, 0x0, + 0x3fddffeb0e6ab84b, 0x0, + 0x3fe40cfcf2c539b0, 0x0, + 0x3fe1b0819753aaa8, 0x0, + 0xbfab192b0f3930b5, 0x0, + 0xbfd723fc12e99b42, 0x0, + 0xbfe841a7c17021c7, 0x0, + 0xbfdf58e771a4ac79, 0x0, + 0xbf95dae312afdae4, 0x0, + 0x3fdc16b9f00a589a, 0x0, + 0x3fe8f8ad0c92a74e, 0x0, + 0x3fe0fca539533313, 0x0, + 0xbf9ab11c783fe068, 0x0, + 0xbfe1628f059a7fd0, 0x0, + 0xbfe7eb43c547f956, 0x0, + 0xbfde7aa69a3ac97a, 0x0, + 0x3f98344f6ccb7c52, 0x0, + 0x3fdcc58d5ba51589, 0x0, + 0x3fe4b620bf49b255, 0x0, + 0x3fde50febcf144a1, 0x0, + 0xbfb0d5cb5f79c517, 0x0, + 0xbfe3a01ae8e9d982, 0x0, + 0xbfe56c36c0eebbac, 0x0, + 0xbfde20b7ae7064a7, 0x0, + 0xbf97509b0d7fbe8e, 0x0, + 0x3fde753c9f26a668, 0x0, + 0x3fe416213d26d329, 0x0, + 0x3fdb465a7d48cb9c, 0x0, + 0x3f76ab7207f3e3cd, 0x0, + 0xbfe3f3cbe9a415bf, 0x0, + 0xbfe470e9fe859001, 0x0, + 0xbfe05b06c552dbfb, 0x0, + 0x3f8783ec50d88aa9, 0x0, + 0x3fe0dd5125ef5d4b, 0x0, + 0x3fe67505ade65061, 0x0, + 0x3fdd1ab494f5729a, 0x0, + 0xbf9087fa9af027cf, 0x0, + 0xbfde689f3898329e, 0x0, + 0xbfe60fc1c674efb7, 0x0, + 0xbfe0ccfe8820ef30, 0x0, + 0x3f6841784d454a8f, 0x0, + 0x3fdf2506f792e4b9, 0x0, + 0x3fe64d4ffe4f8b26, 0x0, + 0x3fdbbe266b4766e7, 0x0, + 0xbfac025e5812b21f, 0x0, + 0xbfe1d7aa5dbdd890, 0x0, + 0xbfe7033933fd29b5, 0x0, + 0xbfe19a6b3725b2c4, 0x0, + 0xbf9e687739c83968, 0x0, + 0x3fdeebe9909182ee, 0x0, + 0x3fe4adef8744fbed, 0x0, + 0x3fe008df43f7ac1e, 0x0, + 0x3fb388857846700d, 0x0, + 0xbfe4ee8d1b1ff12a, 0x0, + 0xbfe8297d1d78df4c, 0x0, + 0xbfdef57c565e92b4, 0x0, + 0xbfa15d0c9f7ecdf6, 0x0, + 0x3fe34660cf0d7d0e, 0x0, + 0x3fea0d76ddf8a404, 0x0, + 0x3fdef335beb8b73d, 0x0, + 0xbf8e5878a3bb1354, 0x0, + 0xbfdca052d22fe898, 0x0, + 0xbfe67c1d2ee60c08, 0x0, + 0xbfd8d2ee6a16b35e, 0x0, + 0x3fb207c12d31a08e, 0x0, + 0x3fe06991ace6e513, 0x0, + 0x3fe5ab5109c3b54f, 0x0, + 0x3fdfde5816150ca3, 0x0, + 0x3f93576109888690, 0x0, + 0xbfdc8368a0b8fcf0, 0x0, + 0xbfe3d2957438a45e, 0x0, + 0xbfe0749f1cea6747, 0x0, + 0x3fb1acf0a3b776eb, 0x0, + 0x3fe0b2d8739247ae, 0x0, + 0x3fe6416442de026d, 0x0, + 0x3fe1a877b8311dbf, 0x0, + 0xbf7bb9b4937eea81, 0x0, + 0xbfe26f87e630a595, 0x0, + 0xbfe6fb4fdacbf43f, 0x0, + 0xbfe2025fe0385188, 0x0, + 0x3fab4f147b7dac23, 0x0, + 0x3fe0ae5c530424f5, 0x0, + 0x3fe5ab51def85834, 0x0, + 0x3fe135ca27856900, 0x0, + 0xbfbdc830a4086922, 0x0, + 0xbfe1774d9e53bc97, 0x0, + 0xbfe6d260cd3dc61a, 0x0, + 0xbfdc7a97e77a6a99, 0x0, + 0x3fa1d8a01626a51f, 0x0, + 0x3fdf3cfb00df6050, 0x0, + 0x3fe6b4a1c977864e, 0x0, + 0x3fd87054002b7a94, 0x0, + 0x3f957bce91612046, 0x0, + 0xbfdc87c4a93dbccc, 0x0, + 0xbfe6ce4cefcd1416, 0x0, + 0xbfe15546dd47c55b, 0x0, + 0x3f660494faba08e9, 0x0, + 0x3fe09ef9285bf0f1, 0x0, + 0x3fe5add6be99cb7d, 0x0, + 0x3fde7c0ee22a85bf, 0x0, + 0xbf8826e1b94af569, 0x0, + 0xbfe1035934eba999, 0x0, + 0xbfe7ba8c9a7d41ef, 0x0, + 0xbfd8d667af75361b, 0x0, + 0xbf8ed201ab43485e, 0x0, + 0x3fded29785e572ff, 0x0, + 0x3fe50f57fbe8b342, 0x0, + 0x3fe28509f45fab1a, 0x0, + 0xbf88265a54b506f6, 0x0, + 0xbfde681ba103e974, 0x0, + 0xbfe9666722ba3e8d, 0x0, + 0xbfdb7b36b89c0d3f, 0x0, + 0xbf99702e165ce8b8, 0x0, + 0x3fe02dc97cf19016, 0x0, + 0x3fe53410b9db05cb, 0x0, + 0x3fdafd72098bd7b8, 0x0, + 0xbfb8d93072d2c881, 0x0, + 0xbfe08c6e34f5c29e, 0x0, + 0xbfe71f03361c9256, 0x0, + 0xbfdb867bf8bcb1f2, 0x0, + 0xbfa2c41e6477eda9, 0x0, + 0x3fe11627ad2d2127, 0x0, + 0x3fe3d958a50976dc, 0x0, + 0x3fdc3a07877ed2f6, 0x0, + 0x3f8c05934cdc720b, 0x0, + 0xbfe04b917d143ab0, 0x0, + 0xbfe81b8c5efb4c17, 0x0, + 0xbfdba592cfd5df59, 0x0, + 0xbf950a85ba696e4f, 0x0, + 0x3fe0f9bfa5bc7b7c, 0x0, + 0x3fe59885bca89c76, 0x0, + 0x3fdf1ab75ac25a37, 0x0, + 0x3f81be68e7ebf2bb, 0x0, + 0xbfe08aa8f18ccebb, 0x0, + 0xbfe519354c78f0a9, 0x0, + 0xbfe0f1a53f51ebe4, 0x0, + 0x3fa6cbef858eeced, 0x0, + 0x3fdd567adbb43ccf, 0x0, + 0x3fe29a459807b4ee, 0x0, + 0x3fdf0a8a425bb75f, 0x0, + 0x3f982277633f2ce6, 0x0, + 0xbfdfdb1b6816f03e, 0x0, + 0xbfe825b7a72177fe, 0x0, + 0xbfe0a24886968cdf, 0x0, + 0xbfaf3e40593f117c, 0x0, + 0x3fdc9141eb4b6e2d, 0x0, + 0x3fe698bf6b0f3152, 0x0, + 0x3fe1f1d3178ead46, 0x0, + 0xbf98c299a4f8e1a3, 0x0, + 0xbfe1c1d816e6ff1d, 0x0, + 0xbfe79ada8e66aadc, 0x0, + 0xbfdf07ec37ecc48f, 0x0, + 0x3fb37c50c867a138, 0x0, + 0x3fdf484abdc17c94, 0x0, + 0x3fe7308896fd12a1, 0x0, + 0x3fe00644620a375a, 0x0, + 0xbf91d5e99c99d184, 0x0, + 0xbfde260ab9230881, 0x0, + 0xbfe6797d28e2a2ec, 0x0, + 0xbfd961e332c4715d, 0x0, + 0x3f514a7032d9f7ba, 0x0, + 0x3fe0cf0baa69d487, 0x0, + 0x3fe4b5dd2b741464, 0x0, + 0x3fdc84c7c27eb8b2, 0x0, + 0xbfbb57cc1af6d386, 0x0, + 0xbfe11f78cc485b19, 0x0, + 0xbfe81eb2f81dcbe6, 0x0, + 0xbfdee010e5fdd7bf, 0x0, + 0xbfb8c26b1089b9b9, 0x0, + 0x3fdde808677e75fa, 0x0, + 0x3fe73b15ba962d4e, 0x0, + 0x3fe30810870589b5, 0x0, + 0xbf8f1a9f2e1bf833, 0x0, + 0xbfdfb8bccd29fd02, 0x0, + 0xbfe65a55c9373a67, 0x0, + 0xbfdd6b320ab3c391, 0x0, + 0xbfa7f39856b086dc, 0x0, + 0x3fdc0788330081ab, 0x0, + 0x3fe6fab95e096e67, 0x0, + 0x3fe042277898a448, 0x0, + 0x3fa6719e3bc73430, 0x0, + 0xbfdcb56d4b28bdb2, 0x0, + 0xbfe688d62c325b48, 0x0, + 0xbfe1fb16853c4af2, 0x0, + 0x3f839e4739607849, 0x0, + 0x3fdad5bcb1646ec8, 0x0, + 0x3fe5c63c390b776a, 0x0, + 0x3fe175bfadce1741, 0x0, + 0xbfaf959adf5802bd, 0x0, + 0xbfe0f1abd3a40dd5, 0x0, + 0xbfe534afb4af1c8b, 0x0, + 0xbfe1407e102b3e47, 0x0, + 0x3fa2aeb2da096e99, 0x0, + 0x3fe029736cd3aec0, 0x0, + 0x3fe7dd88f7fa4ea1, 0x0, + 0x3fdf1a7e37749040, 0x0, + 0x3f836e840d824288, 0x0, + 0xbfe145ea37576593, 0x0, + 0xbfe7f376788abd9b, 0x0, + 0xbfde9350221f0b6b, 0x0, + 0xbf9ba9e77e2d6c73, 0x0, + 0x3fe0297eb123276b, 0x0, + 0x3fe6f22bb6afec74, 0x0, + 0x3fe0097962e51fd0, 0x0, + 0xbf9690b97fd0fe46, 0x0, + 0xbfde68959900b3ee, 0x0, + 0xbfe5d863fd242873, 0x0, + 0xbfdf28090f5b8fd0, 0x0, + 0x3fb772c5347abde9, 0x0, + 0x3fe15117288d7122, 0x0, + 0x3fe60eb536df5d99, 0x0, + 0x3fdf8ed8d250b78f, 0x0, + 0xbf8970f2e6d55109, 0x0, + 0xbfdee482541a1b10, 0x0, + 0xbfe433b5131a9370, 0x0, + 0xbfe095533fcb47b5, 0x0, + 0x3f9e9c8f87dfaa65, 0x0, + 0x3fdfe52451c9cb43, 0x0, + 0x3fe76a0fe23af5c3, 0x0, + 0x3fe0a225a9babd8e, 0x0, + 0x3fa55fc87231b2d3, 0x0, + 0xbfe03ad42532b8ef, 0x0, + 0xbfe9f4eea109b84c, 0x0, + 0xbfdd41a244e4aed5, 0x0, + 0x3fb4b797a1061d94, 0x0, + 0x3fdb581d3fdd2730, 0x0, + 0x3fe6035f09add1f5, 0x0, + 0x3fdf43c87a9c1285, 0x0, + 0xbf7a790482320dca, 0x0, + 0xbfddf3a8d7ac0794, 0x0, + 0xbfe5108a7e273e63, 0x0, + 0xbfe0ccaea5c2a5bb, 0x0, + 0xbf88382354521aca, 0x0, + 0x3fe0e00c8a2ba810, 0x0, + 0x3fe57e785405ab8a, 0x0, + 0x3fdfc1ff5ceb7e19, 0x0, + 0x3fb56a3af69f5be6, 0x0, + 0xbfdfaa2dcc4f60ec, 0x0, + 0xbfe553833dabcbab, 0x0, + 0xbfde73bd9a2f2bce, 0x0, + 0x3f5037e2a244d2a1, 0x0, + 0x3fe03dd71faafa4d, 0x0, + 0x3fe593596f8ca88e, 0x0, + 0x3fd9400946b0d01e, 0x0, + 0xbfa11a257d68ca55, 0x0, + 0xbfe1110ca194901b, 0x0, + 0xbfe834c49336b473, 0x0, + 0xbfde8110bedc5c44, 0x0, + 0xbf8a157bf8763517, 0x0, + 0x3fe1de6cf5e30338, 0x0, + 0x3fe34f678fd3dfca, 0x0, + 0x3fdff1aa69a6cae0, 0x0, + 0x3f5f2595556189cb, 0x0, + 0xbfdc6015429d1e17, 0x0, + 0xbfe73fcb515e27ba, 0x0, + 0xbfe11ea9c18bffe8, 0x0, + 0x3fab709b1b610769, 0x0, + 0x3fdcafde41e7aa5d, 0x0, + 0x3fe5aa57cf20fb27, 0x0, + 0x3fdcf2eba5865784, 0x0, + 0xbfb3de35fbedbb3e, 0x0, + 0xbfdc03038c006cde, 0x0, + 0xbfe46f2a1555a6ff, 0x0, + 0xbfe06dc7cdb63d49, 0x0, + 0xbfa45713937c841c, 0x0, + 0x3fde833d1c4bc126, 0x0, + 0x3fe6440600392dfa, 0x0, + 0x3fe33263ca1c335f, 0x0, + 0x3fb0355661e12654, 0x0, + 0xbfdcdea7f64e5096, 0x0, + 0xbfe30bf801b4062d, 0x0, + 0xbfe204654a0b0a52, 0x0, + 0xbfade7e8fe494811, 0x0, + 0x3fde7f85a39cae44, 0x0, + 0x3fe5a7e46683a630, 0x0, + 0x3fdb31438b8d0675, 0x0, + 0x3f876634795ca053, 0x0, + 0xbfe0bf8479b42684, 0x0, + 0xbfe585307315a5a8, 0x0, + 0xbfdfc2ec6dfa44cd, 0x0, + 0x3f82fc27000a2f67, 0x0, + 0x3fdfe90ef9553fea, 0x0, + 0x3fe7b916bc7ee92e, 0x0, + 0x3fdcf2a8f8be86f9, 0x0, + 0xbf99b862c521947c, 0x0, + 0xbfdf3a5de2625015, 0x0, + 0xbfe6c45c1b4d6227, 0x0, + 0xbfe023690636a3a8, 0x0, + 0xbfac03ed93514af8, 0x0, + 0x3fe0cc3ce1f877c0, 0x0, + 0x3fe5bc304832ab05, 0x0, + 0x3fd9a86d6139f4d6, 0x0, + 0x3fa90c72298fb38d, 0x0, + 0xbfe0838b4c480ccf, 0x0, + 0xbfe71958a1fe36d3, 0x0, + 0xbfe1fec8324835b2, 0x0, + 0xbfb828ece88788d9, 0x0, + 0x3fe05a3096138c49, 0x0, + 0x3fe48d8cb1c3e185, 0x0, + 0x3fe00411a5371711, 0x0, + 0x3fa1aa0912d67645, 0x0, + 0xbfdf02432382dc69, 0x0, + 0xbfe71db666ea8f5c, 0x0, + 0xbfded4f8a7c7c444, 0x0, + 0x3f9c1b19e5a995bf, 0x0, + 0x3fe3127152a8a146, 0x0, + 0x3fe6544e432551dc, 0x0, + 0x3fe17e3118ee858e, 0x0, + 0x3f8769b73a0518e0, 0x0, + 0xbfe0253f3e10b1f5, 0x0, + 0xbfe605ab050aca48, 0x0, + 0xbfe0d9e2813f5da1, 0x0, + 0x3fa11f90969e4478, 0x0, + 0x3fdfafe56be057c0, 0x0, + 0x3fe83bc2980fb4fa, 0x0, + 0x3fdd11817346d23f, 0x0, + 0x3f9a0b3b74e58834, 0x0, + 0xbfe0170fcba257be, 0x0, + 0xbfe9ae3bba01435a, 0x0, + 0xbfe12522eeb70ede, 0x0, + 0x3fbdfbd43bea5e78, 0x0, + 0x3fdd264397302cb4, 0x0, + 0x3fe48e42a0646583, 0x0, + 0x3fda731ea8f30e6d, 0x0, + 0x3fb0366e4bd4caef, 0x0, + 0xbfe0b69f4c3099cd, 0x0, + 0xbfe91f29f11c4748, 0x0, + 0xbfdf38951884f567, 0x0, + 0xbfa606e253a8ad7b, 0x0, + 0x3fddb75dee87bfe1, 0x0, + 0x3fe627221cc4da3f, 0x0, + 0x3fdc1d47510bf787, 0x0, + 0xbf749a1a7bec8a41, 0x0, + 0xbfe28aeab0a090ba, 0x0, + 0xbfe76ce5d06305db, 0x0, + 0xbfe054ddef1b29a9, 0x0, + 0x3f89d24ae90a52c7, 0x0, + 0x3fdf7b9d7903e86f, 0x0, + 0x3fe76bfd38d16649, 0x0, + 0x3fde747bdebb19a7, 0x0, + 0xbf9ba94fc73cc72f, 0x0, + 0xbfe18c35fa8a99fe, 0x0, + 0xbfe4b4d126f8fefa, 0x0, + 0xbfe18d73565d08de, 0x0, + 0xbfc0640f2fed3585, 0x0, + 0x3fe15fa257d25d3a, 0x0, + 0x3fe95fef999067b2, 0x0, + 0x3fdfee47af1a41af, 0x0, + 0xbf8c3b5583b573fe, 0x0, + 0xbfdbb666d0e9ed3c, 0x0, + 0xbfe39fb337638a99, 0x0, + 0xbfe09876f4139046, 0x0, + 0x3fb51a4f4bac318b, 0x0, + 0x3fddec40d323e118, 0x0, + 0x3fe6b0c499b54a4b, 0x0, + 0x3fe1a1d2b930ea83, 0x0, + 0x3faf10f1a3d6a804, 0x0, + 0xbfdea041551b15f5, 0x0, + 0xbfe8a4baa2112dc3, 0x0, + 0xbfdc229993ce2b63, 0x0, + 0x3f4df971ced33ae4, 0x0, + 0x3fe10d0544705d56, 0x0, + 0x3fe809fdc94f52c0, 0x0, + 0x3fe164c729ebdc40, 0x0, + 0xbfb558624274b0f1, 0x0, + 0xbfe0f0567220c847, 0x0, + 0xbfe690e61af8a834, 0x0, + 0xbfe094cba9267f54, 0x0, + 0xbfac3d4ac50c17c3, 0x0, + 0x3fdc190bbf01bedc, 0x0, + 0x3fe7f024fc028743, 0x0, + 0x3fe0837804b0feef, 0x0, + 0xbfa15c105d9b3842, 0x0, + 0xbfe3a4425b58a894, 0x0, + 0xbfe7cf9c2c48e7a0, 0x0, + 0xbfdadcd72f6c2ea2, 0x0, + 0xbfae6e74b4eee63f, 0x0, + 0x3fe0946e830fe009, 0x0, + 0x3fe3174314ec67e4, 0x0, + 0x3fdc0f8fb078ee92, 0x0, + 0xbf8e90de70d5ea8c, 0x0, + 0xbfdd2a12902d0c5a, 0x0, + 0xbfea59da81b6080a, 0x0, + 0xbfdc50e052567814, 0x0, + 0xbf53bed6fc7d009c, 0x0, + 0x3fe0582b55f388a4, 0x0, + 0x3fe3e24145c6a7bf, 0x0, + 0x3fdee7291504bf67, 0x0, + 0xbfb1f960df8b3db6, 0x0, + 0xbfe1d152c9c51f13, 0x0, + 0xbfe308092a1e82f9, 0x0, + 0xbfd9e4dc71602968, 0x0, + 0x3fb6edbd79dd41c9, 0x0, + 0x3fe0483209f7d750, 0x0, + 0x3fe74e5104f08164, 0x0, + 0x3fe0c72647882963, 0x0, + 0xbf7fdd24ff00abe3, 0x0, + 0xbfdc6bb86e362ffc, 0x0, + 0xbfe9bba79c7daa00, 0x0, + 0xbfdc6c69dcb856aa, 0x0, + 0xbfa092c6db425900, 0x0, + 0x3fe2bd5ef54085b7, 0x0, + 0x3fe77c269a238607, 0x0, + 0x3fe11abfa7f8120e, 0x0, + 0xbfb11bd8d44cccbd, 0x0, + 0xbfe1cde56793fcaf, 0x0, + 0xbfe7725b25556673, 0x0, + 0xbfded9d0b9900b8c, 0x0, + 0x3fc246fd157c45e0, 0x0, + 0x3fe056a9a8f44312, 0x0, + 0x3fe58c57968340e4, 0x0, + 0x3fdd63937ab7af5f, 0x0, + 0x3f7f47fb17378366, 0x0, + 0xbfd9598bcaf932b3, 0x0, + 0xbfe8d5b9e393d875, 0x0, + 0xbfe0fda628045e73, 0x0, + 0x3f95024a740c4f2d, 0x0, + 0x3fe1f7e43f9fa698, 0x0, + 0x3fe4b02372ae1484, 0x0, + 0x3fdc6b5d8243ec35, 0x0, + 0xbf9c53c56a2824e6, 0x0, + 0xbfde01dfa09ff8c5, 0x0, + 0xbfe81c08bd9d4fd7, 0x0, + 0xbfdd84906e581e77, 0x0, + 0x3fb297c1a5f4e8ec, 0x0, + 0x3fe1d0f054995a96, 0x0, + 0x3fe6282ac96321f5, 0x0, + 0x3fdb085fc9da558f, 0x0, + 0xbf56416df7e71a66, 0x0, + 0xbfddefd10be57f9e, 0x0, + 0xbfe589586b1f46c3, 0x0, + 0xbfde90df74563b72, 0x0, + 0xbf907e7c1101f38d, 0x0, + 0x3fd90f4ac355cdba, 0x0, + 0x3fe5e3b594119b48, 0x0, + 0x3fe191529a0f6edf, 0x0, + 0xbf6a3a24ebd44ec6, 0x0, + 0xbfe087e5fd366924, 0x0, + 0xbfe5b3e198b02c29, 0x0, + 0xbfe0e1f1124ce279, 0x0, + 0x3fbb3ec01fa55ac4, 0x0, + 0x3fe253fec5d5e48b, 0x0, + 0x3fe6eaae3674d908, 0x0, + 0x3fe1196c84e340b5, 0x0, + 0x3f867c06f5086f70, 0x0, + 0xbfdb7de18c593a09, 0x0, + 0xbfe5c407cace7e38, 0x0, + 0xbfda47a07e3ec301, 0x0, + 0x3fac8cc92a7ae837, 0x0, + 0x3fe27ae48173ca5f, 0x0, + 0x3fe6d31413a0f4cc, 0x0, + 0x3fdb553fa25df9f0, 0x0, + 0x3fc1292604688a16, 0x0, + 0xbfe168eb5f76061c, 0x0, + 0xbfe52754bfb73be1, 0x0, + 0xbfdfb217ac7d8686, 0x0, + 0xbf93bd3dbcd99562, 0x0, + 0x3fe09b21b0c0de41, 0x0, + 0x3fe7f1a05822901a, 0x0, + 0x3fdf70788df01899, 0x0, + 0xbf99cf1369860a8e, 0x0, + 0xbfe04d663e000061, 0x0, + 0xbfe71230b9782a60, 0x0, + 0xbfddf463bea23d50, 0x0, + 0xbfa59147b45adf86, 0x0, + 0x3fdeed35da116354, 0x0, + 0x3fe70b434bdbb177, 0x0, + 0x3fdd25c1757eebcb, 0x0, + 0xbf9d3b8b5d50ec7c, 0x0, + 0xbfe069439b4c2853, 0x0, + 0xbfe5c8f0e978fc50, 0x0, + 0xbfde247fde0b7389, 0x0, + 0x3f7ea40930dcda8b, 0x0, + 0x3fde9eea0f1b3986, 0x0, + 0x3fe5ec3bb3a82ebd, 0x0, + 0x3fddb5c56a2d8ecc, 0x0, + 0x3fa4a8e257c2418a, 0x0, + 0xbfddc5e14ba6ba48, 0x0, + 0xbfe684a3d66cad5d, 0x0, + 0xbfd8e6a0d2ab69e2, 0x0, + 0xbfb1f7e94ccb3cda, 0x0, + 0x3fe0bad9ef81eedd, 0x0, + 0x3fe5e67dab3e67ef, 0x0, + 0x3fde5665da334712, 0x0, + 0xbfb73da0e4f21184, 0x0, + 0xbfdd2b25cf03f7c6, 0x0, + 0xbfe72f2d3720bbd8, 0x0, + 0xbfdfddb367b0fc38, 0x0, + 0x3faccc9858565b20, 0x0, + 0x3fdbf30ae2f634ff, 0x0, + 0x3fe61c9090af469c, 0x0, + 0x3fdcf8cda04d472d, 0x0, + 0x3f510a158f77c8fe, 0x0, + 0xbfe02df4ede2dff8, 0x0, + 0xbfe8e77db2d8aa6a, 0x0, + 0xbfdcfdcd4b0d63ec, 0x0, + 0xbf962d47268f11db, 0x0, + 0x3fdc44ca36050892, 0x0, + 0x3fe953fae4b19834, 0x0, + 0x3fe0f2c116699f3d, 0x0, + 0x3fb56c0dc2548eec, 0x0, + 0xbfe0d71e202d748a, 0x0, + 0xbfe5ea2f26798993, 0x0, + 0xbfe0b7ddf4ed6709, 0x0, + 0xbfc16abdcfcb5328, 0x0, + 0x3fe00e04d0a2957f, 0x0, + 0x3fe40db3d7903ec7, 0x0, + 0x3fdacd6d43b50230, 0x0, + 0x3fbdf02fe125c724, 0x0, + 0xbfe009c56bc65f5b, 0x0, + 0xbfe6617cef9d499d, 0x0, + 0xbfdcd7d7cb8aaf68, 0x0, + 0xbf9ceeda6b262439, 0x0, + 0x3fdf4c0987f46a50, 0x0, + 0x3fe70e4b688c1273, 0x0, + 0x3fe05fe407a8bd99, 0x0, + 0xbf9234c4e8d76d5e, 0x0, + 0xbfe15400ea85244d, 0x0, + 0xbfe5942b2ae90fa7, 0x0, + 0xbfdc5368815c35b7, 0x0, + 0xbf8e00e62a3dd518, 0x0, + 0x3fe09b8752add287, 0x0, + 0x3fe3686674f07f9f, 0x0, + 0x3fe35c9f13a5dbab, 0x0, + 0xbfba0fae82a48fbd, 0x0, + 0xbfe00459cf41200f, 0x0, + 0xbfe5a76846483812, 0x0, + 0xbfdf26416079f94b, 0x0, + 0x3fbcb11f3e43f1e3, 0x0, + 0x3fde7ffd94835a3d, 0x0, + 0x3fe8e2256cef14b8, 0x0, + 0x3fddff9a1a272e9c, 0x0, + 0xbfb11ad6cc8f4017, 0x0, + 0xbfde24376dfcd1a4, 0x0, + 0xbfe679cf9512e229, 0x0, + 0xbfe0727b61fe94c7, 0x0, + 0xbf979b8e903b4dac, 0x0, + 0x3fe2885c1f8c0ae0, 0x0, + 0x3fe797563459ca61, 0x0, + 0x3fe07d3d15cd19f3, 0x0, + 0x3fb827f4d0e9ed78, 0x0, + 0xbfdddb1905dd2c9b, 0x0, + 0xbfe5d7df4d54059f, 0x0, + 0xbfdef63a1b520a8c, 0x0, + 0xbfb7c9d8b33ed939, 0x0, + 0x3fe0b76657ae891c, 0x0, + 0x3fe4561f5f5c6921, 0x0, + 0x3fdec61eaeb901da, 0x0, + 0xbf4a802f6037312b, 0x0, + 0xbfe070ae0f7c2659, 0x0, + 0xbfe4c1a0b980f45a, 0x0, + 0xbfe12f7d2f67564a, 0x0, + 0xbf947a71c8e77e86, 0x0, + 0x3fdfe57881b3f1f3, 0x0, + 0x3fe2da191c140f88, 0x0, + 0x3fdb7f2ed0966f98, 0x0, + 0xbfa58ab5cd468bc8, 0x0, + 0xbfdd2d48c7a802b0, 0x0, + 0xbfea38e6e3d966b9, 0x0, + 0xbfe21d2a9244d78f, 0x0, + 0x3fb3bcd133db85b9, 0x0, + 0x3fe0658354c7568b, 0x0, + 0x3fe54f7e4a39a3de, 0x0, + 0x3fe00f8822757728, 0x0, + 0x3f9996805c62ebe9, 0x0, + 0xbfdb561040be9afe, 0x0, + 0xbfe6380d7c9653e8, 0x0, + 0xbfe0d59cf50cad85, 0x0, + 0xbfa69b02cc359405, 0x0, + 0x3fdc84949923a418, 0x0, + 0x3fe4433e03ec909d, 0x0, + 0x3fdf1ad5408975da, 0x0, + 0xbfac5a316e24a088, 0x0, + 0xbfe1896b1d6f906d, 0x0, + 0xbfe78b50fef50743, 0x0, + 0xbfdf296be7ece37d, 0x0, + 0xbf914bec89666691, 0x0, + 0x3fdb216da7fcb663, 0x0, + 0x3fe7e83cd5069623, 0x0, + 0x3fe28d2c910fdbbd, 0x0, + 0xbfa5a4a410ddbf61, 0x0, + 0xbfe0507a2fd08d42, 0x0, + 0xbfe7005dd56bc6f1, 0x0, + 0xbfde4c57538f3f1c, 0x0, + 0xbf86962821453daa, 0x0, + 0x3fe05e476f03a6b9, 0x0, + 0x3fe82dc4ecf3380c, 0x0, + 0x3fe13acefabc2fc3, 0x0, + 0xbfa315a40a7935fb, 0x0, + 0xbfe066d965706c42, 0x0, + 0xbfe5deb426a0c4e7, 0x0, + 0xbfe0bb2be7757323, 0x0, + 0xbf87574cd556a40f, 0x0, + 0x3fdb4f38f43d8576, 0x0, + 0x3fe700886cb64d9a, 0x0, + 0x3fe1473cb5fd858f, 0x0, + 0xbfa0add6dc30ab05, 0x0, + 0xbfe1900f3bf65ec4, 0x0, + 0xbfe3f6ded108a9f2, 0x0, + 0xbfde63e64ed725fd, 0x0, + 0xbf98333ede91239a, 0x0, + 0x3fdf7ceab673fd97, 0x0, + 0x3fe6585382a33728, 0x0, + 0x3fdf5318a488077a, 0x0, + 0xbfa6d7d2e17e4537, 0x0, + 0xbfe1b15d427daa93, 0x0, + 0xbfe68c428d90de4f, 0x0, + 0xbfddab28751e00fd, 0x0, + 0xbf9328fb1b7f07b5, 0x0, + 0x3fdaf4972c472493, 0x0, + 0x3fe6b1ca12b06364, 0x0, + 0x3fe278eed249f45b, 0x0, + 0x3fafedf53c8799a2, 0x0, + 0xbfdeb88744694293, 0x0, + 0xbfe68d5b3b0fa61a, 0x0, + 0xbfdd93b774f7f60d, 0x0, + 0x3fb1e44838892df2, 0x0, + 0x3fdfbb46dcc3509b, 0x0, + 0x3fe5ff1ef517b95a, 0x0, + 0x3fdef8346bdf756e, 0x0, + 0xbf958a67f3ea2135, 0x0, + 0xbfe2288224b2b78c, 0x0, + 0xbfe6cdee0324a362, 0x0, + 0xbfdcb8d8dfe1bddd, 0x0, + 0xbfabb706b2d44930, 0x0, + 0x3fe0cc2931c26fa8, 0x0, + 0x3fe74ffefa0594e2, 0x0, + 0x3fdbb74305a18e91, 0x0, + 0x3f9c6fb696d13e05, 0x0, + 0xbfdc6e00eccb4fc8, 0x0, + 0xbfe56246c8ba99ad, 0x0, + 0xbfe1e3b2ce04d5a2, 0x0, + 0xbf89cf86ffa3d6fe, 0x0, + 0x3fe10768bc1b0a9c, 0x0, + 0x3fe975481163ee66, 0x0, + 0x3fe43fdaf6f71f41, 0x0, + 0xbf98ac2c38eae783, 0x0, + 0xbfe108bbda2c6e70, 0x0, + 0xbfe72854960b0b32, 0x0, + 0xbfe2f791b1e0b66c, 0x0, + 0xbfa11622622281df, 0x0, + 0x3fe2e04a346ba99a, 0x0, + 0x3fe5235c4efc3431, 0x0, + 0x3fe1f803eeecd9df, 0x0, + 0x3f8ed34b3e091fcc, 0x0, + 0xbfdc204b47d2c04a, 0x0, + 0xbfe6392970ea5fbc, 0x0, + 0xbfe0cdcbffaf26dd, 0x0, + 0x3fa6dc0d4490a8f6, 0x0, + 0x3fde4f2c0ad632ec, 0x0, + 0x3fe6ac848969013a, 0x0, + 0x3fdd3c58046b0fe8, 0x0, + 0x3fb0ee6f5530255f, 0x0, + 0xbfe4b285dfee4180, 0x0, + 0xbfe5747663f2cb87, 0x0, + 0xbfdd3736cc051c44, 0x0, + 0xbfb33a24ba283aa8, 0x0, + 0x3fda32b577f25510, 0x0, + 0x3fe49618d3bc1aa2, 0x0, + 0x3fe2e72799d5bb3a, 0x0, + 0x3f96c9cc1b639fa9, 0x0, + 0xbfde8e52a257cf3b, 0x0, + 0xbfe5907102facb24, 0x0, + 0xbfdd6fe0f1077333, 0x0, + 0xbfa237f9cd630f0b, 0x0, + 0x3fe2466bf29ea244, 0x0, + 0x3fe58acb88f7cd83, 0x0, + 0x3fdd962af5e0fc95, 0x0, + 0xbfa43807e9763b16, 0x0, + 0xbfe224ecaf0768e6, 0x0, + 0xbfe5c7c15781d869, 0x0, + 0xbfde0e52ee185d66, 0x0, + 0xbf9b579909ae216b, 0x0, + 0x3fdcff21aa28a659, 0x0, + 0x3fe98fbb0e51c28a, 0x0, + 0x3fe12f0aa3ac0d23, 0x0, + 0xbf9c3493c85f5a48, 0x0, + 0xbfe1e8f43f282f0b, 0x0, + 0xbfe915b9b9c85ab8, 0x0, + 0xbfdf4ca114bb3191, 0x0, + 0xbf9fe04a6918af99, 0x0, + 0x3fdded8ecdf7c668, 0x0, + 0x3fe7874c24f5da44, 0x0, + 0x3fe0b55822baafbf, 0x0, + 0x3f4b586cd151d00a, 0x0, + 0xbfde42000ac44757, 0x0, + 0xbfe6f4232abcbb80, 0x0, + 0xbfe07dfc00156ccb, 0x0, + 0x3fb5315fcbd12141, 0x0, + 0x3fe0e3ed7263987f, 0x0, + 0x3fe337177f660260, 0x0, + 0x3fdd935be0914f0e, 0x0, + 0x3f820f9c18dc166a, 0x0, + 0xbfe07269e92bd14c, 0x0, + 0xbfe552e15fbaa8ae, 0x0, + 0xbfe17095f5cd2f55, 0x0, + 0xbf7108d87c3c5598, 0x0, + 0x3fdf746a0f62e618, 0x0, + 0x3fe7ebcd94eb46e0, 0x0, + 0x3fe00c907142d6fe, 0x0, + 0xbfb5d41ac7f697a3, 0x0, + 0xbfe0773ae940b538, 0x0, + 0xbfe63dc558d522eb, 0x0, + 0xbfdec3e374ffb71a, 0x0, + 0x3fb5ea3840179d38, 0x0, + 0x3fdf906ada7da588, 0x0, + 0x3fe847e37229fe83, 0x0, + 0x3fe25788d4890a29, 0x0, + 0x3f9f8ce71947569d, 0x0, + 0xbfdda67f0e47702a, 0x0, + 0xbfe64fc947feed5e, 0x0, + 0xbfd8cdc3ad0596e5, 0x0, + 0x3f746025c79779df, 0x0, + 0x3fe1e770b249c0a2, 0x0, + 0x3fe6bf684cf86660, 0x0, + 0x3fdf1e29e57449f2, 0x0, + 0x3f95d599ca888835, 0x0, + 0xbfdaa1feaf7ce382, 0x0, + 0xbfe6f32b5b64ec60, 0x0, + 0xbfdb7c6694371c4b, 0x0, + 0x3fa7ec0fffbb8d5d, 0x0, + 0x3fe111796e996418, 0x0, + 0x3fe6855a73b793d8, 0x0, + 0x3fdbe6ef9ffff060, 0x0, + 0xbfac4f612739eccc, 0x0, + 0xbfe0cecd0c447464, 0x0, + 0xbfe7b20ee9dbdb40, 0x0, + 0xbfe1c1f59279488c, 0x0, + 0xbfab0dcc751ecf92, 0x0, + 0x3fe13f8b9ec3b855, 0x0, + 0x3fe5405b23103b7e, 0x0, + 0x3fe175e566d89c95, 0x0, + 0x3fa01b6b0128b653, 0x0, + 0xbfde3e21ade38f68, 0x0, + 0xbfe3e2d68d993b50, 0x0, + 0xbfdbae312d653d87, 0x0, + 0x3f91167d4eba9d36, 0x0, + 0x3fdf7fbf2a285efe, 0x0, + 0x3fe649a1bf1e8c0e, 0x0, + 0x3fdb72c2d585ea18, 0x0, + 0x3faf49208dd8626b, 0x0, + 0xbfe0a950d20b53cd, 0x0, + 0xbfe82526d95c3371, 0x0, + 0xbfe00a00a70b05d3, 0x0, + 0xbf9d13ba78132855, 0x0, + 0x3fdee8d8eb101b79, 0x0, + 0x3fe6ad7030380757, 0x0, + 0x3fe177f52a77d115, 0x0, + 0x3f93a9e8cc632e87, 0x0, + 0xbfe0813c266e88d4, 0x0, + 0xbfe6cfb5ec35e42b, 0x0, + 0xbfdca7aca48109f0, 0x0, + 0xbfa8430e2c27e336, 0x0, + 0x3fdecbd38c9fa4b0, 0x0, + 0x3fe2640532a35e35, 0x0, + 0x3fe0460cb90967b7, 0x0, + 0xbfab800aa2a19b6e, 0x0, + 0xbfdfbaf59d44fea7, 0x0, + 0xbfe5bda37e66a3fb, 0x0, + 0xbfe12ace30e43fe5, 0x0, + 0x3faee44c53c56e85, 0x0, + 0x3fde025b959f674a, 0x0, + 0x3fe8ddf1d7e31bc5, 0x0, + 0x3fe001da12874737, 0x0, + 0xbfaa0af69c38719b, 0x0, + 0xbfdba6f00d696cbb, 0x0, + 0xbfe7605fa02190aa, 0x0, + 0xbfdcfafd6b68fc9a, 0x0, + 0xbfa4b5344aca0544, 0x0, + 0x3fdde66cbf6176fd, 0x0, + 0x3fe935cc2e1b7d25, 0x0, + 0x3fdd02d765471564, 0x0, + 0x3f97abf090912071, 0x0, + 0xbfe1c7c954557d12, 0x0, + 0xbfe738b1197b44c6, 0x0, + 0xbfdcef2e9f1444e6, 0x0, + 0xbf90704cbbb2d361, 0x0, + 0x3fdba86d0da1fc96, 0x0, + 0x3fe681083f0a0560, 0x0, + 0x3fe064760a4c7fee, 0x0, + 0xbfb15506d59d04a3, 0x0, + 0xbfe0208e8044cf89, 0x0, + 0xbfe7baf597897354, 0x0, + 0xbfe21bad0c4893ed, 0x0, + 0x3f976f197eb4b414, 0x0, + 0x3fdf137556b10daf, 0x0, + 0x3fe7096822b97d0d, 0x0, + 0x3fe18181e02592b4, 0x0, + 0xbf6c391695548320, 0x0, + 0xbfdda626b0c50ea6, 0x0, + 0xbfe53d46a2680401, 0x0, + 0xbfdedd18a7029148, 0x0, + 0x3f57148ab9600fb8, 0x0, + 0x3fdb89485e49c132, 0x0, + 0x3fe7ba6e2c51a89b, 0x0, + 0x3fdcfd159aa3f076, 0x0, + 0x3fa12b7468bfcb72, 0x0, + 0xbfdf438c84d6d08c, 0x0, + 0xbfe5a41c11eb1385, 0x0, + 0xbfe1341331389fe0, 0x0, + 0xbfaef77f94d4ca19, 0x0, + 0x3fe01f88ae94270e, 0x0, + 0x3fe64f995720a8b1, 0x0, + 0x3fdd6c25133d26d4, 0x0, + 0x3fbd30acbdf0b039, 0x0, + 0xbfdd1dadddc115e5, 0x0, + 0xbfe5a784090e1066, 0x0, + 0xbfdc1caaaffbbf46, 0x0, + 0xbf86b9f6e383a313, 0x0, + 0x3fe11a111351b788, 0x0, + 0x3fe62d239757ff46, 0x0, + 0x3fdd6b62db079071, 0x0, + 0x3fa44cd05ea07dea, 0x0, + 0xbfe21f51a6aa2d6e, 0x0, + 0xbfe859a8799215bb, 0x0, + 0xbfe187ec404e177a, 0x0, + 0xbfac43b8a2de43d1, 0x0, + 0x3fdc5028aa6011dd, 0x0, + 0x3fe9057bd653a328, 0x0, + 0x3fe08afa1132622b, 0x0, + 0xbfa1a8af401a5b16, 0x0, + 0xbfdcade119d92c3e, 0x0, + 0xbfe5fad29df0d7dd, 0x0, + 0xbfe11c894764c752, 0x0, + 0xbf90c3f09afdd0f4, 0x0, + 0x3fe19e528740551e, 0x0, + 0x3fea81f28410df68, 0x0, + 0x3fde3dbca0cfbca7, 0x0, + 0xbfa08a4ad10418d1, 0x0, + 0xbfde24b90953110a, 0x0, + 0xbfe3197258889808, 0x0, + 0xbfdd4d63b4c5c187, 0x0, + 0xbf17f9005057d8f9, 0x0, + 0x3fe0798594355b8a, 0x0, + 0x3fe6ad4d213b4e8b, 0x0, + 0x3fe0b7555cf9c654, 0x0, + 0x3f985f8bd07446af, 0x0, + 0xbfe15f7dfd71708f, 0x0, + 0xbfe6f169b6e0caaf, 0x0, + 0xbfdcd1d74ec32ba5, 0x0, + 0xbfb14117f68b4fef, 0x0, + 0x3fe071cc3f9eda3c, 0x0, + 0x3fe651a1305da620, 0x0, + 0x3fe1da126ef486ca, 0x0, + 0xbfb6bf1839ac186a, 0x0, + 0xbfe03c3f5432c2c9, 0x0, + 0xbfe5f154f4e0abbd, 0x0, + 0xbfde821361f3e3c7, 0x0, + 0xbf8cf666a3445e35, 0x0, + 0x3fddac5fc9e5bec8, 0x0, + 0x3fea1b0c81315192, 0x0, + 0x3fdf8bb0b3e464e3, 0x0, + 0x3fba03da40e6f746, 0x0, + 0xbfe0fcef0c3574db, 0x0, + 0xbfe4ca33c7516b89, 0x0, + 0xbfdd3fbd128cf81e, 0x0, + 0xbfa480df567903aa, 0x0, + 0x3fde51248c141ff0, 0x0, + 0x3fe676ae917f7a01, 0x0, + 0x3fdc4ef89839340a, 0x0, + 0x3f93480757b67499, 0x0, + 0xbfdb57f366b1a22a, 0x0, + 0xbfe7a90c1865084b, 0x0, + 0xbfddda8f9d45c92e, 0x0, + 0xbfa6ff710acc834e, 0x0, + 0x3fdf117d1ee832af, 0x0, + 0x3fe62383e3e62184, 0x0, + 0x3fe03ab66453ea38, 0x0, + 0xbf97d346b0ce8d2e, 0x0, + 0xbfe014d5b3505d0d, 0x0, + 0xbfe6f657ccdf9b00, 0x0, + 0xbfe0cc430306d228, 0x0, + 0xbf81d9365313825f, 0x0, + 0x3fdfcf3ec9e2ff61, 0x0, + 0x3fe6fc8c8e3ff383, 0x0, + 0x3fde6378b40745e0, 0x0, + 0xbfadcb13f7260f42, 0x0, + 0xbfe1bbbc896024c8, 0x0, + 0xbfe6892cebae8b98, 0x0, + 0xbfe2394110101d5d, 0x0, + 0x3fa90c09b137dda7, 0x0, + 0x3fe0bc7d5b7aeae6, 0x0, + 0x3fe6709ea2bf1b5e, 0x0, + 0x3fe185f3a781556d, 0x0, + 0xbf864117d5b02d89, 0x0, + 0xbfdccb75e2fa3a1a, 0x0, + 0xbfe7628532633c8b, 0x0, + 0xbfe02395b7bb50f8, 0x0, + 0xbfa54fe6d79c5e0f, 0x0, + 0x3fdd497286b45574, 0x0, + 0x3fe524695e553e06, 0x0, + 0x3fdc36261cdb6568, 0x0, + 0x3fbee48563457862, 0x0, + 0xbfdefb79f7042565, 0x0, + 0xbfe855bec7758230, 0x0, + 0xbfdc23caa6719e68, 0x0, + 0x3fa9d9ae420b8aa3, 0x0, + 0x3fde50093fe553a1, 0x0, + 0x3fe60dd14c58d8d6, 0x0, + 0x3fe044e9434bb96a, 0x0, + 0xbf805c663dd324e0, 0x0, + 0xbfe1c09ef4466cae, 0x0, + 0xbfe89d8cde6ac487, 0x0, + 0xbfe072d354dfec02, 0x0, + 0x3faafa484d39b002, 0x0, + 0x3fde8329145223c7, 0x0, + 0x3fe8c72c34df688b, 0x0, + 0x3fe2159be759ab22, 0x0, + 0x3fa465fb50fe34eb, 0x0, + 0xbfe113201e24a1bb, 0x0, + 0xbfe90699f8684753, 0x0, + 0xbfe40feb1a414777, 0x0, + 0x3f8ddb503e801ce2, 0x0, + 0x3fdd600f3294e30e, 0x0, + 0x3fe7b280c2ad9806, 0x0, + 0x3fe00e47c4d97f03, 0x0, + 0xbf9cacfd2b786a65, 0x0, + 0xbfe32e1047f64553, 0x0, + 0xbfe38d5b9436bbff, 0x0, + 0xbfe06b4446b033b3, 0x0, + 0x3f85822f4f416849, 0x0, + 0x3fe10255d24c6f82, 0x0, + 0x3fe4d01345e8efd3, 0x0, + 0x3fe0bceee5a0b340, 0x0, + 0x3f8fa1a9dffe6ed6, 0x0, + 0xbfdb05857f039ba3, 0x0, + 0xbfe596c0102a42fb, 0x0, + 0xbfe2bde608d5e7f8, 0x0, + 0xbf6536a807602eca, 0x0, + 0x3fe0c7232c68b1c7, 0x0, + 0x3fe643bed2c796f3, 0x0, + 0x3fe360d3c65c33a4, 0x0, + 0x3f9009da0b4484e2, 0x0, + 0xbfd957fc44ab7914, 0x0, + 0xbfe6ae4c318cea14, 0x0, + 0xbfe0b351f740c206, 0x0, + 0xbf459c7468ddc0da, 0x0, + 0x3fdde0e7d7bfaa60, 0x0, + 0x3fe529fe889db23c, 0x0, + 0x3fdceec1db747706, 0x0, + 0xbfad4906c70c3ebc, 0x0, + 0xbfdfa7f61ed75284, 0x0, + 0xbfe4f4c25b1570e1, 0x0, + 0xbfdf49080f169e7f, 0x0, + 0x3fa587ef3236102d, 0x0, + 0x3fe040d942d956e3, 0x0, + 0x3fe63ac5bad3fa6d, 0x0, + 0x3fdf9ec3abacc47a, 0x0, + 0xbfb0e832ad679a1d, 0x0, + 0xbfe03ae268dec1a3, 0x0, + 0xbfe65b5effe95be4, 0x0, + 0xbfe3b1925fcca40e, 0x0, + 0xbfaafc9020a85f95, 0x0, + 0x3fdaa0acfd950822, 0x0, + 0x3fe6fe09b6df69ec, 0x0, + 0x3fe0560bab802c41, 0x0, + 0x3f8fbf3dcb500773, 0x0, + 0xbfe2c7ed0f8c88f5, 0x0, + 0xbfe4f634afeee4d3, 0x0, + 0xbfdfbc2ffa6d48d3, 0x0, + 0x3fb9a55cefc96b67, 0x0, + 0x3fe04aaa52935871, 0x0, + 0x3fe63a1653815442, 0x0, + 0x3fe3fd71cf11b218, 0x0, + 0xbf82a9b913d39481, 0x0, + 0xbfdf231576f19fc3, 0x0, + 0xbfe7edd38e9fc606, 0x0, + 0xbfdc05516a133f1f, 0x0, + 0x3f9e7ea20292a87b, 0x0, + 0x3fe27a193b757d7a, 0x0, + 0x3fe500cff8691e7e, 0x0, + 0x3fdee91ca965d86c, 0x0, + 0x3fa4a24ae3386425, 0x0, + 0xbfe0d47274e88e7f, 0x0, + 0xbfe82dc596f23368, 0x0, + 0xbfda77e18f02d4a4, 0x0, + 0xbf89ad411960735b, 0x0, + 0x3fe14d971c6b26f2, 0x0, + 0x3fe5a406fb38aa44, 0x0, + 0x3fdb458c9bb7f69b, 0x0, + 0x3f82ef48dbc63bee, 0x0, + 0xbfdeb73809346314, 0x0, + 0xbfe54d0fe71e9962, 0x0, + 0xbfdef5dffb57e184, 0x0, + 0xbf828aafc472a84e, 0x0, + 0x3fdda32dfc81db68, 0x0, + 0x3fe4e183edef25b0, 0x0, + 0x3fdbf1786c7ddeb4, 0x0, + 0x3f9fd63b4d873a5f, 0x0, + 0xbfdd47790fbba73d, 0x0, + 0xbfe378e8d7ddc6e8, 0x0, + 0xbfdeea6232693096, 0x0, + 0x3fa2e1e34b8190a7, 0x0, + 0x3fe172c58596a440, 0x0, + 0x3fe300e03c00fa4b, 0x0, + 0x3fe104e9bebe3400, 0x0, + 0xbf81c346ba0db700, 0x0, + 0xbfde6e5fd95175e9, 0x0, + 0xbfe660af2ee768d8, 0x0, + 0xbfe09424f47932d4, 0x0, + 0xbf8a573582884a95, 0x0, + 0x3fdc943d243b4327, 0x0, + 0x3fe27e50adde9aa1, 0x0, + 0x3fe2606fb422ad1d, 0x0, + 0x3fadbc178e300afe, 0x0, + 0xbfdf902ad0d9eef9, 0x0, + 0xbfe69b9c130d6466, 0x0, + 0xbfdba6eae4380624, 0x0, + 0xbfa4312c5507dec8, 0x0, + 0x3fdb7ca1e7beb0a8, 0x0, + 0x3fe77f572d2b60b7, 0x0, + 0x3fdef0572a6fe67b, 0x0, + 0xbfaaa5ac8a317e53, 0x0, + 0xbfe37029f3437c08, 0x0, + 0xbfe758e7fdb32495, 0x0, + 0xbfdea46b6355d014, 0x0, + 0xbfa5efb3f773de0e, 0x0, + 0x3fe026dc89a617a8, 0x0, + 0x3fe7fa9245b14203, 0x0, + 0x3fdec6f1edfa23ab, 0x0, + 0xbf9732cb39a5fe36, 0x0, + 0xbfe29be918f05180, 0x0, + 0xbfe6107303849144, 0x0, + 0xbfe16cc08f8efbf1, 0x0, + 0x3fb7e7046453055a, 0x0, + 0x3fdc6f3c91663aed, 0x0, + 0x3fe6987e6f9ecde6, 0x0, + 0x3fdf922d6ef51e43, 0x0, + 0xbf8a5ed9aba226c2, 0x0, + 0xbfe0352e57b1f38f, 0x0, + 0xbfe6f74be0a30344, 0x0, + 0xbfdece9231ead128, 0x0, + 0xbf93d060dda113af, 0x0, + 0x3fe2b79d25ca49b5, 0x0, + 0x3fe4db48370cbd65, 0x0, + 0x3fde85b2c8459673, 0x0, + 0xbfb4b764e31ab1aa, 0x0, + 0xbfe0964998c58ef6, 0x0, + 0xbfe8e2f312d8bf55, 0x0, + 0xbfdd89e8b8ea5773, 0x0, + 0x3f909ec61e070890, 0x0, + 0x3fde83f1351ac04b, 0x0, + 0x3fe7144b80a36c50, 0x0, + 0x3fdfa1f2a67d0813, 0x0, + 0xbf6ee950a8a74e86, 0x0, + 0xbfe028875af3cfdc, 0x0, + 0xbfe6d2091fea540e, 0x0, + 0xbfdc1b6b113b6c12, 0x0, + 0x3faf3c89e37cb34c, 0x0, + 0x3fdf9538c4f25441, 0x0, + 0x3fe4f0a6a29317ef, 0x0, + 0x3fe04c75027353c8, 0x0, + 0x3fb1e55ac9ff58c2, 0x0, + 0xbfe091ff49d43efa, 0x0, + 0xbfe770d7eebcbc9f, 0x0, + 0xbfe1b9a19a08152b, 0x0, + 0x3f97219979ba04b9, 0x0, + 0x3fe01f2b360d6b8d, 0x0, + 0x3fe4450b8f24da78, 0x0, + 0x3fe089949343090f, 0x0, + 0xbfaa35cd28b8b1ac, 0x0, + 0xbfe24fb61e882f7a, 0x0, + 0xbfe429fd8a888ce8, 0x0, + 0xbfe0dbe36960e589, 0x0, + 0x3f9b49f6c6508260, 0x0, + 0x3fe149367f15ad75, 0x0, + 0x3fe6fe8879abccb5, 0x0, + 0x3fdebef9b3b71391, 0x0, + 0x3f8b27e785259775, 0x0, + 0xbfde0aab88229fd8, 0x0, + 0xbfe5eb8def13d0ec, 0x0, + 0xbfde6dfb5d0a0cc3, 0x0, + 0x3f7ffa4b5ed44e36, 0x0, + 0x3fdf450d9468c19a, 0x0, + 0x3fe96a83a8f1ec16, 0x0, + 0x3fe0379029088f94, 0x0, + 0x3fa11cc693b8f7f0, 0x0, + 0xbfdf5e75713fe7cc, 0x0, + 0xbfe59ae920d46294, 0x0, + 0xbfe37c51b08781f7, 0x0, + 0xbfa114f9fc3be48a, 0x0, + 0x3fdc6efede529299, 0x0, + 0x3fe9d0be18eb23ba, 0x0, + 0x3fe08120568e575f, 0x0, + 0xbf553bbe8d4e04df, 0x0, + 0xbfe1ff552e015ed1, 0x0, + 0xbfe86c37b5f3bc77, 0x0, + 0xbfe02c7942b12959, 0x0, + 0x3fa114b6d6b306e2, 0x0, + 0x3fdefe0bfe2326c4, 0x0, + 0x3fe6d9a72c6b052a, 0x0, + 0x3fdf1bdf20f6a6e9, 0x0, + 0x3f994efde99c48a9, 0x0, + 0xbfddd37be06fcf04, 0x0, + 0xbfe708ccb96518c6, 0x0, + 0xbfdca3c01ca20c32, 0x0, + 0x3fb4e81030e8bcf3, 0x0, + 0x3fe0158dffd2e137, 0x0, + 0x3fe798246bb082db, 0x0, + 0x3fdb549ce819011c, 0x0, + 0x3f6ac90da1dc5196, 0x0, + 0xbfd90682210d09e8, 0x0, + 0xbfe878ada0f4c243, 0x0, + 0xbfdf3075caa3d317, 0x0, + 0x3fa5cd8e95edef63, 0x0, + 0x3fe271c72c3e2336, 0x0, + 0x3fe7ebcbf20b30a6, 0x0, + 0x3fe1520fd37d7bd1, 0x0, + 0x3fb24c9007cad35d, 0x0, + 0xbfe13060c108b751, 0x0, + 0xbfe82aa38216c5a0, 0x0, + 0xbfdf67b9d50b37f5, 0x0, + 0xbf8229a00b37ca57, 0x0, + 0x3fe106d51a61e41b, 0x0, + 0x3fe453b4840af788, 0x0, + 0x3fdd1669c24c5294, 0x0, + 0x3fa53bf9b5df6c32, 0x0, + 0xbfe2ea8773e60e9e, 0x0, + 0xbfe511e034c32506, 0x0, + 0xbfe219672c43602d, 0x0, + 0x3f90db172798215a, 0x0, + 0x3fdf2a9a4f035141, 0x0, + 0x3fe60145d2411f79, 0x0, + 0x3fe1b5ef5397244d, 0x0, + 0x3f8b5295425c92f0, 0x0, + 0xbfdb9263c81d849e, 0x0, + 0xbfe6065dd57918b3, 0x0, + 0xbfe015e39634bf55, 0x0, + 0x3f54fb3e9ba96fdf, 0x0, + 0x3fddc7293876c0c5, 0x0, + 0x3fe50529e8c35fac, 0x0, + 0x3fe1740a8a6645f0, 0x0, + 0x3fac1fb3a89bd8b9, 0x0, + 0xbfe16a760867f81e, 0x0, + 0xbfe4cc2f6a0af382, 0x0, + 0xbfde37799014a438, 0x0, + 0xbfa5a1d95eb6c841, 0x0, + 0x3fdc7d20d501da86, 0x0, + 0x3fe72b158d438346, 0x0, + 0x3fe03f98ba8e1e68, 0x0, + 0xbfbec6f9b0c0eff4, 0x0, + 0xbfda892a88a15c35, 0x0, + 0xbfe4dd2f64bf77c7, 0x0, + 0xbfe0827a0323360b, 0x0, + 0xbf6d4521ffd96b33, 0x0, + 0x3fe166a8c67ed5be, 0x0, + 0x3fe6287f721ccc9e, 0x0, + 0x3fdbbce625bea471, 0x0, + 0x3faa59e78ca0092c, 0x0, + 0xbfdf4673326b95d4, 0x0, + 0xbfeac8b8192576a3, 0x0, + 0xbfdf22a06b48cdad, 0x0, + 0x3f9847a0cbf5e6a6, 0x0, + 0x3fdfebe863ca458f, 0x0, + 0x3fe4951c66593492, 0x0, + 0x3fdc0a405b46f641, 0x0, + 0xbfa22e16d501857d, 0x0, + 0xbfe1dbf88cb2ea53, 0x0, + 0xbfe6af86a9bb6697, 0x0, + 0xbfe058914d0bdba4, 0x0, + 0x3f6c3d806d124e26, 0x0, + 0x3fe0a8cafe9860d5, 0x0, + 0x3fe7fd599077ad0d, 0x0, + 0x3fe1849ba991dc95, 0x0, + 0x3fa86aa55dcd09f5, 0x0, + 0xbfddb5eafea65eec, 0x0, + 0xbfe4b3e6f50bb5af, 0x0, + 0xbfe020ac4a9eeabd, 0x0, + 0x3fbaabcbb1b35e2b, 0x0, + 0x3fdc358c98da628a, 0x0, + 0x3fe755c7373ab653, 0x0, + 0x3fe044eb86c00224, 0x0, + 0x3f98bd58de520144, 0x0, + 0xbfdb44d9a125c6d7, 0x0, + 0xbfe3c45dea206a04, 0x0, + 0xbfe29b92bac2ba32, 0x0, + 0x3fb11fdd9dd588ef, 0x0, + 0x3fdc2936ba46313a, 0x0, + 0x3fe76d9f9617cb89, 0x0, + 0x3fe0c550641af846, 0x0, + 0x3f95bb462ad91d2c, 0x0, + 0xbfdac5855266147d, 0x0, + 0xbfe5f7a48eb86d0e, 0x0, + 0xbfde10719cdd45f8, 0x0, + 0xbfa3a11117589a82, 0x0, + 0x3fe33f24c051373e, 0x0, + 0x3fe7c99412302749, 0x0, + 0x3fe1027c782129b5, 0x0, + 0xbf93e09d625d3e9c, 0x0, + 0xbfe1fd9bfaa5d15c, 0x0, + 0xbfe4528e5ea5bc5e, 0x0, + 0xbfe0a6f9b36acbc3, 0x0, + 0xbfac8a372cfe9843, 0x0, + 0x3fde88dd55e4ef07, 0x0, + 0x3fe65335d7eb5922, 0x0, + 0x3fde46b696027b11, 0x0, + 0xbfb121dc481e449c, 0x0, + 0xbfdfe42f556fe09c, 0x0, + 0xbfe75261181fb756, 0x0, + 0xbfdd65b1acaf2974, 0x0, + 0xbfa5eda229537dad, 0x0, + 0x3fe076b028219288, 0x0, + 0x3fe5ae55ddc7c881, 0x0, + 0x3fdd9eddc7761bd5, 0x0, + 0xbf81ff892c6326f3, 0x0, + 0xbfde7eed46768bc0, 0x0, + 0xbfe48193f3050898, 0x0, + 0xbfdf9d7ae9e55735, 0x0, + 0x3fa0644ef03e0443, 0x0, + 0x3fdcacc6ec62b722, 0x0, + 0x3fe62e0f9e7a75ab, 0x0, + 0x3fddf6e5b5a0e062, 0x0, + 0x3fa388e6ea9047e4, 0x0, + 0xbfd8f05d706ea583, 0x0, + 0xbfe6fc143c0f5968, 0x0, + 0xbfe1dfb8b4bd0721, 0x0, + 0xbfa4985794dfda0d, 0x0, + 0x3fdccc179e221201, 0x0, + 0x3fe74b9f8ce47042, 0x0, + 0x3fe01a227e9ef558, 0x0, + 0xbfb07594570c5957, 0x0, + 0xbfe243530e42a458, 0x0, + 0xbfe4f469e3e2f721, 0x0, + 0xbfdf2cf1c662a8e3, 0x0, + 0x3fa5db0e2b2e46f4, 0x0, + 0x3fe08509e8542562, 0x0, + 0x3fe90225230f4586, 0x0, + 0x3fe3336646c7701a, 0x0, + 0xbfb3955b73e7cf00, 0x0, + 0xbfdccc550ca93188, 0x0, + 0xbfe68f261a7680df, 0x0, + 0xbfdd7138717108fd, 0x0, + 0xbfaac51fe94aab80, 0x0, + 0x3fe2318159d0a66a, 0x0, + 0x3fe4ba3584e36660, 0x0, + 0x3fe39f4312159fb6, 0x0, + 0xbfa7c6ef6945676a, 0x0, + 0xbfdafc253b04dcfb, 0x0, + 0xbfe53b3b4842d8b1, 0x0, + 0xbfe18f1f1b475567, 0x0, + 0xbfa76fe8e5fdfb90, 0x0, + 0x3fdff6e192969e3a, 0x0, + 0x3fe4caa7f528ba1d, 0x0, + 0x3fdd30b9493b0bc4, 0x0, + 0xbfa1a9bf5182c163, 0x0, + 0xbfe034bf1df68087, 0x0, + 0xbfe5bc15a9d250a7, 0x0, + 0xbfdda7a5d0a1b11d, 0x0, + 0xbfb6b3d058c714f6, 0x0, + 0x3fd91d159755ce2c, 0x0, + 0x3fe5bbdcd9c89c31, 0x0, + 0x3fdfdfa50ddb9fdd, 0x0, + 0xbfaa72949d4d45a3, 0x0, + 0xbfde6280a8641506, 0x0, + 0xbfe5d523a87b66f9, 0x0, + 0xbfe2349137dd1217, 0x0, + 0x3fa2e8fa77a00787, 0x0, + 0x3fdcdd0a69ce09a6, 0x0, + 0x3fe53046d6ec1a5b, 0x0, + 0x3fdcd1f03f65014f, 0x0, + 0xbfa27c354fe57d5b, 0x0, + 0xbfdf318349c801b7, 0x0, + 0xbfe6200464d52632, 0x0, + 0xbfddd5ad2bebc8b6, 0x0, + 0xbf771211d1333bd5, 0x0, + 0x3fda75622b439538, 0x0, + 0x3fe789a5ecb0782b, 0x0, + 0x3fe33fa8a931492b, 0x0, + 0x3f893f3c38becbc8, 0x0, + 0xbfe0a07894734cc7, 0x0, + 0xbfe655d0492fa0ac, 0x0, + 0xbfe0f791c03c8476, 0x0, + 0xbf95aec1048817bf, 0x0, + 0x3fe0c58fa6640b07, 0x0, + 0x3fe706b48fec27c2, 0x0, + 0x3fdcccd32818ad71, 0x0, + 0x3f6df6d39c1c80f2, 0x0, + 0xbfdf17aa7017a92d, 0x0, + 0xbfe6495b8be62ad9, 0x0, + 0xbfdb70ac0555ae0c, 0x0, + 0xbfac183495bf9282, 0x0, + 0x3fdbcafc79870ca3, 0x0, + 0x3fe5719a5bcfd491, 0x0, + 0x3fd8f7c140270875, 0x0, + 0x3fa9881c13af6e5e, 0x0, + 0xbfe16d29cfef2ba0, 0x0, + 0xbfe617a44b53f185, 0x0, + 0xbfdfbf19e6347a97, 0x0, + 0xbf9779a9de7b96c6, 0x0, + 0x3fe07c0a16e7a977, 0x0, + 0x3fe7c5fc03fb3e43, 0x0, + 0x3fdc1a7505bfad2b, 0x0, + 0x3fa5bc0d5c461309, 0x0, + 0xbfddcfeb00f1af0f, 0x0, + 0xbfe281c3944e3eb3, 0x0, + 0xbfe19b2f19776ae5, 0x0, + 0x3fb9f308124e672f, 0x0, + 0x3fe298f5d0259f37, 0x0, + 0x3fe96e23a4007dda, 0x0, + 0x3fd80e3645d9f74a, 0x0, + 0xbfb05cb206783076, 0x0, + 0xbfe05ce5bc9f3c93, 0x0, + 0xbfe853d46d1a5b7b, 0x0, + 0xbfdf86a0ae6424a6, 0x0, + 0x3fb248a3b03c575d, 0x0, + 0x3fe0b2dc6817f6bd, 0x0, + 0x3fe536dde935eb39, 0x0, + 0x3fe1a3764e716319, 0x0, + 0x3fa8a22255c97edb, 0x0, + 0xbfe06ca82054c901, 0x0, + 0xbfe88e0053e4d1b2, 0x0, + 0xbfe1bff63c2c7650, 0x0, + 0x3fb88531d28cd1dd, 0x0, + 0x3fdd67f43be9673a, 0x0, + 0x3fe7c79bba961c45, 0x0, + 0x3fe048900558dbbc, 0x0, + 0x3f9ad31626938aa5, 0x0, + 0xbfdc925a85749128, 0x0, + 0xbfe75928c867ae30, 0x0, + 0xbfdf872d7fc3a5b4, 0x0, + 0x3fbb69851d1b9085, 0x0, + 0x3fdeeeee016861c2, 0x0, + 0x3fe3d1a09d1ae903, 0x0, + 0x3fdc4421b6ce9fb4, 0x0, + 0xbfaa4eabb1c7d3db, 0x0, + 0xbfdda1e7f6067bdf, 0x0, + 0xbfe54ac3b4f76fd4, 0x0, + 0xbfdc8d8ce0484710, 0x0, + 0xbf878b79221a78ee, 0x0, + 0x3fe06d28e350b916, 0x0, + 0x3fe7c9af34027d46, 0x0, + 0x3fdb037de8558191, 0x0, + 0xbfae01a4ffb78207, 0x0, + 0xbfe154775149d4c9, 0x0, + 0xbfe3dc43733d6fd4, 0x0, + 0xbfdf808d254a9a41, 0x0, + 0x3f8920cce131b06a, 0x0, + 0x3fe0458c3f986ff0, 0x0, + 0x3fe7a6cea7b220a4, 0x0, + 0x3fde4280102af49f, 0x0, + 0xbfab9ca122dd6921, 0x0, + 0xbfe15d716e34525f, 0x0, + 0xbfe67574b86c3c7e, 0x0, + 0xbfde25d5b3e20631, 0x0, + 0xbfb099a783ac645b, 0x0, + 0x3fe079398585f424, 0x0, + 0x3fe7fc757f3d19b4, 0x0, + 0x3fdaf6c9d4f951b2, 0x0, + 0xbfb794d19b320453, 0x0, + 0xbfe05a1408a24451, 0x0, + 0xbfe8a773b325ade4, 0x0, + 0xbfdd47f3f8418900, 0x0, + 0x3f723e859921a195, 0x0, + 0x3fdae2c2cb3484bf, 0x0, + 0x3fe6d36f819c9087, 0x0, + 0x3fdfc6247e0c71ed, 0x0, + 0xbf8d60230e7e436c, 0x0, + 0xbfde8b715c86bd22, 0x0, + 0xbfe89dc97fb94223, 0x0, + 0xbfdd8a33590ecb30, 0x0, + 0xbf876086b4e745de, 0x0, + 0x3fdf7b1edaa6c62b, 0x0, + 0x3fe4c71812a40158, 0x0, + 0x3fdfa29337e97c5f, 0x0, + 0x3f8bc5662cfa3f4e, 0x0, + 0xbfe0a195d2c47632, 0x0, + 0xbfe64f96934a894e, 0x0, + 0xbfdafb65dad7ee1c, 0x0, + 0xbf89a32ea7a43fa3, 0x0, + 0x3fe0cfd305a0919f, 0x0, + 0x3fe748db2d63c62e, 0x0, + 0x3fdf437f8bf3c08e, 0x0, + 0xbfb98feecb7ba59b, 0x0, + 0xbfe22626b77c0b08, 0x0, + 0xbfe68e89db1a8bf0, 0x0, + 0xbfdf5b2bc38d7722, 0x0, + 0xbfb6f365acddce8e, 0x0, + 0x3fdb84142005d870, 0x0, + 0x3fe5c900a2c93721, 0x0, + 0x3fe1742be6861a8e, 0x0, + 0xbfb1dbe4bbc99730, 0x0, + 0xbfdfe7fb0719b2db, 0x0, + 0xbfe530523895b0df, 0x0, + 0xbfe0675ca49b8f42, 0x0, + 0xbf9434d3fbafc764, 0x0, + 0x3fe02b254440ec81, 0x0, + 0x3fe5cf511a3857f3, 0x0, + 0x3fe04d96ad37ebc0, 0x0, + 0x3fb4ead04cd0f9b0, 0x0, + 0xbfddaf8db0be2f5d, 0x0, + 0xbfe721926aa0a003, 0x0, + 0xbfde09eabf973f25, 0x0, + 0x3f77505778569b83, 0x0, + 0x3fe25a57622ff53f, 0x0, + 0x3fe51a3b41a99556, 0x0, + 0x3fd9a254737af633, 0x0, + 0xbf80797ea204e0db, 0x0, + 0xbfe0042ba531e8db, 0x0, + 0xbfe534ec0e99b263, 0x0, + 0xbfe2f388dcf241ec, 0x0, + 0xbf93f565f8dab2f8, 0x0, + 0x3fe12abc670e6c6c, 0x0, + 0x3fe6b1c4851afb4e, 0x0, + 0x3fdd301542b20c08, 0x0, + 0x3f7a9e708f2ea092, 0x0, + 0xbfe1fa201844f513, 0x0, + 0xbfe7e5516c8dbc5f, 0x0, + 0xbfe05c393df45ea2, 0x0, + 0x3fb455150ec66061, 0x0, + 0x3fe26bc846d9760a, 0x0, + 0x3fe8d85a7afb412e, 0x0, + 0x3fddc8191e5a1fbe, 0x0, + 0xbfb3e334f1f2d007, 0x0, + 0xbfdea3991d128852, 0x0, + 0xbfe84a8b16d2225e, 0x0, + 0xbfdefe258afaf780, 0x0, + 0x3f6c5e42582d7e02, 0x0, + 0x3fdc03470cd66715, 0x0, + 0x3fe617f3c37be220, 0x0, + 0x3fddf8aba0c8f89c, 0x0, + 0x3faf14a047359510, 0x0, + 0xbfdfa8908a324b7c, 0x0, + 0xbfe82831ed5fa6e9, 0x0, + 0xbfde802ea2ea25dc, 0x0, + 0x3f764d410471fa45, 0x0, + 0x3fddc4c4f5a67807, 0x0, + 0x3fe702209aab741e, 0x0, + 0x3fdfd05a48f7fdec, 0x0, + 0x3f9716527ad834f7, 0x0, + 0xbfddb09b2f00bd16, 0x0, + 0xbfe639e4e2f54ed8, 0x0, + 0xbfe04a869ee92f8e, 0x0, + 0xbfb2cf07b9d45517, 0x0, + 0x3fd715959b16705e, 0x0, + 0x3fe62c2e6cc3b2ba, 0x0, + 0x3fe1d5e40a3d1ddb, 0x0, + 0xbfa1e998881d76ad, 0x0, + 0xbfe134b1bdad45e6, 0x0, + 0xbfe6ef82b0765a86, 0x0, + 0xbfdf59dde18fa151, 0x0, + 0x3f9fe73728125abe, 0x0, + 0x3fdb2ecb95ec8968, 0x0, + 0x3fe6dae6b5687d61, 0x0, + 0x3fdebaeaf5fc1304, 0x0, + 0x3f9ba024a13c22ce, 0x0, + 0xbfddfbbe2280d0f7, 0x0, + 0xbfe965caec19e586, 0x0, + 0xbfe318fb3af9fa18, 0x0, + 0xbfa8ac2fbfedcf38, 0x0, + 0x3fdd6ce9fee8cbe5, 0x0, + 0x3fe890d58b5fc58f, 0x0, + 0x3fdbb1af0440261e, 0x0, + 0x3f98ca3f38967f36, 0x0, + 0xbfdec183df699df9, 0x0, + 0xbfe47437d0de5b68, 0x0, + 0xbfdd520b90c8bd92, 0x0, + 0xbf8979298133bb19, 0x0, + 0x3fe13cc9ba125f84, 0x0, + 0x3fe64a2b26ae5b4a, 0x0, + 0x3fd6decc35e39be2, 0x0, + 0x3f7d9c593534758b, 0x0, + 0xbfe041f88a69308b, 0x0, + 0xbfe5e84e5c522166, 0x0, + 0xbfdec8246f5e3d77, 0x0, + 0xbf8207ce9c3a8714, 0x0, + 0x3fe25170eee34375, 0x0, + 0x3fe56b04b967fad4, 0x0, + 0x3fdd12245fb85ade, 0x0, + 0x3f705a89106e7161, 0x0, + 0xbfdd0df49169f63a, 0x0, + 0xbfe58879b10a2db1, 0x0, + 0xbfe04bfd6c61d5c2, 0x0, + 0xbfb11d4a0bf213bb, 0x0, + 0x3fdeee7c014d05fa, 0x0, + 0x3fe75231fcef82c6, 0x0, + 0x3fde094028eabfc3, 0x0, + 0xbfbe6e5e17ad174c, 0x0, + 0xbfdf2b995742e82c, 0x0, + 0xbfe728b3253313a6, 0x0, + 0xbfe1412d58cea92c, 0x0, + 0xbfa4b5df65ad9c3f, 0x0, + 0x3fdd25d00f25cf0d, 0x0, + 0x3fe78b4cc9f8507a, 0x0, + 0x3fe0c963047c527b, 0x0, + 0xbfb235d4abb88811, 0x0, + 0xbfe0543031609deb, 0x0, + 0xbfe46baf42ae22dc, 0x0, + 0xbfdb288a59da0b2d, 0x0, + 0x3f99d263f28cfb44, 0x0, + 0x3fe29623fe9b759f, 0x0, + 0x3fe7d5c0bbdee853, 0x0, + 0x3fdcf2341023062d, 0x0, + 0xbfa01e4bc9136615, 0x0, + 0xbfd7e0888ae3d51a, 0x0, + 0xbfe35276840af1d3, 0x0, + 0xbfe0fae61aac423d, 0x0, + 0x3f914d9d229f3db5, 0x0, + 0x3fde6e53e2a9956d, 0x0, + 0x3fe4aa08e52a82fa, 0x0, + 0x3fdce3d3a06b9326, 0x0, + 0xbf99a0bd453dcdc8, 0x0, + 0xbfe03ff2f741a327, 0x0, + 0xbfe70b877795297f, 0x0, + 0xbfe307dc4a955df4, 0x0 }; static const uint64_t in_cifft_noisy_2048[4096] = { - 0x3fab0667ea63d9a0, 0x0, - 0x3fd1a1e3e4be0ff5, 0x3fb71ddb3c79e188, - 0xbfefaa3877d737da, 0x3fe598fc4ba3c24a, - 0xbfe7e6857b0d9963, 0xbfe87cb9b7ca31c6, - 0xbfd73590c05d331c, 0x400427513e5ef838, - 0xc009fc5bc8cb6ed3, 0x3fe8f5336e6e1d5a, - 0x3feaab07751eec7a, 0x3fd533df19f6eff5, - 0xc0020ad2d063117c, 0xbfe7f44595a35676, - 0x3fe629e38f190220, 0x3fef0969585a66ca, - 0x3ffad0eda14837a7, 0x3fdf7e92fc4015c6, - 0x400613c19ee02914, 0xc00f21c030f929f6, - 0x3ff390abe9290e78, 0x400981bc36445060, - 0xbfeb9ae4edb826d1, 0x3fab136a46ab7180, - 0xbfe3239f4201afa8, 0x3ff1de57ffa14496, - 0x3fa1c007ccc26030, 0xbff5b2f5e5069eec, - 0x3fd5b6855050a801, 0xbffbb51bff7732f6, - 0xbfab455502c69240, 0x400bfa74f904fbd1, - 0xbff8f935ff080dc3, 0xbff74a3124482daf, - 0xbfc734a6f14a3648, 0xc005ec1c346671fa, - 0x3fe70605098af7be, 0x3ff4d87e13924b0a, - 0xbfffb134ac8a1b46, 0xc002c348637c2310, - 0x4002546c566895c2, 0x4003a095ec899fe4, - 0xc004362302515ed4, 0xbfe2b343ca7af20a, - 0x3ff5cbec53ded73a, 0x3ff405d45594aa6d, - 0xc005fd2c3157892d, 0xbff5d7e8a1063174, - 0x3fe3f63a38e3ad48, 0xbfd25903e6ea1fb6, - 0x3ffccdb481f780d0, 0x3ff1c88fcb293802, - 0xbfd224bee7df1ce7, 0xbfb5fe8bcfaba704, - 0x3fc19810c1fa7fe8, 0xbffb9e93deb2cac4, - 0x3fedec5758a295e3, 0x3ffe1853295d655a, - 0x3fad9b49a8e91290, 0x3fea247433657a76, - 0x3febd35ab23f65ce, 0xbfe9f691be2032ea, - 0x3fe839cec18adc18, 0xbff54e236f330b98, - 0x3ff7c0a0b343941f, 0xc002ad9721dc769c, - 0xc002937a3e89e99e, 0xbff5a5bbb07b0030, - 0xbfdcd4951085cb62, 0x3fe79dd387dc3848, - 0x3fdaff8b21232b38, 0x3feafe69312f076a, - 0x3fc0e4cf0f1a4d8c, 0x4003f260cdc08a04, - 0x3ffb332a33646f9b, 0x3fd43efda14d9a40, - 0x3f80a43ac76c8d80, 0x3fda7d94e91edcd4, - 0x400309d0ae39c9a4, 0xbfe668249462f128, - 0xc0011af4c7efde74, 0x3fec7cbf1c22dc3e, - 0x3fd2a2c8fabc3166, 0xbff6bcb1cbf737f4, - 0x3ff3007f4c6392ca, 0xbfe8ee44567e4638, - 0xbfe4abec04b9acd4, 0x3feb21fd0c5ecfa6, - 0xbfa74d051fa420d0, 0xbffab532c9e3e56a, - 0x3ff07aac3a8ec396, 0x400bdc0fa9e02c7b, - 0xbfeb44e313591f1e, 0x3fd7ba5ef648b170, - 0xbffef7746bf16471, 0x3fe70587f0a08a47, - 0x3fee62e257314cf2, 0x3fa9a029bbf36a50, - 0x3fcfb7c54e2ef753, 0x3ff9d076e7aedaa6, - 0xbfde97b6a990c067, 0x3fb301d1d1321a20, - 0x3fe78a4592911e15, 0xbfd04a7f93baac0d, - 0x3fb221246b2dc3c4, 0xbfe6637991ff0eb4, - 0xbfaa056c684910a0, 0x3ff7997c377567d4, - 0xbffd1336570d1f6f, 0xbff117457a47b937, - 0xbffcf628e198719b, 0x3ff87d89bdffbbca, - 0x3ff63b1fb9ccf31e, 0x3ff3459bf4ab3099, - 0xbff355e0c2ca12fb, 0xbfee95b0e50bc52e, - 0x3ffe1c205496763e, 0xbff16241400ce109, - 0x3ff13430695c3773, 0xbff3532b30c70ee5, - 0x400602740152b75b, 0xbfda44d68ac65d7f, - 0xbfeb5506558e6ed4, 0x3ffa2095cf4bb61c, - 0xbff64e5dc707944c, 0xbfdc0fa57dc25912, - 0xbfe6dc4a5ab95df0, 0xbffca0d8a9b193ff, - 0x3fed079149ef8a3a, 0xbfd1eb64a0b5842a, - 0x3fef72b9e48c852a, 0x3ff6fb233462ca2a, - 0x3ffcf52564179636, 0xbfee9dfb6929417e, - 0xbfebf46a28ba0fe4, 0x3ffa793ff22a8c36, - 0x3ffc2daea60678a4, 0x3f9d1daf4fac3860, - 0x3fa6868705e5a590, 0x400647ee3b8e0766, - 0x3fc21738b5b8a71c, 0xbffd4320edc71cb8, - 0x400210c83f1f62e0, 0x3f93753362cf1200, - 0xbfdb1979d829d552, 0x3fe5a640e34360e4, - 0x3fdb8c2f79db80bc, 0x3ffcb23b538a05fe, - 0x3ff0053a3eeb0d91, 0x3fff7feaf5e0d186, - 0xbfeca4cf15ba45ff, 0xbfad18d529a02cc0, - 0xbfeea7a01f647976, 0xc0026710d01462a2, - 0x3fe1ea3621bb7d47, 0x3feb141ba4b93555, - 0xbfeb4823cf3179bc, 0x3ff0e7ad8ab45e40, - 0x3ff0afcc77d0d398, 0xbfd91663d9997802, - 0xbfcafe088bbea8ef, 0x3fa896c3b66364a8, - 0xbff25cb3d1c7872a, 0xbff470b0c1f2a236, - 0xc011cdae691ee316, 0xbffebd7e503bf00c, - 0xbfe0241ba149f48a, 0x3ff3bf68270034a2, - 0xbff3a974ee2f6a51, 0xbfccd4ff2f86d7e4, - 0xbfbfe6416ead3388, 0x3ff5a513bab042d1, - 0xbfb28cc0d36a29fc, 0x3fc10e55202a5fa0, - 0xbfe76630bd1d4a2a, 0x3ff88c29d4e63e4f, - 0x40045c2c0cd00bb8, 0xbfe16fdf624a3013, - 0x400a087f923deb1e, 0xc0058e70c237bd94, - 0xc00505f301ee5af0, 0x3fe8e45dfd6a9883, - 0xbfb6f292b765595c, 0xbfe3ba3ad00a68a8, - 0xbffb9ff4e88027b5, 0x3fd4ca1c0fbaa95c, - 0xbfce9f6b2c0437c6, 0xbff62e39e342ce3e, - 0xbfdc98032bf4dea2, 0x3fd20d3fafe1042c, - 0xc00aca0d80570f3d, 0xc008bb7050a541a0, - 0x3fda0e27b9ee5688, 0x3fe9bab37b7feb5b, - 0x3fe728042b64fb97, 0xbff5fefab832dd44, - 0x3fc3bff64bdb62f0, 0x3ffa510fc8a12923, - 0x3fd40368d4dfd970, 0xbfc3795cdfec1ae0, - 0xbffe7108edcab12b, 0xbfca912df09b4800, - 0xc0057cb01d728d01, 0xbfe44c364cfab8e6, - 0xc0000a534a180190, 0x3ff033ddd6289512, - 0xbfd4851bdf2ec2cc, 0xbff88fd56c029602, - 0x3fe71c12a56822cb, 0x3ff45a6169c45d5e, - 0xbff63bc625d56448, 0x3ff0c5319c16f3c1, - 0xc00e4b194e5008f9, 0xc004e247b6473136, - 0xbff01c598c7faae2, 0xbff29fbc40c7521c, - 0xbfde4a10adb0bb74, 0x3fef2065f7efd61b, - 0x3ffdf25ed88f7ea5, 0x3ffb165402eb70ec, - 0xc003461de256e343, 0xbfcdf031078e1da8, - 0xc004f15568c73a2a, 0x3fee51fb363c7aff, - 0x3fc89f0bf231f1a8, 0xbff289403170e94e, - 0x3fec613988b5e029, 0xbffaff23c0d6c288, - 0xbfe9a102c9001bf2, 0xc00401d7c6f2ab37, - 0xbff3f5cd6c33a784, 0x3ff4f1bc7b399360, - 0xbfc70dc336a75462, 0xbfe8721a9745bf26, - 0xbfe5567d02d12794, 0xc00b94dbdb6a8302, - 0x3fd1ce394bf5845c, 0xbfeb28f40930ac79, - 0xc001c081644b467a, 0xbff0bded14d0ba14, - 0xc00245070f87526b, 0x3ffee30fbb8d45a9, - 0x4009e867dc593320, 0x3fc27892d70137c0, - 0xc0001d38534a32b6, 0x3ff1a53669dd47ba, - 0xc004495aa3e38364, 0x3fcd812a15d35c68, - 0xbfeb1d3b2ace8836, 0x3ffcacf0c2045b3a, - 0x3ff61cf1a60228d2, 0x400e8ac97c1b9d87, - 0x3ff0b8494dda2544, 0x3fd87d6d817b9db8, - 0xc00a51198dae5a7a, 0xbfb83e8b50345214, - 0xbff2f93bd90782f9, 0xbff516b50b48c390, - 0x3fe936b9d8ca33f6, 0xc0012a6e064adcd1, - 0xc004afc05faec744, 0x3fce26efaae863fe, - 0x3ff9380bfcd71964, 0x3ff6c30f1b84090e, - 0x3feb4003f67edd8a, 0xbff0087085aa1172, - 0x3ffb0ab2f9197d38, 0x3f94c17af06bfbc0, - 0xbfcd6ea2396871ac, 0xbfe6cd5bf5d91f29, - 0x3ff386e8eef53ad8, 0xbfb3d4c543f70950, - 0x40037bab81fce327, 0xbfa442ac08005988, - 0xbffb2a246eb0345f, 0x3fefa5f417ffb6d9, - 0x3fe07266263c0578, 0xbffdb5469e21d0e2, - 0xc00133f971cc443b, 0xbfe29278029f87e1, - 0xbff9467b12e9f774, 0x3ff6beb4c5ffda14, - 0x3ff23db602edeeae, 0xbfc7de24430462a4, - 0xbfccdddb7f111320, 0x3fd2cb426f1f9bd8, - 0x3fb4a9e1723fe9f4, 0x3fe0759ccec36073, - 0xbfe703c159c8aec0, 0x3ff0a20624d18af7, - 0x3febcd43d77e37e3, 0x3fe5955f49312257, - 0xbff03b4805860b04, 0x3f79555f8c563880, - 0x3fc0db329ebf652a, 0xbff4e7a17653b24f, - 0x4004ba150c515f94, 0xbff47acf9766b555, - 0xbfcc840e835fc966, 0xbfd656a844f6f16e, - 0x3fd936823feb830c, 0x3fea5a9ead5640e4, - 0xbfe3563d8819c575, 0x400400d28df6aca2, - 0x3fbffdf985bd79d4, 0xbfd8a2457883a55b, - 0x3ff6ad40188280c6, 0x3ff0ce28ff1004e9, - 0xbfe1591f88eee6c8, 0xbfe1f5368db5abae, - 0x3fce0d28a2313658, 0x3ff90944a5d50e68, - 0x3fd7c4c60583e4ad, 0x3ff3864fffc7f032, - 0x4003393e1147695f, 0xbfdf4b3a175ef3b0, - 0xbf8f60445994b280, 0x3ff800dc2c1c0fb4, - 0x3fc485345f071e00, 0xbff3240067240cf4, - 0xbffd1f4a6753c876, 0x3faa942f396eeb60, - 0x40104d4ad8774026, 0xbffe1fef24e8198e, - 0x3fcd79d5fbf2f1e0, 0x3fe2b118c3bf6260, - 0x3fe15ddc0f1cdd00, 0xbfd4352fa1b340b8, - 0xbffb7c6cebbf8619, 0x4000e97288291f16, - 0xc0047e419f0a2424, 0x3fe997d2a93d26fa, - 0x3ff463fa5e323ab8, 0x3fe9a01f0aa8cff0, - 0xbfe7c056b67471f8, 0xbfffecefe14bb759, - 0xc00129cc4111906c, 0x3fde4b35c84ac0d2, - 0xbfd2b973346c1110, 0x3ffe9213f73f861c, - 0x3ff3f4416d18446f, 0xbfe00d53e22e3a9a, - 0xbf846d3194905980, 0x3fe2f390fa98c8d0, - 0xc006ad1d01e7223b, 0xbffa4be46d0af6f3, - 0xbfb95d96496c5fd0, 0xbff10e053ff64237, - 0x3fed9e0c3c4c8a9a, 0xbffcbba670d7ebcb, - 0xbffdbdecabf7a535, 0x3fcb2a4e69036dd6, - 0x3ffd9aa4ffafc0ea, 0xbffd8121246479a0, - 0xbffbe4b82c536f8d, 0x3fddf37dfd98c8b3, - 0xbfe48fdca90cbcfe, 0xbffc1b7d58a5c566, - 0x3fe3bea5bcff86ee, 0x4010a472dbb92297, - 0x40042f8a4da3bb0c, 0xbff68bda0aaa9d28, - 0xbff243d4da38e2d9, 0x3fd01c8d5f8f88ca, - 0xbff1e14dfe9fbcb2, 0x3fef513443c10e73, - 0x3fe838735c6fbe3a, 0xbffcf1486c6aed40, - 0x40074f7b75c7bfb8, 0xbfe5028a7931477d, - 0xbfecc890111a813c, 0xc000cb914ebc5068, - 0xbff8e109c24d23b0, 0x3fe20c70bb2c27cf, - 0x3ff97b2dab0417d1, 0x3ff15b7e6dfd18ab, - 0x3ff19dd78fe14ba9, 0xc000e77ebdaaba68, - 0x4000acc75125dfb8, 0xc00a0946ea11a4d9, - 0xbfa91e50dd52134c, 0xbfc2d673d0f9a738, - 0xc00f7db9db26c24e, 0x3ff1443b2bb146b8, - 0x3ffbb22d036d6490, 0x3f8223465f676040, - 0x3fedf6bdd4010cdc, 0x3fce38697fc2a460, - 0xbff253f5b1e7c8aa, 0xbfec09d8f5c652a2, - 0x3feed18c4ab3c39a, 0xbfc0858e06bd0314, - 0x3fd94da0d40764a3, 0x400ee894d3ab53bb, - 0x3ff597e88d972139, 0xbfe1ae9c8ca19e43, - 0xbfe1df3a8bfc5404, 0xbfc0422b7dc147e0, - 0xbfce8984d023c3b4, 0x3fe533c599f5af21, - 0x3fc3f9e3fa1b9be0, 0x3ff432fcb5dff038, - 0xc0051ccd5fc9db47, 0x4002501eb3016954, - 0x3ffd9941789ae998, 0xbfefd79f29facfac, - 0x40084c40c8f6b451, 0x3ffb3b78bc6646f5, - 0xbfe360a4c340e779, 0x3ff38f053d64bcad, - 0x3ffb2ac066c23ee3, 0xc001a973d60d1e6c, - 0xc002ca5c8f72c5e1, 0x3ffe63642ba866c8, - 0xbfe18e081cf810c0, 0x3ff80f2861b8bd36, - 0x3fe8b4c1c3894f4f, 0x3feaeccee41e8ba6, - 0x3ffd3fada454a134, 0x3fc5187ab3a721b0, - 0x3fec3d011facd0c8, 0x3fe27fceeb62cf82, - 0x3fb7206362ba0758, 0x3fe118b4bbf55168, - 0x3ff0ea46f1da6f19, 0xbff47b2bf9ae6c52, - 0xbfdf4f493e22ef38, 0x3ff3f69a47e2fb47, - 0x3ff9dc27e4266b52, 0x3fcb4b199b117146, - 0x3fd89081d55f62fc, 0xbff2dd62a22a4eb6, - 0x3f8577f11abaa480, 0x3fee591e9dc10487, - 0x3fdca5759f4fa37c, 0xbfe2f23e0b7ccdf7, - 0x3ffeed27851cd343, 0x3fe0fa9a8152846e, - 0xbffde1a26a1add7c, 0x3fe47bac3a5d285f, - 0x3ffe8948605b3369, 0x3feac4a0d0d7c597, - 0x4003b6aa097c96e3, 0xc010b6d5e65c2878, - 0x3ff17906b5cba5bb, 0x3ff93186f852e752, - 0x3fe986a9138bfa14, 0x3ffd0a0e5bf0ed04, - 0x3ffc2b2c7b92db8a, 0xc00151a578c0e828, - 0xbfe838e529e37354, 0x3fe6164120def89a, - 0x40007f6831d81ab8, 0xc00271f35facb3c7, - 0x3fb4f258920201d8, 0xbff8dfd9646f55df, - 0x4006f3d8b3627e49, 0xbfed97e13053dcf4, - 0x3f88f01af0989980, 0x3fca85ca9c32898e, - 0x3fe97c0e8661ce62, 0x3fdde3d7aa92ef5a, - 0xbffc600ec6844a21, 0x3fe2a5f99021ca28, - 0xbfd2c870de880ddb, 0xbff7826a23cb0d3a, - 0x3fc865ede0e9c1e4, 0x4000fde17c24d0d6, - 0xbfcb915790f1b638, 0xbfb0ed2df566d378, - 0xbfe073582b16b67a, 0xbff959844fb176ab, - 0xbfe0cbabeb6c4472, 0x3ff7b1f615afa2cf, - 0xbff66b95f9cbf558, 0xc00c996483216159, - 0xbfe35fe1ff2ce451, 0xbff7769b8269da88, - 0xbff12f2589adeb20, 0xbfaf5c1e22e8e7f0, - 0xc003ad51007a736b, 0xbfdc53f1afc2dcf0, - 0xbfd62c756c442c20, 0xc0027146c6295a3d, - 0xc005dbfe4783c5b1, 0xbff6b9961274a788, - 0xbfd9ab2aa494c7ab, 0xbfd7985ae4bc9008, - 0x3fd96b5618c90ede, 0xc003942694973510, - 0xbff7e71e6c24f0b8, 0x3f9d25db2bc8af40, - 0xbffe8a6e7b1d1518, 0xbfbc61c5167118f8, - 0xbfe1e74d77333595, 0x40087b3a19c0165a, - 0x4005619dad723b56, 0x3ff30a04d646eb12, - 0x3fe620f7d0fc13f9, 0x400b23b69a42408e, - 0xbfa661978edd76c0, 0x3fec7790abf20782, - 0xbfdd98bac67b6b74, 0xbff645930f0bbeb7, - 0x3fdaf7aee5862a56, 0x40012e68151a5f60, - 0x4001dffe1c59d122, 0xbff2305251c9ecb6, - 0x3ffe0b5daab47d73, 0xbfe6d36a603fd801, - 0xbfffce465c8de65c, 0xc086621cae230b0c, - 0xc0037795f9b41d28, 0x3fd0d046a8a8d7d2, - 0x3ff28d411e6d45c2, 0xbfe11d2ed6a5cc2e, - 0x3febdb18039a3ced, 0x4006be1c9e04e8ea, - 0xc0042bf02d4d3905, 0xbfe0c9e2258e3697, - 0xc00857776ae9ea0b, 0xbfe04d7f1ac64b83, - 0xbff59269fe687cb6, 0x3ff42a588150bf92, - 0xbff4d81b3e3859af, 0xbfc5d91ed4e1dbf8, - 0xbf8e85b15555e000, 0x3ffe472f06ae94ce, - 0x3ff5a9c01a3c7aab, 0xc00db1d7ba1a5793, - 0x40069ab52a27ec14, 0x3ff21c8cc14acac1, - 0x3ffbca576de963e0, 0x3fdb5620013aa179, - 0x3fe7b5472a6b229e, 0x3fcb872aee0d88c0, - 0x3ffb047d29fcddb7, 0x3fd534d11505cdbe, - 0xbfdff2fdc04d03f6, 0xbfdf6e3fa65813aa, - 0xbfeacb3fcf8aa0fc, 0xbff2a5275c3d18c6, - 0xc0082bfc51d24796, 0x40076144e7e59ab4, - 0xc003e2ac85392f15, 0x3ff6acd585349947, - 0xc00a7f4f09771832, 0xc0004a90943d9a8b, - 0x3fe467e1fd28862d, 0xbf9f7f3628d6a500, - 0x3fec04a2059f41c2, 0x3fe357b3912b2542, - 0x3fe990c8497caaab, 0x3fd03bff2242f14c, - 0x3ff7b75e6c044dd2, 0x3ff1fe1147ca628a, - 0x3fef0d14e994e6f1, 0x4003e2439e70150a, - 0xbfe17adbf18a2260, 0xbfe761ad9f75fd9a, - 0xc004942284f6ded8, 0xbfb3006ffd27c7bc, - 0x3fde4300811466f3, 0xbff9a33f62b7faa8, - 0x400337acb3aec66e, 0x3ffffc968070014c, - 0x3ffd389dac704687, 0xc011793afe53305a, - 0x4013b6fc15c4479e, 0x3fee286cbf9c225c, - 0xbff1ee541f8767b6, 0x3ffb3011ee3b2cba, - 0x3fb3345fef43cff0, 0xbfeb61388bcd3ece, - 0x400bf10a2ba0ad0c, 0xc00d17481c7e8afe, - 0x40031a84b5f992c4, 0x3ff3a3e46a63233a, - 0xbff97c936aefde8a, 0xbfb718020fde5900, - 0xbfd33a2f95721c2c, 0x3ff943a78b7a8115, - 0xbffa6ab45a1bac2a, 0xc0045183301f2de1, - 0x4010c9e7b229f01a, 0xbff472569ba88658, - 0x3fc1ebe080c0c7bc, 0x3feeac53e5d6750e, - 0x3fc6582c70baab88, 0x4003641c4040b8f1, - 0x3fe921aa030acdca, 0xc006f3c5080f6730, - 0xc009e206bfb8aa7a, 0x4003dd7aca3a9930, - 0x3ff07fa3e0039d16, 0xbfe061e84bd179c2, - 0x400557fc3183a12d, 0x3fe62c46c611ff38, - 0x3ff8cd0d5d165d7a, 0x3ffd463edfd09021, - 0xbfe9351abd5427e5, 0x3fd3b58e16287266, - 0xc00e125934a5988a, 0x3ff52ce03c3dcdac, - 0xbfe4704bcf0c5a38, 0xbfb8d54081c94498, - 0x3fd9b7e3e25d8ed8, 0xbfb9a45ce4dbbe04, - 0xbffa9ff8701e2d94, 0xbfee78d0e6c3d8f9, - 0xbfa14288a51a5538, 0xc0004ff0b604e358, - 0xbff8dca0151e4574, 0xbff3520648731adc, - 0xbff362f8fc302a68, 0x3ff2eb74e95ccbb2, - 0xbfe36ce9d3468b04, 0xbfe34144fbdeb834, - 0xbff5b3e98cb29aa9, 0xbfe957fced062f38, - 0x4006b02ee2babb22, 0x3ff5da182ec26ce6, - 0xbfe1e4b1e5e12635, 0xbfb02cc96a702e20, - 0x3fed4fa5211c9c9e, 0x3fb38473a0d81bc0, - 0xbfee7df494405d0f, 0x40021df316b881d5, - 0xbf99d2d7f2d00ae0, 0x3fcbb5bb080de0f4, - 0x3fe93f7e8d7f5798, 0x3fffd5cb45bc95de, - 0xbff5ca4a71bf60fe, 0xbfd60f646633a35e, - 0x3fd3b0ab7cf2740b, 0x3fc03854840b202e, - 0x3ffc60d1b968ae28, 0xbff189bed5f8f87b, - 0x400102cbb5454045, 0x3ffec057e6945f46, - 0xbfd05c8569ff6666, 0xbffa89d7b0a2b4f2, - 0x4005f0a610869852, 0xbff5b0a44c842290, - 0xbffac4b8faf3700d, 0xbff3fcd2b4920236, - 0xc009b8ab885cad00, 0x3fcfbd5c96986f16, - 0x3ff2aea1c007e934, 0xbfeeedcb36e9839b, - 0x4005be48b8122140, 0xbfebcd4b733025d5, - 0xbff7a796b0b511cf, 0xbfe123473b423d12, - 0x3ff622bf9db44523, 0xbfd0c646647d5f44, - 0xbfc7e0ae4f92a4f8, 0xbffd75654ec75842, - 0x3ff17c1061215fdc, 0xbfe367be0de2a419, - 0x3fab4cbd947e8178, 0xc00f7a6aacec0304, - 0xbfec334e62ce2437, 0xc00975d84cdab7d3, - 0xbffa2e3e0df79728, 0xbfe5acf0debf8d35, - 0x3fe4b4e244c8f60a, 0xbff08474e21864c4, - 0xbff4e162fc24f757, 0x3fca125d759c7584, - 0x3f9ddb88acfc38c0, 0xbffe1b384eb72ef4, - 0x400730c9a6a381b2, 0xbff6543d09063291, - 0x3fe0cc5cb18a029c, 0xbfec4fca35449481, - 0x3fe118cf8d4490b0, 0xc001c6425cb669c0, - 0x3ffbf10c3073f430, 0x400a28e6259f5b3c, - 0x40031508fe4987d4, 0xbfd0983845e149e2, - 0x4006a043663d210c, 0xbffa1bcef2bd4255, - 0xbff522281326ed86, 0x3fe8713ee900103c, - 0x3fb65bd145d26c3c, 0xc000454d08f767f2, - 0xbff3e8cd1fbf7a80, 0xbff1d8e64eedfb11, - 0x3ffbd9c9b65596fc, 0xbfed16614af1c77e, - 0xbfe851a3b5f9ad68, 0xc01326d27b15cd6e, - 0xbff12402b824169e, 0xbf4c811460152000, - 0xbffda69e66fa0fd8, 0x3ff3e0de98e4cad0, - 0x3fdd97fa4d78dbfa, 0x3fa9ffe459539050, - 0x3fe7f18e9a3dfa5d, 0x3fdfed6f46b8e680, - 0xbfe9af21fcdbfbf6, 0xbff010a0b86c2220, - 0x3fffb9a7810fef42, 0xbfeb8710d042c2b2, - 0xc00de447908fb19d, 0x3f8424635955f620, - 0xbff0f20cfa89a35f, 0x3fe800bf37564d25, - 0xc0027db2a9fdb81a, 0x3feab5dd036143c6, - 0x400b73762cccf972, 0xbffcfc9489605863, - 0x3fc8843c1714e2a8, 0xbfe9496ab4198aca, - 0xbff1691c8063a8ed, 0xbff57c612011c132, - 0x3fce0f76b39d8727, 0xbfd15e797ece57c0, - 0xbfff71b28db77262, 0x3ffcea0eee2f6899, - 0x400131cc1804a6b2, 0x3fdb602382619cc1, - 0xbff5511fb65726fa, 0x3ff9322d0ad673e9, - 0xbffd17f3606fa636, 0x4000e30556c47160, - 0x3ff7921b99c8e2dc, 0xc0011bd586e5dc8e, - 0x3fb07d3ee57fe430, 0x3f8bde2c253b8600, - 0xbfb480aade3a5a90, 0x3fe5b51baeed96fe, - 0xbff822a69c7130e2, 0xbff3d4bd0540d798, - 0xbff93067daae886e, 0x3ffe4137567f9e78, - 0xbff9e7bcd722239a, 0x400b78303725e7fd, - 0xc0066b81d0a7ebd7, 0x3fed1e60b4f7bfac, - 0x3fc26aa661e18b18, 0x3fecd60bfa274cd7, - 0xbfdf9a12815ae898, 0xbfb854924840e514, - 0xbff4805a4fade0cc, 0xc008f9873458b173, - 0x3ff1f78ef78132ce, 0x40025ea046d424da, - 0x3ff5ee906e8f0698, 0xbfe6b44f7a016241, - 0x3fff77ce3352b431, 0x3ff78ee54a56f4be, - 0xbff7f6176133751f, 0x3fed6271caee426a, - 0x3fe19cdea924f260, 0x3ffa8b0e2570519f, - 0x3ff6ec2705709d9c, 0xbffa4e7adfa2049b, - 0x3ff01025bb5eade6, 0xbfe468ed593b05e8, - 0xbff9e698fcaef568, 0xbff8d83891065d3a, - 0x3fd2cdc43eef2072, 0x3ff6c84bcd9e2b1a, - 0xbffca29f3b7b51ab, 0x3fcff5eadb03d6f8, - 0xbfe382429b5fffb7, 0x3fe57f52204e0d84, - 0xbfcaec617e956fec, 0xc00b7f5e7dbb66ab, - 0xbfd519c76ac6d1b7, 0xbff0ae1ac76595a9, - 0x3fdc8a9cb6edcf48, 0xbff006e6a4af786f, - 0xc009e482052bfff7, 0x4000b061f4f95de4, - 0x4001af84e3344ab5, 0x400a96b0363e700e, - 0x3ff09f36e51128eb, 0xbff6ac338a4c7c8d, - 0x400fb5b25aae477a, 0xbfd77a3a0ce26b14, - 0x3ff6f4b55e891160, 0xbff4d0c0cebf047d, - 0xbfa0ca21ed51a8f0, 0x3ff530afa24f6d94, - 0x3ff82e7898247d9a, 0x3fd28da9db480ffa, - 0x3fe7d786c108edd8, 0x40020b6b45f759a4, - 0x3ff955e30928f4f0, 0xbfeb36265fc57d42, - 0xbff6b4063fb21846, 0x3fd2f4a32764c7a8, - 0x3fca541da11c9409, 0xbfe1f3ee3e6591e4, - 0xbff20fdcb69aa59d, 0xc011234ec3a7af1f, - 0xbff7ca2157a8a7c3, 0x3fe38daf6dbb0f82, - 0xbfe07a3952a9a779, 0x3fff05502ec0d672, - 0x3ff69fa2017f02d8, 0xbfc210fcf7c89ecc, - 0x4002d2746595384e, 0xbfc843250895cd64, - 0x3fd19b367546ff22, 0x3ff4029fe777122d, - 0x3fe3b7b37b493d76, 0x3fbfe34e0d24154e, - 0x3fff33e955cedcf2, 0x3fd046b5a2570710, - 0xbf855bc3d02a7d00, 0x3fc731f773b6ba10, - 0x3f90b8ab37908f20, 0x3ffa4b622a818ecd, - 0x3ffa07b8e7ddb6f0, 0xc005d7e06f60ffe0, - 0x3fe56462d3ef1926, 0xc0144cf2d5f65334, - 0x3ff1d858b38b2112, 0x3fe80c3f7ad48a19, - 0x3ff4d5c3b594ca22, 0xc00089cf559bd64e, - 0x3fe400b0a22ac75b, 0xbffbc59446ce08a6, - 0xc006cf3510a23ae7, 0xbff764c1912d4c97, - 0xbffc177dbef329cb, 0x3fe9016d48be7c0e, - 0x3fe557e0686cae0c, 0x3ff284fb1500b4ee, - 0xbfd727d9e7c6f3da, 0xbfeb95c4c3cf5ff0, - 0x400904b59774bbb6, 0x3fca70d30e0861e0, - 0xbffd9ac24aed8090, 0x3ffeec5a83d44f84, - 0xbfe2b0fb1346d26d, 0x3fc911181bdede70, - 0xbfc90d29b0ea06a0, 0x3ffcea1f5083a02b, - 0x40039cb2e688ed98, 0xbfbe8ed06935d0c4, - 0x3fdd3d0aeb4a27d4, 0x3fb30cb0d4009218, - 0x3ff5e084c83be079, 0x3fd288fb3b21b414, - 0xbff0cf7662b74d6a, 0x40040d44fadf01ac, - 0x3fb0db2a567dae40, 0xc00572417b907b3d, - 0xbff391cb65e3a320, 0x3ffc66ee080d8083, - 0xbff64d3daf149b10, 0xbfe467a91ef2d0c5, - 0xbff4e60445c2a796, 0xbffa3cb99c163312, - 0xbfd7e12c6c38e65c, 0x3facbf5d2b1023b0, - 0x4000f0493b02e0be, 0x3fb917930bbb0248, - 0xbfddd6a23f855530, 0xc0056925c09f7690, - 0xc0020401cc7d1d78, 0x3fe719a988750516, - 0xbfeeeb95e0bb177d, 0x3ff2f5068e19c6e7, - 0xbfe421375c045628, 0xbfe5e38b30866f67, - 0x3ff9473127ef152a, 0x3fe1972501c88693, - 0xbfd3b52f1a3c7294, 0x3ffb360c421d3c56, - 0x3ff56d653e3810d6, 0x3ff9deaf1d2f98a0, - 0xc00148c0bc82b3de, 0xbfdba6357c5c22ee, - 0xbff8b72f27a36a3c, 0x3fd6f2ae4f25131a, - 0x400cc07edb6db22a, 0x3fc3604ccf8c202a, - 0xbfe1fba4bc78e3c8, 0x3ff69b96e7ebce76, - 0xbffc2aef6341228c, 0x3fae912ae2dceee0, - 0x3fe356a95f5f6436, 0x3ff1d89c086ab040, - 0x3ff39caabe11f41f, 0x3fee07dff0af6036, - 0xbff874f5311e1894, 0xc00817b5a2642c44, - 0xbff93534632d3304, 0xbfd857b12ed21ede, - 0x3ff681fe383054a6, 0xbffbc1fd7809dffc, - 0x4016e05b76882a48, 0xbfe5916719f59e64, - 0x3fcbfcc9f52ad500, 0x3fd5bb29cdcce126, - 0x3fe26e7e8073a2fa, 0xbff36c3fc06bd450, - 0xbfefb134826ad56c, 0x3fe41c44930f8f6f, - 0xbffc6e05ab11c8d1, 0x4003a543dfad928c, - 0x3ffc005b53314878, 0xbfd4409994e8bc74, - 0x3fd590c9b08e28c2, 0x3ff6ddedc49df1a1, - 0x3ff1c66c8e30ea4a, 0x3ff1f158ef2f1711, - 0x3fa74779cb080280, 0x3fe0f5610babef88, - 0x400ee355707a6d80, 0x3fff0f93fd3db7b4, - 0x3fec699ac69bd6df, 0x3fff23298da49593, - 0x3fc458dfbdde99d8, 0x3fec5ec65307fbd7, - 0x400f43ec91accde5, 0xbfaa37a1b7800db0, - 0xc00685d9f76af322, 0xbff417bf1b9631f7, - 0x400a638c1b461dde, 0x3fe49dbd345a451b, - 0x40009b18a9b32fcb, 0xbffd8e6dc32c98c4, - 0xc002f9b80e3aec0d, 0xc01323c83e589ed6, - 0xbfee4aba1764a50e, 0xc003dae423e715fa, - 0xbff5a64e2ac6e604, 0xc00f51f01a7746c6, - 0x3fe06dbb7d27a35f, 0x3fc52193502955da, - 0xbfed77c2bcfad2e6, 0xbfdbe050f9e0ca63, - 0x3fead0d65a4f5d3c, 0x3fff0bc0e62195b6, - 0xbfd4439ffccc0274, 0xbfde1256237f7322, - 0x3ff213c3924a0692, 0x3ff2ab72846d0a97, - 0xbfdaa09e917d7e18, 0x3ff21081caed5b63, - 0x4000ce41a764a65a, 0xc001b0e43319a676, - 0x3ff90654293300c3, 0x3fe0983acc0e1248, - 0x3ff4b4079583ed4b, 0x3fe720e332f43d89, - 0xbff04b77c353ac99, 0x3ff0f03f087a4179, - 0xc00b4b5053fa9861, 0xc0010d5015b78da7, - 0xbfff1b70a78689cb, 0x3fbfdc1ce9a2fe6c, - 0xbff13b166a74c7f4, 0x3fd31c0248164e6e, - 0xbfe50f212952adb1, 0x3fe4ef9940529cbe, - 0x3fe644081f9c2cdd, 0x40028cd881d3e409, - 0xbfa19ad11524c000, 0x4002818c0348182a, - 0xc001669348aba292, 0xbfd70b98c1ae366b, - 0x3fc0ca38807cbcf0, 0xbff49b36013977d3, - 0xbff60a9cae40c6f7, 0xc0086629975a90fa, - 0x3ff9f752933f1c31, 0x3fed2e72287ebe0e, - 0x3f9da21ce57b2a40, 0x3febb877969b1722, - 0x3fdfbb214057f800, 0xbff8287094b1e3ec, - 0xbfee6f5b20c6eff6, 0x3ffb99be46fd9b9d, - 0xbfe22205ae106978, 0xbff3fa13daa6f53a, - 0x3ff06c89c6cb11ae, 0x3fe4c2c2ab0f2c88, - 0x3ff395178eeba088, 0x3f95c71b41483c00, - 0x400716dbbaea0d7a, 0xc006bfabb229b9d2, - 0xbfd62796039ad356, 0x3fefc04c2f9d5f49, - 0x3f9295fd551cd5d8, 0x3ff7158f66ba897c, - 0xc00015eedff1a4d8, 0x3fba7dbc7ef84af4, - 0xbff5c19814d499e4, 0xbfd74f1f355cd9b3, - 0x3fd7ded66915af18, 0xbfe4398da7f88d7c, - 0x3fde63d07f2f0bc4, 0xbfe4c2a61b35d876, - 0x400a739255b54481, 0xc00b4a92e58f94e7, - 0x40074955c5a2d907, 0x3fe42b5989c7621d, - 0xbfed6e4671a2f13e, 0xbfb86dc107ca3188, - 0xbff32726ae7007f2, 0x400592b352746e91, - 0x3fe917488e83f092, 0x401848e0eb1e0ab4, - 0xc007cb369a7c89f4, 0x3fe7a4d6d61547aa, - 0x40080cc39df58e2e, 0xbff4a3bcd736bea9, - 0xbff7e07f1104e8ea, 0xbfd9cb34686e7042, - 0xbff1c8cdc462ce12, 0x3fff676e307bb5b7, - 0x3ff47ceecb9eb1c6, 0x3ff0f736a9122abb, - 0x3ffbba867d318c4d, 0xbfe141c581257d00, - 0x3fcdc579074c086c, 0xbff05e3663f8816a, - 0x3ff71413ee3d0a91, 0x3ffdee24ff153f1e, - 0xbff65c6dfedf8b14, 0xbfe06be8b14b8dcb, - 0xc000643aa263ba39, 0xbfe8887aac7e1fe4, - 0x40012fcb1ef5a93e, 0xc000d0b78e1c3dcf, - 0xbff06873b80dfa0e, 0x3fcad7c6feba0820, - 0x3ffebfb092aa7e2d, 0xc001975516f75c66, - 0x3fd8e48a97602fdc, 0x3ff58250826eed98, - 0x3fedd030831fa9e5, 0xbff20dd6469ba450, - 0x3fe8841c1eab89e4, 0x3fe9b73042827f84, - 0xc004e3c5032f3bf0, 0x3ffbdf8a8a201964, - 0xbff51f021e03530c, 0x400074c06860c9ba, - 0xbff413ba8a13d4b4, 0x3ff3d3e10b00d0f9, - 0x3ff457afede5f6c3, 0x3fe90b4249ec7668, - 0x3fc621261484ae2a, 0x3fe2ebf525a3f9f6, - 0xbff78799387eb0de, 0x3fdbc5a3e9239cf8, - 0x3ff2dba833cb998c, 0xbf7b6472bffc6d00, - 0xc0080a32baa5fe3e, 0x40081f99a5a15967, - 0xc002d1f5cb12bf24, 0xc00e53ab6ee66d2c, - 0xc0029ea33295ee28, 0xbfff209b3eba836c, - 0xbff0f959c3f430ba, 0xc00778a656117bce, - 0xbfee6401ffed48aa, 0x3fd6f88204902db6, - 0x3fad97eac98c29b0, 0x40075d585eb4cbea, - 0xc00274505992451e, 0xbff74d295ec34047, - 0xc00ced17a3158c81, 0x3ffc8c088cfcc798, - 0x3ff2f1a3bc48dced, 0xbff3b147c35fc330, - 0xbfe2388aa3df92ef, 0x3fda9f93df3941ac, - 0x400130d18119f55b, 0xbfe36645dbfea346, - 0xc0022085ef34d2a3, 0x3fe264ba76b48537, - 0xbfe7be60afd25ad6, 0x3fe2fec7c036f094, - 0xc001838faaa602bc, 0x3fe0bf8f72e80fa0, - 0x40120ecbe5987581, 0xbfe8da2f128ef03a, - 0xbfc6110443722f90, 0xbfff82175ddba2de, - 0xbfd227f5443fb33b, 0xbfce626ba69d288c, - 0xbfe2f352f1f016ff, 0xbff16e288d6db0bb, - 0xbff19d4bdf0505e7, 0xbfe39a42dd1bc658, - 0xc0066506bcb5cec6, 0x3ff0c116036ed750, - 0xbfd3e97982837437, 0x400030bdd4144e98, - 0x3ff58d8c2228a8d2, 0x3ff91e75aba3d504, - 0xc00132534fe5c918, 0xbffc29235efc08e5, - 0x40041e3b6aaf5783, 0xbfe93b8f75110df0, - 0x3ff282bb85865896, 0xbfde6140e8c15e24, - 0x3ff1d10512660147, 0xbfe13a8cd43c4384, - 0x3fa2eed1ecf40c80, 0xbfc306a105985c60, - 0xbfd602a92d9b7c08, 0xbff93ab7a63e3809, - 0xbff45df97ca853f6, 0x400343ec4129c5d5, - 0xbfdbe26cf91ee4e8, 0xbfe77daa8d3af5b3, - 0xbfc6d3baccc251c8, 0xbff279ae06b9bd59, - 0x3fac0bd7954c8900, 0x40046e16a1820cba, - 0x3fe764f738c53bae, 0x3fef6e28714b8ccd, - 0xbff6e31646128c62, 0xc002e796fc792c6b, - 0x3fed2a6b1d0f4b24, 0x3fe63726b7d195f1, - 0xbff2eab1e787e2c3, 0xc005191d3a464e84, - 0xbffc4a2f6268350d, 0x40005f6bf094e020, - 0xbfed4dbf18936ada, 0x3ffc9eb3ff071841, - 0x3ff003233d0dcd44, 0xbfe976ce3968e2be, - 0x3fe6eee4a7e7d67a, 0xbffa59870075a818, - 0xbff09847036b3085, 0x3fea14d834996146, - 0xbff778bcf01abd7a, 0xbff5b447e7d619f1, - 0xbff292a86c1b400a, 0xc00864bd8d9782d2, - 0x4009900008b28964, 0x3ff89d9e5b410046, - 0xbfd817bb6a9197b0, 0x400560db3473b222, - 0xbfea4e3f7a790aaf, 0xc0027be296b5caf5, - 0x4001afca18092fb2, 0x3ffa7fb1ad2e1f22, - 0x3feaca5c34d0f110, 0xc00101097841cad6, - 0x3fdf4e6d57c697fa, 0xbffb23b5f7dd20d3, - 0xbf91fe7266714350, 0xbfeaa7bfa0808393, - 0x3ff54bda0258fccd, 0x3fd55dc0d5573cb1, - 0xbfe7e38503b5b66a, 0xbff71e3abef49e32, - 0xbfd65065a7d038e4, 0xbfe45cad42ad0edb, - 0xbffddd67142cd490, 0xbff6446d3b7481fe, - 0xbfcb1451e7c301e4, 0xc0010501525e1e07, - 0xc0011615e1839965, 0xbfec650d02aebf7f, - 0xc006dd0d158320c8, 0x3ffbc76a788ff87b, - 0xbfd90625f1fa601e, 0x3fd6c2f13f7696a4, - 0xc0012394436dc7b9, 0xbfc20abf1d5fd6b0, - 0xbfd177dfff040fae, 0x3fb2367cc8d7d960, - 0xbfd72d2d49bb18f2, 0xbfee2dfa8f6943c3, - 0xc00168017bc3b067, 0xbff3508306d2cd6b, - 0x3fefd310fac86f07, 0x3ff78d44c86bffd6, - 0xbfe0e6bb8659c27e, 0xbfe3ce34f6d969aa, - 0x3fd768711b1b1eae, 0x3ffd452a165f2aa1, - 0xbfffb2e04509dfb4, 0x3ffcedd5b696fa93, - 0x400645dedff4ca08, 0xbf8db6c832064280, - 0xbff37baaba0e2166, 0xbff42b97f40b0980, - 0xbfe7d5a11310e4d5, 0x4005a9a00ebe60f8, - 0xc00acff017db9a8b, 0xbff44758b85cae4e, - 0x3fe53c0928f9b1e4, 0xbff3612f9955847a, - 0xc001c60612e86065, 0xbfef11bb43dae11c, - 0x3fea6e82530e652b, 0x3feb0e769e0c1756, - 0xc00489ea5031e3c7, 0xbff6807502d83255, - 0x400340d7795f671a, 0x3fe18e484d697d1b, - 0x3fdcaf55ab015aa0, 0xbffef8ba165dc75b, - 0x3fb4b8265c4257b4, 0x3fe6e5dc02739411, - 0x3fc1172c335fe200, 0xbfcadce0c684ee20, - 0x40018f03bee2fbb7, 0xbfe029309414949a, - 0xc0090cfca0766502, 0x3fe6528428520a7c, - 0xbfe29e7806506dd3, 0x400284f1b84788ce, - 0x3fb416123098c7d8, 0x3fe6c51c6b6e81f3, - 0x3ff624b4a654168d, 0x3ff7e37412568a94, - 0x3ff7e5312385a364, 0xbff5da51ad3b6455, - 0x3fc49cf2c080cb68, 0xbfeaa8df341af3f2, - 0xbffb4a2456d8fd25, 0x40023a9c19d8d168, - 0xc00558d477403c2a, 0x400280aa7f8d435f, - 0x3fedb78b3f7d97de, 0xbfe4437dbf88b8bc, - 0xbff350c0481ed79b, 0xbfdb9657f972ecae, - 0xbfe81ede88103ffc, 0xbfa2697ae6f53330, - 0xbfe3f00dd20341ea, 0xbfe2bd271373b54e, - 0xbfeb7c1e45d51b06, 0x3fdcab54a48d7b6a, - 0xbff3de0201e7ec5a, 0x3fd19068b8931fe6, - 0x3ff3bb6f9d8e4a12, 0x3ffb24da8f3efa3a, - 0x3fdb4c309c22fdf8, 0x3fef5a4e4c2ac2b0, - 0x3fdbc9038ff75f3c, 0xc008e09bd90cc3ae, - 0x3fc66450fe61aec8, 0xbff06fe6762d63ca, - 0xbfe2844e401db330, 0x3f8f7894205b2300, - 0x3ff085decdc95dd0, 0x3fe903fef786cede, - 0x3ff65364a5714ede, 0x3ff7fba8022e4cfb, - 0xbfe82841bafbba68, 0x3fe199c73d233d85, - 0x3fe82efa47c8e63e, 0xbfe97eff5c471e35, - 0x3ff00365fda41240, 0xbfe77d8873919052, - 0x3fe8f70fdc9237bf, 0x3ff6ab6b2d155aee, - 0x4004e27ea7603980, 0x3fe4615a4f021198, - 0x3ff00bad0c7895a2, 0x3fd8bade9778cade, - 0x3fe1434125f44f24, 0x3fdb2616eb88051c, - 0x3febc7d95ded924e, 0x3fdb3f5ba296d2ed, - 0x3fda0485a1c1d4b5, 0x400678aa84ec00ec, - 0xbfe992db85fd7934, 0x3fddd84a930029e4, - 0xbff22a8d9ada5adc, 0x3ff5992f27098c9c, - 0xbff22c3849416abc, 0xbfcaf1e7ebb311a4, - 0xbfe1b23a8f5ed262, 0x3ff09a3448cc5062, - 0x400c35ce985e9aa9, 0xbff8b06a53c7de32, - 0xbfef59c465543a3b, 0xc000831cce427932, - 0x4018fc992c24b60c, 0xbff0d831b088be3c, - 0x3fbf88377e83cd98, 0x3fe03a9f64da63e5, - 0x3fdd670b8453b0cc, 0x3ff989d28d1fe2e8, - 0x3fe327d7c0288370, 0xbfdfc6ade66add2c, - 0xbfdd094ec9ee3d72, 0x400a34fe501db972, - 0xbfcc8ae2a162cb54, 0xbff24f078c0f564f, - 0x3ffb5035a717a0ac, 0x3fd49fcda289377e, - 0x400457cf161b39e4, 0x400101739dd0375b, - 0xbfdf0661a28b2d4c, 0xc00072a8523028a5, - 0xbfe04dc88a0706fd, 0x40049b64b8b89f32, - 0x3ff62fd8717c653d, 0xbfefbc6027dd9c96, - 0xbff7506e3744d588, 0xbfdbc9f830b07d7a, - 0xbfe3aa1312d706f0, 0x3ff72fcf68585a9e, - 0x3ff23cafe65aec43, 0x3ff8b01ead8dd308, - 0xbfdebd85c13398f9, 0xbfd25ff35db8dab8, - 0xbff9d1390d2cb2b3, 0xbfe958f5ca82f3ce, - 0x3ff629303816406e, 0xbfdfdf9ac252cfa8, - 0x3ff1f4449b10e05a, 0xbff18af9bea39496, - 0x40029dc92d5894c2, 0x3fd6afb6572c60fc, - 0xbfe1be085a3cf7e0, 0x4004cda50694f190, - 0xbfe79ebfe2f9ecfd, 0xbfba82102cfb7828, - 0x3ffed2e19dc73271, 0x3ff2c0ad8e589526, - 0xc00b318186f4a83f, 0xbfd5abaf6bf730ac, - 0x3ff0396d23db3a06, 0xbff9ac20c576f6fe, - 0xbff8a34dd41125e1, 0x3fe36c634f53df67, - 0x3fe0d7538c56aa84, 0xbfb6296b22414cf0, - 0xbffb9743be70b050, 0xbff3a9f32f6f0b92, - 0xbfffe26f77c307ac, 0xbfeec9f65e633de2, - 0xbfc0d420e2044ef2, 0x4007a0bc40474a17, - 0xbffe261eec2ff144, 0xbff6d9717d54988c, - 0x3ff23921b8e0bb6d, 0xbfc115ca0f828b58, - 0xbfbbf8d2eca0cd6c, 0xc00424a3a9c4f1e8, - 0xbff3387e10dd6322, 0x400ec7d4c74ba0f4, - 0xbfd2f3c90f5c3b9c, 0xbfe4720fdfb91dfc, - 0xc0096f39f7abdf7e, 0x3fa63daf33dbc800, - 0x3febe6a2bd0e6c3a, 0x3fe20d59e330a3b9, - 0xbfe68a452bcb1132, 0xc0027f121aef25ca, - 0x3ff3c68b92f35536, 0x3fec073f2420f350, - 0xbff9e2edb55866b0, 0xbff4f4dbea7cd2cc, - 0x3fe50be6efa661da, 0x3fd46a180bb11464, - 0x3fef0a3e14144916, 0xbfcaf1efd6e016a8, - 0xbffdf16849c9c9ac, 0x3fe7af3ddf7d3066, - 0xc009870c704b1149, 0x3ffd1d9167b2d0b0, - 0x3fe3ca1aec9ef9c6, 0x3ffcfa77009a7dae, - 0xbfdc770da16937b1, 0xbfc6b0efdc45f30c, - 0x3ffd47769743519c, 0xbff8346379ca28a8, - 0x3ffd76ec340b1802, 0xbff7667bbb6e86da, - 0x3ff94de9bee5b8c3, 0x4006206aa6d90529, - 0x3fc44a6b003e619a, 0xbffcda5eafe75584, - 0x3fc4a2fcf882f930, 0x3ff8683819e36686, - 0x400228a750cdbcb2, 0xbfb838b09a6091e8, - 0xbfd6fedb2fd77514, 0x3fe1dcfc4ce0b513, - 0x3feb2ce0252249c4, 0x3ffb9c67d1661466, - 0x3ff0df6d222413c8, 0xbfe195520515a570, - 0xc0053e4e9f999819, 0xbffc7f3cd63c693e, - 0xbfe73e2be1c8c758, 0x3ff3ce66f2b148d4, - 0xbff3f57b2cf60fc8, 0xbffec368ff307f66, - 0x3ff72736e3e84e71, 0x3fdf09526675bd50, - 0xbfe53eb2a4aa9bb3, 0x3fdc8f166d556934, - 0x400b38116e5d5a61, 0x3fee29d19b609e6a, - 0x3febd784eb6181c0, 0xc009e6fa9ddf98ac, - 0xbff21315d656cc3e, 0x3fbe52923fa71e98, - 0x3fd1ccfd9601f406, 0x3fdb86f0c0013190, - 0x3ff23947d39d018e, 0xbff052d500760b9e, - 0xbff34a0d320c4086, 0x3fec88e60a81cf5a, - 0xbff4c2be5057b01a, 0x3fe2c8eb0d821ce3, - 0x400e1f99b9329575, 0xc005df8634e941f6, - 0x3ff78d1670995eca, 0xbff1778c8d5c9271, - 0xbfd4b034fce982bc, 0x3ff76c0d739c1f3a, - 0x4000a386e819caf0, 0x40006f11f8aaa904, - 0x3fd9484ce812cf37, 0x3ff73b29fac4efe2, - 0xbfc5483735bd43f8, 0xc00a17db6cf3f7a2, - 0x400065d17fe358b6, 0x3ff78b39acd60a21, - 0xbfafb9f92df293c8, 0xbfc46e802f9e4f60, - 0x3fdce64283b952a0, 0xbff5f89aca4d14a8, - 0x3fd1118a26dd88f6, 0xbfe6992741b405d0, - 0xc00da77d3aa1cc4a, 0xbfea3dfe2bd73c72, - 0xbffe7ad202b9ddf8, 0x400d9b980aee39d4, - 0x3fe9f78135859014, 0xbff4a7da064aeb91, - 0x3fca48eaeb46d918, 0xbfe768f36231568e, - 0xbffb5ddeee8d847f, 0x4005c04f44d208b6, - 0xbff85eaf992c8266, 0xbfe320282b97e5cc, - 0xbfe8ad4236fa1394, 0xbfedae08b72a79a4, - 0xc003a9e22ea28e6e, 0xbfbc5ca912b26a60, - 0xbfd76ee1316ed9d1, 0xbfefa8f731733d5d, - 0x3ff49dd6fbe700a9, 0x401111713a51ba08, - 0xbf9c2bc1a4781280, 0xc00481f0c673dec4, - 0x3feac531122a55b2, 0xbfe3170fb1f352d2, - 0x40029ed73c954e9f, 0xbfed544c1ff656dc, - 0x3ffb6302d1386d04, 0xc00460818ced306c, - 0x40038f2f3e946bab, 0xbff2e4bccf47cb1b, - 0xbfdc51c20e138810, 0x40035e7800a694cc, - 0x3fecf07da35646c2, 0x3fe8abb28aa84f83, - 0x3fc1d0a823669c62, 0x3fa913e86730afb0, - 0xc002dc87781fb672, 0xbff70fe189e5a55c, - 0x3fc2812cfa4f61b4, 0xbffde6770e3b852c, - 0xc00067a126d4f92d, 0x3fdebbfa5e439822, - 0x3fb1436a076cb178, 0x40023981175af679, - 0x400b788e80f8c9bb, 0x3fd83a3b99f5b027, - 0x3ff8037afda9ffb6, 0xbfa476360015a718, - 0xbff16687475aed66, 0xbffc9bb13360bf0e, - 0x3fa90d8f5cd615e0, 0x3ffc20351c46de3f, - 0x3ffa9d6c00024732, 0x400050cb090c3e51, - 0x3fe6060e054c1852, 0x3ff8e7706510773e, - 0x3fe4af6ec58dec0d, 0x4002e33952270482, - 0xc001512aa8e8552e, 0x3fcd09dac3987b30, - 0xc004ff4b53e19403, 0x400140bd2243cdf0, - 0xbff419839d429d62, 0xbfeba7969e3db09a, - 0x400a616177c704bc, 0x3fdb0d22f9742716, - 0x3fb0723acebf8298, 0xbff5b338ad583d32, - 0xbffba5d3fe69d600, 0x3ff45f84a433f398, - 0x3ffe57a5a388c7d8, 0x400144173570830c, - 0xc004a49fc4e0100a, 0x3fd0a38e1e435aa7, - 0xbffbbf7f7c7104d6, 0xbff1657f57023b69, - 0xbff45074bf7a947c, 0xbfed1ea6c2ca65b4, - 0x400747716a156ba4, 0xbfec6d2645ef1280, - 0xbfe7dff06e383e28, 0xbff7b989894b70d7, - 0x3fc491e4c2522b80, 0x3fe7c69d5eddb65c, - 0xbffddb0646d01907, 0xbff293d034a74f32, - 0x3fc91223fbc0ef28, 0xbffbe8343a41ca88, - 0xbfec96a7bbe75d18, 0x3ff6f278b5efa062, - 0xc0030c2aecd8e3f6, 0x400781c3a859ee2f, - 0xbfd0a6abdba2a1d0, 0x3ff9f913a140d57c, - 0x3fcb4cfd263ee700, 0xc010adc59b3a7c40, - 0x3fea2cdde839167d, 0xbfffeca7c8fe3866, - 0xbfef198795806dbd, 0x3fdbbcf3981f95d8, - 0xbff022849536695c, 0x40098f7da8eee7da, - 0xbff14570920d1e58, 0x3fec342b3a0b14e7, - 0xc0014d63d0fffba4, 0xbfd72bed967534a5, - 0x3fe30d364cd7a22f, 0x3fdf1d10cb2c5958, - 0xbff81a6c48b4c459, 0xbff6666651de4f04, - 0x3fc920e7f0b74d88, 0x3fcda19a8a6cbba0, - 0x3ffbba8bd62f6e46, 0x3ff7ea56e9a6e540, - 0xbfeaf851b46f6ef2, 0x3fe7890183564b74, - 0xbffe0b8f954dbf4c, 0x400789e13d562ec0, - 0x3f5ede7e7bf83000, 0x3fd9acbca0e68cd3, - 0xc00caa9459fc8f91, 0x4004a7dce9ac8220, - 0xc009b66ab24264aa, 0x3fb8154cb84d3fd0, - 0x3ff5eafc70923f80, 0x400be81f2221d006, - 0xbfd33399e8b3c90e, 0x3ff5bec62c8baac3, - 0x3fd1de786e138fc8, 0xbfe13fddce7d72bc, - 0xbfd4fb783b9a60b2, 0xc004bf50f0c9fc5d, - 0xc005f89bc7d1a151, 0xbfff31b6eb740c2a, - 0x3fd3867d9ef54d87, 0x400473af2eecdc70, - 0xbfe4d3f256e003c4, 0x3f97041271df12e0, - 0xbfd4d9a978d3946f, 0xbffc4ac77b56d5d2, - 0xbfd31fd5a62c1750, 0xbfd5aeff3c61dad0, - 0xbff939122599af86, 0xbfe652efdbaa681c, - 0x3ff91904e4093353, 0x3ffad424e654ad69, - 0xc0002e1d8d6e64ac, 0xbfd48eaf92f2bc07, - 0x3ff71bb363b1ba32, 0xbff15ebee223a724, - 0x3fce2d9528f8a9d6, 0x3ff3281f7a9082a3, - 0x3fe0c4200b8c1392, 0xbfda9eef2889eb36, - 0x400ca4de41f7bc34, 0xc002afc3bb069089, - 0x40060bae5f02ea1f, 0x3fcd608f2ac94db4, - 0x400095c67e25bfd8, 0x400878096c4074b0, - 0x3feebf8c746576af, 0x4003e999332dc392, - 0xbfd51e8072a0e7f0, 0x400dcf7c22b2c641, - 0xbfddf6e428c28940, 0x3fe3922cd98b394d, - 0xbff4d9ce7b988a39, 0xc0035bba4a0bb8fa, - 0x3fddd54d017e7e6c, 0xbfd25addd9bea46a, - 0x3fd2ad6ee510b06e, 0x3fe9350a1d4f0970, - 0x3ff73051d454cf2f, 0x3fe70b687d609562, - 0x3ff2f8cdec2cc272, 0xbfa0b4bc6bb17ca0, - 0xbffd6688c90fe7c7, 0xbff10cb01b2f4203, - 0xbff782d7b7b62e11, 0xbff1da81c8f4cf5a, - 0xc000159995adbddb, 0x4000339dc3c5e20e, - 0x3fdc2a8b10b5748b, 0xbfc57e986a8b2d87, - 0xbfe5a3a0f0251b26, 0xbfbf28424759e7f0, - 0xc012da791a910386, 0x3fd3f1d5f388afe8, - 0x3ffe30d97ff65e0a, 0x3ffdbec1361c0733, - 0xbff1b9b830e9c3a2, 0xbff206d538b3ea6f, - 0xbfd4c04a28f61dbc, 0xbff350fb5ce19d0f, - 0xbfd90242a386bff0, 0x3fe3583ef4e5a39a, - 0xbfbed419ffa153f8, 0x3fca6e101b24c334, - 0xbff12c6736448e30, 0xc00740cadcdd8f38, - 0xbffb99e8efb667e3, 0xbff0035acfe3d90b, - 0x3ffad0ab205e2e3b, 0x3fe243df4257443d, - 0x3ff9a33fe9a3c0a5, 0x40000343b2be15a4, - 0xbff1c5ea8f08e1bd, 0x3ff2e2d02e3ad890, - 0x4001f00fd777d30b, 0x3fea3c64510961e8, - 0x40082e457b525474, 0xc001a569573954d5, - 0x3ff1e5044e7703a5, 0xbfdc78a583f785fc, - 0x400c02fcde5228a6, 0x3fe259de94385484, - 0x3feb26e2b678b224, 0xbff60cb709d2471b, - 0xc00043ace589ba18, 0x3ff0f1fe6e27f7a2, - 0xbfdd19dbc9acf6fc, 0xbfeafc83f1309c8e, - 0x3fe3f42a7e5e48a6, 0x3ff2a937b76490d6, - 0xbfb10c9e6b3db142, 0xbffb1b7217e85488, - 0x3ff1201c2d3ee102, 0xc00199fdd604f2bc, - 0xbff22d8f5ff45f98, 0x400448358e83f812, - 0xbffa4668420523e1, 0x3fb1a8678e6975b8, - 0xbfe664ca5f20b14a, 0xbfef686c984eae46, - 0xbfec45ecfa5a701c, 0xbfdaaf5bb1a99f26, - 0xc004f4e1fa369d56, 0xbfff6dc1ba1d9403, - 0xc001d1e31f834d12, 0x4004205471f1ee82, - 0xbff2e88b40afd370, 0xbfd376d4f05ba614, - 0x3fdccf74a6e8973e, 0xbfc3525c8bc6280d, - 0x3fe6efcf5f17e0b4, 0x3fdc17264eb58579, - 0xbfeba48195b5aabb, 0xbfdc8e550ab648b4, - 0x3fb752d14cb7d854, 0xc00be5b91b7c9802, - 0xbffd096da95a4a4e, 0x3fc90f2c619eb023, - 0xbff62f6264222894, 0xbfa8fac2ef72e400, - 0xbfea8aeda7ce85bd, 0xbff358969c1a135e, - 0x3fd93def1aa7a694, 0x40016e2b37b3574c, - 0xbfec2155728f91b0, 0x3fe00b8c6d5819fe, - 0xbfeda63ed8737353, 0xbfcfdaece77b7480, - 0xbfd614014a5c5354, 0xbff0a0d452ae833a, - 0x3ff661d27f2d3990, 0xbfe1e972a964f412, - 0x3ff4ad29a19f562a, 0x3ff607c65095c2ad, - 0xbfe222a2c4ec7dae, 0x3ff720c81d9c6a1a, - 0x3fff412478d185ed, 0xbff373964a2048e2, - 0xbfb85fc12966c960, 0x3fe245ca81373880, - 0xbfddbabb8767832c, 0x3fff6cabd84fd1b2, - 0x3fcd3d22b1aa450c, 0xbfd50e797f8a04ba, - 0x3fd495a57e82b8a4, 0xbfe87bd55cac597d, - 0x3fffffc3343f16d9, 0x3fc584b60769ecb0, - 0xbfe72ddae1be877c, 0x3fe9bb9f77012226, - 0xc00902a2c504ef88, 0x3ff68fdc55637328, - 0x3ff0e33b3cdc734a, 0xbfc921c5874f69da, - 0x3fe12ac60848a938, 0xbfdea42162230650, - 0xbfff83fca9ccd91a, 0x3ff98ffa10d43768, - 0xbff0bac3e47f737f, 0x3fe63f9f3a1e0251, - 0xbfffbc217f295d13, 0x3ff87584e97a16b8, - 0x3ff720873f89a588, 0x3ff1603b982eb49d, - 0x3fe092855133a079, 0x3fed95ee61aeb66e, - 0xbfe465aff93aef44, 0xbfd14308a8a808e5, - 0x3ff131064ca45909, 0xbff381534f8f20c4, - 0x3fdb9ce52ad6e3ee, 0x3fe9246d94f8f44a, - 0x3fc8012a84ba2c42, 0x3fdf0561d16d9c37, - 0x3fec5c50cbd44e9e, 0x40099288b39a4903, - 0xbfd5f654a794fe4a, 0x3ffbb87bd2f9d617, - 0x3fe1ec42be5d6a17, 0x3ff983f667728752, - 0xc005ce4a80f1f041, 0xbff14366a1a2b341, - 0xbff80908beccee3f, 0x3ff926d0f3f72963, - 0xbfe83024a398be4d, 0xc002c1169b7a04c7, - 0x3ff8fc1e39242d5e, 0xbff3363c2acf888c, - 0x400d0c3d87af11f5, 0xbfefd29ab3ecf3be, - 0xbfeb6ede9db3d79e, 0x3fdcd97d72e748d2, - 0xbfee0f5737ebd296, 0xbfef9ec04a52adc4, - 0xbfb52720bb9b0a2c, 0xc00253beb2677704, - 0x3ff4a3f30138d95d, 0xbff4ea7dcb281b4d, - 0x3ff934e75f107505, 0x3fd732d86193e988, - 0xbfced48bde8e34a0, 0x3ff410572ab1739d, - 0x3fe6ccd3dbe97946, 0xbffba9d5395f1cb7, - 0xc000893a4a1a9f1f, 0xbfe3e203ff0c820a, - 0x3ff6042f5cbe19e2, 0x3fb9723c62941110, - 0xbfb008730fd06910, 0xbfff01265beb072e, - 0x3fe01f0a4c504e86, 0xbfe16a465af0dbaa, - 0xbfece8fb41a24417, 0xbffb659fbf8c5dc2, - 0xbfd3cf54f0726d76, 0xbfc385d44218c838, - 0x4009199b2ebb0145, 0xbfec07ed05cfebdc, - 0xbff03b7d5c4cb885, 0x4000f2d7e5dd6167, - 0x3fec988e46c70fda, 0xc01059dd7af06ea0, - 0xbfdc2b3c04541a3e, 0xbfdd81ff0511a698, - 0xc0023c03576c4208, 0x3fea85f86c519334, - 0x3feb6e9855457079, 0xbff5170f9b9b65f5, - 0xbfd68798fe7c5430, 0xc0039b47a501a8c6, - 0xbff9f7c3871c14b2, 0x3fa371143a22e940, - 0xbfc999a1047ce830, 0xc0019f180aeb33c2, - 0x4002c90b97e4cd26, 0xbfe820a4982c5a3f, - 0x3ff846aa6e6e45f8, 0x3fd1ea7d34c080e4, - 0xbfacbb0556ee16d0, 0x3fd94bd690e114c4, - 0x3fcb246e51658d7c, 0x3ff5e7de60b825f0, - 0x3ff7e3a137991a8c, 0x3fc8a261f0e98da0, - 0x40017fb9b184e93c, 0xc001966541bfbd09, - 0x40025e1c21dff328, 0x3fee710c28cf96d0, - 0xbfbd2c738991fb20, 0x3fe1ef997cd9918c, - 0x3fe4a0e795fcdf72, 0x3fed39520dafae67, - 0x3fe49efaf720c092, 0x3ffbb20f96acec94, - 0xbfe3ac6bf3bc1ef5, 0x3ff0ce6b86dd736e, - 0x3ff2ddbc8061f34b, 0x3fecd88ba137a764, - 0xbfe9a2992454ff44, 0x3ff2b0a3b40dde56, - 0xbfebcad88f15a0f4, 0xbff7b441a64963ef, - 0x3ff5527da941b557, 0x3fe30b80bcdeec5c, - 0x4000613dd2758a83, 0xbffe74841bde6b7a, - 0xc010ed37fe57d8c2, 0x4001049dd08c088b, - 0xbfe96783a7db12bf, 0xc001ee0b623bf51c, - 0xbfecc6d39e21bfa4, 0xbfe33a51fd30a7ee, - 0x4001112ac99bab1f, 0xbff3f5a2809fbc6a, - 0xc00504e32490d7a8, 0xc0027ce15222d9d6, - 0x3fd93f4b20e83b92, 0x3fb7356a03921e10, - 0xbff78d05d76164a3, 0x3ff44f8677921057, - 0xc001630adb28447c, 0xbff69ace97c8a79c, - 0xbfb8cbd4dfdc3b90, 0x3feaa264fa53a07a, - 0xbfe7d0ce3ce19358, 0xbfd32de78db3952c, - 0x3fff31cdc6642f07, 0x3fef234b77a32535, - 0x3fd503d07bd45f44, 0x4007109dde33d582, - 0xbfea4b682b4250f4, 0xbff609a90bb5bb0e, - 0xbffe153ae83733f6, 0xbfdbe3a68bfbef10, - 0xbffcbbc158c9ebac, 0x40003a7dc4168314, - 0x4005f4b7fc1f0ddc, 0xbfea6fa965a7c30a, - 0xbfef0475e37532e1, 0xc00be796e8886f24, - 0x3ff6c18b6c85d7e6, 0xbffb16a9765f38fc, - 0xbfd89661842028d4, 0xc00095ae2a4dad4c, - 0xbff74877c91dd18b, 0xbf8ada0e5105b380, - 0xbff3b54388012242, 0xbfe023ed3dfbd03c, - 0x3ffc19b5e330c83c, 0xbff07e983f6955b7, - 0x3fd198a715a7f516, 0x3fe4c353f593fe68, - 0x3fe80fd1a8be6788, 0xbff16ccbfecec8f4, - 0x3fc1c1670d16cac8, 0xbff73fba28638047, - 0x3fed6b335085618f, 0x4001064bfbc72c0c, - 0xbf9501cda6016ba0, 0xbfeaa05d17d45017, - 0x3ff22be48ed9d14d, 0x3ff1eb9110ed9b4f, - 0x4000fbf4c88632d8, 0xbfef2bdc58227644, - 0x3fd72f7c0985e474, 0xc00021d7163ec975, - 0xbffa22cae77adbff, 0xbff085269546da31, - 0x3ff024afa4cefa80, 0x4001d5e05ccebd9c, - 0xbff384f7325a089e, 0x3fb3ae7aef0a08d8, - 0x3fdc04854dcd9d99, 0xbfc02dbd44b59980, - 0x3ff73ea50c95958b, 0xbfff0a60a8a5b913, - 0xbffb6b010567fe30, 0xbfd11ed9cccd17a6, - 0x3fea622b846c85c2, 0xbff610773d263ee5, - 0x3fec0ef01b2a61ff, 0xc0055ec40a3eacac, - 0x3ff404e6f1b8760e, 0xbff3f4227e6f414b, - 0x3fe4a611f8dc66f9, 0xbfc0b072f4afcf14, - 0xbff9b1f1ac6143e0, 0xbfe4da08b4f0eed6, - 0xbfcc3bde5e393a40, 0x3fe0dce0235be74d, - 0xbfd1a48080c5bfec, 0xbff67a406bf67722, - 0xbffa56a84217a7d3, 0x3fe9b305ef35d62c, - 0xbfff25507a46afc4, 0xc005f2dbf8151059, - 0x3fbbd45c15a00e70, 0xbffb948d0f00b49a, - 0xbfa98d8be451b040, 0xbff7c6ab6ce7f3e2, - 0xbfe9c80d38506285, 0xc00120272f85af38, - 0x3feb44f74fa5703b, 0x3fefda4c372a94b8, - 0xbfefda810fa56c4a, 0xbfd15acd0f005758, - 0xbfd2986b5eb70fe4, 0xc00cb29156877ab1, - 0xc0008cbcc6e9b3e6, 0x3fe99cedf4756c04, - 0x3fe71c5a73d511e8, 0x40058e75f4da0382, - 0x3fe5ce650bdd3c35, 0x3fe3b19afa7a8d78, - 0xbffd406209ff5dc2, 0x3ff18ede66174abc, - 0xc00392dad643b644, 0x3fe1582bc7a1dbf3, - 0xbff4bd85ed0507a0, 0x40061acea82ef2fc, - 0xbfd0c96697904938, 0x3fd85e24381b6018, - 0xbff4981dde8c0061, 0xbfea2bade50f9e66, - 0x3ff5ddd465988090, 0xbfe5c98d9b8a4d26, - 0xbff53c3094ef0ee2, 0x3fd9eab9fbb4438c, - 0xbfefe32b15bdff57, 0x400103d0d4c4c632, - 0x3feb02dda79b5a84, 0xbffa67ca670c354e, - 0xbfd0daa4593d7f64, 0xbfdd04dfa9ed2c22, - 0x3fc1a2acaa3c71ec, 0x40002842a7d1e544, - 0xbfece582c20938f2, 0xc011236e0721a4b9, - 0x3ff39247125752fb, 0xc00526905ed66779, - 0x3fd5e375d024b8df, 0x40047bb805627b63, - 0x3ffd9000f9f1a1b5, 0xbfe7b007dd05acb0, - 0xbfe99c29a05a6ab2, 0x400088c791d3451d, - 0x400000e5874461ec, 0x4001572f2a70e98e, - 0x3fd3632b47502823, 0xbff207e60480255c, - 0xbff0a9279b6d8428, 0x3ff528d0dd0a51d2, - 0x3ff9a91383c8d8cb, 0xbff22c271887d248, - 0xbfcd4c9ebecce7fc, 0xbfdaddf4110ea2be, - 0xbff0a806f71098d1, 0xbfaed4088fa4cd50, - 0x3ff3cc49e3b0d4f8, 0x3fde16ebab7ad269, - 0x400115a71bf25160, 0x3fec8fc2ee45c88e, - 0xbfe7844b12ffb018, 0xbffa27a4c35fc10a, - 0xbff37dcbe77714cb, 0xbfee2c979504a24f, - 0x3ff2c3c293a7d97c, 0x3fed85bd0a4ff1dc, - 0xbfa185235c389fc0, 0xbff44becfb72a4a7, - 0x4005746dfab8050c, 0xbfe211b787b9e656, - 0xbfd999821844ac08, 0x3fdd6342b176c4a4, - 0xbff55c9c34ba63da, 0xc009083fc8896a7c, - 0xc004725fb3901363, 0xbfe1050032b66048, - 0x3fee5642ca66b9be, 0x40077d20a2187e7b, - 0xc004096e2759a8ea, 0x3fa91c35e7f98780, - 0x3fe2c31350894360, 0xbf9bc8418424f820, - 0xbff2d7a625aa5f12, 0xbfd2b61db3a5585c, - 0x3fe76dad87f3d8be, 0x4006ed1b8a54edca, - 0x4005a7746c0bf4e2, 0xc00060e81e8b858e, - 0xbfdceaae0b119e6f, 0xbfe0c84ded28056c, - 0xbffdf5f9ef799d83, 0x3fcfd6b22f7de520, - 0x3fe257ea482744ae, 0xbff984fe4de35b60, - 0xc0121c2f0c8e44c9, 0xc00c0cfba9fa6c3b, - 0xc00044140f6875f4, 0xc0013c94b56de842, - 0x3fe3147ca3bd3bf2, 0x3fe4810a6df20dec, - 0xbff193e16ec38c97, 0xc00a264c3886cde0, - 0x3fb70720cab518f8, 0x3fb1d82287218760, - 0x3fd30362846eaa6e, 0xbff64611553bdd06, - 0x3ff0b3d2230c77c9, 0x3ffb2d58fc730b0f, - 0x3fc07fba2a01b3a5, 0xbff39d64bdb81503, - 0xbff71f57e2184a33, 0x0, - 0x3fc07fba2a01b3b2, 0x3ff39d64bdb81506, - 0x3ff0b3d2230c77cb, 0xbffb2d58fc730b0d, - 0x3fd30362846eaa62, 0x3ff64611553bdd0d, - 0x3fb70720cab518f0, 0xbfb1d82287218730, - 0xbff193e16ec38ca2, 0x400a264c3886cde2, - 0x3fe3147ca3bd3bea, 0xbfe4810a6df20de6, - 0xc00044140f6875f8, 0x40013c94b56de83e, - 0xc0121c2f0c8e44ca, 0x400c0cfba9fa6c3a, - 0x3fe257ea482744aa, 0x3ff984fe4de35b5a, - 0xbffdf5f9ef799d84, 0xbfcfd6b22f7de560, - 0xbfdceaae0b119e68, 0x3fe0c84ded28056a, - 0x4005a7746c0bf4e0, 0x400060e81e8b858f, - 0x3fe76dad87f3d8c2, 0xc006ed1b8a54edcb, - 0xbff2d7a625aa5f10, 0x3fd2b61db3a5585e, - 0x3fe2c31350894368, 0x3f9bc8418424f900, - 0xc004096e2759a8ea, 0xbfa91c35e7f98780, - 0x3fee5642ca66b9ca, 0xc0077d20a2187e7a, - 0xc004725fb3901366, 0x3fe1050032b6603c, - 0xbff55c9c34ba63e1, 0x4009083fc8896a7b, - 0xbfd999821844ac12, 0xbfdd6342b176c4b4, - 0x4005746dfab8050e, 0x3fe211b787b9e666, - 0xbfa185235c38a000, 0x3ff44becfb72a4a8, - 0x3ff2c3c293a7d982, 0xbfed85bd0a4ff1d6, - 0xbff37dcbe77714ce, 0x3fee2c979504a250, - 0xbfe7844b12ffb018, 0x3ffa27a4c35fc108, - 0x400115a71bf25160, 0xbfec8fc2ee45c883, - 0x3ff3cc49e3b0d4fa, 0xbfde16ebab7ad24d, - 0xbff0a806f71098cf, 0x3faed4088fa4cd70, - 0xbfcd4c9ebecce814, 0x3fdaddf4110ea2ca, - 0x3ff9a91383c8d8ca, 0x3ff22c271887d249, - 0xbff0a9279b6d8425, 0xbff528d0dd0a51d5, - 0x3fd3632b47502827, 0x3ff207e604802558, - 0x400000e5874461ee, 0xc001572f2a70e98a, - 0xbfe99c29a05a6aa6, 0xc00088c791d3451c, - 0x3ffd9000f9f1a1b8, 0x3fe7b007dd05acbe, - 0x3fd5e375d024b8fa, 0xc0047bb805627b60, - 0x3ff39247125752f4, 0x400526905ed6677a, - 0xbfece582c20938fa, 0x4011236e0721a4b7, - 0x3fc1a2acaa3c7238, 0xc0002842a7d1e544, - 0xbfd0daa4593d7f58, 0x3fdd04dfa9ed2c21, - 0x3feb02dda79b5a70, 0x3ffa67ca670c3555, - 0xbfefe32b15bdff51, 0xc00103d0d4c4c632, - 0xbff53c3094ef0ee6, 0xbfd9eab9fbb4438f, - 0x3ff5ddd46598808c, 0x3fe5c98d9b8a4d32, - 0xbff4981dde8c0064, 0x3fea2bade50f9e5c, - 0xbfd0c9669790493c, 0xbfd85e24381b6018, - 0xbff4bd85ed050799, 0xc0061acea82ef2fc, - 0xc00392dad643b643, 0xbfe1582bc7a1dbed, - 0xbffd406209ff5dc7, 0xbff18ede66174ac0, - 0x3fe5ce650bdd3c3d, 0xbfe3b19afa7a8d77, - 0x3fe71c5a73d511f0, 0xc0058e75f4da037f, - 0xc0008cbcc6e9b3e5, 0xbfe99cedf4756c10, - 0xbfd2986b5eb70ff9, 0x400cb29156877ab1, - 0xbfefda810fa56c40, 0x3fd15acd0f00574a, - 0x3feb44f74fa57042, 0xbfefda4c372a94b6, - 0xbfe9c80d38506292, 0x400120272f85af39, - 0xbfa98d8be451b0f0, 0x3ff7c6ab6ce7f3eb, - 0x3fbbd45c15a00e50, 0x3ffb948d0f00b499, - 0xbfff25507a46afce, 0x4005f2dbf815105a, - 0xbffa56a84217a7d1, 0xbfe9b305ef35d62e, - 0xbfd1a48080c5c000, 0x3ff67a406bf67722, - 0xbfcc3bde5e393a00, 0xbfe0dce0235be754, - 0xbff9b1f1ac6143e4, 0x3fe4da08b4f0eed7, - 0x3fe4a611f8dc66f8, 0x3fc0b072f4afcf08, - 0x3ff404e6f1b87609, 0x3ff3f4227e6f4152, - 0x3fec0ef01b2a61f6, 0x40055ec40a3eacad, - 0x3fea622b846c85bc, 0x3ff610773d263ee9, - 0xbffb6b010567fe32, 0x3fd11ed9cccd179e, - 0x3ff73ea50c959588, 0x3fff0a60a8a5b914, - 0x3fdc04854dcd9da6, 0x3fc02dbd44b59978, - 0xbff384f7325a089e, 0xbfb3ae7aef0a0920, - 0x3ff024afa4cefa85, 0xc001d5e05ccebd9b, - 0xbffa22cae77adc02, 0x3ff085269546da2c, - 0x3fd72f7c0985e470, 0x400021d7163ec974, - 0x4000fbf4c88632d4, 0x3fef2bdc5822764f, - 0x3ff22be48ed9d14c, 0xbff1eb9110ed9b4b, - 0xbf9501cda6016cc0, 0x3feaa05d17d4501a, - 0x3fed6b3350856199, 0xc001064bfbc72c0d, - 0x3fc1c1670d16cac2, 0x3ff73fba28638046, - 0x3fe80fd1a8be6784, 0x3ff16ccbfecec8f0, - 0x3fd198a715a7f50c, 0xbfe4c353f593fe74, - 0x3ffc19b5e330c838, 0x3ff07e983f6955b8, - 0xbff3b54388012242, 0x3fe023ed3dfbd038, - 0xbff74877c91dd18f, 0x3f8ada0e5105b240, - 0xbfd89661842028f4, 0x400095ae2a4dad4a, - 0x3ff6c18b6c85d7e0, 0x3ffb16a9765f38fb, - 0xbfef0475e37532f0, 0x400be796e8886f24, - 0x4005f4b7fc1f0dda, 0x3fea6fa965a7c312, - 0xbffcbbc158c9eba9, 0xc0003a7dc4168317, - 0xbffe153ae83733f7, 0x3fdbe3a68bfbeef4, - 0xbfea4b682b425102, 0x3ff609a90bb5bb0a, - 0x3fd503d07bd45f5d, 0xc007109dde33d582, - 0x3fff31cdc6642f05, 0xbfef234b77a3252c, - 0xbfe7d0ce3ce1934c, 0x3fd32de78db39530, - 0xbfb8cbd4dfdc3b88, 0xbfeaa264fa53a082, - 0xc001630adb28447d, 0x3ff69ace97c8a799, - 0xbff78d05d76164a4, 0xbff44f8677921058, - 0x3fd93f4b20e83baa, 0xbfb7356a03921de8, - 0xc00504e32490d7ab, 0x40027ce15222d9d2, - 0x4001112ac99bab1f, 0x3ff3f5a2809fbc70, - 0xbfecc6d39e21bfae, 0x3fe33a51fd30a7e4, - 0xbfe96783a7db12c4, 0x4001ee0b623bf51c, - 0xc010ed37fe57d8c0, 0xc001049dd08c088d, - 0x4000613dd2758a82, 0x3ffe74841bde6b7e, - 0x3ff5527da941b558, 0xbfe30b80bcdeec58, - 0xbfebcad88f15a0f7, 0x3ff7b441a64963ed, - 0xbfe9a2992454ff4c, 0xbff2b0a3b40dde5c, - 0x3ff2ddbc8061f34a, 0xbfecd88ba137a75f, - 0xbfe3ac6bf3bc1ef6, 0xbff0ce6b86dd7372, - 0x3fe49efaf720c09e, 0xbffbb20f96acec94, - 0x3fe4a0e795fcdf7c, 0xbfed39520dafae64, - 0xbfbd2c738991fb00, 0xbfe1ef997cd99187, - 0x40025e1c21dff324, 0xbfee710c28cf96cc, - 0x40017fb9b184e93b, 0x4001966541bfbd0e, - 0x3ff7e3a137991a8b, 0xbfc8a261f0e98d90, - 0x3fcb246e51658d74, 0xbff5e7de60b825ec, - 0xbfacbb0556ee16d8, 0xbfd94bd690e114cc, - 0x3ff846aa6e6e45fa, 0xbfd1ea7d34c080e0, - 0x4002c90b97e4cd24, 0x3fe820a4982c5a43, - 0xbfc999a1047ce848, 0x40019f180aeb33c2, - 0xbff9f7c3871c14b2, 0xbfa371143a22e9a0, - 0xbfd68798fe7c543c, 0x40039b47a501a8c4, - 0x3feb6e9855457072, 0x3ff5170f9b9b65fa, - 0xc0023c03576c4208, 0xbfea85f86c51933e, - 0xbfdc2b3c04541a4b, 0x3fdd81ff0511a686, - 0x3fec988e46c70fcf, 0x401059dd7af06ea1, - 0xbff03b7d5c4cb87e, 0xc000f2d7e5dd616a, - 0x4009199b2ebb0144, 0x3fec07ed05cfebe0, - 0xbfd3cf54f0726d6b, 0x3fc385d44218c824, - 0xbfece8fb41a2441c, 0x3ffb659fbf8c5dbc, - 0x3fe01f0a4c504e8e, 0x3fe16a465af0dbae, - 0xbfb008730fd06938, 0x3fff01265beb072e, - 0x3ff6042f5cbe19e3, 0xbfb9723c629410f8, - 0xc000893a4a1a9f1f, 0x3fe3e203ff0c81f6, - 0x3fe6ccd3dbe97941, 0x3ffba9d5395f1cba, - 0xbfced48bde8e3492, 0xbff410572ab1739f, - 0x3ff934e75f107502, 0xbfd732d86193e981, - 0x3ff4a3f30138d959, 0x3ff4ea7dcb281b4d, - 0xbfb52720bb9b0aa2, 0x400253beb2677701, - 0xbfee0f5737ebd294, 0x3fef9ec04a52adbd, - 0xbfeb6ede9db3d7a0, 0xbfdcd97d72e748ec, - 0x400d0c3d87af11f5, 0x3fefd29ab3ecf3c9, - 0x3ff8fc1e39242d5a, 0x3ff3363c2acf888e, - 0xbfe83024a398be54, 0x4002c1169b7a04c5, - 0xbff80908beccee3e, 0xbff926d0f3f72965, - 0xc005ce4a80f1f043, 0x3ff14366a1a2b33e, - 0x3fe1ec42be5d6a30, 0xbff983f667728758, - 0xbfd5f654a794fe41, 0xbffbb87bd2f9d617, - 0x3fec5c50cbd44eb0, 0xc0099288b39a4902, - 0x3fc8012a84ba2c46, 0xbfdf0561d16d9c4c, - 0x3fdb9ce52ad6e3f8, 0xbfe9246d94f8f44a, - 0x3ff131064ca4590a, 0x3ff381534f8f20c5, - 0xbfe465aff93aef48, 0x3fd14308a8a808d5, - 0x3fe092855133a077, 0xbfed95ee61aeb66e, - 0x3ff720873f89a588, 0xbff1603b982eb49b, - 0xbfffbc217f295d11, 0xbff87584e97a16ba, - 0xbff0bac3e47f737f, 0xbfe63f9f3a1e024d, - 0xbfff83fca9ccd916, 0xbff98ffa10d4376c, - 0x3fe12ac60848a933, 0x3fdea4216223064e, - 0x3ff0e33b3cdc7346, 0x3fc921c5874f69e6, - 0xc00902a2c504ef85, 0xbff68fdc55637333, - 0xbfe72ddae1be8774, 0xbfe9bb9f77012227, - 0x3fffffc3343f16d8, 0xbfc584b60769ec90, - 0x3fd495a57e82b8ac, 0x3fe87bd55cac597c, - 0x3fcd3d22b1aa4518, 0x3fd50e797f8a04c2, - 0xbfddbabb876782f4, 0xbfff6cabd84fd1b5, - 0xbfb85fc12966c960, 0xbfe245ca81373884, - 0x3fff412478d185e8, 0x3ff373964a2048e9, - 0xbfe222a2c4ec7da4, 0xbff720c81d9c6a14, - 0x3ff4ad29a19f562c, 0xbff607c65095c2a8, - 0x3ff661d27f2d3993, 0x3fe1e972a964f418, - 0xbfd614014a5c5364, 0x3ff0a0d452ae8338, - 0xbfeda63ed8737350, 0x3fcfdaece77b7478, - 0xbfec2155728f91b0, 0xbfe00b8c6d581a08, - 0x3fd93def1aa7a6b0, 0xc0016e2b37b3574a, - 0xbfea8aeda7ce85c2, 0x3ff358969c1a135b, - 0xbff62f626422289e, 0x3fa8fac2ef72e440, - 0xbffd096da95a4a4f, 0xbfc90f2c619eb01e, - 0x3fb752d14cb7d7ac, 0x400be5b91b7c9801, - 0xbfeba48195b5aab6, 0x3fdc8e550ab648b4, - 0x3fe6efcf5f17e0bb, 0xbfdc17264eb5856b, - 0x3fdccf74a6e8974b, 0x3fc3525c8bc62824, - 0xbff2e88b40afd36e, 0x3fd376d4f05ba612, - 0xc001d1e31f834d10, 0xc004205471f1ee84, - 0xc004f4e1fa369d5a, 0x3fff6dc1ba1d93fe, - 0xbfec45ecfa5a7020, 0x3fdaaf5bb1a99f1c, - 0xbfe664ca5f20b14d, 0x3fef686c984eae41, - 0xbffa4668420523df, 0xbfb1a8678e6975f0, - 0xbff22d8f5ff45f91, 0xc00448358e83f814, - 0x3ff1201c2d3ee100, 0x400199fdd604f2bb, - 0xbfb10c9e6b3db146, 0x3ffb1b7217e85489, - 0x3fe3f42a7e5e48aa, 0xbff2a937b76490d8, - 0xbfdd19dbc9acf6f6, 0x3feafc83f1309c92, - 0xc00043ace589ba16, 0xbff0f1fe6e27f7a8, - 0x3feb26e2b678b226, 0x3ff60cb709d2471b, - 0x400c02fcde5228a8, 0xbfe259de9438547d, - 0x3ff1e5044e7703a7, 0x3fdc78a583f78608, - 0x40082e457b525474, 0x4001a569573954d7, - 0x4001f00fd777d30d, 0xbfea3c64510961e0, - 0xbff1c5ea8f08e1be, 0xbff2e2d02e3ad892, - 0x3ff9a33fe9a3c0ac, 0xc0000343b2be15a3, - 0x3ffad0ab205e2e3e, 0xbfe243df4257443c, - 0xbffb99e8efb667e8, 0x3ff0035acfe3d906, - 0xbff12c6736448e36, 0x400740cadcdd8f38, - 0xbfbed419ffa153b6, 0xbfca6e101b24c328, - 0xbfd90242a386bfe4, 0xbfe3583ef4e5a3a0, - 0xbfd4c04a28f61dc8, 0x3ff350fb5ce19d10, - 0xbff1b9b830e9c3a2, 0x3ff206d538b3ea6e, - 0x3ffe30d97ff65e10, 0xbffdbec1361c072f, - 0xc012da791a910387, 0xbfd3f1d5f388b020, - 0xbfe5a3a0f0251b28, 0x3fbf28424759e81c, - 0x3fdc2a8b10b57490, 0x3fc57e986a8b2d7e, - 0xc000159995adbdd6, 0xc000339dc3c5e210, - 0xbff782d7b7b62e11, 0x3ff1da81c8f4cf59, - 0xbffd6688c90fe7d0, 0x3ff10cb01b2f41fd, - 0x3ff2f8cdec2cc276, 0x3fa0b4bc6bb17d10, - 0x3ff73051d454cf34, 0xbfe70b687d609561, - 0x3fd2ad6ee510b08c, 0xbfe9350a1d4f0971, - 0x3fddd54d017e7e64, 0x3fd25addd9bea464, - 0xbff4d9ce7b988a3e, 0x40035bba4a0bb8f8, - 0xbfddf6e428c2893c, 0xbfe3922cd98b394d, - 0xbfd51e8072a0e7d8, 0xc00dcf7c22b2c644, - 0x3feebf8c746576be, 0xc003e999332dc393, - 0x400095c67e25bfdb, 0xc00878096c4074b0, - 0x40060bae5f02ea1f, 0xbfcd608f2ac94d70, - 0x400ca4de41f7bc33, 0x4002afc3bb06908c, - 0x3fe0c4200b8c138a, 0x3fda9eef2889eb36, - 0x3fce2d9528f8a9fc, 0xbff3281f7a9082a9, - 0x3ff71bb363b1ba32, 0x3ff15ebee223a72a, - 0xc0002e1d8d6e64aa, 0x3fd48eaf92f2bc05, - 0x3ff91904e4093353, 0xbffad424e654ad62, - 0xbff939122599af87, 0x3fe652efdbaa6814, - 0xbfd31fd5a62c175b, 0x3fd5aeff3c61dad6, - 0xbfd4d9a978d3947a, 0x3ffc4ac77b56d5d2, - 0xbfe4d3f256e003c8, 0xbf97041271df1340, - 0x3fd3867d9ef54da3, 0xc00473af2eecdc6f, - 0xc005f89bc7d1a154, 0x3fff31b6eb740c25, - 0xbfd4fb783b9a60c0, 0x4004bf50f0c9fc5f, - 0x3fd1de786e138fca, 0x3fe13fddce7d72b7, - 0xbfd33399e8b3c916, 0xbff5bec62c8baac4, - 0x3ff5eafc70923f86, 0xc00be81f2221d004, - 0xc009b66ab24264aa, 0xbfb8154cb84d4020, - 0xc00caa9459fc8f8f, 0xc004a7dce9ac8224, - 0x3f5ede7e7bf82700, 0xbfd9acbca0e68cd4, - 0xbffe0b8f954dbf48, 0xc00789e13d562ec0, - 0xbfeaf851b46f6ef0, 0xbfe7890183564b7c, - 0x3ffbba8bd62f6e46, 0xbff7ea56e9a6e536, - 0x3fc920e7f0b74d94, 0xbfcda19a8a6cbba8, - 0xbff81a6c48b4c45f, 0x3ff6666651de4f02, - 0x3fe30d364cd7a237, 0xbfdf1d10cb2c595c, - 0xc0014d63d0fffba5, 0x3fd72bed96753484, - 0xbff14570920d1e57, 0xbfec342b3a0b14ea, - 0xbff0228495366952, 0xc0098f7da8eee7da, - 0xbfef198795806dbc, 0xbfdbbcf3981f95d2, - 0x3fea2cdde8391672, 0x3fffeca7c8fe3868, - 0x3fcb4cfd263ee520, 0x4010adc59b3a7c40, - 0xbfd0a6abdba2a1c0, 0xbff9f913a140d57c, - 0xc0030c2aecd8e3f6, 0xc00781c3a859ee30, - 0xbfec96a7bbe75d13, 0xbff6f278b5efa060, - 0x3fc91223fbc0ef10, 0x3ffbe8343a41ca88, - 0xbffddb0646d0190a, 0x3ff293d034a74f32, - 0x3fc491e4c2522b94, 0xbfe7c69d5eddb65c, - 0xbfe7dff06e383e2e, 0x3ff7b989894b70d3, - 0x400747716a156ba4, 0x3fec6d2645ef128c, - 0xbff45074bf7a9481, 0x3fed1ea6c2ca65a4, - 0xbffbbf7f7c7104d7, 0x3ff1657f57023b67, - 0xc004a49fc4e01008, 0xbfd0a38e1e435ad1, - 0x3ffe57a5a388c7db, 0xc00144173570830b, - 0xbffba5d3fe69d5fd, 0xbff45f84a433f39c, - 0x3fb0723acebf8288, 0x3ff5b338ad583d36, - 0x400a616177c704bf, 0xbfdb0d22f97426f4, - 0xbff419839d429d63, 0x3feba7969e3db090, - 0xc004ff4b53e193ff, 0xc00140bd2243cdf1, - 0xc001512aa8e8552e, 0xbfcd09dac3987b3c, - 0x3fe4af6ec58dec11, 0xc002e33952270480, - 0x3fe6060e054c1858, 0xbff8e77065107739, - 0x3ffa9d6c00024736, 0xc00050cb090c3e4e, - 0x3fa90d8f5cd61670, 0xbffc20351c46de3e, - 0xbff16687475aed69, 0x3ffc9bb13360bf08, - 0x3ff8037afda9ffb4, 0x3fa476360015a778, - 0x400b788e80f8c9bc, 0xbfd83a3b99f5afff, - 0x3fb1436a076cb1c4, 0xc0023981175af677, - 0xc00067a126d4f92c, 0xbfdebbfa5e439830, - 0x3fc2812cfa4f6188, 0x3ffde6770e3b8528, - 0xc002dc87781fb672, 0x3ff70fe189e5a55a, - 0x3fc1d0a823669c4c, 0xbfa913e86730af40, - 0x3fecf07da35646c8, 0xbfe8abb28aa84f7c, - 0xbfdc51c20e1387f4, 0xc0035e7800a694ce, - 0x40038f2f3e946ba8, 0x3ff2e4bccf47cb24, - 0x3ffb6302d1386d02, 0x400460818ced3070, - 0x40029ed73c954e9e, 0x3fed544c1ff656ee, - 0x3feac531122a55ab, 0x3fe3170fb1f352d0, - 0xbf9c2bc1a4781480, 0x400481f0c673dec5, - 0x3ff49dd6fbe700b6, 0xc01111713a51ba08, - 0xbfd76ee1316ed9de, 0x3fefa8f731733d58, - 0xc003a9e22ea28e70, 0x3fbc5ca912b26a30, - 0xbfe8ad4236fa1396, 0x3fedae08b72a79a9, - 0xbff85eaf992c8268, 0x3fe320282b97e5c6, - 0xbffb5ddeee8d8476, 0xc005c04f44d208b6, - 0x3fca48eaeb46d938, 0x3fe768f36231568e, - 0x3fe9f7813585900d, 0x3ff4a7da064aeb96, - 0xbffe7ad202b9ddec, 0xc00d9b980aee39d4, - 0xc00da77d3aa1cc4a, 0x3fea3dfe2bd73c63, - 0x3fd1118a26dd88fe, 0x3fe6992741b405ca, - 0x3fdce64283b95288, 0x3ff5f89aca4d14ae, - 0xbfafb9f92df29338, 0x3fc46e802f9e4f64, - 0x400065d17fe358b8, 0xbff78b39acd60a1c, - 0xbfc5483735bd440c, 0x400a17db6cf3f7a1, - 0x3fd9484ce812cf38, 0xbff73b29fac4efde, - 0x4000a386e819caf1, 0xc0006f11f8aaa902, - 0xbfd4b034fce982b0, 0xbff76c0d739c1f3c, - 0x3ff78d1670995ecc, 0x3ff1778c8d5c9273, - 0x400e1f99b9329570, 0x4005df8634e941fa, - 0xbff4c2be5057b01c, 0xbfe2c8eb0d821ce5, - 0xbff34a0d320c4086, 0xbfec88e60a81cf63, - 0x3ff23947d39d018d, 0x3ff052d500760b9e, - 0x3fd1ccfd9601f3fe, 0xbfdb86f0c0013184, - 0xbff21315d656cc39, 0xbfbe52923fa71f14, - 0x3febd784eb6181b0, 0x4009e6fa9ddf98ac, - 0x400b38116e5d5a63, 0xbfee29d19b609e64, - 0xbfe53eb2a4aa9bb7, 0xbfdc8f166d556948, - 0x3ff72736e3e84e71, 0xbfdf09526675bd3a, - 0xbff3f57b2cf60fcf, 0x3ffec368ff307f66, - 0xbfe73e2be1c8c756, 0xbff3ce66f2b148d5, - 0xc0053e4e9f99981c, 0x3ffc7f3cd63c6934, - 0x3ff0df6d222413c7, 0x3fe195520515a573, - 0x3feb2ce0252249d2, 0xbffb9c67d1661469, - 0xbfd6fedb2fd774fc, 0xbfe1dcfc4ce0b512, - 0x400228a750cdbcb0, 0x3fb838b09a609258, - 0x3fc4a2fcf882f92c, 0xbff8683819e36688, - 0x3fc44a6b003e616a, 0x3ffcda5eafe75584, - 0x3ff94de9bee5b8c6, 0xc006206aa6d90529, - 0x3ffd76ec340b17fc, 0x3ff7667bbb6e86e0, - 0x3ffd477697435197, 0x3ff8346379ca28a8, - 0xbfdc770da16937c1, 0x3fc6b0efdc45f2ec, - 0x3fe3ca1aec9ef9ce, 0xbffcfa77009a7dac, - 0xc009870c704b1146, 0xbffd1d9167b2d0b7, - 0xbffdf16849c9c9a8, 0xbfe7af3ddf7d3073, - 0x3fef0a3e14144914, 0x3fcaf1efd6e016b8, - 0x3fe50be6efa661e1, 0xbfd46a180bb11460, - 0xbff9e2edb55866af, 0x3ff4f4dbea7cd2c8, - 0x3ff3c68b92f35537, 0xbfec073f2420f34e, - 0xbfe68a452bcb1143, 0x40027f121aef25c8, - 0x3febe6a2bd0e6c34, 0xbfe20d59e330a3b2, - 0xc0096f39f7abdf7e, 0xbfa63daf33dbc920, - 0xbfd2f3c90f5c3ba2, 0x3fe4720fdfb91df4, - 0xbff3387e10dd6319, 0xc00ec7d4c74ba0f5, - 0xbfbbf8d2eca0cdac, 0x400424a3a9c4f1e8, - 0x3ff23921b8e0bb70, 0x3fc115ca0f828b7c, - 0xbffe261eec2ff142, 0x3ff6d9717d549888, - 0xbfc0d420e2044ec4, 0xc007a0bc40474a18, - 0xbfffe26f77c307ad, 0x3feec9f65e633dde, - 0xbffb9743be70b054, 0x3ff3a9f32f6f0b8b, - 0x3fe0d7538c56aa84, 0x3fb6296b22414ce4, - 0xbff8a34dd41125d9, 0xbfe36c634f53df6f, - 0x3ff0396d23db3a04, 0x3ff9ac20c576f6fd, - 0xc00b318186f4a840, 0x3fd5abaf6bf73084, - 0x3ffed2e19dc73271, 0xbff2c0ad8e58951f, - 0xbfe79ebfe2f9ecf4, 0x3fba82102cfb77e8, - 0xbfe1be085a3cf7d7, 0xc004cda50694f190, - 0x40029dc92d5894c3, 0xbfd6afb6572c60ec, - 0x3ff1f4449b10e05b, 0x3ff18af9bea39494, - 0x3ff6293038164072, 0x3fdfdf9ac252cfc4, - 0xbff9d1390d2cb2b6, 0x3fe958f5ca82f3ca, - 0xbfdebd85c13398f4, 0x3fd25ff35db8dab4, - 0x3ff23cafe65aec47, 0xbff8b01ead8dd307, - 0xbfe3aa1312d706e4, 0xbff72fcf68585aa5, - 0xbff7506e3744d586, 0x3fdbc9f830b07d76, - 0x3ff62fd8717c653a, 0x3fefbc6027dd9ca0, - 0xbfe04dc88a0706f0, 0xc0049b64b8b89f35, - 0xbfdf0661a28b2d48, 0x400072a8523028a5, - 0x400457cf161b39e6, 0xc00101739dd03756, - 0x3ffb5035a717a0b0, 0xbfd49fcda289375d, - 0xbfcc8ae2a162cb70, 0x3ff24f078c0f5652, - 0xbfdd094ec9ee3d4a, 0xc00a34fe501db972, - 0x3fe327d7c028836d, 0x3fdfc6ade66add22, - 0x3fdd670b8453b0ec, 0xbff989d28d1fe2ea, - 0x3fbf88377e83cdb0, 0xbfe03a9f64da63e2, - 0x4018fc992c24b60d, 0x3ff0d831b088be4d, - 0xbfef59c465543a47, 0x4000831cce427930, - 0x400c35ce985e9aa5, 0x3ff8b06a53c7de3a, - 0xbfe1b23a8f5ed25c, 0xbff09a3448cc5066, - 0xbff22c3849416abe, 0x3fcaf1e7ebb31190, - 0xbff22a8d9ada5add, 0xbff5992f27098c9b, - 0xbfe992db85fd792d, 0xbfddd84a930029e9, - 0x3fda0485a1c1d4ca, 0xc00678aa84ec00ed, - 0x3febc7d95ded9248, 0xbfdb3f5ba296d2cc, - 0x3fe1434125f44f30, 0xbfdb2616eb88051c, - 0x3ff00bad0c78959a, 0xbfd8bade9778cad0, - 0x4004e27ea760397f, 0xbfe4615a4f021196, - 0x3fe8f70fdc9237c6, 0xbff6ab6b2d155aef, - 0x3ff00365fda41240, 0x3fe77d8873919052, - 0x3fe82efa47c8e635, 0x3fe97eff5c471e3e, - 0xbfe82841bafbba63, 0xbfe199c73d233d83, - 0x3ff65364a5714edc, 0xbff7fba8022e4cf6, - 0x3ff085decdc95dcf, 0xbfe903fef786ced9, - 0xbfe2844e401db337, 0xbf8f7894205b22e0, - 0x3fc66450fe61aebc, 0x3ff06fe6762d63cc, - 0x3fdbc9038ff75f24, 0x4008e09bd90cc3b1, - 0x3fdb4c309c22fe04, 0xbfef5a4e4c2ac2b0, - 0x3ff3bb6f9d8e4a15, 0xbffb24da8f3efa35, - 0xbff3de0201e7ec56, 0xbfd19068b8931fe6, - 0xbfeb7c1e45d51b11, 0xbfdcab54a48d7b6a, - 0xbfe3f00dd20341ec, 0x3fe2bd271373b546, - 0xbfe81ede88104005, 0x3fa2697ae6f53220, - 0xbff350c0481ed79f, 0x3fdb9657f972eca8, - 0x3fedb78b3f7d97d5, 0x3fe4437dbf88b8c1, - 0xc00558d477403c27, 0xc00280aa7f8d4361, - 0xbffb4a2456d8fd20, 0xc0023a9c19d8d168, - 0x3fc49cf2c080cb64, 0x3feaa8df341af3f6, - 0x3ff7e5312385a363, 0x3ff5da51ad3b645a, - 0x3ff624b4a6541690, 0xbff7e37412568a8e, - 0x3fb416123098c7c8, 0xbfe6c51c6b6e81f0, - 0xbfe29e7806506dbf, 0xc00284f1b84788cf, - 0xc0090cfca0766501, 0xbfe6528428520a82, - 0x40018f03bee2fbb6, 0x3fe02930941494a0, - 0x3fc1172c335fe1f8, 0x3fcadce0c684ee24, - 0x3fb4b8265c4257ba, 0xbfe6e5dc02739408, - 0x3fdcaf55ab015a78, 0x3ffef8ba165dc760, - 0x400340d7795f6718, 0xbfe18e484d697d10, - 0xc00489ea5031e3c7, 0x3ff6807502d8324e, - 0x3fea6e82530e652e, 0xbfeb0e769e0c1752, - 0xc001c60612e86064, 0x3fef11bb43dae114, - 0x3fe53c0928f9b1de, 0x3ff3612f9955847a, - 0xc00acff017db9a8a, 0x3ff44758b85cae48, - 0xbfe7d5a11310e4c9, 0xc005a9a00ebe60fa, - 0xbff37baaba0e2170, 0x3ff42b97f40b0982, - 0x400645dedff4ca08, 0x3f8db6c832064480, - 0xbfffb2e04509dfae, 0xbffcedd5b696fa92, - 0x3fd768711b1b1ebb, 0xbffd452a165f2a98, - 0xbfe0e6bb8659c276, 0x3fe3ce34f6d969a9, - 0x3fefd310fac86f12, 0xbff78d44c86bffd4, - 0xc00168017bc3b06a, 0x3ff3508306d2cd69, - 0xbfd72d2d49bb18fc, 0x3fee2dfa8f6943c4, - 0xbfd177dfff040fbe, 0xbfb2367cc8d7d940, - 0xc0012394436dc7ba, 0x3fc20abf1d5fd670, - 0xbfd90625f1fa6012, 0xbfd6c2f13f7696a6, - 0xc006dd0d158320c4, 0xbffbc76a788ff87e, - 0xc0011615e1839963, 0x3fec650d02aebf74, - 0xbfcb1451e7c301e8, 0x40010501525e1e06, - 0xbffddd67142cd48e, 0x3ff6446d3b7481fe, - 0xbfd65065a7d038ec, 0x3fe45cad42ad0ed2, - 0xbfe7e38503b5b676, 0x3ff71e3abef49e32, - 0x3ff54bda0258fcce, 0xbfd55dc0d5573c90, - 0xbf91fe7266714430, 0x3feaa7bfa0808394, - 0x3fdf4e6d57c697f4, 0x3ffb23b5f7dd20d5, - 0x3feaca5c34d0f109, 0x400101097841cad6, - 0x4001afca18092fb2, 0xbffa7fb1ad2e1f1e, - 0xbfea4e3f7a790abc, 0x40027be296b5caf4, - 0xbfd817bb6a9197a0, 0xc00560db3473b223, - 0x4009900008b28966, 0xbff89d9e5b410040, - 0xbff292a86c1b400f, 0x400864bd8d9782d2, - 0xbff778bcf01abd7a, 0x3ff5b447e7d619ea, - 0xbff09847036b3083, 0xbfea14d834996148, - 0x3fe6eee4a7e7d671, 0x3ffa59870075a81a, - 0x3ff003233d0dcd42, 0x3fe976ce3968e2c6, - 0xbfed4dbf18936acc, 0xbffc9eb3ff071845, - 0xbffc4a2f6268350a, 0xc0005f6bf094e021, - 0xbff2eab1e787e2c7, 0x4005191d3a464e84, - 0x3fed2a6b1d0f4b25, 0xbfe63726b7d195f6, - 0xbff6e31646128c6d, 0x4002e796fc792c6a, - 0x3fe764f738c53ba4, 0xbfef6e28714b8ccd, - 0x3fac0bd7954c8a60, 0xc0046e16a1820cb8, - 0xbfc6d3baccc251c8, 0x3ff279ae06b9bd5a, - 0xbfdbe26cf91ee4fe, 0x3fe77daa8d3af5a8, - 0xbff45df97ca853f6, 0xc00343ec4129c5d5, - 0xbfd602a92d9b7c20, 0x3ff93ab7a63e3807, - 0x3fa2eed1ecf40c60, 0x3fc306a105985c60, - 0x3ff1d10512660144, 0x3fe13a8cd43c438c, - 0x3ff282bb85865893, 0x3fde6140e8c15e2b, - 0x40041e3b6aaf5781, 0x3fe93b8f75110dff, - 0xc00132534fe5c91a, 0x3ffc29235efc08e2, - 0x3ff58d8c2228a8d2, 0xbff91e75aba3d505, - 0xbfd3e97982837418, 0xc00030bdd4144e9a, - 0xc0066506bcb5cec6, 0xbff0c116036ed75c, - 0xbff19d4bdf0505e7, 0x3fe39a42dd1bc652, - 0xbfe2f352f1f0170a, 0x3ff16e288d6db0b8, - 0xbfd227f5443fb334, 0x3fce626ba69d28ae, - 0xbfc6110443722fb0, 0x3fff82175ddba2e2, - 0x40120ecbe5987581, 0x3fe8da2f128ef03e, - 0xc001838faaa602ba, 0xbfe0bf8f72e80fa7, - 0xbfe7be60afd25ad3, 0xbfe2fec7c036f096, - 0xc0022085ef34d2a1, 0xbfe264ba76b48543, - 0x400130d18119f55a, 0x3fe36645dbfea34f, - 0xbfe2388aa3df92e8, 0xbfda9f93df3941b3, - 0x3ff2f1a3bc48dce8, 0x3ff3b147c35fc32d, - 0xc00ced17a3158c82, 0xbffc8c088cfcc7a0, - 0xc002745059924520, 0x3ff74d295ec34045, - 0x3fad97eac98c2a40, 0xc0075d585eb4cbec, - 0xbfee6401ffed48aa, 0xbfd6f88204902dae, - 0xbff0f959c3f430c1, 0x400778a656117bcc, - 0xc0029ea33295ee2b, 0x3fff209b3eba8368, - 0xc002d1f5cb12bf28, 0x400e53ab6ee66d26, - 0xc0080a32baa5fe3e, 0xc0081f99a5a1596a, - 0x3ff2dba833cb998c, 0x3f7b6472bffc7000, - 0xbff78799387eb0de, 0xbfdbc5a3e9239cf6, - 0x3fc621261484ae37, 0xbfe2ebf525a3f9f3, - 0x3ff457afede5f6c9, 0xbfe90b4249ec765c, - 0xbff413ba8a13d4b4, 0xbff3d3e10b00d0fb, - 0xbff51f021e03530c, 0xc00074c06860c9bb, - 0xc004e3c5032f3bf0, 0xbffbdf8a8a20196d, - 0x3fe8841c1eab89ec, 0xbfe9b73042827f8c, - 0x3fedd030831fa9f0, 0x3ff20dd6469ba452, - 0x3fd8e48a97602fe0, 0xbff58250826eed9a, - 0x3ffebfb092aa7e2a, 0x4001975516f75c69, - 0xbff06873b80dfa0f, 0xbfcad7c6feba0840, - 0x40012fcb1ef5a93c, 0x4000d0b78e1c3dd2, - 0xc000643aa263ba3a, 0x3fe8887aac7e1fe6, - 0xbff65c6dfedf8b12, 0x3fe06be8b14b8dc3, - 0x3ff71413ee3d0a96, 0xbffdee24ff153f1d, - 0x3fcdc579074c084c, 0x3ff05e3663f88169, - 0x3ffbba867d318c4d, 0x3fe141c581257d00, - 0x3ff47ceecb9eb1c8, 0xbff0f736a9122ab8, - 0xbff1c8cdc462ce0d, 0xbfff676e307bb5ba, - 0xbff7e07f1104e8f0, 0x3fd9cb34686e702a, - 0x40080cc39df58e2d, 0x3ff4a3bcd736beac, - 0xc007cb369a7c89f2, 0xbfe7a4d6d61547b7, - 0x3fe917488e83f0a8, 0xc01848e0eb1e0ab5, - 0xbff32726ae7007e7, 0xc00592b352746e96, - 0xbfed6e4671a2f146, 0x3fb86dc107ca3178, - 0x40074955c5a2d909, 0xbfe42b5989c76208, - 0x400a739255b5447d, 0x400b4a92e58f94eb, - 0x3fde63d07f2f0bd0, 0x3fe4c2a61b35d874, - 0x3fd7ded66915af16, 0x3fe4398da7f88d75, - 0xbff5c19814d499e4, 0x3fd74f1f355cd9a0, - 0xc00015eedff1a4d6, 0xbfba7dbc7ef84b14, - 0x3f9295fd551cd6b0, 0xbff7158f66ba897b, - 0xbfd62796039ad352, 0xbfefc04c2f9d5f40, - 0x400716dbbaea0d76, 0x4006bfabb229b9d6, - 0x3ff395178eeba088, 0xbf95c71b41483c00, - 0x3ff06c89c6cb11af, 0xbfe4c2c2ab0f2c80, - 0xbfe22205ae10697a, 0x3ff3fa13daa6f53c, - 0xbfee6f5b20c6efef, 0xbffb99be46fd9ba1, - 0x3fdfbb214057f7f8, 0x3ff8287094b1e3ec, - 0x3f9da21ce57b2a60, 0xbfebb877969b1726, - 0x3ff9f752933f1c34, 0xbfed2e72287ebe02, - 0xbff60a9cae40c6fe, 0x40086629975a90f8, - 0x3fc0ca38807cbcd8, 0x3ff49b36013977d0, - 0xc001669348aba292, 0x3fd70b98c1ae3642, - 0xbfa19ad11524bfc0, 0xc002818c0348182a, - 0x3fe644081f9c2ceb, 0xc0028cd881d3e40a, - 0xbfe50f212952adaa, 0xbfe4ef9940529cba, - 0xbff13b166a74c7f3, 0xbfd31c0248164e79, - 0xbfff1b70a78689c5, 0xbfbfdc1ce9a2fea8, - 0xc00b4b5053fa9864, 0x40010d5015b78da3, - 0xbff04b77c353ac98, 0xbff0f03f087a417c, - 0x3ff4b4079583ed54, 0xbfe720e332f43d88, - 0x3ff90654293300c1, 0xbfe0983acc0e123c, - 0x4000ce41a764a65a, 0x4001b0e43319a67a, - 0xbfdaa09e917d7df7, 0xbff21081caed5b60, - 0x3ff213c3924a0698, 0xbff2ab72846d0a8c, - 0xbfd4439ffccc027c, 0x3fde1256237f7324, - 0x3fead0d65a4f5d3c, 0xbfff0bc0e62195b8, - 0xbfed77c2bcfad2e4, 0x3fdbe050f9e0ca54, - 0x3fe06dbb7d27a35e, 0xbfc5219350295600, - 0xbff5a64e2ac6e60e, 0x400f51f01a7746c2, - 0xbfee4aba1764a514, 0x4003dae423e715f6, - 0xc002f9b80e3aec13, 0x401323c83e589ed6, - 0x40009b18a9b32fcb, 0x3ffd8e6dc32c98ca, - 0x400a638c1b461ddc, 0xbfe49dbd345a450a, - 0xc00685d9f76af322, 0x3ff417bf1b9631f3, - 0x400f43ec91accde6, 0x3faa37a1b7800e90, - 0x3fc458dfbdde99ec, 0xbfec5ec65307fbdc, - 0x3fec699ac69bd6f2, 0xbfff23298da49594, - 0x400ee355707a6d84, 0xbfff0f93fd3db7af, - 0x3fa74779cb0802c0, 0xbfe0f5610babef86, - 0x3ff1c66c8e30ea4f, 0xbff1f158ef2f170b, - 0x3fd590c9b08e28d2, 0xbff6ddedc49df1a1, - 0x3ffc005b53314877, 0x3fd4409994e8bc7a, - 0xbffc6e05ab11c8cf, 0xc003a543dfad928e, - 0xbfefb134826ad55b, 0xbfe41c44930f8f7a, - 0x3fe26e7e8073a2f8, 0x3ff36c3fc06bd450, - 0x3fcbfcc9f52ad510, 0xbfd5bb29cdcce120, - 0x4016e05b76882a47, 0x3fe5916719f59e7c, - 0x3ff681fe383054a0, 0x3ffbc1fd7809dffa, - 0xbff93534632d3305, 0x3fd857b12ed21ed8, - 0xbff874f5311e1898, 0x400817b5a2642c42, - 0x3ff39caabe11f422, 0xbfee07dff0af6036, - 0x3fe356a95f5f6440, 0xbff1d89c086ab03e, - 0xbffc2aef6341228d, 0xbfae912ae2dcefe8, - 0xbfe1fba4bc78e3c0, 0xbff69b96e7ebce78, - 0x400cc07edb6db228, 0xbfc3604ccf8c1ffc, - 0xbff8b72f27a36a3e, 0xbfd6f2ae4f251312, - 0xc00148c0bc82b3df, 0x3fdba6357c5c22ee, - 0x3ff56d653e3810dc, 0xbff9deaf1d2f989e, - 0xbfd3b52f1a3c7280, 0xbffb360c421d3c55, - 0x3ff9473127ef152a, 0xbfe1972501c88686, - 0xbfe421375c04562b, 0x3fe5e38b30866f66, - 0xbfeeeb95e0bb1775, 0xbff2f5068e19c6e8, - 0xc0020401cc7d1d7a, 0xbfe719a98875051f, - 0xbfddd6a23f855556, 0x40056925c09f7690, - 0x4000f0493b02e0bd, 0xbfb917930bbb0220, - 0xbfd7e12c6c38e660, 0xbfacbf5d2b1023b8, - 0xbff4e60445c2a79a, 0x3ffa3cb99c16330b, - 0xbff64d3daf149b10, 0x3fe467a91ef2d0be, - 0xbff391cb65e3a31c, 0xbffc66ee080d8089, - 0x3fb0db2a567dae00, 0x400572417b907b3e, - 0xbff0cf7662b74d67, 0xc0040d44fadf01ac, - 0x3ff5e084c83be076, 0xbfd288fb3b21b417, - 0x3fdd3d0aeb4a27db, 0xbfb30cb0d40091f8, - 0x40039cb2e688ed99, 0x3fbe8ed06935d110, - 0xbfc90d29b0ea066c, 0xbffcea1f5083a02d, - 0xbfe2b0fb1346d26d, 0xbfc911181bdede78, - 0xbffd9ac24aed808d, 0xbffeec5a83d44f86, - 0x400904b59774bbb4, 0xbfca70d30e086168, - 0xbfd727d9e7c6f3db, 0x3feb95c4c3cf5ff7, - 0x3fe557e0686cae12, 0xbff284fb1500b4f0, - 0xbffc177dbef329ca, 0xbfe9016d48be7c12, - 0xc006cf3510a23aea, 0x3ff764c1912d4c8e, - 0x3fe400b0a22ac753, 0x3ffbc59446ce08a4, - 0x3ff4d5c3b594ca20, 0x400089cf559bd650, - 0x3ff1d858b38b211d, 0xbfe80c3f7ad48a14, - 0x3fe56462d3ef1914, 0x40144cf2d5f65336, - 0x3ffa07b8e7ddb6eb, 0x4005d7e06f60ffe0, - 0x3f90b8ab37908fc0, 0xbffa4b622a818ecc, - 0xbf855bc3d02a7d80, 0xbfc731f773b6ba10, - 0x3fff33e955cedcf3, 0xbfd046b5a257070e, - 0x3fe3b7b37b493d7a, 0xbfbfe34e0d241532, - 0x3fd19b367546ff18, 0xbff4029fe777122e, - 0x4002d27465953850, 0x3fc843250895cd90, - 0x3ff69fa2017f02d5, 0x3fc210fcf7c89ee5, - 0xbfe07a3952a9a773, 0xbfff05502ec0d670, - 0xbff7ca2157a8a7c6, 0xbfe38daf6dbb0f85, - 0xbff20fdcb69aa5a3, 0x4011234ec3a7af1f, - 0x3fca541da11c9407, 0x3fe1f3ee3e6591e0, - 0xbff6b4063fb21847, 0xbfd2f4a32764c7b6, - 0x3ff955e30928f4f0, 0x3feb36265fc57d52, - 0x3fe7d786c108eddd, 0xc0020b6b45f759a2, - 0x3ff82e7898247d9e, 0xbfd28da9db480ff4, - 0xbfa0ca21ed51a920, 0xbff530afa24f6d96, - 0x3ff6f4b55e89115b, 0x3ff4d0c0cebf047e, - 0x400fb5b25aae477a, 0x3fd77a3a0ce26b24, - 0x3ff09f36e51128ea, 0x3ff6ac338a4c7c8e, - 0x4001af84e3344ab8, 0xc00a96b0363e700a, - 0xc009e482052bfff3, 0xc000b061f4f95de6, - 0x3fdc8a9cb6edcf49, 0x3ff006e6a4af786f, - 0xbfd519c76ac6d1c0, 0x3ff0ae1ac76595a9, - 0xbfcaec617e95702a, 0x400b7f5e7dbb66ac, - 0xbfe382429b5fffb0, 0xbfe57f52204e0d7e, - 0xbffca29f3b7b51ac, 0xbfcff5eadb03d704, - 0x3fd2cdc43eef2080, 0xbff6c84bcd9e2b18, - 0xbff9e698fcaef56b, 0x3ff8d83891065d3c, - 0x3ff01025bb5eade6, 0x3fe468ed593b05f4, - 0x3ff6ec2705709d98, 0x3ffa4e7adfa2049c, - 0x3fe19cdea924f260, 0xbffa8b0e2570519c, - 0xbff7f6176133751c, 0xbfed6271caee4277, - 0x3fff77ce3352b431, 0xbff78ee54a56f4be, - 0x3ff5ee906e8f0696, 0x3fe6b44f7a016246, - 0x3ff1f78ef78132cc, 0xc0025ea046d424d8, - 0xbff4805a4fade0d0, 0x4008f9873458b170, - 0xbfdf9a12815ae892, 0x3fb854924840e54c, - 0x3fc26aa661e18b20, 0xbfecd60bfa274cd4, - 0xc0066b81d0a7ebd6, 0xbfed1e60b4f7bfb5, - 0xbff9e7bcd7222392, 0xc00b78303725e7fc, - 0xbff93067daae8867, 0xbffe4137567f9e79, - 0xbff822a69c7130e4, 0x3ff3d4bd0540d798, - 0xbfb480aade3a5ac0, 0xbfe5b51baeed96f4, - 0x3fb07d3ee57fe420, 0xbf8bde2c253b85c0, - 0x3ff7921b99c8e2d5, 0x40011bd586e5dc91, - 0xbffd17f3606fa631, 0xc000e30556c47162, - 0xbff5511fb65726fc, 0xbff9322d0ad673ea, - 0x400131cc1804a6b1, 0xbfdb602382619caf, - 0xbfff71b28db77261, 0xbffcea0eee2f68a1, - 0x3fce0f76b39d8711, 0x3fd15e797ece57c0, - 0xbff1691c8063a8f0, 0x3ff57c612011c12c, - 0x3fc8843c1714e2a8, 0x3fe9496ab4198ac9, - 0x400b73762cccf973, 0x3ffcfc948960586d, - 0xc0027db2a9fdb81a, 0xbfeab5dd036143cd, - 0xbff0f20cfa89a35f, 0xbfe800bf37564d21, - 0xc00de447908fb19d, 0xbf8424635955f980, - 0x3fffb9a7810fef40, 0x3feb8710d042c2bc, - 0xbfe9af21fcdbfbf5, 0x3ff010a0b86c221f, - 0x3fe7f18e9a3dfa68, 0xbfdfed6f46b8e678, - 0x3fdd97fa4d78dc02, 0xbfa9ffe459539050, - 0xbffda69e66fa0fd5, 0xbff3e0de98e4cad5, - 0xbff12402b824169e, 0x3f4c811460150000, - 0xbfe851a3b5f9ad7d, 0x401326d27b15cd6e, - 0x3ffbd9c9b65596ff, 0x3fed16614af1c798, - 0xbff3e8cd1fbf7a84, 0x3ff1d8e64eedfb0e, - 0x3fb65bd145d26bf0, 0x4000454d08f767f0, - 0xbff522281326ed85, 0xbfe8713ee900103a, - 0x4006a043663d210b, 0x3ffa1bcef2bd425c, - 0x40031508fe4987d4, 0x3fd0983845e14a00, - 0x3ffbf10c3073f435, 0xc00a28e6259f5b3a, - 0x3fe118cf8d44909e, 0x4001c6425cb669c2, - 0x3fe0cc5cb18a0299, 0x3fec4fca35449488, - 0x400730c9a6a381af, 0x3ff6543d09063298, - 0x3f9ddb88acfc36b0, 0x3ffe1b384eb72ef4, - 0xbff4e162fc24f757, 0xbfca125d759c7594, - 0x3fe4b4e244c8f600, 0x3ff08474e21864c6, - 0xbffa2e3e0df7972c, 0x3fe5acf0debf8d27, - 0xbfec334e62ce2446, 0x400975d84cdab7d3, - 0x3fab4cbd947e8098, 0x400f7a6aacec0300, - 0x3ff17c1061215fdc, 0x3fe367be0de2a41c, - 0xbfc7e0ae4f92a500, 0x3ffd75654ec75844, - 0x3ff622bf9db44527, 0x3fd0c646647d5f4a, - 0xbff7a796b0b511ca, 0x3fe123473b423d04, - 0x4005be48b8122141, 0x3febcd4b733025dc, - 0x3ff2aea1c007e932, 0x3feeedcb36e983a4, - 0xc009b8ab885cacff, 0xbfcfbd5c96986f4a, - 0xbffac4b8faf3700c, 0x3ff3fcd2b4920234, - 0x4005f0a610869850, 0x3ff5b0a44c842291, - 0xbfd05c8569ff6686, 0x3ffa89d7b0a2b4e9, - 0x400102cbb5454043, 0xbffec057e6945f43, - 0x3ffc60d1b968ae28, 0x3ff189bed5f8f87f, - 0x3fd3b0ab7cf27400, 0xbfc03854840b2024, - 0xbff5ca4a71bf60fe, 0x3fd60f646633a34c, - 0x3fe93f7e8d7f57a5, 0xbfffd5cb45bc95da, - 0xbf99d2d7f2d009e0, 0xbfcbb5bb080de0f8, - 0xbfee7df494405d11, 0xc0021df316b881d4, - 0x3fed4fa5211c9ca4, 0xbfb38473a0d81b90, - 0xbfe1e4b1e5e12630, 0x3fb02cc96a702e00, - 0x4006b02ee2babb22, 0xbff5da182ec26cde, - 0xbff5b3e98cb29aae, 0x3fe957fced062f35, - 0xbfe36ce9d3468b10, 0x3fe34144fbdeb825, - 0xbff362f8fc302a65, 0xbff2eb74e95ccbb1, - 0xbff8dca0151e4575, 0x3ff3520648731ad7, - 0xbfa14288a51a55f8, 0x40004ff0b604e358, - 0xbffa9ff8701e2d98, 0x3fee78d0e6c3d8f7, - 0x3fd9b7e3e25d8ec4, 0x3fb9a45ce4dbbdf0, - 0xbfe4704bcf0c5a3e, 0x3fb8d54081c94458, - 0xc00e125934a59888, 0xbff52ce03c3dcdb7, - 0xbfe9351abd5427e0, 0xbfd3b58e16287271, - 0x3ff8cd0d5d165d7b, 0xbffd463edfd0901f, - 0x400557fc3183a130, 0xbfe62c46c611ff3a, - 0x3ff07fa3e0039d16, 0x3fe061e84bd179c6, - 0xc009e206bfb8aa75, 0xc003dd7aca3a9932, - 0x3fe921aa030acdb9, 0x4006f3c5080f672f, - 0x3fc6582c70baabca, 0xc003641c4040b8ef, - 0x3fc1ebe080c0c7f8, 0xbfeeac53e5d67514, - 0x4010c9e7b229f01a, 0x3ff472569ba88661, - 0xbffa6ab45a1bac2f, 0x40045183301f2de0, - 0xbfd33a2f95721c20, 0xbff943a78b7a8116, - 0xbff97c936aefde8c, 0x3fb718020fde58d0, - 0x40031a84b5f992c5, 0xbff3a3e46a632335, - 0x400bf10a2ba0ad0c, 0x400d17481c7e8b00, - 0x3fb3345fef43d02c, 0x3feb61388bcd3ed1, - 0xbff1ee541f8767ac, 0xbffb3011ee3b2cbc, - 0x4013b6fc15c4479e, 0xbfee286cbf9c2234, - 0x3ffd389dac704680, 0x4011793afe53305b, - 0x400337acb3aec66f, 0xbffffc968070014a, - 0x3fde4300811466d8, 0x3ff9a33f62b7faaa, - 0xc004942284f6ded9, 0x3fb3006ffd27c794, - 0xbfe17adbf18a225c, 0x3fe761ad9f75fd9a, - 0x3fef0d14e994e6f4, 0xc003e2439e701507, - 0x3ff7b75e6c044dd5, 0xbff1fe1147ca6285, - 0x3fe990c8497caa9c, 0xbfd03bff2242f148, - 0x3fec04a2059f41c6, 0xbfe357b3912b2540, - 0x3fe467e1fd288627, 0x3f9f7f3628d6a500, - 0xc00a7f4f09771832, 0x40004a90943d9a87, - 0xc003e2ac85392f15, 0xbff6acd58534994b, - 0xc0082bfc51d24795, 0xc0076144e7e59ab8, - 0xbfeacb3fcf8aa108, 0x3ff2a5275c3d18c6, - 0xbfdff2fdc04d03fe, 0x3fdf6e3fa658139b, - 0x3ffb047d29fcddb8, 0xbfd534d11505cda8, - 0x3fe7b5472a6b2299, 0xbfcb872aee0d88a4, - 0x3ffbca576de963dc, 0xbfdb5620013aa177, - 0x40069ab52a27ec17, 0xbff21c8cc14acabb, - 0x3ff5a9c01a3c7aa2, 0x400db1d7ba1a5793, - 0xbf8e85b15555de80, 0xbffe472f06ae94d0, - 0xbff4d81b3e3859b0, 0x3fc5d91ed4e1dbc0, - 0xbff59269fe687cb6, 0xbff42a588150bf96, - 0xc00857776ae9ea0e, 0x3fe04d7f1ac64b77, - 0xc0042bf02d4d3904, 0x3fe0c9e2258e3688, - 0x3febdb18039a3cf2, 0xc006be1c9e04e8e9, - 0x3ff28d411e6d45bf, 0x3fe11d2ed6a5cc30, - 0xc0037795f9b41d28, 0xbfd0d046a8a8d7ee, - 0xbfffce465c8de820, 0x4086621cae230b0c, - 0x3ffe0b5daab47d72, 0x3fe6d36a603fd804, - 0x4001dffe1c59d123, 0x3ff2305251c9ecbc, - 0x3fdaf7aee5862a6e, 0xc0012e68151a5f60, - 0xbfdd98bac67b6b82, 0x3ff645930f0bbeb4, - 0xbfa661978edd76a0, 0xbfec7790abf20782, - 0x3fe620f7d0fc1401, 0xc00b23b69a42408d, - 0x4005619dad723b58, 0xbff30a04d646eb0c, - 0xbfe1e74d77333586, 0xc0087b3a19c0165a, - 0xbffe8a6e7b1d151a, 0x3fbc61c5167118c8, - 0xbff7e71e6c24f0b7, 0xbf9d25db2bc8af30, - 0x3fd96b5618c90ec8, 0x4003942694973510, - 0xbfd9ab2aa494c7b8, 0x3fd7985ae4bc8ffd, - 0xc005dbfe4783c5b3, 0x3ff6b9961274a784, - 0xbfd62c756c442c30, 0x40027146c6295a3c, - 0xc003ad51007a736c, 0x3fdc53f1afc2dcd0, - 0xbff12f2589adeb1e, 0x3faf5c1e22e8e720, - 0xbfe35fe1ff2ce458, 0x3ff7769b8269da86, - 0xbff66b95f9cbf55e, 0x400c996483216157, - 0xbfe0cbabeb6c446c, 0xbff7b1f615afa2ce, - 0xbfe073582b16b680, 0x3ff959844fb176ac, - 0xbfcb915790f1b618, 0x3fb0ed2df566d390, - 0x3fc865ede0e9c1ea, 0xc000fde17c24d0d7, - 0xbfd2c870de880dc4, 0x3ff7826a23cb0d34, - 0xbffc600ec6844a22, 0xbfe2a5f99021ca2c, - 0x3fe97c0e8661ce62, 0xbfdde3d7aa92ef54, - 0x3f88f01af0989a80, 0xbfca85ca9c328982, - 0x4006f3d8b3627e47, 0x3fed97e13053dd00, - 0x3fb4f258920201cc, 0x3ff8dfd9646f55dd, - 0x40007f6831d81ab4, 0x400271f35facb3cb, - 0xbfe838e529e37346, 0xbfe6164120def89d, - 0x3ffc2b2c7b92db86, 0x400151a578c0e829, - 0x3fe986a9138bfa1e, 0xbffd0a0e5bf0ed00, - 0x3ff17906b5cba5ba, 0xbff93186f852e753, - 0x4003b6aa097c96e2, 0x4010b6d5e65c2877, - 0x3ffe8948605b336a, 0xbfeac4a0d0d7c591, - 0xbffde1a26a1add7f, 0xbfe47bac3a5d286e, - 0x3ffeed27851cd33d, 0xbfe0fa9a8152846b, - 0x3fdca5759f4fa36e, 0x3fe2f23e0b7ccdfc, - 0x3f8577f11abaa880, 0xbfee591e9dc10486, - 0x3fd89081d55f62f8, 0x3ff2dd62a22a4eb7, - 0x3ff9dc27e4266b51, 0xbfcb4b199b117128, - 0xbfdf4f493e22ef27, 0xbff3f69a47e2fb48, - 0x3ff0ea46f1da6f12, 0x3ff47b2bf9ae6c54, - 0x3fb7206362ba07c4, 0xbfe118b4bbf5516e, - 0x3fec3d011facd0ca, 0xbfe27fceeb62cf80, - 0x3ffd3fada454a135, 0xbfc5187ab3a72190, - 0x3fe8b4c1c3894f51, 0xbfeaeccee41e8ba2, - 0xbfe18e081cf810b8, 0xbff80f2861b8bd39, - 0xc002ca5c8f72c5de, 0xbffe63642ba866c9, - 0x3ffb2ac066c23edc, 0x4001a973d60d1e6e, - 0xbfe360a4c340e779, 0xbff38f053d64bcae, - 0x40084c40c8f6b450, 0xbffb3b78bc6646f3, - 0x3ffd9941789ae995, 0x3fefd79f29facfb6, - 0xc0051ccd5fc9db44, 0xc002501eb3016957, - 0x3fc3f9e3fa1b9bf8, 0xbff432fcb5dff038, - 0xbfce8984d023c3b0, 0xbfe533c599f5af25, - 0xbfe1df3a8bfc5404, 0x3fc0422b7dc147d2, - 0x3ff597e88d972138, 0x3fe1ae9c8ca19e43, - 0x3fd94da0d40764af, 0xc00ee894d3ab53ba, - 0x3feed18c4ab3c3a0, 0x3fc0858e06bd0339, - 0xbff253f5b1e7c8ae, 0x3fec09d8f5c6529a, - 0x3fedf6bdd4010cd8, 0xbfce38697fc2a44e, - 0x3ffbb22d036d648d, 0xbf8223465f675f60, - 0xc00f7db9db26c24e, 0xbff1443b2bb146ba, - 0xbfa91e50dd521344, 0x3fc2d673d0f9a714, - 0x4000acc75125dfb5, 0x400a0946ea11a4dc, - 0x3ff19dd78fe14ba4, 0x4000e77ebdaaba68, - 0x3ff97b2dab0417cf, 0xbff15b7e6dfd18a6, - 0xbff8e109c24d23ad, 0xbfe20c70bb2c27cc, - 0xbfecc890111a8142, 0x4000cb914ebc5066, - 0x40074f7b75c7bfb6, 0x3fe5028a79314782, - 0x3fe838735c6fbe32, 0x3ffcf1486c6aed44, - 0xbff1e14dfe9fbcb2, 0xbfef513443c10e7c, - 0xbff243d4da38e2d6, 0xbfd01c8d5f8f88c8, - 0x40042f8a4da3bb09, 0x3ff68bda0aaa9d22, - 0x3fe3bea5bcff86fd, 0xc010a472dbb92297, - 0xbfe48fdca90cbd10, 0x3ffc1b7d58a5c560, - 0xbffbe4b82c536f86, 0xbfddf37dfd98c8c8, - 0x3ffd9aa4ffafc0e4, 0x3ffd8121246479a0, - 0xbffdbdecabf7a534, 0xbfcb2a4e69036df4, - 0x3fed9e0c3c4c8a9e, 0x3ffcbba670d7ebcd, - 0xbfb95d96496c5fd4, 0x3ff10e053ff64239, - 0xc006ad1d01e7223e, 0x3ffa4be46d0af6ea, - 0xbf846d3194905b00, 0xbfe2f390fa98c8cd, - 0x3ff3f4416d184472, 0x3fe00d53e22e3aa4, - 0xbfd2b973346c10e6, 0xbffe9213f73f8619, - 0xc00129cc41119068, 0xbfde4b35c84ac0e2, - 0xbfe7c056b6747202, 0x3fffecefe14bb756, - 0x3ff463fa5e323aba, 0xbfe9a01f0aa8cfee, - 0xc0047e419f0a2420, 0xbfe997d2a93d26fc, - 0xbffb7c6cebbf8618, 0xc000e97288291f19, - 0x3fe15ddc0f1cdd00, 0x3fd4352fa1b340b6, - 0x3fcd79d5fbf2f1d8, 0xbfe2b118c3bf6264, - 0x40104d4ad8774026, 0x3ffe1fef24e81993, - 0xbffd1f4a6753c870, 0xbfaa942f396eeb90, - 0x3fc485345f071e08, 0x3ff3240067240cf5, - 0xbf8f60445994afe0, 0xbff800dc2c1c0fb6, - 0x4003393e1147695f, 0x3fdf4b3a175ef3ba, - 0x3fd7c4c60583e4b5, 0xbff3864fffc7f032, - 0x3fce0d28a2313658, 0xbff90944a5d50e68, - 0xbfe1591f88eee6c9, 0x3fe1f5368db5abb2, - 0x3ff6ad40188280ca, 0xbff0ce28ff1004ed, - 0x3fbffdf985bd7a10, 0x3fd8a2457883a567, - 0xbfe3563d8819c577, 0xc00400d28df6aca2, - 0x3fd936823feb831a, 0xbfea5a9ead5640e2, - 0xbfcc840e835fc96a, 0x3fd656a844f6f169, - 0x4004ba150c515f92, 0x3ff47acf9766b55a, - 0x3fc0db329ebf650b, 0x3ff4e7a17653b253, - 0xbff03b4805860b02, 0xbf79555f8c563d80, - 0x3febcd43d77e37e4, 0xbfe5955f49312258, - 0xbfe703c159c8aeb2, 0xbff0a20624d18af1, - 0x3fb4a9e1723fe9f8, 0xbfe0759ccec3606d, - 0xbfccdddb7f111324, 0xbfd2cb426f1f9bd0, - 0x3ff23db602edeeae, 0x3fc7de24430462ba, - 0xbff9467b12e9f771, 0xbff6beb4c5ffda16, - 0xc00133f971cc443c, 0x3fe29278029f87d8, - 0x3fe07266263c056a, 0x3ffdb5469e21d0e9, - 0xbffb2a246eb0345d, 0xbfefa5f417ffb6e2, - 0x40037bab81fce328, 0x3fa442ac08005a3c, - 0x3ff386e8eef53ad7, 0x3fb3d4c543f709b0, - 0xbfcd6ea2396871c6, 0x3fe6cd5bf5d91f26, - 0x3ffb0ab2f9197d38, 0xbf94c17af06bfae0, - 0x3feb4003f67edd84, 0x3ff0087085aa1175, - 0x3ff9380bfcd71963, 0xbff6c30f1b840908, - 0xc004afc05faec746, 0xbfce26efaae86406, - 0x3fe936b9d8ca33ef, 0x40012a6e064adcd2, - 0xbff2f93bd90782fe, 0x3ff516b50b48c38f, - 0xc00a51198dae5a7b, 0x3fb83e8b50345204, - 0x3ff0b8494dda2541, 0xbfd87d6d817b9db8, - 0x3ff61cf1a60228d7, 0xc00e8ac97c1b9d84, - 0xbfeb1d3b2ace8829, 0xbffcacf0c2045b3e, - 0xc004495aa3e38364, 0xbfcd812a15d35c9e, - 0xc0001d38534a32b4, 0xbff1a53669dd47bf, - 0x4009e867dc59331f, 0xbfc27892d70137a0, - 0xc00245070f87526a, 0xbffee30fbb8d45ae, - 0xc001c081644b467b, 0x3ff0bded14d0ba10, - 0x3fd1ce394bf58444, 0x3feb28f40930ac77, - 0xbfe5567d02d127a5, 0x400b94dbdb6a8300, - 0xbfc70dc336a7547c, 0x3fe8721a9745bf24, - 0xbff3f5cd6c33a780, 0xbff4f1bc7b399364, - 0xbfe9a102c9001bf9, 0x400401d7c6f2ab36, - 0x3fec613988b5e026, 0x3ffaff23c0d6c287, - 0x3fc89f0bf231f198, 0x3ff289403170e950, - 0xc004f15568c73a29, 0xbfee51fb363c7b04, - 0xc003461de256e344, 0x3fcdf031078e1d74, - 0x3ffdf25ed88f7ea9, 0xbffb165402eb70ec, - 0xbfde4a10adb0bb66, 0xbfef2065f7efd61d, - 0xbff01c598c7faae1, 0x3ff29fbc40c75218, - 0xc00e4b194e5008fb, 0x4004e247b6473130, - 0xbff63bc625d5644a, 0xbff0c5319c16f3c1, - 0x3fe71c12a56822ca, 0xbff45a6169c45d63, - 0xbfd4851bdf2ec2d6, 0x3ff88fd56c029602, - 0xc0000a534a180191, 0xbff033ddd6289516, - 0xc0057cb01d728d02, 0x3fe44c364cfab8de, - 0xbffe7108edcab12c, 0x3fca912df09b47c2, - 0x3fd40368d4dfd970, 0x3fc3795cdfec1aec, - 0x3fc3bff64bdb6328, 0xbffa510fc8a12928, - 0x3fe728042b64fb93, 0x3ff5fefab832dd44, - 0x3fda0e27b9ee5684, 0xbfe9bab37b7feb5a, - 0xc00aca0d80570f40, 0x4008bb7050a5419e, - 0xbfdc98032bf4de90, 0xbfd20d3fafe1041c, - 0xbfce9f6b2c0437fa, 0x3ff62e39e342ce3f, - 0xbffb9ff4e88027b5, 0xbfd4ca1c0fbaa96e, - 0xbfb6f292b765595e, 0x3fe3ba3ad00a68aa, - 0xc00505f301ee5aed, 0xbfe8e45dfd6a988b, - 0x400a087f923deb1b, 0x40058e70c237bd98, - 0x40045c2c0cd00bb6, 0x3fe16fdf624a301d, - 0xbfe76630bd1d4a28, 0xbff88c29d4e63e55, - 0xbfb28cc0d36a29f8, 0xbfc10e55202a5fa0, - 0xbfbfe6416ead3370, 0xbff5a513bab042d2, - 0xbff3a974ee2f6a4d, 0x3fccd4ff2f86d7e4, - 0xbfe0241ba149f488, 0xbff3bf68270034a1, - 0xc011cdae691ee318, 0x3ffebd7e503beffe, - 0xbff25cb3d1c78730, 0x3ff470b0c1f2a239, - 0xbfcafe088bbea8e5, 0xbfa896c3b6636508, - 0x3ff0afcc77d0d398, 0x3fd91663d9997812, - 0xbfeb4823cf3179b0, 0xbff0e7ad8ab45e41, - 0x3fe1ea3621bb7d4b, 0xbfeb141ba4b9355b, - 0xbfeea7a01f64797f, 0x40026710d01462a0, - 0xbfeca4cf15ba45fa, 0x3fad18d529a02c60, - 0x3ff0053a3eeb0d98, 0xbfff7feaf5e0d186, - 0x3fdb8c2f79db80c4, 0xbffcb23b538a05fa, - 0xbfdb1979d829d544, 0xbfe5a640e34360da, - 0x400210c83f1f62e0, 0xbf93753362cf1140, - 0x3fc21738b5b8a71c, 0x3ffd4320edc71cb6, - 0x3fa6868705e5a658, 0xc00647ee3b8e0765, - 0x3ffc2daea60678a9, 0xbf9d1daf4fac3740, - 0xbfebf46a28ba0fe4, 0xbffa793ff22a8c34, - 0x3ffcf52564179639, 0x3fee9dfb6929418a, - 0x3fef72b9e48c8529, 0xbff6fb233462ca21, - 0x3fed079149ef8a34, 0x3fd1eb64a0b58424, - 0xbfe6dc4a5ab95df5, 0x3ffca0d8a9b193fc, - 0xbff64e5dc707944c, 0x3fdc0fa57dc258ed, - 0xbfeb5506558e6ed0, 0xbffa2095cf4bb628, - 0x400602740152b75e, 0x3fda44d68ac65d84, - 0x3ff13430695c3771, 0x3ff3532b30c70ee6, - 0x3ffe1c205496763c, 0x3ff16241400ce112, - 0xbff355e0c2ca12fe, 0x3fee95b0e50bc530, - 0x3ff63b1fb9ccf31f, 0xbff3459bf4ab309a, - 0xbffcf628e1987198, 0xbff87d89bdffbbcc, - 0xbffd1336570d1f74, 0x3ff117457a47b932, - 0xbfaa056c68490fd8, 0xbff7997c377567d0, - 0x3fb221246b2dc3f2, 0x3fe6637991ff0eac, - 0x3fe78a4592911e14, 0x3fd04a7f93baac28, - 0xbfde97b6a990c05d, 0xbfb301d1d1321a40, - 0x3fcfb7c54e2ef76c, 0xbff9d076e7aedaa8, - 0x3fee62e257314ce9, 0xbfa9a029bbf36930, - 0xbffef7746bf1646f, 0xbfe70587f0a08a4d, - 0xbfeb44e313591f14, 0xbfd7ba5ef648b16c, - 0x3ff07aac3a8ec39a, 0xc00bdc0fa9e02c7b, - 0xbfa74d051fa42180, 0x3ffab532c9e3e569, - 0xbfe4abec04b9acd3, 0xbfeb21fd0c5ecfaa, - 0x3ff3007f4c6392c6, 0x3fe8ee44567e4636, - 0x3fd2a2c8fabc3162, 0x3ff6bcb1cbf737f7, - 0xc0011af4c7efde71, 0xbfec7cbf1c22dc40, - 0x400309d0ae39c9a2, 0x3fe668249462f12b, - 0x3f80a43ac76c8fc0, 0xbfda7d94e91edcd4, - 0x3ffb332a33646f9f, 0xbfd43efda14d9a10, - 0x3fc0e4cf0f1a4dd8, 0xc003f260cdc08a03, - 0x3fdaff8b21232b41, 0xbfeafe69312f0769, - 0xbfdcd4951085cb5c, 0xbfe79dd387dc3848, - 0xc002937a3e89e99e, 0x3ff5a5bbb07b002a, - 0x3ff7c0a0b3439415, 0x4002ad9721dc769c, - 0x3fe839cec18adc12, 0x3ff54e236f330b9e, - 0x3febd35ab23f65ca, 0x3fe9f691be2032eb, - 0x3fad9b49a8e91220, 0xbfea247433657a78, - 0x3fedec5758a295f9, 0xbffe1853295d6558, - 0x3fc19810c1fa7fce, 0x3ffb9e93deb2cac6, - 0xbfd224bee7df1d02, 0x3fb5fe8bcfaba704, - 0x3ffccdb481f780d2, 0xbff1c88fcb2937fb, - 0x3fe3f63a38e3ad40, 0x3fd25903e6ea1fbe, - 0xc005fd2c3157892c, 0x3ff5d7e8a106316e, - 0x3ff5cbec53ded740, 0xbff405d45594aa6a, - 0xc004362302515ed5, 0x3fe2b343ca7af200, - 0x4002546c566895c2, 0xc003a095ec899fe2, - 0xbfffb134ac8a1b50, 0x4002c348637c230e, - 0x3fe70605098af7cd, 0xbff4d87e13924b07, - 0xbfc734a6f14a3670, 0x4005ec1c346671fa, - 0xbff8f935ff080dc5, 0x3ff74a3124482dae, - 0xbfab455502c691e0, 0xc00bfa74f904fbd2, - 0x3fd5b6855050a7f7, 0x3ffbb51bff7732f8, - 0x3fa1c007ccc25fb0, 0x3ff5b2f5e5069eed, - 0xbfe3239f4201afae, 0xbff1de57ffa1449b, - 0xbfeb9ae4edb826da, 0xbfab136a46ab71e0, - 0x3ff390abe9290e7e, 0xc00981bc3644505f, - 0x400613c19ee0290e, 0x400f21c030f929f8, - 0x3ffad0eda14837a7, 0xbfdf7e92fc4015a8, - 0x3fe629e38f190220, 0xbfef0969585a66c4, - 0xc0020ad2d063117e, 0x3fe7f44595a35671, - 0x3feaab07751eec7e, 0xbfd533df19f6eff0, - 0xc009fc5bc8cb6ed2, 0xbfe8f5336e6e1d5a, - 0xbfd73590c05d3316, 0xc00427513e5ef83a, - 0xbfe7e6857b0d996f, 0x3fe87cb9b7ca31db, - 0xbfefaa3877d737c7, 0xbfe598fc4ba3c252, - 0x3fd1a1e3e4be0fe4, 0xbfb71ddb3c79e1a0 + 0xc01405d8ccbc9b1a, 0x0, + 0xbff57ed5eb3783f6, 0x40090b2d821d009a, + 0x3fe4103f98478e1f, 0xbfd7abb315a7b770, + 0xbfee33b9a7f286d8, 0xbfea261c54e2c14f, + 0xbfd349226edce82f, 0xbfd8e9ae13fdbe82, + 0x3ff86fa651c2d910, 0xbffbad39fb03d08e, + 0x4005a1c8e713fd92, 0xbfdec61c2bec465a, + 0xbfd14d0b0d057abc, 0xc0008cfd4c8fd3fa, + 0x3fd67c8a8f7c8e28, 0x3f8d858074a11a00, + 0xbffd034d7d5b7996, 0xc003c3adbccc07f0, + 0x3fe48800e9b984f8, 0x3fec6b2929b65164, + 0x3fda05babd70ec18, 0xbff108ae1613f0fd, + 0x3fdf515fa16afc35, 0x3ff64a6026888d6c, + 0x3fefe43c45df3943, 0x3fe0d91fc3e1bb82, + 0xbfea42828cd4d7e7, 0xbff646c5328beb98, + 0xbfeef5573c6f3866, 0x3fce7cb66877446e, + 0x3fb85284c70bf630, 0x400507651b34a2e8, + 0xbffa1b5191af528a, 0xbffeb8d9ed12754b, + 0xbfec090464d62ebd, 0xbff90742e5a79036, + 0x4008e5f3aecfeb46, 0x400462a8a84ce410, + 0x40044c60acefc075, 0xbfd62bdf66784128, + 0x400dc9fa6e22d7dc, 0xbfef2fab51736088, + 0xc00606a2cb3df32b, 0xbfc3828f88aa086c, + 0x3fe663ec70706c97, 0xbfea2839fef36f48, + 0xbfee1cdf8c96091b, 0x3ffc23cc6c66671a, + 0xbfcd27f5cef4e660, 0x3faf8c420e484b9c, + 0xbff962e0089fbc20, 0x3ffdf8a6d441face, + 0x3fcbaa64f6bc3f20, 0xbfe41d92a1f7f1c0, + 0xbff72ab08314a790, 0xbfdf79a404482ac4, + 0xbfd354a5eab974b4, 0x3fea6fc6a98166ce, + 0x3fd771b885061764, 0xbffd2466adfc5f52, + 0x3fc4c18fdc3bdf10, 0xbfe9ccf0d01f1412, + 0xbff7747e82f5f4ee, 0x4013a35a95fc7946, + 0x3fc7788fbffb3534, 0x3ffc324e33a9ebe1, + 0x3ff6eafeb45f7c96, 0x3feda87c81162267, + 0x3fddf140c00a6d82, 0xc008afe96c362010, + 0x3fe95d1bdcbeae4c, 0xbfc74189127a3842, + 0x3ff3844203255be1, 0xbfc5483cfebc5a4c, + 0x3fe580ec4b99f96e, 0x3fcbc234a8b1f528, + 0x3fd1203c25a7c95a, 0x3feb5f2204fa5bd2, + 0xbfe93ce099e735be, 0x3fedad15c2a9a370, + 0x3ff2ea5c3bf28b24, 0xbff48a73c0cca0d4, + 0xc00196d4449a425d, 0xc00acda988bf2628, + 0x3ff55be3d34d57bb, 0x4001328fa0bed226, + 0x40014125fb7b0da2, 0xbff504fcf72c3c24, + 0x3fe2f621f945b708, 0x400509cdd48a0ade, + 0x3ffc0cde4959b2ac, 0xc00e146cf8358024, + 0xc00a0d2a692b00f4, 0x3ffc8a3ef65bbf0c, + 0xc0002f7fa880b51d, 0xbffd073a33e909d2, + 0xc002bdf8c23cc363, 0x3fd8f8469ca7ab7e, + 0x4005e5d319a4bc27, 0x4004e20ce587161a, + 0x3fd541ff78b66894, 0xbfc421231d6157b0, + 0x3fcf17bbf08457b0, 0x400097a37ae990c7, + 0x3ff179cb36f720b2, 0xbfe635c6a03fbf0f, + 0xbfde9c53cf0fed7c, 0xbfe5a3698058137b, + 0xbffd37b5c3b59567, 0xbfc1a79448999900, + 0xbff3c6c35d620dae, 0x3fba1e6d5d61fe60, + 0x4000330aeee71c5e, 0x3ff6a719998e5490, + 0xbfffe0ca2c29ef34, 0xbfe1088b97033842, + 0xc0105ccf03c74704, 0x3fc651bd4f8e1bfc, + 0x3ff1942230cd6fa4, 0x3fe947b791c04e20, + 0x3ff9bac8034b3c14, 0x3fec2a74762d1e1c, + 0xbffd902b93f8b1ec, 0x400a2bc8e4e12bae, + 0xc01025f8557dac0a, 0x4000454103ef561b, + 0x3fe1aa98f3b335b2, 0x3ffb494d83badac4, + 0xbff45cca6cbf5fb7, 0x3fb399c42f64b370, + 0xbfdecfb559384fcc, 0xc0056ea79afabcf0, + 0x3fdfcea50cda3bee, 0xbfde01755502b856, + 0x3fd2b0dd3d8bf990, 0x3fdf57a4710fe3c0, + 0xbfe051789ec2f77a, 0xbfd7bba36ac3bbcd, + 0x4003a04aee7de2c2, 0x40001da1c8519cdb, + 0xbfe03fbadca97c3e, 0xc00a38d66ca7746e, + 0x3fdacdb45bae28aa, 0x3fbde32cdf4ba870, + 0xbfeb5a35b5927c45, 0x3ff2e9f546521a47, + 0xbff6d7b0224bdde2, 0xc002adbda8bd13aa, + 0xbffcd8b4d1d5a0d0, 0xc00b49581abad33a, + 0x3fe390a9fc52a2e7, 0x40090ce1e5646850, + 0x3fb3f6184498b010, 0x3fb3f3ff1407a4f8, + 0xbfea634de58abf74, 0x3fd9b548b8c4bb74, + 0xc0019d43561702fa, 0xbfead18d98ea0a18, + 0xbfea9b8715361e5c, 0xbfe7314fc52ea102, + 0x3fb83b2bf7fe5eb0, 0x3fde633e21158f95, + 0xbfe3334fc147417a, 0xc01347d68e7e79f6, + 0xc00ef8f277d25cec, 0xbffa33eaf6e95f40, + 0xc011a774fe7efda0, 0x3fed617f81832b00, + 0x400c5d3082208b6c, 0xbfd6d0ff0e8308ed, + 0xbfe5aebc6e24e7e6, 0x3ff68d7f1ff53254, + 0x3fce4e98e5dea3d2, 0xbff613c3cadaf5b0, + 0x3fefa152e86c6056, 0x3fedd0b5aa97f417, + 0x3ff0a1ea53bab26e, 0xbfeb6f6733926b8c, + 0xbff0fdf4f4afc4a0, 0x3fda89843d83793d, + 0x4002fa9fc9fbe392, 0x4008265b02e65e70, + 0xbfe04d15d4ea5daa, 0x40011e9466396083, + 0xbff9f5308e0728f8, 0xbfe6b73c7986d5bc, + 0x3ffb5f9b171c0746, 0xbff881731b72c19e, + 0x3fdc004aff3c44ae, 0xc00fe9a133a12ef4, + 0x3fdd8d39a7e440d6, 0xc000403a715c52d4, + 0xbfdb162e2d3d82bc, 0xc00b75f2c4cd4d81, + 0xbfe50264185a0863, 0x3fd02778f81509d8, + 0xbfda76b243d5544c, 0x3fe60a84f9c90676, + 0x3ff4bacb6f2dfd54, 0xbff2374945271d66, + 0xc00810ec9a799551, 0xc011e0a83f838b97, + 0xc0044fc1b3e0483d, 0xc010138617b9c570, + 0x3ffb26ad6750829e, 0x3fe13342a3e7b2cc, + 0x3fc5f4749f54df28, 0x3ff2e174265ecb1c, + 0xbfc9581bb3633dc7, 0xbfee9a60dc8c1701, + 0x3ff072a6b4c967e8, 0xc005a21bcb6ba7f3, + 0xbfff57503fd447bb, 0xbfc68d1adcafa82c, + 0x3ff7131220ae26c2, 0xbfbf192c7be2db40, + 0x40013924e8938341, 0x3fe5052afd74c1c0, + 0xbff1aaa9cb56e30b, 0x3fed3496658c4917, + 0xbff19a96618a0fd8, 0x3fcfcc9ca0255c00, + 0xbfec1bb85f0d1317, 0xbff3a01e2d77bc38, + 0xbfe8ad26edf41aa5, 0x3fd5658bc4609b9c, + 0x3fe77bfff5a5cf8a, 0xc000f207df0d133b, + 0xbff7545a44e26bac, 0xbfd5b944b225d458, + 0x3fd0e8e188b5878c, 0xbfbd599818e84926, + 0xbfb7075c09c7a870, 0xc009f07f8d3406f5, + 0xbff32f4ccd31095a, 0x3ff98db7de865fba, + 0xbff733467cc122da, 0xc0015fec12bdcecc, + 0x4005368eb1ef8664, 0x4006938e3d88aa46, + 0x3fd09c7597b5b122, 0xbfe077742ad1f8e8, + 0x400419536a4ae362, 0xbfa19927e7d4ac40, + 0x3fe3cb4da5052ae6, 0xc002ddf8bbda165e, + 0x3ff5aa35bbdae035, 0xc0097ae2dba0cbec, + 0xbfdb21b6d9cf78a2, 0x3fe139b525195aa6, + 0x3ff92b2cbbba8a0b, 0xbfe2d6949296dff4, + 0xbfee4d0911afdf62, 0xbfef9fba5186f674, + 0x3fb0df68cff93610, 0x3fe547cfbc64e892, + 0x3ffd91adfd596bf5, 0x3ff0e0ee4262da1b, + 0xbffe1f090bce66eb, 0x3fe4b2dcacf7643f, + 0x3fff1eb45cd9848c, 0xbfd6942e7e47c450, + 0x3f63a73eb345aa00, 0xbfeba91f994a614d, + 0x3fdf0cf209c00a8c, 0x3ff25f6129e7a2a4, + 0xbfe59a050170531a, 0xbfd8d24c4967e4ac, + 0x3ff45066803a9dbd, 0xbfd3b8af3b3c4c94, + 0x4002c8934acae5a9, 0x4003680d671efa66, + 0xbfeb67b7db6cd4c1, 0xbffd429a2aa808c4, + 0x3fe0e15ec09322a2, 0xc00b3f87dd5640d4, + 0xbfffc441a94ea139, 0x3ff32944c3dd7662, + 0xbff9608f40cb4d7f, 0xbff4b3cdaa63eb1a, + 0xbff32544d5d2f8c6, 0x400c08fa8a98b7f5, + 0xc0073a20628f50de, 0xbff7a1c6c948cf0c, + 0xbff866a7900c46d8, 0xc00a8891ca8b701a, + 0x3fd6a35574a1b7ec, 0x3fe779fa6a9da792, + 0xc004fbc6e749d30a, 0xbff0f43e722753d1, + 0xbfea1e00ef21e858, 0xbffbb58d00088c7a, + 0xbfef4b01e040b3ac, 0xbfa0f96a80a41410, + 0xbff02958918d3a6a, 0x3fe3c47a88482bea, + 0x3fee4434b64e0750, 0x3ff19589f5a9e038, + 0xbff7aa9873a74e3c, 0xc0075e1625ebad9d, + 0xbfd7b4d7e8d3b924, 0x3fba2ecbe7bf700c, + 0xbfd802a4ece0f84c, 0xbfe9a3876369090e, + 0xbfe59aa8aebc37c5, 0xbff20cc735a0ed0e, + 0x3fea559f124898c2, 0xc000eaa933e55627, + 0x3fe5e25b3318c977, 0x3ff0ae49b30fa288, + 0xc00496aa4b318e22, 0x3febbf13f9e52d2e, + 0x3fb8e0428cd23ddc, 0x3ff0e0cb9b6fdc2f, + 0xc0049cb1a3156208, 0x40000c4b495c4554, + 0xbfe1767fc2ac8d5d, 0x3fedecba104f2434, + 0x3ff831c31abac64f, 0x3fbf789c78e76990, + 0x400db3c5fbf388ed, 0xbfef872069636732, + 0x3fdb1204bab79b9a, 0xbf9dd5efb08330d0, + 0x3fcffc860dee568a, 0xbfe7637e8a80161b, + 0xbfbee93de0151aa0, 0xbffa6622417c71ba, + 0x4002cdf6dde75c91, 0x3fdd48adec68cfc8, + 0xc004beb993d728a9, 0x4011808f11ab8e44, + 0x3fed0e3b5e386014, 0xc00496faf7acbca2, + 0x3ff511cfa3d0bedc, 0x400d463837e1b8cc, + 0x3ff299898ff40dd7, 0x40022f7751443892, + 0x3ff0d612582ad86e, 0xbfe3b769ed7abb41, + 0xc006fb4c9a1c1314, 0xbfe036fa5c65e4ed, + 0x40014ddd68ffa4b6, 0x3fe511f7b35a59c4, + 0xbfe01be5e70d4b78, 0x3fe3ebb884f5ffad, + 0xbfc9734bce639a44, 0xbff1a2b71fb772b4, + 0x3ff9f73c3f9a992e, 0xbfe96a05941b362e, + 0x3fec598a9f1313db, 0x3fe7e97eac852a8a, + 0x3fee99404e98ad79, 0x3fce44c74a7cc704, + 0xbfed1b338bd53ddb, 0xbff04de2cf877274, + 0xbfbdabd762c9a658, 0xbfe07dad491fd8b2, + 0xbff597d0213794b0, 0xbfe291ab583585be, + 0x3fd9805c0d9d0aae, 0xbfdc4a10541a49fe, + 0xbfeb0492dd9964b5, 0xbff72f5e3e7a1d5e, + 0xbfe4e8368521081d, 0x3ff77b7c15cf4160, + 0xbff6e14040b45f0e, 0xc009fd166d1fd9ca, + 0xbfd95d229c69ca26, 0xbfda5edbd048f6ed, + 0x3fd04914e47bf728, 0x40024b92c7d704d5, + 0xbffce258cde3deb2, 0xc004613a57c98335, + 0xbfc03a4095ccb26c, 0x3ff121701af8f5b4, + 0xbfd100ee4b3ff240, 0xbffac54d7547fa2a, + 0xbff54f9bdf13247d, 0xbff483bcdae295ba, + 0xbfd360f5bd89ac34, 0xbffea730383a2b2d, + 0xbff7093122f3077c, 0x3fe7b16ac5ff2bd0, + 0xbffdf82b2c3aebdc, 0xbff4ca38a76064be, + 0x3f826ee76dfe5920, 0xbfb856f3feb3ad7c, + 0x4000cead697c6569, 0xbff79e4ef4bd012b, + 0xbfef4ccb10b8262a, 0x3ffb3b2b04febb92, + 0x3fff2de41bf864ac, 0xc001ec35341be59a, + 0x40035e03efe4ce4e, 0x40079a486f558322, + 0x3fda2be673db6b3e, 0x3ff74dc0e668a772, + 0x3feb60b8f2a4d0df, 0x40030c45c4bcac48, + 0xbffbd9bd032d41b8, 0x3ff90ab061e01462, + 0xc003d89a5006a5f2, 0x3fe162909e642d8e, + 0xc00b52b934c697e9, 0x3fb252f63e397128, + 0x400444b1f395d39d, 0xbffc59d73f61cb2c, + 0x3fe98e4c6a320dbd, 0xbfeab6533cd12474, + 0x400208c76072a55a, 0x3ffd8be1c4ce78a0, + 0xbfd5f38b454be2a4, 0xbffea65f158ba861, + 0xbfcfdeb6c152f40c, 0x3fe9d456cce11d52, + 0xbfa465072c03d080, 0x3fe5f0bb44b3a8a6, + 0x3ffd570df0f831e4, 0x3fec457cd79b4057, + 0xc0026af7a30c0802, 0xbfdaab594c5be3c8, + 0x400428bac1a5e548, 0x3fffabedcde96cc3, + 0xc004e473f3ebce40, 0xbff17875e95dd058, + 0x4001d1dace816016, 0xc0052220ec90c112, + 0x3fea9ab8b8e4be3d, 0xbfcb2127411ada72, + 0x3fe370ea43073a24, 0x3fd78b15810258cb, + 0x3fe7c279bc71e444, 0x3ff7b7f1cc5932d6, + 0xbfecb031c42755d2, 0xbfa38c29bb373ab8, + 0x3ff60b2a8d362b72, 0x3fe93e27c4f617f5, + 0x3ff0747bdac1c49c, 0x3ff56a5dd608dcc6, + 0x3fd366e0e9322d8a, 0xbfd89ba21cfc7762, + 0xbffa636a2f503904, 0xbfcebaa25a8e6f48, + 0xbfe722da2d614ae6, 0x4004a0d956ed2d68, + 0xc00336081c148b45, 0x3ff31a0f1107a885, + 0xbffa6fa6af9d3673, 0xbff68fffde5cc63d, + 0x3febce138bd97496, 0xbfff25c99cee7719, + 0xbff01b4d4b88a35b, 0x3fd75c4f633aadbc, + 0xbffce98795748810, 0xbff82dbb991bdb4d, + 0xc000b36e51a609d5, 0x3ff543c541d50452, + 0xbff0831a5a718772, 0x3ff3a774eea6a5ac, + 0x3fd17d3cfb9476c6, 0x40053dec56bf0f94, + 0x3ff459ede4cb8336, 0xbfd54186141f1ee4, + 0x3fe521386d455866, 0xbff1551e66d70e5d, + 0x3ffae7639295b34a, 0x3ff6efc874fc2613, + 0x4000453d29ca98c6, 0xbff90903ad98b73e, + 0x3ffc4e9c27e8151b, 0xbfe5b5ea1c17e384, + 0x3ff20146c873c1f6, 0xbff5d5c84db04669, + 0x3fed9c113338406d, 0x3f900d2d78b07420, + 0x3ff2e6a5ba650194, 0xbff170332e37c106, + 0xbfe27bc568fc3d7c, 0xbfb0677f592337d0, + 0xbfb9ca58790b7484, 0x3fdd4980b8c8481a, + 0x3fd4618f07b31139, 0xc00892136f2d6f26, + 0x40040176b560b0cf, 0xbfed8314d7f1cf44, + 0xbfd03c9de1801ee8, 0x3fe207199d0e2b84, + 0xbff2424f80073adc, 0x3ff764e284ab4322, + 0xbfd6f7a6d86244e6, 0x3ff127e6e241e154, + 0x3ffa871140f356bb, 0x3ffb9faa02887ecb, + 0x3fc75c50169e8904, 0x400f803188217e46, + 0x3fb2e8dd85355950, 0x400670e98ac571f5, + 0xbfe553d649101984, 0xc0021eb4f21073f6, + 0xbfe0a32f61d05676, 0xbff743f92e107840, + 0x3ffa7f9df13254e4, 0xbff0b9597cb4b389, + 0x3fe089dc8711dc58, 0xc0015f40a768db3c, + 0x3fd11714176cf298, 0xc006fc8ef2ced11d, + 0xc0091de01dfa33a6, 0x3ff7bb306b81f158, + 0x3fe2f34dd8ad3eef, 0xc0866a81da3e8fc8, + 0xbfda0f7f211449ce, 0x3ff2b6160db079e8, + 0xbfed7eaefec038c2, 0x400fd04f56247ac0, + 0xbfb7b8740b83144c, 0x3fff8c37509bde60, + 0x4004395e53cdfd1a, 0x3ffb29f43e2c6cb6, + 0x3fec983ba7d7aaae, 0xbfb7b987dfd98abc, + 0x3ff5500aa013e5ae, 0x3ffd15382d0fc6ce, + 0xbff26da928d552f1, 0xc01525b7fa15ee1c, + 0xbff992d392bc9246, 0x4002c637cb9d43ee, + 0xbff82bb6f5a6d08b, 0xbfe39ceb62749a26, + 0x3ff00ab019a64a16, 0xbfd2b20471b40581, + 0x3ff77a94900b82e7, 0xbfe5ffc1c28e64d6, + 0xbff7b5e93c060206, 0x3ffb9ce70f9d8cf4, + 0x400b04a1a2a9bf21, 0x40046fb931796cea, + 0xbfc27a54ce857fe8, 0xbff9d39f8fa08c6c, + 0x3fb2628bee1ff410, 0x3f8fef05abef7f40, + 0xbfe5d2e840137cbf, 0x3ff3f2363813d66a, + 0xc0086015553e5305, 0xbfd75e7638aefbc6, + 0xbfe8507df5fda8f5, 0x3ff6f6e5ba7b8f7e, + 0x3feec1435d1ccedf, 0x3feb058686e255dc, + 0xbfeebaedc23175e6, 0xbfd16edc2d825eb8, + 0x3fe279db8ae62a0c, 0x3fdf45b61d732f84, + 0x3fe94746953c285e, 0xbfc799ba90366b2e, + 0x3fe0616d3ae2abe1, 0x400544a3682959b6, + 0x3fd167a7834a1e02, 0x3ffa527a6ceaa982, + 0xbfd3488ca25ca280, 0xbfad305fdad367a0, + 0x3febae3625fe051b, 0x3ffdb7ef3c4d9c1f, + 0x3fd5f902f57bd730, 0x3fd661f548d00690, + 0x3fdc25727e75beee, 0x4009fe3c70745887, + 0xbfda3e3e84f9d098, 0xbffbacc0adf0da28, + 0xbfd0d0582127f8ea, 0xbffed3643db20d86, + 0x3ff9877c2e83833c, 0x3fb562a1cec25bec, + 0xbfe068308d187b19, 0x4009abea22ae26c5, + 0xc001d0ef1a5db66f, 0xc00090ebd7b1122e, + 0xbfd7e16ad53a4a5d, 0xbfebf3fcbc71ffc9, + 0xbfdfad715674f719, 0x3fef3acfd47659ce, + 0x3ffac2793dc27001, 0x3ff13b3c8f76425b, + 0xbffff3fe04f0193c, 0xbfdee72f3bc989b6, + 0x3fe9c368274b5af1, 0xc00089b67358a2b8, + 0x3fe9c4f2a8184a30, 0xbff2cbff34faf972, + 0x3fffe1e2f222cefc, 0x3ff314d7186baf20, + 0xbfd19d7fb36d4390, 0xbffd59ee6c5682dd, + 0x3f9b06007eb3c080, 0xbfeae5b5ab5c24a6, + 0x4001ec800ee668b3, 0x3ff207cb3fee4748, + 0x3fe093caacc08685, 0xbfe80fd779fcc582, + 0xbfd6b06c286037c0, 0xc00e24403b10f644, + 0x3ffbbbf7aa4bac4e, 0x4003a6a3f92adcaf, + 0x40064d56197722e4, 0x3fd573b677681a6e, + 0xbff9bedbb9c1d0e0, 0x3fede30030a6c6c8, + 0xbfe9f9aa2de8b434, 0x40000c2881f83cf6, + 0xbff1a1e28740ecce, 0xbfcbd0c5655db7ba, + 0xbff3d811fcb04a48, 0x3ff36c340fbeba63, + 0x3ff7d561c27d7328, 0xbfd7545721606bd4, + 0xbfd88afcffb26160, 0x3feca29c546e10e4, + 0x3fe7080a30cb6b6c, 0x3fe15507a1f9171a, + 0x4000283afcf53f9e, 0x3fec4d80eb673e1d, + 0xc000914e81b11df2, 0xbfeb0d9ddec666c0, + 0xc00aa94cb0f4696c, 0xbfa69c1a8b0671d0, + 0xbfd21fd5b87e71ea, 0xc0013e10380048ee, + 0xbff1b11211b09061, 0xc0045ad9e2ca7969, + 0xbfe4b8af995ab792, 0x3fcd4e76fad8f4d8, + 0xbffd7cd63b4c2004, 0x4003860d86ff6f7c, + 0x3ff1b80fefdd4e4a, 0xc00257e27bba8e16, + 0xc0025655c7a1e358, 0xbfe1b617bd5377e5, + 0xbff083c0b355f9a3, 0xbfbfc9ea57013ba0, + 0x3fea185e08dd3455, 0xc00545ad137c22c8, + 0xbfee2ed8011ef508, 0x3fe00a5b8673ce38, + 0x3fe8816167d5a9a2, 0x3fc9481014acada0, + 0xc000bb1cdeaa796d, 0xbff803322c43b0b4, + 0x3fcf6a646be35c50, 0xbffbd9991886b1f7, + 0xbffeab04feb2df53, 0x3ffc9d6a721b343a, + 0xbffb08e705ceef9e, 0xbfcf10c2700ee962, + 0x3fdfecda51f42e6e, 0xc001fd1038c05054, + 0xbffdf43e4f983648, 0xbffbe129c6a87193, + 0xbff28911550ce196, 0x3fe89dc38c2c56e5, + 0xbffea09149c4f030, 0x3fb5c58b75a9c988, + 0xbff7b0774032aede, 0x3ff0434386456e9a, + 0xbff6656846d7c132, 0x3fe60540ca584b36, + 0xbffac5bfa88f1422, 0xbff906d94b24bec0, + 0x3ff892668545914f, 0xbfd09f92a28f14c8, + 0x3fef4ad0e7d6488a, 0x3ffce885a23d86a1, + 0x4002fb75f9ae62a8, 0x3ffd52f3e27f8105, + 0x3fe0ae054466d262, 0xbffb0443c8986e24, + 0xbff3dfeed4433391, 0xc008361f215e0ab0, + 0x3fd7ff81cbc4c0bc, 0x3ff1c6395527ae3e, + 0x3feb767957afd5e7, 0xbfe4e93a08c9e421, + 0xc005de0197d9264c, 0xbff9eb2d181345ac, + 0xbfcccd5645de57c0, 0xc00558dc51c08a54, + 0x40073e8fcc889040, 0xc003d9ba1e6608bc, + 0xbfd3274a2f72f278, 0xbffb238ce5937ffa, + 0xbfc0c6a47836e3c8, 0x3fe3b4372357f3d6, + 0x3ff9e060a77b3009, 0x3ff83ef32b04b9c9, + 0xbffed7159ba8912c, 0xbfe1f4ab5254c809, + 0x3fd5417bd390ef08, 0x3ff1878b7333516a, + 0xbfc0ade45f6d59c4, 0x3fe7338a1f1b653a, + 0x3fec63c9669f0f9c, 0x3fe5110b9b9caef5, + 0xc00e2378d764c266, 0x3ff2b1a9661d0580, + 0x3ff97972d9b5f654, 0xbfd34ddf2cd742c6, + 0x3ffd88557e43525d, 0xbfd0e8f193c29b7a, + 0xbfe7b0d365ac2a98, 0xbfe8c1ffabafd1fe, + 0xbffe61460f9cacd0, 0xc00001e14e075c6a, + 0xbfc53cd3f65a47d8, 0x4008eac6ba095786, + 0x3ff73b3ed5a81b1a, 0xbff2c72a4726e53f, + 0xbfece043295f964f, 0x3feec7abdf4ca9de, + 0xbff0f430e9fce5d2, 0xc0036821de413026, + 0x3fb1ca5384141c10, 0x3fee96f8a8e24051, + 0xbfc597029645bc02, 0xbff5415682c73ef2, + 0xbff65e02fab69706, 0x3fc97c83d27efc58, + 0x4005100cced39674, 0xc000929aed146cf9, + 0x4007bf56668f7b0a, 0xbfebce2514e84596, + 0xbfe4077ae1cb4ab9, 0xbfeb05fd596e1b20, + 0xbff7aa74fbb0eab4, 0x3ffd11d8807f057a, + 0x3fffe4acb0cc00a4, 0x3ff87502321fe77e, + 0xc00e6817d0c5af70, 0x3fe85ab0df210229, + 0x3fd2e850f0a08396, 0x3ff27bdcf2fdb239, + 0xbf81074a90229480, 0xc0013cac9b9aef95, + 0x3fca480d5ff7f0d4, 0x3ffa402a7c520538, + 0x3fe8e2a8543d5390, 0x3fdb38bd775bd4e9, + 0x4002991bf9eeff7a, 0x3ff403b3bcd31322, + 0xbfeb2f468fa90470, 0xbfd1acd602705290, + 0x3fece9ed0bec0db4, 0xbfd878736351edb2, + 0xbfe95b0b81b9afdb, 0xc006a279323d5f20, + 0xc004975ca662209a, 0xbff02df2e8571c89, + 0x3ff355e86e4539bb, 0x3ff5aa45e3d8cc2a, + 0x3fe04d580b423076, 0x3fec698cea6dfe5b, + 0x400bd50f729e53b5, 0xbfd7f7c3a6d22eb0, + 0xc0004c2a86e99ce9, 0x3fd928190f167a2a, + 0x3ff2d4a8ee54ae54, 0x3ffaf7003b030a72, + 0x4007b37542b3f34a, 0xbfbcd19e45923540, + 0x3ffacad36ff6fcf6, 0xbffd36db5c6feb17, + 0x4001044b33c5a63c, 0xbfdb15a8b3bc515e, + 0x3fea6a46b6a3ce44, 0x3fda8ab325d3de2a, + 0x3ff80f86f91dd7ea, 0xbff02c97215edcc8, + 0x40105d063d16ba5b, 0x3ff0a4be08fb037a, + 0xbfeaf71877737e24, 0xc0003558a4cb8af7, + 0x3feb84b4e76e3dc0, 0x4002e2d1d5fd278e, + 0x3fef878c1e341d5e, 0xbfdbfec797e61fa8, + 0xc00084360cdf0509, 0x3fafb69dca4d79c0, + 0xc00c5eb65e8ebfa0, 0xbfe3ee3fe376e95a, + 0xbff66c199c3b7cb8, 0x3fe363f4d545c800, + 0x3fe74beddb611e44, 0x3fde54e869898895, + 0xbfe6e19d8fbc4b97, 0xbff5a7fc379df15a, + 0x3ff66be9988e922c, 0x3fe7b94e9b8ebd88, + 0x3ff53daa58d37ad7, 0xbff954425b740cd0, + 0xbffb936003434730, 0x3ff40df009904517, + 0x3fead39c29e953f0, 0xbfeddb4debb5b2c8, + 0x3fd4334f91ce8555, 0xbfe8c24d1ad44bc8, + 0x3fdc22520720d76d, 0xbffea91ee96133fa, + 0xc010763370ad3f49, 0xbffcea7b6f8f39c3, + 0x3fe781cd630e05f1, 0x3fe177cac6fd0bf0, + 0x3fc050e3f1b86cd8, 0xbfdda5fcc1292634, + 0x40034742650cfb00, 0xbff164d74a0e27c8, + 0x4005bd382400da65, 0xbfc95055cf47b508, + 0xbfe3f74ac4931a14, 0x3fec4d6fb55a23e8, + 0x3fe5cc7c56586e02, 0x3fa2797dbf752c3c, + 0xbff46fd1435f7362, 0x3ffbe1a273ed00b3, + 0x40049466ba5af7a1, 0xbff9a7a8a0c29ae8, + 0x3ffd18119dd70566, 0xbff004759c52dfea, + 0x40005d6822bfa658, 0x3ff67c698b000034, + 0xbfe25b6dd1492a03, 0x3feedef18c60d4a2, + 0xbf7e879a70ef5f00, 0xbfc6251e638ee5e7, + 0x3ff54f6effd3daf6, 0x3febbee0d3eb63de, + 0x3fc3d85168396578, 0x400acfabf7c9ee2a, + 0x4001954b287d5048, 0xbffae2044478dd9e, + 0xbffb53c107d2cb1e, 0x3fc46e7c9dc369e0, + 0x3fd13f86e2335fa4, 0xbff6ea6f84b7075e, + 0x3fe1ca541b563194, 0xbff1f8552e1a4827, + 0xc003682ec95ab80b, 0x3ff5faed902aa31a, + 0x3ff6eb6fa18fa032, 0x3ff034fbd79aa1ae, + 0x3fb2e79f8b416470, 0x3fc639b56081fcb8, + 0xbfe795a45cd5c863, 0xbff0cb255100cf5d, + 0x3ff4ac400f891582, 0x3feda80adf9a6b6e, + 0xc001b508471c8e1c, 0x3fe4211d0aaaf5da, + 0xbfebefbcb27edef4, 0x3ff060e0589ece57, + 0x3fe4b8ff69709d1f, 0x3fe07d8e36b08b2c, + 0xc00ab3913fdf25bf, 0xbffbbd0ea619fa3f, + 0xbfe26bf9a51014c8, 0x3ffc827dff0f98f3, + 0xc00bac26f9b09371, 0x3feb106b10b4844e, + 0xbff01c6452b4ab4a, 0xbff2c69c0d0dc6c9, + 0xbf9947c909219460, 0xbff1d970b74841a6, + 0x3fe153eba0037a83, 0xc00018babeaf3b98, + 0x3fffdc80b060d2a8, 0xbfe711637343f652, + 0xbff731d7d4ebf529, 0xc008174d3cd1c62e, + 0xbfe30fbf9492e458, 0x3ff722842be93790, + 0xc0092479a5bf508a, 0x3ff235b2a01de254, + 0xbfc9f59253eb64e0, 0x400530b6cf468c3e, + 0x3fe2ddf8e2d11dfc, 0xbfdc0fb22f292564, + 0x400d8aacacf44f52, 0x3ff49bd3e5084069, + 0x40031bea8a3769c4, 0xc003703b46fdb21a, + 0xbfe702054419d1c9, 0x4006b70103b5f100, + 0xc000d3bba2c39d79, 0x3fbef712eb004ff0, + 0x400969a92feb8db1, 0x3ffe3bb6b4097dbc, + 0x3fef0de5f24b97d2, 0xbfa631e6febe28a0, + 0xc00233b80b51939a, 0xbff7233ce1b218cc, + 0x3f843e90e74a7680, 0x4000494b01a5adaf, + 0xbffb6acfbd93a97e, 0xbfef0f21b87c9424, + 0x3fff8c1f943083cc, 0xbfbd36e8cfeec440, + 0xc0040ecfa6b87e04, 0xbff21d50902a1892, + 0xbffc860a235b1447, 0xc0023a7fd220d4aa, + 0xbfe4783740ea950e, 0x3fd827c076a26f85, + 0x3ffeba1dc5dfc4ea, 0xbfd566a47c584ae1, + 0x400331c174cc8b65, 0xbff993ca250fa39a, + 0x4009b3c12f5b99aa, 0xbf9100b0fbc09100, + 0xbfbba431bd627ca0, 0x3fdc6febae30de13, + 0xbff0aaeac2b628ce, 0x3ff20b2689455107, + 0xbff04f5c2f632572, 0xbffb470e640635b2, + 0x3fda61980ae7f8c8, 0x3fdddcc96a676246, + 0xc001ea20d43ad4a6, 0xbfe28a2b61bfdd40, + 0xc008a9f8bf846f2a, 0x3ff1cf4bfb33e514, + 0x3ff1b67018624797, 0xbffda25c8c063354, + 0x3fdb3e557d0e01f7, 0xbfec84090a81f610, + 0xbfc3f72bad7dd9d8, 0xbfe90b3d2a61b51e, + 0xbfea78f2f7c71e79, 0xbfd65ddac46b9684, + 0x3fdc43ae2111da44, 0x3ff0a1c53800d714, + 0x4002a27c133710ee, 0xbff80ebd3e6b52fb, + 0x4002b67562d76356, 0xbfe2a628fa91aabd, + 0xbfd0d0013abd416c, 0xbfd4768545a1d180, + 0xbfda5b9c25662dfa, 0xbff4f4cdda60bb16, + 0xbfdace3656563664, 0x3fcc346c039433bd, + 0x3ff113b3b47a9df0, 0xbfd4f0e2217ef3b4, + 0x3fe6fe6a87717815, 0xc002a78954d70130, + 0x4005d9ecae2b7594, 0xc00350db0db29791, + 0x3fc6b2be474b4e40, 0x400a526cce3d4dd8, + 0xbff15c68e26f4a2a, 0xbff21d3aaccb5622, + 0x3fee47663c8c7578, 0xbfc1863b2ef4ec0c, + 0x3ff4997069df1432, 0x3ff359dd48ac5c2c, + 0x3ff53dd480f2b8b7, 0x3ff79387025c3453, + 0xbfdba865806f7e36, 0x4003ff2d461de6ef, + 0x3fd1c3b6a2a5574c, 0xbfefea48fb1ef773, + 0xbff6ff29db720afa, 0x4007e10b5984df60, + 0x3ff44102d6f5e242, 0x3fecb07db6973c8e, + 0xbff5903b26ed9028, 0x3ffe68f61299feee, + 0xbfd3b2454dda9fe0, 0xc00418253b572dbc, + 0xbff35b60c6f128a0, 0xbfee65f4205c3b86, + 0xbff8629753565cdc, 0x400dba1fcd91b0d8, + 0x40027a8cdf36e024, 0xc00a665067e2d08a, + 0xbfb050c5aeb315a0, 0xbfe5dfe408795058, + 0xbfd3eff49d56aee0, 0xbff2cb1b50da5418, + 0xc006c71a415607c2, 0x3ffe9dcf8bbf078c, + 0x4003456e603e67a6, 0x4004ea6b08c3393c, + 0x3f908653202e44e0, 0x40103fd68be2329d, + 0x3fb83b1f9461c560, 0xbfd20c716b1ea214, + 0xbff76e5ac9f566d8, 0xbfa6660dd800c2e0, + 0x3febce9b4a9ee230, 0xbff87f7f8e8b987a, + 0xc00f300446165fa8, 0xc0018bb5fff5d0bc, + 0xbff1e2efdcea9b90, 0xbfd36edc6403d280, + 0x3febb4c0939e4d4f, 0x3ff2a51e6ad0becb, + 0xbfb7c0ca4b1df6f8, 0x4006b9e4b9cd78a2, + 0x3ffd9289d530982a, 0xbff9820801e21b44, + 0xbffbb1455a5f200e, 0xbfc80a7e44175620, + 0xbfe5ec7daa6a2c7c, 0xc002ca2408ca6f09, + 0x3ff40a5f1b41559c, 0xc0036aa7bb25b502, + 0xbfe5c87d477a8188, 0xbfe8e9a447aaebf9, + 0xbfed1ccc1e269f6e, 0x3ffa37605cca6962, + 0xc00c0fe36bcf4519, 0xbff00e917f0518f5, + 0xbfecd2996ff7dbbf, 0x3fe930e3180e2e58, + 0x3fe5932b351a25af, 0x3ff29116872b1140, + 0xbfe29901aa5031d2, 0xc0080bb9567676b6, + 0x3fdcb7d9128a3594, 0xbfeaeb5075715520, + 0xbfec9b5f10868842, 0xc0010480a46eb19b, + 0x4009b42abe7100f6, 0xbfeea3f84ab2e030, + 0xbfeb7c00e5019200, 0xbfeb755c51779e5e, + 0xbff68c7867971724, 0xbfcec12c25ee65e0, + 0x3fc1c08be6afadcc, 0xbff9220dcc88b1be, + 0xbfe14e55b0de2502, 0xbfd4e2efb6f8c61c, + 0x3f61be77e420fe00, 0xbfd95ffaed6a3b78, + 0x3fe74199a65ba5c4, 0xc01099b9a3103bcf, + 0x3fbc4a1862ab9e10, 0xbfe1a070799f9143, + 0x3fd664f12ae4c260, 0x3ff00498c893ec9d, + 0xbfb78d7ca3c893e8, 0xbffad696cc05a762, + 0xbfffc9fce2e347c8, 0x3ff371e91aee53fa, + 0xbff22b9e8d5d2b49, 0xbff7892e60962eb4, + 0x3fba47848004df8c, 0x3fe1499416ff8d3a, + 0x3fba475918e9e9e0, 0xbfeb705b5e083924, + 0xbfe00fc3553f9ce0, 0x3fe6979c87b4e3c9, + 0x400547d59adaa629, 0xc012b189ed1d5815, + 0x3fe7339d081b9e74, 0xc0027c7f0590ddb4, + 0x3ffd51afe5fa8d2a, 0xbffb8d9db76947de, + 0x3fe209c3bcbfcf18, 0xbfff9b1f50c2581a, + 0xbfeae02ee898726a, 0xbfd21580eaa6e6ce, + 0x400a97672e2eb0ad, 0x3fd874eeb2ad5ae0, + 0xc0042af62f14e018, 0x3ff80b9c53c3c572, + 0x40036ea92dec4d5c, 0xbff244fc3abdbd61, + 0x3fe098b78628efea, 0x3fe672fcad42cc6e, + 0xc0090e765457fc64, 0xbfe4cad989e72856, + 0xbfee211693d3da0b, 0x3ffafb56aa85b42a, + 0x3fe3f725b1c380f4, 0xbfe5c3fa8174e281, + 0x4002c0e93203705b, 0x3ffd84b0b4eebbb2, + 0xbfe3ef0327d0c14b, 0xbff2a2f28b7e5414, + 0x3fbc563a2a2c6ec8, 0x4004c4a417737c68, + 0xc0037494b9f10e18, 0xbfd0469de6803330, + 0xbfeac0b8ae3ac2fe, 0x3ff0fa0ec7d32850, + 0x3fffbf4609e2d3e1, 0xbfeaf884a837954f, + 0x3f946546f45092a0, 0x3fdf0a4df98cb450, + 0xbff876e69e547297, 0xbfe188e50b54af60, + 0xbffff3b1d6c396a9, 0xc0107ca9c104636e, + 0x3ffd005fc5bbafaa, 0xc008deea67c76488, + 0x4015f1015c246e87, 0xc00037984a59c443, + 0xbf92c33092f8af40, 0xbff2f6af750a5683, + 0x3ff760b41592c85a, 0xbffd4e14991df010, + 0x3fd66eee7e0f4746, 0x400a65aee0b7aa6c, + 0x3ff5720334bf8b44, 0xbfe18c4ec4a6b96b, + 0xbfe2de1bf104b680, 0x3fdc5f2d0b6fbd04, + 0xbff158f99f477eac, 0xbfe86048c22d12eb, + 0x400689bef155f654, 0x3fddd3406f9a2790, + 0xbfcc9c98e10cf378, 0xbff308ad86b5b8a0, + 0x3fe230f5cda14986, 0xbffb5da6ac7bb3d4, + 0xbfda9e95d0a90a10, 0x3fd5365e65435170, + 0x3fef4f08b7cc814c, 0xc00ac04901042c34, + 0x400140ae14ae8755, 0xbfd7966ec021d6f7, + 0x3fd81dc1ac8e2210, 0x3fddcaef46ff1e38, + 0xbfe109e82fb813fa, 0xbfba87a2172147c8, + 0xbfa37285e1aa7850, 0x3fefcb5180be55c6, + 0x40093a5d07a02248, 0xbfe5e8e7533489af, + 0xbfd2f562b6394be8, 0x3ff087dd16594018, + 0x3ff3db27e6a7ed51, 0x40045bf87c333cab, + 0x3feaf4635016a2c0, 0xbff6541953ddbec3, + 0x3ff4f1b1c9ff0e57, 0xbfcc5ccd314dc298, + 0x3fb4516d3ee0e3f0, 0xc0022e1ad928bc1a, + 0xc00419cc4091c842, 0xbfb78661638e0488, + 0x40013769e9056832, 0xc00575d5f32dacfc, + 0xc00195084e52eb3c, 0x4006e355416fbb47, + 0xbff7ffbe4f39ff3c, 0x40056bcce23502ac, + 0xbff425b332e0dd76, 0x3fbb8c6a7e670b80, + 0x4003101adc66e2c4, 0x3ff5870915d7a353, + 0x3ffa51824549a8ce, 0xbffbcf6e3b3bfce9, + 0x400735ace0592361, 0xc000946bcfceecc0, + 0xbfee0324f25b7090, 0xbfe5609322aa6246, + 0xbfb3bad323d885b0, 0x400917f6d67d880e, + 0x400d8300dba3d6fa, 0xbff077773476aa3f, + 0x3fd53c6156f2006c, 0xbffc621316272d52, + 0xbff583b12f9035e5, 0x3fd2147b97714bd6, + 0x3ff6eeb28666ee76, 0xbffd7d9526b34034, + 0x3ff8b63857ac5f74, 0x4002cd3ae0e26844, + 0xbfeb6e7febdba895, 0xbff47f79649c9f04, + 0xbff9453aefb63f22, 0x3ff063c564048dd0, + 0x3fedb1f298eeaca5, 0xc002da13172e28f2, + 0x3fb75696bcd75710, 0xc0028c76304b7464, + 0x3fd70add9284794e, 0xbff02251e5f69a85, + 0x3fc5c0f169e126e4, 0xbfe80ee05cc53b95, + 0xc00a046a00d3e961, 0x3fb8bb12a548dbcc, + 0xbff9eb5cafc998a2, 0xbffa13c291bc3cc1, + 0xbfe8c3b70593529b, 0x3ff95ef598918ee3, + 0xbfe66aca3a6a4ba4, 0x3ff54f86671092a2, + 0xbfff74a6595f0acc, 0x3ffb6e49e67263d0, + 0x3ffeb1ecfe4526eb, 0x3ff0da91e4ded70e, + 0xbff42c2447b22b9e, 0xbfe72c5d5b24994e, + 0x3fd240e60cf0d461, 0xc006fd468b1c8e7b, + 0xbfefd2f51fdcefcb, 0xbf9a1098668226a0, + 0x3ff8486ac2db1a6e, 0xbfd84a2409a3efc0, + 0xbff1ebe1f9b3d2cc, 0x400b974541a6bbda, + 0xbfdedb86a928a048, 0x4008d2310fe0fac6, + 0xbffa0876dcf8691c, 0xbfb06e533c39cab0, + 0x3fd07d5de0c1faba, 0xbff7adb2bbb12f69, + 0x3ff1599567f98b1e, 0xbfe55fcee0e434ea, + 0x3fed3512cb8b900b, 0xbfeb423e58e42a1e, + 0xbfd371da3279a348, 0xc001afab3eb2c525, + 0xbfda6affda243ec2, 0x3ffb4944a6ec821f, + 0xbfced1989edbe418, 0x3fe0c79bb8be3b06, + 0x4004592028f1deb6, 0xbff066ec1487e1aa, + 0x3fc9e22e409910f0, 0x3ff9bc305a76f590, + 0xbff3d3d8fd1fe2ed, 0xbff5cd24642f7326, + 0xc00ff818bda4c580, 0x400532e31d8a8895, + 0xbfd618df14d16295, 0x3ff28480ff66d1ae, + 0x3ff931a60c14ca9e, 0xbff05dde76397548, + 0x3fc87748a16d02e4, 0xbfbcde7f94712b50, + 0x3feb0f900dbac1fd, 0x3fec1b3715a6b023, + 0x3fe1266d9e6d40dd, 0x400af83242124906, + 0xbff34112b5a32554, 0x3fe5e2f5a08ca5e9, + 0x3fdc6568bf957497, 0x3fdf336b1189269e, + 0xbfd452493e4e0fc8, 0x3fc44b6dda644c92, + 0x4003ccd81514dede, 0x3fd0693bceadc860, + 0xbff0ef6be5d018b6, 0x3fec1a7bbdc7758c, + 0x3fd8c069a2982b60, 0xbfffcd7b6444697c, + 0xbfce37318a9b6a00, 0xbfe1f3db1779b242, + 0xbfe4c87f658330c6, 0xc00619bc76f5516f, + 0xc0033f040ff68b18, 0x3f9b9088b59112a0, + 0x3fcae23a5aa4093c, 0x3f830c0b0df1ae80, + 0xbffe0964ad310856, 0x3fee4002f72469e5, + 0x3ff26b47a36f717f, 0x3ff6ea38c9cc95ef, + 0xbfec4099862265ae, 0x3fd6d2b36b004cf2, + 0xbfeaa4545903af45, 0xbfe83944fa82c727, + 0xbfe2190402c93b3a, 0xbfdd7b5afc9690e6, + 0xbff9e0758fd48557, 0xbfdae34a424d5500, + 0x3fc47394ad07ea68, 0x400c0435b32f1bb6, + 0xc00db5c9264e355c, 0x3ff5ff03b1c1c9e4, + 0xbffc11da64b7f34c, 0x3ff28ee3b7386db6, + 0xbfec33a4be8a61d8, 0xc00ea91bd8800246, + 0xbfc5d23481bdf6d2, 0x3febde4e7449bf79, + 0xc00a48ac18b57e53, 0xbfda2d11794e1f20, + 0x3ff280e904dee594, 0x400867307ad598f7, + 0x3ffcd5cdaaca5395, 0xbfd530a3e163d31c, + 0xbffa58e4bd771dc6, 0xbfcd5dafc898f777, + 0xbfe09e06a159b404, 0x3fdd37576a4c2baa, + 0xbfc0c321e2c327d8, 0x3fe0ee1b725185aa, + 0xbfdd9b87bf3c0604, 0x3fe19a3b8af2a7e3, + 0xc001804b18a72d2f, 0xbff75fa5054fff4d, + 0x3ff9ca5b4fd88898, 0x3feec87f0053a968, + 0x3ff91c6ef81a75e2, 0xbfff5b952c7074ac, + 0x3fd71943d12d0c90, 0xbfeb98f82adbd8cf, + 0x3ffca8f253aeddb2, 0x3ff0e7190003ac3f, + 0xbfcb269669ddaa60, 0xbff5b9cbd7207485, + 0x3fe06ff3fe1e6bce, 0x4002e5bb3bd72a7c, + 0xbfe2ab052058c958, 0xbff82fb2c550ce52, + 0xbff8486b4173b049, 0xc000f9dde3943742, + 0xc0042bac79cf361e, 0x400310633356604a, + 0x3feac48d25b23870, 0x3feabc280b237506, + 0xbfe82f28cf1feb48, 0x3ffb35e97dbd8c97, + 0xbfee2291b61bbc52, 0x3ff042cc6dd6fdbb, + 0xc00277ab8a0a1698, 0xbffd839a8caf1224, + 0xbfe26a0b31ab2140, 0x3fffa081d20e1353, + 0x3fe5c3187a63a9c4, 0x3fefaa3dcc524ab4, + 0x3fb9caf001db2a90, 0xbffb384581c3796d, + 0x3ff7c06c8a1c9a19, 0x3fe8784b66b0a602, + 0x3ff241e83f31b834, 0xbff1f97f17d347aa, + 0x40020d1f95064a24, 0xbff75dcfdadd0403, + 0x3fb7aaec595fc770, 0xbfd13bba040a87af, + 0xbfc3c3f73a65e050, 0xbfdacbbf57d8e1ba, + 0x3fc9a8a4303ca120, 0x3fe873c5682bfa23, + 0x3fb84afb1dc12acb, 0xbfe5dc2cda962836, + 0x3fd7ab34bea5cd08, 0xbfef3fcb8e21a436, + 0xbff455826a93f66e, 0x3ff18397ea8738ce, + 0x3febfea7cb996b2d, 0xbff7d92de8b77c2d, + 0xc00566d79b5798f0, 0x3ff5bc8b85d3b549, + 0xbfee9b4bdb8c62ac, 0x3fd5aa713d290270, + 0x400ac58802ee1c92, 0xbfd5f2d9982c5dbc, + 0xbfe19227e389379e, 0x3fda2a2671cebd14, + 0x4002aa8ade41028e, 0xbfe31249affbfdff, + 0x3ff629ff77903bba, 0xbfedccb5368208af, + 0xbff12eae388ae126, 0xc00d264791484704, + 0x3fd717b13abc9f68, 0x3fff035e77ace969, + 0x4001591736bb22fa, 0x3fc3d43869193bb8, + 0x3fe38d7c5cef121e, 0x3fee2b1c40bdf9ba, + 0x3f34b95c0431c800, 0xc002537afaa7fff0, + 0xc003491364edde87, 0x3fea0a6ef2c32a64, + 0x4001eb6954aeee75, 0x3ff1103f19b978b8, + 0x4001291a80e9da3e, 0xc001fab28e3d201e, + 0x3fa34c28d866a1c0, 0xbfe319449d1b225c, + 0xbffe3d452713bffa, 0xbfde6ebf9bd085a6, + 0x3fcb5cb08c06e240, 0xbffe0d20ce1bc5e1, + 0xbff975dc4e1b0396, 0xbfeff6cddc6857ea, + 0x3fefc720198dbe4a, 0x3ff1ae4507cd91d8, + 0xc0076f3fe2378a44, 0xbff246b256a01de8, + 0x3fc094f7a9a4c32e, 0xc0068abcd3acb198, + 0xbfd61795dfeca94e, 0x3fe3137ad0e0fa1b, + 0x3ff0ef530382fcfc, 0x40100d8a3e60f107, + 0x3fcdf089647d3fb8, 0x3fe9e4ecd738a090, + 0x3fe74715e98a9315, 0x3ff7aae6e2e44493, + 0x3fdacb3fa4ba9925, 0x3fee8dbf72aedc1a, + 0x40044a3048c536c7, 0xc002e3e6263ba1d4, + 0xc004e6ae885a1948, 0xbfd465078ad09294, + 0xbffdb76d50b1d354, 0xbff31a43bd9dff01, + 0xbfe8ba9f74e27c86, 0x3fe4582a5f6517f0, + 0x3ff895fdaa4d3a45, 0x3fd50ca382775f8c, + 0xbff13095590647be, 0xbfdbe3be7d795df4, + 0xbfbee48c92f9d2d0, 0x3fffdc3042e2b1fd, + 0x3ff986df01ea2554, 0xbfe621f53f495e47, + 0x3feb43ea47997b86, 0xbff2b564152a6b0c, + 0xbf96df1b1d4c57e0, 0x4002dc6dbfe87083, + 0xc0030d800e6852bc, 0xc00a987adb63305d, + 0x3fd3a1357879fe3a, 0xc0018b7d3aa1c054, + 0xbfe5a1e879a08d5c, 0x3fea86ec8d816d10, + 0xbff6be41ced22b38, 0x3faa6f00dd96b700, + 0xbffc430dfdcba616, 0x3fe51b5f5fa6fe66, + 0x3ff9445de36e36ce, 0x3ffd68cfbd0b0ceb, + 0xc009e5d378ecf205, 0x3fe75c4437e37cda, + 0xbffb705818c13e80, 0xc003d63d21db240d, + 0xbfd816ad18cd6c6a, 0xbffbd20d7eceac6a, + 0xbfce3dd3c6748062, 0x40052dd2c17b6ee7, + 0x3ff8a49d3ada420e, 0xbff44a2459983f4d, + 0x3ffaf79057053fbc, 0x3fcf31f35ae8c602, + 0xc0075842faa11102, 0xbfc1c06e9627b3f0, + 0xbfeeb0eda0c7a0ec, 0xbfc0a55aa942ebd4, + 0xc0132742544d0cf8, 0x3ffcce09b4b0a761, + 0xbff97708391a391b, 0x3fccb156628a35a0, + 0xbfa648ee0af32cb0, 0xbfb1d912188f5438, + 0x4000bef119dd524a, 0xbff713e398026257, + 0xbfe7450afa1e9d3d, 0x3fe20c64ddae0258, + 0xbfb8d989abed5104, 0xbfd3410f36d02956, + 0x3ff440f23f538237, 0xc006bb7a4b105747, + 0xbff6861a8c40d2c6, 0xc004598055dc32d5, + 0x3ff0e8691a9c153b, 0x3fe68aa51c613db0, + 0x4000ac4c5649ffc9, 0x400be4919e78c425, + 0xbfb2f4597fa3aa84, 0x3fe1aa786f40d25c, + 0x3fd178930859c95e, 0x4005a3e574eab180, + 0xbfef0394f9d43df9, 0x3ff4aa42efe87bc8, + 0x4001b31d5ccf4da7, 0x3fed1e48700873eb, + 0x3ffd7cceebe10fcb, 0xbffaace70aabad5f, + 0xbffd5d856572d5ea, 0x3fe86319ce86249e, + 0x3ffe11f24f8b2e81, 0xbfcf2217d34d9790, + 0x3fcdb6e3762990e8, 0x3fed4727ec179753, + 0x3ff7703e718aae2f, 0xbfe63a508a502088, + 0xbfe2105785e693e0, 0x3ff401bd37fcead0, + 0xbff49720c4737511, 0xbfdc007d15060e48, + 0xbfd94ec9d1f19c38, 0xbfc29fbcbff9a318, + 0x3fe5e977bf554b40, 0x3ff18275990a35fc, + 0x3fe7c1ebf0714081, 0x3fe9f3c91a709b0f, + 0x40034f958ebcd66d, 0xbffe7a1dceba6bc8, + 0x4005835f8b6dd78c, 0xbff9c8d1cbd3536c, + 0x3ff472f6105d836d, 0xbfe67a869745b05a, + 0xc001d2874c681102, 0xbfe1f2545876b386, + 0x4005e99bedf23ae3, 0xbfdc7e84c2ca3a2a, + 0xbfe61b48a60c19b4, 0x3fd24012e56ed30a, + 0x3fbf133b92c400e8, 0x3ff78c6ae4886a4d, + 0x3fe85083e03bbd67, 0xbffe237d11118cf5, + 0x3ff896e36a8b00d9, 0xbffeed66188434b2, + 0x3ffd1b5ce23cb02f, 0x400744cb9ee30e40, + 0xbfd8635472ded212, 0xbfeeaaee7b0385f6, + 0x3ff60e8d33047ddf, 0xbfc29906bb1fa1e8, + 0x3fd2923f2e99a17a, 0x3fd1844fbaf33476, + 0xbfd1751089ec0fb6, 0x3fecfb7e99d89500, + 0x3ff6d66a706013be, 0xbfe8fe28de01b716, + 0x3fcb2fd4f96733bc, 0xbfe0a6ab74b75000, + 0x3fe5c96890311550, 0x3fdc464982cee30a, + 0xbffe9934c65c9795, 0x3ff6a2f31a8d2f34, + 0xbfffc37270892a55, 0x3fe57fcb1cadb380, + 0xc007b5366b0582c1, 0xbfb68f7c42efbee0, + 0x3ff3f7950fca3751, 0x3ff0784bbe9fbd2c, + 0xbfdb900fe6ed0f00, 0x3feb3c3d920c7fce, + 0x40002f7c6846b07c, 0xc001732bd61f28e8, + 0x3ffc75b14ae1c134, 0xbfbd30ecc1815b10, + 0x3fea2569afdc4040, 0xbfefb74bbda3f93a, + 0xbff8eb5275077d7c, 0xbff1229b8515c618, + 0x3fcad47b7fc857c8, 0xbfe30398e2d854e6, + 0xc008bb3b19cd00c6, 0x3fc98eca8d9ce656, + 0xbfbf4dad2298cb00, 0xbfed5ed6f54eb6a7, + 0xbfed48887e01e66a, 0x3fea11a8bbefd064, + 0xbfccae18873624e0, 0x3fcf237090cdbfd8, + 0xbffa57241bd8ed3b, 0x3ffb461b952f6a40, + 0x3ff0571187a85138, 0xbff8a9b238b610ca, + 0x3feb76776602f1b9, 0x3ff0519bfaf92074, + 0x3ff95254e51b80ed, 0xbfeba12f3dc812ce, + 0x3fe602e8a634c670, 0xbff2341bb995e11c, + 0xc003e4a121d13f9e, 0xbffc542fea9fa450, + 0x4004899959826283, 0x3feeb47af9851db6, + 0x400f077e31ffdda3, 0x3feb173dc3681861, + 0x3ffa4736e9bb7f9b, 0xbff7b86218ca0f53, + 0x3feee388dc2eced1, 0x3ff75516f0403ac6, + 0x3fddd20491ea617e, 0x400b15c6a4d2416c, + 0xbff302bd88de0af8, 0xbfd5fee30fff6d87, + 0x3fd55deb86d36ef4, 0xbf80b1f3c0911fc0, + 0x3fe0ae16dfc2a44a, 0x3ff59c610ce1f444, + 0x4001e7b20bfffbd5, 0x3fdfb7ccb8012644, + 0xbff4a525d6a5bf86, 0xbfe634bf3ed4d8ad, + 0xbfc733f81f4e9ad8, 0xbff5b31fdf5046be, + 0x4003d24b1fac2b03, 0xbff647099fe9645b, + 0x3fbc8a6f11e24540, 0x4009eff3d9768026, + 0xbff8651bd0fb57e0, 0x3ff710bdff38e3e6, + 0x3fefe5fc4b015ef6, 0xbfd51c942e0fc7f6, + 0xc0076785ec64ae96, 0xbfe0c4ddc397ab21, + 0x3ffc4121021b2f64, 0x3fec40eff609afbe, + 0x3fd64b720bae40c1, 0xc0007a7c4bc13e92, + 0xbff10e9d5c11d6cb, 0x3feabc01812364bc, + 0xbfdb9646f334f790, 0xbfccc49e125015e8, + 0xbfd575d713b9a8a8, 0xbfe99ee240c7d1fc, + 0x3fd1ef6ec07a3dfc, 0xbffae40cf2c1cf9d, + 0xbffa6337f04d26dc, 0x3ff0e056ff752ad2, + 0xc00975825dd1a520, 0x400a13b42273162a, + 0xbfe4e2fa57204fad, 0x3fc088066b873d1c, + 0xc01668d28b6e2336, 0x400626fbf967b3b4, + 0x3ff9a54e20777e93, 0xbfef93a0f4221c9b, + 0xbfeb9fb91bfc5a13, 0x3fea90d20fee7ed6, + 0x400b860a3d7f28ae, 0x40017051fe1f8eac, + 0xbffdf291317c8177, 0x3ff802658530fde5, + 0x3fff9a54c2b69504, 0x3fe828993fc3c22b, + 0x3ffd6961418f69d9, 0x3ff09c44574675b7, + 0x3ffd074b3252864a, 0xc0002dfce1d1ede0, + 0x3fa2cbaa0f32c320, 0xbfba78a2d261b9d0, + 0x3fd6d3e972091e95, 0xc004197594f3c203, + 0xbfe14061c2d5c23b, 0x3ff8a178e7e2b7a4, + 0xc008565faa0ef87a, 0x3ff214b40c374ca8, + 0x40082dfce71558b6, 0x3fe88c190b19e050, + 0x401071a1462c7ef6, 0xc019f545f7e746a1, + 0x3ffdc6bca8cfd8f0, 0xbffaa271e1334aee, + 0x3fb8e0b74585ee50, 0xbfeb72c8f8689eb8, + 0xbf9208ab9bfeef60, 0xbff08ec100fc72ce, + 0x3fd408b351aba252, 0xbfd99643a12aa42c, + 0x40012f4a51ee7cfa, 0xbfe8a4cfdac3f75c, + 0x3fff9f4b02d585d7, 0x3fdfb7cab2511131, + 0x3fff6e15da27532e, 0x3fe61f938a27ba46, + 0xbff199afcfee6898, 0xc00f248326d85286, + 0x400c0537fa417fdf, 0x3ffcdba372a2e3b0, + 0xc0109847b188c028, 0x400688a8b684f85f, + 0x3ff3cde9c67f31ed, 0xbfdede36bc447403, + 0xbfd19255d6e8ad46, 0x40016442986ee44e, + 0xc004ab214073c540, 0xbffea7ba983398a4, + 0xbfeea6c983c65ee6, 0x3feee592533b0f77, + 0x3ff102add34cb2df, 0x3ff512211d90bff8, + 0xc0033c757f991fe4, 0x3ff84a3f3e77c0f8, + 0xbf95ae94357ee030, 0x3fe6be181fa907f6, + 0x3fc2558222abe2fc, 0x3fe11d4efd8e93d5, + 0x3fea66e4f9d6bd50, 0xbfecf281787d637e, + 0x3fd3631d9da50174, 0x3ff8df575d749305, + 0x3ff8df54259d78ca, 0x4009fb2e1d059ea8, + 0x3fef6d47422bab4e, 0xbfee17ae05ead466, + 0xbfdcd50c72d60614, 0x3feb7e8e86ddb2b2, + 0xbfd47625e5c59fb4, 0xbfcebf68e764d7fe, + 0x4003a4ee7d235d46, 0xbfec26b940a0dc2d, + 0x40042c3d67348d74, 0xbfe47fb8f390078d, + 0xbff2dc164a9563ca, 0x3fee54d36e6a9d0e, + 0xbfd2e6284e0d6080, 0xbff6d0dc7c0664e4, + 0x3fc0a08dcec70f9a, 0x40026a2e6304b4f5, + 0x3feabb6b34cc6392, 0xbff08ebbb695a9fa, + 0x3fef7e9ac4577913, 0x40067badd2648fce, + 0x3ffce8c553d4aea6, 0xbff98fe8b08ab06e, + 0xbfc3779a2dec081f, 0x3fcfc0895c7d534c, + 0xbfde924804bd6aef, 0xbfd3f3cf40f2f2b2, + 0xbfe0e581c78130e8, 0xbff77e152db9ccfd, + 0x3f8c036b894089c0, 0xc0046c6718ff8ca1, + 0x3fea4afc95c24ae1, 0x3fddc87cff6becff, + 0xbff427cb7dd4f60b, 0xc00180eaf251ffd9, + 0x3fe5ed77ab6cf3cb, 0x3fe2c3f68baa8faa, + 0xbff183916fc2aa6c, 0x3ffb7eae343e32c6, + 0xbfe92e1d0d65e5dd, 0xbff91c835f8daba4, + 0x3fd579b22b889691, 0x3fc2c68ca5d70908, + 0xbfeb644e3732e246, 0x4001fc3b59cfaa54, + 0xc009405cd4d2c009, 0x3fe7c8a6ce0a1700, + 0x3ffc2c601339f9a1, 0xbfe82f487a321534, + 0x3fe5d9191858cbd6, 0xbffb1c0dbabf6691, + 0x4000b6824022888e, 0x3ff75f35c9e55ea2, + 0x3fcc8ba6f25b9ef4, 0x3fe2f461e6f6af21, + 0xbfdb70544573a30c, 0xbfdf1ac5e8e40bed, + 0xbfe18dbe9e732b9d, 0xbff348f6097054c7, + 0xbff172025ee3d342, 0x3feef9836a58ade3, + 0x3fe483fd3805ab38, 0x3fe5ad7ee538eebc, + 0xbfe3812e05696017, 0x3fd2ffdcbf2a2c54, + 0x3fcf386b91d5f670, 0x3fe58b08a687a7e3, + 0x3fc76f315c9d4be8, 0xbff50da452ea8e9f, + 0xbfed35c8979a2def, 0xbfe7167c528f1145, + 0x3fdd3c8165c7db08, 0xbff84897d004cca8, + 0x3ff5e45c956e4f8f, 0x3fe85f7e36bec91a, + 0x3ff9c2150935f570, 0x3fdae2d31b3daf20, + 0xbfe988bd0bea419c, 0x3ffc26f87b0b807c, + 0xbff88105dbc5dfa4, 0xc0078365b190723a, + 0xc0077c2a72e74476, 0x4002fb9676ff2182, + 0x3fd7dd2659fe4550, 0xbfe9a62d17d4863a, + 0x3ff4d3ce88150182, 0xbfeac8f8019dc7a8, + 0x3ff38e8efeabec56, 0x3fb24e337db3b398, + 0x3fde104030896766, 0x4000d448699226b3, + 0xbff990fd387f8ad4, 0xbfee6b2646094b96, + 0xbff86dfddb3784d0, 0x400277d4476aa86c, + 0x3fed5875cc787118, 0x3fcf57cb09b13694, + 0x3ff0cd49da7ee84b, 0x3fd33a85cc238e94, + 0x3fff52e90c4bb75a, 0xc00d14449ceb480a, + 0xc002be4bb7acffac, 0xbff62dfef42a283d, + 0x3fdaa83f495c2756, 0x40055ba1c2b9bf51, + 0x3fa458e9d4d817a0, 0x40014e5b16e5b307, + 0x3ffb595992022678, 0xbff089ed81ef87e0, + 0x3fcbf4be4669fc80, 0xc001bf7e9172c9a9, + 0xbfe7286f1fbb5528, 0x3ffadddbc97dce22, + 0x3ffa5fabd1a2efc1, 0x3fd728b659985bae, + 0x3ff9f84b739eae08, 0x3ff9322affd82055, + 0x4001215081952a85, 0xbfe1568030c4cfcc, + 0x4005f7badbb5ea87, 0x4013a4a1281a5ede, + 0xbff2662d01479b33, 0xc0010d9e1ce4ac11, + 0xbff5334eb16eefa6, 0xc0095144cb79cf37, + 0xbff0779fd0efb26e, 0xbffd1254b3a89c80, + 0x3f9f3e1909934700, 0xc002ac49a4f7c0c6, + 0x400c8fb659f1a5fa, 0x3fcc78925c9f0512, + 0xbff962b937a508f3, 0xc0075d23d4466c8c, + 0xc006d076bf0dfea2, 0xbffd9c127d707c98, + 0x3fdf85eb56738ffa, 0xbfb3391d7a5111b2, + 0xbff2f2bc5bd51326, 0x3fe95e87d445bb1e, + 0x3fe34a808864cc28, 0xbfe5633a19ce1dae, + 0xc00c31d421c2ce02, 0x3fd652ac03dc3386, + 0x400548528ac801fd, 0x4009fa69db55fbb4, + 0xc004f8ed4a8dbe18, 0xc0101f173756c038, + 0x3ff498e62aa410f6, 0x3fe93b1a1e091184, + 0xbff04b272cb923be, 0x3ff19442745be07e, + 0x40031eba9592f582, 0xbff5f29d544320c8, + 0x3fd6957c7a3348f6, 0xc001750f200cd1d4, + 0x3ff93081c08a2636, 0xbf96440d93096bc0, + 0xbffd1ca26237d362, 0xbff42e2dd329dad6, + 0xbfffc066548cc7f2, 0xbfed01ce8b994aa2, + 0x3fe36f6dc3c4d182, 0xbfd06cd597a94a3a, + 0xc0087ed5a4ae2e1f, 0x400ba9786498456b, + 0xc00658c544440b6f, 0x3fb7bcc805b19e40, + 0xbfd3723e764ea90c, 0x400416a2856738fa, + 0x3fc1045887d617ce, 0x3ff0c897c93c7e55, + 0xbfca189afdf355aa, 0xbff4f66f28391b7d, + 0xbfd77274b6836516, 0x3fe360d59e08ad29, + 0xbfb4284e9e769cac, 0xbfeb3e54306bf03a, + 0x3ffbd65a05ef6c06, 0x3ff283c5770bca75, + 0x3fc95b803c068020, 0x3ff56c6d77a0f69a, + 0x40038a278355a676, 0x40073e728f745e3e, + 0x3fe54f1239b87b8a, 0xbfea66e020c38d4e, + 0xbfc6223180e230a8, 0xc0055739ab293278, + 0xbfd8cddd96e75000, 0x3fc9f753b373e31e, + 0xbfe632ec8015a194, 0x3fad10b62d234840, + 0x4004ab91e4b2183b, 0xbf91f02449f0c6b0, + 0x3fe44cf2531d8f83, 0xbfb626a4976a82a4, + 0xbfe5de85495ccef4, 0x3fed187381698d83, + 0x3fe9e235c1c42ac1, 0xbfdfe0ac30f66c20, + 0xbfcbb79e53322170, 0xbfd34efdcf120714, + 0xbfd69ddff7bfadf6, 0x3ffa090dbb22cff9, + 0xbfed4bd5564fc36f, 0xbff1035f6d0c8735, + 0x3ff06dd96f8d56e6, 0x4002bc0bf868d68c, + 0xbfcd602daf300626, 0x400f63a1892768aa, + 0x3ff6cc0f1c7070dd, 0xbfd5f6d25a00eac6, + 0x3ff327902e1c9e1b, 0xbfcd7578cab11436, + 0xbff148e7f2e93bea, 0xbff66381087aa98c, + 0x3ff51210519e914e, 0x3fcb551eb95a6cfd, + 0x3f51a80d8ba52c00, 0x3ffcd189e097ca1a, + 0x3fe3f09c45a067a4, 0x3fc39ebb205ebfc2, + 0x3fd47fefe336e4fc, 0xc00c461264f5c1c8, + 0x3ff44b7477bebc92, 0x3fec3d161dd67d43, + 0xbfea940df693e094, 0x4005a757bbfa181e, + 0xbfdd05aeea0275fe, 0xbfa44785ae649ac8, + 0x3fd1da0115a48094, 0xbffac3d972181b49, + 0x400b2177ae870c05, 0xbfdfe1a000f8685c, + 0x3fece15d4f402613, 0x3fe0964239a90e7e, + 0x3fc6e68666636888, 0xbffec7be2f889fb5, + 0xbfd90e7f577345e3, 0xc0030afbc345e364, + 0x3fd97c04e4d84222, 0x4001277065567b32, + 0xc0013d77bc3db1eb, 0x3ffb3d5f3387ec33, + 0xbfd94cd571f1f3f2, 0x3fdeff24ec5a655a, + 0xbff9099d2d441b24, 0xbffa0dad2df68605, + 0x3fe6e31ce2bacb8a, 0xbff0c6194a5dee94, + 0x3fdaeb6960c20a00, 0xbfcf12df424d79e0, + 0x3fea4d039c364e88, 0xbfe745ac696182a8, + 0x400fd41bb984d82b, 0x40015884ea5692f8, + 0x3ff9d448c9236a57, 0x3febd6a88d75f545, + 0xbffb3b626d23700d, 0xbfd22b601bee3710, + 0x3ff092f1e1110a61, 0xc00683a461436473, + 0xc0022c56bb76281c, 0xc003f9f5980a3ad2, + 0x400146aeadc53076, 0x3f66206736cce800, + 0x40078efe9930e0d6, 0xbff5971fceefe626, + 0x3fe853a5b55dd56d, 0xbff63ce9433b9d90, + 0xbfed47695c45c4e4, 0x3ff7aab6ef87a86b, + 0x3fd6581da294ee45, 0xc00a3c99f6c9e0ea, + 0x3fe15f4c721ced3c, 0xbffe733d8638a9dc, + 0x3fe28fd627ccabcc, 0x3fee29fc325e5959, + 0xbfd4fbc6a65bcaf8, 0x3ff1b32f0ffca982, + 0x3fdea08d13cb13d9, 0xbff9eae155889fbb, + 0xbff80a29d315fc4a, 0x3feaaaf8202571be, + 0x3fe5c6e6251c9f30, 0x400167be216e9f51, + 0xbfeaa6870d333e78, 0xbfb9577788de7020, + 0xbffc4ee13f0974d8, 0x3fdc146dc31165f0, + 0xbfc18f7f243f4166, 0x3fd290ac2a5c4eba, + 0xbfe8ce50652b8f89, 0x3ff15bb908b64f07, + 0xbfb0f3129f5777b0, 0x4006e263929c4b52, + 0x3ffa435f11ef3083, 0x3fe88aaba049a540, + 0x3fba3d6ca5a046e0, 0x3fde9ddee450ad10, + 0x3ffd22db99d76e1e, 0x3fdfcf76385dee06, + 0x3fe14a2c51dec5df, 0x3ffc05c5fbcb4d36, + 0x3ffeca006ea4df36, 0x3fe9e8f01654cac5, + 0xbfbae7fe07618b90, 0x3fc4b7b86303dd6c, + 0x400456221cbc19be, 0xc000ffb58f12f51c, + 0x3ffbd1a82755a6dc, 0xbff659ca448e8822, + 0x3ffb524ce8b24dd8, 0x3fdd518f619a4250, + 0x3fe88d6af48cbd75, 0xbfe80e63c9ad50b6, + 0xbfdb0769b099edc2, 0x400240313d255c49, + 0xc00cfd1c585a7517, 0xbff125dba22fca73, + 0xc00d9e288a78be22, 0x3fefc17eeb07cbf5, + 0x3ffecc23914c9d05, 0xbfea0a85e3175072, + 0xc007d02a4deee317, 0xbff7ebb96cb6663c, + 0xbfa43f7a53d75ea8, 0xbfe2fae52b72c094, + 0x3fff7c797563a099, 0x3fe2d6567c0ba4c8, + 0x4011fdf1e8e93182, 0xc007a65db7e7636b, + 0xbfe9e0561d6d2a9e, 0xc000ce435a644ec4, + 0xc005bb63070d3531, 0x3fe47715db811d20, + 0xbffd4eef1851a3ae, 0xbff19a7093f70b8a, + 0xbfeb30ceca472f60, 0x3ffee5d519a20164, + 0x4001445f67d092f8, 0x3fe1e23bbd8d01ee, + 0xbfdb1ecdabef61dd, 0xc001329f88c0f9c4, + 0xbff16a9c70410e84, 0xbf8c2d8516d4cfa0, + 0xbffcb923343b8322, 0x3fee1c13cf4e47be, + 0x400121c56e39e9dc, 0xbfd9005bc1ab2cd8, + 0x3fec3570a7070430, 0x0, + 0x400121c56e39e9dc, 0x3fd9005bc1ab2ce0, + 0xbffcb923343b8322, 0xbfee1c13cf4e47bc, + 0xbff16a9c70410e82, 0x3f8c2d8516d4cfc0, + 0xbfdb1ecdabef61d3, 0x4001329f88c0f9c4, + 0x4001445f67d092f8, 0xbfe1e23bbd8d01eb, + 0xbfeb30ceca472f60, 0xbffee5d519a20166, + 0xbffd4eef1851a3af, 0x3ff19a7093f70b88, + 0xc005bb63070d3531, 0xbfe47715db811d26, + 0xbfe9e0561d6d2a9f, 0x4000ce435a644ec4, + 0x4011fdf1e8e93181, 0x4007a65db7e7636b, + 0x3fff7c797563a09a, 0xbfe2d6567c0ba4c6, + 0xbfa43f7a53d75e88, 0x3fe2fae52b72c097, + 0xc007d02a4deee317, 0x3ff7ebb96cb66637, + 0x3ffecc23914c9d08, 0x3fea0a85e3175074, + 0xc00d9e288a78be22, 0xbfefc17eeb07cbf6, + 0xc00cfd1c585a7518, 0x3ff125dba22fca72, + 0xbfdb0769b099edc0, 0xc00240313d255c48, + 0x3fe88d6af48cbd77, 0x3fe80e63c9ad50bb, + 0x3ffb524ce8b24dd3, 0xbfdd518f619a4264, + 0x3ffbd1a82755a6de, 0x3ff659ca448e8820, + 0x400456221cbc19bc, 0x4000ffb58f12f51c, + 0xbfbae7fe07618ba0, 0xbfc4b7b86303dd74, + 0x3ffeca006ea4df38, 0xbfe9e8f01654cac8, + 0x3fe14a2c51dec5dd, 0xbffc05c5fbcb4d36, + 0x3ffd22db99d76e20, 0xbfdfcf76385dee08, + 0x3fba3d6ca5a046a0, 0xbfde9ddee450ad08, + 0x3ffa435f11ef3082, 0xbfe88aaba049a53a, + 0xbfb0f3129f577780, 0xc006e263929c4b52, + 0xbfe8ce50652b8f8a, 0xbff15bb908b64f06, + 0xbfc18f7f243f4160, 0xbfd290ac2a5c4ebe, + 0xbffc4ee13f0974d6, 0xbfdc146dc31165f5, + 0xbfeaa6870d333e7c, 0x3fb9577788de7000, + 0x3fe5c6e6251c9f31, 0xc00167be216e9f50, + 0xbff80a29d315fc4a, 0xbfeaaaf8202571b9, + 0x3fdea08d13cb13d6, 0x3ff9eae155889fbb, + 0xbfd4fbc6a65bcb00, 0xbff1b32f0ffca983, + 0x3fe28fd627ccabc6, 0xbfee29fc325e5959, + 0x3fe15f4c721ced3e, 0x3ffe733d8638a9d9, + 0x3fd6581da294ee52, 0x400a3c99f6c9e0e8, + 0xbfed47695c45c4e4, 0xbff7aab6ef87a86a, + 0x3fe853a5b55dd571, 0x3ff63ce9433b9d8e, + 0x40078efe9930e0d7, 0x3ff5971fceefe627, + 0x400146aeadc53076, 0xbf66206736cce200, + 0xc0022c56bb76281c, 0x4003f9f5980a3ad3, + 0x3ff092f1e1110a62, 0x400683a461436472, + 0xbffb3b626d237010, 0x3fd22b601bee3710, + 0x3ff9d448c9236a57, 0xbfebd6a88d75f541, + 0x400fd41bb984d82b, 0xc0015884ea5692f7, + 0x3fea4d039c364e88, 0x3fe745ac696182a3, + 0x3fdaeb6960c20a00, 0x3fcf12df424d79d8, + 0x3fe6e31ce2bacb8a, 0x3ff0c6194a5dee97, + 0xbff9099d2d441b26, 0x3ffa0dad2df68606, + 0xbfd94cd571f1f3eb, 0xbfdeff24ec5a655a, + 0xc0013d77bc3db1ea, 0xbffb3d5f3387ec32, + 0x3fd97c04e4d8421c, 0xc001277065567b32, + 0xbfd90e7f577345e2, 0x40030afbc345e365, + 0x3fc6e68666636898, 0x3ffec7be2f889fb4, + 0x3fece15d4f402611, 0xbfe0964239a90e82, + 0x400b2177ae870c06, 0x3fdfe1a000f86856, + 0x3fd1da0115a48098, 0x3ffac3d972181b4a, + 0xbfdd05aeea027602, 0x3fa44785ae649ae0, + 0xbfea940df693e093, 0xc005a757bbfa181e, + 0x3ff44b7477bebc8f, 0xbfec3d161dd67d45, + 0x3fd47fefe336e4fc, 0x400c461264f5c1c8, + 0x3fe3f09c45a067ae, 0xbfc39ebb205ebfb8, + 0x3f51a80d8ba52c00, 0xbffcd189e097ca1b, + 0x3ff51210519e914c, 0xbfcb551eb95a6d04, + 0xbff148e7f2e93be6, 0x3ff66381087aa990, + 0x3ff327902e1c9e1b, 0x3fcd7578cab1143a, + 0x3ff6cc0f1c7070dc, 0x3fd5f6d25a00eaba, + 0xbfcd602daf30060a, 0xc00f63a1892768a8, + 0x3ff06dd96f8d56e4, 0xc002bc0bf868d68c, + 0xbfed4bd5564fc369, 0x3ff1035f6d0c8735, + 0xbfd69ddff7bfadfa, 0xbffa090dbb22cff8, + 0xbfcbb79e5332216c, 0x3fd34efdcf120718, + 0x3fe9e235c1c42abd, 0x3fdfe0ac30f66c10, + 0xbfe5de85495ccef6, 0xbfed187381698d7f, + 0x3fe44cf2531d8f86, 0x3fb626a4976a82ba, + 0x4004ab91e4b2183a, 0x3f91f02449f0c6c0, + 0xbfe632ec8015a192, 0xbfad10b62d234860, + 0xbfd8cddd96e75004, 0xbfc9f753b373e30e, + 0xbfc6223180e230a2, 0x40055739ab293278, + 0x3fe54f1239b87b90, 0x3fea66e020c38d4f, + 0x40038a278355a675, 0xc0073e728f745e3e, + 0x3fc95b803c068028, 0xbff56c6d77a0f69c, + 0x3ffbd65a05ef6c07, 0xbff283c5770bca74, + 0xbfb4284e9e769cbc, 0x3feb3e54306bf039, + 0xbfd77274b683651d, 0xbfe360d59e08ad25, + 0xbfca189afdf355a2, 0x3ff4f66f28391b7a, + 0x3fc1045887d617b8, 0xbff0c897c93c7e57, + 0xbfd3723e764ea914, 0xc00416a2856738fa, + 0xc00658c544440b70, 0xbfb7bcc805b19e20, + 0xc0087ed5a4ae2e1e, 0xc00ba9786498456d, + 0x3fe36f6dc3c4d17c, 0x3fd06cd597a94a36, + 0xbfffc066548cc7f0, 0x3fed01ce8b994aa2, + 0xbffd1ca26237d360, 0x3ff42e2dd329dad6, + 0x3ff93081c08a2635, 0x3f96440d93096b80, + 0x3fd6957c7a3348fa, 0x4001750f200cd1d5, + 0x40031eba9592f582, 0x3ff5f29d544320c7, + 0xbff04b272cb923bc, 0xbff19442745be07e, + 0x3ff498e62aa410f6, 0xbfe93b1a1e091188, + 0xc004f8ed4a8dbe19, 0x40101f173756c038, + 0x400548528ac801fd, 0xc009fa69db55fbb4, + 0xc00c31d421c2ce02, 0xbfd652ac03dc3382, + 0x3fe34a808864cc24, 0x3fe5633a19ce1db1, + 0xbff2f2bc5bd51326, 0xbfe95e87d445bb21, + 0x3fdf85eb56738ff4, 0x3fb3391d7a5111a8, + 0xc006d076bf0dfea3, 0x3ffd9c127d707c9a, + 0xbff962b937a508f0, 0x40075d23d4466c8c, + 0x400c8fb659f1a5fa, 0xbfcc78925c9f0504, + 0x3f9f3e1909934680, 0x4002ac49a4f7c0c6, + 0xbff0779fd0efb26e, 0x3ffd1254b3a89c82, + 0xbff5334eb16eefa6, 0x40095144cb79cf36, + 0xbff2662d01479b34, 0x40010d9e1ce4ac11, + 0x4005f7badbb5ea86, 0xc013a4a1281a5ede, + 0x4001215081952a84, 0x3fe1568030c4cfcd, + 0x3ff9f84b739eae09, 0xbff9322affd8205a, + 0x3ffa5fabd1a2efbe, 0xbfd728b659985bac, + 0xbfe7286f1fbb552b, 0xbffadddbc97dce24, + 0x3fcbf4be4669fc68, 0x4001bf7e9172c9a8, + 0x3ffb595992022678, 0x3ff089ed81ef87e1, + 0x3fa458e9d4d81780, 0xc0014e5b16e5b307, + 0x3fdaa83f495c2754, 0xc0055ba1c2b9bf52, + 0xc002be4bb7acffab, 0x3ff62dfef42a283c, + 0x3fff52e90c4bb75c, 0x400d14449ceb480a, + 0x3ff0cd49da7ee84b, 0xbfd33a85cc238e90, + 0x3fed5875cc787116, 0xbfcf57cb09b136a0, + 0xbff86dfddb3784d0, 0xc00277d4476aa86c, + 0xbff990fd387f8ad1, 0x3fee6b2646094b8e, + 0x3fde104030896764, 0xc000d448699226b4, + 0x3ff38e8efeabec54, 0xbfb24e337db3b3a0, + 0x3ff4d3ce88150185, 0x3feac8f8019dc7ab, + 0x3fd7dd2659fe4550, 0x3fe9a62d17d48639, + 0xc0077c2a72e74474, 0xc002fb9676ff2182, + 0xbff88105dbc5dfa1, 0x40078365b190723a, + 0xbfe988bd0bea4198, 0xbffc26f87b0b8079, + 0x3ff9c2150935f570, 0xbfdae2d31b3daf20, + 0x3ff5e45c956e4f8d, 0xbfe85f7e36bec920, + 0x3fdd3c8165c7db0c, 0x3ff84897d004cca6, + 0xbfed35c8979a2df6, 0x3fe7167c528f1141, + 0x3fc76f315c9d4bf4, 0x3ff50da452ea8e9e, + 0x3fcf386b91d5f660, 0xbfe58b08a687a7df, + 0xbfe3812e05696018, 0xbfd2ffdcbf2a2c50, + 0x3fe483fd3805ab3a, 0xbfe5ad7ee538eebe, + 0xbff172025ee3d341, 0xbfeef9836a58ade6, + 0xbfe18dbe9e732b9a, 0x3ff348f6097054c6, + 0xbfdb70544573a317, 0x3fdf1ac5e8e40be2, + 0x3fcc8ba6f25b9eee, 0xbfe2f461e6f6af22, + 0x4000b6824022888d, 0xbff75f35c9e55ea4, + 0x3fe5d9191858cbd4, 0x3ffb1c0dbabf668e, + 0x3ffc2c601339f99d, 0x3fe82f487a321536, + 0xc009405cd4d2c008, 0xbfe7c8a6ce0a1700, + 0xbfeb644e3732e247, 0xc001fc3b59cfaa55, + 0x3fd579b22b889695, 0xbfc2c68ca5d708f4, + 0xbfe92e1d0d65e5d9, 0x3ff91c835f8daba0, + 0xbff183916fc2aa6e, 0xbffb7eae343e32c5, + 0x3fe5ed77ab6cf3c4, 0xbfe2c3f68baa8fae, + 0xbff427cb7dd4f607, 0x400180eaf251ffd8, + 0x3fea4afc95c24ae3, 0xbfddc87cff6bed08, + 0x3f8c036b89408980, 0x40046c6718ff8ca0, + 0xbfe0e581c78130ec, 0x3ff77e152db9ccfd, + 0xbfde924804bd6ae2, 0x3fd3f3cf40f2f2ae, + 0xbfc3779a2dec082a, 0xbfcfc0895c7d5354, + 0x3ffce8c553d4aea8, 0x3ff98fe8b08ab070, + 0x3fef7e9ac4577915, 0xc0067badd2648fcd, + 0x3feabb6b34cc6391, 0x3ff08ebbb695a9f9, + 0x3fc0a08dcec70fc0, 0xc0026a2e6304b4f6, + 0xbfd2e6284e0d6080, 0x3ff6d0dc7c0664e4, + 0xbff2dc164a9563cb, 0xbfee54d36e6a9d0c, + 0x40042c3d67348d76, 0x3fe47fb8f390078b, + 0x4003a4ee7d235d46, 0x3fec26b940a0dc29, + 0xbfd47625e5c59fa2, 0x3fcebf68e764d802, + 0xbfdcd50c72d60617, 0xbfeb7e8e86ddb2b1, + 0x3fef6d47422bab4b, 0x3fee17ae05ead460, + 0x3ff8df54259d78ca, 0xc009fb2e1d059ea6, + 0x3fd3631d9da5016e, 0xbff8df575d749305, + 0x3fea66e4f9d6bd4f, 0x3fecf281787d637b, + 0x3fc2558222abe2f4, 0xbfe11d4efd8e93d3, + 0xbf95ae94357edfc0, 0xbfe6be181fa907f4, + 0xc0033c757f991fe3, 0xbff84a3f3e77c0f9, + 0x3ff102add34cb2e0, 0xbff512211d90bff8, + 0xbfeea6c983c65ee3, 0xbfeee592533b0f79, + 0xc004ab214073c53f, 0x3ffea7ba983398a2, + 0xbfd19255d6e8ad4e, 0xc0016442986ee450, + 0x3ff3cde9c67f31ee, 0x3fdede36bc4473fb, + 0xc0109847b188c028, 0xc00688a8b684f85f, + 0x400c0537fa417fdf, 0xbffcdba372a2e3b5, + 0xbff199afcfee6898, 0x400f248326d85286, + 0x3fff6e15da275330, 0xbfe61f938a27ba48, + 0x3fff9f4b02d585d7, 0xbfdfb7cab2511133, + 0x40012f4a51ee7cfa, 0x3fe8a4cfdac3f75e, + 0x3fd408b351aba252, 0x3fd99643a12aa42c, + 0xbf9208ab9bfeef20, 0x3ff08ec100fc72ce, + 0x3fb8e0b74585ee84, 0x3feb72c8f8689eb2, + 0x3ffdc6bca8cfd8f2, 0x3ffaa271e1334aed, + 0x401071a1462c7ef7, 0x4019f545f7e746a2, + 0x40082dfce71558b6, 0xbfe88c190b19e04f, + 0xc008565faa0ef876, 0xbff214b40c374ca5, + 0xbfe14061c2d5c231, 0xbff8a178e7e2b7a4, + 0x3fd6d3e972091e9a, 0x4004197594f3c202, + 0x3fa2cbaa0f32c2d0, 0x3fba78a2d261b9e0, + 0x3ffd074b32528648, 0x40002dfce1d1ede0, + 0x3ffd6961418f69da, 0xbff09c44574675b8, + 0x3fff9a54c2b6950a, 0xbfe828993fc3c22b, + 0xbffdf291317c8176, 0xbff802658530fde2, + 0x400b860a3d7f28ae, 0xc0017051fe1f8eac, + 0xbfeb9fb91bfc5a12, 0xbfea90d20fee7ed6, + 0x3ff9a54e20777e92, 0x3fef93a0f4221c9a, + 0xc01668d28b6e2337, 0xc00626fbf967b3b4, + 0xbfe4e2fa57204faf, 0xbfc088066b873d1c, + 0xc00975825dd1a51e, 0xc00a13b42273162b, + 0xbffa6337f04d26dc, 0xbff0e056ff752ad5, + 0x3fd1ef6ec07a3dfc, 0x3ffae40cf2c1cf9c, + 0xbfd575d713b9a8a4, 0x3fe99ee240c7d200, + 0xbfdb9646f334f786, 0x3fccc49e125015de, + 0xbff10e9d5c11d6cd, 0xbfeabc01812364be, + 0x3fd64b720bae40c8, 0x40007a7c4bc13e93, + 0x3ffc4121021b2f63, 0xbfec40eff609afba, + 0xc0076785ec64ae93, 0x3fe0c4ddc397ab1b, + 0x3fefe5fc4b015ef7, 0x3fd51c942e0fc7f6, + 0xbff8651bd0fb57de, 0xbff710bdff38e3e4, + 0x3fbc8a6f11e24540, 0xc009eff3d9768026, + 0x4003d24b1fac2b04, 0x3ff647099fe9645c, + 0xbfc733f81f4e9ad0, 0x3ff5b31fdf5046bf, + 0xbff4a525d6a5bf85, 0x3fe634bf3ed4d8aa, + 0x4001e7b20bfffbd4, 0xbfdfb7ccb801264c, + 0x3fe0ae16dfc2a44a, 0xbff59c610ce1f444, + 0x3fd55deb86d36ef0, 0x3f80b1f3c0912080, + 0xbff302bd88de0af6, 0x3fd5fee30fff6d79, + 0x3fddd20491ea618a, 0xc00b15c6a4d2416c, + 0x3feee388dc2eced5, 0xbff75516f0403ac0, + 0x3ffa4736e9bb7f9a, 0x3ff7b86218ca0f51, + 0x400f077e31ffdda4, 0xbfeb173dc3681862, + 0x4004899959826283, 0xbfeeb47af9851dba, + 0xc003e4a121d13f9e, 0x3ffc542fea9fa450, + 0x3fe602e8a634c672, 0x3ff2341bb995e11d, + 0x3ff95254e51b80ee, 0x3feba12f3dc812ce, + 0x3feb76776602f1b7, 0xbff0519bfaf92074, + 0x3ff0571187a85138, 0x3ff8a9b238b610ca, + 0xbffa57241bd8ed3a, 0xbffb461b952f6a42, + 0xbfccae18873624e6, 0xbfcf237090cdbfe4, + 0xbfed48887e01e664, 0xbfea11a8bbefd060, + 0xbfbf4dad2298cb00, 0x3fed5ed6f54eb6b2, + 0xc008bb3b19cd00c6, 0xbfc98eca8d9ce646, + 0x3fcad47b7fc857d4, 0x3fe30398e2d854ec, + 0xbff8eb5275077d7a, 0x3ff1229b8515c61a, + 0x3fea2569afdc4042, 0x3fefb74bbda3f93a, + 0x3ffc75b14ae1c132, 0x3fbd30ecc1815b40, + 0x40002f7c6846b07c, 0x4001732bd61f28eb, + 0xbfdb900fe6ed0ef8, 0xbfeb3c3d920c7fd4, + 0x3ff3f7950fca3751, 0xbff0784bbe9fbd2e, + 0xc007b5366b0582c0, 0x3fb68f7c42efbeb0, + 0xbfffc37270892a54, 0xbfe57fcb1cadb382, + 0xbffe9934c65c9796, 0xbff6a2f31a8d2f36, + 0x3fe5c96890311558, 0xbfdc464982cee308, + 0x3fcb2fd4f96733bc, 0x3fe0a6ab74b75000, + 0x3ff6d66a706013c0, 0x3fe8fe28de01b71c, + 0xbfd1751089ec0fb4, 0xbfecfb7e99d89506, + 0x3fd2923f2e99a175, 0xbfd1844fbaf33478, + 0x3ff60e8d33047de0, 0x3fc29906bb1fa1dc, + 0xbfd8635472ded20d, 0x3feeaaee7b0385fe, + 0x3ffd1b5ce23cb032, 0xc00744cb9ee30e41, + 0x3ff896e36a8b00d7, 0x3ffeed66188434b3, + 0x3fe85083e03bbd67, 0x3ffe237d11118cf4, + 0x3fbf133b92c400f0, 0xbff78c6ae4886a49, + 0xbfe61b48a60c19b8, 0xbfd24012e56ed307, + 0x4005e99bedf23ae2, 0x3fdc7e84c2ca3a29, + 0xc001d2874c681101, 0x3fe1f2545876b389, + 0x3ff472f6105d836e, 0x3fe67a869745b05d, + 0x4005835f8b6dd78e, 0x3ff9c8d1cbd3536c, + 0x40034f958ebcd66e, 0x3ffe7a1dceba6bc8, + 0x3fe7c1ebf0714085, 0xbfe9f3c91a709b11, + 0x3fe5e977bf554b3c, 0xbff18275990a35fc, + 0xbfd94ec9d1f19c3e, 0x3fc29fbcbff9a30c, + 0xbff49720c473750e, 0x3fdc007d15060e30, + 0xbfe2105785e693e0, 0xbff401bd37fcead0, + 0x3ff7703e718aae30, 0x3fe63a508a50208e, + 0x3fcdb6e3762990fe, 0xbfed4727ec179754, + 0x3ffe11f24f8b2e80, 0x3fcf2217d34d9780, + 0xbffd5d856572d5ec, 0xbfe86319ce8624a0, + 0x3ffd7cceebe10fcc, 0x3ffaace70aabad5c, + 0x4001b31d5ccf4da8, 0xbfed1e48700873ea, + 0xbfef0394f9d43df8, 0xbff4aa42efe87bc7, + 0x3fd178930859c95a, 0xc005a3e574eab181, + 0xbfb2f4597fa3aa80, 0xbfe1aa786f40d260, + 0x4000ac4c5649ffc9, 0xc00be4919e78c425, + 0x3ff0e8691a9c153a, 0xbfe68aa51c613dae, + 0xbff6861a8c40d2c6, 0x4004598055dc32d5, + 0x3ff440f23f53823a, 0x4006bb7a4b105746, + 0xbfb8d989abed5114, 0x3fd3410f36d02956, + 0xbfe7450afa1e9d3a, 0xbfe20c64ddae0252, + 0x4000bef119dd524a, 0x3ff713e398026255, + 0xbfa648ee0af32cf0, 0x3fb1d912188f5438, + 0xbff97708391a391c, 0xbfccb156628a3588, + 0xc0132742544d0cf8, 0xbffcce09b4b0a762, + 0xbfeeb0eda0c7a0ec, 0x3fc0a55aa942ebd0, + 0xc0075842faa11102, 0x3fc1c06e9627b3f0, + 0x3ffaf79057053fbc, 0xbfcf31f35ae8c5f8, + 0x3ff8a49d3ada4210, 0x3ff44a2459983f4e, + 0xbfce3dd3c674805c, 0xc0052dd2c17b6ee6, + 0xbfd816ad18cd6c70, 0x3ffbd20d7eceac6f, + 0xbffb705818c13e82, 0x4003d63d21db240d, + 0xc009e5d378ecf204, 0xbfe75c4437e37cd5, + 0x3ff9445de36e36d0, 0xbffd68cfbd0b0cee, + 0xbffc430dfdcba618, 0xbfe51b5f5fa6fe6a, + 0xbff6be41ced22b34, 0xbfaa6f00dd96b6f8, + 0xbfe5a1e879a08d5c, 0xbfea86ec8d816d12, + 0x3fd3a1357879fe42, 0x40018b7d3aa1c056, + 0xc0030d800e6852bd, 0x400a987adb63305d, + 0xbf96df1b1d4c5790, 0xc002dc6dbfe87082, + 0x3feb43ea47997b82, 0x3ff2b564152a6b0c, + 0x3ff986df01ea2554, 0x3fe621f53f495e48, + 0xbfbee48c92f9d2b0, 0xbfffdc3042e2b1fe, + 0xbff13095590647be, 0x3fdbe3be7d795e02, + 0x3ff895fdaa4d3a43, 0xbfd50ca382775f98, + 0xbfe8ba9f74e27c7e, 0xbfe4582a5f6517f6, + 0xbffdb76d50b1d354, 0x3ff31a43bd9dfeff, + 0xc004e6ae885a1947, 0x3fd465078ad09290, + 0x40044a3048c536c8, 0x4002e3e6263ba1d5, + 0x3fdacb3fa4ba9925, 0xbfee8dbf72aedc1a, + 0x3fe74715e98a931b, 0xbff7aae6e2e44493, + 0x3fcdf089647d3fae, 0xbfe9e4ecd738a090, + 0x3ff0ef530382fcf9, 0xc0100d8a3e60f106, + 0xbfd61795dfeca948, 0xbfe3137ad0e0fa18, + 0x3fc094f7a9a4c334, 0x40068abcd3acb198, + 0xc0076f3fe2378a44, 0x3ff246b256a01de6, + 0x3fefc720198dbe4c, 0xbff1ae4507cd91d6, + 0xbff975dc4e1b0396, 0x3feff6cddc6857f0, + 0x3fcb5cb08c06e230, 0x3ffe0d20ce1bc5e3, + 0xbffe3d452713bffa, 0x3fde6ebf9bd085ba, + 0x3fa34c28d866a1c0, 0x3fe319449d1b225d, + 0x4001291a80e9da3e, 0x4001fab28e3d201e, + 0x4001eb6954aeee75, 0xbff1103f19b978b9, + 0xc003491364edde87, 0xbfea0a6ef2c32a63, + 0x3f34b95c0431d000, 0x4002537afaa7fff0, + 0x3fe38d7c5cef121e, 0xbfee2b1c40bdf9ba, + 0x4001591736bb22f8, 0xbfc3d43869193bb0, + 0x3fd717b13abc9f6e, 0xbfff035e77ace964, + 0xbff12eae388ae127, 0x400d264791484704, + 0x3ff629ff77903bbd, 0x3fedccb5368208ac, + 0x4002aa8ade41028e, 0x3fe31249affbfdf7, + 0xbfe19227e38937a2, 0xbfda2a2671cebd08, + 0x400ac58802ee1c94, 0x3fd5f2d9982c5dc8, + 0xbfee9b4bdb8c62ae, 0xbfd5aa713d290274, + 0xc00566d79b5798f1, 0xbff5bc8b85d3b548, + 0x3febfea7cb996b2e, 0x3ff7d92de8b77c2b, + 0xbff455826a93f66d, 0xbff18397ea8738cf, + 0x3fd7ab34bea5cd10, 0x3fef3fcb8e21a433, + 0x3fb84afb1dc12abb, 0x3fe5dc2cda962834, + 0x3fc9a8a4303ca118, 0xbfe873c5682bfa24, + 0xbfc3c3f73a65e050, 0x3fdacbbf57d8e1c2, + 0x3fb7aaec595fc780, 0x3fd13bba040a87b2, + 0x40020d1f95064a25, 0x3ff75dcfdadd0406, + 0x3ff241e83f31b833, 0x3ff1f97f17d347aa, + 0x3ff7c06c8a1c9a14, 0xbfe8784b66b0a606, + 0x3fb9caf001db2a88, 0x3ffb384581c3796c, + 0x3fe5c3187a63a9ca, 0xbfefaa3dcc524ab8, + 0xbfe26a0b31ab213d, 0xbfffa081d20e1353, + 0xc00277ab8a0a1698, 0x3ffd839a8caf1223, + 0xbfee2291b61bbc51, 0xbff042cc6dd6fdbb, + 0xbfe82f28cf1feb47, 0xbffb35e97dbd8c98, + 0x3feac48d25b23870, 0xbfeabc280b237508, + 0xc0042bac79cf361d, 0xc00310633356604a, + 0xbff8486b4173b048, 0x4000f9dde3943743, + 0xbfe2ab052058c956, 0x3ff82fb2c550ce51, + 0x3fe06ff3fe1e6bcf, 0xc002e5bb3bd72a7b, + 0xbfcb269669ddaa58, 0x3ff5b9cbd7207486, + 0x3ffca8f253aeddb0, 0xbff0e7190003ac3e, + 0x3fd71943d12d0c90, 0x3feb98f82adbd8cf, + 0x3ff91c6ef81a75e0, 0x3fff5b952c7074af, + 0x3ff9ca5b4fd88895, 0xbfeec87f0053a968, + 0xc001804b18a72d2f, 0x3ff75fa5054fff4c, + 0xbfdd9b87bf3c05f5, 0xbfe19a3b8af2a7e2, + 0xbfc0c321e2c327d8, 0xbfe0ee1b725185a7, + 0xbfe09e06a159b406, 0xbfdd37576a4c2bac, + 0xbffa58e4bd771dc6, 0x3fcd5dafc898f75b, + 0x3ffcd5cdaaca5392, 0x3fd530a3e163d31c, + 0x3ff280e904dee594, 0xc00867307ad598f8, + 0xc00a48ac18b57e52, 0x3fda2d11794e1f22, + 0xbfc5d23481bdf6ca, 0xbfebde4e7449bf77, + 0xbfec33a4be8a61d4, 0x400ea91bd8800246, + 0xbffc11da64b7f34a, 0xbff28ee3b7386db8, + 0xc00db5c9264e355c, 0xbff5ff03b1c1c9e4, + 0x3fc47394ad07ea68, 0xc00c0435b32f1bb6, + 0xbff9e0758fd48556, 0x3fdae34a424d5504, + 0xbfe2190402c93b37, 0x3fdd7b5afc9690e8, + 0xbfeaa4545903af44, 0x3fe83944fa82c727, + 0xbfec4099862265b1, 0xbfd6d2b36b004cf0, + 0x3ff26b47a36f717c, 0xbff6ea38c9cc95ee, + 0xbffe0964ad310858, 0xbfee4002f72469e4, + 0x3fcae23a5aa4092a, 0xbf830c0b0df1ad80, + 0xc0033f040ff68b18, 0xbf9b9088b5911280, + 0xbfe4c87f658330bf, 0x400619bc76f55170, + 0xbfce37318a9b6a18, 0x3fe1f3db1779b23c, + 0x3fd8c069a2982b66, 0x3fffcd7b64446978, + 0xbff0ef6be5d018b5, 0xbfec1a7bbdc7758c, + 0x4003ccd81514dedd, 0xbfd0693bceadc862, + 0xbfd452493e4e0fc6, 0xbfc44b6dda644c8a, + 0x3fdc6568bf9574a4, 0xbfdf336b118926a2, + 0xbff34112b5a32554, 0xbfe5e2f5a08ca5e8, + 0x3fe1266d9e6d40e4, 0xc00af83242124906, + 0x3feb0f900dbac1fe, 0xbfec1b3715a6b024, + 0x3fc87748a16d02f2, 0x3fbcde7f94712b40, + 0x3ff931a60c14ca9b, 0x3ff05dde76397545, + 0xbfd618df14d1629e, 0xbff28480ff66d1aa, + 0xc00ff818bda4c57e, 0xc00532e31d8a8896, + 0xbff3d3d8fd1fe2ec, 0x3ff5cd24642f7326, + 0x3fc9e22e409910f0, 0xbff9bc305a76f590, + 0x4004592028f1deb6, 0x3ff066ec1487e1ac, + 0xbfced1989edbe3f8, 0xbfe0c79bb8be3b0b, + 0xbfda6affda243ecc, 0xbffb4944a6ec8221, + 0xbfd371da3279a348, 0x4001afab3eb2c524, + 0x3fed3512cb8b9004, 0x3feb423e58e42a1c, + 0x3ff1599567f98b20, 0x3fe55fcee0e434e5, + 0x3fd07d5de0c1fab2, 0x3ff7adb2bbb12f6b, + 0xbffa0876dcf86919, 0x3fb06e533c39caa2, + 0xbfdedb86a928a048, 0xc008d2310fe0fac4, + 0xbff1ebe1f9b3d2cc, 0xc00b974541a6bbda, + 0x3ff8486ac2db1a6e, 0x3fd84a2409a3efc2, + 0xbfefd2f51fdcefcc, 0x3f9a1098668226c0, + 0x3fd240e60cf0d454, 0x4006fd468b1c8e7b, + 0xbff42c2447b22b9b, 0x3fe72c5d5b24994e, + 0x3ffeb1ecfe4526eb, 0xbff0da91e4ded70c, + 0xbfff74a6595f0aca, 0xbffb6e49e67263ce, + 0xbfe66aca3a6a4ba4, 0xbff54f86671092a3, + 0xbfe8c3b70593529f, 0xbff95ef598918ee3, + 0xbff9eb5cafc998a2, 0x3ffa13c291bc3cbf, + 0xc00a046a00d3e960, 0xbfb8bb12a548dbb0, + 0x3fc5c0f169e126e0, 0x3fe80ee05cc53b9e, + 0x3fd70add92847946, 0x3ff02251e5f69a83, + 0x3fb75696bcd75760, 0x40028c76304b7465, + 0x3fedb1f298eeaca4, 0x4002da13172e28f2, + 0xbff9453aefb63f22, 0xbff063c564048dcf, + 0xbfeb6e7febdba89a, 0x3ff47f79649c9f05, + 0x3ff8b63857ac5f74, 0xc002cd3ae0e26843, + 0x3ff6eeb28666ee76, 0x3ffd7d9526b34031, + 0xbff583b12f9035e4, 0xbfd2147b97714bd5, + 0x3fd53c6156f20064, 0x3ffc621316272d50, + 0x400d8300dba3d6fa, 0x3ff077773476aa40, + 0xbfb3bad323d885f0, 0xc00917f6d67d880e, + 0xbfee0324f25b7090, 0x3fe5609322aa6246, + 0x400735ace0592362, 0x4000946bcfceecc2, + 0x3ffa51824549a8d1, 0x3ffbcf6e3b3bfceb, + 0x4003101adc66e2c4, 0xbff5870915d7a354, + 0xbff425b332e0dd72, 0xbfbb8c6a7e670b90, + 0xbff7ffbe4f39ff3a, 0xc0056bcce23502ac, + 0xc00195084e52eb3f, 0xc006e355416fbb46, + 0x40013769e9056832, 0x400575d5f32dacfc, + 0xc00419cc4091c842, 0x3fb78661638e0488, + 0x3fb4516d3ee0e410, 0x40022e1ad928bc1d, + 0x3ff4f1b1c9ff0e56, 0x3fcc5ccd314dc28a, + 0x3feaf4635016a2bc, 0x3ff6541953ddbec4, + 0x3ff3db27e6a7ed53, 0xc0045bf87c333cab, + 0xbfd2f562b6394bf4, 0xbff087dd16594019, + 0x40093a5d07a02248, 0x3fe5e8e7533489b0, + 0xbfa37285e1aa7840, 0xbfefcb5180be55c4, + 0xbfe109e82fb813f5, 0x3fba87a2172147c8, + 0x3fd81dc1ac8e21fc, 0xbfddcaef46ff1e44, + 0x400140ae14ae8755, 0x3fd7966ec021d6f5, + 0x3fef4f08b7cc814d, 0x400ac04901042c34, + 0xbfda9e95d0a90a14, 0xbfd5365e65435178, + 0x3fe230f5cda14986, 0x3ffb5da6ac7bb3d6, + 0xbfcc9c98e10cf378, 0x3ff308ad86b5b89e, + 0x400689bef155f654, 0xbfddd3406f9a2798, + 0xbff158f99f477eab, 0x3fe86048c22d12f3, + 0xbfe2de1bf104b67c, 0xbfdc5f2d0b6fbd10, + 0x3ff5720334bf8b41, 0x3fe18c4ec4a6b96e, + 0x3fd66eee7e0f474a, 0xc00a65aee0b7aa6c, + 0x3ff760b41592c859, 0x3ffd4e14991df00c, + 0xbf92c33092f8aec0, 0x3ff2f6af750a5683, + 0x4015f1015c246e87, 0x400037984a59c445, + 0x3ffd005fc5bbafab, 0x4008deea67c76489, + 0xbffff3b1d6c396b0, 0x40107ca9c104636e, + 0xbff876e69e547295, 0x3fe188e50b54af61, + 0x3f946546f4509280, 0xbfdf0a4df98cb458, + 0x3fffbf4609e2d3e2, 0x3feaf884a837954e, + 0xbfeac0b8ae3ac300, 0xbff0fa0ec7d32850, + 0xc0037494b9f10e18, 0x3fd0469de6803334, + 0x3fbc563a2a2c6ed4, 0xc004c4a417737c69, + 0xbfe3ef0327d0c150, 0x3ff2a2f28b7e5414, + 0x4002c0e93203705a, 0xbffd84b0b4eebbb4, + 0x3fe3f725b1c380f4, 0x3fe5c3fa8174e282, + 0xbfee211693d3da0b, 0xbffafb56aa85b42a, + 0xc0090e765457fc62, 0x3fe4cad989e72855, + 0x3fe098b78628efe7, 0xbfe672fcad42cc6a, + 0x40036ea92dec4d5b, 0x3ff244fc3abdbd61, + 0xc0042af62f14e01a, 0xbff80b9c53c3c570, + 0x400a97672e2eb0ae, 0xbfd874eeb2ad5ae0, + 0xbfeae02ee8987274, 0x3fd21580eaa6e6cc, + 0x3fe209c3bcbfcf18, 0x3fff9b1f50c25817, + 0x3ffd51afe5fa8d28, 0x3ffb8d9db76947dd, + 0x3fe7339d081b9e72, 0x40027c7f0590ddb4, + 0x400547d59adaa62a, 0x4012b189ed1d5815, + 0xbfe00fc3553f9ce2, 0xbfe6979c87b4e3c8, + 0x3fba475918e9ea20, 0x3feb705b5e08392f, + 0x3fba47848004df78, 0xbfe1499416ff8d3a, + 0xbff22b9e8d5d2b49, 0x3ff7892e60962eb3, + 0xbfffc9fce2e347c6, 0xbff371e91aee53f9, + 0xbfb78d7ca3c89420, 0x3ffad696cc05a762, + 0x3fd664f12ae4c26c, 0xbff00498c893ec9b, + 0x3fbc4a1862ab9e20, 0x3fe1a070799f9143, + 0x3fe74199a65ba5c9, 0x401099b9a3103bce, + 0x3f61be77e420fd00, 0x3fd95ffaed6a3b6c, + 0xbfe14e55b0de2505, 0x3fd4e2efb6f8c61e, + 0x3fc1c08be6afadcc, 0x3ff9220dcc88b1bf, + 0xbff68c7867971724, 0x3fcec12c25ee65e0, + 0xbfeb7c00e5019200, 0x3feb755c51779e5a, + 0x4009b42abe7100f4, 0x3feea3f84ab2e033, + 0xbfec9b5f10868846, 0x40010480a46eb19b, + 0x3fdcb7d9128a3588, 0x3feaeb5075715526, + 0xbfe29901aa5031d3, 0x40080bb9567676b6, + 0x3fe5932b351a25af, 0xbff29116872b1140, + 0xbfecd2996ff7dbc4, 0xbfe930e3180e2e62, + 0xc00c0fe36bcf4518, 0x3ff00e917f0518f6, + 0xbfed1ccc1e269f72, 0xbffa37605cca6962, + 0xbfe5c87d477a818a, 0x3fe8e9a447aaebfa, + 0x3ff40a5f1b4155a0, 0x40036aa7bb25b500, + 0xbfe5ec7daa6a2c7f, 0x4002ca2408ca6f08, + 0xbffbb1455a5f200c, 0x3fc80a7e44175600, + 0x3ffd9289d5309827, 0x3ff9820801e21b45, + 0xbfb7c0ca4b1df710, 0xc006b9e4b9cd78a3, + 0x3febb4c0939e4d50, 0xbff2a51e6ad0becc, + 0xbff1e2efdcea9b8e, 0x3fd36edc6403d27c, + 0xc00f300446165fa8, 0x40018bb5fff5d0bc, + 0x3febce9b4a9ee22b, 0x3ff87f7f8e8b987a, + 0xbff76e5ac9f566d8, 0x3fa6660dd800c2b0, + 0x3fb83b1f9461c560, 0x3fd20c716b1ea206, + 0x3f908653202e4510, 0xc0103fd68be2329d, + 0x4003456e603e67a6, 0xc004ea6b08c3393c, + 0xc006c71a415607c2, 0xbffe9dcf8bbf078e, + 0xbfd3eff49d56aed8, 0x3ff2cb1b50da541b, + 0xbfb050c5aeb315ac, 0x3fe5dfe40879505a, + 0x40027a8cdf36e023, 0x400a665067e2d089, + 0xbff8629753565cdc, 0xc00dba1fcd91b0d9, + 0xbff35b60c6f1289f, 0x3fee65f4205c3b8b, + 0xbfd3b2454dda9fd8, 0x400418253b572dbc, + 0xbff5903b26ed9028, 0xbffe68f61299feea, + 0x3ff44102d6f5e242, 0xbfecb07db6973c8e, + 0xbff6ff29db720afb, 0xc007e10b5984df62, + 0x3fd1c3b6a2a55750, 0x3fefea48fb1ef772, + 0xbfdba865806f7e3a, 0xc003ff2d461de6ef, + 0x3ff53dd480f2b8b7, 0xbff79387025c3452, + 0x3ff4997069df1432, 0xbff359dd48ac5c2a, + 0x3fee47663c8c757d, 0x3fc1863b2ef4ec0c, + 0xbff15c68e26f4a2e, 0x3ff21d3aaccb5621, + 0x3fc6b2be474b4e58, 0xc00a526cce3d4dd8, + 0x4005d9ecae2b7592, 0x400350db0db29791, + 0x3fe6fe6a8771781a, 0x4002a78954d70131, + 0x3ff113b3b47a9df0, 0x3fd4f0e2217ef3b6, + 0xbfdace365656365c, 0xbfcc346c039433b0, + 0xbfda5b9c25662dec, 0x3ff4f4cdda60bb19, + 0xbfd0d0013abd416e, 0x3fd4768545a1d17c, + 0x4002b67562d76354, 0x3fe2a628fa91aac3, + 0x4002a27c133710ee, 0x3ff80ebd3e6b52fd, + 0x3fdc43ae2111da48, 0xbff0a1c53800d712, + 0xbfea78f2f7c71e79, 0x3fd65ddac46b9688, + 0xbfc3f72bad7dd9d0, 0x3fe90b3d2a61b51b, + 0x3fdb3e557d0e0203, 0x3fec84090a81f614, + 0x3ff1b67018624798, 0x3ffda25c8c063354, + 0xc008a9f8bf846f2a, 0xbff1cf4bfb33e514, + 0xc001ea20d43ad4a6, 0x3fe28a2b61bfdd3d, + 0x3fda61980ae7f8cc, 0xbfdddcc96a676238, + 0xbff04f5c2f632572, 0x3ffb470e640635b0, + 0xbff0aaeac2b628ce, 0xbff20b2689455104, + 0xbfbba431bd627ca0, 0xbfdc6febae30de0b, + 0x4009b3c12f5b99aa, 0x3f9100b0fbc090a0, + 0x400331c174cc8b66, 0x3ff993ca250fa39a, + 0x3ffeba1dc5dfc4ea, 0x3fd566a47c584ae0, + 0xbfe4783740ea950a, 0xbfd827c076a26f7e, + 0xbffc860a235b1446, 0x40023a7fd220d4ab, + 0xc0040ecfa6b87e04, 0x3ff21d50902a1892, + 0x3fff8c1f943083ca, 0x3fbd36e8cfeec430, + 0xbffb6acfbd93a97d, 0x3fef0f21b87c9420, + 0x3f843e90e74a7580, 0xc000494b01a5adae, + 0xc00233b80b51939a, 0x3ff7233ce1b218d0, + 0x3fef0de5f24b97d2, 0x3fa631e6febe28a0, + 0x400969a92feb8db0, 0xbffe3bb6b4097dc2, + 0xc000d3bba2c39d78, 0xbfbef712eb004fb0, + 0xbfe702054419d1c4, 0xc006b70103b5f100, + 0x40031bea8a3769c4, 0x4003703b46fdb21a, + 0x400d8aacacf44f51, 0xbff49bd3e5084067, + 0x3fe2ddf8e2d11dfc, 0x3fdc0fb22f29255e, + 0xbfc9f59253eb64ee, 0xc00530b6cf468c3c, + 0xc0092479a5bf508a, 0xbff235b2a01de254, + 0xbfe30fbf9492e458, 0xbff722842be93791, + 0xbff731d7d4ebf528, 0x4008174d3cd1c62d, + 0x3fffdc80b060d2ad, 0x3fe711637343f659, + 0x3fe153eba0037a83, 0x400018babeaf3b98, + 0xbf9947c909219460, 0x3ff1d970b74841a9, + 0xbff01c6452b4ab4b, 0x3ff2c69c0d0dc6ca, + 0xc00bac26f9b09373, 0xbfeb106b10b48458, + 0xbfe26bf9a51014c7, 0xbffc827dff0f98f5, + 0xc00ab3913fdf25c0, 0x3ffbbd0ea619fa40, + 0x3fe4b8ff69709d17, 0xbfe07d8e36b08b2a, + 0xbfebefbcb27edef7, 0xbff060e0589ece56, + 0xc001b508471c8e1b, 0xbfe4211d0aaaf5e2, + 0x3ff4ac400f891582, 0xbfeda80adf9a6b6e, + 0xbfe795a45cd5c865, 0x3ff0cb255100cf59, + 0x3fb2e79f8b416474, 0xbfc639b56081fcc0, + 0x3ff6eb6fa18fa032, 0xbff034fbd79aa1ae, + 0xc003682ec95ab80a, 0xbff5faed902aa318, + 0x3fe1ca541b563195, 0x3ff1f8552e1a4828, + 0x3fd13f86e2335f91, 0x3ff6ea6f84b7075e, + 0xbffb53c107d2cb1e, 0xbfc46e7c9dc369f4, + 0x4001954b287d5046, 0x3ffae2044478dda0, + 0x3fc3d85168396588, 0xc00acfabf7c9ee2a, + 0x3ff54f6effd3daf7, 0xbfebbee0d3eb63da, + 0xbf7e879a70ef5d80, 0x3fc6251e638ee5f8, + 0xbfe25b6dd1492a05, 0xbfeedef18c60d4a6, + 0x40005d6822bfa657, 0xbff67c698b000033, + 0x3ffd18119dd70564, 0x3ff004759c52dfe9, + 0x40049466ba5af7a1, 0x3ff9a7a8a0c29ae6, + 0xbff46fd1435f7364, 0xbffbe1a273ed00b5, + 0x3fe5cc7c56586e06, 0xbfa2797dbf752bf8, + 0xbfe3f74ac4931a14, 0xbfec4d6fb55a23e6, + 0x4005bd382400da63, 0x3fc95055cf47b514, + 0x40034742650cfb00, 0x3ff164d74a0e27c6, + 0x3fc050e3f1b86ce8, 0x3fdda5fcc1292640, + 0x3fe781cd630e05f2, 0xbfe177cac6fd0bed, + 0xc010763370ad3f4a, 0x3ffcea7b6f8f39c6, + 0x3fdc22520720d76e, 0x3ffea91ee96133f9, + 0x3fd4334f91ce855e, 0x3fe8c24d1ad44bcf, + 0x3fead39c29e953f7, 0x3feddb4debb5b2ca, + 0xbffb93600343472e, 0xbff40df009904518, + 0x3ff53daa58d37ad7, 0x3ff954425b740cd0, + 0x3ff66be9988e922e, 0xbfe7b94e9b8ebd8a, + 0xbfe6e19d8fbc4b9b, 0x3ff5a7fc379df159, + 0x3fe74beddb611e46, 0xbfde54e869898890, + 0xbff66c199c3b7cb8, 0xbfe363f4d545c800, + 0xc00c5eb65e8ebf9e, 0x3fe3ee3fe376e95c, + 0xc00084360cdf050a, 0xbfafb69dca4d7940, + 0x3fef878c1e341d62, 0x3fdbfec797e61fa6, + 0x3feb84b4e76e3dc1, 0xc002e2d1d5fd278e, + 0xbfeaf71877737e25, 0x40003558a4cb8af9, + 0x40105d063d16ba5b, 0xbff0a4be08fb0377, + 0x3ff80f86f91dd7e9, 0x3ff02c97215edcc8, + 0x3fea6a46b6a3ce3f, 0xbfda8ab325d3de2a, + 0x4001044b33c5a63c, 0x3fdb15a8b3bc5164, + 0x3ffacad36ff6fcf7, 0x3ffd36db5c6feb18, + 0x4007b37542b3f34a, 0x3fbcd19e45923540, + 0x3ff2d4a8ee54ae54, 0xbffaf7003b030a72, + 0xc0004c2a86e99ce9, 0xbfd928190f167a2a, + 0x400bd50f729e53b6, 0x3fd7f7c3a6d22eb4, + 0x3fe04d580b423078, 0xbfec698cea6dfe5f, + 0x3ff355e86e4539ba, 0xbff5aa45e3d8cc29, + 0xc004975ca6622099, 0x3ff02df2e8571c8a, + 0xbfe95b0b81b9afe2, 0x4006a279323d5f20, + 0x3fece9ed0bec0db4, 0x3fd878736351edbc, + 0xbfeb2f468fa90476, 0x3fd1acd60270528a, + 0x4002991bf9eeff78, 0xbff403b3bcd31323, + 0x3fe8e2a8543d538e, 0xbfdb38bd775bd4e6, + 0x3fca480d5ff7f0c0, 0xbffa402a7c520537, + 0xbf81074a90229340, 0x40013cac9b9aef94, + 0x3fd2e850f0a08396, 0xbff27bdcf2fdb238, + 0xc00e6817d0c5af70, 0xbfe85ab0df21022b, + 0x3fffe4acb0cc00a6, 0xbff87502321fe77f, + 0xbff7aa74fbb0eab6, 0xbffd11d8807f057b, + 0xbfe4077ae1cb4abc, 0x3feb05fd596e1b22, + 0x4007bf56668f7b0c, 0x3febce2514e84594, + 0x4005100cced39674, 0x4000929aed146cf8, + 0xbff65e02fab69707, 0xbfc97c83d27efc58, + 0xbfc597029645bbf0, 0x3ff5415682c73ef1, + 0x3fb1ca5384141c04, 0xbfee96f8a8e2404e, + 0xbff0f430e9fce5d3, 0x40036821de413026, + 0xbfece043295f964a, 0xbfeec7abdf4ca9e7, + 0x3ff73b3ed5a81b1e, 0x3ff2c72a4726e53d, + 0xbfc53cd3f65a47d8, 0xc008eac6ba095787, + 0xbffe61460f9caccf, 0x400001e14e075c6b, + 0xbfe7b0d365ac2a96, 0x3fe8c1ffabafd1fe, + 0x3ffd88557e43525c, 0x3fd0e8f193c29b70, + 0x3ff97972d9b5f654, 0x3fd34ddf2cd742c4, + 0xc00e2378d764c264, 0xbff2b1a9661d057e, + 0x3fec63c9669f0f9c, 0xbfe5110b9b9caef1, + 0xbfc0ade45f6d59be, 0xbfe7338a1f1b6537, + 0x3fd5417bd390ef0f, 0xbff1878b7333516b, + 0xbffed7159ba8912c, 0x3fe1f4ab5254c806, + 0x3ff9e060a77b3006, 0xbff83ef32b04b9c6, + 0xbfc0c6a47836e3dc, 0xbfe3b4372357f3ce, + 0xbfd3274a2f72f274, 0x3ffb238ce5937ff9, + 0x40073e8fcc88903f, 0x4003d9ba1e6608ba, + 0xbfcccd5645de57c8, 0x400558dc51c08a54, + 0xc005de0197d9264c, 0x3ff9eb2d181345ab, + 0x3feb767957afd5e7, 0x3fe4e93a08c9e421, + 0x3fd7ff81cbc4c0c2, 0xbff1c6395527ae3e, + 0xbff3dfeed4433390, 0x4008361f215e0ab0, + 0x3fe0ae054466d25a, 0x3ffb0443c8986e27, + 0x4002fb75f9ae62a6, 0xbffd52f3e27f8103, + 0x3fef4ad0e7d6488c, 0xbffce885a23d86a1, + 0x3ff8926685459150, 0x3fd09f92a28f14cc, + 0xbffac5bfa88f1422, 0x3ff906d94b24bebe, + 0xbff6656846d7c133, 0xbfe60540ca584b34, + 0xbff7b0774032aeda, 0xbff0434386456e9b, + 0xbffea09149c4f030, 0xbfb5c58b75a9c970, + 0xbff28911550ce196, 0xbfe89dc38c2c56e5, + 0xbffdf43e4f983648, 0x3ffbe129c6a87193, + 0x3fdfecda51f42e72, 0x4001fd1038c05054, + 0xbffb08e705ceefa1, 0x3fcf10c2700ee942, + 0xbffeab04feb2df50, 0xbffc9d6a721b343c, + 0x3fcf6a646be35c3a, 0x3ffbd9991886b1f8, + 0xc000bb1cdeaa796e, 0x3ff803322c43b0b2, + 0x3fe8816167d5a9a0, 0xbfc9481014acad98, + 0xbfee2ed8011ef50a, 0xbfe00a5b8673ce3a, + 0x3fea185e08dd345b, 0x400545ad137c22ca, + 0xbff083c0b355f9a3, 0x3fbfc9ea57013ba0, + 0xc0025655c7a1e357, 0x3fe1b617bd5377e2, + 0x3ff1b80fefdd4e48, 0x400257e27bba8e16, + 0xbffd7cd63b4c2004, 0xc003860d86ff6f7c, + 0xbfe4b8af995ab78e, 0xbfcd4e76fad8f4f0, + 0xbff1b11211b0905f, 0x40045ad9e2ca796a, + 0xbfd21fd5b87e71de, 0x40013e10380048ee, + 0xc00aa94cb0f4696c, 0x3fa69c1a8b0671e0, + 0xc000914e81b11df3, 0x3feb0d9ddec666bf, + 0x4000283afcf53f9e, 0xbfec4d80eb673e1f, + 0x3fe7080a30cb6b69, 0xbfe15507a1f91720, + 0xbfd88afcffb2616c, 0xbfeca29c546e10e4, + 0x3ff7d561c27d7326, 0x3fd7545721606bce, + 0xbff3d811fcb04a49, 0xbff36c340fbeba64, + 0xbff1a1e28740ecd0, 0x3fcbd0c5655db7b4, + 0xbfe9f9aa2de8b438, 0xc0000c2881f83cf4, + 0xbff9bedbb9c1d0dc, 0xbfede30030a6c6c2, + 0x40064d56197722e5, 0xbfd573b677681a6b, + 0x3ffbbbf7aa4bac4c, 0xc003a6a3f92adcaf, + 0xbfd6b06c286037be, 0x400e24403b10f645, + 0x3fe093caacc08688, 0x3fe80fd779fcc57f, + 0x4001ec800ee668b4, 0xbff207cb3fee4747, + 0x3f9b06007eb3c000, 0x3feae5b5ab5c24a4, + 0xbfd19d7fb36d439c, 0x3ffd59ee6c5682de, + 0x3fffe1e2f222cefc, 0xbff314d7186baf20, + 0x3fe9c4f2a8184a2c, 0x3ff2cbff34faf973, + 0x3fe9c368274b5af2, 0x400089b67358a2b8, + 0xbffff3fe04f0193e, 0x3fdee72f3bc989ae, + 0x3ffac2793dc27000, 0xbff13b3c8f76425d, + 0xbfdfad715674f71e, 0xbfef3acfd47659ce, + 0xbfd7e16ad53a4a59, 0x3febf3fcbc71ffcd, + 0xc001d0ef1a5db66e, 0x400090ebd7b1122f, + 0xbfe068308d187b1c, 0xc009abea22ae26c5, + 0x3ff9877c2e838339, 0xbfb562a1cec25bcc, + 0xbfd0d0582127f8ea, 0x3ffed3643db20d8a, + 0xbfda3e3e84f9d09d, 0x3ffbacc0adf0da26, + 0x3fdc25727e75bef8, 0xc009fe3c70745886, + 0x3fd5f902f57bd726, 0xbfd661f548d00693, + 0x3febae3625fe051c, 0xbffdb7ef3c4d9c1e, + 0xbfd3488ca25ca274, 0x3fad305fdad36780, + 0x3fd167a7834a1e02, 0xbffa527a6ceaa981, + 0x3fe0616d3ae2abde, 0xc00544a3682959b8, + 0x3fe94746953c2860, 0x3fc799ba90366b34, + 0x3fe279db8ae62a12, 0xbfdf45b61d732f88, + 0xbfeebaedc23175e6, 0x3fd16edc2d825eb9, + 0x3feec1435d1ccede, 0xbfeb058686e255d8, + 0xbfe8507df5fda8f4, 0xbff6f6e5ba7b8f82, + 0xc0086015553e5306, 0x3fd75e7638aefbc6, + 0xbfe5d2e840137cbd, 0xbff3f2363813d668, + 0x3fb2628bee1ff3e0, 0xbf8fef05abef8000, + 0xbfc27a54ce858000, 0x3ff9d39f8fa08c6c, + 0x400b04a1a2a9bf22, 0xc0046fb931796cec, + 0xbff7b5e93c060206, 0xbffb9ce70f9d8cf1, + 0x3ff77a94900b82ea, 0x3fe5ffc1c28e64d5, + 0x3ff00ab019a64a14, 0x3fd2b20471b4057e, + 0xbff82bb6f5a6d08e, 0x3fe39ceb62749a2e, + 0xbff992d392bc9244, 0xc002c637cb9d43ee, + 0xbff26da928d552f3, 0x401525b7fa15ee1c, + 0x3ff5500aa013e5ad, 0xbffd15382d0fc6cf, + 0x3fec983ba7d7aaaf, 0x3fb7b987dfd98a90, + 0x4004395e53cdfd1a, 0xbffb29f43e2c6cb5, + 0xbfb7b8740b831458, 0xbfff8c37509bde5e, + 0xbfed7eaefec038c5, 0xc00fd04f56247ac0, + 0xbfda0f7f211449c8, 0xbff2b6160db079e7, + 0x3fe2f34dd8ad3eef, 0x40866a81da3e8fc8, + 0xc0091de01dfa33a3, 0xbff7bb306b81f158, + 0x3fd11714176cf28c, 0x4006fc8ef2ced11e, + 0x3fe089dc8711dc5a, 0x40015f40a768db3b, + 0x3ffa7f9df13254e6, 0x3ff0b9597cb4b389, + 0xbfe0a32f61d05678, 0x3ff743f92e10783e, + 0xbfe553d649101980, 0x40021eb4f21073f6, + 0x3fb2e8dd85355930, 0xc00670e98ac571f4, + 0x3fc75c50169e890c, 0xc00f803188217e48, + 0x3ffa871140f356bc, 0xbffb9faa02887ecb, + 0xbfd6f7a6d86244d8, 0xbff127e6e241e156, + 0xbff2424f80073ade, 0xbff764e284ab4321, + 0xbfd03c9de1801ef0, 0xbfe207199d0e2b84, + 0x40040176b560b0d0, 0x3fed8314d7f1cf43, + 0x3fd4618f07b3113b, 0x400892136f2d6f29, + 0xbfb9ca58790b7460, 0xbfdd4980b8c84818, + 0xbfe27bc568fc3d82, 0x3fb0677f592337e8, + 0x3ff2e6a5ba650190, 0x3ff170332e37c102, + 0x3fed9c1133384073, 0xbf900d2d78b074a0, + 0x3ff20146c873c1f7, 0x3ff5d5c84db04667, + 0x3ffc4e9c27e8151c, 0x3fe5b5ea1c17e387, + 0x4000453d29ca98ca, 0x3ff90903ad98b73e, + 0x3ffae7639295b34b, 0xbff6efc874fc2611, + 0x3fe521386d455864, 0x3ff1551e66d70e5c, + 0x3ff459ede4cb8335, 0x3fd54186141f1ee4, + 0x3fd17d3cfb9476be, 0xc0053dec56bf0f95, + 0xbff0831a5a71876e, 0xbff3a774eea6a5ad, + 0xc000b36e51a609d4, 0xbff543c541d50453, + 0xbffce98795748813, 0x3ff82dbb991bdb4c, + 0xbff01b4d4b88a35b, 0xbfd75c4f633aadba, + 0x3febce138bd9749c, 0x3fff25c99cee7719, + 0xbffa6fa6af9d3670, 0x3ff68fffde5cc63a, + 0xc00336081c148b46, 0xbff31a0f1107a886, + 0xbfe722da2d614ae3, 0xc004a0d956ed2d68, + 0xbffa636a2f503902, 0x3fcebaa25a8e6f28, + 0x3fd366e0e9322d8e, 0x3fd89ba21cfc7760, + 0x3ff0747bdac1c49d, 0xbff56a5dd608dcc6, + 0x3ff60b2a8d362b75, 0xbfe93e27c4f617ef, + 0xbfecb031c42755cf, 0x3fa38c29bb373a60, + 0x3fe7c279bc71e442, 0xbff7b7f1cc5932d5, + 0x3fe370ea43073a25, 0xbfd78b15810258cf, + 0x3fea9ab8b8e4be3a, 0x3fcb2127411ada70, + 0x4001d1dace816017, 0x40052220ec90c112, + 0xc004e473f3ebce3e, 0x3ff17875e95dd057, + 0x400428bac1a5e548, 0xbfffabedcde96cc0, + 0xc0026af7a30c0802, 0x3fdaab594c5be3d4, + 0x3ffd570df0f831e6, 0xbfec457cd79b405b, + 0xbfa465072c03d100, 0xbfe5f0bb44b3a89e, + 0xbfcfdeb6c152f418, 0xbfe9d456cce11d51, + 0xbfd5f38b454be2a2, 0x3ffea65f158ba85f, + 0x400208c76072a55a, 0xbffd8be1c4ce78a0, + 0x3fe98e4c6a320dba, 0x3feab6533cd12476, + 0x400444b1f395d39c, 0x3ffc59d73f61cb2c, + 0xc00b52b934c697ea, 0xbfb252f63e397130, + 0xc003d89a5006a5f1, 0xbfe162909e642d88, + 0xbffbd9bd032d41ba, 0xbff90ab061e01463, + 0x3feb60b8f2a4d0e0, 0xc0030c45c4bcac47, + 0x3fda2be673db6b3e, 0xbff74dc0e668a770, + 0x40035e03efe4ce50, 0xc0079a486f558322, + 0x3fff2de41bf864ac, 0x4001ec35341be59a, + 0xbfef4ccb10b82620, 0xbffb3b2b04febb94, + 0x4000cead697c6568, 0x3ff79e4ef4bd012e, + 0x3f826ee76dfe5a80, 0x3fb856f3feb3ad84, + 0xbffdf82b2c3aebde, 0x3ff4ca38a76064be, + 0xbff7093122f3077c, 0xbfe7b16ac5ff2bd0, + 0xbfd360f5bd89ac2c, 0x3ffea730383a2b2a, + 0xbff54f9bdf13247d, 0x3ff483bcdae295bc, + 0xbfd100ee4b3ff238, 0x3ffac54d7547fa29, + 0xbfc03a4095ccb27e, 0xbff121701af8f5b4, + 0xbffce258cde3deb2, 0x4004613a57c98334, + 0x3fd04914e47bf72c, 0xc0024b92c7d704d5, + 0xbfd95d229c69ca25, 0x3fda5edbd048f6ed, + 0xbff6e14040b45f0e, 0x4009fd166d1fd9ca, + 0xbfe4e8368521081c, 0xbff77b7c15cf4160, + 0xbfeb0492dd9964b2, 0x3ff72f5e3e7a1d5c, + 0x3fd9805c0d9d0ab4, 0x3fdc4a10541a49f5, + 0xbff597d0213794af, 0x3fe291ab583585c4, + 0xbfbdabd762c9a64c, 0x3fe07dad491fd8b2, + 0xbfed1b338bd53dd7, 0x3ff04de2cf877274, + 0x3fee99404e98ad78, 0xbfce44c74a7cc6f8, + 0x3fec598a9f1313d6, 0xbfe7e97eac852a8a, + 0x3ff9f73c3f9a9932, 0x3fe96a05941b3622, + 0xbfc9734bce639a4e, 0x3ff1a2b71fb772b3, + 0xbfe01be5e70d4b7a, 0xbfe3ebb884f5ffae, + 0x40014ddd68ffa4b6, 0xbfe511f7b35a59c4, + 0xc006fb4c9a1c1314, 0x3fe036fa5c65e4e9, + 0x3ff0d612582ad86b, 0x3fe3b769ed7abb41, + 0x3ff299898ff40dd8, 0xc0022f7751443890, + 0x3ff511cfa3d0bedc, 0xc00d463837e1b8ce, + 0x3fed0e3b5e386018, 0x400496faf7acbca1, + 0xc004beb993d728aa, 0xc011808f11ab8e44, + 0x4002cdf6dde75c90, 0xbfdd48adec68cfc4, + 0xbfbee93de0151a80, 0x3ffa6622417c71ba, + 0x3fcffc860dee568d, 0x3fe7637e8a80161d, + 0x3fdb1204bab79b9d, 0x3f9dd5efb0833128, + 0x400db3c5fbf388ee, 0x3fef87206963672a, + 0x3ff831c31abac650, 0xbfbf789c78e769a0, + 0xbfe1767fc2ac8d5d, 0xbfedecba104f2434, + 0xc0049cb1a315620a, 0xc0000c4b495c4553, + 0x3fb8e0428cd23df0, 0xbff0e0cb9b6fdc2b, + 0xc00496aa4b318e22, 0xbfebbf13f9e52d2d, + 0x3fe5e25b3318c97f, 0xbff0ae49b30fa288, + 0x3fea559f124898c2, 0x4000eaa933e55626, + 0xbfe59aa8aebc37c2, 0x3ff20cc735a0ed0e, + 0xbfd802a4ece0f850, 0x3fe9a3876369090e, + 0xbfd7b4d7e8d3b92c, 0xbfba2ecbe7bf6fec, + 0xbff7aa9873a74e3b, 0x40075e1625ebad9e, + 0x3fee4434b64e0758, 0xbff19589f5a9e03a, + 0xbff02958918d3a6c, 0xbfe3c47a88482beb, + 0xbfef4b01e040b3ae, 0x3fa0f96a80a41418, + 0xbfea1e00ef21e857, 0x3ffbb58d00088c79, + 0xc004fbc6e749d30b, 0x3ff0f43e722753d2, + 0x3fd6a35574a1b7ec, 0xbfe779fa6a9da790, + 0xbff866a7900c46d8, 0x400a8891ca8b701a, + 0xc0073a20628f50de, 0x3ff7a1c6c948cf0e, + 0xbff32544d5d2f8c7, 0xc00c08fa8a98b7f4, + 0xbff9608f40cb4d80, 0x3ff4b3cdaa63eb1a, + 0xbfffc441a94ea13a, 0xbff32944c3dd7664, + 0x3fe0e15ec09322a2, 0x400b3f87dd5640d4, + 0xbfeb67b7db6cd4bf, 0x3ffd429a2aa808c4, + 0x4002c8934acae5a9, 0xc003680d671efa66, + 0x3ff45066803a9dc0, 0x3fd3b8af3b3c4c8c, + 0xbfe59a050170531a, 0x3fd8d24c4967e4ae, + 0x3fdf0cf209c00a98, 0xbff25f6129e7a2a5, + 0x3f63a73eb345b100, 0x3feba91f994a614c, + 0x3fff1eb45cd9848e, 0x3fd6942e7e47c456, + 0xbffe1f090bce66ec, 0xbfe4b2dcacf7643f, + 0x3ffd91adfd596bf6, 0xbff0e0ee4262da1b, + 0x3fb0df68cff93610, 0xbfe547cfbc64e892, + 0xbfee4d0911afdf5a, 0x3fef9fba5186f673, + 0x3ff92b2cbbba8a09, 0x3fe2d6949296dff0, + 0xbfdb21b6d9cf78a8, 0xbfe139b525195aa8, + 0x3ff5aa35bbdae038, 0x40097ae2dba0cbee, + 0x3fe3cb4da5052ae9, 0x4002ddf8bbda165d, + 0x400419536a4ae360, 0x3fa19927e7d4ac40, + 0x3fd09c7597b5b11a, 0x3fe077742ad1f8ec, + 0x4005368eb1ef8663, 0xc006938e3d88aa45, + 0xbff733467cc122da, 0x40015fec12bdcecc, + 0xbff32f4ccd31095b, 0xbff98db7de865fb8, + 0xbfb7075c09c7a878, 0x4009f07f8d3406f6, + 0x3fd0e8e188b5878a, 0x3fbd599818e8490c, + 0xbff7545a44e26baa, 0x3fd5b944b225d460, + 0x3fe77bfff5a5cf89, 0x4000f207df0d133b, + 0xbfe8ad26edf41aa1, 0xbfd5658bc4609b98, + 0xbfec1bb85f0d131b, 0x3ff3a01e2d77bc38, + 0xbff19a96618a0fd8, 0xbfcfcc9ca0255c08, + 0xbff1aaa9cb56e30c, 0xbfed3496658c4918, + 0x40013924e8938342, 0xbfe5052afd74c1c2, + 0x3ff7131220ae26c3, 0x3fbf192c7be2db28, + 0xbfff57503fd447c0, 0x3fc68d1adcafa829, + 0x3ff072a6b4c967ec, 0x4005a21bcb6ba7f0, + 0xbfc9581bb3633dc2, 0x3fee9a60dc8c16fc, + 0x3fc5f4749f54df20, 0xbff2e174265ecb1e, + 0x3ffb26ad6750829f, 0xbfe13342a3e7b2c2, + 0xc0044fc1b3e04840, 0x4010138617b9c570, + 0xc00810ec9a799551, 0x4011e0a83f838b98, + 0x3ff4bacb6f2dfd56, 0x3ff2374945271d66, + 0xbfda76b243d55450, 0xbfe60a84f9c90678, + 0xbfe50264185a0863, 0xbfd02778f81509d6, + 0xbfdb162e2d3d82be, 0x400b75f2c4cd4d82, + 0x3fdd8d39a7e440d8, 0x4000403a715c52d4, + 0x3fdc004aff3c44b8, 0x400fe9a133a12ef4, + 0x3ffb5f9b171c0743, 0x3ff881731b72c19a, + 0xbff9f5308e0728fa, 0x3fe6b73c7986d5bc, + 0xbfe04d15d4ea5da4, 0xc0011e9466396082, + 0x4002fa9fc9fbe392, 0xc008265b02e65e70, + 0xbff0fdf4f4afc4a2, 0xbfda89843d837937, + 0x3ff0a1ea53bab26d, 0x3feb6f6733926b92, + 0x3fefa152e86c6055, 0xbfedd0b5aa97f40f, + 0x3fce4e98e5dea3d6, 0x3ff613c3cadaf5af, + 0xbfe5aebc6e24e7df, 0xbff68d7f1ff53251, + 0x400c5d3082208b6a, 0x3fd6d0ff0e8308e2, + 0xc011a774fe7efd9f, 0xbfed617f81832b04, + 0xc00ef8f277d25cec, 0x3ffa33eaf6e95f43, + 0xbfe3334fc147417c, 0x401347d68e7e79f6, + 0x3fb83b2bf7fe5ef0, 0xbfde633e21158f91, + 0xbfea9b8715361e5c, 0x3fe7314fc52ea104, + 0xc0019d43561702f9, 0x3fead18d98ea0a12, + 0xbfea634de58abf75, 0xbfd9b548b8c4bb7d, + 0x3fb3f6184498b05c, 0xbfb3f3ff1407a4d8, + 0x3fe390a9fc52a2e1, 0xc0090ce1e5646850, + 0xbffcd8b4d1d5a0d0, 0x400b49581abad33a, + 0xbff6d7b0224bdde2, 0x4002adbda8bd13aa, + 0xbfeb5a35b5927c49, 0xbff2e9f546521a47, + 0x3fdacdb45bae28b6, 0xbfbde32cdf4ba870, + 0xbfe03fbadca97c3c, 0x400a38d66ca7746e, + 0x4003a04aee7de2c2, 0xc0001da1c8519cda, + 0xbfe051789ec2f77e, 0x3fd7bba36ac3bbcb, + 0x3fd2b0dd3d8bf98a, 0xbfdf57a4710fe3b4, + 0x3fdfcea50cda3be6, 0x3fde01755502b84e, + 0xbfdecfb559384fcc, 0x40056ea79afabcf1, + 0xbff45cca6cbf5fb5, 0xbfb399c42f64b37c, + 0x3fe1aa98f3b335b2, 0xbffb494d83badac4, + 0xc01025f8557dac0a, 0xc000454103ef561a, + 0xbffd902b93f8b1ee, 0xc00a2bc8e4e12bb0, + 0x3ff9bac8034b3c12, 0xbfec2a74762d1e1c, + 0x3ff1942230cd6fa5, 0xbfe947b791c04e16, + 0xc0105ccf03c74704, 0xbfc651bd4f8e1c08, + 0xbfffe0ca2c29ef32, 0x3fe1088b97033846, + 0x4000330aeee71c5e, 0xbff6a719998e5493, + 0xbff3c6c35d620dab, 0xbfba1e6d5d61fe80, + 0xbffd37b5c3b5956a, 0x3fc1a794489998f8, + 0xbfde9c53cf0fed7e, 0x3fe5a3698058137a, + 0x3ff179cb36f720b2, 0x3fe635c6a03fbf0f, + 0x3fcf17bbf0845794, 0xc00097a37ae990c6, + 0x3fd541ff78b66899, 0x3fc421231d6157a0, + 0x4005e5d319a4bc26, 0xc004e20ce587161a, + 0xc002bdf8c23cc363, 0xbfd8f8469ca7ab7f, + 0xc0002f7fa880b51d, 0x3ffd073a33e909d3, + 0xc00a0d2a692b00f4, 0xbffc8a3ef65bbf08, + 0x3ffc0cde4959b2ad, 0x400e146cf8358024, + 0x3fe2f621f945b70a, 0xc00509cdd48a0add, + 0x40014125fb7b0da4, 0x3ff504fcf72c3c23, + 0x3ff55be3d34d57bb, 0xc001328fa0bed224, + 0xc00196d4449a425e, 0x400acda988bf2629, + 0x3ff2ea5c3bf28b24, 0x3ff48a73c0cca0d4, + 0xbfe93ce099e735bc, 0xbfedad15c2a9a36e, + 0x3fd1203c25a7c965, 0xbfeb5f2204fa5bd8, + 0x3fe580ec4b99f96c, 0xbfcbc234a8b1f520, + 0x3ff3844203255be0, 0x3fc5483cfebc5a44, + 0x3fe95d1bdcbeae4a, 0x3fc74189127a383c, + 0x3fddf140c00a6d81, 0x4008afe96c362012, + 0x3ff6eafeb45f7c98, 0xbfeda87c81162262, + 0x3fc7788fbffb3524, 0xbffc324e33a9ebde, + 0xbff7747e82f5f4ec, 0xc013a35a95fc7946, + 0x3fc4c18fdc3bdf0c, 0x3fe9ccf0d01f1414, + 0x3fd771b88506175f, 0x3ffd2466adfc5f52, + 0xbfd354a5eab974b2, 0xbfea6fc6a98166ca, + 0xbff72ab08314a78f, 0x3fdf79a404482ac0, + 0x3fcbaa64f6bc3f20, 0x3fe41d92a1f7f1c4, + 0xbff962e0089fbc22, 0xbffdf8a6d441facc, + 0xbfcd27f5cef4e65c, 0xbfaf8c420e484bb0, + 0xbfee1cdf8c96091d, 0xbffc23cc6c66671a, + 0x3fe663ec70706c90, 0x3fea2839fef36f47, + 0xc00606a2cb3df32a, 0x3fc3828f88aa0864, + 0x400dc9fa6e22d7de, 0x3fef2fab51736086, + 0x40044c60acefc074, 0x3fd62bdf6678412a, + 0x4008e5f3aecfeb46, 0xc00462a8a84ce40e, + 0xbfec090464d62ebb, 0x3ff90742e5a79037, + 0xbffa1b5191af528a, 0x3ffeb8d9ed12754e, + 0x3fb85284c70bf620, 0xc00507651b34a2e8, + 0xbfeef5573c6f3868, 0xbfce7cb668774474, + 0xbfea42828cd4d7e6, 0x3ff646c5328beb97, + 0x3fefe43c45df3944, 0xbfe0d91fc3e1bb7f, + 0x3fdf515fa16afc35, 0xbff64a6026888d6e, + 0x3fda05babd70ec14, 0x3ff108ae1613f102, + 0x3fe48800e9b984fa, 0xbfec6b2929b6515c, + 0xbffd034d7d5b7995, 0x4003c3adbccc07f0, + 0x3fd67c8a8f7c8e28, 0xbf8d858074a11a00, + 0xbfd14d0b0d057ac6, 0x40008cfd4c8fd3f9, + 0x4005a1c8e713fd93, 0x3fdec61c2bec4668, + 0x3ff86fa651c2d910, 0x3ffbad39fb03d091, + 0xbfd349226edce827, 0x3fd8e9ae13fdbe7e, + 0xbfee33b9a7f286dc, 0x3fea261c54e2c14e, + 0x3fe4103f98478e24, 0x3fd7abb315a7b76c, + 0xbff57ed5eb3783f8, 0xc0090b2d821d0099 }; static const uint64_t ref_cfft_noisy_2048[4096] = { - 0x3fab0667ea63d9a0, 0x0, - 0x3fd1a1e3e4be0ff5, 0x3fb71ddb3c79e188, - 0xbfefaa3877d737da, 0x3fe598fc4ba3c24a, - 0xbfe7e6857b0d9963, 0xbfe87cb9b7ca31c6, - 0xbfd73590c05d331c, 0x400427513e5ef838, - 0xc009fc5bc8cb6ed3, 0x3fe8f5336e6e1d5a, - 0x3feaab07751eec7a, 0x3fd533df19f6eff5, - 0xc0020ad2d063117c, 0xbfe7f44595a35676, - 0x3fe629e38f190220, 0x3fef0969585a66ca, - 0x3ffad0eda14837a7, 0x3fdf7e92fc4015c6, - 0x400613c19ee02914, 0xc00f21c030f929f6, - 0x3ff390abe9290e78, 0x400981bc36445060, - 0xbfeb9ae4edb826d1, 0x3fab136a46ab7180, - 0xbfe3239f4201afa8, 0x3ff1de57ffa14496, - 0x3fa1c007ccc26030, 0xbff5b2f5e5069eec, - 0x3fd5b6855050a801, 0xbffbb51bff7732f6, - 0xbfab455502c69240, 0x400bfa74f904fbd1, - 0xbff8f935ff080dc3, 0xbff74a3124482daf, - 0xbfc734a6f14a3648, 0xc005ec1c346671fa, - 0x3fe70605098af7be, 0x3ff4d87e13924b0a, - 0xbfffb134ac8a1b46, 0xc002c348637c2310, - 0x4002546c566895c2, 0x4003a095ec899fe4, - 0xc004362302515ed4, 0xbfe2b343ca7af20a, - 0x3ff5cbec53ded73a, 0x3ff405d45594aa6d, - 0xc005fd2c3157892d, 0xbff5d7e8a1063174, - 0x3fe3f63a38e3ad48, 0xbfd25903e6ea1fb6, - 0x3ffccdb481f780d0, 0x3ff1c88fcb293802, - 0xbfd224bee7df1ce7, 0xbfb5fe8bcfaba704, - 0x3fc19810c1fa7fe8, 0xbffb9e93deb2cac4, - 0x3fedec5758a295e3, 0x3ffe1853295d655a, - 0x3fad9b49a8e91290, 0x3fea247433657a76, - 0x3febd35ab23f65ce, 0xbfe9f691be2032ea, - 0x3fe839cec18adc18, 0xbff54e236f330b98, - 0x3ff7c0a0b343941f, 0xc002ad9721dc769c, - 0xc002937a3e89e99e, 0xbff5a5bbb07b0030, - 0xbfdcd4951085cb62, 0x3fe79dd387dc3848, - 0x3fdaff8b21232b38, 0x3feafe69312f076a, - 0x3fc0e4cf0f1a4d8c, 0x4003f260cdc08a04, - 0x3ffb332a33646f9b, 0x3fd43efda14d9a40, - 0x3f80a43ac76c8d80, 0x3fda7d94e91edcd4, - 0x400309d0ae39c9a4, 0xbfe668249462f128, - 0xc0011af4c7efde74, 0x3fec7cbf1c22dc3e, - 0x3fd2a2c8fabc3166, 0xbff6bcb1cbf737f4, - 0x3ff3007f4c6392ca, 0xbfe8ee44567e4638, - 0xbfe4abec04b9acd4, 0x3feb21fd0c5ecfa6, - 0xbfa74d051fa420d0, 0xbffab532c9e3e56a, - 0x3ff07aac3a8ec396, 0x400bdc0fa9e02c7b, - 0xbfeb44e313591f1e, 0x3fd7ba5ef648b170, - 0xbffef7746bf16471, 0x3fe70587f0a08a47, - 0x3fee62e257314cf2, 0x3fa9a029bbf36a50, - 0x3fcfb7c54e2ef753, 0x3ff9d076e7aedaa6, - 0xbfde97b6a990c067, 0x3fb301d1d1321a20, - 0x3fe78a4592911e15, 0xbfd04a7f93baac0d, - 0x3fb221246b2dc3c4, 0xbfe6637991ff0eb4, - 0xbfaa056c684910a0, 0x3ff7997c377567d4, - 0xbffd1336570d1f6f, 0xbff117457a47b937, - 0xbffcf628e198719b, 0x3ff87d89bdffbbca, - 0x3ff63b1fb9ccf31e, 0x3ff3459bf4ab3099, - 0xbff355e0c2ca12fb, 0xbfee95b0e50bc52e, - 0x3ffe1c205496763e, 0xbff16241400ce109, - 0x3ff13430695c3773, 0xbff3532b30c70ee5, - 0x400602740152b75b, 0xbfda44d68ac65d7f, - 0xbfeb5506558e6ed4, 0x3ffa2095cf4bb61c, - 0xbff64e5dc707944c, 0xbfdc0fa57dc25912, - 0xbfe6dc4a5ab95df0, 0xbffca0d8a9b193ff, - 0x3fed079149ef8a3a, 0xbfd1eb64a0b5842a, - 0x3fef72b9e48c852a, 0x3ff6fb233462ca2a, - 0x3ffcf52564179636, 0xbfee9dfb6929417e, - 0xbfebf46a28ba0fe4, 0x3ffa793ff22a8c36, - 0x3ffc2daea60678a4, 0x3f9d1daf4fac3860, - 0x3fa6868705e5a590, 0x400647ee3b8e0766, - 0x3fc21738b5b8a71c, 0xbffd4320edc71cb8, - 0x400210c83f1f62e0, 0x3f93753362cf1200, - 0xbfdb1979d829d552, 0x3fe5a640e34360e4, - 0x3fdb8c2f79db80bc, 0x3ffcb23b538a05fe, - 0x3ff0053a3eeb0d91, 0x3fff7feaf5e0d186, - 0xbfeca4cf15ba45ff, 0xbfad18d529a02cc0, - 0xbfeea7a01f647976, 0xc0026710d01462a2, - 0x3fe1ea3621bb7d47, 0x3feb141ba4b93555, - 0xbfeb4823cf3179bc, 0x3ff0e7ad8ab45e40, - 0x3ff0afcc77d0d398, 0xbfd91663d9997802, - 0xbfcafe088bbea8ef, 0x3fa896c3b66364a8, - 0xbff25cb3d1c7872a, 0xbff470b0c1f2a236, - 0xc011cdae691ee316, 0xbffebd7e503bf00c, - 0xbfe0241ba149f48a, 0x3ff3bf68270034a2, - 0xbff3a974ee2f6a51, 0xbfccd4ff2f86d7e4, - 0xbfbfe6416ead3388, 0x3ff5a513bab042d1, - 0xbfb28cc0d36a29fc, 0x3fc10e55202a5fa0, - 0xbfe76630bd1d4a2a, 0x3ff88c29d4e63e4f, - 0x40045c2c0cd00bb8, 0xbfe16fdf624a3013, - 0x400a087f923deb1e, 0xc0058e70c237bd94, - 0xc00505f301ee5af0, 0x3fe8e45dfd6a9883, - 0xbfb6f292b765595c, 0xbfe3ba3ad00a68a8, - 0xbffb9ff4e88027b5, 0x3fd4ca1c0fbaa95c, - 0xbfce9f6b2c0437c6, 0xbff62e39e342ce3e, - 0xbfdc98032bf4dea2, 0x3fd20d3fafe1042c, - 0xc00aca0d80570f3d, 0xc008bb7050a541a0, - 0x3fda0e27b9ee5688, 0x3fe9bab37b7feb5b, - 0x3fe728042b64fb97, 0xbff5fefab832dd44, - 0x3fc3bff64bdb62f0, 0x3ffa510fc8a12923, - 0x3fd40368d4dfd970, 0xbfc3795cdfec1ae0, - 0xbffe7108edcab12b, 0xbfca912df09b4800, - 0xc0057cb01d728d01, 0xbfe44c364cfab8e6, - 0xc0000a534a180190, 0x3ff033ddd6289512, - 0xbfd4851bdf2ec2cc, 0xbff88fd56c029602, - 0x3fe71c12a56822cb, 0x3ff45a6169c45d5e, - 0xbff63bc625d56448, 0x3ff0c5319c16f3c1, - 0xc00e4b194e5008f9, 0xc004e247b6473136, - 0xbff01c598c7faae2, 0xbff29fbc40c7521c, - 0xbfde4a10adb0bb74, 0x3fef2065f7efd61b, - 0x3ffdf25ed88f7ea5, 0x3ffb165402eb70ec, - 0xc003461de256e343, 0xbfcdf031078e1da8, - 0xc004f15568c73a2a, 0x3fee51fb363c7aff, - 0x3fc89f0bf231f1a8, 0xbff289403170e94e, - 0x3fec613988b5e029, 0xbffaff23c0d6c288, - 0xbfe9a102c9001bf2, 0xc00401d7c6f2ab37, - 0xbff3f5cd6c33a784, 0x3ff4f1bc7b399360, - 0xbfc70dc336a75462, 0xbfe8721a9745bf26, - 0xbfe5567d02d12794, 0xc00b94dbdb6a8302, - 0x3fd1ce394bf5845c, 0xbfeb28f40930ac79, - 0xc001c081644b467a, 0xbff0bded14d0ba14, - 0xc00245070f87526b, 0x3ffee30fbb8d45a9, - 0x4009e867dc593320, 0x3fc27892d70137c0, - 0xc0001d38534a32b6, 0x3ff1a53669dd47ba, - 0xc004495aa3e38364, 0x3fcd812a15d35c68, - 0xbfeb1d3b2ace8836, 0x3ffcacf0c2045b3a, - 0x3ff61cf1a60228d2, 0x400e8ac97c1b9d87, - 0x3ff0b8494dda2544, 0x3fd87d6d817b9db8, - 0xc00a51198dae5a7a, 0xbfb83e8b50345214, - 0xbff2f93bd90782f9, 0xbff516b50b48c390, - 0x3fe936b9d8ca33f6, 0xc0012a6e064adcd1, - 0xc004afc05faec744, 0x3fce26efaae863fe, - 0x3ff9380bfcd71964, 0x3ff6c30f1b84090e, - 0x3feb4003f67edd8a, 0xbff0087085aa1172, - 0x3ffb0ab2f9197d38, 0x3f94c17af06bfbc0, - 0xbfcd6ea2396871ac, 0xbfe6cd5bf5d91f29, - 0x3ff386e8eef53ad8, 0xbfb3d4c543f70950, - 0x40037bab81fce327, 0xbfa442ac08005988, - 0xbffb2a246eb0345f, 0x3fefa5f417ffb6d9, - 0x3fe07266263c0578, 0xbffdb5469e21d0e2, - 0xc00133f971cc443b, 0xbfe29278029f87e1, - 0xbff9467b12e9f774, 0x3ff6beb4c5ffda14, - 0x3ff23db602edeeae, 0xbfc7de24430462a4, - 0xbfccdddb7f111320, 0x3fd2cb426f1f9bd8, - 0x3fb4a9e1723fe9f4, 0x3fe0759ccec36073, - 0xbfe703c159c8aec0, 0x3ff0a20624d18af7, - 0x3febcd43d77e37e3, 0x3fe5955f49312257, - 0xbff03b4805860b04, 0x3f79555f8c563880, - 0x3fc0db329ebf652a, 0xbff4e7a17653b24f, - 0x4004ba150c515f94, 0xbff47acf9766b555, - 0xbfcc840e835fc966, 0xbfd656a844f6f16e, - 0x3fd936823feb830c, 0x3fea5a9ead5640e4, - 0xbfe3563d8819c575, 0x400400d28df6aca2, - 0x3fbffdf985bd79d4, 0xbfd8a2457883a55b, - 0x3ff6ad40188280c6, 0x3ff0ce28ff1004e9, - 0xbfe1591f88eee6c8, 0xbfe1f5368db5abae, - 0x3fce0d28a2313658, 0x3ff90944a5d50e68, - 0x3fd7c4c60583e4ad, 0x3ff3864fffc7f032, - 0x4003393e1147695f, 0xbfdf4b3a175ef3b0, - 0xbf8f60445994b280, 0x3ff800dc2c1c0fb4, - 0x3fc485345f071e00, 0xbff3240067240cf4, - 0xbffd1f4a6753c876, 0x3faa942f396eeb60, - 0x40104d4ad8774026, 0xbffe1fef24e8198e, - 0x3fcd79d5fbf2f1e0, 0x3fe2b118c3bf6260, - 0x3fe15ddc0f1cdd00, 0xbfd4352fa1b340b8, - 0xbffb7c6cebbf8619, 0x4000e97288291f16, - 0xc0047e419f0a2424, 0x3fe997d2a93d26fa, - 0x3ff463fa5e323ab8, 0x3fe9a01f0aa8cff0, - 0xbfe7c056b67471f8, 0xbfffecefe14bb759, - 0xc00129cc4111906c, 0x3fde4b35c84ac0d2, - 0xbfd2b973346c1110, 0x3ffe9213f73f861c, - 0x3ff3f4416d18446f, 0xbfe00d53e22e3a9a, - 0xbf846d3194905980, 0x3fe2f390fa98c8d0, - 0xc006ad1d01e7223b, 0xbffa4be46d0af6f3, - 0xbfb95d96496c5fd0, 0xbff10e053ff64237, - 0x3fed9e0c3c4c8a9a, 0xbffcbba670d7ebcb, - 0xbffdbdecabf7a535, 0x3fcb2a4e69036dd6, - 0x3ffd9aa4ffafc0ea, 0xbffd8121246479a0, - 0xbffbe4b82c536f8d, 0x3fddf37dfd98c8b3, - 0xbfe48fdca90cbcfe, 0xbffc1b7d58a5c566, - 0x3fe3bea5bcff86ee, 0x4010a472dbb92297, - 0x40042f8a4da3bb0c, 0xbff68bda0aaa9d28, - 0xbff243d4da38e2d9, 0x3fd01c8d5f8f88ca, - 0xbff1e14dfe9fbcb2, 0x3fef513443c10e73, - 0x3fe838735c6fbe3a, 0xbffcf1486c6aed40, - 0x40074f7b75c7bfb8, 0xbfe5028a7931477d, - 0xbfecc890111a813c, 0xc000cb914ebc5068, - 0xbff8e109c24d23b0, 0x3fe20c70bb2c27cf, - 0x3ff97b2dab0417d1, 0x3ff15b7e6dfd18ab, - 0x3ff19dd78fe14ba9, 0xc000e77ebdaaba68, - 0x4000acc75125dfb8, 0xc00a0946ea11a4d9, - 0xbfa91e50dd52134c, 0xbfc2d673d0f9a738, - 0xc00f7db9db26c24e, 0x3ff1443b2bb146b8, - 0x3ffbb22d036d6490, 0x3f8223465f676040, - 0x3fedf6bdd4010cdc, 0x3fce38697fc2a460, - 0xbff253f5b1e7c8aa, 0xbfec09d8f5c652a2, - 0x3feed18c4ab3c39a, 0xbfc0858e06bd0314, - 0x3fd94da0d40764a3, 0x400ee894d3ab53bb, - 0x3ff597e88d972139, 0xbfe1ae9c8ca19e43, - 0xbfe1df3a8bfc5404, 0xbfc0422b7dc147e0, - 0xbfce8984d023c3b4, 0x3fe533c599f5af21, - 0x3fc3f9e3fa1b9be0, 0x3ff432fcb5dff038, - 0xc0051ccd5fc9db47, 0x4002501eb3016954, - 0x3ffd9941789ae998, 0xbfefd79f29facfac, - 0x40084c40c8f6b451, 0x3ffb3b78bc6646f5, - 0xbfe360a4c340e779, 0x3ff38f053d64bcad, - 0x3ffb2ac066c23ee3, 0xc001a973d60d1e6c, - 0xc002ca5c8f72c5e1, 0x3ffe63642ba866c8, - 0xbfe18e081cf810c0, 0x3ff80f2861b8bd36, - 0x3fe8b4c1c3894f4f, 0x3feaeccee41e8ba6, - 0x3ffd3fada454a134, 0x3fc5187ab3a721b0, - 0x3fec3d011facd0c8, 0x3fe27fceeb62cf82, - 0x3fb7206362ba0758, 0x3fe118b4bbf55168, - 0x3ff0ea46f1da6f19, 0xbff47b2bf9ae6c52, - 0xbfdf4f493e22ef38, 0x3ff3f69a47e2fb47, - 0x3ff9dc27e4266b52, 0x3fcb4b199b117146, - 0x3fd89081d55f62fc, 0xbff2dd62a22a4eb6, - 0x3f8577f11abaa480, 0x3fee591e9dc10487, - 0x3fdca5759f4fa37c, 0xbfe2f23e0b7ccdf7, - 0x3ffeed27851cd343, 0x3fe0fa9a8152846e, - 0xbffde1a26a1add7c, 0x3fe47bac3a5d285f, - 0x3ffe8948605b3369, 0x3feac4a0d0d7c597, - 0x4003b6aa097c96e3, 0xc010b6d5e65c2878, - 0x3ff17906b5cba5bb, 0x3ff93186f852e752, - 0x3fe986a9138bfa14, 0x3ffd0a0e5bf0ed04, - 0x3ffc2b2c7b92db8a, 0xc00151a578c0e828, - 0xbfe838e529e37354, 0x3fe6164120def89a, - 0x40007f6831d81ab8, 0xc00271f35facb3c7, - 0x3fb4f258920201d8, 0xbff8dfd9646f55df, - 0x4006f3d8b3627e49, 0xbfed97e13053dcf4, - 0x3f88f01af0989980, 0x3fca85ca9c32898e, - 0x3fe97c0e8661ce62, 0x3fdde3d7aa92ef5a, - 0xbffc600ec6844a21, 0x3fe2a5f99021ca28, - 0xbfd2c870de880ddb, 0xbff7826a23cb0d3a, - 0x3fc865ede0e9c1e4, 0x4000fde17c24d0d6, - 0xbfcb915790f1b638, 0xbfb0ed2df566d378, - 0xbfe073582b16b67a, 0xbff959844fb176ab, - 0xbfe0cbabeb6c4472, 0x3ff7b1f615afa2cf, - 0xbff66b95f9cbf558, 0xc00c996483216159, - 0xbfe35fe1ff2ce451, 0xbff7769b8269da88, - 0xbff12f2589adeb20, 0xbfaf5c1e22e8e7f0, - 0xc003ad51007a736b, 0xbfdc53f1afc2dcf0, - 0xbfd62c756c442c20, 0xc0027146c6295a3d, - 0xc005dbfe4783c5b1, 0xbff6b9961274a788, - 0xbfd9ab2aa494c7ab, 0xbfd7985ae4bc9008, - 0x3fd96b5618c90ede, 0xc003942694973510, - 0xbff7e71e6c24f0b8, 0x3f9d25db2bc8af40, - 0xbffe8a6e7b1d1518, 0xbfbc61c5167118f8, - 0xbfe1e74d77333595, 0x40087b3a19c0165a, - 0x4005619dad723b56, 0x3ff30a04d646eb12, - 0x3fe620f7d0fc13f9, 0x400b23b69a42408e, - 0xbfa661978edd76c0, 0x3fec7790abf20782, - 0xbfdd98bac67b6b74, 0xbff645930f0bbeb7, - 0x3fdaf7aee5862a56, 0x40012e68151a5f60, - 0x4001dffe1c59d122, 0xbff2305251c9ecb6, - 0x3ffe0b5daab47d73, 0xbfe6d36a603fd801, - 0xbfffce465c8de65c, 0xc086621cae230b0c, - 0xc0037795f9b41d28, 0x3fd0d046a8a8d7d2, - 0x3ff28d411e6d45c2, 0xbfe11d2ed6a5cc2e, - 0x3febdb18039a3ced, 0x4006be1c9e04e8ea, - 0xc0042bf02d4d3905, 0xbfe0c9e2258e3697, - 0xc00857776ae9ea0b, 0xbfe04d7f1ac64b83, - 0xbff59269fe687cb6, 0x3ff42a588150bf92, - 0xbff4d81b3e3859af, 0xbfc5d91ed4e1dbf8, - 0xbf8e85b15555e000, 0x3ffe472f06ae94ce, - 0x3ff5a9c01a3c7aab, 0xc00db1d7ba1a5793, - 0x40069ab52a27ec14, 0x3ff21c8cc14acac1, - 0x3ffbca576de963e0, 0x3fdb5620013aa179, - 0x3fe7b5472a6b229e, 0x3fcb872aee0d88c0, - 0x3ffb047d29fcddb7, 0x3fd534d11505cdbe, - 0xbfdff2fdc04d03f6, 0xbfdf6e3fa65813aa, - 0xbfeacb3fcf8aa0fc, 0xbff2a5275c3d18c6, - 0xc0082bfc51d24796, 0x40076144e7e59ab4, - 0xc003e2ac85392f15, 0x3ff6acd585349947, - 0xc00a7f4f09771832, 0xc0004a90943d9a8b, - 0x3fe467e1fd28862d, 0xbf9f7f3628d6a500, - 0x3fec04a2059f41c2, 0x3fe357b3912b2542, - 0x3fe990c8497caaab, 0x3fd03bff2242f14c, - 0x3ff7b75e6c044dd2, 0x3ff1fe1147ca628a, - 0x3fef0d14e994e6f1, 0x4003e2439e70150a, - 0xbfe17adbf18a2260, 0xbfe761ad9f75fd9a, - 0xc004942284f6ded8, 0xbfb3006ffd27c7bc, - 0x3fde4300811466f3, 0xbff9a33f62b7faa8, - 0x400337acb3aec66e, 0x3ffffc968070014c, - 0x3ffd389dac704687, 0xc011793afe53305a, - 0x4013b6fc15c4479e, 0x3fee286cbf9c225c, - 0xbff1ee541f8767b6, 0x3ffb3011ee3b2cba, - 0x3fb3345fef43cff0, 0xbfeb61388bcd3ece, - 0x400bf10a2ba0ad0c, 0xc00d17481c7e8afe, - 0x40031a84b5f992c4, 0x3ff3a3e46a63233a, - 0xbff97c936aefde8a, 0xbfb718020fde5900, - 0xbfd33a2f95721c2c, 0x3ff943a78b7a8115, - 0xbffa6ab45a1bac2a, 0xc0045183301f2de1, - 0x4010c9e7b229f01a, 0xbff472569ba88658, - 0x3fc1ebe080c0c7bc, 0x3feeac53e5d6750e, - 0x3fc6582c70baab88, 0x4003641c4040b8f1, - 0x3fe921aa030acdca, 0xc006f3c5080f6730, - 0xc009e206bfb8aa7a, 0x4003dd7aca3a9930, - 0x3ff07fa3e0039d16, 0xbfe061e84bd179c2, - 0x400557fc3183a12d, 0x3fe62c46c611ff38, - 0x3ff8cd0d5d165d7a, 0x3ffd463edfd09021, - 0xbfe9351abd5427e5, 0x3fd3b58e16287266, - 0xc00e125934a5988a, 0x3ff52ce03c3dcdac, - 0xbfe4704bcf0c5a38, 0xbfb8d54081c94498, - 0x3fd9b7e3e25d8ed8, 0xbfb9a45ce4dbbe04, - 0xbffa9ff8701e2d94, 0xbfee78d0e6c3d8f9, - 0xbfa14288a51a5538, 0xc0004ff0b604e358, - 0xbff8dca0151e4574, 0xbff3520648731adc, - 0xbff362f8fc302a68, 0x3ff2eb74e95ccbb2, - 0xbfe36ce9d3468b04, 0xbfe34144fbdeb834, - 0xbff5b3e98cb29aa9, 0xbfe957fced062f38, - 0x4006b02ee2babb22, 0x3ff5da182ec26ce6, - 0xbfe1e4b1e5e12635, 0xbfb02cc96a702e20, - 0x3fed4fa5211c9c9e, 0x3fb38473a0d81bc0, - 0xbfee7df494405d0f, 0x40021df316b881d5, - 0xbf99d2d7f2d00ae0, 0x3fcbb5bb080de0f4, - 0x3fe93f7e8d7f5798, 0x3fffd5cb45bc95de, - 0xbff5ca4a71bf60fe, 0xbfd60f646633a35e, - 0x3fd3b0ab7cf2740b, 0x3fc03854840b202e, - 0x3ffc60d1b968ae28, 0xbff189bed5f8f87b, - 0x400102cbb5454045, 0x3ffec057e6945f46, - 0xbfd05c8569ff6666, 0xbffa89d7b0a2b4f2, - 0x4005f0a610869852, 0xbff5b0a44c842290, - 0xbffac4b8faf3700d, 0xbff3fcd2b4920236, - 0xc009b8ab885cad00, 0x3fcfbd5c96986f16, - 0x3ff2aea1c007e934, 0xbfeeedcb36e9839b, - 0x4005be48b8122140, 0xbfebcd4b733025d5, - 0xbff7a796b0b511cf, 0xbfe123473b423d12, - 0x3ff622bf9db44523, 0xbfd0c646647d5f44, - 0xbfc7e0ae4f92a4f8, 0xbffd75654ec75842, - 0x3ff17c1061215fdc, 0xbfe367be0de2a419, - 0x3fab4cbd947e8178, 0xc00f7a6aacec0304, - 0xbfec334e62ce2437, 0xc00975d84cdab7d3, - 0xbffa2e3e0df79728, 0xbfe5acf0debf8d35, - 0x3fe4b4e244c8f60a, 0xbff08474e21864c4, - 0xbff4e162fc24f757, 0x3fca125d759c7584, - 0x3f9ddb88acfc38c0, 0xbffe1b384eb72ef4, - 0x400730c9a6a381b2, 0xbff6543d09063291, - 0x3fe0cc5cb18a029c, 0xbfec4fca35449481, - 0x3fe118cf8d4490b0, 0xc001c6425cb669c0, - 0x3ffbf10c3073f430, 0x400a28e6259f5b3c, - 0x40031508fe4987d4, 0xbfd0983845e149e2, - 0x4006a043663d210c, 0xbffa1bcef2bd4255, - 0xbff522281326ed86, 0x3fe8713ee900103c, - 0x3fb65bd145d26c3c, 0xc000454d08f767f2, - 0xbff3e8cd1fbf7a80, 0xbff1d8e64eedfb11, - 0x3ffbd9c9b65596fc, 0xbfed16614af1c77e, - 0xbfe851a3b5f9ad68, 0xc01326d27b15cd6e, - 0xbff12402b824169e, 0xbf4c811460152000, - 0xbffda69e66fa0fd8, 0x3ff3e0de98e4cad0, - 0x3fdd97fa4d78dbfa, 0x3fa9ffe459539050, - 0x3fe7f18e9a3dfa5d, 0x3fdfed6f46b8e680, - 0xbfe9af21fcdbfbf6, 0xbff010a0b86c2220, - 0x3fffb9a7810fef42, 0xbfeb8710d042c2b2, - 0xc00de447908fb19d, 0x3f8424635955f620, - 0xbff0f20cfa89a35f, 0x3fe800bf37564d25, - 0xc0027db2a9fdb81a, 0x3feab5dd036143c6, - 0x400b73762cccf972, 0xbffcfc9489605863, - 0x3fc8843c1714e2a8, 0xbfe9496ab4198aca, - 0xbff1691c8063a8ed, 0xbff57c612011c132, - 0x3fce0f76b39d8727, 0xbfd15e797ece57c0, - 0xbfff71b28db77262, 0x3ffcea0eee2f6899, - 0x400131cc1804a6b2, 0x3fdb602382619cc1, - 0xbff5511fb65726fa, 0x3ff9322d0ad673e9, - 0xbffd17f3606fa636, 0x4000e30556c47160, - 0x3ff7921b99c8e2dc, 0xc0011bd586e5dc8e, - 0x3fb07d3ee57fe430, 0x3f8bde2c253b8600, - 0xbfb480aade3a5a90, 0x3fe5b51baeed96fe, - 0xbff822a69c7130e2, 0xbff3d4bd0540d798, - 0xbff93067daae886e, 0x3ffe4137567f9e78, - 0xbff9e7bcd722239a, 0x400b78303725e7fd, - 0xc0066b81d0a7ebd7, 0x3fed1e60b4f7bfac, - 0x3fc26aa661e18b18, 0x3fecd60bfa274cd7, - 0xbfdf9a12815ae898, 0xbfb854924840e514, - 0xbff4805a4fade0cc, 0xc008f9873458b173, - 0x3ff1f78ef78132ce, 0x40025ea046d424da, - 0x3ff5ee906e8f0698, 0xbfe6b44f7a016241, - 0x3fff77ce3352b431, 0x3ff78ee54a56f4be, - 0xbff7f6176133751f, 0x3fed6271caee426a, - 0x3fe19cdea924f260, 0x3ffa8b0e2570519f, - 0x3ff6ec2705709d9c, 0xbffa4e7adfa2049b, - 0x3ff01025bb5eade6, 0xbfe468ed593b05e8, - 0xbff9e698fcaef568, 0xbff8d83891065d3a, - 0x3fd2cdc43eef2072, 0x3ff6c84bcd9e2b1a, - 0xbffca29f3b7b51ab, 0x3fcff5eadb03d6f8, - 0xbfe382429b5fffb7, 0x3fe57f52204e0d84, - 0xbfcaec617e956fec, 0xc00b7f5e7dbb66ab, - 0xbfd519c76ac6d1b7, 0xbff0ae1ac76595a9, - 0x3fdc8a9cb6edcf48, 0xbff006e6a4af786f, - 0xc009e482052bfff7, 0x4000b061f4f95de4, - 0x4001af84e3344ab5, 0x400a96b0363e700e, - 0x3ff09f36e51128eb, 0xbff6ac338a4c7c8d, - 0x400fb5b25aae477a, 0xbfd77a3a0ce26b14, - 0x3ff6f4b55e891160, 0xbff4d0c0cebf047d, - 0xbfa0ca21ed51a8f0, 0x3ff530afa24f6d94, - 0x3ff82e7898247d9a, 0x3fd28da9db480ffa, - 0x3fe7d786c108edd8, 0x40020b6b45f759a4, - 0x3ff955e30928f4f0, 0xbfeb36265fc57d42, - 0xbff6b4063fb21846, 0x3fd2f4a32764c7a8, - 0x3fca541da11c9409, 0xbfe1f3ee3e6591e4, - 0xbff20fdcb69aa59d, 0xc011234ec3a7af1f, - 0xbff7ca2157a8a7c3, 0x3fe38daf6dbb0f82, - 0xbfe07a3952a9a779, 0x3fff05502ec0d672, - 0x3ff69fa2017f02d8, 0xbfc210fcf7c89ecc, - 0x4002d2746595384e, 0xbfc843250895cd64, - 0x3fd19b367546ff22, 0x3ff4029fe777122d, - 0x3fe3b7b37b493d76, 0x3fbfe34e0d24154e, - 0x3fff33e955cedcf2, 0x3fd046b5a2570710, - 0xbf855bc3d02a7d00, 0x3fc731f773b6ba10, - 0x3f90b8ab37908f20, 0x3ffa4b622a818ecd, - 0x3ffa07b8e7ddb6f0, 0xc005d7e06f60ffe0, - 0x3fe56462d3ef1926, 0xc0144cf2d5f65334, - 0x3ff1d858b38b2112, 0x3fe80c3f7ad48a19, - 0x3ff4d5c3b594ca22, 0xc00089cf559bd64e, - 0x3fe400b0a22ac75b, 0xbffbc59446ce08a6, - 0xc006cf3510a23ae7, 0xbff764c1912d4c97, - 0xbffc177dbef329cb, 0x3fe9016d48be7c0e, - 0x3fe557e0686cae0c, 0x3ff284fb1500b4ee, - 0xbfd727d9e7c6f3da, 0xbfeb95c4c3cf5ff0, - 0x400904b59774bbb6, 0x3fca70d30e0861e0, - 0xbffd9ac24aed8090, 0x3ffeec5a83d44f84, - 0xbfe2b0fb1346d26d, 0x3fc911181bdede70, - 0xbfc90d29b0ea06a0, 0x3ffcea1f5083a02b, - 0x40039cb2e688ed98, 0xbfbe8ed06935d0c4, - 0x3fdd3d0aeb4a27d4, 0x3fb30cb0d4009218, - 0x3ff5e084c83be079, 0x3fd288fb3b21b414, - 0xbff0cf7662b74d6a, 0x40040d44fadf01ac, - 0x3fb0db2a567dae40, 0xc00572417b907b3d, - 0xbff391cb65e3a320, 0x3ffc66ee080d8083, - 0xbff64d3daf149b10, 0xbfe467a91ef2d0c5, - 0xbff4e60445c2a796, 0xbffa3cb99c163312, - 0xbfd7e12c6c38e65c, 0x3facbf5d2b1023b0, - 0x4000f0493b02e0be, 0x3fb917930bbb0248, - 0xbfddd6a23f855530, 0xc0056925c09f7690, - 0xc0020401cc7d1d78, 0x3fe719a988750516, - 0xbfeeeb95e0bb177d, 0x3ff2f5068e19c6e7, - 0xbfe421375c045628, 0xbfe5e38b30866f67, - 0x3ff9473127ef152a, 0x3fe1972501c88693, - 0xbfd3b52f1a3c7294, 0x3ffb360c421d3c56, - 0x3ff56d653e3810d6, 0x3ff9deaf1d2f98a0, - 0xc00148c0bc82b3de, 0xbfdba6357c5c22ee, - 0xbff8b72f27a36a3c, 0x3fd6f2ae4f25131a, - 0x400cc07edb6db22a, 0x3fc3604ccf8c202a, - 0xbfe1fba4bc78e3c8, 0x3ff69b96e7ebce76, - 0xbffc2aef6341228c, 0x3fae912ae2dceee0, - 0x3fe356a95f5f6436, 0x3ff1d89c086ab040, - 0x3ff39caabe11f41f, 0x3fee07dff0af6036, - 0xbff874f5311e1894, 0xc00817b5a2642c44, - 0xbff93534632d3304, 0xbfd857b12ed21ede, - 0x3ff681fe383054a6, 0xbffbc1fd7809dffc, - 0x4016e05b76882a48, 0xbfe5916719f59e64, - 0x3fcbfcc9f52ad500, 0x3fd5bb29cdcce126, - 0x3fe26e7e8073a2fa, 0xbff36c3fc06bd450, - 0xbfefb134826ad56c, 0x3fe41c44930f8f6f, - 0xbffc6e05ab11c8d1, 0x4003a543dfad928c, - 0x3ffc005b53314878, 0xbfd4409994e8bc74, - 0x3fd590c9b08e28c2, 0x3ff6ddedc49df1a1, - 0x3ff1c66c8e30ea4a, 0x3ff1f158ef2f1711, - 0x3fa74779cb080280, 0x3fe0f5610babef88, - 0x400ee355707a6d80, 0x3fff0f93fd3db7b4, - 0x3fec699ac69bd6df, 0x3fff23298da49593, - 0x3fc458dfbdde99d8, 0x3fec5ec65307fbd7, - 0x400f43ec91accde5, 0xbfaa37a1b7800db0, - 0xc00685d9f76af322, 0xbff417bf1b9631f7, - 0x400a638c1b461dde, 0x3fe49dbd345a451b, - 0x40009b18a9b32fcb, 0xbffd8e6dc32c98c4, - 0xc002f9b80e3aec0d, 0xc01323c83e589ed6, - 0xbfee4aba1764a50e, 0xc003dae423e715fa, - 0xbff5a64e2ac6e604, 0xc00f51f01a7746c6, - 0x3fe06dbb7d27a35f, 0x3fc52193502955da, - 0xbfed77c2bcfad2e6, 0xbfdbe050f9e0ca63, - 0x3fead0d65a4f5d3c, 0x3fff0bc0e62195b6, - 0xbfd4439ffccc0274, 0xbfde1256237f7322, - 0x3ff213c3924a0692, 0x3ff2ab72846d0a97, - 0xbfdaa09e917d7e18, 0x3ff21081caed5b63, - 0x4000ce41a764a65a, 0xc001b0e43319a676, - 0x3ff90654293300c3, 0x3fe0983acc0e1248, - 0x3ff4b4079583ed4b, 0x3fe720e332f43d89, - 0xbff04b77c353ac99, 0x3ff0f03f087a4179, - 0xc00b4b5053fa9861, 0xc0010d5015b78da7, - 0xbfff1b70a78689cb, 0x3fbfdc1ce9a2fe6c, - 0xbff13b166a74c7f4, 0x3fd31c0248164e6e, - 0xbfe50f212952adb1, 0x3fe4ef9940529cbe, - 0x3fe644081f9c2cdd, 0x40028cd881d3e409, - 0xbfa19ad11524c000, 0x4002818c0348182a, - 0xc001669348aba292, 0xbfd70b98c1ae366b, - 0x3fc0ca38807cbcf0, 0xbff49b36013977d3, - 0xbff60a9cae40c6f7, 0xc0086629975a90fa, - 0x3ff9f752933f1c31, 0x3fed2e72287ebe0e, - 0x3f9da21ce57b2a40, 0x3febb877969b1722, - 0x3fdfbb214057f800, 0xbff8287094b1e3ec, - 0xbfee6f5b20c6eff6, 0x3ffb99be46fd9b9d, - 0xbfe22205ae106978, 0xbff3fa13daa6f53a, - 0x3ff06c89c6cb11ae, 0x3fe4c2c2ab0f2c88, - 0x3ff395178eeba088, 0x3f95c71b41483c00, - 0x400716dbbaea0d7a, 0xc006bfabb229b9d2, - 0xbfd62796039ad356, 0x3fefc04c2f9d5f49, - 0x3f9295fd551cd5d8, 0x3ff7158f66ba897c, - 0xc00015eedff1a4d8, 0x3fba7dbc7ef84af4, - 0xbff5c19814d499e4, 0xbfd74f1f355cd9b3, - 0x3fd7ded66915af18, 0xbfe4398da7f88d7c, - 0x3fde63d07f2f0bc4, 0xbfe4c2a61b35d876, - 0x400a739255b54481, 0xc00b4a92e58f94e7, - 0x40074955c5a2d907, 0x3fe42b5989c7621d, - 0xbfed6e4671a2f13e, 0xbfb86dc107ca3188, - 0xbff32726ae7007f2, 0x400592b352746e91, - 0x3fe917488e83f092, 0x401848e0eb1e0ab4, - 0xc007cb369a7c89f4, 0x3fe7a4d6d61547aa, - 0x40080cc39df58e2e, 0xbff4a3bcd736bea9, - 0xbff7e07f1104e8ea, 0xbfd9cb34686e7042, - 0xbff1c8cdc462ce12, 0x3fff676e307bb5b7, - 0x3ff47ceecb9eb1c6, 0x3ff0f736a9122abb, - 0x3ffbba867d318c4d, 0xbfe141c581257d00, - 0x3fcdc579074c086c, 0xbff05e3663f8816a, - 0x3ff71413ee3d0a91, 0x3ffdee24ff153f1e, - 0xbff65c6dfedf8b14, 0xbfe06be8b14b8dcb, - 0xc000643aa263ba39, 0xbfe8887aac7e1fe4, - 0x40012fcb1ef5a93e, 0xc000d0b78e1c3dcf, - 0xbff06873b80dfa0e, 0x3fcad7c6feba0820, - 0x3ffebfb092aa7e2d, 0xc001975516f75c66, - 0x3fd8e48a97602fdc, 0x3ff58250826eed98, - 0x3fedd030831fa9e5, 0xbff20dd6469ba450, - 0x3fe8841c1eab89e4, 0x3fe9b73042827f84, - 0xc004e3c5032f3bf0, 0x3ffbdf8a8a201964, - 0xbff51f021e03530c, 0x400074c06860c9ba, - 0xbff413ba8a13d4b4, 0x3ff3d3e10b00d0f9, - 0x3ff457afede5f6c3, 0x3fe90b4249ec7668, - 0x3fc621261484ae2a, 0x3fe2ebf525a3f9f6, - 0xbff78799387eb0de, 0x3fdbc5a3e9239cf8, - 0x3ff2dba833cb998c, 0xbf7b6472bffc6d00, - 0xc0080a32baa5fe3e, 0x40081f99a5a15967, - 0xc002d1f5cb12bf24, 0xc00e53ab6ee66d2c, - 0xc0029ea33295ee28, 0xbfff209b3eba836c, - 0xbff0f959c3f430ba, 0xc00778a656117bce, - 0xbfee6401ffed48aa, 0x3fd6f88204902db6, - 0x3fad97eac98c29b0, 0x40075d585eb4cbea, - 0xc00274505992451e, 0xbff74d295ec34047, - 0xc00ced17a3158c81, 0x3ffc8c088cfcc798, - 0x3ff2f1a3bc48dced, 0xbff3b147c35fc330, - 0xbfe2388aa3df92ef, 0x3fda9f93df3941ac, - 0x400130d18119f55b, 0xbfe36645dbfea346, - 0xc0022085ef34d2a3, 0x3fe264ba76b48537, - 0xbfe7be60afd25ad6, 0x3fe2fec7c036f094, - 0xc001838faaa602bc, 0x3fe0bf8f72e80fa0, - 0x40120ecbe5987581, 0xbfe8da2f128ef03a, - 0xbfc6110443722f90, 0xbfff82175ddba2de, - 0xbfd227f5443fb33b, 0xbfce626ba69d288c, - 0xbfe2f352f1f016ff, 0xbff16e288d6db0bb, - 0xbff19d4bdf0505e7, 0xbfe39a42dd1bc658, - 0xc0066506bcb5cec6, 0x3ff0c116036ed750, - 0xbfd3e97982837437, 0x400030bdd4144e98, - 0x3ff58d8c2228a8d2, 0x3ff91e75aba3d504, - 0xc00132534fe5c918, 0xbffc29235efc08e5, - 0x40041e3b6aaf5783, 0xbfe93b8f75110df0, - 0x3ff282bb85865896, 0xbfde6140e8c15e24, - 0x3ff1d10512660147, 0xbfe13a8cd43c4384, - 0x3fa2eed1ecf40c80, 0xbfc306a105985c60, - 0xbfd602a92d9b7c08, 0xbff93ab7a63e3809, - 0xbff45df97ca853f6, 0x400343ec4129c5d5, - 0xbfdbe26cf91ee4e8, 0xbfe77daa8d3af5b3, - 0xbfc6d3baccc251c8, 0xbff279ae06b9bd59, - 0x3fac0bd7954c8900, 0x40046e16a1820cba, - 0x3fe764f738c53bae, 0x3fef6e28714b8ccd, - 0xbff6e31646128c62, 0xc002e796fc792c6b, - 0x3fed2a6b1d0f4b24, 0x3fe63726b7d195f1, - 0xbff2eab1e787e2c3, 0xc005191d3a464e84, - 0xbffc4a2f6268350d, 0x40005f6bf094e020, - 0xbfed4dbf18936ada, 0x3ffc9eb3ff071841, - 0x3ff003233d0dcd44, 0xbfe976ce3968e2be, - 0x3fe6eee4a7e7d67a, 0xbffa59870075a818, - 0xbff09847036b3085, 0x3fea14d834996146, - 0xbff778bcf01abd7a, 0xbff5b447e7d619f1, - 0xbff292a86c1b400a, 0xc00864bd8d9782d2, - 0x4009900008b28964, 0x3ff89d9e5b410046, - 0xbfd817bb6a9197b0, 0x400560db3473b222, - 0xbfea4e3f7a790aaf, 0xc0027be296b5caf5, - 0x4001afca18092fb2, 0x3ffa7fb1ad2e1f22, - 0x3feaca5c34d0f110, 0xc00101097841cad6, - 0x3fdf4e6d57c697fa, 0xbffb23b5f7dd20d3, - 0xbf91fe7266714350, 0xbfeaa7bfa0808393, - 0x3ff54bda0258fccd, 0x3fd55dc0d5573cb1, - 0xbfe7e38503b5b66a, 0xbff71e3abef49e32, - 0xbfd65065a7d038e4, 0xbfe45cad42ad0edb, - 0xbffddd67142cd490, 0xbff6446d3b7481fe, - 0xbfcb1451e7c301e4, 0xc0010501525e1e07, - 0xc0011615e1839965, 0xbfec650d02aebf7f, - 0xc006dd0d158320c8, 0x3ffbc76a788ff87b, - 0xbfd90625f1fa601e, 0x3fd6c2f13f7696a4, - 0xc0012394436dc7b9, 0xbfc20abf1d5fd6b0, - 0xbfd177dfff040fae, 0x3fb2367cc8d7d960, - 0xbfd72d2d49bb18f2, 0xbfee2dfa8f6943c3, - 0xc00168017bc3b067, 0xbff3508306d2cd6b, - 0x3fefd310fac86f07, 0x3ff78d44c86bffd6, - 0xbfe0e6bb8659c27e, 0xbfe3ce34f6d969aa, - 0x3fd768711b1b1eae, 0x3ffd452a165f2aa1, - 0xbfffb2e04509dfb4, 0x3ffcedd5b696fa93, - 0x400645dedff4ca08, 0xbf8db6c832064280, - 0xbff37baaba0e2166, 0xbff42b97f40b0980, - 0xbfe7d5a11310e4d5, 0x4005a9a00ebe60f8, - 0xc00acff017db9a8b, 0xbff44758b85cae4e, - 0x3fe53c0928f9b1e4, 0xbff3612f9955847a, - 0xc001c60612e86065, 0xbfef11bb43dae11c, - 0x3fea6e82530e652b, 0x3feb0e769e0c1756, - 0xc00489ea5031e3c7, 0xbff6807502d83255, - 0x400340d7795f671a, 0x3fe18e484d697d1b, - 0x3fdcaf55ab015aa0, 0xbffef8ba165dc75b, - 0x3fb4b8265c4257b4, 0x3fe6e5dc02739411, - 0x3fc1172c335fe200, 0xbfcadce0c684ee20, - 0x40018f03bee2fbb7, 0xbfe029309414949a, - 0xc0090cfca0766502, 0x3fe6528428520a7c, - 0xbfe29e7806506dd3, 0x400284f1b84788ce, - 0x3fb416123098c7d8, 0x3fe6c51c6b6e81f3, - 0x3ff624b4a654168d, 0x3ff7e37412568a94, - 0x3ff7e5312385a364, 0xbff5da51ad3b6455, - 0x3fc49cf2c080cb68, 0xbfeaa8df341af3f2, - 0xbffb4a2456d8fd25, 0x40023a9c19d8d168, - 0xc00558d477403c2a, 0x400280aa7f8d435f, - 0x3fedb78b3f7d97de, 0xbfe4437dbf88b8bc, - 0xbff350c0481ed79b, 0xbfdb9657f972ecae, - 0xbfe81ede88103ffc, 0xbfa2697ae6f53330, - 0xbfe3f00dd20341ea, 0xbfe2bd271373b54e, - 0xbfeb7c1e45d51b06, 0x3fdcab54a48d7b6a, - 0xbff3de0201e7ec5a, 0x3fd19068b8931fe6, - 0x3ff3bb6f9d8e4a12, 0x3ffb24da8f3efa3a, - 0x3fdb4c309c22fdf8, 0x3fef5a4e4c2ac2b0, - 0x3fdbc9038ff75f3c, 0xc008e09bd90cc3ae, - 0x3fc66450fe61aec8, 0xbff06fe6762d63ca, - 0xbfe2844e401db330, 0x3f8f7894205b2300, - 0x3ff085decdc95dd0, 0x3fe903fef786cede, - 0x3ff65364a5714ede, 0x3ff7fba8022e4cfb, - 0xbfe82841bafbba68, 0x3fe199c73d233d85, - 0x3fe82efa47c8e63e, 0xbfe97eff5c471e35, - 0x3ff00365fda41240, 0xbfe77d8873919052, - 0x3fe8f70fdc9237bf, 0x3ff6ab6b2d155aee, - 0x4004e27ea7603980, 0x3fe4615a4f021198, - 0x3ff00bad0c7895a2, 0x3fd8bade9778cade, - 0x3fe1434125f44f24, 0x3fdb2616eb88051c, - 0x3febc7d95ded924e, 0x3fdb3f5ba296d2ed, - 0x3fda0485a1c1d4b5, 0x400678aa84ec00ec, - 0xbfe992db85fd7934, 0x3fddd84a930029e4, - 0xbff22a8d9ada5adc, 0x3ff5992f27098c9c, - 0xbff22c3849416abc, 0xbfcaf1e7ebb311a4, - 0xbfe1b23a8f5ed262, 0x3ff09a3448cc5062, - 0x400c35ce985e9aa9, 0xbff8b06a53c7de32, - 0xbfef59c465543a3b, 0xc000831cce427932, - 0x4018fc992c24b60c, 0xbff0d831b088be3c, - 0x3fbf88377e83cd98, 0x3fe03a9f64da63e5, - 0x3fdd670b8453b0cc, 0x3ff989d28d1fe2e8, - 0x3fe327d7c0288370, 0xbfdfc6ade66add2c, - 0xbfdd094ec9ee3d72, 0x400a34fe501db972, - 0xbfcc8ae2a162cb54, 0xbff24f078c0f564f, - 0x3ffb5035a717a0ac, 0x3fd49fcda289377e, - 0x400457cf161b39e4, 0x400101739dd0375b, - 0xbfdf0661a28b2d4c, 0xc00072a8523028a5, - 0xbfe04dc88a0706fd, 0x40049b64b8b89f32, - 0x3ff62fd8717c653d, 0xbfefbc6027dd9c96, - 0xbff7506e3744d588, 0xbfdbc9f830b07d7a, - 0xbfe3aa1312d706f0, 0x3ff72fcf68585a9e, - 0x3ff23cafe65aec43, 0x3ff8b01ead8dd308, - 0xbfdebd85c13398f9, 0xbfd25ff35db8dab8, - 0xbff9d1390d2cb2b3, 0xbfe958f5ca82f3ce, - 0x3ff629303816406e, 0xbfdfdf9ac252cfa8, - 0x3ff1f4449b10e05a, 0xbff18af9bea39496, - 0x40029dc92d5894c2, 0x3fd6afb6572c60fc, - 0xbfe1be085a3cf7e0, 0x4004cda50694f190, - 0xbfe79ebfe2f9ecfd, 0xbfba82102cfb7828, - 0x3ffed2e19dc73271, 0x3ff2c0ad8e589526, - 0xc00b318186f4a83f, 0xbfd5abaf6bf730ac, - 0x3ff0396d23db3a06, 0xbff9ac20c576f6fe, - 0xbff8a34dd41125e1, 0x3fe36c634f53df67, - 0x3fe0d7538c56aa84, 0xbfb6296b22414cf0, - 0xbffb9743be70b050, 0xbff3a9f32f6f0b92, - 0xbfffe26f77c307ac, 0xbfeec9f65e633de2, - 0xbfc0d420e2044ef2, 0x4007a0bc40474a17, - 0xbffe261eec2ff144, 0xbff6d9717d54988c, - 0x3ff23921b8e0bb6d, 0xbfc115ca0f828b58, - 0xbfbbf8d2eca0cd6c, 0xc00424a3a9c4f1e8, - 0xbff3387e10dd6322, 0x400ec7d4c74ba0f4, - 0xbfd2f3c90f5c3b9c, 0xbfe4720fdfb91dfc, - 0xc0096f39f7abdf7e, 0x3fa63daf33dbc800, - 0x3febe6a2bd0e6c3a, 0x3fe20d59e330a3b9, - 0xbfe68a452bcb1132, 0xc0027f121aef25ca, - 0x3ff3c68b92f35536, 0x3fec073f2420f350, - 0xbff9e2edb55866b0, 0xbff4f4dbea7cd2cc, - 0x3fe50be6efa661da, 0x3fd46a180bb11464, - 0x3fef0a3e14144916, 0xbfcaf1efd6e016a8, - 0xbffdf16849c9c9ac, 0x3fe7af3ddf7d3066, - 0xc009870c704b1149, 0x3ffd1d9167b2d0b0, - 0x3fe3ca1aec9ef9c6, 0x3ffcfa77009a7dae, - 0xbfdc770da16937b1, 0xbfc6b0efdc45f30c, - 0x3ffd47769743519c, 0xbff8346379ca28a8, - 0x3ffd76ec340b1802, 0xbff7667bbb6e86da, - 0x3ff94de9bee5b8c3, 0x4006206aa6d90529, - 0x3fc44a6b003e619a, 0xbffcda5eafe75584, - 0x3fc4a2fcf882f930, 0x3ff8683819e36686, - 0x400228a750cdbcb2, 0xbfb838b09a6091e8, - 0xbfd6fedb2fd77514, 0x3fe1dcfc4ce0b513, - 0x3feb2ce0252249c4, 0x3ffb9c67d1661466, - 0x3ff0df6d222413c8, 0xbfe195520515a570, - 0xc0053e4e9f999819, 0xbffc7f3cd63c693e, - 0xbfe73e2be1c8c758, 0x3ff3ce66f2b148d4, - 0xbff3f57b2cf60fc8, 0xbffec368ff307f66, - 0x3ff72736e3e84e71, 0x3fdf09526675bd50, - 0xbfe53eb2a4aa9bb3, 0x3fdc8f166d556934, - 0x400b38116e5d5a61, 0x3fee29d19b609e6a, - 0x3febd784eb6181c0, 0xc009e6fa9ddf98ac, - 0xbff21315d656cc3e, 0x3fbe52923fa71e98, - 0x3fd1ccfd9601f406, 0x3fdb86f0c0013190, - 0x3ff23947d39d018e, 0xbff052d500760b9e, - 0xbff34a0d320c4086, 0x3fec88e60a81cf5a, - 0xbff4c2be5057b01a, 0x3fe2c8eb0d821ce3, - 0x400e1f99b9329575, 0xc005df8634e941f6, - 0x3ff78d1670995eca, 0xbff1778c8d5c9271, - 0xbfd4b034fce982bc, 0x3ff76c0d739c1f3a, - 0x4000a386e819caf0, 0x40006f11f8aaa904, - 0x3fd9484ce812cf37, 0x3ff73b29fac4efe2, - 0xbfc5483735bd43f8, 0xc00a17db6cf3f7a2, - 0x400065d17fe358b6, 0x3ff78b39acd60a21, - 0xbfafb9f92df293c8, 0xbfc46e802f9e4f60, - 0x3fdce64283b952a0, 0xbff5f89aca4d14a8, - 0x3fd1118a26dd88f6, 0xbfe6992741b405d0, - 0xc00da77d3aa1cc4a, 0xbfea3dfe2bd73c72, - 0xbffe7ad202b9ddf8, 0x400d9b980aee39d4, - 0x3fe9f78135859014, 0xbff4a7da064aeb91, - 0x3fca48eaeb46d918, 0xbfe768f36231568e, - 0xbffb5ddeee8d847f, 0x4005c04f44d208b6, - 0xbff85eaf992c8266, 0xbfe320282b97e5cc, - 0xbfe8ad4236fa1394, 0xbfedae08b72a79a4, - 0xc003a9e22ea28e6e, 0xbfbc5ca912b26a60, - 0xbfd76ee1316ed9d1, 0xbfefa8f731733d5d, - 0x3ff49dd6fbe700a9, 0x401111713a51ba08, - 0xbf9c2bc1a4781280, 0xc00481f0c673dec4, - 0x3feac531122a55b2, 0xbfe3170fb1f352d2, - 0x40029ed73c954e9f, 0xbfed544c1ff656dc, - 0x3ffb6302d1386d04, 0xc00460818ced306c, - 0x40038f2f3e946bab, 0xbff2e4bccf47cb1b, - 0xbfdc51c20e138810, 0x40035e7800a694cc, - 0x3fecf07da35646c2, 0x3fe8abb28aa84f83, - 0x3fc1d0a823669c62, 0x3fa913e86730afb0, - 0xc002dc87781fb672, 0xbff70fe189e5a55c, - 0x3fc2812cfa4f61b4, 0xbffde6770e3b852c, - 0xc00067a126d4f92d, 0x3fdebbfa5e439822, - 0x3fb1436a076cb178, 0x40023981175af679, - 0x400b788e80f8c9bb, 0x3fd83a3b99f5b027, - 0x3ff8037afda9ffb6, 0xbfa476360015a718, - 0xbff16687475aed66, 0xbffc9bb13360bf0e, - 0x3fa90d8f5cd615e0, 0x3ffc20351c46de3f, - 0x3ffa9d6c00024732, 0x400050cb090c3e51, - 0x3fe6060e054c1852, 0x3ff8e7706510773e, - 0x3fe4af6ec58dec0d, 0x4002e33952270482, - 0xc001512aa8e8552e, 0x3fcd09dac3987b30, - 0xc004ff4b53e19403, 0x400140bd2243cdf0, - 0xbff419839d429d62, 0xbfeba7969e3db09a, - 0x400a616177c704bc, 0x3fdb0d22f9742716, - 0x3fb0723acebf8298, 0xbff5b338ad583d32, - 0xbffba5d3fe69d600, 0x3ff45f84a433f398, - 0x3ffe57a5a388c7d8, 0x400144173570830c, - 0xc004a49fc4e0100a, 0x3fd0a38e1e435aa7, - 0xbffbbf7f7c7104d6, 0xbff1657f57023b69, - 0xbff45074bf7a947c, 0xbfed1ea6c2ca65b4, - 0x400747716a156ba4, 0xbfec6d2645ef1280, - 0xbfe7dff06e383e28, 0xbff7b989894b70d7, - 0x3fc491e4c2522b80, 0x3fe7c69d5eddb65c, - 0xbffddb0646d01907, 0xbff293d034a74f32, - 0x3fc91223fbc0ef28, 0xbffbe8343a41ca88, - 0xbfec96a7bbe75d18, 0x3ff6f278b5efa062, - 0xc0030c2aecd8e3f6, 0x400781c3a859ee2f, - 0xbfd0a6abdba2a1d0, 0x3ff9f913a140d57c, - 0x3fcb4cfd263ee700, 0xc010adc59b3a7c40, - 0x3fea2cdde839167d, 0xbfffeca7c8fe3866, - 0xbfef198795806dbd, 0x3fdbbcf3981f95d8, - 0xbff022849536695c, 0x40098f7da8eee7da, - 0xbff14570920d1e58, 0x3fec342b3a0b14e7, - 0xc0014d63d0fffba4, 0xbfd72bed967534a5, - 0x3fe30d364cd7a22f, 0x3fdf1d10cb2c5958, - 0xbff81a6c48b4c459, 0xbff6666651de4f04, - 0x3fc920e7f0b74d88, 0x3fcda19a8a6cbba0, - 0x3ffbba8bd62f6e46, 0x3ff7ea56e9a6e540, - 0xbfeaf851b46f6ef2, 0x3fe7890183564b74, - 0xbffe0b8f954dbf4c, 0x400789e13d562ec0, - 0x3f5ede7e7bf83000, 0x3fd9acbca0e68cd3, - 0xc00caa9459fc8f91, 0x4004a7dce9ac8220, - 0xc009b66ab24264aa, 0x3fb8154cb84d3fd0, - 0x3ff5eafc70923f80, 0x400be81f2221d006, - 0xbfd33399e8b3c90e, 0x3ff5bec62c8baac3, - 0x3fd1de786e138fc8, 0xbfe13fddce7d72bc, - 0xbfd4fb783b9a60b2, 0xc004bf50f0c9fc5d, - 0xc005f89bc7d1a151, 0xbfff31b6eb740c2a, - 0x3fd3867d9ef54d87, 0x400473af2eecdc70, - 0xbfe4d3f256e003c4, 0x3f97041271df12e0, - 0xbfd4d9a978d3946f, 0xbffc4ac77b56d5d2, - 0xbfd31fd5a62c1750, 0xbfd5aeff3c61dad0, - 0xbff939122599af86, 0xbfe652efdbaa681c, - 0x3ff91904e4093353, 0x3ffad424e654ad69, - 0xc0002e1d8d6e64ac, 0xbfd48eaf92f2bc07, - 0x3ff71bb363b1ba32, 0xbff15ebee223a724, - 0x3fce2d9528f8a9d6, 0x3ff3281f7a9082a3, - 0x3fe0c4200b8c1392, 0xbfda9eef2889eb36, - 0x400ca4de41f7bc34, 0xc002afc3bb069089, - 0x40060bae5f02ea1f, 0x3fcd608f2ac94db4, - 0x400095c67e25bfd8, 0x400878096c4074b0, - 0x3feebf8c746576af, 0x4003e999332dc392, - 0xbfd51e8072a0e7f0, 0x400dcf7c22b2c641, - 0xbfddf6e428c28940, 0x3fe3922cd98b394d, - 0xbff4d9ce7b988a39, 0xc0035bba4a0bb8fa, - 0x3fddd54d017e7e6c, 0xbfd25addd9bea46a, - 0x3fd2ad6ee510b06e, 0x3fe9350a1d4f0970, - 0x3ff73051d454cf2f, 0x3fe70b687d609562, - 0x3ff2f8cdec2cc272, 0xbfa0b4bc6bb17ca0, - 0xbffd6688c90fe7c7, 0xbff10cb01b2f4203, - 0xbff782d7b7b62e11, 0xbff1da81c8f4cf5a, - 0xc000159995adbddb, 0x4000339dc3c5e20e, - 0x3fdc2a8b10b5748b, 0xbfc57e986a8b2d87, - 0xbfe5a3a0f0251b26, 0xbfbf28424759e7f0, - 0xc012da791a910386, 0x3fd3f1d5f388afe8, - 0x3ffe30d97ff65e0a, 0x3ffdbec1361c0733, - 0xbff1b9b830e9c3a2, 0xbff206d538b3ea6f, - 0xbfd4c04a28f61dbc, 0xbff350fb5ce19d0f, - 0xbfd90242a386bff0, 0x3fe3583ef4e5a39a, - 0xbfbed419ffa153f8, 0x3fca6e101b24c334, - 0xbff12c6736448e30, 0xc00740cadcdd8f38, - 0xbffb99e8efb667e3, 0xbff0035acfe3d90b, - 0x3ffad0ab205e2e3b, 0x3fe243df4257443d, - 0x3ff9a33fe9a3c0a5, 0x40000343b2be15a4, - 0xbff1c5ea8f08e1bd, 0x3ff2e2d02e3ad890, - 0x4001f00fd777d30b, 0x3fea3c64510961e8, - 0x40082e457b525474, 0xc001a569573954d5, - 0x3ff1e5044e7703a5, 0xbfdc78a583f785fc, - 0x400c02fcde5228a6, 0x3fe259de94385484, - 0x3feb26e2b678b224, 0xbff60cb709d2471b, - 0xc00043ace589ba18, 0x3ff0f1fe6e27f7a2, - 0xbfdd19dbc9acf6fc, 0xbfeafc83f1309c8e, - 0x3fe3f42a7e5e48a6, 0x3ff2a937b76490d6, - 0xbfb10c9e6b3db142, 0xbffb1b7217e85488, - 0x3ff1201c2d3ee102, 0xc00199fdd604f2bc, - 0xbff22d8f5ff45f98, 0x400448358e83f812, - 0xbffa4668420523e1, 0x3fb1a8678e6975b8, - 0xbfe664ca5f20b14a, 0xbfef686c984eae46, - 0xbfec45ecfa5a701c, 0xbfdaaf5bb1a99f26, - 0xc004f4e1fa369d56, 0xbfff6dc1ba1d9403, - 0xc001d1e31f834d12, 0x4004205471f1ee82, - 0xbff2e88b40afd370, 0xbfd376d4f05ba614, - 0x3fdccf74a6e8973e, 0xbfc3525c8bc6280d, - 0x3fe6efcf5f17e0b4, 0x3fdc17264eb58579, - 0xbfeba48195b5aabb, 0xbfdc8e550ab648b4, - 0x3fb752d14cb7d854, 0xc00be5b91b7c9802, - 0xbffd096da95a4a4e, 0x3fc90f2c619eb023, - 0xbff62f6264222894, 0xbfa8fac2ef72e400, - 0xbfea8aeda7ce85bd, 0xbff358969c1a135e, - 0x3fd93def1aa7a694, 0x40016e2b37b3574c, - 0xbfec2155728f91b0, 0x3fe00b8c6d5819fe, - 0xbfeda63ed8737353, 0xbfcfdaece77b7480, - 0xbfd614014a5c5354, 0xbff0a0d452ae833a, - 0x3ff661d27f2d3990, 0xbfe1e972a964f412, - 0x3ff4ad29a19f562a, 0x3ff607c65095c2ad, - 0xbfe222a2c4ec7dae, 0x3ff720c81d9c6a1a, - 0x3fff412478d185ed, 0xbff373964a2048e2, - 0xbfb85fc12966c960, 0x3fe245ca81373880, - 0xbfddbabb8767832c, 0x3fff6cabd84fd1b2, - 0x3fcd3d22b1aa450c, 0xbfd50e797f8a04ba, - 0x3fd495a57e82b8a4, 0xbfe87bd55cac597d, - 0x3fffffc3343f16d9, 0x3fc584b60769ecb0, - 0xbfe72ddae1be877c, 0x3fe9bb9f77012226, - 0xc00902a2c504ef88, 0x3ff68fdc55637328, - 0x3ff0e33b3cdc734a, 0xbfc921c5874f69da, - 0x3fe12ac60848a938, 0xbfdea42162230650, - 0xbfff83fca9ccd91a, 0x3ff98ffa10d43768, - 0xbff0bac3e47f737f, 0x3fe63f9f3a1e0251, - 0xbfffbc217f295d13, 0x3ff87584e97a16b8, - 0x3ff720873f89a588, 0x3ff1603b982eb49d, - 0x3fe092855133a079, 0x3fed95ee61aeb66e, - 0xbfe465aff93aef44, 0xbfd14308a8a808e5, - 0x3ff131064ca45909, 0xbff381534f8f20c4, - 0x3fdb9ce52ad6e3ee, 0x3fe9246d94f8f44a, - 0x3fc8012a84ba2c42, 0x3fdf0561d16d9c37, - 0x3fec5c50cbd44e9e, 0x40099288b39a4903, - 0xbfd5f654a794fe4a, 0x3ffbb87bd2f9d617, - 0x3fe1ec42be5d6a17, 0x3ff983f667728752, - 0xc005ce4a80f1f041, 0xbff14366a1a2b341, - 0xbff80908beccee3f, 0x3ff926d0f3f72963, - 0xbfe83024a398be4d, 0xc002c1169b7a04c7, - 0x3ff8fc1e39242d5e, 0xbff3363c2acf888c, - 0x400d0c3d87af11f5, 0xbfefd29ab3ecf3be, - 0xbfeb6ede9db3d79e, 0x3fdcd97d72e748d2, - 0xbfee0f5737ebd296, 0xbfef9ec04a52adc4, - 0xbfb52720bb9b0a2c, 0xc00253beb2677704, - 0x3ff4a3f30138d95d, 0xbff4ea7dcb281b4d, - 0x3ff934e75f107505, 0x3fd732d86193e988, - 0xbfced48bde8e34a0, 0x3ff410572ab1739d, - 0x3fe6ccd3dbe97946, 0xbffba9d5395f1cb7, - 0xc000893a4a1a9f1f, 0xbfe3e203ff0c820a, - 0x3ff6042f5cbe19e2, 0x3fb9723c62941110, - 0xbfb008730fd06910, 0xbfff01265beb072e, - 0x3fe01f0a4c504e86, 0xbfe16a465af0dbaa, - 0xbfece8fb41a24417, 0xbffb659fbf8c5dc2, - 0xbfd3cf54f0726d76, 0xbfc385d44218c838, - 0x4009199b2ebb0145, 0xbfec07ed05cfebdc, - 0xbff03b7d5c4cb885, 0x4000f2d7e5dd6167, - 0x3fec988e46c70fda, 0xc01059dd7af06ea0, - 0xbfdc2b3c04541a3e, 0xbfdd81ff0511a698, - 0xc0023c03576c4208, 0x3fea85f86c519334, - 0x3feb6e9855457079, 0xbff5170f9b9b65f5, - 0xbfd68798fe7c5430, 0xc0039b47a501a8c6, - 0xbff9f7c3871c14b2, 0x3fa371143a22e940, - 0xbfc999a1047ce830, 0xc0019f180aeb33c2, - 0x4002c90b97e4cd26, 0xbfe820a4982c5a3f, - 0x3ff846aa6e6e45f8, 0x3fd1ea7d34c080e4, - 0xbfacbb0556ee16d0, 0x3fd94bd690e114c4, - 0x3fcb246e51658d7c, 0x3ff5e7de60b825f0, - 0x3ff7e3a137991a8c, 0x3fc8a261f0e98da0, - 0x40017fb9b184e93c, 0xc001966541bfbd09, - 0x40025e1c21dff328, 0x3fee710c28cf96d0, - 0xbfbd2c738991fb20, 0x3fe1ef997cd9918c, - 0x3fe4a0e795fcdf72, 0x3fed39520dafae67, - 0x3fe49efaf720c092, 0x3ffbb20f96acec94, - 0xbfe3ac6bf3bc1ef5, 0x3ff0ce6b86dd736e, - 0x3ff2ddbc8061f34b, 0x3fecd88ba137a764, - 0xbfe9a2992454ff44, 0x3ff2b0a3b40dde56, - 0xbfebcad88f15a0f4, 0xbff7b441a64963ef, - 0x3ff5527da941b557, 0x3fe30b80bcdeec5c, - 0x4000613dd2758a83, 0xbffe74841bde6b7a, - 0xc010ed37fe57d8c2, 0x4001049dd08c088b, - 0xbfe96783a7db12bf, 0xc001ee0b623bf51c, - 0xbfecc6d39e21bfa4, 0xbfe33a51fd30a7ee, - 0x4001112ac99bab1f, 0xbff3f5a2809fbc6a, - 0xc00504e32490d7a8, 0xc0027ce15222d9d6, - 0x3fd93f4b20e83b92, 0x3fb7356a03921e10, - 0xbff78d05d76164a3, 0x3ff44f8677921057, - 0xc001630adb28447c, 0xbff69ace97c8a79c, - 0xbfb8cbd4dfdc3b90, 0x3feaa264fa53a07a, - 0xbfe7d0ce3ce19358, 0xbfd32de78db3952c, - 0x3fff31cdc6642f07, 0x3fef234b77a32535, - 0x3fd503d07bd45f44, 0x4007109dde33d582, - 0xbfea4b682b4250f4, 0xbff609a90bb5bb0e, - 0xbffe153ae83733f6, 0xbfdbe3a68bfbef10, - 0xbffcbbc158c9ebac, 0x40003a7dc4168314, - 0x4005f4b7fc1f0ddc, 0xbfea6fa965a7c30a, - 0xbfef0475e37532e1, 0xc00be796e8886f24, - 0x3ff6c18b6c85d7e6, 0xbffb16a9765f38fc, - 0xbfd89661842028d4, 0xc00095ae2a4dad4c, - 0xbff74877c91dd18b, 0xbf8ada0e5105b380, - 0xbff3b54388012242, 0xbfe023ed3dfbd03c, - 0x3ffc19b5e330c83c, 0xbff07e983f6955b7, - 0x3fd198a715a7f516, 0x3fe4c353f593fe68, - 0x3fe80fd1a8be6788, 0xbff16ccbfecec8f4, - 0x3fc1c1670d16cac8, 0xbff73fba28638047, - 0x3fed6b335085618f, 0x4001064bfbc72c0c, - 0xbf9501cda6016ba0, 0xbfeaa05d17d45017, - 0x3ff22be48ed9d14d, 0x3ff1eb9110ed9b4f, - 0x4000fbf4c88632d8, 0xbfef2bdc58227644, - 0x3fd72f7c0985e474, 0xc00021d7163ec975, - 0xbffa22cae77adbff, 0xbff085269546da31, - 0x3ff024afa4cefa80, 0x4001d5e05ccebd9c, - 0xbff384f7325a089e, 0x3fb3ae7aef0a08d8, - 0x3fdc04854dcd9d99, 0xbfc02dbd44b59980, - 0x3ff73ea50c95958b, 0xbfff0a60a8a5b913, - 0xbffb6b010567fe30, 0xbfd11ed9cccd17a6, - 0x3fea622b846c85c2, 0xbff610773d263ee5, - 0x3fec0ef01b2a61ff, 0xc0055ec40a3eacac, - 0x3ff404e6f1b8760e, 0xbff3f4227e6f414b, - 0x3fe4a611f8dc66f9, 0xbfc0b072f4afcf14, - 0xbff9b1f1ac6143e0, 0xbfe4da08b4f0eed6, - 0xbfcc3bde5e393a40, 0x3fe0dce0235be74d, - 0xbfd1a48080c5bfec, 0xbff67a406bf67722, - 0xbffa56a84217a7d3, 0x3fe9b305ef35d62c, - 0xbfff25507a46afc4, 0xc005f2dbf8151059, - 0x3fbbd45c15a00e70, 0xbffb948d0f00b49a, - 0xbfa98d8be451b040, 0xbff7c6ab6ce7f3e2, - 0xbfe9c80d38506285, 0xc00120272f85af38, - 0x3feb44f74fa5703b, 0x3fefda4c372a94b8, - 0xbfefda810fa56c4a, 0xbfd15acd0f005758, - 0xbfd2986b5eb70fe4, 0xc00cb29156877ab1, - 0xc0008cbcc6e9b3e6, 0x3fe99cedf4756c04, - 0x3fe71c5a73d511e8, 0x40058e75f4da0382, - 0x3fe5ce650bdd3c35, 0x3fe3b19afa7a8d78, - 0xbffd406209ff5dc2, 0x3ff18ede66174abc, - 0xc00392dad643b644, 0x3fe1582bc7a1dbf3, - 0xbff4bd85ed0507a0, 0x40061acea82ef2fc, - 0xbfd0c96697904938, 0x3fd85e24381b6018, - 0xbff4981dde8c0061, 0xbfea2bade50f9e66, - 0x3ff5ddd465988090, 0xbfe5c98d9b8a4d26, - 0xbff53c3094ef0ee2, 0x3fd9eab9fbb4438c, - 0xbfefe32b15bdff57, 0x400103d0d4c4c632, - 0x3feb02dda79b5a84, 0xbffa67ca670c354e, - 0xbfd0daa4593d7f64, 0xbfdd04dfa9ed2c22, - 0x3fc1a2acaa3c71ec, 0x40002842a7d1e544, - 0xbfece582c20938f2, 0xc011236e0721a4b9, - 0x3ff39247125752fb, 0xc00526905ed66779, - 0x3fd5e375d024b8df, 0x40047bb805627b63, - 0x3ffd9000f9f1a1b5, 0xbfe7b007dd05acb0, - 0xbfe99c29a05a6ab2, 0x400088c791d3451d, - 0x400000e5874461ec, 0x4001572f2a70e98e, - 0x3fd3632b47502823, 0xbff207e60480255c, - 0xbff0a9279b6d8428, 0x3ff528d0dd0a51d2, - 0x3ff9a91383c8d8cb, 0xbff22c271887d248, - 0xbfcd4c9ebecce7fc, 0xbfdaddf4110ea2be, - 0xbff0a806f71098d1, 0xbfaed4088fa4cd50, - 0x3ff3cc49e3b0d4f8, 0x3fde16ebab7ad269, - 0x400115a71bf25160, 0x3fec8fc2ee45c88e, - 0xbfe7844b12ffb018, 0xbffa27a4c35fc10a, - 0xbff37dcbe77714cb, 0xbfee2c979504a24f, - 0x3ff2c3c293a7d97c, 0x3fed85bd0a4ff1dc, - 0xbfa185235c389fc0, 0xbff44becfb72a4a7, - 0x4005746dfab8050c, 0xbfe211b787b9e656, - 0xbfd999821844ac08, 0x3fdd6342b176c4a4, - 0xbff55c9c34ba63da, 0xc009083fc8896a7c, - 0xc004725fb3901363, 0xbfe1050032b66048, - 0x3fee5642ca66b9be, 0x40077d20a2187e7b, - 0xc004096e2759a8ea, 0x3fa91c35e7f98780, - 0x3fe2c31350894360, 0xbf9bc8418424f820, - 0xbff2d7a625aa5f12, 0xbfd2b61db3a5585c, - 0x3fe76dad87f3d8be, 0x4006ed1b8a54edca, - 0x4005a7746c0bf4e2, 0xc00060e81e8b858e, - 0xbfdceaae0b119e6f, 0xbfe0c84ded28056c, - 0xbffdf5f9ef799d83, 0x3fcfd6b22f7de520, - 0x3fe257ea482744ae, 0xbff984fe4de35b60, - 0xc0121c2f0c8e44c9, 0xc00c0cfba9fa6c3b, - 0xc00044140f6875f4, 0xc0013c94b56de842, - 0x3fe3147ca3bd3bf2, 0x3fe4810a6df20dec, - 0xbff193e16ec38c97, 0xc00a264c3886cde0, - 0x3fb70720cab518f8, 0x3fb1d82287218760, - 0x3fd30362846eaa6e, 0xbff64611553bdd06, - 0x3ff0b3d2230c77c9, 0x3ffb2d58fc730b0f, - 0x3fc07fba2a01b3a5, 0xbff39d64bdb81503, - 0xbff71f57e2184a33, 0x0, - 0x3fc07fba2a01b3b2, 0x3ff39d64bdb81506, - 0x3ff0b3d2230c77cb, 0xbffb2d58fc730b0d, - 0x3fd30362846eaa62, 0x3ff64611553bdd0d, - 0x3fb70720cab518f0, 0xbfb1d82287218730, - 0xbff193e16ec38ca2, 0x400a264c3886cde2, - 0x3fe3147ca3bd3bea, 0xbfe4810a6df20de6, - 0xc00044140f6875f8, 0x40013c94b56de83e, - 0xc0121c2f0c8e44ca, 0x400c0cfba9fa6c3a, - 0x3fe257ea482744aa, 0x3ff984fe4de35b5a, - 0xbffdf5f9ef799d84, 0xbfcfd6b22f7de560, - 0xbfdceaae0b119e68, 0x3fe0c84ded28056a, - 0x4005a7746c0bf4e0, 0x400060e81e8b858f, - 0x3fe76dad87f3d8c2, 0xc006ed1b8a54edcb, - 0xbff2d7a625aa5f10, 0x3fd2b61db3a5585e, - 0x3fe2c31350894368, 0x3f9bc8418424f900, - 0xc004096e2759a8ea, 0xbfa91c35e7f98780, - 0x3fee5642ca66b9ca, 0xc0077d20a2187e7a, - 0xc004725fb3901366, 0x3fe1050032b6603c, - 0xbff55c9c34ba63e1, 0x4009083fc8896a7b, - 0xbfd999821844ac12, 0xbfdd6342b176c4b4, - 0x4005746dfab8050e, 0x3fe211b787b9e666, - 0xbfa185235c38a000, 0x3ff44becfb72a4a8, - 0x3ff2c3c293a7d982, 0xbfed85bd0a4ff1d6, - 0xbff37dcbe77714ce, 0x3fee2c979504a250, - 0xbfe7844b12ffb018, 0x3ffa27a4c35fc108, - 0x400115a71bf25160, 0xbfec8fc2ee45c883, - 0x3ff3cc49e3b0d4fa, 0xbfde16ebab7ad24d, - 0xbff0a806f71098cf, 0x3faed4088fa4cd70, - 0xbfcd4c9ebecce814, 0x3fdaddf4110ea2ca, - 0x3ff9a91383c8d8ca, 0x3ff22c271887d249, - 0xbff0a9279b6d8425, 0xbff528d0dd0a51d5, - 0x3fd3632b47502827, 0x3ff207e604802558, - 0x400000e5874461ee, 0xc001572f2a70e98a, - 0xbfe99c29a05a6aa6, 0xc00088c791d3451c, - 0x3ffd9000f9f1a1b8, 0x3fe7b007dd05acbe, - 0x3fd5e375d024b8fa, 0xc0047bb805627b60, - 0x3ff39247125752f4, 0x400526905ed6677a, - 0xbfece582c20938fa, 0x4011236e0721a4b7, - 0x3fc1a2acaa3c7238, 0xc0002842a7d1e544, - 0xbfd0daa4593d7f58, 0x3fdd04dfa9ed2c21, - 0x3feb02dda79b5a70, 0x3ffa67ca670c3555, - 0xbfefe32b15bdff51, 0xc00103d0d4c4c632, - 0xbff53c3094ef0ee6, 0xbfd9eab9fbb4438f, - 0x3ff5ddd46598808c, 0x3fe5c98d9b8a4d32, - 0xbff4981dde8c0064, 0x3fea2bade50f9e5c, - 0xbfd0c9669790493c, 0xbfd85e24381b6018, - 0xbff4bd85ed050799, 0xc0061acea82ef2fc, - 0xc00392dad643b643, 0xbfe1582bc7a1dbed, - 0xbffd406209ff5dc7, 0xbff18ede66174ac0, - 0x3fe5ce650bdd3c3d, 0xbfe3b19afa7a8d77, - 0x3fe71c5a73d511f0, 0xc0058e75f4da037f, - 0xc0008cbcc6e9b3e5, 0xbfe99cedf4756c10, - 0xbfd2986b5eb70ff9, 0x400cb29156877ab1, - 0xbfefda810fa56c40, 0x3fd15acd0f00574a, - 0x3feb44f74fa57042, 0xbfefda4c372a94b6, - 0xbfe9c80d38506292, 0x400120272f85af39, - 0xbfa98d8be451b0f0, 0x3ff7c6ab6ce7f3eb, - 0x3fbbd45c15a00e50, 0x3ffb948d0f00b499, - 0xbfff25507a46afce, 0x4005f2dbf815105a, - 0xbffa56a84217a7d1, 0xbfe9b305ef35d62e, - 0xbfd1a48080c5c000, 0x3ff67a406bf67722, - 0xbfcc3bde5e393a00, 0xbfe0dce0235be754, - 0xbff9b1f1ac6143e4, 0x3fe4da08b4f0eed7, - 0x3fe4a611f8dc66f8, 0x3fc0b072f4afcf08, - 0x3ff404e6f1b87609, 0x3ff3f4227e6f4152, - 0x3fec0ef01b2a61f6, 0x40055ec40a3eacad, - 0x3fea622b846c85bc, 0x3ff610773d263ee9, - 0xbffb6b010567fe32, 0x3fd11ed9cccd179e, - 0x3ff73ea50c959588, 0x3fff0a60a8a5b914, - 0x3fdc04854dcd9da6, 0x3fc02dbd44b59978, - 0xbff384f7325a089e, 0xbfb3ae7aef0a0920, - 0x3ff024afa4cefa85, 0xc001d5e05ccebd9b, - 0xbffa22cae77adc02, 0x3ff085269546da2c, - 0x3fd72f7c0985e470, 0x400021d7163ec974, - 0x4000fbf4c88632d4, 0x3fef2bdc5822764f, - 0x3ff22be48ed9d14c, 0xbff1eb9110ed9b4b, - 0xbf9501cda6016cc0, 0x3feaa05d17d4501a, - 0x3fed6b3350856199, 0xc001064bfbc72c0d, - 0x3fc1c1670d16cac2, 0x3ff73fba28638046, - 0x3fe80fd1a8be6784, 0x3ff16ccbfecec8f0, - 0x3fd198a715a7f50c, 0xbfe4c353f593fe74, - 0x3ffc19b5e330c838, 0x3ff07e983f6955b8, - 0xbff3b54388012242, 0x3fe023ed3dfbd038, - 0xbff74877c91dd18f, 0x3f8ada0e5105b240, - 0xbfd89661842028f4, 0x400095ae2a4dad4a, - 0x3ff6c18b6c85d7e0, 0x3ffb16a9765f38fb, - 0xbfef0475e37532f0, 0x400be796e8886f24, - 0x4005f4b7fc1f0dda, 0x3fea6fa965a7c312, - 0xbffcbbc158c9eba9, 0xc0003a7dc4168317, - 0xbffe153ae83733f7, 0x3fdbe3a68bfbeef4, - 0xbfea4b682b425102, 0x3ff609a90bb5bb0a, - 0x3fd503d07bd45f5d, 0xc007109dde33d582, - 0x3fff31cdc6642f05, 0xbfef234b77a3252c, - 0xbfe7d0ce3ce1934c, 0x3fd32de78db39530, - 0xbfb8cbd4dfdc3b88, 0xbfeaa264fa53a082, - 0xc001630adb28447d, 0x3ff69ace97c8a799, - 0xbff78d05d76164a4, 0xbff44f8677921058, - 0x3fd93f4b20e83baa, 0xbfb7356a03921de8, - 0xc00504e32490d7ab, 0x40027ce15222d9d2, - 0x4001112ac99bab1f, 0x3ff3f5a2809fbc70, - 0xbfecc6d39e21bfae, 0x3fe33a51fd30a7e4, - 0xbfe96783a7db12c4, 0x4001ee0b623bf51c, - 0xc010ed37fe57d8c0, 0xc001049dd08c088d, - 0x4000613dd2758a82, 0x3ffe74841bde6b7e, - 0x3ff5527da941b558, 0xbfe30b80bcdeec58, - 0xbfebcad88f15a0f7, 0x3ff7b441a64963ed, - 0xbfe9a2992454ff4c, 0xbff2b0a3b40dde5c, - 0x3ff2ddbc8061f34a, 0xbfecd88ba137a75f, - 0xbfe3ac6bf3bc1ef6, 0xbff0ce6b86dd7372, - 0x3fe49efaf720c09e, 0xbffbb20f96acec94, - 0x3fe4a0e795fcdf7c, 0xbfed39520dafae64, - 0xbfbd2c738991fb00, 0xbfe1ef997cd99187, - 0x40025e1c21dff324, 0xbfee710c28cf96cc, - 0x40017fb9b184e93b, 0x4001966541bfbd0e, - 0x3ff7e3a137991a8b, 0xbfc8a261f0e98d90, - 0x3fcb246e51658d74, 0xbff5e7de60b825ec, - 0xbfacbb0556ee16d8, 0xbfd94bd690e114cc, - 0x3ff846aa6e6e45fa, 0xbfd1ea7d34c080e0, - 0x4002c90b97e4cd24, 0x3fe820a4982c5a43, - 0xbfc999a1047ce848, 0x40019f180aeb33c2, - 0xbff9f7c3871c14b2, 0xbfa371143a22e9a0, - 0xbfd68798fe7c543c, 0x40039b47a501a8c4, - 0x3feb6e9855457072, 0x3ff5170f9b9b65fa, - 0xc0023c03576c4208, 0xbfea85f86c51933e, - 0xbfdc2b3c04541a4b, 0x3fdd81ff0511a686, - 0x3fec988e46c70fcf, 0x401059dd7af06ea1, - 0xbff03b7d5c4cb87e, 0xc000f2d7e5dd616a, - 0x4009199b2ebb0144, 0x3fec07ed05cfebe0, - 0xbfd3cf54f0726d6b, 0x3fc385d44218c824, - 0xbfece8fb41a2441c, 0x3ffb659fbf8c5dbc, - 0x3fe01f0a4c504e8e, 0x3fe16a465af0dbae, - 0xbfb008730fd06938, 0x3fff01265beb072e, - 0x3ff6042f5cbe19e3, 0xbfb9723c629410f8, - 0xc000893a4a1a9f1f, 0x3fe3e203ff0c81f6, - 0x3fe6ccd3dbe97941, 0x3ffba9d5395f1cba, - 0xbfced48bde8e3492, 0xbff410572ab1739f, - 0x3ff934e75f107502, 0xbfd732d86193e981, - 0x3ff4a3f30138d959, 0x3ff4ea7dcb281b4d, - 0xbfb52720bb9b0aa2, 0x400253beb2677701, - 0xbfee0f5737ebd294, 0x3fef9ec04a52adbd, - 0xbfeb6ede9db3d7a0, 0xbfdcd97d72e748ec, - 0x400d0c3d87af11f5, 0x3fefd29ab3ecf3c9, - 0x3ff8fc1e39242d5a, 0x3ff3363c2acf888e, - 0xbfe83024a398be54, 0x4002c1169b7a04c5, - 0xbff80908beccee3e, 0xbff926d0f3f72965, - 0xc005ce4a80f1f043, 0x3ff14366a1a2b33e, - 0x3fe1ec42be5d6a30, 0xbff983f667728758, - 0xbfd5f654a794fe41, 0xbffbb87bd2f9d617, - 0x3fec5c50cbd44eb0, 0xc0099288b39a4902, - 0x3fc8012a84ba2c46, 0xbfdf0561d16d9c4c, - 0x3fdb9ce52ad6e3f8, 0xbfe9246d94f8f44a, - 0x3ff131064ca4590a, 0x3ff381534f8f20c5, - 0xbfe465aff93aef48, 0x3fd14308a8a808d5, - 0x3fe092855133a077, 0xbfed95ee61aeb66e, - 0x3ff720873f89a588, 0xbff1603b982eb49b, - 0xbfffbc217f295d11, 0xbff87584e97a16ba, - 0xbff0bac3e47f737f, 0xbfe63f9f3a1e024d, - 0xbfff83fca9ccd916, 0xbff98ffa10d4376c, - 0x3fe12ac60848a933, 0x3fdea4216223064e, - 0x3ff0e33b3cdc7346, 0x3fc921c5874f69e6, - 0xc00902a2c504ef85, 0xbff68fdc55637333, - 0xbfe72ddae1be8774, 0xbfe9bb9f77012227, - 0x3fffffc3343f16d8, 0xbfc584b60769ec90, - 0x3fd495a57e82b8ac, 0x3fe87bd55cac597c, - 0x3fcd3d22b1aa4518, 0x3fd50e797f8a04c2, - 0xbfddbabb876782f4, 0xbfff6cabd84fd1b5, - 0xbfb85fc12966c960, 0xbfe245ca81373884, - 0x3fff412478d185e8, 0x3ff373964a2048e9, - 0xbfe222a2c4ec7da4, 0xbff720c81d9c6a14, - 0x3ff4ad29a19f562c, 0xbff607c65095c2a8, - 0x3ff661d27f2d3993, 0x3fe1e972a964f418, - 0xbfd614014a5c5364, 0x3ff0a0d452ae8338, - 0xbfeda63ed8737350, 0x3fcfdaece77b7478, - 0xbfec2155728f91b0, 0xbfe00b8c6d581a08, - 0x3fd93def1aa7a6b0, 0xc0016e2b37b3574a, - 0xbfea8aeda7ce85c2, 0x3ff358969c1a135b, - 0xbff62f626422289e, 0x3fa8fac2ef72e440, - 0xbffd096da95a4a4f, 0xbfc90f2c619eb01e, - 0x3fb752d14cb7d7ac, 0x400be5b91b7c9801, - 0xbfeba48195b5aab6, 0x3fdc8e550ab648b4, - 0x3fe6efcf5f17e0bb, 0xbfdc17264eb5856b, - 0x3fdccf74a6e8974b, 0x3fc3525c8bc62824, - 0xbff2e88b40afd36e, 0x3fd376d4f05ba612, - 0xc001d1e31f834d10, 0xc004205471f1ee84, - 0xc004f4e1fa369d5a, 0x3fff6dc1ba1d93fe, - 0xbfec45ecfa5a7020, 0x3fdaaf5bb1a99f1c, - 0xbfe664ca5f20b14d, 0x3fef686c984eae41, - 0xbffa4668420523df, 0xbfb1a8678e6975f0, - 0xbff22d8f5ff45f91, 0xc00448358e83f814, - 0x3ff1201c2d3ee100, 0x400199fdd604f2bb, - 0xbfb10c9e6b3db146, 0x3ffb1b7217e85489, - 0x3fe3f42a7e5e48aa, 0xbff2a937b76490d8, - 0xbfdd19dbc9acf6f6, 0x3feafc83f1309c92, - 0xc00043ace589ba16, 0xbff0f1fe6e27f7a8, - 0x3feb26e2b678b226, 0x3ff60cb709d2471b, - 0x400c02fcde5228a8, 0xbfe259de9438547d, - 0x3ff1e5044e7703a7, 0x3fdc78a583f78608, - 0x40082e457b525474, 0x4001a569573954d7, - 0x4001f00fd777d30d, 0xbfea3c64510961e0, - 0xbff1c5ea8f08e1be, 0xbff2e2d02e3ad892, - 0x3ff9a33fe9a3c0ac, 0xc0000343b2be15a3, - 0x3ffad0ab205e2e3e, 0xbfe243df4257443c, - 0xbffb99e8efb667e8, 0x3ff0035acfe3d906, - 0xbff12c6736448e36, 0x400740cadcdd8f38, - 0xbfbed419ffa153b6, 0xbfca6e101b24c328, - 0xbfd90242a386bfe4, 0xbfe3583ef4e5a3a0, - 0xbfd4c04a28f61dc8, 0x3ff350fb5ce19d10, - 0xbff1b9b830e9c3a2, 0x3ff206d538b3ea6e, - 0x3ffe30d97ff65e10, 0xbffdbec1361c072f, - 0xc012da791a910387, 0xbfd3f1d5f388b020, - 0xbfe5a3a0f0251b28, 0x3fbf28424759e81c, - 0x3fdc2a8b10b57490, 0x3fc57e986a8b2d7e, - 0xc000159995adbdd6, 0xc000339dc3c5e210, - 0xbff782d7b7b62e11, 0x3ff1da81c8f4cf59, - 0xbffd6688c90fe7d0, 0x3ff10cb01b2f41fd, - 0x3ff2f8cdec2cc276, 0x3fa0b4bc6bb17d10, - 0x3ff73051d454cf34, 0xbfe70b687d609561, - 0x3fd2ad6ee510b08c, 0xbfe9350a1d4f0971, - 0x3fddd54d017e7e64, 0x3fd25addd9bea464, - 0xbff4d9ce7b988a3e, 0x40035bba4a0bb8f8, - 0xbfddf6e428c2893c, 0xbfe3922cd98b394d, - 0xbfd51e8072a0e7d8, 0xc00dcf7c22b2c644, - 0x3feebf8c746576be, 0xc003e999332dc393, - 0x400095c67e25bfdb, 0xc00878096c4074b0, - 0x40060bae5f02ea1f, 0xbfcd608f2ac94d70, - 0x400ca4de41f7bc33, 0x4002afc3bb06908c, - 0x3fe0c4200b8c138a, 0x3fda9eef2889eb36, - 0x3fce2d9528f8a9fc, 0xbff3281f7a9082a9, - 0x3ff71bb363b1ba32, 0x3ff15ebee223a72a, - 0xc0002e1d8d6e64aa, 0x3fd48eaf92f2bc05, - 0x3ff91904e4093353, 0xbffad424e654ad62, - 0xbff939122599af87, 0x3fe652efdbaa6814, - 0xbfd31fd5a62c175b, 0x3fd5aeff3c61dad6, - 0xbfd4d9a978d3947a, 0x3ffc4ac77b56d5d2, - 0xbfe4d3f256e003c8, 0xbf97041271df1340, - 0x3fd3867d9ef54da3, 0xc00473af2eecdc6f, - 0xc005f89bc7d1a154, 0x3fff31b6eb740c25, - 0xbfd4fb783b9a60c0, 0x4004bf50f0c9fc5f, - 0x3fd1de786e138fca, 0x3fe13fddce7d72b7, - 0xbfd33399e8b3c916, 0xbff5bec62c8baac4, - 0x3ff5eafc70923f86, 0xc00be81f2221d004, - 0xc009b66ab24264aa, 0xbfb8154cb84d4020, - 0xc00caa9459fc8f8f, 0xc004a7dce9ac8224, - 0x3f5ede7e7bf82700, 0xbfd9acbca0e68cd4, - 0xbffe0b8f954dbf48, 0xc00789e13d562ec0, - 0xbfeaf851b46f6ef0, 0xbfe7890183564b7c, - 0x3ffbba8bd62f6e46, 0xbff7ea56e9a6e536, - 0x3fc920e7f0b74d94, 0xbfcda19a8a6cbba8, - 0xbff81a6c48b4c45f, 0x3ff6666651de4f02, - 0x3fe30d364cd7a237, 0xbfdf1d10cb2c595c, - 0xc0014d63d0fffba5, 0x3fd72bed96753484, - 0xbff14570920d1e57, 0xbfec342b3a0b14ea, - 0xbff0228495366952, 0xc0098f7da8eee7da, - 0xbfef198795806dbc, 0xbfdbbcf3981f95d2, - 0x3fea2cdde8391672, 0x3fffeca7c8fe3868, - 0x3fcb4cfd263ee520, 0x4010adc59b3a7c40, - 0xbfd0a6abdba2a1c0, 0xbff9f913a140d57c, - 0xc0030c2aecd8e3f6, 0xc00781c3a859ee30, - 0xbfec96a7bbe75d13, 0xbff6f278b5efa060, - 0x3fc91223fbc0ef10, 0x3ffbe8343a41ca88, - 0xbffddb0646d0190a, 0x3ff293d034a74f32, - 0x3fc491e4c2522b94, 0xbfe7c69d5eddb65c, - 0xbfe7dff06e383e2e, 0x3ff7b989894b70d3, - 0x400747716a156ba4, 0x3fec6d2645ef128c, - 0xbff45074bf7a9481, 0x3fed1ea6c2ca65a4, - 0xbffbbf7f7c7104d7, 0x3ff1657f57023b67, - 0xc004a49fc4e01008, 0xbfd0a38e1e435ad1, - 0x3ffe57a5a388c7db, 0xc00144173570830b, - 0xbffba5d3fe69d5fd, 0xbff45f84a433f39c, - 0x3fb0723acebf8288, 0x3ff5b338ad583d36, - 0x400a616177c704bf, 0xbfdb0d22f97426f4, - 0xbff419839d429d63, 0x3feba7969e3db090, - 0xc004ff4b53e193ff, 0xc00140bd2243cdf1, - 0xc001512aa8e8552e, 0xbfcd09dac3987b3c, - 0x3fe4af6ec58dec11, 0xc002e33952270480, - 0x3fe6060e054c1858, 0xbff8e77065107739, - 0x3ffa9d6c00024736, 0xc00050cb090c3e4e, - 0x3fa90d8f5cd61670, 0xbffc20351c46de3e, - 0xbff16687475aed69, 0x3ffc9bb13360bf08, - 0x3ff8037afda9ffb4, 0x3fa476360015a778, - 0x400b788e80f8c9bc, 0xbfd83a3b99f5afff, - 0x3fb1436a076cb1c4, 0xc0023981175af677, - 0xc00067a126d4f92c, 0xbfdebbfa5e439830, - 0x3fc2812cfa4f6188, 0x3ffde6770e3b8528, - 0xc002dc87781fb672, 0x3ff70fe189e5a55a, - 0x3fc1d0a823669c4c, 0xbfa913e86730af40, - 0x3fecf07da35646c8, 0xbfe8abb28aa84f7c, - 0xbfdc51c20e1387f4, 0xc0035e7800a694ce, - 0x40038f2f3e946ba8, 0x3ff2e4bccf47cb24, - 0x3ffb6302d1386d02, 0x400460818ced3070, - 0x40029ed73c954e9e, 0x3fed544c1ff656ee, - 0x3feac531122a55ab, 0x3fe3170fb1f352d0, - 0xbf9c2bc1a4781480, 0x400481f0c673dec5, - 0x3ff49dd6fbe700b6, 0xc01111713a51ba08, - 0xbfd76ee1316ed9de, 0x3fefa8f731733d58, - 0xc003a9e22ea28e70, 0x3fbc5ca912b26a30, - 0xbfe8ad4236fa1396, 0x3fedae08b72a79a9, - 0xbff85eaf992c8268, 0x3fe320282b97e5c6, - 0xbffb5ddeee8d8476, 0xc005c04f44d208b6, - 0x3fca48eaeb46d938, 0x3fe768f36231568e, - 0x3fe9f7813585900d, 0x3ff4a7da064aeb96, - 0xbffe7ad202b9ddec, 0xc00d9b980aee39d4, - 0xc00da77d3aa1cc4a, 0x3fea3dfe2bd73c63, - 0x3fd1118a26dd88fe, 0x3fe6992741b405ca, - 0x3fdce64283b95288, 0x3ff5f89aca4d14ae, - 0xbfafb9f92df29338, 0x3fc46e802f9e4f64, - 0x400065d17fe358b8, 0xbff78b39acd60a1c, - 0xbfc5483735bd440c, 0x400a17db6cf3f7a1, - 0x3fd9484ce812cf38, 0xbff73b29fac4efde, - 0x4000a386e819caf1, 0xc0006f11f8aaa902, - 0xbfd4b034fce982b0, 0xbff76c0d739c1f3c, - 0x3ff78d1670995ecc, 0x3ff1778c8d5c9273, - 0x400e1f99b9329570, 0x4005df8634e941fa, - 0xbff4c2be5057b01c, 0xbfe2c8eb0d821ce5, - 0xbff34a0d320c4086, 0xbfec88e60a81cf63, - 0x3ff23947d39d018d, 0x3ff052d500760b9e, - 0x3fd1ccfd9601f3fe, 0xbfdb86f0c0013184, - 0xbff21315d656cc39, 0xbfbe52923fa71f14, - 0x3febd784eb6181b0, 0x4009e6fa9ddf98ac, - 0x400b38116e5d5a63, 0xbfee29d19b609e64, - 0xbfe53eb2a4aa9bb7, 0xbfdc8f166d556948, - 0x3ff72736e3e84e71, 0xbfdf09526675bd3a, - 0xbff3f57b2cf60fcf, 0x3ffec368ff307f66, - 0xbfe73e2be1c8c756, 0xbff3ce66f2b148d5, - 0xc0053e4e9f99981c, 0x3ffc7f3cd63c6934, - 0x3ff0df6d222413c7, 0x3fe195520515a573, - 0x3feb2ce0252249d2, 0xbffb9c67d1661469, - 0xbfd6fedb2fd774fc, 0xbfe1dcfc4ce0b512, - 0x400228a750cdbcb0, 0x3fb838b09a609258, - 0x3fc4a2fcf882f92c, 0xbff8683819e36688, - 0x3fc44a6b003e616a, 0x3ffcda5eafe75584, - 0x3ff94de9bee5b8c6, 0xc006206aa6d90529, - 0x3ffd76ec340b17fc, 0x3ff7667bbb6e86e0, - 0x3ffd477697435197, 0x3ff8346379ca28a8, - 0xbfdc770da16937c1, 0x3fc6b0efdc45f2ec, - 0x3fe3ca1aec9ef9ce, 0xbffcfa77009a7dac, - 0xc009870c704b1146, 0xbffd1d9167b2d0b7, - 0xbffdf16849c9c9a8, 0xbfe7af3ddf7d3073, - 0x3fef0a3e14144914, 0x3fcaf1efd6e016b8, - 0x3fe50be6efa661e1, 0xbfd46a180bb11460, - 0xbff9e2edb55866af, 0x3ff4f4dbea7cd2c8, - 0x3ff3c68b92f35537, 0xbfec073f2420f34e, - 0xbfe68a452bcb1143, 0x40027f121aef25c8, - 0x3febe6a2bd0e6c34, 0xbfe20d59e330a3b2, - 0xc0096f39f7abdf7e, 0xbfa63daf33dbc920, - 0xbfd2f3c90f5c3ba2, 0x3fe4720fdfb91df4, - 0xbff3387e10dd6319, 0xc00ec7d4c74ba0f5, - 0xbfbbf8d2eca0cdac, 0x400424a3a9c4f1e8, - 0x3ff23921b8e0bb70, 0x3fc115ca0f828b7c, - 0xbffe261eec2ff142, 0x3ff6d9717d549888, - 0xbfc0d420e2044ec4, 0xc007a0bc40474a18, - 0xbfffe26f77c307ad, 0x3feec9f65e633dde, - 0xbffb9743be70b054, 0x3ff3a9f32f6f0b8b, - 0x3fe0d7538c56aa84, 0x3fb6296b22414ce4, - 0xbff8a34dd41125d9, 0xbfe36c634f53df6f, - 0x3ff0396d23db3a04, 0x3ff9ac20c576f6fd, - 0xc00b318186f4a840, 0x3fd5abaf6bf73084, - 0x3ffed2e19dc73271, 0xbff2c0ad8e58951f, - 0xbfe79ebfe2f9ecf4, 0x3fba82102cfb77e8, - 0xbfe1be085a3cf7d7, 0xc004cda50694f190, - 0x40029dc92d5894c3, 0xbfd6afb6572c60ec, - 0x3ff1f4449b10e05b, 0x3ff18af9bea39494, - 0x3ff6293038164072, 0x3fdfdf9ac252cfc4, - 0xbff9d1390d2cb2b6, 0x3fe958f5ca82f3ca, - 0xbfdebd85c13398f4, 0x3fd25ff35db8dab4, - 0x3ff23cafe65aec47, 0xbff8b01ead8dd307, - 0xbfe3aa1312d706e4, 0xbff72fcf68585aa5, - 0xbff7506e3744d586, 0x3fdbc9f830b07d76, - 0x3ff62fd8717c653a, 0x3fefbc6027dd9ca0, - 0xbfe04dc88a0706f0, 0xc0049b64b8b89f35, - 0xbfdf0661a28b2d48, 0x400072a8523028a5, - 0x400457cf161b39e6, 0xc00101739dd03756, - 0x3ffb5035a717a0b0, 0xbfd49fcda289375d, - 0xbfcc8ae2a162cb70, 0x3ff24f078c0f5652, - 0xbfdd094ec9ee3d4a, 0xc00a34fe501db972, - 0x3fe327d7c028836d, 0x3fdfc6ade66add22, - 0x3fdd670b8453b0ec, 0xbff989d28d1fe2ea, - 0x3fbf88377e83cdb0, 0xbfe03a9f64da63e2, - 0x4018fc992c24b60d, 0x3ff0d831b088be4d, - 0xbfef59c465543a47, 0x4000831cce427930, - 0x400c35ce985e9aa5, 0x3ff8b06a53c7de3a, - 0xbfe1b23a8f5ed25c, 0xbff09a3448cc5066, - 0xbff22c3849416abe, 0x3fcaf1e7ebb31190, - 0xbff22a8d9ada5add, 0xbff5992f27098c9b, - 0xbfe992db85fd792d, 0xbfddd84a930029e9, - 0x3fda0485a1c1d4ca, 0xc00678aa84ec00ed, - 0x3febc7d95ded9248, 0xbfdb3f5ba296d2cc, - 0x3fe1434125f44f30, 0xbfdb2616eb88051c, - 0x3ff00bad0c78959a, 0xbfd8bade9778cad0, - 0x4004e27ea760397f, 0xbfe4615a4f021196, - 0x3fe8f70fdc9237c6, 0xbff6ab6b2d155aef, - 0x3ff00365fda41240, 0x3fe77d8873919052, - 0x3fe82efa47c8e635, 0x3fe97eff5c471e3e, - 0xbfe82841bafbba63, 0xbfe199c73d233d83, - 0x3ff65364a5714edc, 0xbff7fba8022e4cf6, - 0x3ff085decdc95dcf, 0xbfe903fef786ced9, - 0xbfe2844e401db337, 0xbf8f7894205b22e0, - 0x3fc66450fe61aebc, 0x3ff06fe6762d63cc, - 0x3fdbc9038ff75f24, 0x4008e09bd90cc3b1, - 0x3fdb4c309c22fe04, 0xbfef5a4e4c2ac2b0, - 0x3ff3bb6f9d8e4a15, 0xbffb24da8f3efa35, - 0xbff3de0201e7ec56, 0xbfd19068b8931fe6, - 0xbfeb7c1e45d51b11, 0xbfdcab54a48d7b6a, - 0xbfe3f00dd20341ec, 0x3fe2bd271373b546, - 0xbfe81ede88104005, 0x3fa2697ae6f53220, - 0xbff350c0481ed79f, 0x3fdb9657f972eca8, - 0x3fedb78b3f7d97d5, 0x3fe4437dbf88b8c1, - 0xc00558d477403c27, 0xc00280aa7f8d4361, - 0xbffb4a2456d8fd20, 0xc0023a9c19d8d168, - 0x3fc49cf2c080cb64, 0x3feaa8df341af3f6, - 0x3ff7e5312385a363, 0x3ff5da51ad3b645a, - 0x3ff624b4a6541690, 0xbff7e37412568a8e, - 0x3fb416123098c7c8, 0xbfe6c51c6b6e81f0, - 0xbfe29e7806506dbf, 0xc00284f1b84788cf, - 0xc0090cfca0766501, 0xbfe6528428520a82, - 0x40018f03bee2fbb6, 0x3fe02930941494a0, - 0x3fc1172c335fe1f8, 0x3fcadce0c684ee24, - 0x3fb4b8265c4257ba, 0xbfe6e5dc02739408, - 0x3fdcaf55ab015a78, 0x3ffef8ba165dc760, - 0x400340d7795f6718, 0xbfe18e484d697d10, - 0xc00489ea5031e3c7, 0x3ff6807502d8324e, - 0x3fea6e82530e652e, 0xbfeb0e769e0c1752, - 0xc001c60612e86064, 0x3fef11bb43dae114, - 0x3fe53c0928f9b1de, 0x3ff3612f9955847a, - 0xc00acff017db9a8a, 0x3ff44758b85cae48, - 0xbfe7d5a11310e4c9, 0xc005a9a00ebe60fa, - 0xbff37baaba0e2170, 0x3ff42b97f40b0982, - 0x400645dedff4ca08, 0x3f8db6c832064480, - 0xbfffb2e04509dfae, 0xbffcedd5b696fa92, - 0x3fd768711b1b1ebb, 0xbffd452a165f2a98, - 0xbfe0e6bb8659c276, 0x3fe3ce34f6d969a9, - 0x3fefd310fac86f12, 0xbff78d44c86bffd4, - 0xc00168017bc3b06a, 0x3ff3508306d2cd69, - 0xbfd72d2d49bb18fc, 0x3fee2dfa8f6943c4, - 0xbfd177dfff040fbe, 0xbfb2367cc8d7d940, - 0xc0012394436dc7ba, 0x3fc20abf1d5fd670, - 0xbfd90625f1fa6012, 0xbfd6c2f13f7696a6, - 0xc006dd0d158320c4, 0xbffbc76a788ff87e, - 0xc0011615e1839963, 0x3fec650d02aebf74, - 0xbfcb1451e7c301e8, 0x40010501525e1e06, - 0xbffddd67142cd48e, 0x3ff6446d3b7481fe, - 0xbfd65065a7d038ec, 0x3fe45cad42ad0ed2, - 0xbfe7e38503b5b676, 0x3ff71e3abef49e32, - 0x3ff54bda0258fcce, 0xbfd55dc0d5573c90, - 0xbf91fe7266714430, 0x3feaa7bfa0808394, - 0x3fdf4e6d57c697f4, 0x3ffb23b5f7dd20d5, - 0x3feaca5c34d0f109, 0x400101097841cad6, - 0x4001afca18092fb2, 0xbffa7fb1ad2e1f1e, - 0xbfea4e3f7a790abc, 0x40027be296b5caf4, - 0xbfd817bb6a9197a0, 0xc00560db3473b223, - 0x4009900008b28966, 0xbff89d9e5b410040, - 0xbff292a86c1b400f, 0x400864bd8d9782d2, - 0xbff778bcf01abd7a, 0x3ff5b447e7d619ea, - 0xbff09847036b3083, 0xbfea14d834996148, - 0x3fe6eee4a7e7d671, 0x3ffa59870075a81a, - 0x3ff003233d0dcd42, 0x3fe976ce3968e2c6, - 0xbfed4dbf18936acc, 0xbffc9eb3ff071845, - 0xbffc4a2f6268350a, 0xc0005f6bf094e021, - 0xbff2eab1e787e2c7, 0x4005191d3a464e84, - 0x3fed2a6b1d0f4b25, 0xbfe63726b7d195f6, - 0xbff6e31646128c6d, 0x4002e796fc792c6a, - 0x3fe764f738c53ba4, 0xbfef6e28714b8ccd, - 0x3fac0bd7954c8a60, 0xc0046e16a1820cb8, - 0xbfc6d3baccc251c8, 0x3ff279ae06b9bd5a, - 0xbfdbe26cf91ee4fe, 0x3fe77daa8d3af5a8, - 0xbff45df97ca853f6, 0xc00343ec4129c5d5, - 0xbfd602a92d9b7c20, 0x3ff93ab7a63e3807, - 0x3fa2eed1ecf40c60, 0x3fc306a105985c60, - 0x3ff1d10512660144, 0x3fe13a8cd43c438c, - 0x3ff282bb85865893, 0x3fde6140e8c15e2b, - 0x40041e3b6aaf5781, 0x3fe93b8f75110dff, - 0xc00132534fe5c91a, 0x3ffc29235efc08e2, - 0x3ff58d8c2228a8d2, 0xbff91e75aba3d505, - 0xbfd3e97982837418, 0xc00030bdd4144e9a, - 0xc0066506bcb5cec6, 0xbff0c116036ed75c, - 0xbff19d4bdf0505e7, 0x3fe39a42dd1bc652, - 0xbfe2f352f1f0170a, 0x3ff16e288d6db0b8, - 0xbfd227f5443fb334, 0x3fce626ba69d28ae, - 0xbfc6110443722fb0, 0x3fff82175ddba2e2, - 0x40120ecbe5987581, 0x3fe8da2f128ef03e, - 0xc001838faaa602ba, 0xbfe0bf8f72e80fa7, - 0xbfe7be60afd25ad3, 0xbfe2fec7c036f096, - 0xc0022085ef34d2a1, 0xbfe264ba76b48543, - 0x400130d18119f55a, 0x3fe36645dbfea34f, - 0xbfe2388aa3df92e8, 0xbfda9f93df3941b3, - 0x3ff2f1a3bc48dce8, 0x3ff3b147c35fc32d, - 0xc00ced17a3158c82, 0xbffc8c088cfcc7a0, - 0xc002745059924520, 0x3ff74d295ec34045, - 0x3fad97eac98c2a40, 0xc0075d585eb4cbec, - 0xbfee6401ffed48aa, 0xbfd6f88204902dae, - 0xbff0f959c3f430c1, 0x400778a656117bcc, - 0xc0029ea33295ee2b, 0x3fff209b3eba8368, - 0xc002d1f5cb12bf28, 0x400e53ab6ee66d26, - 0xc0080a32baa5fe3e, 0xc0081f99a5a1596a, - 0x3ff2dba833cb998c, 0x3f7b6472bffc7000, - 0xbff78799387eb0de, 0xbfdbc5a3e9239cf6, - 0x3fc621261484ae37, 0xbfe2ebf525a3f9f3, - 0x3ff457afede5f6c9, 0xbfe90b4249ec765c, - 0xbff413ba8a13d4b4, 0xbff3d3e10b00d0fb, - 0xbff51f021e03530c, 0xc00074c06860c9bb, - 0xc004e3c5032f3bf0, 0xbffbdf8a8a20196d, - 0x3fe8841c1eab89ec, 0xbfe9b73042827f8c, - 0x3fedd030831fa9f0, 0x3ff20dd6469ba452, - 0x3fd8e48a97602fe0, 0xbff58250826eed9a, - 0x3ffebfb092aa7e2a, 0x4001975516f75c69, - 0xbff06873b80dfa0f, 0xbfcad7c6feba0840, - 0x40012fcb1ef5a93c, 0x4000d0b78e1c3dd2, - 0xc000643aa263ba3a, 0x3fe8887aac7e1fe6, - 0xbff65c6dfedf8b12, 0x3fe06be8b14b8dc3, - 0x3ff71413ee3d0a96, 0xbffdee24ff153f1d, - 0x3fcdc579074c084c, 0x3ff05e3663f88169, - 0x3ffbba867d318c4d, 0x3fe141c581257d00, - 0x3ff47ceecb9eb1c8, 0xbff0f736a9122ab8, - 0xbff1c8cdc462ce0d, 0xbfff676e307bb5ba, - 0xbff7e07f1104e8f0, 0x3fd9cb34686e702a, - 0x40080cc39df58e2d, 0x3ff4a3bcd736beac, - 0xc007cb369a7c89f2, 0xbfe7a4d6d61547b7, - 0x3fe917488e83f0a8, 0xc01848e0eb1e0ab5, - 0xbff32726ae7007e7, 0xc00592b352746e96, - 0xbfed6e4671a2f146, 0x3fb86dc107ca3178, - 0x40074955c5a2d909, 0xbfe42b5989c76208, - 0x400a739255b5447d, 0x400b4a92e58f94eb, - 0x3fde63d07f2f0bd0, 0x3fe4c2a61b35d874, - 0x3fd7ded66915af16, 0x3fe4398da7f88d75, - 0xbff5c19814d499e4, 0x3fd74f1f355cd9a0, - 0xc00015eedff1a4d6, 0xbfba7dbc7ef84b14, - 0x3f9295fd551cd6b0, 0xbff7158f66ba897b, - 0xbfd62796039ad352, 0xbfefc04c2f9d5f40, - 0x400716dbbaea0d76, 0x4006bfabb229b9d6, - 0x3ff395178eeba088, 0xbf95c71b41483c00, - 0x3ff06c89c6cb11af, 0xbfe4c2c2ab0f2c80, - 0xbfe22205ae10697a, 0x3ff3fa13daa6f53c, - 0xbfee6f5b20c6efef, 0xbffb99be46fd9ba1, - 0x3fdfbb214057f7f8, 0x3ff8287094b1e3ec, - 0x3f9da21ce57b2a60, 0xbfebb877969b1726, - 0x3ff9f752933f1c34, 0xbfed2e72287ebe02, - 0xbff60a9cae40c6fe, 0x40086629975a90f8, - 0x3fc0ca38807cbcd8, 0x3ff49b36013977d0, - 0xc001669348aba292, 0x3fd70b98c1ae3642, - 0xbfa19ad11524bfc0, 0xc002818c0348182a, - 0x3fe644081f9c2ceb, 0xc0028cd881d3e40a, - 0xbfe50f212952adaa, 0xbfe4ef9940529cba, - 0xbff13b166a74c7f3, 0xbfd31c0248164e79, - 0xbfff1b70a78689c5, 0xbfbfdc1ce9a2fea8, - 0xc00b4b5053fa9864, 0x40010d5015b78da3, - 0xbff04b77c353ac98, 0xbff0f03f087a417c, - 0x3ff4b4079583ed54, 0xbfe720e332f43d88, - 0x3ff90654293300c1, 0xbfe0983acc0e123c, - 0x4000ce41a764a65a, 0x4001b0e43319a67a, - 0xbfdaa09e917d7df7, 0xbff21081caed5b60, - 0x3ff213c3924a0698, 0xbff2ab72846d0a8c, - 0xbfd4439ffccc027c, 0x3fde1256237f7324, - 0x3fead0d65a4f5d3c, 0xbfff0bc0e62195b8, - 0xbfed77c2bcfad2e4, 0x3fdbe050f9e0ca54, - 0x3fe06dbb7d27a35e, 0xbfc5219350295600, - 0xbff5a64e2ac6e60e, 0x400f51f01a7746c2, - 0xbfee4aba1764a514, 0x4003dae423e715f6, - 0xc002f9b80e3aec13, 0x401323c83e589ed6, - 0x40009b18a9b32fcb, 0x3ffd8e6dc32c98ca, - 0x400a638c1b461ddc, 0xbfe49dbd345a450a, - 0xc00685d9f76af322, 0x3ff417bf1b9631f3, - 0x400f43ec91accde6, 0x3faa37a1b7800e90, - 0x3fc458dfbdde99ec, 0xbfec5ec65307fbdc, - 0x3fec699ac69bd6f2, 0xbfff23298da49594, - 0x400ee355707a6d84, 0xbfff0f93fd3db7af, - 0x3fa74779cb0802c0, 0xbfe0f5610babef86, - 0x3ff1c66c8e30ea4f, 0xbff1f158ef2f170b, - 0x3fd590c9b08e28d2, 0xbff6ddedc49df1a1, - 0x3ffc005b53314877, 0x3fd4409994e8bc7a, - 0xbffc6e05ab11c8cf, 0xc003a543dfad928e, - 0xbfefb134826ad55b, 0xbfe41c44930f8f7a, - 0x3fe26e7e8073a2f8, 0x3ff36c3fc06bd450, - 0x3fcbfcc9f52ad510, 0xbfd5bb29cdcce120, - 0x4016e05b76882a47, 0x3fe5916719f59e7c, - 0x3ff681fe383054a0, 0x3ffbc1fd7809dffa, - 0xbff93534632d3305, 0x3fd857b12ed21ed8, - 0xbff874f5311e1898, 0x400817b5a2642c42, - 0x3ff39caabe11f422, 0xbfee07dff0af6036, - 0x3fe356a95f5f6440, 0xbff1d89c086ab03e, - 0xbffc2aef6341228d, 0xbfae912ae2dcefe8, - 0xbfe1fba4bc78e3c0, 0xbff69b96e7ebce78, - 0x400cc07edb6db228, 0xbfc3604ccf8c1ffc, - 0xbff8b72f27a36a3e, 0xbfd6f2ae4f251312, - 0xc00148c0bc82b3df, 0x3fdba6357c5c22ee, - 0x3ff56d653e3810dc, 0xbff9deaf1d2f989e, - 0xbfd3b52f1a3c7280, 0xbffb360c421d3c55, - 0x3ff9473127ef152a, 0xbfe1972501c88686, - 0xbfe421375c04562b, 0x3fe5e38b30866f66, - 0xbfeeeb95e0bb1775, 0xbff2f5068e19c6e8, - 0xc0020401cc7d1d7a, 0xbfe719a98875051f, - 0xbfddd6a23f855556, 0x40056925c09f7690, - 0x4000f0493b02e0bd, 0xbfb917930bbb0220, - 0xbfd7e12c6c38e660, 0xbfacbf5d2b1023b8, - 0xbff4e60445c2a79a, 0x3ffa3cb99c16330b, - 0xbff64d3daf149b10, 0x3fe467a91ef2d0be, - 0xbff391cb65e3a31c, 0xbffc66ee080d8089, - 0x3fb0db2a567dae00, 0x400572417b907b3e, - 0xbff0cf7662b74d67, 0xc0040d44fadf01ac, - 0x3ff5e084c83be076, 0xbfd288fb3b21b417, - 0x3fdd3d0aeb4a27db, 0xbfb30cb0d40091f8, - 0x40039cb2e688ed99, 0x3fbe8ed06935d110, - 0xbfc90d29b0ea066c, 0xbffcea1f5083a02d, - 0xbfe2b0fb1346d26d, 0xbfc911181bdede78, - 0xbffd9ac24aed808d, 0xbffeec5a83d44f86, - 0x400904b59774bbb4, 0xbfca70d30e086168, - 0xbfd727d9e7c6f3db, 0x3feb95c4c3cf5ff7, - 0x3fe557e0686cae12, 0xbff284fb1500b4f0, - 0xbffc177dbef329ca, 0xbfe9016d48be7c12, - 0xc006cf3510a23aea, 0x3ff764c1912d4c8e, - 0x3fe400b0a22ac753, 0x3ffbc59446ce08a4, - 0x3ff4d5c3b594ca20, 0x400089cf559bd650, - 0x3ff1d858b38b211d, 0xbfe80c3f7ad48a14, - 0x3fe56462d3ef1914, 0x40144cf2d5f65336, - 0x3ffa07b8e7ddb6eb, 0x4005d7e06f60ffe0, - 0x3f90b8ab37908fc0, 0xbffa4b622a818ecc, - 0xbf855bc3d02a7d80, 0xbfc731f773b6ba10, - 0x3fff33e955cedcf3, 0xbfd046b5a257070e, - 0x3fe3b7b37b493d7a, 0xbfbfe34e0d241532, - 0x3fd19b367546ff18, 0xbff4029fe777122e, - 0x4002d27465953850, 0x3fc843250895cd90, - 0x3ff69fa2017f02d5, 0x3fc210fcf7c89ee5, - 0xbfe07a3952a9a773, 0xbfff05502ec0d670, - 0xbff7ca2157a8a7c6, 0xbfe38daf6dbb0f85, - 0xbff20fdcb69aa5a3, 0x4011234ec3a7af1f, - 0x3fca541da11c9407, 0x3fe1f3ee3e6591e0, - 0xbff6b4063fb21847, 0xbfd2f4a32764c7b6, - 0x3ff955e30928f4f0, 0x3feb36265fc57d52, - 0x3fe7d786c108eddd, 0xc0020b6b45f759a2, - 0x3ff82e7898247d9e, 0xbfd28da9db480ff4, - 0xbfa0ca21ed51a920, 0xbff530afa24f6d96, - 0x3ff6f4b55e89115b, 0x3ff4d0c0cebf047e, - 0x400fb5b25aae477a, 0x3fd77a3a0ce26b24, - 0x3ff09f36e51128ea, 0x3ff6ac338a4c7c8e, - 0x4001af84e3344ab8, 0xc00a96b0363e700a, - 0xc009e482052bfff3, 0xc000b061f4f95de6, - 0x3fdc8a9cb6edcf49, 0x3ff006e6a4af786f, - 0xbfd519c76ac6d1c0, 0x3ff0ae1ac76595a9, - 0xbfcaec617e95702a, 0x400b7f5e7dbb66ac, - 0xbfe382429b5fffb0, 0xbfe57f52204e0d7e, - 0xbffca29f3b7b51ac, 0xbfcff5eadb03d704, - 0x3fd2cdc43eef2080, 0xbff6c84bcd9e2b18, - 0xbff9e698fcaef56b, 0x3ff8d83891065d3c, - 0x3ff01025bb5eade6, 0x3fe468ed593b05f4, - 0x3ff6ec2705709d98, 0x3ffa4e7adfa2049c, - 0x3fe19cdea924f260, 0xbffa8b0e2570519c, - 0xbff7f6176133751c, 0xbfed6271caee4277, - 0x3fff77ce3352b431, 0xbff78ee54a56f4be, - 0x3ff5ee906e8f0696, 0x3fe6b44f7a016246, - 0x3ff1f78ef78132cc, 0xc0025ea046d424d8, - 0xbff4805a4fade0d0, 0x4008f9873458b170, - 0xbfdf9a12815ae892, 0x3fb854924840e54c, - 0x3fc26aa661e18b20, 0xbfecd60bfa274cd4, - 0xc0066b81d0a7ebd6, 0xbfed1e60b4f7bfb5, - 0xbff9e7bcd7222392, 0xc00b78303725e7fc, - 0xbff93067daae8867, 0xbffe4137567f9e79, - 0xbff822a69c7130e4, 0x3ff3d4bd0540d798, - 0xbfb480aade3a5ac0, 0xbfe5b51baeed96f4, - 0x3fb07d3ee57fe420, 0xbf8bde2c253b85c0, - 0x3ff7921b99c8e2d5, 0x40011bd586e5dc91, - 0xbffd17f3606fa631, 0xc000e30556c47162, - 0xbff5511fb65726fc, 0xbff9322d0ad673ea, - 0x400131cc1804a6b1, 0xbfdb602382619caf, - 0xbfff71b28db77261, 0xbffcea0eee2f68a1, - 0x3fce0f76b39d8711, 0x3fd15e797ece57c0, - 0xbff1691c8063a8f0, 0x3ff57c612011c12c, - 0x3fc8843c1714e2a8, 0x3fe9496ab4198ac9, - 0x400b73762cccf973, 0x3ffcfc948960586d, - 0xc0027db2a9fdb81a, 0xbfeab5dd036143cd, - 0xbff0f20cfa89a35f, 0xbfe800bf37564d21, - 0xc00de447908fb19d, 0xbf8424635955f980, - 0x3fffb9a7810fef40, 0x3feb8710d042c2bc, - 0xbfe9af21fcdbfbf5, 0x3ff010a0b86c221f, - 0x3fe7f18e9a3dfa68, 0xbfdfed6f46b8e678, - 0x3fdd97fa4d78dc02, 0xbfa9ffe459539050, - 0xbffda69e66fa0fd5, 0xbff3e0de98e4cad5, - 0xbff12402b824169e, 0x3f4c811460150000, - 0xbfe851a3b5f9ad7d, 0x401326d27b15cd6e, - 0x3ffbd9c9b65596ff, 0x3fed16614af1c798, - 0xbff3e8cd1fbf7a84, 0x3ff1d8e64eedfb0e, - 0x3fb65bd145d26bf0, 0x4000454d08f767f0, - 0xbff522281326ed85, 0xbfe8713ee900103a, - 0x4006a043663d210b, 0x3ffa1bcef2bd425c, - 0x40031508fe4987d4, 0x3fd0983845e14a00, - 0x3ffbf10c3073f435, 0xc00a28e6259f5b3a, - 0x3fe118cf8d44909e, 0x4001c6425cb669c2, - 0x3fe0cc5cb18a0299, 0x3fec4fca35449488, - 0x400730c9a6a381af, 0x3ff6543d09063298, - 0x3f9ddb88acfc36b0, 0x3ffe1b384eb72ef4, - 0xbff4e162fc24f757, 0xbfca125d759c7594, - 0x3fe4b4e244c8f600, 0x3ff08474e21864c6, - 0xbffa2e3e0df7972c, 0x3fe5acf0debf8d27, - 0xbfec334e62ce2446, 0x400975d84cdab7d3, - 0x3fab4cbd947e8098, 0x400f7a6aacec0300, - 0x3ff17c1061215fdc, 0x3fe367be0de2a41c, - 0xbfc7e0ae4f92a500, 0x3ffd75654ec75844, - 0x3ff622bf9db44527, 0x3fd0c646647d5f4a, - 0xbff7a796b0b511ca, 0x3fe123473b423d04, - 0x4005be48b8122141, 0x3febcd4b733025dc, - 0x3ff2aea1c007e932, 0x3feeedcb36e983a4, - 0xc009b8ab885cacff, 0xbfcfbd5c96986f4a, - 0xbffac4b8faf3700c, 0x3ff3fcd2b4920234, - 0x4005f0a610869850, 0x3ff5b0a44c842291, - 0xbfd05c8569ff6686, 0x3ffa89d7b0a2b4e9, - 0x400102cbb5454043, 0xbffec057e6945f43, - 0x3ffc60d1b968ae28, 0x3ff189bed5f8f87f, - 0x3fd3b0ab7cf27400, 0xbfc03854840b2024, - 0xbff5ca4a71bf60fe, 0x3fd60f646633a34c, - 0x3fe93f7e8d7f57a5, 0xbfffd5cb45bc95da, - 0xbf99d2d7f2d009e0, 0xbfcbb5bb080de0f8, - 0xbfee7df494405d11, 0xc0021df316b881d4, - 0x3fed4fa5211c9ca4, 0xbfb38473a0d81b90, - 0xbfe1e4b1e5e12630, 0x3fb02cc96a702e00, - 0x4006b02ee2babb22, 0xbff5da182ec26cde, - 0xbff5b3e98cb29aae, 0x3fe957fced062f35, - 0xbfe36ce9d3468b10, 0x3fe34144fbdeb825, - 0xbff362f8fc302a65, 0xbff2eb74e95ccbb1, - 0xbff8dca0151e4575, 0x3ff3520648731ad7, - 0xbfa14288a51a55f8, 0x40004ff0b604e358, - 0xbffa9ff8701e2d98, 0x3fee78d0e6c3d8f7, - 0x3fd9b7e3e25d8ec4, 0x3fb9a45ce4dbbdf0, - 0xbfe4704bcf0c5a3e, 0x3fb8d54081c94458, - 0xc00e125934a59888, 0xbff52ce03c3dcdb7, - 0xbfe9351abd5427e0, 0xbfd3b58e16287271, - 0x3ff8cd0d5d165d7b, 0xbffd463edfd0901f, - 0x400557fc3183a130, 0xbfe62c46c611ff3a, - 0x3ff07fa3e0039d16, 0x3fe061e84bd179c6, - 0xc009e206bfb8aa75, 0xc003dd7aca3a9932, - 0x3fe921aa030acdb9, 0x4006f3c5080f672f, - 0x3fc6582c70baabca, 0xc003641c4040b8ef, - 0x3fc1ebe080c0c7f8, 0xbfeeac53e5d67514, - 0x4010c9e7b229f01a, 0x3ff472569ba88661, - 0xbffa6ab45a1bac2f, 0x40045183301f2de0, - 0xbfd33a2f95721c20, 0xbff943a78b7a8116, - 0xbff97c936aefde8c, 0x3fb718020fde58d0, - 0x40031a84b5f992c5, 0xbff3a3e46a632335, - 0x400bf10a2ba0ad0c, 0x400d17481c7e8b00, - 0x3fb3345fef43d02c, 0x3feb61388bcd3ed1, - 0xbff1ee541f8767ac, 0xbffb3011ee3b2cbc, - 0x4013b6fc15c4479e, 0xbfee286cbf9c2234, - 0x3ffd389dac704680, 0x4011793afe53305b, - 0x400337acb3aec66f, 0xbffffc968070014a, - 0x3fde4300811466d8, 0x3ff9a33f62b7faaa, - 0xc004942284f6ded9, 0x3fb3006ffd27c794, - 0xbfe17adbf18a225c, 0x3fe761ad9f75fd9a, - 0x3fef0d14e994e6f4, 0xc003e2439e701507, - 0x3ff7b75e6c044dd5, 0xbff1fe1147ca6285, - 0x3fe990c8497caa9c, 0xbfd03bff2242f148, - 0x3fec04a2059f41c6, 0xbfe357b3912b2540, - 0x3fe467e1fd288627, 0x3f9f7f3628d6a500, - 0xc00a7f4f09771832, 0x40004a90943d9a87, - 0xc003e2ac85392f15, 0xbff6acd58534994b, - 0xc0082bfc51d24795, 0xc0076144e7e59ab8, - 0xbfeacb3fcf8aa108, 0x3ff2a5275c3d18c6, - 0xbfdff2fdc04d03fe, 0x3fdf6e3fa658139b, - 0x3ffb047d29fcddb8, 0xbfd534d11505cda8, - 0x3fe7b5472a6b2299, 0xbfcb872aee0d88a4, - 0x3ffbca576de963dc, 0xbfdb5620013aa177, - 0x40069ab52a27ec17, 0xbff21c8cc14acabb, - 0x3ff5a9c01a3c7aa2, 0x400db1d7ba1a5793, - 0xbf8e85b15555de80, 0xbffe472f06ae94d0, - 0xbff4d81b3e3859b0, 0x3fc5d91ed4e1dbc0, - 0xbff59269fe687cb6, 0xbff42a588150bf96, - 0xc00857776ae9ea0e, 0x3fe04d7f1ac64b77, - 0xc0042bf02d4d3904, 0x3fe0c9e2258e3688, - 0x3febdb18039a3cf2, 0xc006be1c9e04e8e9, - 0x3ff28d411e6d45bf, 0x3fe11d2ed6a5cc30, - 0xc0037795f9b41d28, 0xbfd0d046a8a8d7ee, - 0xbfffce465c8de820, 0x4086621cae230b0c, - 0x3ffe0b5daab47d72, 0x3fe6d36a603fd804, - 0x4001dffe1c59d123, 0x3ff2305251c9ecbc, - 0x3fdaf7aee5862a6e, 0xc0012e68151a5f60, - 0xbfdd98bac67b6b82, 0x3ff645930f0bbeb4, - 0xbfa661978edd76a0, 0xbfec7790abf20782, - 0x3fe620f7d0fc1401, 0xc00b23b69a42408d, - 0x4005619dad723b58, 0xbff30a04d646eb0c, - 0xbfe1e74d77333586, 0xc0087b3a19c0165a, - 0xbffe8a6e7b1d151a, 0x3fbc61c5167118c8, - 0xbff7e71e6c24f0b7, 0xbf9d25db2bc8af30, - 0x3fd96b5618c90ec8, 0x4003942694973510, - 0xbfd9ab2aa494c7b8, 0x3fd7985ae4bc8ffd, - 0xc005dbfe4783c5b3, 0x3ff6b9961274a784, - 0xbfd62c756c442c30, 0x40027146c6295a3c, - 0xc003ad51007a736c, 0x3fdc53f1afc2dcd0, - 0xbff12f2589adeb1e, 0x3faf5c1e22e8e720, - 0xbfe35fe1ff2ce458, 0x3ff7769b8269da86, - 0xbff66b95f9cbf55e, 0x400c996483216157, - 0xbfe0cbabeb6c446c, 0xbff7b1f615afa2ce, - 0xbfe073582b16b680, 0x3ff959844fb176ac, - 0xbfcb915790f1b618, 0x3fb0ed2df566d390, - 0x3fc865ede0e9c1ea, 0xc000fde17c24d0d7, - 0xbfd2c870de880dc4, 0x3ff7826a23cb0d34, - 0xbffc600ec6844a22, 0xbfe2a5f99021ca2c, - 0x3fe97c0e8661ce62, 0xbfdde3d7aa92ef54, - 0x3f88f01af0989a80, 0xbfca85ca9c328982, - 0x4006f3d8b3627e47, 0x3fed97e13053dd00, - 0x3fb4f258920201cc, 0x3ff8dfd9646f55dd, - 0x40007f6831d81ab4, 0x400271f35facb3cb, - 0xbfe838e529e37346, 0xbfe6164120def89d, - 0x3ffc2b2c7b92db86, 0x400151a578c0e829, - 0x3fe986a9138bfa1e, 0xbffd0a0e5bf0ed00, - 0x3ff17906b5cba5ba, 0xbff93186f852e753, - 0x4003b6aa097c96e2, 0x4010b6d5e65c2877, - 0x3ffe8948605b336a, 0xbfeac4a0d0d7c591, - 0xbffde1a26a1add7f, 0xbfe47bac3a5d286e, - 0x3ffeed27851cd33d, 0xbfe0fa9a8152846b, - 0x3fdca5759f4fa36e, 0x3fe2f23e0b7ccdfc, - 0x3f8577f11abaa880, 0xbfee591e9dc10486, - 0x3fd89081d55f62f8, 0x3ff2dd62a22a4eb7, - 0x3ff9dc27e4266b51, 0xbfcb4b199b117128, - 0xbfdf4f493e22ef27, 0xbff3f69a47e2fb48, - 0x3ff0ea46f1da6f12, 0x3ff47b2bf9ae6c54, - 0x3fb7206362ba07c4, 0xbfe118b4bbf5516e, - 0x3fec3d011facd0ca, 0xbfe27fceeb62cf80, - 0x3ffd3fada454a135, 0xbfc5187ab3a72190, - 0x3fe8b4c1c3894f51, 0xbfeaeccee41e8ba2, - 0xbfe18e081cf810b8, 0xbff80f2861b8bd39, - 0xc002ca5c8f72c5de, 0xbffe63642ba866c9, - 0x3ffb2ac066c23edc, 0x4001a973d60d1e6e, - 0xbfe360a4c340e779, 0xbff38f053d64bcae, - 0x40084c40c8f6b450, 0xbffb3b78bc6646f3, - 0x3ffd9941789ae995, 0x3fefd79f29facfb6, - 0xc0051ccd5fc9db44, 0xc002501eb3016957, - 0x3fc3f9e3fa1b9bf8, 0xbff432fcb5dff038, - 0xbfce8984d023c3b0, 0xbfe533c599f5af25, - 0xbfe1df3a8bfc5404, 0x3fc0422b7dc147d2, - 0x3ff597e88d972138, 0x3fe1ae9c8ca19e43, - 0x3fd94da0d40764af, 0xc00ee894d3ab53ba, - 0x3feed18c4ab3c3a0, 0x3fc0858e06bd0339, - 0xbff253f5b1e7c8ae, 0x3fec09d8f5c6529a, - 0x3fedf6bdd4010cd8, 0xbfce38697fc2a44e, - 0x3ffbb22d036d648d, 0xbf8223465f675f60, - 0xc00f7db9db26c24e, 0xbff1443b2bb146ba, - 0xbfa91e50dd521344, 0x3fc2d673d0f9a714, - 0x4000acc75125dfb5, 0x400a0946ea11a4dc, - 0x3ff19dd78fe14ba4, 0x4000e77ebdaaba68, - 0x3ff97b2dab0417cf, 0xbff15b7e6dfd18a6, - 0xbff8e109c24d23ad, 0xbfe20c70bb2c27cc, - 0xbfecc890111a8142, 0x4000cb914ebc5066, - 0x40074f7b75c7bfb6, 0x3fe5028a79314782, - 0x3fe838735c6fbe32, 0x3ffcf1486c6aed44, - 0xbff1e14dfe9fbcb2, 0xbfef513443c10e7c, - 0xbff243d4da38e2d6, 0xbfd01c8d5f8f88c8, - 0x40042f8a4da3bb09, 0x3ff68bda0aaa9d22, - 0x3fe3bea5bcff86fd, 0xc010a472dbb92297, - 0xbfe48fdca90cbd10, 0x3ffc1b7d58a5c560, - 0xbffbe4b82c536f86, 0xbfddf37dfd98c8c8, - 0x3ffd9aa4ffafc0e4, 0x3ffd8121246479a0, - 0xbffdbdecabf7a534, 0xbfcb2a4e69036df4, - 0x3fed9e0c3c4c8a9e, 0x3ffcbba670d7ebcd, - 0xbfb95d96496c5fd4, 0x3ff10e053ff64239, - 0xc006ad1d01e7223e, 0x3ffa4be46d0af6ea, - 0xbf846d3194905b00, 0xbfe2f390fa98c8cd, - 0x3ff3f4416d184472, 0x3fe00d53e22e3aa4, - 0xbfd2b973346c10e6, 0xbffe9213f73f8619, - 0xc00129cc41119068, 0xbfde4b35c84ac0e2, - 0xbfe7c056b6747202, 0x3fffecefe14bb756, - 0x3ff463fa5e323aba, 0xbfe9a01f0aa8cfee, - 0xc0047e419f0a2420, 0xbfe997d2a93d26fc, - 0xbffb7c6cebbf8618, 0xc000e97288291f19, - 0x3fe15ddc0f1cdd00, 0x3fd4352fa1b340b6, - 0x3fcd79d5fbf2f1d8, 0xbfe2b118c3bf6264, - 0x40104d4ad8774026, 0x3ffe1fef24e81993, - 0xbffd1f4a6753c870, 0xbfaa942f396eeb90, - 0x3fc485345f071e08, 0x3ff3240067240cf5, - 0xbf8f60445994afe0, 0xbff800dc2c1c0fb6, - 0x4003393e1147695f, 0x3fdf4b3a175ef3ba, - 0x3fd7c4c60583e4b5, 0xbff3864fffc7f032, - 0x3fce0d28a2313658, 0xbff90944a5d50e68, - 0xbfe1591f88eee6c9, 0x3fe1f5368db5abb2, - 0x3ff6ad40188280ca, 0xbff0ce28ff1004ed, - 0x3fbffdf985bd7a10, 0x3fd8a2457883a567, - 0xbfe3563d8819c577, 0xc00400d28df6aca2, - 0x3fd936823feb831a, 0xbfea5a9ead5640e2, - 0xbfcc840e835fc96a, 0x3fd656a844f6f169, - 0x4004ba150c515f92, 0x3ff47acf9766b55a, - 0x3fc0db329ebf650b, 0x3ff4e7a17653b253, - 0xbff03b4805860b02, 0xbf79555f8c563d80, - 0x3febcd43d77e37e4, 0xbfe5955f49312258, - 0xbfe703c159c8aeb2, 0xbff0a20624d18af1, - 0x3fb4a9e1723fe9f8, 0xbfe0759ccec3606d, - 0xbfccdddb7f111324, 0xbfd2cb426f1f9bd0, - 0x3ff23db602edeeae, 0x3fc7de24430462ba, - 0xbff9467b12e9f771, 0xbff6beb4c5ffda16, - 0xc00133f971cc443c, 0x3fe29278029f87d8, - 0x3fe07266263c056a, 0x3ffdb5469e21d0e9, - 0xbffb2a246eb0345d, 0xbfefa5f417ffb6e2, - 0x40037bab81fce328, 0x3fa442ac08005a3c, - 0x3ff386e8eef53ad7, 0x3fb3d4c543f709b0, - 0xbfcd6ea2396871c6, 0x3fe6cd5bf5d91f26, - 0x3ffb0ab2f9197d38, 0xbf94c17af06bfae0, - 0x3feb4003f67edd84, 0x3ff0087085aa1175, - 0x3ff9380bfcd71963, 0xbff6c30f1b840908, - 0xc004afc05faec746, 0xbfce26efaae86406, - 0x3fe936b9d8ca33ef, 0x40012a6e064adcd2, - 0xbff2f93bd90782fe, 0x3ff516b50b48c38f, - 0xc00a51198dae5a7b, 0x3fb83e8b50345204, - 0x3ff0b8494dda2541, 0xbfd87d6d817b9db8, - 0x3ff61cf1a60228d7, 0xc00e8ac97c1b9d84, - 0xbfeb1d3b2ace8829, 0xbffcacf0c2045b3e, - 0xc004495aa3e38364, 0xbfcd812a15d35c9e, - 0xc0001d38534a32b4, 0xbff1a53669dd47bf, - 0x4009e867dc59331f, 0xbfc27892d70137a0, - 0xc00245070f87526a, 0xbffee30fbb8d45ae, - 0xc001c081644b467b, 0x3ff0bded14d0ba10, - 0x3fd1ce394bf58444, 0x3feb28f40930ac77, - 0xbfe5567d02d127a5, 0x400b94dbdb6a8300, - 0xbfc70dc336a7547c, 0x3fe8721a9745bf24, - 0xbff3f5cd6c33a780, 0xbff4f1bc7b399364, - 0xbfe9a102c9001bf9, 0x400401d7c6f2ab36, - 0x3fec613988b5e026, 0x3ffaff23c0d6c287, - 0x3fc89f0bf231f198, 0x3ff289403170e950, - 0xc004f15568c73a29, 0xbfee51fb363c7b04, - 0xc003461de256e344, 0x3fcdf031078e1d74, - 0x3ffdf25ed88f7ea9, 0xbffb165402eb70ec, - 0xbfde4a10adb0bb66, 0xbfef2065f7efd61d, - 0xbff01c598c7faae1, 0x3ff29fbc40c75218, - 0xc00e4b194e5008fb, 0x4004e247b6473130, - 0xbff63bc625d5644a, 0xbff0c5319c16f3c1, - 0x3fe71c12a56822ca, 0xbff45a6169c45d63, - 0xbfd4851bdf2ec2d6, 0x3ff88fd56c029602, - 0xc0000a534a180191, 0xbff033ddd6289516, - 0xc0057cb01d728d02, 0x3fe44c364cfab8de, - 0xbffe7108edcab12c, 0x3fca912df09b47c2, - 0x3fd40368d4dfd970, 0x3fc3795cdfec1aec, - 0x3fc3bff64bdb6328, 0xbffa510fc8a12928, - 0x3fe728042b64fb93, 0x3ff5fefab832dd44, - 0x3fda0e27b9ee5684, 0xbfe9bab37b7feb5a, - 0xc00aca0d80570f40, 0x4008bb7050a5419e, - 0xbfdc98032bf4de90, 0xbfd20d3fafe1041c, - 0xbfce9f6b2c0437fa, 0x3ff62e39e342ce3f, - 0xbffb9ff4e88027b5, 0xbfd4ca1c0fbaa96e, - 0xbfb6f292b765595e, 0x3fe3ba3ad00a68aa, - 0xc00505f301ee5aed, 0xbfe8e45dfd6a988b, - 0x400a087f923deb1b, 0x40058e70c237bd98, - 0x40045c2c0cd00bb6, 0x3fe16fdf624a301d, - 0xbfe76630bd1d4a28, 0xbff88c29d4e63e55, - 0xbfb28cc0d36a29f8, 0xbfc10e55202a5fa0, - 0xbfbfe6416ead3370, 0xbff5a513bab042d2, - 0xbff3a974ee2f6a4d, 0x3fccd4ff2f86d7e4, - 0xbfe0241ba149f488, 0xbff3bf68270034a1, - 0xc011cdae691ee318, 0x3ffebd7e503beffe, - 0xbff25cb3d1c78730, 0x3ff470b0c1f2a239, - 0xbfcafe088bbea8e5, 0xbfa896c3b6636508, - 0x3ff0afcc77d0d398, 0x3fd91663d9997812, - 0xbfeb4823cf3179b0, 0xbff0e7ad8ab45e41, - 0x3fe1ea3621bb7d4b, 0xbfeb141ba4b9355b, - 0xbfeea7a01f64797f, 0x40026710d01462a0, - 0xbfeca4cf15ba45fa, 0x3fad18d529a02c60, - 0x3ff0053a3eeb0d98, 0xbfff7feaf5e0d186, - 0x3fdb8c2f79db80c4, 0xbffcb23b538a05fa, - 0xbfdb1979d829d544, 0xbfe5a640e34360da, - 0x400210c83f1f62e0, 0xbf93753362cf1140, - 0x3fc21738b5b8a71c, 0x3ffd4320edc71cb6, - 0x3fa6868705e5a658, 0xc00647ee3b8e0765, - 0x3ffc2daea60678a9, 0xbf9d1daf4fac3740, - 0xbfebf46a28ba0fe4, 0xbffa793ff22a8c34, - 0x3ffcf52564179639, 0x3fee9dfb6929418a, - 0x3fef72b9e48c8529, 0xbff6fb233462ca21, - 0x3fed079149ef8a34, 0x3fd1eb64a0b58424, - 0xbfe6dc4a5ab95df5, 0x3ffca0d8a9b193fc, - 0xbff64e5dc707944c, 0x3fdc0fa57dc258ed, - 0xbfeb5506558e6ed0, 0xbffa2095cf4bb628, - 0x400602740152b75e, 0x3fda44d68ac65d84, - 0x3ff13430695c3771, 0x3ff3532b30c70ee6, - 0x3ffe1c205496763c, 0x3ff16241400ce112, - 0xbff355e0c2ca12fe, 0x3fee95b0e50bc530, - 0x3ff63b1fb9ccf31f, 0xbff3459bf4ab309a, - 0xbffcf628e1987198, 0xbff87d89bdffbbcc, - 0xbffd1336570d1f74, 0x3ff117457a47b932, - 0xbfaa056c68490fd8, 0xbff7997c377567d0, - 0x3fb221246b2dc3f2, 0x3fe6637991ff0eac, - 0x3fe78a4592911e14, 0x3fd04a7f93baac28, - 0xbfde97b6a990c05d, 0xbfb301d1d1321a40, - 0x3fcfb7c54e2ef76c, 0xbff9d076e7aedaa8, - 0x3fee62e257314ce9, 0xbfa9a029bbf36930, - 0xbffef7746bf1646f, 0xbfe70587f0a08a4d, - 0xbfeb44e313591f14, 0xbfd7ba5ef648b16c, - 0x3ff07aac3a8ec39a, 0xc00bdc0fa9e02c7b, - 0xbfa74d051fa42180, 0x3ffab532c9e3e569, - 0xbfe4abec04b9acd3, 0xbfeb21fd0c5ecfaa, - 0x3ff3007f4c6392c6, 0x3fe8ee44567e4636, - 0x3fd2a2c8fabc3162, 0x3ff6bcb1cbf737f7, - 0xc0011af4c7efde71, 0xbfec7cbf1c22dc40, - 0x400309d0ae39c9a2, 0x3fe668249462f12b, - 0x3f80a43ac76c8fc0, 0xbfda7d94e91edcd4, - 0x3ffb332a33646f9f, 0xbfd43efda14d9a10, - 0x3fc0e4cf0f1a4dd8, 0xc003f260cdc08a03, - 0x3fdaff8b21232b41, 0xbfeafe69312f0769, - 0xbfdcd4951085cb5c, 0xbfe79dd387dc3848, - 0xc002937a3e89e99e, 0x3ff5a5bbb07b002a, - 0x3ff7c0a0b3439415, 0x4002ad9721dc769c, - 0x3fe839cec18adc12, 0x3ff54e236f330b9e, - 0x3febd35ab23f65ca, 0x3fe9f691be2032eb, - 0x3fad9b49a8e91220, 0xbfea247433657a78, - 0x3fedec5758a295f9, 0xbffe1853295d6558, - 0x3fc19810c1fa7fce, 0x3ffb9e93deb2cac6, - 0xbfd224bee7df1d02, 0x3fb5fe8bcfaba704, - 0x3ffccdb481f780d2, 0xbff1c88fcb2937fb, - 0x3fe3f63a38e3ad40, 0x3fd25903e6ea1fbe, - 0xc005fd2c3157892c, 0x3ff5d7e8a106316e, - 0x3ff5cbec53ded740, 0xbff405d45594aa6a, - 0xc004362302515ed5, 0x3fe2b343ca7af200, - 0x4002546c566895c2, 0xc003a095ec899fe2, - 0xbfffb134ac8a1b50, 0x4002c348637c230e, - 0x3fe70605098af7cd, 0xbff4d87e13924b07, - 0xbfc734a6f14a3670, 0x4005ec1c346671fa, - 0xbff8f935ff080dc5, 0x3ff74a3124482dae, - 0xbfab455502c691e0, 0xc00bfa74f904fbd2, - 0x3fd5b6855050a7f7, 0x3ffbb51bff7732f8, - 0x3fa1c007ccc25fb0, 0x3ff5b2f5e5069eed, - 0xbfe3239f4201afae, 0xbff1de57ffa1449b, - 0xbfeb9ae4edb826da, 0xbfab136a46ab71e0, - 0x3ff390abe9290e7e, 0xc00981bc3644505f, - 0x400613c19ee0290e, 0x400f21c030f929f8, - 0x3ffad0eda14837a7, 0xbfdf7e92fc4015a8, - 0x3fe629e38f190220, 0xbfef0969585a66c4, - 0xc0020ad2d063117e, 0x3fe7f44595a35671, - 0x3feaab07751eec7e, 0xbfd533df19f6eff0, - 0xc009fc5bc8cb6ed2, 0xbfe8f5336e6e1d5a, - 0xbfd73590c05d3316, 0xc00427513e5ef83a, - 0xbfe7e6857b0d996f, 0x3fe87cb9b7ca31db, - 0xbfefaa3877d737c7, 0xbfe598fc4ba3c252, - 0x3fd1a1e3e4be0fe4, 0xbfb71ddb3c79e1a0 + 0xc01405d8ccbc9b1a, 0x0, + 0xbff57ed5eb3783f6, 0x40090b2d821d009a, + 0x3fe4103f98478e1f, 0xbfd7abb315a7b770, + 0xbfee33b9a7f286d8, 0xbfea261c54e2c14f, + 0xbfd349226edce82f, 0xbfd8e9ae13fdbe82, + 0x3ff86fa651c2d910, 0xbffbad39fb03d08e, + 0x4005a1c8e713fd92, 0xbfdec61c2bec465a, + 0xbfd14d0b0d057abc, 0xc0008cfd4c8fd3fa, + 0x3fd67c8a8f7c8e28, 0x3f8d858074a11a00, + 0xbffd034d7d5b7996, 0xc003c3adbccc07f0, + 0x3fe48800e9b984f8, 0x3fec6b2929b65164, + 0x3fda05babd70ec18, 0xbff108ae1613f0fd, + 0x3fdf515fa16afc35, 0x3ff64a6026888d6c, + 0x3fefe43c45df3943, 0x3fe0d91fc3e1bb82, + 0xbfea42828cd4d7e7, 0xbff646c5328beb98, + 0xbfeef5573c6f3866, 0x3fce7cb66877446e, + 0x3fb85284c70bf630, 0x400507651b34a2e8, + 0xbffa1b5191af528a, 0xbffeb8d9ed12754b, + 0xbfec090464d62ebd, 0xbff90742e5a79036, + 0x4008e5f3aecfeb46, 0x400462a8a84ce410, + 0x40044c60acefc075, 0xbfd62bdf66784128, + 0x400dc9fa6e22d7dc, 0xbfef2fab51736088, + 0xc00606a2cb3df32b, 0xbfc3828f88aa086c, + 0x3fe663ec70706c97, 0xbfea2839fef36f48, + 0xbfee1cdf8c96091b, 0x3ffc23cc6c66671a, + 0xbfcd27f5cef4e660, 0x3faf8c420e484b9c, + 0xbff962e0089fbc20, 0x3ffdf8a6d441face, + 0x3fcbaa64f6bc3f20, 0xbfe41d92a1f7f1c0, + 0xbff72ab08314a790, 0xbfdf79a404482ac4, + 0xbfd354a5eab974b4, 0x3fea6fc6a98166ce, + 0x3fd771b885061764, 0xbffd2466adfc5f52, + 0x3fc4c18fdc3bdf10, 0xbfe9ccf0d01f1412, + 0xbff7747e82f5f4ee, 0x4013a35a95fc7946, + 0x3fc7788fbffb3534, 0x3ffc324e33a9ebe1, + 0x3ff6eafeb45f7c96, 0x3feda87c81162267, + 0x3fddf140c00a6d82, 0xc008afe96c362010, + 0x3fe95d1bdcbeae4c, 0xbfc74189127a3842, + 0x3ff3844203255be1, 0xbfc5483cfebc5a4c, + 0x3fe580ec4b99f96e, 0x3fcbc234a8b1f528, + 0x3fd1203c25a7c95a, 0x3feb5f2204fa5bd2, + 0xbfe93ce099e735be, 0x3fedad15c2a9a370, + 0x3ff2ea5c3bf28b24, 0xbff48a73c0cca0d4, + 0xc00196d4449a425d, 0xc00acda988bf2628, + 0x3ff55be3d34d57bb, 0x4001328fa0bed226, + 0x40014125fb7b0da2, 0xbff504fcf72c3c24, + 0x3fe2f621f945b708, 0x400509cdd48a0ade, + 0x3ffc0cde4959b2ac, 0xc00e146cf8358024, + 0xc00a0d2a692b00f4, 0x3ffc8a3ef65bbf0c, + 0xc0002f7fa880b51d, 0xbffd073a33e909d2, + 0xc002bdf8c23cc363, 0x3fd8f8469ca7ab7e, + 0x4005e5d319a4bc27, 0x4004e20ce587161a, + 0x3fd541ff78b66894, 0xbfc421231d6157b0, + 0x3fcf17bbf08457b0, 0x400097a37ae990c7, + 0x3ff179cb36f720b2, 0xbfe635c6a03fbf0f, + 0xbfde9c53cf0fed7c, 0xbfe5a3698058137b, + 0xbffd37b5c3b59567, 0xbfc1a79448999900, + 0xbff3c6c35d620dae, 0x3fba1e6d5d61fe60, + 0x4000330aeee71c5e, 0x3ff6a719998e5490, + 0xbfffe0ca2c29ef34, 0xbfe1088b97033842, + 0xc0105ccf03c74704, 0x3fc651bd4f8e1bfc, + 0x3ff1942230cd6fa4, 0x3fe947b791c04e20, + 0x3ff9bac8034b3c14, 0x3fec2a74762d1e1c, + 0xbffd902b93f8b1ec, 0x400a2bc8e4e12bae, + 0xc01025f8557dac0a, 0x4000454103ef561b, + 0x3fe1aa98f3b335b2, 0x3ffb494d83badac4, + 0xbff45cca6cbf5fb7, 0x3fb399c42f64b370, + 0xbfdecfb559384fcc, 0xc0056ea79afabcf0, + 0x3fdfcea50cda3bee, 0xbfde01755502b856, + 0x3fd2b0dd3d8bf990, 0x3fdf57a4710fe3c0, + 0xbfe051789ec2f77a, 0xbfd7bba36ac3bbcd, + 0x4003a04aee7de2c2, 0x40001da1c8519cdb, + 0xbfe03fbadca97c3e, 0xc00a38d66ca7746e, + 0x3fdacdb45bae28aa, 0x3fbde32cdf4ba870, + 0xbfeb5a35b5927c45, 0x3ff2e9f546521a47, + 0xbff6d7b0224bdde2, 0xc002adbda8bd13aa, + 0xbffcd8b4d1d5a0d0, 0xc00b49581abad33a, + 0x3fe390a9fc52a2e7, 0x40090ce1e5646850, + 0x3fb3f6184498b010, 0x3fb3f3ff1407a4f8, + 0xbfea634de58abf74, 0x3fd9b548b8c4bb74, + 0xc0019d43561702fa, 0xbfead18d98ea0a18, + 0xbfea9b8715361e5c, 0xbfe7314fc52ea102, + 0x3fb83b2bf7fe5eb0, 0x3fde633e21158f95, + 0xbfe3334fc147417a, 0xc01347d68e7e79f6, + 0xc00ef8f277d25cec, 0xbffa33eaf6e95f40, + 0xc011a774fe7efda0, 0x3fed617f81832b00, + 0x400c5d3082208b6c, 0xbfd6d0ff0e8308ed, + 0xbfe5aebc6e24e7e6, 0x3ff68d7f1ff53254, + 0x3fce4e98e5dea3d2, 0xbff613c3cadaf5b0, + 0x3fefa152e86c6056, 0x3fedd0b5aa97f417, + 0x3ff0a1ea53bab26e, 0xbfeb6f6733926b8c, + 0xbff0fdf4f4afc4a0, 0x3fda89843d83793d, + 0x4002fa9fc9fbe392, 0x4008265b02e65e70, + 0xbfe04d15d4ea5daa, 0x40011e9466396083, + 0xbff9f5308e0728f8, 0xbfe6b73c7986d5bc, + 0x3ffb5f9b171c0746, 0xbff881731b72c19e, + 0x3fdc004aff3c44ae, 0xc00fe9a133a12ef4, + 0x3fdd8d39a7e440d6, 0xc000403a715c52d4, + 0xbfdb162e2d3d82bc, 0xc00b75f2c4cd4d81, + 0xbfe50264185a0863, 0x3fd02778f81509d8, + 0xbfda76b243d5544c, 0x3fe60a84f9c90676, + 0x3ff4bacb6f2dfd54, 0xbff2374945271d66, + 0xc00810ec9a799551, 0xc011e0a83f838b97, + 0xc0044fc1b3e0483d, 0xc010138617b9c570, + 0x3ffb26ad6750829e, 0x3fe13342a3e7b2cc, + 0x3fc5f4749f54df28, 0x3ff2e174265ecb1c, + 0xbfc9581bb3633dc7, 0xbfee9a60dc8c1701, + 0x3ff072a6b4c967e8, 0xc005a21bcb6ba7f3, + 0xbfff57503fd447bb, 0xbfc68d1adcafa82c, + 0x3ff7131220ae26c2, 0xbfbf192c7be2db40, + 0x40013924e8938341, 0x3fe5052afd74c1c0, + 0xbff1aaa9cb56e30b, 0x3fed3496658c4917, + 0xbff19a96618a0fd8, 0x3fcfcc9ca0255c00, + 0xbfec1bb85f0d1317, 0xbff3a01e2d77bc38, + 0xbfe8ad26edf41aa5, 0x3fd5658bc4609b9c, + 0x3fe77bfff5a5cf8a, 0xc000f207df0d133b, + 0xbff7545a44e26bac, 0xbfd5b944b225d458, + 0x3fd0e8e188b5878c, 0xbfbd599818e84926, + 0xbfb7075c09c7a870, 0xc009f07f8d3406f5, + 0xbff32f4ccd31095a, 0x3ff98db7de865fba, + 0xbff733467cc122da, 0xc0015fec12bdcecc, + 0x4005368eb1ef8664, 0x4006938e3d88aa46, + 0x3fd09c7597b5b122, 0xbfe077742ad1f8e8, + 0x400419536a4ae362, 0xbfa19927e7d4ac40, + 0x3fe3cb4da5052ae6, 0xc002ddf8bbda165e, + 0x3ff5aa35bbdae035, 0xc0097ae2dba0cbec, + 0xbfdb21b6d9cf78a2, 0x3fe139b525195aa6, + 0x3ff92b2cbbba8a0b, 0xbfe2d6949296dff4, + 0xbfee4d0911afdf62, 0xbfef9fba5186f674, + 0x3fb0df68cff93610, 0x3fe547cfbc64e892, + 0x3ffd91adfd596bf5, 0x3ff0e0ee4262da1b, + 0xbffe1f090bce66eb, 0x3fe4b2dcacf7643f, + 0x3fff1eb45cd9848c, 0xbfd6942e7e47c450, + 0x3f63a73eb345aa00, 0xbfeba91f994a614d, + 0x3fdf0cf209c00a8c, 0x3ff25f6129e7a2a4, + 0xbfe59a050170531a, 0xbfd8d24c4967e4ac, + 0x3ff45066803a9dbd, 0xbfd3b8af3b3c4c94, + 0x4002c8934acae5a9, 0x4003680d671efa66, + 0xbfeb67b7db6cd4c1, 0xbffd429a2aa808c4, + 0x3fe0e15ec09322a2, 0xc00b3f87dd5640d4, + 0xbfffc441a94ea139, 0x3ff32944c3dd7662, + 0xbff9608f40cb4d7f, 0xbff4b3cdaa63eb1a, + 0xbff32544d5d2f8c6, 0x400c08fa8a98b7f5, + 0xc0073a20628f50de, 0xbff7a1c6c948cf0c, + 0xbff866a7900c46d8, 0xc00a8891ca8b701a, + 0x3fd6a35574a1b7ec, 0x3fe779fa6a9da792, + 0xc004fbc6e749d30a, 0xbff0f43e722753d1, + 0xbfea1e00ef21e858, 0xbffbb58d00088c7a, + 0xbfef4b01e040b3ac, 0xbfa0f96a80a41410, + 0xbff02958918d3a6a, 0x3fe3c47a88482bea, + 0x3fee4434b64e0750, 0x3ff19589f5a9e038, + 0xbff7aa9873a74e3c, 0xc0075e1625ebad9d, + 0xbfd7b4d7e8d3b924, 0x3fba2ecbe7bf700c, + 0xbfd802a4ece0f84c, 0xbfe9a3876369090e, + 0xbfe59aa8aebc37c5, 0xbff20cc735a0ed0e, + 0x3fea559f124898c2, 0xc000eaa933e55627, + 0x3fe5e25b3318c977, 0x3ff0ae49b30fa288, + 0xc00496aa4b318e22, 0x3febbf13f9e52d2e, + 0x3fb8e0428cd23ddc, 0x3ff0e0cb9b6fdc2f, + 0xc0049cb1a3156208, 0x40000c4b495c4554, + 0xbfe1767fc2ac8d5d, 0x3fedecba104f2434, + 0x3ff831c31abac64f, 0x3fbf789c78e76990, + 0x400db3c5fbf388ed, 0xbfef872069636732, + 0x3fdb1204bab79b9a, 0xbf9dd5efb08330d0, + 0x3fcffc860dee568a, 0xbfe7637e8a80161b, + 0xbfbee93de0151aa0, 0xbffa6622417c71ba, + 0x4002cdf6dde75c91, 0x3fdd48adec68cfc8, + 0xc004beb993d728a9, 0x4011808f11ab8e44, + 0x3fed0e3b5e386014, 0xc00496faf7acbca2, + 0x3ff511cfa3d0bedc, 0x400d463837e1b8cc, + 0x3ff299898ff40dd7, 0x40022f7751443892, + 0x3ff0d612582ad86e, 0xbfe3b769ed7abb41, + 0xc006fb4c9a1c1314, 0xbfe036fa5c65e4ed, + 0x40014ddd68ffa4b6, 0x3fe511f7b35a59c4, + 0xbfe01be5e70d4b78, 0x3fe3ebb884f5ffad, + 0xbfc9734bce639a44, 0xbff1a2b71fb772b4, + 0x3ff9f73c3f9a992e, 0xbfe96a05941b362e, + 0x3fec598a9f1313db, 0x3fe7e97eac852a8a, + 0x3fee99404e98ad79, 0x3fce44c74a7cc704, + 0xbfed1b338bd53ddb, 0xbff04de2cf877274, + 0xbfbdabd762c9a658, 0xbfe07dad491fd8b2, + 0xbff597d0213794b0, 0xbfe291ab583585be, + 0x3fd9805c0d9d0aae, 0xbfdc4a10541a49fe, + 0xbfeb0492dd9964b5, 0xbff72f5e3e7a1d5e, + 0xbfe4e8368521081d, 0x3ff77b7c15cf4160, + 0xbff6e14040b45f0e, 0xc009fd166d1fd9ca, + 0xbfd95d229c69ca26, 0xbfda5edbd048f6ed, + 0x3fd04914e47bf728, 0x40024b92c7d704d5, + 0xbffce258cde3deb2, 0xc004613a57c98335, + 0xbfc03a4095ccb26c, 0x3ff121701af8f5b4, + 0xbfd100ee4b3ff240, 0xbffac54d7547fa2a, + 0xbff54f9bdf13247d, 0xbff483bcdae295ba, + 0xbfd360f5bd89ac34, 0xbffea730383a2b2d, + 0xbff7093122f3077c, 0x3fe7b16ac5ff2bd0, + 0xbffdf82b2c3aebdc, 0xbff4ca38a76064be, + 0x3f826ee76dfe5920, 0xbfb856f3feb3ad7c, + 0x4000cead697c6569, 0xbff79e4ef4bd012b, + 0xbfef4ccb10b8262a, 0x3ffb3b2b04febb92, + 0x3fff2de41bf864ac, 0xc001ec35341be59a, + 0x40035e03efe4ce4e, 0x40079a486f558322, + 0x3fda2be673db6b3e, 0x3ff74dc0e668a772, + 0x3feb60b8f2a4d0df, 0x40030c45c4bcac48, + 0xbffbd9bd032d41b8, 0x3ff90ab061e01462, + 0xc003d89a5006a5f2, 0x3fe162909e642d8e, + 0xc00b52b934c697e9, 0x3fb252f63e397128, + 0x400444b1f395d39d, 0xbffc59d73f61cb2c, + 0x3fe98e4c6a320dbd, 0xbfeab6533cd12474, + 0x400208c76072a55a, 0x3ffd8be1c4ce78a0, + 0xbfd5f38b454be2a4, 0xbffea65f158ba861, + 0xbfcfdeb6c152f40c, 0x3fe9d456cce11d52, + 0xbfa465072c03d080, 0x3fe5f0bb44b3a8a6, + 0x3ffd570df0f831e4, 0x3fec457cd79b4057, + 0xc0026af7a30c0802, 0xbfdaab594c5be3c8, + 0x400428bac1a5e548, 0x3fffabedcde96cc3, + 0xc004e473f3ebce40, 0xbff17875e95dd058, + 0x4001d1dace816016, 0xc0052220ec90c112, + 0x3fea9ab8b8e4be3d, 0xbfcb2127411ada72, + 0x3fe370ea43073a24, 0x3fd78b15810258cb, + 0x3fe7c279bc71e444, 0x3ff7b7f1cc5932d6, + 0xbfecb031c42755d2, 0xbfa38c29bb373ab8, + 0x3ff60b2a8d362b72, 0x3fe93e27c4f617f5, + 0x3ff0747bdac1c49c, 0x3ff56a5dd608dcc6, + 0x3fd366e0e9322d8a, 0xbfd89ba21cfc7762, + 0xbffa636a2f503904, 0xbfcebaa25a8e6f48, + 0xbfe722da2d614ae6, 0x4004a0d956ed2d68, + 0xc00336081c148b45, 0x3ff31a0f1107a885, + 0xbffa6fa6af9d3673, 0xbff68fffde5cc63d, + 0x3febce138bd97496, 0xbfff25c99cee7719, + 0xbff01b4d4b88a35b, 0x3fd75c4f633aadbc, + 0xbffce98795748810, 0xbff82dbb991bdb4d, + 0xc000b36e51a609d5, 0x3ff543c541d50452, + 0xbff0831a5a718772, 0x3ff3a774eea6a5ac, + 0x3fd17d3cfb9476c6, 0x40053dec56bf0f94, + 0x3ff459ede4cb8336, 0xbfd54186141f1ee4, + 0x3fe521386d455866, 0xbff1551e66d70e5d, + 0x3ffae7639295b34a, 0x3ff6efc874fc2613, + 0x4000453d29ca98c6, 0xbff90903ad98b73e, + 0x3ffc4e9c27e8151b, 0xbfe5b5ea1c17e384, + 0x3ff20146c873c1f6, 0xbff5d5c84db04669, + 0x3fed9c113338406d, 0x3f900d2d78b07420, + 0x3ff2e6a5ba650194, 0xbff170332e37c106, + 0xbfe27bc568fc3d7c, 0xbfb0677f592337d0, + 0xbfb9ca58790b7484, 0x3fdd4980b8c8481a, + 0x3fd4618f07b31139, 0xc00892136f2d6f26, + 0x40040176b560b0cf, 0xbfed8314d7f1cf44, + 0xbfd03c9de1801ee8, 0x3fe207199d0e2b84, + 0xbff2424f80073adc, 0x3ff764e284ab4322, + 0xbfd6f7a6d86244e6, 0x3ff127e6e241e154, + 0x3ffa871140f356bb, 0x3ffb9faa02887ecb, + 0x3fc75c50169e8904, 0x400f803188217e46, + 0x3fb2e8dd85355950, 0x400670e98ac571f5, + 0xbfe553d649101984, 0xc0021eb4f21073f6, + 0xbfe0a32f61d05676, 0xbff743f92e107840, + 0x3ffa7f9df13254e4, 0xbff0b9597cb4b389, + 0x3fe089dc8711dc58, 0xc0015f40a768db3c, + 0x3fd11714176cf298, 0xc006fc8ef2ced11d, + 0xc0091de01dfa33a6, 0x3ff7bb306b81f158, + 0x3fe2f34dd8ad3eef, 0xc0866a81da3e8fc8, + 0xbfda0f7f211449ce, 0x3ff2b6160db079e8, + 0xbfed7eaefec038c2, 0x400fd04f56247ac0, + 0xbfb7b8740b83144c, 0x3fff8c37509bde60, + 0x4004395e53cdfd1a, 0x3ffb29f43e2c6cb6, + 0x3fec983ba7d7aaae, 0xbfb7b987dfd98abc, + 0x3ff5500aa013e5ae, 0x3ffd15382d0fc6ce, + 0xbff26da928d552f1, 0xc01525b7fa15ee1c, + 0xbff992d392bc9246, 0x4002c637cb9d43ee, + 0xbff82bb6f5a6d08b, 0xbfe39ceb62749a26, + 0x3ff00ab019a64a16, 0xbfd2b20471b40581, + 0x3ff77a94900b82e7, 0xbfe5ffc1c28e64d6, + 0xbff7b5e93c060206, 0x3ffb9ce70f9d8cf4, + 0x400b04a1a2a9bf21, 0x40046fb931796cea, + 0xbfc27a54ce857fe8, 0xbff9d39f8fa08c6c, + 0x3fb2628bee1ff410, 0x3f8fef05abef7f40, + 0xbfe5d2e840137cbf, 0x3ff3f2363813d66a, + 0xc0086015553e5305, 0xbfd75e7638aefbc6, + 0xbfe8507df5fda8f5, 0x3ff6f6e5ba7b8f7e, + 0x3feec1435d1ccedf, 0x3feb058686e255dc, + 0xbfeebaedc23175e6, 0xbfd16edc2d825eb8, + 0x3fe279db8ae62a0c, 0x3fdf45b61d732f84, + 0x3fe94746953c285e, 0xbfc799ba90366b2e, + 0x3fe0616d3ae2abe1, 0x400544a3682959b6, + 0x3fd167a7834a1e02, 0x3ffa527a6ceaa982, + 0xbfd3488ca25ca280, 0xbfad305fdad367a0, + 0x3febae3625fe051b, 0x3ffdb7ef3c4d9c1f, + 0x3fd5f902f57bd730, 0x3fd661f548d00690, + 0x3fdc25727e75beee, 0x4009fe3c70745887, + 0xbfda3e3e84f9d098, 0xbffbacc0adf0da28, + 0xbfd0d0582127f8ea, 0xbffed3643db20d86, + 0x3ff9877c2e83833c, 0x3fb562a1cec25bec, + 0xbfe068308d187b19, 0x4009abea22ae26c5, + 0xc001d0ef1a5db66f, 0xc00090ebd7b1122e, + 0xbfd7e16ad53a4a5d, 0xbfebf3fcbc71ffc9, + 0xbfdfad715674f719, 0x3fef3acfd47659ce, + 0x3ffac2793dc27001, 0x3ff13b3c8f76425b, + 0xbffff3fe04f0193c, 0xbfdee72f3bc989b6, + 0x3fe9c368274b5af1, 0xc00089b67358a2b8, + 0x3fe9c4f2a8184a30, 0xbff2cbff34faf972, + 0x3fffe1e2f222cefc, 0x3ff314d7186baf20, + 0xbfd19d7fb36d4390, 0xbffd59ee6c5682dd, + 0x3f9b06007eb3c080, 0xbfeae5b5ab5c24a6, + 0x4001ec800ee668b3, 0x3ff207cb3fee4748, + 0x3fe093caacc08685, 0xbfe80fd779fcc582, + 0xbfd6b06c286037c0, 0xc00e24403b10f644, + 0x3ffbbbf7aa4bac4e, 0x4003a6a3f92adcaf, + 0x40064d56197722e4, 0x3fd573b677681a6e, + 0xbff9bedbb9c1d0e0, 0x3fede30030a6c6c8, + 0xbfe9f9aa2de8b434, 0x40000c2881f83cf6, + 0xbff1a1e28740ecce, 0xbfcbd0c5655db7ba, + 0xbff3d811fcb04a48, 0x3ff36c340fbeba63, + 0x3ff7d561c27d7328, 0xbfd7545721606bd4, + 0xbfd88afcffb26160, 0x3feca29c546e10e4, + 0x3fe7080a30cb6b6c, 0x3fe15507a1f9171a, + 0x4000283afcf53f9e, 0x3fec4d80eb673e1d, + 0xc000914e81b11df2, 0xbfeb0d9ddec666c0, + 0xc00aa94cb0f4696c, 0xbfa69c1a8b0671d0, + 0xbfd21fd5b87e71ea, 0xc0013e10380048ee, + 0xbff1b11211b09061, 0xc0045ad9e2ca7969, + 0xbfe4b8af995ab792, 0x3fcd4e76fad8f4d8, + 0xbffd7cd63b4c2004, 0x4003860d86ff6f7c, + 0x3ff1b80fefdd4e4a, 0xc00257e27bba8e16, + 0xc0025655c7a1e358, 0xbfe1b617bd5377e5, + 0xbff083c0b355f9a3, 0xbfbfc9ea57013ba0, + 0x3fea185e08dd3455, 0xc00545ad137c22c8, + 0xbfee2ed8011ef508, 0x3fe00a5b8673ce38, + 0x3fe8816167d5a9a2, 0x3fc9481014acada0, + 0xc000bb1cdeaa796d, 0xbff803322c43b0b4, + 0x3fcf6a646be35c50, 0xbffbd9991886b1f7, + 0xbffeab04feb2df53, 0x3ffc9d6a721b343a, + 0xbffb08e705ceef9e, 0xbfcf10c2700ee962, + 0x3fdfecda51f42e6e, 0xc001fd1038c05054, + 0xbffdf43e4f983648, 0xbffbe129c6a87193, + 0xbff28911550ce196, 0x3fe89dc38c2c56e5, + 0xbffea09149c4f030, 0x3fb5c58b75a9c988, + 0xbff7b0774032aede, 0x3ff0434386456e9a, + 0xbff6656846d7c132, 0x3fe60540ca584b36, + 0xbffac5bfa88f1422, 0xbff906d94b24bec0, + 0x3ff892668545914f, 0xbfd09f92a28f14c8, + 0x3fef4ad0e7d6488a, 0x3ffce885a23d86a1, + 0x4002fb75f9ae62a8, 0x3ffd52f3e27f8105, + 0x3fe0ae054466d262, 0xbffb0443c8986e24, + 0xbff3dfeed4433391, 0xc008361f215e0ab0, + 0x3fd7ff81cbc4c0bc, 0x3ff1c6395527ae3e, + 0x3feb767957afd5e7, 0xbfe4e93a08c9e421, + 0xc005de0197d9264c, 0xbff9eb2d181345ac, + 0xbfcccd5645de57c0, 0xc00558dc51c08a54, + 0x40073e8fcc889040, 0xc003d9ba1e6608bc, + 0xbfd3274a2f72f278, 0xbffb238ce5937ffa, + 0xbfc0c6a47836e3c8, 0x3fe3b4372357f3d6, + 0x3ff9e060a77b3009, 0x3ff83ef32b04b9c9, + 0xbffed7159ba8912c, 0xbfe1f4ab5254c809, + 0x3fd5417bd390ef08, 0x3ff1878b7333516a, + 0xbfc0ade45f6d59c4, 0x3fe7338a1f1b653a, + 0x3fec63c9669f0f9c, 0x3fe5110b9b9caef5, + 0xc00e2378d764c266, 0x3ff2b1a9661d0580, + 0x3ff97972d9b5f654, 0xbfd34ddf2cd742c6, + 0x3ffd88557e43525d, 0xbfd0e8f193c29b7a, + 0xbfe7b0d365ac2a98, 0xbfe8c1ffabafd1fe, + 0xbffe61460f9cacd0, 0xc00001e14e075c6a, + 0xbfc53cd3f65a47d8, 0x4008eac6ba095786, + 0x3ff73b3ed5a81b1a, 0xbff2c72a4726e53f, + 0xbfece043295f964f, 0x3feec7abdf4ca9de, + 0xbff0f430e9fce5d2, 0xc0036821de413026, + 0x3fb1ca5384141c10, 0x3fee96f8a8e24051, + 0xbfc597029645bc02, 0xbff5415682c73ef2, + 0xbff65e02fab69706, 0x3fc97c83d27efc58, + 0x4005100cced39674, 0xc000929aed146cf9, + 0x4007bf56668f7b0a, 0xbfebce2514e84596, + 0xbfe4077ae1cb4ab9, 0xbfeb05fd596e1b20, + 0xbff7aa74fbb0eab4, 0x3ffd11d8807f057a, + 0x3fffe4acb0cc00a4, 0x3ff87502321fe77e, + 0xc00e6817d0c5af70, 0x3fe85ab0df210229, + 0x3fd2e850f0a08396, 0x3ff27bdcf2fdb239, + 0xbf81074a90229480, 0xc0013cac9b9aef95, + 0x3fca480d5ff7f0d4, 0x3ffa402a7c520538, + 0x3fe8e2a8543d5390, 0x3fdb38bd775bd4e9, + 0x4002991bf9eeff7a, 0x3ff403b3bcd31322, + 0xbfeb2f468fa90470, 0xbfd1acd602705290, + 0x3fece9ed0bec0db4, 0xbfd878736351edb2, + 0xbfe95b0b81b9afdb, 0xc006a279323d5f20, + 0xc004975ca662209a, 0xbff02df2e8571c89, + 0x3ff355e86e4539bb, 0x3ff5aa45e3d8cc2a, + 0x3fe04d580b423076, 0x3fec698cea6dfe5b, + 0x400bd50f729e53b5, 0xbfd7f7c3a6d22eb0, + 0xc0004c2a86e99ce9, 0x3fd928190f167a2a, + 0x3ff2d4a8ee54ae54, 0x3ffaf7003b030a72, + 0x4007b37542b3f34a, 0xbfbcd19e45923540, + 0x3ffacad36ff6fcf6, 0xbffd36db5c6feb17, + 0x4001044b33c5a63c, 0xbfdb15a8b3bc515e, + 0x3fea6a46b6a3ce44, 0x3fda8ab325d3de2a, + 0x3ff80f86f91dd7ea, 0xbff02c97215edcc8, + 0x40105d063d16ba5b, 0x3ff0a4be08fb037a, + 0xbfeaf71877737e24, 0xc0003558a4cb8af7, + 0x3feb84b4e76e3dc0, 0x4002e2d1d5fd278e, + 0x3fef878c1e341d5e, 0xbfdbfec797e61fa8, + 0xc00084360cdf0509, 0x3fafb69dca4d79c0, + 0xc00c5eb65e8ebfa0, 0xbfe3ee3fe376e95a, + 0xbff66c199c3b7cb8, 0x3fe363f4d545c800, + 0x3fe74beddb611e44, 0x3fde54e869898895, + 0xbfe6e19d8fbc4b97, 0xbff5a7fc379df15a, + 0x3ff66be9988e922c, 0x3fe7b94e9b8ebd88, + 0x3ff53daa58d37ad7, 0xbff954425b740cd0, + 0xbffb936003434730, 0x3ff40df009904517, + 0x3fead39c29e953f0, 0xbfeddb4debb5b2c8, + 0x3fd4334f91ce8555, 0xbfe8c24d1ad44bc8, + 0x3fdc22520720d76d, 0xbffea91ee96133fa, + 0xc010763370ad3f49, 0xbffcea7b6f8f39c3, + 0x3fe781cd630e05f1, 0x3fe177cac6fd0bf0, + 0x3fc050e3f1b86cd8, 0xbfdda5fcc1292634, + 0x40034742650cfb00, 0xbff164d74a0e27c8, + 0x4005bd382400da65, 0xbfc95055cf47b508, + 0xbfe3f74ac4931a14, 0x3fec4d6fb55a23e8, + 0x3fe5cc7c56586e02, 0x3fa2797dbf752c3c, + 0xbff46fd1435f7362, 0x3ffbe1a273ed00b3, + 0x40049466ba5af7a1, 0xbff9a7a8a0c29ae8, + 0x3ffd18119dd70566, 0xbff004759c52dfea, + 0x40005d6822bfa658, 0x3ff67c698b000034, + 0xbfe25b6dd1492a03, 0x3feedef18c60d4a2, + 0xbf7e879a70ef5f00, 0xbfc6251e638ee5e7, + 0x3ff54f6effd3daf6, 0x3febbee0d3eb63de, + 0x3fc3d85168396578, 0x400acfabf7c9ee2a, + 0x4001954b287d5048, 0xbffae2044478dd9e, + 0xbffb53c107d2cb1e, 0x3fc46e7c9dc369e0, + 0x3fd13f86e2335fa4, 0xbff6ea6f84b7075e, + 0x3fe1ca541b563194, 0xbff1f8552e1a4827, + 0xc003682ec95ab80b, 0x3ff5faed902aa31a, + 0x3ff6eb6fa18fa032, 0x3ff034fbd79aa1ae, + 0x3fb2e79f8b416470, 0x3fc639b56081fcb8, + 0xbfe795a45cd5c863, 0xbff0cb255100cf5d, + 0x3ff4ac400f891582, 0x3feda80adf9a6b6e, + 0xc001b508471c8e1c, 0x3fe4211d0aaaf5da, + 0xbfebefbcb27edef4, 0x3ff060e0589ece57, + 0x3fe4b8ff69709d1f, 0x3fe07d8e36b08b2c, + 0xc00ab3913fdf25bf, 0xbffbbd0ea619fa3f, + 0xbfe26bf9a51014c8, 0x3ffc827dff0f98f3, + 0xc00bac26f9b09371, 0x3feb106b10b4844e, + 0xbff01c6452b4ab4a, 0xbff2c69c0d0dc6c9, + 0xbf9947c909219460, 0xbff1d970b74841a6, + 0x3fe153eba0037a83, 0xc00018babeaf3b98, + 0x3fffdc80b060d2a8, 0xbfe711637343f652, + 0xbff731d7d4ebf529, 0xc008174d3cd1c62e, + 0xbfe30fbf9492e458, 0x3ff722842be93790, + 0xc0092479a5bf508a, 0x3ff235b2a01de254, + 0xbfc9f59253eb64e0, 0x400530b6cf468c3e, + 0x3fe2ddf8e2d11dfc, 0xbfdc0fb22f292564, + 0x400d8aacacf44f52, 0x3ff49bd3e5084069, + 0x40031bea8a3769c4, 0xc003703b46fdb21a, + 0xbfe702054419d1c9, 0x4006b70103b5f100, + 0xc000d3bba2c39d79, 0x3fbef712eb004ff0, + 0x400969a92feb8db1, 0x3ffe3bb6b4097dbc, + 0x3fef0de5f24b97d2, 0xbfa631e6febe28a0, + 0xc00233b80b51939a, 0xbff7233ce1b218cc, + 0x3f843e90e74a7680, 0x4000494b01a5adaf, + 0xbffb6acfbd93a97e, 0xbfef0f21b87c9424, + 0x3fff8c1f943083cc, 0xbfbd36e8cfeec440, + 0xc0040ecfa6b87e04, 0xbff21d50902a1892, + 0xbffc860a235b1447, 0xc0023a7fd220d4aa, + 0xbfe4783740ea950e, 0x3fd827c076a26f85, + 0x3ffeba1dc5dfc4ea, 0xbfd566a47c584ae1, + 0x400331c174cc8b65, 0xbff993ca250fa39a, + 0x4009b3c12f5b99aa, 0xbf9100b0fbc09100, + 0xbfbba431bd627ca0, 0x3fdc6febae30de13, + 0xbff0aaeac2b628ce, 0x3ff20b2689455107, + 0xbff04f5c2f632572, 0xbffb470e640635b2, + 0x3fda61980ae7f8c8, 0x3fdddcc96a676246, + 0xc001ea20d43ad4a6, 0xbfe28a2b61bfdd40, + 0xc008a9f8bf846f2a, 0x3ff1cf4bfb33e514, + 0x3ff1b67018624797, 0xbffda25c8c063354, + 0x3fdb3e557d0e01f7, 0xbfec84090a81f610, + 0xbfc3f72bad7dd9d8, 0xbfe90b3d2a61b51e, + 0xbfea78f2f7c71e79, 0xbfd65ddac46b9684, + 0x3fdc43ae2111da44, 0x3ff0a1c53800d714, + 0x4002a27c133710ee, 0xbff80ebd3e6b52fb, + 0x4002b67562d76356, 0xbfe2a628fa91aabd, + 0xbfd0d0013abd416c, 0xbfd4768545a1d180, + 0xbfda5b9c25662dfa, 0xbff4f4cdda60bb16, + 0xbfdace3656563664, 0x3fcc346c039433bd, + 0x3ff113b3b47a9df0, 0xbfd4f0e2217ef3b4, + 0x3fe6fe6a87717815, 0xc002a78954d70130, + 0x4005d9ecae2b7594, 0xc00350db0db29791, + 0x3fc6b2be474b4e40, 0x400a526cce3d4dd8, + 0xbff15c68e26f4a2a, 0xbff21d3aaccb5622, + 0x3fee47663c8c7578, 0xbfc1863b2ef4ec0c, + 0x3ff4997069df1432, 0x3ff359dd48ac5c2c, + 0x3ff53dd480f2b8b7, 0x3ff79387025c3453, + 0xbfdba865806f7e36, 0x4003ff2d461de6ef, + 0x3fd1c3b6a2a5574c, 0xbfefea48fb1ef773, + 0xbff6ff29db720afa, 0x4007e10b5984df60, + 0x3ff44102d6f5e242, 0x3fecb07db6973c8e, + 0xbff5903b26ed9028, 0x3ffe68f61299feee, + 0xbfd3b2454dda9fe0, 0xc00418253b572dbc, + 0xbff35b60c6f128a0, 0xbfee65f4205c3b86, + 0xbff8629753565cdc, 0x400dba1fcd91b0d8, + 0x40027a8cdf36e024, 0xc00a665067e2d08a, + 0xbfb050c5aeb315a0, 0xbfe5dfe408795058, + 0xbfd3eff49d56aee0, 0xbff2cb1b50da5418, + 0xc006c71a415607c2, 0x3ffe9dcf8bbf078c, + 0x4003456e603e67a6, 0x4004ea6b08c3393c, + 0x3f908653202e44e0, 0x40103fd68be2329d, + 0x3fb83b1f9461c560, 0xbfd20c716b1ea214, + 0xbff76e5ac9f566d8, 0xbfa6660dd800c2e0, + 0x3febce9b4a9ee230, 0xbff87f7f8e8b987a, + 0xc00f300446165fa8, 0xc0018bb5fff5d0bc, + 0xbff1e2efdcea9b90, 0xbfd36edc6403d280, + 0x3febb4c0939e4d4f, 0x3ff2a51e6ad0becb, + 0xbfb7c0ca4b1df6f8, 0x4006b9e4b9cd78a2, + 0x3ffd9289d530982a, 0xbff9820801e21b44, + 0xbffbb1455a5f200e, 0xbfc80a7e44175620, + 0xbfe5ec7daa6a2c7c, 0xc002ca2408ca6f09, + 0x3ff40a5f1b41559c, 0xc0036aa7bb25b502, + 0xbfe5c87d477a8188, 0xbfe8e9a447aaebf9, + 0xbfed1ccc1e269f6e, 0x3ffa37605cca6962, + 0xc00c0fe36bcf4519, 0xbff00e917f0518f5, + 0xbfecd2996ff7dbbf, 0x3fe930e3180e2e58, + 0x3fe5932b351a25af, 0x3ff29116872b1140, + 0xbfe29901aa5031d2, 0xc0080bb9567676b6, + 0x3fdcb7d9128a3594, 0xbfeaeb5075715520, + 0xbfec9b5f10868842, 0xc0010480a46eb19b, + 0x4009b42abe7100f6, 0xbfeea3f84ab2e030, + 0xbfeb7c00e5019200, 0xbfeb755c51779e5e, + 0xbff68c7867971724, 0xbfcec12c25ee65e0, + 0x3fc1c08be6afadcc, 0xbff9220dcc88b1be, + 0xbfe14e55b0de2502, 0xbfd4e2efb6f8c61c, + 0x3f61be77e420fe00, 0xbfd95ffaed6a3b78, + 0x3fe74199a65ba5c4, 0xc01099b9a3103bcf, + 0x3fbc4a1862ab9e10, 0xbfe1a070799f9143, + 0x3fd664f12ae4c260, 0x3ff00498c893ec9d, + 0xbfb78d7ca3c893e8, 0xbffad696cc05a762, + 0xbfffc9fce2e347c8, 0x3ff371e91aee53fa, + 0xbff22b9e8d5d2b49, 0xbff7892e60962eb4, + 0x3fba47848004df8c, 0x3fe1499416ff8d3a, + 0x3fba475918e9e9e0, 0xbfeb705b5e083924, + 0xbfe00fc3553f9ce0, 0x3fe6979c87b4e3c9, + 0x400547d59adaa629, 0xc012b189ed1d5815, + 0x3fe7339d081b9e74, 0xc0027c7f0590ddb4, + 0x3ffd51afe5fa8d2a, 0xbffb8d9db76947de, + 0x3fe209c3bcbfcf18, 0xbfff9b1f50c2581a, + 0xbfeae02ee898726a, 0xbfd21580eaa6e6ce, + 0x400a97672e2eb0ad, 0x3fd874eeb2ad5ae0, + 0xc0042af62f14e018, 0x3ff80b9c53c3c572, + 0x40036ea92dec4d5c, 0xbff244fc3abdbd61, + 0x3fe098b78628efea, 0x3fe672fcad42cc6e, + 0xc0090e765457fc64, 0xbfe4cad989e72856, + 0xbfee211693d3da0b, 0x3ffafb56aa85b42a, + 0x3fe3f725b1c380f4, 0xbfe5c3fa8174e281, + 0x4002c0e93203705b, 0x3ffd84b0b4eebbb2, + 0xbfe3ef0327d0c14b, 0xbff2a2f28b7e5414, + 0x3fbc563a2a2c6ec8, 0x4004c4a417737c68, + 0xc0037494b9f10e18, 0xbfd0469de6803330, + 0xbfeac0b8ae3ac2fe, 0x3ff0fa0ec7d32850, + 0x3fffbf4609e2d3e1, 0xbfeaf884a837954f, + 0x3f946546f45092a0, 0x3fdf0a4df98cb450, + 0xbff876e69e547297, 0xbfe188e50b54af60, + 0xbffff3b1d6c396a9, 0xc0107ca9c104636e, + 0x3ffd005fc5bbafaa, 0xc008deea67c76488, + 0x4015f1015c246e87, 0xc00037984a59c443, + 0xbf92c33092f8af40, 0xbff2f6af750a5683, + 0x3ff760b41592c85a, 0xbffd4e14991df010, + 0x3fd66eee7e0f4746, 0x400a65aee0b7aa6c, + 0x3ff5720334bf8b44, 0xbfe18c4ec4a6b96b, + 0xbfe2de1bf104b680, 0x3fdc5f2d0b6fbd04, + 0xbff158f99f477eac, 0xbfe86048c22d12eb, + 0x400689bef155f654, 0x3fddd3406f9a2790, + 0xbfcc9c98e10cf378, 0xbff308ad86b5b8a0, + 0x3fe230f5cda14986, 0xbffb5da6ac7bb3d4, + 0xbfda9e95d0a90a10, 0x3fd5365e65435170, + 0x3fef4f08b7cc814c, 0xc00ac04901042c34, + 0x400140ae14ae8755, 0xbfd7966ec021d6f7, + 0x3fd81dc1ac8e2210, 0x3fddcaef46ff1e38, + 0xbfe109e82fb813fa, 0xbfba87a2172147c8, + 0xbfa37285e1aa7850, 0x3fefcb5180be55c6, + 0x40093a5d07a02248, 0xbfe5e8e7533489af, + 0xbfd2f562b6394be8, 0x3ff087dd16594018, + 0x3ff3db27e6a7ed51, 0x40045bf87c333cab, + 0x3feaf4635016a2c0, 0xbff6541953ddbec3, + 0x3ff4f1b1c9ff0e57, 0xbfcc5ccd314dc298, + 0x3fb4516d3ee0e3f0, 0xc0022e1ad928bc1a, + 0xc00419cc4091c842, 0xbfb78661638e0488, + 0x40013769e9056832, 0xc00575d5f32dacfc, + 0xc00195084e52eb3c, 0x4006e355416fbb47, + 0xbff7ffbe4f39ff3c, 0x40056bcce23502ac, + 0xbff425b332e0dd76, 0x3fbb8c6a7e670b80, + 0x4003101adc66e2c4, 0x3ff5870915d7a353, + 0x3ffa51824549a8ce, 0xbffbcf6e3b3bfce9, + 0x400735ace0592361, 0xc000946bcfceecc0, + 0xbfee0324f25b7090, 0xbfe5609322aa6246, + 0xbfb3bad323d885b0, 0x400917f6d67d880e, + 0x400d8300dba3d6fa, 0xbff077773476aa3f, + 0x3fd53c6156f2006c, 0xbffc621316272d52, + 0xbff583b12f9035e5, 0x3fd2147b97714bd6, + 0x3ff6eeb28666ee76, 0xbffd7d9526b34034, + 0x3ff8b63857ac5f74, 0x4002cd3ae0e26844, + 0xbfeb6e7febdba895, 0xbff47f79649c9f04, + 0xbff9453aefb63f22, 0x3ff063c564048dd0, + 0x3fedb1f298eeaca5, 0xc002da13172e28f2, + 0x3fb75696bcd75710, 0xc0028c76304b7464, + 0x3fd70add9284794e, 0xbff02251e5f69a85, + 0x3fc5c0f169e126e4, 0xbfe80ee05cc53b95, + 0xc00a046a00d3e961, 0x3fb8bb12a548dbcc, + 0xbff9eb5cafc998a2, 0xbffa13c291bc3cc1, + 0xbfe8c3b70593529b, 0x3ff95ef598918ee3, + 0xbfe66aca3a6a4ba4, 0x3ff54f86671092a2, + 0xbfff74a6595f0acc, 0x3ffb6e49e67263d0, + 0x3ffeb1ecfe4526eb, 0x3ff0da91e4ded70e, + 0xbff42c2447b22b9e, 0xbfe72c5d5b24994e, + 0x3fd240e60cf0d461, 0xc006fd468b1c8e7b, + 0xbfefd2f51fdcefcb, 0xbf9a1098668226a0, + 0x3ff8486ac2db1a6e, 0xbfd84a2409a3efc0, + 0xbff1ebe1f9b3d2cc, 0x400b974541a6bbda, + 0xbfdedb86a928a048, 0x4008d2310fe0fac6, + 0xbffa0876dcf8691c, 0xbfb06e533c39cab0, + 0x3fd07d5de0c1faba, 0xbff7adb2bbb12f69, + 0x3ff1599567f98b1e, 0xbfe55fcee0e434ea, + 0x3fed3512cb8b900b, 0xbfeb423e58e42a1e, + 0xbfd371da3279a348, 0xc001afab3eb2c525, + 0xbfda6affda243ec2, 0x3ffb4944a6ec821f, + 0xbfced1989edbe418, 0x3fe0c79bb8be3b06, + 0x4004592028f1deb6, 0xbff066ec1487e1aa, + 0x3fc9e22e409910f0, 0x3ff9bc305a76f590, + 0xbff3d3d8fd1fe2ed, 0xbff5cd24642f7326, + 0xc00ff818bda4c580, 0x400532e31d8a8895, + 0xbfd618df14d16295, 0x3ff28480ff66d1ae, + 0x3ff931a60c14ca9e, 0xbff05dde76397548, + 0x3fc87748a16d02e4, 0xbfbcde7f94712b50, + 0x3feb0f900dbac1fd, 0x3fec1b3715a6b023, + 0x3fe1266d9e6d40dd, 0x400af83242124906, + 0xbff34112b5a32554, 0x3fe5e2f5a08ca5e9, + 0x3fdc6568bf957497, 0x3fdf336b1189269e, + 0xbfd452493e4e0fc8, 0x3fc44b6dda644c92, + 0x4003ccd81514dede, 0x3fd0693bceadc860, + 0xbff0ef6be5d018b6, 0x3fec1a7bbdc7758c, + 0x3fd8c069a2982b60, 0xbfffcd7b6444697c, + 0xbfce37318a9b6a00, 0xbfe1f3db1779b242, + 0xbfe4c87f658330c6, 0xc00619bc76f5516f, + 0xc0033f040ff68b18, 0x3f9b9088b59112a0, + 0x3fcae23a5aa4093c, 0x3f830c0b0df1ae80, + 0xbffe0964ad310856, 0x3fee4002f72469e5, + 0x3ff26b47a36f717f, 0x3ff6ea38c9cc95ef, + 0xbfec4099862265ae, 0x3fd6d2b36b004cf2, + 0xbfeaa4545903af45, 0xbfe83944fa82c727, + 0xbfe2190402c93b3a, 0xbfdd7b5afc9690e6, + 0xbff9e0758fd48557, 0xbfdae34a424d5500, + 0x3fc47394ad07ea68, 0x400c0435b32f1bb6, + 0xc00db5c9264e355c, 0x3ff5ff03b1c1c9e4, + 0xbffc11da64b7f34c, 0x3ff28ee3b7386db6, + 0xbfec33a4be8a61d8, 0xc00ea91bd8800246, + 0xbfc5d23481bdf6d2, 0x3febde4e7449bf79, + 0xc00a48ac18b57e53, 0xbfda2d11794e1f20, + 0x3ff280e904dee594, 0x400867307ad598f7, + 0x3ffcd5cdaaca5395, 0xbfd530a3e163d31c, + 0xbffa58e4bd771dc6, 0xbfcd5dafc898f777, + 0xbfe09e06a159b404, 0x3fdd37576a4c2baa, + 0xbfc0c321e2c327d8, 0x3fe0ee1b725185aa, + 0xbfdd9b87bf3c0604, 0x3fe19a3b8af2a7e3, + 0xc001804b18a72d2f, 0xbff75fa5054fff4d, + 0x3ff9ca5b4fd88898, 0x3feec87f0053a968, + 0x3ff91c6ef81a75e2, 0xbfff5b952c7074ac, + 0x3fd71943d12d0c90, 0xbfeb98f82adbd8cf, + 0x3ffca8f253aeddb2, 0x3ff0e7190003ac3f, + 0xbfcb269669ddaa60, 0xbff5b9cbd7207485, + 0x3fe06ff3fe1e6bce, 0x4002e5bb3bd72a7c, + 0xbfe2ab052058c958, 0xbff82fb2c550ce52, + 0xbff8486b4173b049, 0xc000f9dde3943742, + 0xc0042bac79cf361e, 0x400310633356604a, + 0x3feac48d25b23870, 0x3feabc280b237506, + 0xbfe82f28cf1feb48, 0x3ffb35e97dbd8c97, + 0xbfee2291b61bbc52, 0x3ff042cc6dd6fdbb, + 0xc00277ab8a0a1698, 0xbffd839a8caf1224, + 0xbfe26a0b31ab2140, 0x3fffa081d20e1353, + 0x3fe5c3187a63a9c4, 0x3fefaa3dcc524ab4, + 0x3fb9caf001db2a90, 0xbffb384581c3796d, + 0x3ff7c06c8a1c9a19, 0x3fe8784b66b0a602, + 0x3ff241e83f31b834, 0xbff1f97f17d347aa, + 0x40020d1f95064a24, 0xbff75dcfdadd0403, + 0x3fb7aaec595fc770, 0xbfd13bba040a87af, + 0xbfc3c3f73a65e050, 0xbfdacbbf57d8e1ba, + 0x3fc9a8a4303ca120, 0x3fe873c5682bfa23, + 0x3fb84afb1dc12acb, 0xbfe5dc2cda962836, + 0x3fd7ab34bea5cd08, 0xbfef3fcb8e21a436, + 0xbff455826a93f66e, 0x3ff18397ea8738ce, + 0x3febfea7cb996b2d, 0xbff7d92de8b77c2d, + 0xc00566d79b5798f0, 0x3ff5bc8b85d3b549, + 0xbfee9b4bdb8c62ac, 0x3fd5aa713d290270, + 0x400ac58802ee1c92, 0xbfd5f2d9982c5dbc, + 0xbfe19227e389379e, 0x3fda2a2671cebd14, + 0x4002aa8ade41028e, 0xbfe31249affbfdff, + 0x3ff629ff77903bba, 0xbfedccb5368208af, + 0xbff12eae388ae126, 0xc00d264791484704, + 0x3fd717b13abc9f68, 0x3fff035e77ace969, + 0x4001591736bb22fa, 0x3fc3d43869193bb8, + 0x3fe38d7c5cef121e, 0x3fee2b1c40bdf9ba, + 0x3f34b95c0431c800, 0xc002537afaa7fff0, + 0xc003491364edde87, 0x3fea0a6ef2c32a64, + 0x4001eb6954aeee75, 0x3ff1103f19b978b8, + 0x4001291a80e9da3e, 0xc001fab28e3d201e, + 0x3fa34c28d866a1c0, 0xbfe319449d1b225c, + 0xbffe3d452713bffa, 0xbfde6ebf9bd085a6, + 0x3fcb5cb08c06e240, 0xbffe0d20ce1bc5e1, + 0xbff975dc4e1b0396, 0xbfeff6cddc6857ea, + 0x3fefc720198dbe4a, 0x3ff1ae4507cd91d8, + 0xc0076f3fe2378a44, 0xbff246b256a01de8, + 0x3fc094f7a9a4c32e, 0xc0068abcd3acb198, + 0xbfd61795dfeca94e, 0x3fe3137ad0e0fa1b, + 0x3ff0ef530382fcfc, 0x40100d8a3e60f107, + 0x3fcdf089647d3fb8, 0x3fe9e4ecd738a090, + 0x3fe74715e98a9315, 0x3ff7aae6e2e44493, + 0x3fdacb3fa4ba9925, 0x3fee8dbf72aedc1a, + 0x40044a3048c536c7, 0xc002e3e6263ba1d4, + 0xc004e6ae885a1948, 0xbfd465078ad09294, + 0xbffdb76d50b1d354, 0xbff31a43bd9dff01, + 0xbfe8ba9f74e27c86, 0x3fe4582a5f6517f0, + 0x3ff895fdaa4d3a45, 0x3fd50ca382775f8c, + 0xbff13095590647be, 0xbfdbe3be7d795df4, + 0xbfbee48c92f9d2d0, 0x3fffdc3042e2b1fd, + 0x3ff986df01ea2554, 0xbfe621f53f495e47, + 0x3feb43ea47997b86, 0xbff2b564152a6b0c, + 0xbf96df1b1d4c57e0, 0x4002dc6dbfe87083, + 0xc0030d800e6852bc, 0xc00a987adb63305d, + 0x3fd3a1357879fe3a, 0xc0018b7d3aa1c054, + 0xbfe5a1e879a08d5c, 0x3fea86ec8d816d10, + 0xbff6be41ced22b38, 0x3faa6f00dd96b700, + 0xbffc430dfdcba616, 0x3fe51b5f5fa6fe66, + 0x3ff9445de36e36ce, 0x3ffd68cfbd0b0ceb, + 0xc009e5d378ecf205, 0x3fe75c4437e37cda, + 0xbffb705818c13e80, 0xc003d63d21db240d, + 0xbfd816ad18cd6c6a, 0xbffbd20d7eceac6a, + 0xbfce3dd3c6748062, 0x40052dd2c17b6ee7, + 0x3ff8a49d3ada420e, 0xbff44a2459983f4d, + 0x3ffaf79057053fbc, 0x3fcf31f35ae8c602, + 0xc0075842faa11102, 0xbfc1c06e9627b3f0, + 0xbfeeb0eda0c7a0ec, 0xbfc0a55aa942ebd4, + 0xc0132742544d0cf8, 0x3ffcce09b4b0a761, + 0xbff97708391a391b, 0x3fccb156628a35a0, + 0xbfa648ee0af32cb0, 0xbfb1d912188f5438, + 0x4000bef119dd524a, 0xbff713e398026257, + 0xbfe7450afa1e9d3d, 0x3fe20c64ddae0258, + 0xbfb8d989abed5104, 0xbfd3410f36d02956, + 0x3ff440f23f538237, 0xc006bb7a4b105747, + 0xbff6861a8c40d2c6, 0xc004598055dc32d5, + 0x3ff0e8691a9c153b, 0x3fe68aa51c613db0, + 0x4000ac4c5649ffc9, 0x400be4919e78c425, + 0xbfb2f4597fa3aa84, 0x3fe1aa786f40d25c, + 0x3fd178930859c95e, 0x4005a3e574eab180, + 0xbfef0394f9d43df9, 0x3ff4aa42efe87bc8, + 0x4001b31d5ccf4da7, 0x3fed1e48700873eb, + 0x3ffd7cceebe10fcb, 0xbffaace70aabad5f, + 0xbffd5d856572d5ea, 0x3fe86319ce86249e, + 0x3ffe11f24f8b2e81, 0xbfcf2217d34d9790, + 0x3fcdb6e3762990e8, 0x3fed4727ec179753, + 0x3ff7703e718aae2f, 0xbfe63a508a502088, + 0xbfe2105785e693e0, 0x3ff401bd37fcead0, + 0xbff49720c4737511, 0xbfdc007d15060e48, + 0xbfd94ec9d1f19c38, 0xbfc29fbcbff9a318, + 0x3fe5e977bf554b40, 0x3ff18275990a35fc, + 0x3fe7c1ebf0714081, 0x3fe9f3c91a709b0f, + 0x40034f958ebcd66d, 0xbffe7a1dceba6bc8, + 0x4005835f8b6dd78c, 0xbff9c8d1cbd3536c, + 0x3ff472f6105d836d, 0xbfe67a869745b05a, + 0xc001d2874c681102, 0xbfe1f2545876b386, + 0x4005e99bedf23ae3, 0xbfdc7e84c2ca3a2a, + 0xbfe61b48a60c19b4, 0x3fd24012e56ed30a, + 0x3fbf133b92c400e8, 0x3ff78c6ae4886a4d, + 0x3fe85083e03bbd67, 0xbffe237d11118cf5, + 0x3ff896e36a8b00d9, 0xbffeed66188434b2, + 0x3ffd1b5ce23cb02f, 0x400744cb9ee30e40, + 0xbfd8635472ded212, 0xbfeeaaee7b0385f6, + 0x3ff60e8d33047ddf, 0xbfc29906bb1fa1e8, + 0x3fd2923f2e99a17a, 0x3fd1844fbaf33476, + 0xbfd1751089ec0fb6, 0x3fecfb7e99d89500, + 0x3ff6d66a706013be, 0xbfe8fe28de01b716, + 0x3fcb2fd4f96733bc, 0xbfe0a6ab74b75000, + 0x3fe5c96890311550, 0x3fdc464982cee30a, + 0xbffe9934c65c9795, 0x3ff6a2f31a8d2f34, + 0xbfffc37270892a55, 0x3fe57fcb1cadb380, + 0xc007b5366b0582c1, 0xbfb68f7c42efbee0, + 0x3ff3f7950fca3751, 0x3ff0784bbe9fbd2c, + 0xbfdb900fe6ed0f00, 0x3feb3c3d920c7fce, + 0x40002f7c6846b07c, 0xc001732bd61f28e8, + 0x3ffc75b14ae1c134, 0xbfbd30ecc1815b10, + 0x3fea2569afdc4040, 0xbfefb74bbda3f93a, + 0xbff8eb5275077d7c, 0xbff1229b8515c618, + 0x3fcad47b7fc857c8, 0xbfe30398e2d854e6, + 0xc008bb3b19cd00c6, 0x3fc98eca8d9ce656, + 0xbfbf4dad2298cb00, 0xbfed5ed6f54eb6a7, + 0xbfed48887e01e66a, 0x3fea11a8bbefd064, + 0xbfccae18873624e0, 0x3fcf237090cdbfd8, + 0xbffa57241bd8ed3b, 0x3ffb461b952f6a40, + 0x3ff0571187a85138, 0xbff8a9b238b610ca, + 0x3feb76776602f1b9, 0x3ff0519bfaf92074, + 0x3ff95254e51b80ed, 0xbfeba12f3dc812ce, + 0x3fe602e8a634c670, 0xbff2341bb995e11c, + 0xc003e4a121d13f9e, 0xbffc542fea9fa450, + 0x4004899959826283, 0x3feeb47af9851db6, + 0x400f077e31ffdda3, 0x3feb173dc3681861, + 0x3ffa4736e9bb7f9b, 0xbff7b86218ca0f53, + 0x3feee388dc2eced1, 0x3ff75516f0403ac6, + 0x3fddd20491ea617e, 0x400b15c6a4d2416c, + 0xbff302bd88de0af8, 0xbfd5fee30fff6d87, + 0x3fd55deb86d36ef4, 0xbf80b1f3c0911fc0, + 0x3fe0ae16dfc2a44a, 0x3ff59c610ce1f444, + 0x4001e7b20bfffbd5, 0x3fdfb7ccb8012644, + 0xbff4a525d6a5bf86, 0xbfe634bf3ed4d8ad, + 0xbfc733f81f4e9ad8, 0xbff5b31fdf5046be, + 0x4003d24b1fac2b03, 0xbff647099fe9645b, + 0x3fbc8a6f11e24540, 0x4009eff3d9768026, + 0xbff8651bd0fb57e0, 0x3ff710bdff38e3e6, + 0x3fefe5fc4b015ef6, 0xbfd51c942e0fc7f6, + 0xc0076785ec64ae96, 0xbfe0c4ddc397ab21, + 0x3ffc4121021b2f64, 0x3fec40eff609afbe, + 0x3fd64b720bae40c1, 0xc0007a7c4bc13e92, + 0xbff10e9d5c11d6cb, 0x3feabc01812364bc, + 0xbfdb9646f334f790, 0xbfccc49e125015e8, + 0xbfd575d713b9a8a8, 0xbfe99ee240c7d1fc, + 0x3fd1ef6ec07a3dfc, 0xbffae40cf2c1cf9d, + 0xbffa6337f04d26dc, 0x3ff0e056ff752ad2, + 0xc00975825dd1a520, 0x400a13b42273162a, + 0xbfe4e2fa57204fad, 0x3fc088066b873d1c, + 0xc01668d28b6e2336, 0x400626fbf967b3b4, + 0x3ff9a54e20777e93, 0xbfef93a0f4221c9b, + 0xbfeb9fb91bfc5a13, 0x3fea90d20fee7ed6, + 0x400b860a3d7f28ae, 0x40017051fe1f8eac, + 0xbffdf291317c8177, 0x3ff802658530fde5, + 0x3fff9a54c2b69504, 0x3fe828993fc3c22b, + 0x3ffd6961418f69d9, 0x3ff09c44574675b7, + 0x3ffd074b3252864a, 0xc0002dfce1d1ede0, + 0x3fa2cbaa0f32c320, 0xbfba78a2d261b9d0, + 0x3fd6d3e972091e95, 0xc004197594f3c203, + 0xbfe14061c2d5c23b, 0x3ff8a178e7e2b7a4, + 0xc008565faa0ef87a, 0x3ff214b40c374ca8, + 0x40082dfce71558b6, 0x3fe88c190b19e050, + 0x401071a1462c7ef6, 0xc019f545f7e746a1, + 0x3ffdc6bca8cfd8f0, 0xbffaa271e1334aee, + 0x3fb8e0b74585ee50, 0xbfeb72c8f8689eb8, + 0xbf9208ab9bfeef60, 0xbff08ec100fc72ce, + 0x3fd408b351aba252, 0xbfd99643a12aa42c, + 0x40012f4a51ee7cfa, 0xbfe8a4cfdac3f75c, + 0x3fff9f4b02d585d7, 0x3fdfb7cab2511131, + 0x3fff6e15da27532e, 0x3fe61f938a27ba46, + 0xbff199afcfee6898, 0xc00f248326d85286, + 0x400c0537fa417fdf, 0x3ffcdba372a2e3b0, + 0xc0109847b188c028, 0x400688a8b684f85f, + 0x3ff3cde9c67f31ed, 0xbfdede36bc447403, + 0xbfd19255d6e8ad46, 0x40016442986ee44e, + 0xc004ab214073c540, 0xbffea7ba983398a4, + 0xbfeea6c983c65ee6, 0x3feee592533b0f77, + 0x3ff102add34cb2df, 0x3ff512211d90bff8, + 0xc0033c757f991fe4, 0x3ff84a3f3e77c0f8, + 0xbf95ae94357ee030, 0x3fe6be181fa907f6, + 0x3fc2558222abe2fc, 0x3fe11d4efd8e93d5, + 0x3fea66e4f9d6bd50, 0xbfecf281787d637e, + 0x3fd3631d9da50174, 0x3ff8df575d749305, + 0x3ff8df54259d78ca, 0x4009fb2e1d059ea8, + 0x3fef6d47422bab4e, 0xbfee17ae05ead466, + 0xbfdcd50c72d60614, 0x3feb7e8e86ddb2b2, + 0xbfd47625e5c59fb4, 0xbfcebf68e764d7fe, + 0x4003a4ee7d235d46, 0xbfec26b940a0dc2d, + 0x40042c3d67348d74, 0xbfe47fb8f390078d, + 0xbff2dc164a9563ca, 0x3fee54d36e6a9d0e, + 0xbfd2e6284e0d6080, 0xbff6d0dc7c0664e4, + 0x3fc0a08dcec70f9a, 0x40026a2e6304b4f5, + 0x3feabb6b34cc6392, 0xbff08ebbb695a9fa, + 0x3fef7e9ac4577913, 0x40067badd2648fce, + 0x3ffce8c553d4aea6, 0xbff98fe8b08ab06e, + 0xbfc3779a2dec081f, 0x3fcfc0895c7d534c, + 0xbfde924804bd6aef, 0xbfd3f3cf40f2f2b2, + 0xbfe0e581c78130e8, 0xbff77e152db9ccfd, + 0x3f8c036b894089c0, 0xc0046c6718ff8ca1, + 0x3fea4afc95c24ae1, 0x3fddc87cff6becff, + 0xbff427cb7dd4f60b, 0xc00180eaf251ffd9, + 0x3fe5ed77ab6cf3cb, 0x3fe2c3f68baa8faa, + 0xbff183916fc2aa6c, 0x3ffb7eae343e32c6, + 0xbfe92e1d0d65e5dd, 0xbff91c835f8daba4, + 0x3fd579b22b889691, 0x3fc2c68ca5d70908, + 0xbfeb644e3732e246, 0x4001fc3b59cfaa54, + 0xc009405cd4d2c009, 0x3fe7c8a6ce0a1700, + 0x3ffc2c601339f9a1, 0xbfe82f487a321534, + 0x3fe5d9191858cbd6, 0xbffb1c0dbabf6691, + 0x4000b6824022888e, 0x3ff75f35c9e55ea2, + 0x3fcc8ba6f25b9ef4, 0x3fe2f461e6f6af21, + 0xbfdb70544573a30c, 0xbfdf1ac5e8e40bed, + 0xbfe18dbe9e732b9d, 0xbff348f6097054c7, + 0xbff172025ee3d342, 0x3feef9836a58ade3, + 0x3fe483fd3805ab38, 0x3fe5ad7ee538eebc, + 0xbfe3812e05696017, 0x3fd2ffdcbf2a2c54, + 0x3fcf386b91d5f670, 0x3fe58b08a687a7e3, + 0x3fc76f315c9d4be8, 0xbff50da452ea8e9f, + 0xbfed35c8979a2def, 0xbfe7167c528f1145, + 0x3fdd3c8165c7db08, 0xbff84897d004cca8, + 0x3ff5e45c956e4f8f, 0x3fe85f7e36bec91a, + 0x3ff9c2150935f570, 0x3fdae2d31b3daf20, + 0xbfe988bd0bea419c, 0x3ffc26f87b0b807c, + 0xbff88105dbc5dfa4, 0xc0078365b190723a, + 0xc0077c2a72e74476, 0x4002fb9676ff2182, + 0x3fd7dd2659fe4550, 0xbfe9a62d17d4863a, + 0x3ff4d3ce88150182, 0xbfeac8f8019dc7a8, + 0x3ff38e8efeabec56, 0x3fb24e337db3b398, + 0x3fde104030896766, 0x4000d448699226b3, + 0xbff990fd387f8ad4, 0xbfee6b2646094b96, + 0xbff86dfddb3784d0, 0x400277d4476aa86c, + 0x3fed5875cc787118, 0x3fcf57cb09b13694, + 0x3ff0cd49da7ee84b, 0x3fd33a85cc238e94, + 0x3fff52e90c4bb75a, 0xc00d14449ceb480a, + 0xc002be4bb7acffac, 0xbff62dfef42a283d, + 0x3fdaa83f495c2756, 0x40055ba1c2b9bf51, + 0x3fa458e9d4d817a0, 0x40014e5b16e5b307, + 0x3ffb595992022678, 0xbff089ed81ef87e0, + 0x3fcbf4be4669fc80, 0xc001bf7e9172c9a9, + 0xbfe7286f1fbb5528, 0x3ffadddbc97dce22, + 0x3ffa5fabd1a2efc1, 0x3fd728b659985bae, + 0x3ff9f84b739eae08, 0x3ff9322affd82055, + 0x4001215081952a85, 0xbfe1568030c4cfcc, + 0x4005f7badbb5ea87, 0x4013a4a1281a5ede, + 0xbff2662d01479b33, 0xc0010d9e1ce4ac11, + 0xbff5334eb16eefa6, 0xc0095144cb79cf37, + 0xbff0779fd0efb26e, 0xbffd1254b3a89c80, + 0x3f9f3e1909934700, 0xc002ac49a4f7c0c6, + 0x400c8fb659f1a5fa, 0x3fcc78925c9f0512, + 0xbff962b937a508f3, 0xc0075d23d4466c8c, + 0xc006d076bf0dfea2, 0xbffd9c127d707c98, + 0x3fdf85eb56738ffa, 0xbfb3391d7a5111b2, + 0xbff2f2bc5bd51326, 0x3fe95e87d445bb1e, + 0x3fe34a808864cc28, 0xbfe5633a19ce1dae, + 0xc00c31d421c2ce02, 0x3fd652ac03dc3386, + 0x400548528ac801fd, 0x4009fa69db55fbb4, + 0xc004f8ed4a8dbe18, 0xc0101f173756c038, + 0x3ff498e62aa410f6, 0x3fe93b1a1e091184, + 0xbff04b272cb923be, 0x3ff19442745be07e, + 0x40031eba9592f582, 0xbff5f29d544320c8, + 0x3fd6957c7a3348f6, 0xc001750f200cd1d4, + 0x3ff93081c08a2636, 0xbf96440d93096bc0, + 0xbffd1ca26237d362, 0xbff42e2dd329dad6, + 0xbfffc066548cc7f2, 0xbfed01ce8b994aa2, + 0x3fe36f6dc3c4d182, 0xbfd06cd597a94a3a, + 0xc0087ed5a4ae2e1f, 0x400ba9786498456b, + 0xc00658c544440b6f, 0x3fb7bcc805b19e40, + 0xbfd3723e764ea90c, 0x400416a2856738fa, + 0x3fc1045887d617ce, 0x3ff0c897c93c7e55, + 0xbfca189afdf355aa, 0xbff4f66f28391b7d, + 0xbfd77274b6836516, 0x3fe360d59e08ad29, + 0xbfb4284e9e769cac, 0xbfeb3e54306bf03a, + 0x3ffbd65a05ef6c06, 0x3ff283c5770bca75, + 0x3fc95b803c068020, 0x3ff56c6d77a0f69a, + 0x40038a278355a676, 0x40073e728f745e3e, + 0x3fe54f1239b87b8a, 0xbfea66e020c38d4e, + 0xbfc6223180e230a8, 0xc0055739ab293278, + 0xbfd8cddd96e75000, 0x3fc9f753b373e31e, + 0xbfe632ec8015a194, 0x3fad10b62d234840, + 0x4004ab91e4b2183b, 0xbf91f02449f0c6b0, + 0x3fe44cf2531d8f83, 0xbfb626a4976a82a4, + 0xbfe5de85495ccef4, 0x3fed187381698d83, + 0x3fe9e235c1c42ac1, 0xbfdfe0ac30f66c20, + 0xbfcbb79e53322170, 0xbfd34efdcf120714, + 0xbfd69ddff7bfadf6, 0x3ffa090dbb22cff9, + 0xbfed4bd5564fc36f, 0xbff1035f6d0c8735, + 0x3ff06dd96f8d56e6, 0x4002bc0bf868d68c, + 0xbfcd602daf300626, 0x400f63a1892768aa, + 0x3ff6cc0f1c7070dd, 0xbfd5f6d25a00eac6, + 0x3ff327902e1c9e1b, 0xbfcd7578cab11436, + 0xbff148e7f2e93bea, 0xbff66381087aa98c, + 0x3ff51210519e914e, 0x3fcb551eb95a6cfd, + 0x3f51a80d8ba52c00, 0x3ffcd189e097ca1a, + 0x3fe3f09c45a067a4, 0x3fc39ebb205ebfc2, + 0x3fd47fefe336e4fc, 0xc00c461264f5c1c8, + 0x3ff44b7477bebc92, 0x3fec3d161dd67d43, + 0xbfea940df693e094, 0x4005a757bbfa181e, + 0xbfdd05aeea0275fe, 0xbfa44785ae649ac8, + 0x3fd1da0115a48094, 0xbffac3d972181b49, + 0x400b2177ae870c05, 0xbfdfe1a000f8685c, + 0x3fece15d4f402613, 0x3fe0964239a90e7e, + 0x3fc6e68666636888, 0xbffec7be2f889fb5, + 0xbfd90e7f577345e3, 0xc0030afbc345e364, + 0x3fd97c04e4d84222, 0x4001277065567b32, + 0xc0013d77bc3db1eb, 0x3ffb3d5f3387ec33, + 0xbfd94cd571f1f3f2, 0x3fdeff24ec5a655a, + 0xbff9099d2d441b24, 0xbffa0dad2df68605, + 0x3fe6e31ce2bacb8a, 0xbff0c6194a5dee94, + 0x3fdaeb6960c20a00, 0xbfcf12df424d79e0, + 0x3fea4d039c364e88, 0xbfe745ac696182a8, + 0x400fd41bb984d82b, 0x40015884ea5692f8, + 0x3ff9d448c9236a57, 0x3febd6a88d75f545, + 0xbffb3b626d23700d, 0xbfd22b601bee3710, + 0x3ff092f1e1110a61, 0xc00683a461436473, + 0xc0022c56bb76281c, 0xc003f9f5980a3ad2, + 0x400146aeadc53076, 0x3f66206736cce800, + 0x40078efe9930e0d6, 0xbff5971fceefe626, + 0x3fe853a5b55dd56d, 0xbff63ce9433b9d90, + 0xbfed47695c45c4e4, 0x3ff7aab6ef87a86b, + 0x3fd6581da294ee45, 0xc00a3c99f6c9e0ea, + 0x3fe15f4c721ced3c, 0xbffe733d8638a9dc, + 0x3fe28fd627ccabcc, 0x3fee29fc325e5959, + 0xbfd4fbc6a65bcaf8, 0x3ff1b32f0ffca982, + 0x3fdea08d13cb13d9, 0xbff9eae155889fbb, + 0xbff80a29d315fc4a, 0x3feaaaf8202571be, + 0x3fe5c6e6251c9f30, 0x400167be216e9f51, + 0xbfeaa6870d333e78, 0xbfb9577788de7020, + 0xbffc4ee13f0974d8, 0x3fdc146dc31165f0, + 0xbfc18f7f243f4166, 0x3fd290ac2a5c4eba, + 0xbfe8ce50652b8f89, 0x3ff15bb908b64f07, + 0xbfb0f3129f5777b0, 0x4006e263929c4b52, + 0x3ffa435f11ef3083, 0x3fe88aaba049a540, + 0x3fba3d6ca5a046e0, 0x3fde9ddee450ad10, + 0x3ffd22db99d76e1e, 0x3fdfcf76385dee06, + 0x3fe14a2c51dec5df, 0x3ffc05c5fbcb4d36, + 0x3ffeca006ea4df36, 0x3fe9e8f01654cac5, + 0xbfbae7fe07618b90, 0x3fc4b7b86303dd6c, + 0x400456221cbc19be, 0xc000ffb58f12f51c, + 0x3ffbd1a82755a6dc, 0xbff659ca448e8822, + 0x3ffb524ce8b24dd8, 0x3fdd518f619a4250, + 0x3fe88d6af48cbd75, 0xbfe80e63c9ad50b6, + 0xbfdb0769b099edc2, 0x400240313d255c49, + 0xc00cfd1c585a7517, 0xbff125dba22fca73, + 0xc00d9e288a78be22, 0x3fefc17eeb07cbf5, + 0x3ffecc23914c9d05, 0xbfea0a85e3175072, + 0xc007d02a4deee317, 0xbff7ebb96cb6663c, + 0xbfa43f7a53d75ea8, 0xbfe2fae52b72c094, + 0x3fff7c797563a099, 0x3fe2d6567c0ba4c8, + 0x4011fdf1e8e93182, 0xc007a65db7e7636b, + 0xbfe9e0561d6d2a9e, 0xc000ce435a644ec4, + 0xc005bb63070d3531, 0x3fe47715db811d20, + 0xbffd4eef1851a3ae, 0xbff19a7093f70b8a, + 0xbfeb30ceca472f60, 0x3ffee5d519a20164, + 0x4001445f67d092f8, 0x3fe1e23bbd8d01ee, + 0xbfdb1ecdabef61dd, 0xc001329f88c0f9c4, + 0xbff16a9c70410e84, 0xbf8c2d8516d4cfa0, + 0xbffcb923343b8322, 0x3fee1c13cf4e47be, + 0x400121c56e39e9dc, 0xbfd9005bc1ab2cd8, + 0x3fec3570a7070430, 0x0, + 0x400121c56e39e9dc, 0x3fd9005bc1ab2ce0, + 0xbffcb923343b8322, 0xbfee1c13cf4e47bc, + 0xbff16a9c70410e82, 0x3f8c2d8516d4cfc0, + 0xbfdb1ecdabef61d3, 0x4001329f88c0f9c4, + 0x4001445f67d092f8, 0xbfe1e23bbd8d01eb, + 0xbfeb30ceca472f60, 0xbffee5d519a20166, + 0xbffd4eef1851a3af, 0x3ff19a7093f70b88, + 0xc005bb63070d3531, 0xbfe47715db811d26, + 0xbfe9e0561d6d2a9f, 0x4000ce435a644ec4, + 0x4011fdf1e8e93181, 0x4007a65db7e7636b, + 0x3fff7c797563a09a, 0xbfe2d6567c0ba4c6, + 0xbfa43f7a53d75e88, 0x3fe2fae52b72c097, + 0xc007d02a4deee317, 0x3ff7ebb96cb66637, + 0x3ffecc23914c9d08, 0x3fea0a85e3175074, + 0xc00d9e288a78be22, 0xbfefc17eeb07cbf6, + 0xc00cfd1c585a7518, 0x3ff125dba22fca72, + 0xbfdb0769b099edc0, 0xc00240313d255c48, + 0x3fe88d6af48cbd77, 0x3fe80e63c9ad50bb, + 0x3ffb524ce8b24dd3, 0xbfdd518f619a4264, + 0x3ffbd1a82755a6de, 0x3ff659ca448e8820, + 0x400456221cbc19bc, 0x4000ffb58f12f51c, + 0xbfbae7fe07618ba0, 0xbfc4b7b86303dd74, + 0x3ffeca006ea4df38, 0xbfe9e8f01654cac8, + 0x3fe14a2c51dec5dd, 0xbffc05c5fbcb4d36, + 0x3ffd22db99d76e20, 0xbfdfcf76385dee08, + 0x3fba3d6ca5a046a0, 0xbfde9ddee450ad08, + 0x3ffa435f11ef3082, 0xbfe88aaba049a53a, + 0xbfb0f3129f577780, 0xc006e263929c4b52, + 0xbfe8ce50652b8f8a, 0xbff15bb908b64f06, + 0xbfc18f7f243f4160, 0xbfd290ac2a5c4ebe, + 0xbffc4ee13f0974d6, 0xbfdc146dc31165f5, + 0xbfeaa6870d333e7c, 0x3fb9577788de7000, + 0x3fe5c6e6251c9f31, 0xc00167be216e9f50, + 0xbff80a29d315fc4a, 0xbfeaaaf8202571b9, + 0x3fdea08d13cb13d6, 0x3ff9eae155889fbb, + 0xbfd4fbc6a65bcb00, 0xbff1b32f0ffca983, + 0x3fe28fd627ccabc6, 0xbfee29fc325e5959, + 0x3fe15f4c721ced3e, 0x3ffe733d8638a9d9, + 0x3fd6581da294ee52, 0x400a3c99f6c9e0e8, + 0xbfed47695c45c4e4, 0xbff7aab6ef87a86a, + 0x3fe853a5b55dd571, 0x3ff63ce9433b9d8e, + 0x40078efe9930e0d7, 0x3ff5971fceefe627, + 0x400146aeadc53076, 0xbf66206736cce200, + 0xc0022c56bb76281c, 0x4003f9f5980a3ad3, + 0x3ff092f1e1110a62, 0x400683a461436472, + 0xbffb3b626d237010, 0x3fd22b601bee3710, + 0x3ff9d448c9236a57, 0xbfebd6a88d75f541, + 0x400fd41bb984d82b, 0xc0015884ea5692f7, + 0x3fea4d039c364e88, 0x3fe745ac696182a3, + 0x3fdaeb6960c20a00, 0x3fcf12df424d79d8, + 0x3fe6e31ce2bacb8a, 0x3ff0c6194a5dee97, + 0xbff9099d2d441b26, 0x3ffa0dad2df68606, + 0xbfd94cd571f1f3eb, 0xbfdeff24ec5a655a, + 0xc0013d77bc3db1ea, 0xbffb3d5f3387ec32, + 0x3fd97c04e4d8421c, 0xc001277065567b32, + 0xbfd90e7f577345e2, 0x40030afbc345e365, + 0x3fc6e68666636898, 0x3ffec7be2f889fb4, + 0x3fece15d4f402611, 0xbfe0964239a90e82, + 0x400b2177ae870c06, 0x3fdfe1a000f86856, + 0x3fd1da0115a48098, 0x3ffac3d972181b4a, + 0xbfdd05aeea027602, 0x3fa44785ae649ae0, + 0xbfea940df693e093, 0xc005a757bbfa181e, + 0x3ff44b7477bebc8f, 0xbfec3d161dd67d45, + 0x3fd47fefe336e4fc, 0x400c461264f5c1c8, + 0x3fe3f09c45a067ae, 0xbfc39ebb205ebfb8, + 0x3f51a80d8ba52c00, 0xbffcd189e097ca1b, + 0x3ff51210519e914c, 0xbfcb551eb95a6d04, + 0xbff148e7f2e93be6, 0x3ff66381087aa990, + 0x3ff327902e1c9e1b, 0x3fcd7578cab1143a, + 0x3ff6cc0f1c7070dc, 0x3fd5f6d25a00eaba, + 0xbfcd602daf30060a, 0xc00f63a1892768a8, + 0x3ff06dd96f8d56e4, 0xc002bc0bf868d68c, + 0xbfed4bd5564fc369, 0x3ff1035f6d0c8735, + 0xbfd69ddff7bfadfa, 0xbffa090dbb22cff8, + 0xbfcbb79e5332216c, 0x3fd34efdcf120718, + 0x3fe9e235c1c42abd, 0x3fdfe0ac30f66c10, + 0xbfe5de85495ccef6, 0xbfed187381698d7f, + 0x3fe44cf2531d8f86, 0x3fb626a4976a82ba, + 0x4004ab91e4b2183a, 0x3f91f02449f0c6c0, + 0xbfe632ec8015a192, 0xbfad10b62d234860, + 0xbfd8cddd96e75004, 0xbfc9f753b373e30e, + 0xbfc6223180e230a2, 0x40055739ab293278, + 0x3fe54f1239b87b90, 0x3fea66e020c38d4f, + 0x40038a278355a675, 0xc0073e728f745e3e, + 0x3fc95b803c068028, 0xbff56c6d77a0f69c, + 0x3ffbd65a05ef6c07, 0xbff283c5770bca74, + 0xbfb4284e9e769cbc, 0x3feb3e54306bf039, + 0xbfd77274b683651d, 0xbfe360d59e08ad25, + 0xbfca189afdf355a2, 0x3ff4f66f28391b7a, + 0x3fc1045887d617b8, 0xbff0c897c93c7e57, + 0xbfd3723e764ea914, 0xc00416a2856738fa, + 0xc00658c544440b70, 0xbfb7bcc805b19e20, + 0xc0087ed5a4ae2e1e, 0xc00ba9786498456d, + 0x3fe36f6dc3c4d17c, 0x3fd06cd597a94a36, + 0xbfffc066548cc7f0, 0x3fed01ce8b994aa2, + 0xbffd1ca26237d360, 0x3ff42e2dd329dad6, + 0x3ff93081c08a2635, 0x3f96440d93096b80, + 0x3fd6957c7a3348fa, 0x4001750f200cd1d5, + 0x40031eba9592f582, 0x3ff5f29d544320c7, + 0xbff04b272cb923bc, 0xbff19442745be07e, + 0x3ff498e62aa410f6, 0xbfe93b1a1e091188, + 0xc004f8ed4a8dbe19, 0x40101f173756c038, + 0x400548528ac801fd, 0xc009fa69db55fbb4, + 0xc00c31d421c2ce02, 0xbfd652ac03dc3382, + 0x3fe34a808864cc24, 0x3fe5633a19ce1db1, + 0xbff2f2bc5bd51326, 0xbfe95e87d445bb21, + 0x3fdf85eb56738ff4, 0x3fb3391d7a5111a8, + 0xc006d076bf0dfea3, 0x3ffd9c127d707c9a, + 0xbff962b937a508f0, 0x40075d23d4466c8c, + 0x400c8fb659f1a5fa, 0xbfcc78925c9f0504, + 0x3f9f3e1909934680, 0x4002ac49a4f7c0c6, + 0xbff0779fd0efb26e, 0x3ffd1254b3a89c82, + 0xbff5334eb16eefa6, 0x40095144cb79cf36, + 0xbff2662d01479b34, 0x40010d9e1ce4ac11, + 0x4005f7badbb5ea86, 0xc013a4a1281a5ede, + 0x4001215081952a84, 0x3fe1568030c4cfcd, + 0x3ff9f84b739eae09, 0xbff9322affd8205a, + 0x3ffa5fabd1a2efbe, 0xbfd728b659985bac, + 0xbfe7286f1fbb552b, 0xbffadddbc97dce24, + 0x3fcbf4be4669fc68, 0x4001bf7e9172c9a8, + 0x3ffb595992022678, 0x3ff089ed81ef87e1, + 0x3fa458e9d4d81780, 0xc0014e5b16e5b307, + 0x3fdaa83f495c2754, 0xc0055ba1c2b9bf52, + 0xc002be4bb7acffab, 0x3ff62dfef42a283c, + 0x3fff52e90c4bb75c, 0x400d14449ceb480a, + 0x3ff0cd49da7ee84b, 0xbfd33a85cc238e90, + 0x3fed5875cc787116, 0xbfcf57cb09b136a0, + 0xbff86dfddb3784d0, 0xc00277d4476aa86c, + 0xbff990fd387f8ad1, 0x3fee6b2646094b8e, + 0x3fde104030896764, 0xc000d448699226b4, + 0x3ff38e8efeabec54, 0xbfb24e337db3b3a0, + 0x3ff4d3ce88150185, 0x3feac8f8019dc7ab, + 0x3fd7dd2659fe4550, 0x3fe9a62d17d48639, + 0xc0077c2a72e74474, 0xc002fb9676ff2182, + 0xbff88105dbc5dfa1, 0x40078365b190723a, + 0xbfe988bd0bea4198, 0xbffc26f87b0b8079, + 0x3ff9c2150935f570, 0xbfdae2d31b3daf20, + 0x3ff5e45c956e4f8d, 0xbfe85f7e36bec920, + 0x3fdd3c8165c7db0c, 0x3ff84897d004cca6, + 0xbfed35c8979a2df6, 0x3fe7167c528f1141, + 0x3fc76f315c9d4bf4, 0x3ff50da452ea8e9e, + 0x3fcf386b91d5f660, 0xbfe58b08a687a7df, + 0xbfe3812e05696018, 0xbfd2ffdcbf2a2c50, + 0x3fe483fd3805ab3a, 0xbfe5ad7ee538eebe, + 0xbff172025ee3d341, 0xbfeef9836a58ade6, + 0xbfe18dbe9e732b9a, 0x3ff348f6097054c6, + 0xbfdb70544573a317, 0x3fdf1ac5e8e40be2, + 0x3fcc8ba6f25b9eee, 0xbfe2f461e6f6af22, + 0x4000b6824022888d, 0xbff75f35c9e55ea4, + 0x3fe5d9191858cbd4, 0x3ffb1c0dbabf668e, + 0x3ffc2c601339f99d, 0x3fe82f487a321536, + 0xc009405cd4d2c008, 0xbfe7c8a6ce0a1700, + 0xbfeb644e3732e247, 0xc001fc3b59cfaa55, + 0x3fd579b22b889695, 0xbfc2c68ca5d708f4, + 0xbfe92e1d0d65e5d9, 0x3ff91c835f8daba0, + 0xbff183916fc2aa6e, 0xbffb7eae343e32c5, + 0x3fe5ed77ab6cf3c4, 0xbfe2c3f68baa8fae, + 0xbff427cb7dd4f607, 0x400180eaf251ffd8, + 0x3fea4afc95c24ae3, 0xbfddc87cff6bed08, + 0x3f8c036b89408980, 0x40046c6718ff8ca0, + 0xbfe0e581c78130ec, 0x3ff77e152db9ccfd, + 0xbfde924804bd6ae2, 0x3fd3f3cf40f2f2ae, + 0xbfc3779a2dec082a, 0xbfcfc0895c7d5354, + 0x3ffce8c553d4aea8, 0x3ff98fe8b08ab070, + 0x3fef7e9ac4577915, 0xc0067badd2648fcd, + 0x3feabb6b34cc6391, 0x3ff08ebbb695a9f9, + 0x3fc0a08dcec70fc0, 0xc0026a2e6304b4f6, + 0xbfd2e6284e0d6080, 0x3ff6d0dc7c0664e4, + 0xbff2dc164a9563cb, 0xbfee54d36e6a9d0c, + 0x40042c3d67348d76, 0x3fe47fb8f390078b, + 0x4003a4ee7d235d46, 0x3fec26b940a0dc29, + 0xbfd47625e5c59fa2, 0x3fcebf68e764d802, + 0xbfdcd50c72d60617, 0xbfeb7e8e86ddb2b1, + 0x3fef6d47422bab4b, 0x3fee17ae05ead460, + 0x3ff8df54259d78ca, 0xc009fb2e1d059ea6, + 0x3fd3631d9da5016e, 0xbff8df575d749305, + 0x3fea66e4f9d6bd4f, 0x3fecf281787d637b, + 0x3fc2558222abe2f4, 0xbfe11d4efd8e93d3, + 0xbf95ae94357edfc0, 0xbfe6be181fa907f4, + 0xc0033c757f991fe3, 0xbff84a3f3e77c0f9, + 0x3ff102add34cb2e0, 0xbff512211d90bff8, + 0xbfeea6c983c65ee3, 0xbfeee592533b0f79, + 0xc004ab214073c53f, 0x3ffea7ba983398a2, + 0xbfd19255d6e8ad4e, 0xc0016442986ee450, + 0x3ff3cde9c67f31ee, 0x3fdede36bc4473fb, + 0xc0109847b188c028, 0xc00688a8b684f85f, + 0x400c0537fa417fdf, 0xbffcdba372a2e3b5, + 0xbff199afcfee6898, 0x400f248326d85286, + 0x3fff6e15da275330, 0xbfe61f938a27ba48, + 0x3fff9f4b02d585d7, 0xbfdfb7cab2511133, + 0x40012f4a51ee7cfa, 0x3fe8a4cfdac3f75e, + 0x3fd408b351aba252, 0x3fd99643a12aa42c, + 0xbf9208ab9bfeef20, 0x3ff08ec100fc72ce, + 0x3fb8e0b74585ee84, 0x3feb72c8f8689eb2, + 0x3ffdc6bca8cfd8f2, 0x3ffaa271e1334aed, + 0x401071a1462c7ef7, 0x4019f545f7e746a2, + 0x40082dfce71558b6, 0xbfe88c190b19e04f, + 0xc008565faa0ef876, 0xbff214b40c374ca5, + 0xbfe14061c2d5c231, 0xbff8a178e7e2b7a4, + 0x3fd6d3e972091e9a, 0x4004197594f3c202, + 0x3fa2cbaa0f32c2d0, 0x3fba78a2d261b9e0, + 0x3ffd074b32528648, 0x40002dfce1d1ede0, + 0x3ffd6961418f69da, 0xbff09c44574675b8, + 0x3fff9a54c2b6950a, 0xbfe828993fc3c22b, + 0xbffdf291317c8176, 0xbff802658530fde2, + 0x400b860a3d7f28ae, 0xc0017051fe1f8eac, + 0xbfeb9fb91bfc5a12, 0xbfea90d20fee7ed6, + 0x3ff9a54e20777e92, 0x3fef93a0f4221c9a, + 0xc01668d28b6e2337, 0xc00626fbf967b3b4, + 0xbfe4e2fa57204faf, 0xbfc088066b873d1c, + 0xc00975825dd1a51e, 0xc00a13b42273162b, + 0xbffa6337f04d26dc, 0xbff0e056ff752ad5, + 0x3fd1ef6ec07a3dfc, 0x3ffae40cf2c1cf9c, + 0xbfd575d713b9a8a4, 0x3fe99ee240c7d200, + 0xbfdb9646f334f786, 0x3fccc49e125015de, + 0xbff10e9d5c11d6cd, 0xbfeabc01812364be, + 0x3fd64b720bae40c8, 0x40007a7c4bc13e93, + 0x3ffc4121021b2f63, 0xbfec40eff609afba, + 0xc0076785ec64ae93, 0x3fe0c4ddc397ab1b, + 0x3fefe5fc4b015ef7, 0x3fd51c942e0fc7f6, + 0xbff8651bd0fb57de, 0xbff710bdff38e3e4, + 0x3fbc8a6f11e24540, 0xc009eff3d9768026, + 0x4003d24b1fac2b04, 0x3ff647099fe9645c, + 0xbfc733f81f4e9ad0, 0x3ff5b31fdf5046bf, + 0xbff4a525d6a5bf85, 0x3fe634bf3ed4d8aa, + 0x4001e7b20bfffbd4, 0xbfdfb7ccb801264c, + 0x3fe0ae16dfc2a44a, 0xbff59c610ce1f444, + 0x3fd55deb86d36ef0, 0x3f80b1f3c0912080, + 0xbff302bd88de0af6, 0x3fd5fee30fff6d79, + 0x3fddd20491ea618a, 0xc00b15c6a4d2416c, + 0x3feee388dc2eced5, 0xbff75516f0403ac0, + 0x3ffa4736e9bb7f9a, 0x3ff7b86218ca0f51, + 0x400f077e31ffdda4, 0xbfeb173dc3681862, + 0x4004899959826283, 0xbfeeb47af9851dba, + 0xc003e4a121d13f9e, 0x3ffc542fea9fa450, + 0x3fe602e8a634c672, 0x3ff2341bb995e11d, + 0x3ff95254e51b80ee, 0x3feba12f3dc812ce, + 0x3feb76776602f1b7, 0xbff0519bfaf92074, + 0x3ff0571187a85138, 0x3ff8a9b238b610ca, + 0xbffa57241bd8ed3a, 0xbffb461b952f6a42, + 0xbfccae18873624e6, 0xbfcf237090cdbfe4, + 0xbfed48887e01e664, 0xbfea11a8bbefd060, + 0xbfbf4dad2298cb00, 0x3fed5ed6f54eb6b2, + 0xc008bb3b19cd00c6, 0xbfc98eca8d9ce646, + 0x3fcad47b7fc857d4, 0x3fe30398e2d854ec, + 0xbff8eb5275077d7a, 0x3ff1229b8515c61a, + 0x3fea2569afdc4042, 0x3fefb74bbda3f93a, + 0x3ffc75b14ae1c132, 0x3fbd30ecc1815b40, + 0x40002f7c6846b07c, 0x4001732bd61f28eb, + 0xbfdb900fe6ed0ef8, 0xbfeb3c3d920c7fd4, + 0x3ff3f7950fca3751, 0xbff0784bbe9fbd2e, + 0xc007b5366b0582c0, 0x3fb68f7c42efbeb0, + 0xbfffc37270892a54, 0xbfe57fcb1cadb382, + 0xbffe9934c65c9796, 0xbff6a2f31a8d2f36, + 0x3fe5c96890311558, 0xbfdc464982cee308, + 0x3fcb2fd4f96733bc, 0x3fe0a6ab74b75000, + 0x3ff6d66a706013c0, 0x3fe8fe28de01b71c, + 0xbfd1751089ec0fb4, 0xbfecfb7e99d89506, + 0x3fd2923f2e99a175, 0xbfd1844fbaf33478, + 0x3ff60e8d33047de0, 0x3fc29906bb1fa1dc, + 0xbfd8635472ded20d, 0x3feeaaee7b0385fe, + 0x3ffd1b5ce23cb032, 0xc00744cb9ee30e41, + 0x3ff896e36a8b00d7, 0x3ffeed66188434b3, + 0x3fe85083e03bbd67, 0x3ffe237d11118cf4, + 0x3fbf133b92c400f0, 0xbff78c6ae4886a49, + 0xbfe61b48a60c19b8, 0xbfd24012e56ed307, + 0x4005e99bedf23ae2, 0x3fdc7e84c2ca3a29, + 0xc001d2874c681101, 0x3fe1f2545876b389, + 0x3ff472f6105d836e, 0x3fe67a869745b05d, + 0x4005835f8b6dd78e, 0x3ff9c8d1cbd3536c, + 0x40034f958ebcd66e, 0x3ffe7a1dceba6bc8, + 0x3fe7c1ebf0714085, 0xbfe9f3c91a709b11, + 0x3fe5e977bf554b3c, 0xbff18275990a35fc, + 0xbfd94ec9d1f19c3e, 0x3fc29fbcbff9a30c, + 0xbff49720c473750e, 0x3fdc007d15060e30, + 0xbfe2105785e693e0, 0xbff401bd37fcead0, + 0x3ff7703e718aae30, 0x3fe63a508a50208e, + 0x3fcdb6e3762990fe, 0xbfed4727ec179754, + 0x3ffe11f24f8b2e80, 0x3fcf2217d34d9780, + 0xbffd5d856572d5ec, 0xbfe86319ce8624a0, + 0x3ffd7cceebe10fcc, 0x3ffaace70aabad5c, + 0x4001b31d5ccf4da8, 0xbfed1e48700873ea, + 0xbfef0394f9d43df8, 0xbff4aa42efe87bc7, + 0x3fd178930859c95a, 0xc005a3e574eab181, + 0xbfb2f4597fa3aa80, 0xbfe1aa786f40d260, + 0x4000ac4c5649ffc9, 0xc00be4919e78c425, + 0x3ff0e8691a9c153a, 0xbfe68aa51c613dae, + 0xbff6861a8c40d2c6, 0x4004598055dc32d5, + 0x3ff440f23f53823a, 0x4006bb7a4b105746, + 0xbfb8d989abed5114, 0x3fd3410f36d02956, + 0xbfe7450afa1e9d3a, 0xbfe20c64ddae0252, + 0x4000bef119dd524a, 0x3ff713e398026255, + 0xbfa648ee0af32cf0, 0x3fb1d912188f5438, + 0xbff97708391a391c, 0xbfccb156628a3588, + 0xc0132742544d0cf8, 0xbffcce09b4b0a762, + 0xbfeeb0eda0c7a0ec, 0x3fc0a55aa942ebd0, + 0xc0075842faa11102, 0x3fc1c06e9627b3f0, + 0x3ffaf79057053fbc, 0xbfcf31f35ae8c5f8, + 0x3ff8a49d3ada4210, 0x3ff44a2459983f4e, + 0xbfce3dd3c674805c, 0xc0052dd2c17b6ee6, + 0xbfd816ad18cd6c70, 0x3ffbd20d7eceac6f, + 0xbffb705818c13e82, 0x4003d63d21db240d, + 0xc009e5d378ecf204, 0xbfe75c4437e37cd5, + 0x3ff9445de36e36d0, 0xbffd68cfbd0b0cee, + 0xbffc430dfdcba618, 0xbfe51b5f5fa6fe6a, + 0xbff6be41ced22b34, 0xbfaa6f00dd96b6f8, + 0xbfe5a1e879a08d5c, 0xbfea86ec8d816d12, + 0x3fd3a1357879fe42, 0x40018b7d3aa1c056, + 0xc0030d800e6852bd, 0x400a987adb63305d, + 0xbf96df1b1d4c5790, 0xc002dc6dbfe87082, + 0x3feb43ea47997b82, 0x3ff2b564152a6b0c, + 0x3ff986df01ea2554, 0x3fe621f53f495e48, + 0xbfbee48c92f9d2b0, 0xbfffdc3042e2b1fe, + 0xbff13095590647be, 0x3fdbe3be7d795e02, + 0x3ff895fdaa4d3a43, 0xbfd50ca382775f98, + 0xbfe8ba9f74e27c7e, 0xbfe4582a5f6517f6, + 0xbffdb76d50b1d354, 0x3ff31a43bd9dfeff, + 0xc004e6ae885a1947, 0x3fd465078ad09290, + 0x40044a3048c536c8, 0x4002e3e6263ba1d5, + 0x3fdacb3fa4ba9925, 0xbfee8dbf72aedc1a, + 0x3fe74715e98a931b, 0xbff7aae6e2e44493, + 0x3fcdf089647d3fae, 0xbfe9e4ecd738a090, + 0x3ff0ef530382fcf9, 0xc0100d8a3e60f106, + 0xbfd61795dfeca948, 0xbfe3137ad0e0fa18, + 0x3fc094f7a9a4c334, 0x40068abcd3acb198, + 0xc0076f3fe2378a44, 0x3ff246b256a01de6, + 0x3fefc720198dbe4c, 0xbff1ae4507cd91d6, + 0xbff975dc4e1b0396, 0x3feff6cddc6857f0, + 0x3fcb5cb08c06e230, 0x3ffe0d20ce1bc5e3, + 0xbffe3d452713bffa, 0x3fde6ebf9bd085ba, + 0x3fa34c28d866a1c0, 0x3fe319449d1b225d, + 0x4001291a80e9da3e, 0x4001fab28e3d201e, + 0x4001eb6954aeee75, 0xbff1103f19b978b9, + 0xc003491364edde87, 0xbfea0a6ef2c32a63, + 0x3f34b95c0431d000, 0x4002537afaa7fff0, + 0x3fe38d7c5cef121e, 0xbfee2b1c40bdf9ba, + 0x4001591736bb22f8, 0xbfc3d43869193bb0, + 0x3fd717b13abc9f6e, 0xbfff035e77ace964, + 0xbff12eae388ae127, 0x400d264791484704, + 0x3ff629ff77903bbd, 0x3fedccb5368208ac, + 0x4002aa8ade41028e, 0x3fe31249affbfdf7, + 0xbfe19227e38937a2, 0xbfda2a2671cebd08, + 0x400ac58802ee1c94, 0x3fd5f2d9982c5dc8, + 0xbfee9b4bdb8c62ae, 0xbfd5aa713d290274, + 0xc00566d79b5798f1, 0xbff5bc8b85d3b548, + 0x3febfea7cb996b2e, 0x3ff7d92de8b77c2b, + 0xbff455826a93f66d, 0xbff18397ea8738cf, + 0x3fd7ab34bea5cd10, 0x3fef3fcb8e21a433, + 0x3fb84afb1dc12abb, 0x3fe5dc2cda962834, + 0x3fc9a8a4303ca118, 0xbfe873c5682bfa24, + 0xbfc3c3f73a65e050, 0x3fdacbbf57d8e1c2, + 0x3fb7aaec595fc780, 0x3fd13bba040a87b2, + 0x40020d1f95064a25, 0x3ff75dcfdadd0406, + 0x3ff241e83f31b833, 0x3ff1f97f17d347aa, + 0x3ff7c06c8a1c9a14, 0xbfe8784b66b0a606, + 0x3fb9caf001db2a88, 0x3ffb384581c3796c, + 0x3fe5c3187a63a9ca, 0xbfefaa3dcc524ab8, + 0xbfe26a0b31ab213d, 0xbfffa081d20e1353, + 0xc00277ab8a0a1698, 0x3ffd839a8caf1223, + 0xbfee2291b61bbc51, 0xbff042cc6dd6fdbb, + 0xbfe82f28cf1feb47, 0xbffb35e97dbd8c98, + 0x3feac48d25b23870, 0xbfeabc280b237508, + 0xc0042bac79cf361d, 0xc00310633356604a, + 0xbff8486b4173b048, 0x4000f9dde3943743, + 0xbfe2ab052058c956, 0x3ff82fb2c550ce51, + 0x3fe06ff3fe1e6bcf, 0xc002e5bb3bd72a7b, + 0xbfcb269669ddaa58, 0x3ff5b9cbd7207486, + 0x3ffca8f253aeddb0, 0xbff0e7190003ac3e, + 0x3fd71943d12d0c90, 0x3feb98f82adbd8cf, + 0x3ff91c6ef81a75e0, 0x3fff5b952c7074af, + 0x3ff9ca5b4fd88895, 0xbfeec87f0053a968, + 0xc001804b18a72d2f, 0x3ff75fa5054fff4c, + 0xbfdd9b87bf3c05f5, 0xbfe19a3b8af2a7e2, + 0xbfc0c321e2c327d8, 0xbfe0ee1b725185a7, + 0xbfe09e06a159b406, 0xbfdd37576a4c2bac, + 0xbffa58e4bd771dc6, 0x3fcd5dafc898f75b, + 0x3ffcd5cdaaca5392, 0x3fd530a3e163d31c, + 0x3ff280e904dee594, 0xc00867307ad598f8, + 0xc00a48ac18b57e52, 0x3fda2d11794e1f22, + 0xbfc5d23481bdf6ca, 0xbfebde4e7449bf77, + 0xbfec33a4be8a61d4, 0x400ea91bd8800246, + 0xbffc11da64b7f34a, 0xbff28ee3b7386db8, + 0xc00db5c9264e355c, 0xbff5ff03b1c1c9e4, + 0x3fc47394ad07ea68, 0xc00c0435b32f1bb6, + 0xbff9e0758fd48556, 0x3fdae34a424d5504, + 0xbfe2190402c93b37, 0x3fdd7b5afc9690e8, + 0xbfeaa4545903af44, 0x3fe83944fa82c727, + 0xbfec4099862265b1, 0xbfd6d2b36b004cf0, + 0x3ff26b47a36f717c, 0xbff6ea38c9cc95ee, + 0xbffe0964ad310858, 0xbfee4002f72469e4, + 0x3fcae23a5aa4092a, 0xbf830c0b0df1ad80, + 0xc0033f040ff68b18, 0xbf9b9088b5911280, + 0xbfe4c87f658330bf, 0x400619bc76f55170, + 0xbfce37318a9b6a18, 0x3fe1f3db1779b23c, + 0x3fd8c069a2982b66, 0x3fffcd7b64446978, + 0xbff0ef6be5d018b5, 0xbfec1a7bbdc7758c, + 0x4003ccd81514dedd, 0xbfd0693bceadc862, + 0xbfd452493e4e0fc6, 0xbfc44b6dda644c8a, + 0x3fdc6568bf9574a4, 0xbfdf336b118926a2, + 0xbff34112b5a32554, 0xbfe5e2f5a08ca5e8, + 0x3fe1266d9e6d40e4, 0xc00af83242124906, + 0x3feb0f900dbac1fe, 0xbfec1b3715a6b024, + 0x3fc87748a16d02f2, 0x3fbcde7f94712b40, + 0x3ff931a60c14ca9b, 0x3ff05dde76397545, + 0xbfd618df14d1629e, 0xbff28480ff66d1aa, + 0xc00ff818bda4c57e, 0xc00532e31d8a8896, + 0xbff3d3d8fd1fe2ec, 0x3ff5cd24642f7326, + 0x3fc9e22e409910f0, 0xbff9bc305a76f590, + 0x4004592028f1deb6, 0x3ff066ec1487e1ac, + 0xbfced1989edbe3f8, 0xbfe0c79bb8be3b0b, + 0xbfda6affda243ecc, 0xbffb4944a6ec8221, + 0xbfd371da3279a348, 0x4001afab3eb2c524, + 0x3fed3512cb8b9004, 0x3feb423e58e42a1c, + 0x3ff1599567f98b20, 0x3fe55fcee0e434e5, + 0x3fd07d5de0c1fab2, 0x3ff7adb2bbb12f6b, + 0xbffa0876dcf86919, 0x3fb06e533c39caa2, + 0xbfdedb86a928a048, 0xc008d2310fe0fac4, + 0xbff1ebe1f9b3d2cc, 0xc00b974541a6bbda, + 0x3ff8486ac2db1a6e, 0x3fd84a2409a3efc2, + 0xbfefd2f51fdcefcc, 0x3f9a1098668226c0, + 0x3fd240e60cf0d454, 0x4006fd468b1c8e7b, + 0xbff42c2447b22b9b, 0x3fe72c5d5b24994e, + 0x3ffeb1ecfe4526eb, 0xbff0da91e4ded70c, + 0xbfff74a6595f0aca, 0xbffb6e49e67263ce, + 0xbfe66aca3a6a4ba4, 0xbff54f86671092a3, + 0xbfe8c3b70593529f, 0xbff95ef598918ee3, + 0xbff9eb5cafc998a2, 0x3ffa13c291bc3cbf, + 0xc00a046a00d3e960, 0xbfb8bb12a548dbb0, + 0x3fc5c0f169e126e0, 0x3fe80ee05cc53b9e, + 0x3fd70add92847946, 0x3ff02251e5f69a83, + 0x3fb75696bcd75760, 0x40028c76304b7465, + 0x3fedb1f298eeaca4, 0x4002da13172e28f2, + 0xbff9453aefb63f22, 0xbff063c564048dcf, + 0xbfeb6e7febdba89a, 0x3ff47f79649c9f05, + 0x3ff8b63857ac5f74, 0xc002cd3ae0e26843, + 0x3ff6eeb28666ee76, 0x3ffd7d9526b34031, + 0xbff583b12f9035e4, 0xbfd2147b97714bd5, + 0x3fd53c6156f20064, 0x3ffc621316272d50, + 0x400d8300dba3d6fa, 0x3ff077773476aa40, + 0xbfb3bad323d885f0, 0xc00917f6d67d880e, + 0xbfee0324f25b7090, 0x3fe5609322aa6246, + 0x400735ace0592362, 0x4000946bcfceecc2, + 0x3ffa51824549a8d1, 0x3ffbcf6e3b3bfceb, + 0x4003101adc66e2c4, 0xbff5870915d7a354, + 0xbff425b332e0dd72, 0xbfbb8c6a7e670b90, + 0xbff7ffbe4f39ff3a, 0xc0056bcce23502ac, + 0xc00195084e52eb3f, 0xc006e355416fbb46, + 0x40013769e9056832, 0x400575d5f32dacfc, + 0xc00419cc4091c842, 0x3fb78661638e0488, + 0x3fb4516d3ee0e410, 0x40022e1ad928bc1d, + 0x3ff4f1b1c9ff0e56, 0x3fcc5ccd314dc28a, + 0x3feaf4635016a2bc, 0x3ff6541953ddbec4, + 0x3ff3db27e6a7ed53, 0xc0045bf87c333cab, + 0xbfd2f562b6394bf4, 0xbff087dd16594019, + 0x40093a5d07a02248, 0x3fe5e8e7533489b0, + 0xbfa37285e1aa7840, 0xbfefcb5180be55c4, + 0xbfe109e82fb813f5, 0x3fba87a2172147c8, + 0x3fd81dc1ac8e21fc, 0xbfddcaef46ff1e44, + 0x400140ae14ae8755, 0x3fd7966ec021d6f5, + 0x3fef4f08b7cc814d, 0x400ac04901042c34, + 0xbfda9e95d0a90a14, 0xbfd5365e65435178, + 0x3fe230f5cda14986, 0x3ffb5da6ac7bb3d6, + 0xbfcc9c98e10cf378, 0x3ff308ad86b5b89e, + 0x400689bef155f654, 0xbfddd3406f9a2798, + 0xbff158f99f477eab, 0x3fe86048c22d12f3, + 0xbfe2de1bf104b67c, 0xbfdc5f2d0b6fbd10, + 0x3ff5720334bf8b41, 0x3fe18c4ec4a6b96e, + 0x3fd66eee7e0f474a, 0xc00a65aee0b7aa6c, + 0x3ff760b41592c859, 0x3ffd4e14991df00c, + 0xbf92c33092f8aec0, 0x3ff2f6af750a5683, + 0x4015f1015c246e87, 0x400037984a59c445, + 0x3ffd005fc5bbafab, 0x4008deea67c76489, + 0xbffff3b1d6c396b0, 0x40107ca9c104636e, + 0xbff876e69e547295, 0x3fe188e50b54af61, + 0x3f946546f4509280, 0xbfdf0a4df98cb458, + 0x3fffbf4609e2d3e2, 0x3feaf884a837954e, + 0xbfeac0b8ae3ac300, 0xbff0fa0ec7d32850, + 0xc0037494b9f10e18, 0x3fd0469de6803334, + 0x3fbc563a2a2c6ed4, 0xc004c4a417737c69, + 0xbfe3ef0327d0c150, 0x3ff2a2f28b7e5414, + 0x4002c0e93203705a, 0xbffd84b0b4eebbb4, + 0x3fe3f725b1c380f4, 0x3fe5c3fa8174e282, + 0xbfee211693d3da0b, 0xbffafb56aa85b42a, + 0xc0090e765457fc62, 0x3fe4cad989e72855, + 0x3fe098b78628efe7, 0xbfe672fcad42cc6a, + 0x40036ea92dec4d5b, 0x3ff244fc3abdbd61, + 0xc0042af62f14e01a, 0xbff80b9c53c3c570, + 0x400a97672e2eb0ae, 0xbfd874eeb2ad5ae0, + 0xbfeae02ee8987274, 0x3fd21580eaa6e6cc, + 0x3fe209c3bcbfcf18, 0x3fff9b1f50c25817, + 0x3ffd51afe5fa8d28, 0x3ffb8d9db76947dd, + 0x3fe7339d081b9e72, 0x40027c7f0590ddb4, + 0x400547d59adaa62a, 0x4012b189ed1d5815, + 0xbfe00fc3553f9ce2, 0xbfe6979c87b4e3c8, + 0x3fba475918e9ea20, 0x3feb705b5e08392f, + 0x3fba47848004df78, 0xbfe1499416ff8d3a, + 0xbff22b9e8d5d2b49, 0x3ff7892e60962eb3, + 0xbfffc9fce2e347c6, 0xbff371e91aee53f9, + 0xbfb78d7ca3c89420, 0x3ffad696cc05a762, + 0x3fd664f12ae4c26c, 0xbff00498c893ec9b, + 0x3fbc4a1862ab9e20, 0x3fe1a070799f9143, + 0x3fe74199a65ba5c9, 0x401099b9a3103bce, + 0x3f61be77e420fd00, 0x3fd95ffaed6a3b6c, + 0xbfe14e55b0de2505, 0x3fd4e2efb6f8c61e, + 0x3fc1c08be6afadcc, 0x3ff9220dcc88b1bf, + 0xbff68c7867971724, 0x3fcec12c25ee65e0, + 0xbfeb7c00e5019200, 0x3feb755c51779e5a, + 0x4009b42abe7100f4, 0x3feea3f84ab2e033, + 0xbfec9b5f10868846, 0x40010480a46eb19b, + 0x3fdcb7d9128a3588, 0x3feaeb5075715526, + 0xbfe29901aa5031d3, 0x40080bb9567676b6, + 0x3fe5932b351a25af, 0xbff29116872b1140, + 0xbfecd2996ff7dbc4, 0xbfe930e3180e2e62, + 0xc00c0fe36bcf4518, 0x3ff00e917f0518f6, + 0xbfed1ccc1e269f72, 0xbffa37605cca6962, + 0xbfe5c87d477a818a, 0x3fe8e9a447aaebfa, + 0x3ff40a5f1b4155a0, 0x40036aa7bb25b500, + 0xbfe5ec7daa6a2c7f, 0x4002ca2408ca6f08, + 0xbffbb1455a5f200c, 0x3fc80a7e44175600, + 0x3ffd9289d5309827, 0x3ff9820801e21b45, + 0xbfb7c0ca4b1df710, 0xc006b9e4b9cd78a3, + 0x3febb4c0939e4d50, 0xbff2a51e6ad0becc, + 0xbff1e2efdcea9b8e, 0x3fd36edc6403d27c, + 0xc00f300446165fa8, 0x40018bb5fff5d0bc, + 0x3febce9b4a9ee22b, 0x3ff87f7f8e8b987a, + 0xbff76e5ac9f566d8, 0x3fa6660dd800c2b0, + 0x3fb83b1f9461c560, 0x3fd20c716b1ea206, + 0x3f908653202e4510, 0xc0103fd68be2329d, + 0x4003456e603e67a6, 0xc004ea6b08c3393c, + 0xc006c71a415607c2, 0xbffe9dcf8bbf078e, + 0xbfd3eff49d56aed8, 0x3ff2cb1b50da541b, + 0xbfb050c5aeb315ac, 0x3fe5dfe40879505a, + 0x40027a8cdf36e023, 0x400a665067e2d089, + 0xbff8629753565cdc, 0xc00dba1fcd91b0d9, + 0xbff35b60c6f1289f, 0x3fee65f4205c3b8b, + 0xbfd3b2454dda9fd8, 0x400418253b572dbc, + 0xbff5903b26ed9028, 0xbffe68f61299feea, + 0x3ff44102d6f5e242, 0xbfecb07db6973c8e, + 0xbff6ff29db720afb, 0xc007e10b5984df62, + 0x3fd1c3b6a2a55750, 0x3fefea48fb1ef772, + 0xbfdba865806f7e3a, 0xc003ff2d461de6ef, + 0x3ff53dd480f2b8b7, 0xbff79387025c3452, + 0x3ff4997069df1432, 0xbff359dd48ac5c2a, + 0x3fee47663c8c757d, 0x3fc1863b2ef4ec0c, + 0xbff15c68e26f4a2e, 0x3ff21d3aaccb5621, + 0x3fc6b2be474b4e58, 0xc00a526cce3d4dd8, + 0x4005d9ecae2b7592, 0x400350db0db29791, + 0x3fe6fe6a8771781a, 0x4002a78954d70131, + 0x3ff113b3b47a9df0, 0x3fd4f0e2217ef3b6, + 0xbfdace365656365c, 0xbfcc346c039433b0, + 0xbfda5b9c25662dec, 0x3ff4f4cdda60bb19, + 0xbfd0d0013abd416e, 0x3fd4768545a1d17c, + 0x4002b67562d76354, 0x3fe2a628fa91aac3, + 0x4002a27c133710ee, 0x3ff80ebd3e6b52fd, + 0x3fdc43ae2111da48, 0xbff0a1c53800d712, + 0xbfea78f2f7c71e79, 0x3fd65ddac46b9688, + 0xbfc3f72bad7dd9d0, 0x3fe90b3d2a61b51b, + 0x3fdb3e557d0e0203, 0x3fec84090a81f614, + 0x3ff1b67018624798, 0x3ffda25c8c063354, + 0xc008a9f8bf846f2a, 0xbff1cf4bfb33e514, + 0xc001ea20d43ad4a6, 0x3fe28a2b61bfdd3d, + 0x3fda61980ae7f8cc, 0xbfdddcc96a676238, + 0xbff04f5c2f632572, 0x3ffb470e640635b0, + 0xbff0aaeac2b628ce, 0xbff20b2689455104, + 0xbfbba431bd627ca0, 0xbfdc6febae30de0b, + 0x4009b3c12f5b99aa, 0x3f9100b0fbc090a0, + 0x400331c174cc8b66, 0x3ff993ca250fa39a, + 0x3ffeba1dc5dfc4ea, 0x3fd566a47c584ae0, + 0xbfe4783740ea950a, 0xbfd827c076a26f7e, + 0xbffc860a235b1446, 0x40023a7fd220d4ab, + 0xc0040ecfa6b87e04, 0x3ff21d50902a1892, + 0x3fff8c1f943083ca, 0x3fbd36e8cfeec430, + 0xbffb6acfbd93a97d, 0x3fef0f21b87c9420, + 0x3f843e90e74a7580, 0xc000494b01a5adae, + 0xc00233b80b51939a, 0x3ff7233ce1b218d0, + 0x3fef0de5f24b97d2, 0x3fa631e6febe28a0, + 0x400969a92feb8db0, 0xbffe3bb6b4097dc2, + 0xc000d3bba2c39d78, 0xbfbef712eb004fb0, + 0xbfe702054419d1c4, 0xc006b70103b5f100, + 0x40031bea8a3769c4, 0x4003703b46fdb21a, + 0x400d8aacacf44f51, 0xbff49bd3e5084067, + 0x3fe2ddf8e2d11dfc, 0x3fdc0fb22f29255e, + 0xbfc9f59253eb64ee, 0xc00530b6cf468c3c, + 0xc0092479a5bf508a, 0xbff235b2a01de254, + 0xbfe30fbf9492e458, 0xbff722842be93791, + 0xbff731d7d4ebf528, 0x4008174d3cd1c62d, + 0x3fffdc80b060d2ad, 0x3fe711637343f659, + 0x3fe153eba0037a83, 0x400018babeaf3b98, + 0xbf9947c909219460, 0x3ff1d970b74841a9, + 0xbff01c6452b4ab4b, 0x3ff2c69c0d0dc6ca, + 0xc00bac26f9b09373, 0xbfeb106b10b48458, + 0xbfe26bf9a51014c7, 0xbffc827dff0f98f5, + 0xc00ab3913fdf25c0, 0x3ffbbd0ea619fa40, + 0x3fe4b8ff69709d17, 0xbfe07d8e36b08b2a, + 0xbfebefbcb27edef7, 0xbff060e0589ece56, + 0xc001b508471c8e1b, 0xbfe4211d0aaaf5e2, + 0x3ff4ac400f891582, 0xbfeda80adf9a6b6e, + 0xbfe795a45cd5c865, 0x3ff0cb255100cf59, + 0x3fb2e79f8b416474, 0xbfc639b56081fcc0, + 0x3ff6eb6fa18fa032, 0xbff034fbd79aa1ae, + 0xc003682ec95ab80a, 0xbff5faed902aa318, + 0x3fe1ca541b563195, 0x3ff1f8552e1a4828, + 0x3fd13f86e2335f91, 0x3ff6ea6f84b7075e, + 0xbffb53c107d2cb1e, 0xbfc46e7c9dc369f4, + 0x4001954b287d5046, 0x3ffae2044478dda0, + 0x3fc3d85168396588, 0xc00acfabf7c9ee2a, + 0x3ff54f6effd3daf7, 0xbfebbee0d3eb63da, + 0xbf7e879a70ef5d80, 0x3fc6251e638ee5f8, + 0xbfe25b6dd1492a05, 0xbfeedef18c60d4a6, + 0x40005d6822bfa657, 0xbff67c698b000033, + 0x3ffd18119dd70564, 0x3ff004759c52dfe9, + 0x40049466ba5af7a1, 0x3ff9a7a8a0c29ae6, + 0xbff46fd1435f7364, 0xbffbe1a273ed00b5, + 0x3fe5cc7c56586e06, 0xbfa2797dbf752bf8, + 0xbfe3f74ac4931a14, 0xbfec4d6fb55a23e6, + 0x4005bd382400da63, 0x3fc95055cf47b514, + 0x40034742650cfb00, 0x3ff164d74a0e27c6, + 0x3fc050e3f1b86ce8, 0x3fdda5fcc1292640, + 0x3fe781cd630e05f2, 0xbfe177cac6fd0bed, + 0xc010763370ad3f4a, 0x3ffcea7b6f8f39c6, + 0x3fdc22520720d76e, 0x3ffea91ee96133f9, + 0x3fd4334f91ce855e, 0x3fe8c24d1ad44bcf, + 0x3fead39c29e953f7, 0x3feddb4debb5b2ca, + 0xbffb93600343472e, 0xbff40df009904518, + 0x3ff53daa58d37ad7, 0x3ff954425b740cd0, + 0x3ff66be9988e922e, 0xbfe7b94e9b8ebd8a, + 0xbfe6e19d8fbc4b9b, 0x3ff5a7fc379df159, + 0x3fe74beddb611e46, 0xbfde54e869898890, + 0xbff66c199c3b7cb8, 0xbfe363f4d545c800, + 0xc00c5eb65e8ebf9e, 0x3fe3ee3fe376e95c, + 0xc00084360cdf050a, 0xbfafb69dca4d7940, + 0x3fef878c1e341d62, 0x3fdbfec797e61fa6, + 0x3feb84b4e76e3dc1, 0xc002e2d1d5fd278e, + 0xbfeaf71877737e25, 0x40003558a4cb8af9, + 0x40105d063d16ba5b, 0xbff0a4be08fb0377, + 0x3ff80f86f91dd7e9, 0x3ff02c97215edcc8, + 0x3fea6a46b6a3ce3f, 0xbfda8ab325d3de2a, + 0x4001044b33c5a63c, 0x3fdb15a8b3bc5164, + 0x3ffacad36ff6fcf7, 0x3ffd36db5c6feb18, + 0x4007b37542b3f34a, 0x3fbcd19e45923540, + 0x3ff2d4a8ee54ae54, 0xbffaf7003b030a72, + 0xc0004c2a86e99ce9, 0xbfd928190f167a2a, + 0x400bd50f729e53b6, 0x3fd7f7c3a6d22eb4, + 0x3fe04d580b423078, 0xbfec698cea6dfe5f, + 0x3ff355e86e4539ba, 0xbff5aa45e3d8cc29, + 0xc004975ca6622099, 0x3ff02df2e8571c8a, + 0xbfe95b0b81b9afe2, 0x4006a279323d5f20, + 0x3fece9ed0bec0db4, 0x3fd878736351edbc, + 0xbfeb2f468fa90476, 0x3fd1acd60270528a, + 0x4002991bf9eeff78, 0xbff403b3bcd31323, + 0x3fe8e2a8543d538e, 0xbfdb38bd775bd4e6, + 0x3fca480d5ff7f0c0, 0xbffa402a7c520537, + 0xbf81074a90229340, 0x40013cac9b9aef94, + 0x3fd2e850f0a08396, 0xbff27bdcf2fdb238, + 0xc00e6817d0c5af70, 0xbfe85ab0df21022b, + 0x3fffe4acb0cc00a6, 0xbff87502321fe77f, + 0xbff7aa74fbb0eab6, 0xbffd11d8807f057b, + 0xbfe4077ae1cb4abc, 0x3feb05fd596e1b22, + 0x4007bf56668f7b0c, 0x3febce2514e84594, + 0x4005100cced39674, 0x4000929aed146cf8, + 0xbff65e02fab69707, 0xbfc97c83d27efc58, + 0xbfc597029645bbf0, 0x3ff5415682c73ef1, + 0x3fb1ca5384141c04, 0xbfee96f8a8e2404e, + 0xbff0f430e9fce5d3, 0x40036821de413026, + 0xbfece043295f964a, 0xbfeec7abdf4ca9e7, + 0x3ff73b3ed5a81b1e, 0x3ff2c72a4726e53d, + 0xbfc53cd3f65a47d8, 0xc008eac6ba095787, + 0xbffe61460f9caccf, 0x400001e14e075c6b, + 0xbfe7b0d365ac2a96, 0x3fe8c1ffabafd1fe, + 0x3ffd88557e43525c, 0x3fd0e8f193c29b70, + 0x3ff97972d9b5f654, 0x3fd34ddf2cd742c4, + 0xc00e2378d764c264, 0xbff2b1a9661d057e, + 0x3fec63c9669f0f9c, 0xbfe5110b9b9caef1, + 0xbfc0ade45f6d59be, 0xbfe7338a1f1b6537, + 0x3fd5417bd390ef0f, 0xbff1878b7333516b, + 0xbffed7159ba8912c, 0x3fe1f4ab5254c806, + 0x3ff9e060a77b3006, 0xbff83ef32b04b9c6, + 0xbfc0c6a47836e3dc, 0xbfe3b4372357f3ce, + 0xbfd3274a2f72f274, 0x3ffb238ce5937ff9, + 0x40073e8fcc88903f, 0x4003d9ba1e6608ba, + 0xbfcccd5645de57c8, 0x400558dc51c08a54, + 0xc005de0197d9264c, 0x3ff9eb2d181345ab, + 0x3feb767957afd5e7, 0x3fe4e93a08c9e421, + 0x3fd7ff81cbc4c0c2, 0xbff1c6395527ae3e, + 0xbff3dfeed4433390, 0x4008361f215e0ab0, + 0x3fe0ae054466d25a, 0x3ffb0443c8986e27, + 0x4002fb75f9ae62a6, 0xbffd52f3e27f8103, + 0x3fef4ad0e7d6488c, 0xbffce885a23d86a1, + 0x3ff8926685459150, 0x3fd09f92a28f14cc, + 0xbffac5bfa88f1422, 0x3ff906d94b24bebe, + 0xbff6656846d7c133, 0xbfe60540ca584b34, + 0xbff7b0774032aeda, 0xbff0434386456e9b, + 0xbffea09149c4f030, 0xbfb5c58b75a9c970, + 0xbff28911550ce196, 0xbfe89dc38c2c56e5, + 0xbffdf43e4f983648, 0x3ffbe129c6a87193, + 0x3fdfecda51f42e72, 0x4001fd1038c05054, + 0xbffb08e705ceefa1, 0x3fcf10c2700ee942, + 0xbffeab04feb2df50, 0xbffc9d6a721b343c, + 0x3fcf6a646be35c3a, 0x3ffbd9991886b1f8, + 0xc000bb1cdeaa796e, 0x3ff803322c43b0b2, + 0x3fe8816167d5a9a0, 0xbfc9481014acad98, + 0xbfee2ed8011ef50a, 0xbfe00a5b8673ce3a, + 0x3fea185e08dd345b, 0x400545ad137c22ca, + 0xbff083c0b355f9a3, 0x3fbfc9ea57013ba0, + 0xc0025655c7a1e357, 0x3fe1b617bd5377e2, + 0x3ff1b80fefdd4e48, 0x400257e27bba8e16, + 0xbffd7cd63b4c2004, 0xc003860d86ff6f7c, + 0xbfe4b8af995ab78e, 0xbfcd4e76fad8f4f0, + 0xbff1b11211b0905f, 0x40045ad9e2ca796a, + 0xbfd21fd5b87e71de, 0x40013e10380048ee, + 0xc00aa94cb0f4696c, 0x3fa69c1a8b0671e0, + 0xc000914e81b11df3, 0x3feb0d9ddec666bf, + 0x4000283afcf53f9e, 0xbfec4d80eb673e1f, + 0x3fe7080a30cb6b69, 0xbfe15507a1f91720, + 0xbfd88afcffb2616c, 0xbfeca29c546e10e4, + 0x3ff7d561c27d7326, 0x3fd7545721606bce, + 0xbff3d811fcb04a49, 0xbff36c340fbeba64, + 0xbff1a1e28740ecd0, 0x3fcbd0c5655db7b4, + 0xbfe9f9aa2de8b438, 0xc0000c2881f83cf4, + 0xbff9bedbb9c1d0dc, 0xbfede30030a6c6c2, + 0x40064d56197722e5, 0xbfd573b677681a6b, + 0x3ffbbbf7aa4bac4c, 0xc003a6a3f92adcaf, + 0xbfd6b06c286037be, 0x400e24403b10f645, + 0x3fe093caacc08688, 0x3fe80fd779fcc57f, + 0x4001ec800ee668b4, 0xbff207cb3fee4747, + 0x3f9b06007eb3c000, 0x3feae5b5ab5c24a4, + 0xbfd19d7fb36d439c, 0x3ffd59ee6c5682de, + 0x3fffe1e2f222cefc, 0xbff314d7186baf20, + 0x3fe9c4f2a8184a2c, 0x3ff2cbff34faf973, + 0x3fe9c368274b5af2, 0x400089b67358a2b8, + 0xbffff3fe04f0193e, 0x3fdee72f3bc989ae, + 0x3ffac2793dc27000, 0xbff13b3c8f76425d, + 0xbfdfad715674f71e, 0xbfef3acfd47659ce, + 0xbfd7e16ad53a4a59, 0x3febf3fcbc71ffcd, + 0xc001d0ef1a5db66e, 0x400090ebd7b1122f, + 0xbfe068308d187b1c, 0xc009abea22ae26c5, + 0x3ff9877c2e838339, 0xbfb562a1cec25bcc, + 0xbfd0d0582127f8ea, 0x3ffed3643db20d8a, + 0xbfda3e3e84f9d09d, 0x3ffbacc0adf0da26, + 0x3fdc25727e75bef8, 0xc009fe3c70745886, + 0x3fd5f902f57bd726, 0xbfd661f548d00693, + 0x3febae3625fe051c, 0xbffdb7ef3c4d9c1e, + 0xbfd3488ca25ca274, 0x3fad305fdad36780, + 0x3fd167a7834a1e02, 0xbffa527a6ceaa981, + 0x3fe0616d3ae2abde, 0xc00544a3682959b8, + 0x3fe94746953c2860, 0x3fc799ba90366b34, + 0x3fe279db8ae62a12, 0xbfdf45b61d732f88, + 0xbfeebaedc23175e6, 0x3fd16edc2d825eb9, + 0x3feec1435d1ccede, 0xbfeb058686e255d8, + 0xbfe8507df5fda8f4, 0xbff6f6e5ba7b8f82, + 0xc0086015553e5306, 0x3fd75e7638aefbc6, + 0xbfe5d2e840137cbd, 0xbff3f2363813d668, + 0x3fb2628bee1ff3e0, 0xbf8fef05abef8000, + 0xbfc27a54ce858000, 0x3ff9d39f8fa08c6c, + 0x400b04a1a2a9bf22, 0xc0046fb931796cec, + 0xbff7b5e93c060206, 0xbffb9ce70f9d8cf1, + 0x3ff77a94900b82ea, 0x3fe5ffc1c28e64d5, + 0x3ff00ab019a64a14, 0x3fd2b20471b4057e, + 0xbff82bb6f5a6d08e, 0x3fe39ceb62749a2e, + 0xbff992d392bc9244, 0xc002c637cb9d43ee, + 0xbff26da928d552f3, 0x401525b7fa15ee1c, + 0x3ff5500aa013e5ad, 0xbffd15382d0fc6cf, + 0x3fec983ba7d7aaaf, 0x3fb7b987dfd98a90, + 0x4004395e53cdfd1a, 0xbffb29f43e2c6cb5, + 0xbfb7b8740b831458, 0xbfff8c37509bde5e, + 0xbfed7eaefec038c5, 0xc00fd04f56247ac0, + 0xbfda0f7f211449c8, 0xbff2b6160db079e7, + 0x3fe2f34dd8ad3eef, 0x40866a81da3e8fc8, + 0xc0091de01dfa33a3, 0xbff7bb306b81f158, + 0x3fd11714176cf28c, 0x4006fc8ef2ced11e, + 0x3fe089dc8711dc5a, 0x40015f40a768db3b, + 0x3ffa7f9df13254e6, 0x3ff0b9597cb4b389, + 0xbfe0a32f61d05678, 0x3ff743f92e10783e, + 0xbfe553d649101980, 0x40021eb4f21073f6, + 0x3fb2e8dd85355930, 0xc00670e98ac571f4, + 0x3fc75c50169e890c, 0xc00f803188217e48, + 0x3ffa871140f356bc, 0xbffb9faa02887ecb, + 0xbfd6f7a6d86244d8, 0xbff127e6e241e156, + 0xbff2424f80073ade, 0xbff764e284ab4321, + 0xbfd03c9de1801ef0, 0xbfe207199d0e2b84, + 0x40040176b560b0d0, 0x3fed8314d7f1cf43, + 0x3fd4618f07b3113b, 0x400892136f2d6f29, + 0xbfb9ca58790b7460, 0xbfdd4980b8c84818, + 0xbfe27bc568fc3d82, 0x3fb0677f592337e8, + 0x3ff2e6a5ba650190, 0x3ff170332e37c102, + 0x3fed9c1133384073, 0xbf900d2d78b074a0, + 0x3ff20146c873c1f7, 0x3ff5d5c84db04667, + 0x3ffc4e9c27e8151c, 0x3fe5b5ea1c17e387, + 0x4000453d29ca98ca, 0x3ff90903ad98b73e, + 0x3ffae7639295b34b, 0xbff6efc874fc2611, + 0x3fe521386d455864, 0x3ff1551e66d70e5c, + 0x3ff459ede4cb8335, 0x3fd54186141f1ee4, + 0x3fd17d3cfb9476be, 0xc0053dec56bf0f95, + 0xbff0831a5a71876e, 0xbff3a774eea6a5ad, + 0xc000b36e51a609d4, 0xbff543c541d50453, + 0xbffce98795748813, 0x3ff82dbb991bdb4c, + 0xbff01b4d4b88a35b, 0xbfd75c4f633aadba, + 0x3febce138bd9749c, 0x3fff25c99cee7719, + 0xbffa6fa6af9d3670, 0x3ff68fffde5cc63a, + 0xc00336081c148b46, 0xbff31a0f1107a886, + 0xbfe722da2d614ae3, 0xc004a0d956ed2d68, + 0xbffa636a2f503902, 0x3fcebaa25a8e6f28, + 0x3fd366e0e9322d8e, 0x3fd89ba21cfc7760, + 0x3ff0747bdac1c49d, 0xbff56a5dd608dcc6, + 0x3ff60b2a8d362b75, 0xbfe93e27c4f617ef, + 0xbfecb031c42755cf, 0x3fa38c29bb373a60, + 0x3fe7c279bc71e442, 0xbff7b7f1cc5932d5, + 0x3fe370ea43073a25, 0xbfd78b15810258cf, + 0x3fea9ab8b8e4be3a, 0x3fcb2127411ada70, + 0x4001d1dace816017, 0x40052220ec90c112, + 0xc004e473f3ebce3e, 0x3ff17875e95dd057, + 0x400428bac1a5e548, 0xbfffabedcde96cc0, + 0xc0026af7a30c0802, 0x3fdaab594c5be3d4, + 0x3ffd570df0f831e6, 0xbfec457cd79b405b, + 0xbfa465072c03d100, 0xbfe5f0bb44b3a89e, + 0xbfcfdeb6c152f418, 0xbfe9d456cce11d51, + 0xbfd5f38b454be2a2, 0x3ffea65f158ba85f, + 0x400208c76072a55a, 0xbffd8be1c4ce78a0, + 0x3fe98e4c6a320dba, 0x3feab6533cd12476, + 0x400444b1f395d39c, 0x3ffc59d73f61cb2c, + 0xc00b52b934c697ea, 0xbfb252f63e397130, + 0xc003d89a5006a5f1, 0xbfe162909e642d88, + 0xbffbd9bd032d41ba, 0xbff90ab061e01463, + 0x3feb60b8f2a4d0e0, 0xc0030c45c4bcac47, + 0x3fda2be673db6b3e, 0xbff74dc0e668a770, + 0x40035e03efe4ce50, 0xc0079a486f558322, + 0x3fff2de41bf864ac, 0x4001ec35341be59a, + 0xbfef4ccb10b82620, 0xbffb3b2b04febb94, + 0x4000cead697c6568, 0x3ff79e4ef4bd012e, + 0x3f826ee76dfe5a80, 0x3fb856f3feb3ad84, + 0xbffdf82b2c3aebde, 0x3ff4ca38a76064be, + 0xbff7093122f3077c, 0xbfe7b16ac5ff2bd0, + 0xbfd360f5bd89ac2c, 0x3ffea730383a2b2a, + 0xbff54f9bdf13247d, 0x3ff483bcdae295bc, + 0xbfd100ee4b3ff238, 0x3ffac54d7547fa29, + 0xbfc03a4095ccb27e, 0xbff121701af8f5b4, + 0xbffce258cde3deb2, 0x4004613a57c98334, + 0x3fd04914e47bf72c, 0xc0024b92c7d704d5, + 0xbfd95d229c69ca25, 0x3fda5edbd048f6ed, + 0xbff6e14040b45f0e, 0x4009fd166d1fd9ca, + 0xbfe4e8368521081c, 0xbff77b7c15cf4160, + 0xbfeb0492dd9964b2, 0x3ff72f5e3e7a1d5c, + 0x3fd9805c0d9d0ab4, 0x3fdc4a10541a49f5, + 0xbff597d0213794af, 0x3fe291ab583585c4, + 0xbfbdabd762c9a64c, 0x3fe07dad491fd8b2, + 0xbfed1b338bd53dd7, 0x3ff04de2cf877274, + 0x3fee99404e98ad78, 0xbfce44c74a7cc6f8, + 0x3fec598a9f1313d6, 0xbfe7e97eac852a8a, + 0x3ff9f73c3f9a9932, 0x3fe96a05941b3622, + 0xbfc9734bce639a4e, 0x3ff1a2b71fb772b3, + 0xbfe01be5e70d4b7a, 0xbfe3ebb884f5ffae, + 0x40014ddd68ffa4b6, 0xbfe511f7b35a59c4, + 0xc006fb4c9a1c1314, 0x3fe036fa5c65e4e9, + 0x3ff0d612582ad86b, 0x3fe3b769ed7abb41, + 0x3ff299898ff40dd8, 0xc0022f7751443890, + 0x3ff511cfa3d0bedc, 0xc00d463837e1b8ce, + 0x3fed0e3b5e386018, 0x400496faf7acbca1, + 0xc004beb993d728aa, 0xc011808f11ab8e44, + 0x4002cdf6dde75c90, 0xbfdd48adec68cfc4, + 0xbfbee93de0151a80, 0x3ffa6622417c71ba, + 0x3fcffc860dee568d, 0x3fe7637e8a80161d, + 0x3fdb1204bab79b9d, 0x3f9dd5efb0833128, + 0x400db3c5fbf388ee, 0x3fef87206963672a, + 0x3ff831c31abac650, 0xbfbf789c78e769a0, + 0xbfe1767fc2ac8d5d, 0xbfedecba104f2434, + 0xc0049cb1a315620a, 0xc0000c4b495c4553, + 0x3fb8e0428cd23df0, 0xbff0e0cb9b6fdc2b, + 0xc00496aa4b318e22, 0xbfebbf13f9e52d2d, + 0x3fe5e25b3318c97f, 0xbff0ae49b30fa288, + 0x3fea559f124898c2, 0x4000eaa933e55626, + 0xbfe59aa8aebc37c2, 0x3ff20cc735a0ed0e, + 0xbfd802a4ece0f850, 0x3fe9a3876369090e, + 0xbfd7b4d7e8d3b92c, 0xbfba2ecbe7bf6fec, + 0xbff7aa9873a74e3b, 0x40075e1625ebad9e, + 0x3fee4434b64e0758, 0xbff19589f5a9e03a, + 0xbff02958918d3a6c, 0xbfe3c47a88482beb, + 0xbfef4b01e040b3ae, 0x3fa0f96a80a41418, + 0xbfea1e00ef21e857, 0x3ffbb58d00088c79, + 0xc004fbc6e749d30b, 0x3ff0f43e722753d2, + 0x3fd6a35574a1b7ec, 0xbfe779fa6a9da790, + 0xbff866a7900c46d8, 0x400a8891ca8b701a, + 0xc0073a20628f50de, 0x3ff7a1c6c948cf0e, + 0xbff32544d5d2f8c7, 0xc00c08fa8a98b7f4, + 0xbff9608f40cb4d80, 0x3ff4b3cdaa63eb1a, + 0xbfffc441a94ea13a, 0xbff32944c3dd7664, + 0x3fe0e15ec09322a2, 0x400b3f87dd5640d4, + 0xbfeb67b7db6cd4bf, 0x3ffd429a2aa808c4, + 0x4002c8934acae5a9, 0xc003680d671efa66, + 0x3ff45066803a9dc0, 0x3fd3b8af3b3c4c8c, + 0xbfe59a050170531a, 0x3fd8d24c4967e4ae, + 0x3fdf0cf209c00a98, 0xbff25f6129e7a2a5, + 0x3f63a73eb345b100, 0x3feba91f994a614c, + 0x3fff1eb45cd9848e, 0x3fd6942e7e47c456, + 0xbffe1f090bce66ec, 0xbfe4b2dcacf7643f, + 0x3ffd91adfd596bf6, 0xbff0e0ee4262da1b, + 0x3fb0df68cff93610, 0xbfe547cfbc64e892, + 0xbfee4d0911afdf5a, 0x3fef9fba5186f673, + 0x3ff92b2cbbba8a09, 0x3fe2d6949296dff0, + 0xbfdb21b6d9cf78a8, 0xbfe139b525195aa8, + 0x3ff5aa35bbdae038, 0x40097ae2dba0cbee, + 0x3fe3cb4da5052ae9, 0x4002ddf8bbda165d, + 0x400419536a4ae360, 0x3fa19927e7d4ac40, + 0x3fd09c7597b5b11a, 0x3fe077742ad1f8ec, + 0x4005368eb1ef8663, 0xc006938e3d88aa45, + 0xbff733467cc122da, 0x40015fec12bdcecc, + 0xbff32f4ccd31095b, 0xbff98db7de865fb8, + 0xbfb7075c09c7a878, 0x4009f07f8d3406f6, + 0x3fd0e8e188b5878a, 0x3fbd599818e8490c, + 0xbff7545a44e26baa, 0x3fd5b944b225d460, + 0x3fe77bfff5a5cf89, 0x4000f207df0d133b, + 0xbfe8ad26edf41aa1, 0xbfd5658bc4609b98, + 0xbfec1bb85f0d131b, 0x3ff3a01e2d77bc38, + 0xbff19a96618a0fd8, 0xbfcfcc9ca0255c08, + 0xbff1aaa9cb56e30c, 0xbfed3496658c4918, + 0x40013924e8938342, 0xbfe5052afd74c1c2, + 0x3ff7131220ae26c3, 0x3fbf192c7be2db28, + 0xbfff57503fd447c0, 0x3fc68d1adcafa829, + 0x3ff072a6b4c967ec, 0x4005a21bcb6ba7f0, + 0xbfc9581bb3633dc2, 0x3fee9a60dc8c16fc, + 0x3fc5f4749f54df20, 0xbff2e174265ecb1e, + 0x3ffb26ad6750829f, 0xbfe13342a3e7b2c2, + 0xc0044fc1b3e04840, 0x4010138617b9c570, + 0xc00810ec9a799551, 0x4011e0a83f838b98, + 0x3ff4bacb6f2dfd56, 0x3ff2374945271d66, + 0xbfda76b243d55450, 0xbfe60a84f9c90678, + 0xbfe50264185a0863, 0xbfd02778f81509d6, + 0xbfdb162e2d3d82be, 0x400b75f2c4cd4d82, + 0x3fdd8d39a7e440d8, 0x4000403a715c52d4, + 0x3fdc004aff3c44b8, 0x400fe9a133a12ef4, + 0x3ffb5f9b171c0743, 0x3ff881731b72c19a, + 0xbff9f5308e0728fa, 0x3fe6b73c7986d5bc, + 0xbfe04d15d4ea5da4, 0xc0011e9466396082, + 0x4002fa9fc9fbe392, 0xc008265b02e65e70, + 0xbff0fdf4f4afc4a2, 0xbfda89843d837937, + 0x3ff0a1ea53bab26d, 0x3feb6f6733926b92, + 0x3fefa152e86c6055, 0xbfedd0b5aa97f40f, + 0x3fce4e98e5dea3d6, 0x3ff613c3cadaf5af, + 0xbfe5aebc6e24e7df, 0xbff68d7f1ff53251, + 0x400c5d3082208b6a, 0x3fd6d0ff0e8308e2, + 0xc011a774fe7efd9f, 0xbfed617f81832b04, + 0xc00ef8f277d25cec, 0x3ffa33eaf6e95f43, + 0xbfe3334fc147417c, 0x401347d68e7e79f6, + 0x3fb83b2bf7fe5ef0, 0xbfde633e21158f91, + 0xbfea9b8715361e5c, 0x3fe7314fc52ea104, + 0xc0019d43561702f9, 0x3fead18d98ea0a12, + 0xbfea634de58abf75, 0xbfd9b548b8c4bb7d, + 0x3fb3f6184498b05c, 0xbfb3f3ff1407a4d8, + 0x3fe390a9fc52a2e1, 0xc0090ce1e5646850, + 0xbffcd8b4d1d5a0d0, 0x400b49581abad33a, + 0xbff6d7b0224bdde2, 0x4002adbda8bd13aa, + 0xbfeb5a35b5927c49, 0xbff2e9f546521a47, + 0x3fdacdb45bae28b6, 0xbfbde32cdf4ba870, + 0xbfe03fbadca97c3c, 0x400a38d66ca7746e, + 0x4003a04aee7de2c2, 0xc0001da1c8519cda, + 0xbfe051789ec2f77e, 0x3fd7bba36ac3bbcb, + 0x3fd2b0dd3d8bf98a, 0xbfdf57a4710fe3b4, + 0x3fdfcea50cda3be6, 0x3fde01755502b84e, + 0xbfdecfb559384fcc, 0x40056ea79afabcf1, + 0xbff45cca6cbf5fb5, 0xbfb399c42f64b37c, + 0x3fe1aa98f3b335b2, 0xbffb494d83badac4, + 0xc01025f8557dac0a, 0xc000454103ef561a, + 0xbffd902b93f8b1ee, 0xc00a2bc8e4e12bb0, + 0x3ff9bac8034b3c12, 0xbfec2a74762d1e1c, + 0x3ff1942230cd6fa5, 0xbfe947b791c04e16, + 0xc0105ccf03c74704, 0xbfc651bd4f8e1c08, + 0xbfffe0ca2c29ef32, 0x3fe1088b97033846, + 0x4000330aeee71c5e, 0xbff6a719998e5493, + 0xbff3c6c35d620dab, 0xbfba1e6d5d61fe80, + 0xbffd37b5c3b5956a, 0x3fc1a794489998f8, + 0xbfde9c53cf0fed7e, 0x3fe5a3698058137a, + 0x3ff179cb36f720b2, 0x3fe635c6a03fbf0f, + 0x3fcf17bbf0845794, 0xc00097a37ae990c6, + 0x3fd541ff78b66899, 0x3fc421231d6157a0, + 0x4005e5d319a4bc26, 0xc004e20ce587161a, + 0xc002bdf8c23cc363, 0xbfd8f8469ca7ab7f, + 0xc0002f7fa880b51d, 0x3ffd073a33e909d3, + 0xc00a0d2a692b00f4, 0xbffc8a3ef65bbf08, + 0x3ffc0cde4959b2ad, 0x400e146cf8358024, + 0x3fe2f621f945b70a, 0xc00509cdd48a0add, + 0x40014125fb7b0da4, 0x3ff504fcf72c3c23, + 0x3ff55be3d34d57bb, 0xc001328fa0bed224, + 0xc00196d4449a425e, 0x400acda988bf2629, + 0x3ff2ea5c3bf28b24, 0x3ff48a73c0cca0d4, + 0xbfe93ce099e735bc, 0xbfedad15c2a9a36e, + 0x3fd1203c25a7c965, 0xbfeb5f2204fa5bd8, + 0x3fe580ec4b99f96c, 0xbfcbc234a8b1f520, + 0x3ff3844203255be0, 0x3fc5483cfebc5a44, + 0x3fe95d1bdcbeae4a, 0x3fc74189127a383c, + 0x3fddf140c00a6d81, 0x4008afe96c362012, + 0x3ff6eafeb45f7c98, 0xbfeda87c81162262, + 0x3fc7788fbffb3524, 0xbffc324e33a9ebde, + 0xbff7747e82f5f4ec, 0xc013a35a95fc7946, + 0x3fc4c18fdc3bdf0c, 0x3fe9ccf0d01f1414, + 0x3fd771b88506175f, 0x3ffd2466adfc5f52, + 0xbfd354a5eab974b2, 0xbfea6fc6a98166ca, + 0xbff72ab08314a78f, 0x3fdf79a404482ac0, + 0x3fcbaa64f6bc3f20, 0x3fe41d92a1f7f1c4, + 0xbff962e0089fbc22, 0xbffdf8a6d441facc, + 0xbfcd27f5cef4e65c, 0xbfaf8c420e484bb0, + 0xbfee1cdf8c96091d, 0xbffc23cc6c66671a, + 0x3fe663ec70706c90, 0x3fea2839fef36f47, + 0xc00606a2cb3df32a, 0x3fc3828f88aa0864, + 0x400dc9fa6e22d7de, 0x3fef2fab51736086, + 0x40044c60acefc074, 0x3fd62bdf6678412a, + 0x4008e5f3aecfeb46, 0xc00462a8a84ce40e, + 0xbfec090464d62ebb, 0x3ff90742e5a79037, + 0xbffa1b5191af528a, 0x3ffeb8d9ed12754e, + 0x3fb85284c70bf620, 0xc00507651b34a2e8, + 0xbfeef5573c6f3868, 0xbfce7cb668774474, + 0xbfea42828cd4d7e6, 0x3ff646c5328beb97, + 0x3fefe43c45df3944, 0xbfe0d91fc3e1bb7f, + 0x3fdf515fa16afc35, 0xbff64a6026888d6e, + 0x3fda05babd70ec14, 0x3ff108ae1613f102, + 0x3fe48800e9b984fa, 0xbfec6b2929b6515c, + 0xbffd034d7d5b7995, 0x4003c3adbccc07f0, + 0x3fd67c8a8f7c8e28, 0xbf8d858074a11a00, + 0xbfd14d0b0d057ac6, 0x40008cfd4c8fd3f9, + 0x4005a1c8e713fd93, 0x3fdec61c2bec4668, + 0x3ff86fa651c2d910, 0x3ffbad39fb03d091, + 0xbfd349226edce827, 0x3fd8e9ae13fdbe7e, + 0xbfee33b9a7f286dc, 0x3fea261c54e2c14e, + 0x3fe4103f98478e24, 0x3fd7abb315a7b76c, + 0xbff57ed5eb3783f8, 0xc0090b2d821d0099 }; static const uint64_t in_cfft_noisy_4096[8192] = { - 0xbfa16737c10e70f9, 0x0, - 0x3fe0d611cf699e7f, 0x0, - 0x3fe6379e9581f3ea, 0x0, - 0x3fdccf3d6f8a8a53, 0x0, - 0x3f9ac16e24dbab85, 0x0, - 0xbfe14c792b03107e, 0x0, - 0xbfe6bb6cf964a41d, 0x0, - 0xbfe2cd2d308d8c75, 0x0, - 0xbfb8a871f217bf95, 0x0, - 0x3fdf46a6ca033221, 0x0, - 0x3fe65eb00e261bc0, 0x0, - 0x3fdf788482e37f49, 0x0, - 0x3f874bad312e42f2, 0x0, - 0xbfe049989a969713, 0x0, - 0xbfe29166bafd4591, 0x0, - 0xbfe305d4e441dd06, 0x0, - 0x3f82e1f680efde33, 0x0, - 0x3fe12807667f16fc, 0x0, - 0x3fe5c55ce03458b3, 0x0, - 0x3fe1fc3a75d19512, 0x0, - 0xbf8d715549287078, 0x0, - 0xbfdd8454287e38ca, 0x0, - 0xbfe71efb1d0425fc, 0x0, - 0xbfe0cf6289f18fec, 0x0, - 0xbfa3753b73fa7fb2, 0x0, - 0x3fdf6d56d96eb9d1, 0x0, - 0x3fe73910287a83de, 0x0, - 0x3fe0da9ea6fce1a4, 0x0, - 0x3fa8d20c170de3f2, 0x0, - 0xbfdf23f4ba82535f, 0x0, - 0xbfe69397f72c814f, 0x0, - 0xbfe00ac70d3546a9, 0x0, - 0x3fbd5284b6654f2c, 0x0, - 0x3fe0418cab237906, 0x0, - 0x3fe4cf0281fe8a22, 0x0, - 0x3fe1f959506270fb, 0x0, - 0xbfa3452b36d78351, 0x0, - 0xbfdf2de49b5d9253, 0x0, - 0xbfe62db4d8eeb203, 0x0, - 0xbfddb44f6507ceb9, 0x0, - 0x3f56d505d5861eda, 0x0, - 0x3fdd6e03b497afde, 0x0, - 0x3fe2ceb067d0cd38, 0x0, - 0x3fdb055b3ce79d0b, 0x0, - 0x3fa0f88c9585ce9c, 0x0, - 0xbfe13bfdab02d0cc, 0x0, - 0xbfe4f4e1ce857f7a, 0x0, - 0xbfdfca37bbe5375f, 0x0, - 0xbfb4e376a7ef5009, 0x0, - 0x3fe137a6dae12e94, 0x0, - 0x3fe5bd62cf89e753, 0x0, - 0x3fdf843d19e57ace, 0x0, - 0xbf8152b5e6c9dd62, 0x0, - 0xbfe1e533c72f1604, 0x0, - 0xbfe6eecf69baac0c, 0x0, - 0xbfde8f0f67baa1e6, 0x0, - 0x3fb4c5c2e49df786, 0x0, - 0x3fdea44e25ab470d, 0x0, - 0x3fe6c5d2da3ce073, 0x0, - 0x3fdf35c7cf76116b, 0x0, - 0xbf9e0a055aa721d3, 0x0, - 0xbfdbd7eb00c3c8b0, 0x0, - 0xbfe7e200390d898c, 0x0, - 0xbfe0a6eab2b55b27, 0x0, - 0xbf8d0fec5a11f994, 0x0, - 0x3fe0ddda2083798d, 0x0, - 0x3fe717e18e8f1bb4, 0x0, - 0x3fe24a8e30121fb0, 0x0, - 0xbfa5056d966f474f, 0x0, - 0xbfe08f4cdbd4f466, 0x0, - 0xbfe633696aa435d7, 0x0, - 0xbfe174036e3927db, 0x0, - 0x3f84a73aa1588e13, 0x0, - 0x3fe00c0f3919c992, 0x0, - 0x3fe7e2f35d7d24ec, 0x0, - 0x3fdec219a71bf34d, 0x0, - 0xbfc389ee711ffb30, 0x0, - 0xbfe0a0bc2a910325, 0x0, - 0xbfe762bd06d41509, 0x0, - 0xbfdf8774811e8960, 0x0, - 0xbfa1a20b00a47316, 0x0, - 0x3fe0ed712652258f, 0x0, - 0x3fe724cae2a58766, 0x0, - 0x3fe102346b32fef4, 0x0, - 0x3f983ea8f4d9bfea, 0x0, - 0xbfe130cee15f447d, 0x0, - 0xbfe7823c76caacea, 0x0, - 0xbfdef6aacba8f177, 0x0, - 0xbfbe90b8ca9d345d, 0x0, - 0x3fe05c05957b549e, 0x0, - 0x3fe68dcc8599f3f3, 0x0, - 0x3fe313fa37e35fa0, 0x0, - 0xbfb3a44b80ee5097, 0x0, - 0xbfdcd20bcf7a4a86, 0x0, - 0xbfe5804080dfcbfe, 0x0, - 0xbfe04cb64a37cf19, 0x0, - 0xbfac0f642899e1c3, 0x0, - 0x3fdcf2910ac83cc6, 0x0, - 0x3fe461cf08601ed0, 0x0, - 0x3fdc6dcc4ea5ca00, 0x0, - 0xbf899c28467f1900, 0x0, - 0xbfda74d671f9c113, 0x0, - 0xbfe69e1272bf737c, 0x0, - 0xbfddd03ff6295e80, 0x0, - 0xbf91d2139ac45374, 0x0, - 0x3fdf3605ebe8b19a, 0x0, - 0x3fe5eb4938db11d3, 0x0, - 0x3fdb93ca87c05b34, 0x0, - 0x3f9d1b78f344383d, 0x0, - 0xbfdf53d50dc455aa, 0x0, - 0xbfe82ab4f5f7f8ea, 0x0, - 0xbfe12b099879055d, 0x0, - 0x3f908afcea6ea543, 0x0, - 0x3fd9e88e33ea9118, 0x0, - 0x3fe824158f20e658, 0x0, - 0x3fe10b23e09173e2, 0x0, - 0xbfbbdd64f712bbdd, 0x0, - 0xbfddbde798c07d82, 0x0, - 0xbfe54d39d1d63977, 0x0, - 0xbfe1dc65fda40dd5, 0x0, - 0xbfb7ccb9e63d7251, 0x0, - 0x3fddbc07482dbe39, 0x0, - 0x3fe4d0b852be5500, 0x0, - 0x3fe17a4dd80dab9f, 0x0, - 0xbf96e3adab036f2a, 0x0, - 0xbfdb5263182b1075, 0x0, - 0xbfe594e328cd8131, 0x0, - 0xbfe0cc0a6bd48314, 0x0, - 0x3f9b2c712237aa4e, 0x0, - 0x3fe23fc72f1a5c94, 0x0, - 0x3fe62223b7a62c2a, 0x0, - 0x3fdf3db7fe04911e, 0x0, - 0xbf87ecb1159980c7, 0x0, - 0xbfdcf2899ab92420, 0x0, - 0xbfe670dabcdf5e0b, 0x0, - 0xbfd9b44cbf0b4d04, 0x0, - 0x3faab35f1de68d15, 0x0, - 0x3fdc081fe06e6f65, 0x0, - 0x3fe87fb1498c0fcc, 0x0, - 0x3fda20885253d277, 0x0, - 0xbf9099464012022a, 0x0, - 0xbfe24a4188c0cbe0, 0x0, - 0xbfe644ab2e11c07a, 0x0, - 0xbfde5113117ff73b, 0x0, - 0xbf42facaaf9fd993, 0x0, - 0x3fe02c0c3a52f549, 0x0, - 0x3fe7a218c4783911, 0x0, - 0x3fdedd22dacdaab1, 0x0, - 0x3fa8c3bda0deb8fa, 0x0, - 0xbfd7e9e8350b0d52, 0x0, - 0xbfe82ee6f43af112, 0x0, - 0xbfdf0584524af66c, 0x0, - 0xbfaa84be8b4eea77, 0x0, - 0x3fe32d12a3d09177, 0x0, - 0x3fe5b6ba7f8e3c59, 0x0, - 0x3fe12af4caae6468, 0x0, - 0xbf8b10c25f554fe4, 0x0, - 0xbfe09c731dd128bf, 0x0, - 0xbfe5a94461bdeae6, 0x0, - 0xbfdcbec5f9112625, 0x0, - 0xbfa7405855d16a26, 0x0, - 0x3fe11bcfd0240e97, 0x0, - 0x3fe8fe4a63a5b181, 0x0, - 0x3fde52324424f745, 0x0, - 0xbf934d070da6149b, 0x0, - 0xbfde571ea932df6f, 0x0, - 0xbfe49f2c0f2593c7, 0x0, - 0xbfdab87cfac69ab6, 0x0, - 0xbfb265ceaa4e216f, 0x0, - 0x3fdd5a575d14ec83, 0x0, - 0x3fe5075e67266328, 0x0, - 0x3fe12f2f96d917f6, 0x0, - 0xbf8a041e35a939a5, 0x0, - 0xbfdb13ad6b326360, 0x0, - 0xbfe58f1dfb70311f, 0x0, - 0xbfe085b5211d1400, 0x0, - 0x3fc27fb7a55132a5, 0x0, - 0x3fdd415b1e8657ab, 0x0, - 0x3fe2e01ab5be5438, 0x0, - 0x3fe28b8576de18ef, 0x0, - 0xbf67ec7b3bdc0ab2, 0x0, - 0xbfe0bd07ef8f3282, 0x0, - 0xbfe7f7d1997380b9, 0x0, - 0xbfdaded193278f2b, 0x0, - 0x3fa050e3126990ea, 0x0, - 0x3fdcc108b32c9c37, 0x0, - 0x3fe7a0997379d45c, 0x0, - 0x3fe03abf8ce34416, 0x0, - 0xbfa164389af39232, 0x0, - 0xbfdf213610009fc8, 0x0, - 0xbfe3376262820415, 0x0, - 0xbfdf4ac14895ecee, 0x0, - 0xbfb43dbd98055040, 0x0, - 0x3fdd67537c50d71c, 0x0, - 0x3fe56e4f422f2361, 0x0, - 0x3fe047203b7f73f9, 0x0, - 0xbfa531116671bd43, 0x0, - 0xbfdeba16f830c7f2, 0x0, - 0xbfe5e6bb75a2ed16, 0x0, - 0xbfd94f60d8574ebc, 0x0, - 0xbfb06007ec3023f3, 0x0, - 0x3fd9e734b2cb0a33, 0x0, - 0x3fe778d32b50fd4d, 0x0, - 0x3fddd04d33a6f092, 0x0, - 0xbfa5f2f8cabecef7, 0x0, - 0xbfda158531501a10, 0x0, - 0xbfe837e61ddc6e74, 0x0, - 0xbfe03196ee4109ef, 0x0, - 0x3fac84781d3e09f9, 0x0, - 0x3fdf0611ac1a1e49, 0x0, - 0x3fe83bd1a97f0d5a, 0x0, - 0x3fdc192d75fd3ea4, 0x0, - 0x3f8e13dacdc2524e, 0x0, - 0xbfde3785f52fbc40, 0x0, - 0xbfe5fc1af5634ac6, 0x0, - 0xbfddef2ceec324c2, 0x0, - 0x3f8a2d02c418a08f, 0x0, - 0x3fdb062ad555192f, 0x0, - 0x3fe660d88df3466a, 0x0, - 0x3fe0db5d0696e266, 0x0, - 0x3f70c4445b0645d5, 0x0, - 0xbfe08a47d7fab377, 0x0, - 0xbfe319ef0de393ea, 0x0, - 0xbfdc22d18b78b4c2, 0x0, - 0x3fa7ecf4784eab85, 0x0, - 0x3fe1ab48d1bc269d, 0x0, - 0x3fe884173a52bb51, 0x0, - 0x3fe127b13ea36d78, 0x0, - 0xbf9fa49a91bae5c6, 0x0, - 0xbfe03f1d501c4c6c, 0x0, - 0xbfe712ef7228f95b, 0x0, - 0xbfddbef5f6770bde, 0x0, - 0xbfbb362651911e7f, 0x0, - 0x3fe03740548b8f6d, 0x0, - 0x3fe5fc7c39d53242, 0x0, - 0x3fe098a8ba695bbd, 0x0, - 0xbf368169cc76f367, 0x0, - 0xbfdbf120efc48679, 0x0, - 0xbfe6ddc3f2369f02, 0x0, - 0xbfe00829a31f309b, 0x0, - 0xbf909b1b1b178f00, 0x0, - 0x3fdce6ee21e33229, 0x0, - 0x3fe436f47bbe487f, 0x0, - 0x3fde19878859b3a5, 0x0, - 0x3f7b43b5ed26f087, 0x0, - 0xbfdba1bcd59ca5f9, 0x0, - 0xbfe5f23c306b4645, 0x0, - 0xbfdf180bf8ff64ac, 0x0, - 0xbf8909a47bb5a5d8, 0x0, - 0x3fdee9f5fd2b4921, 0x0, - 0x3fe579262de0834b, 0x0, - 0x3fde42d117a25cf0, 0x0, - 0xbfa75390339f2dda, 0x0, - 0xbfe01004f401549a, 0x0, - 0xbfe7b44eff9c514d, 0x0, - 0xbfde75e8c6af61d7, 0x0, - 0x3fbd684a837526f7, 0x0, - 0x3fdcb623e213949b, 0x0, - 0x3fe43e23f575c7ac, 0x0, - 0x3fdfc0dd2615e3e0, 0x0, - 0x3fa017593c55cbd9, 0x0, - 0xbfe060f130b85359, 0x0, - 0xbfe794352e571814, 0x0, - 0xbfe27216333c5711, 0x0, - 0xbf708080d23baade, 0x0, - 0x3fdc92f212101726, 0x0, - 0x3fe59a3f3e8bd536, 0x0, - 0x3fe04afb0cf9c5e7, 0x0, - 0xbfb1d97bbe5fde4a, 0x0, - 0xbfdb8255fd8484c1, 0x0, - 0xbfe56689aa9ba3c5, 0x0, - 0xbfde417f8e58e809, 0x0, - 0x3fac40d04e70d272, 0x0, - 0x3fdce6df3d6dad07, 0x0, - 0x3fe51a4fb51bff73, 0x0, - 0x3fd90486c13ecc98, 0x0, - 0x3f97b3a314b209e9, 0x0, - 0xbfdf3413d5e4ed23, 0x0, - 0xbfe997929abd6f3f, 0x0, - 0xbfde9ab9881a8a68, 0x0, - 0xbfb561cea10c6e9b, 0x0, - 0x3fda9d48fe8bb0db, 0x0, - 0x3fe65cb679453a4b, 0x0, - 0x3fe138e759644be1, 0x0, - 0xbf9a7420b70b6df6, 0x0, - 0xbfe006f8d103f423, 0x0, - 0xbfe40daa62931cb3, 0x0, - 0xbfdec6ff6e7a6db4, 0x0, - 0x3f718428fbc8b19a, 0x0, - 0x3fe14363d04e62ae, 0x0, - 0x3fe61b1561541370, 0x0, - 0x3fe012f2f6a4b76b, 0x0, - 0xbfbdbbb1c0bc6aef, 0x0, - 0xbfde023a71865f47, 0x0, - 0xbfe620dce6ee4910, 0x0, - 0xbfe180304a16e924, 0x0, - 0x3f97bc22a2f19f77, 0x0, - 0x3fdee997e156f2f2, 0x0, - 0x3fe5224eb3b9e608, 0x0, - 0x3fdf268afb42f05c, 0x0, - 0x3fa39fea175b2b9a, 0x0, - 0xbfdf9b850b8fe527, 0x0, - 0xbfe423eecf9177ee, 0x0, - 0xbfde5984a44e1a39, 0x0, - 0x3f6a4384da837e35, 0x0, - 0x3fe06c56cf67281b, 0x0, - 0x3fe61350e2fc3b64, 0x0, - 0x3fdd3a2d367015bf, 0x0, - 0x3f6142113ee08b84, 0x0, - 0xbfe0a99063b98633, 0x0, - 0xbfe61a317bd6414e, 0x0, - 0xbfdf336b5d401ec1, 0x0, - 0x3fbb539998afc55c, 0x0, - 0x3fd9f496a8e7086f, 0x0, - 0x3fe7a32fa825f030, 0x0, - 0x3fdd26fb30f4b5a1, 0x0, - 0x3faea72157fecc1f, 0x0, - 0xbfde0b1a889963b8, 0x0, - 0xbfe2213a63f48e02, 0x0, - 0xbfe12f15ac8aa3d2, 0x0, - 0xbfa7a0ada8379602, 0x0, - 0x3fe03b073fb36ba2, 0x0, - 0x3fe561a7ccd8802a, 0x0, - 0x3fe25b486d253feb, 0x0, - 0x3fa4ef0944eef748, 0x0, - 0xbfdcb12d58395e60, 0x0, - 0xbfe6da8132868b08, 0x0, - 0xbfe072c81521b656, 0x0, - 0xbf728ce04e3b0888, 0x0, - 0x3fdf18b42308e165, 0x0, - 0x3fe7a4c4806921f2, 0x0, - 0x3fde95eddd6eade3, 0x0, - 0x3fae546b2b5f6dac, 0x0, - 0xbfe1906e63b9ccee, 0x0, - 0xbfe4d8504dbfc439, 0x0, - 0xbfddf33c95c51a8c, 0x0, - 0x3f302317b761ca45, 0x0, - 0x3fda33d8755f1bd5, 0x0, - 0x3fe8c3a8a336bc8f, 0x0, - 0x3fdebd4cb74a2bb0, 0x0, - 0x3fb7b12e75724ec6, 0x0, - 0xbfdbfaea3f6dfd2c, 0x0, - 0xbfe77dd3732cbdec, 0x0, - 0xbfde6408a9ef3f8a, 0x0, - 0x3f7de9ae4207f8bd, 0x0, - 0x3fdbb7acde80b989, 0x0, - 0x3fe6296dcff9afca, 0x0, - 0x3fde4f1b25d613e7, 0x0, - 0x3fa5b888a7ecec4b, 0x0, - 0xbfe232d882b4404d, 0x0, - 0xbfe6e1684130439f, 0x0, - 0xbfdd252ae133d965, 0x0, - 0x3fa96f36b4f54e7f, 0x0, - 0x3fdb09b5e7961bf0, 0x0, - 0x3fe5ceb34931fcc1, 0x0, - 0x3fe21b6bcb4abd0c, 0x0, - 0x3fa090e9d967f887, 0x0, - 0xbfd8faca46541fa9, 0x0, - 0xbfe3e84f6cff8b98, 0x0, - 0xbfe02ee4ede70990, 0x0, - 0xbfb757d29297db9d, 0x0, - 0x3fe02f4930d56961, 0x0, - 0x3fe6dfbf8bbcffff, 0x0, - 0x3fde484f5d04c3a6, 0x0, - 0x3fb2faec310a9a1f, 0x0, - 0xbfdecf516a106239, 0x0, - 0xbfe4e8b5c175ee16, 0x0, - 0xbfe0ccb47e6cc5bd, 0x0, - 0xbfaa1c1be74cf62f, 0x0, - 0x3fdcb786ab60b6aa, 0x0, - 0x3fe6d1629bebe98c, 0x0, - 0x3fdc144270280e3e, 0x0, - 0xbfa4c5567e0e5106, 0x0, - 0xbfe16f5679f94a89, 0x0, - 0xbfe8d91e5ade0d56, 0x0, - 0xbfdf84b16e219aa1, 0x0, - 0x3f96c863cb84e8d2, 0x0, - 0x3fdc36754dd8dea2, 0x0, - 0x3fe8fb190bcac256, 0x0, - 0x3fdd951bac791d9f, 0x0, - 0x3fc06314ddd06ff0, 0x0, - 0xbfe17dd465ecf9a3, 0x0, - 0xbfe8d8943f601f32, 0x0, - 0xbfdf2ae100d06528, 0x0, - 0x3fa98f7121549ef6, 0x0, - 0x3fdf03ba6ed69d4a, 0x0, - 0x3fe608266cc360fd, 0x0, - 0x3fe2cd2c6057cd1e, 0x0, - 0x3f9122049e4f3ea6, 0x0, - 0xbfdd811a10a6565e, 0x0, - 0xbfe7809099287c4b, 0x0, - 0xbfdebea8df815499, 0x0, - 0xbfa226707b559b58, 0x0, - 0x3fe029f382c9538b, 0x0, - 0x3fe851c90990c0f4, 0x0, - 0x3fe1f4168e032235, 0x0, - 0x3f776e5b9191c472, 0x0, - 0xbfd8e81b9711f12b, 0x0, - 0xbfe719e336e143f4, 0x0, - 0xbfde70aa71402e9b, 0x0, - 0xbfb7af2a8b9b7bdb, 0x0, - 0x3fe00fc7c9c666ef, 0x0, - 0x3fe6ec28d66d37fe, 0x0, - 0x3fdc438d9e80ba44, 0x0, - 0x3f836e7c0d2d503b, 0x0, - 0xbfe159987d7910dd, 0x0, - 0xbfe5e67375b4af57, 0x0, - 0xbfda79ff29be6516, 0x0, - 0x3f58da53c2f2b7e0, 0x0, - 0x3fdb0b4c5dc00a26, 0x0, - 0x3fe80c302d2a1a25, 0x0, - 0x3fdfd8540b464fb2, 0x0, - 0x3fa1d3a17200ffdb, 0x0, - 0xbfe289ba3d184a05, 0x0, - 0xbfe4764f2828a335, 0x0, - 0xbfdfabb8bedb373c, 0x0, - 0xbfc2d6b1edd2b15f, 0x0, - 0x3fe0744687b6aa96, 0x0, - 0x3fe911b056ed49df, 0x0, - 0x3fde82b26f837567, 0x0, - 0x3f9815f16a876982, 0x0, - 0xbfe01ecff0ea896c, 0x0, - 0xbfe77632a2080bda, 0x0, - 0xbfe26182f987d158, 0x0, - 0x3f262f5a83624df0, 0x0, - 0x3fdde978e817420e, 0x0, - 0x3fe6d68479059b60, 0x0, - 0x3fdd5d9ac03944fa, 0x0, - 0x3fb3ddbd3cc428ab, 0x0, - 0xbfe141167096350e, 0x0, - 0xbfe2c7a79aff2a32, 0x0, - 0xbfe21a80aa3545e9, 0x0, - 0xbfb6a612c1c66f40, 0x0, - 0x3fe2001bf78140f6, 0x0, - 0x3fe5477a07af6084, 0x0, - 0x3fe17795fd634639, 0x0, - 0xbfb849004ddf9b4c, 0x0, - 0xbfdd5b7525fb48ee, 0x0, - 0xbfe72bc5f975a015, 0x0, - 0xbfdd6aa93399451e, 0x0, - 0xbf88437fc174a602, 0x0, - 0x3fe01f1fe288751a, 0x0, - 0x3fe6e3294ddfeeca, 0x0, - 0x3fdd165e9878306b, 0x0, - 0xbfb9578a97808912, 0x0, - 0xbfe0726975a9c50b, 0x0, - 0xbfe621429d2ab12c, 0x0, - 0xbfe03b8e0c11e407, 0x0, - 0x3f86a69a8e8309f4, 0x0, - 0x3fe26f00acce26c8, 0x0, - 0x3fe61bb5a5cab8b6, 0x0, - 0x3fe27ae45ba19e0e, 0x0, - 0x3fa65ec404afad0f, 0x0, - 0xbfdc4c9d18f8c56f, 0x0, - 0xbfe4d64f49c9ad30, 0x0, - 0xbfdd324629991eb6, 0x0, - 0xbf8a765e34ea5cfd, 0x0, - 0x3fdd1d3b0239bbab, 0x0, - 0x3fe599fb3a054893, 0x0, - 0x3fde0ecce7dea0fa, 0x0, - 0x3fa0d4e03269d18b, 0x0, - 0xbfe0bfed31875d9c, 0x0, - 0xbfe7fe152ec6615b, 0x0, - 0xbfe1426c18955123, 0x0, - 0x3fa286f76d01cfb3, 0x0, - 0x3fe04eab934896a7, 0x0, - 0x3fe42848c654d71c, 0x0, - 0x3fe12cc44ad6cb45, 0x0, - 0x3f893f296e4a4f43, 0x0, - 0xbfddda8ec41a20d2, 0x0, - 0xbfe820789caf68d4, 0x0, - 0xbfda8acbb40fbaf3, 0x0, - 0xbfb1b3526bda6386, 0x0, - 0x3fe0dd37a96d1816, 0x0, - 0x3fe5d597d6096c22, 0x0, - 0x3fe121d647c346c7, 0x0, - 0x3f85861d9f1229bb, 0x0, - 0xbfdb67090b5ba651, 0x0, - 0xbfeaa63d90165c80, 0x0, - 0xbfe01c5015c49246, 0x0, - 0x3fb1876fd18593ed, 0x0, - 0x3fdf3df29442212c, 0x0, - 0x3fe8bbac9e721175, 0x0, - 0x3fe021c0bbce46db, 0x0, - 0x3fa1dd4539969273, 0x0, - 0xbfd944502b707dce, 0x0, - 0xbfe5ffdb04cc551e, 0x0, - 0xbfe30f53154fa91f, 0x0, - 0xbfa333a41420709e, 0x0, - 0x3fde3535120128d3, 0x0, - 0x3fe7acfe7dc2ef2e, 0x0, - 0x3fe1db0ddc4e7653, 0x0, - 0xbfa891f59d3a901b, 0x0, - 0xbfdfcb0268569113, 0x0, - 0xbfe51e6814ae3101, 0x0, - 0xbfe0b52bc5f50f64, 0x0, - 0xbfaa46072be61b8e, 0x0, - 0x3fdf89aa4db04b1b, 0x0, - 0x3fe6e964cb14ee6f, 0x0, - 0x3fdf13d2a84f7389, 0x0, - 0x3f9b0462770248da, 0x0, - 0xbfde523506eb08c2, 0x0, - 0xbfe617e5b8f0d680, 0x0, - 0xbfe26277b868dd52, 0x0, - 0xbf8b18775dd1f763, 0x0, - 0x3fddbc103495d1f0, 0x0, - 0x3fe71781608e4b4c, 0x0, - 0x3fe24891acbba81a, 0x0, - 0xbf93a493d5e6ca2e, 0x0, - 0xbfe1516135447cdb, 0x0, - 0xbfe3e6ddd3853bdb, 0x0, - 0xbfe2812f4a51d2aa, 0x0, - 0x3f66d4d3b9cf9f3a, 0x0, - 0x3fe035585107db4f, 0x0, - 0x3fe88dc151ac43fa, 0x0, - 0x3fdc5e49fdf66c32, 0x0, - 0xbfab04d3caf51765, 0x0, - 0xbfde5536dfd51305, 0x0, - 0xbfe9ccab46fad727, 0x0, - 0xbfe0ac73feb321f9, 0x0, - 0xbfb79d7653d9aa4e, 0x0, - 0x3fe020ceccc7b336, 0x0, - 0x3fe6166522a340d9, 0x0, - 0x3fdb98b127587350, 0x0, - 0x3fa72491b5651f98, 0x0, - 0xbfddf2b63a395f4d, 0x0, - 0xbfe67ec222a40f93, 0x0, - 0xbfdc9c8fe4410b50, 0x0, - 0x3fb841c4a62be45d, 0x0, - 0x3fda7420c017472a, 0x0, - 0x3fe39fbe4559ee23, 0x0, - 0x3fdea4adb552fd7a, 0x0, - 0x3fa7dcc152d3c189, 0x0, - 0xbfe1f0812410a94c, 0x0, - 0xbfe8d38c7b95a0b0, 0x0, - 0xbfe17d0ea371fb25, 0x0, - 0xbfb221fbc3483dd1, 0x0, - 0x3fdf6e51756687da, 0x0, - 0x3fe6229d15ebf775, 0x0, - 0x3fdea4833b6a7a68, 0x0, - 0xbf99c5868f60e2f5, 0x0, - 0xbfdc8d810f4071c1, 0x0, - 0xbfe776a1005c9079, 0x0, - 0xbfdee6155adc48e3, 0x0, - 0xbfb23dde1363cecf, 0x0, - 0x3fe02b444b9b540a, 0x0, - 0x3fe74a65919eed9d, 0x0, - 0x3fe11a9536ed2446, 0x0, - 0xbf6037d319b50ff9, 0x0, - 0xbfe0354d2a1c9292, 0x0, - 0xbfe8872fd209ff97, 0x0, - 0xbfdd5586a87fcbc1, 0x0, - 0x3f652d861af05f9e, 0x0, - 0x3fe157269a62d704, 0x0, - 0x3fe597620d5f9b19, 0x0, - 0x3fdc83f9429a6776, 0x0, - 0xbfa26a15e6d2682d, 0x0, - 0xbfdbb010f2c4ca16, 0x0, - 0xbfe2df0d2186d1ac, 0x0, - 0xbfdf4fae092d3e86, 0x0, - 0xbfbce1625de0c400, 0x0, - 0x3fdb0ed2efe627f1, 0x0, - 0x3fe677f529af5402, 0x0, - 0x3fdc710563f66486, 0x0, - 0xbfb224273858d176, 0x0, - 0xbfe096c927fad375, 0x0, - 0xbfe34cb0fdb489b0, 0x0, - 0xbfe00859c379b547, 0x0, - 0xbfad69183dde875b, 0x0, - 0x3fe0221086206aa6, 0x0, - 0x3fe908669065ec1e, 0x0, - 0x3fd9de0709d8cbfa, 0x0, - 0xbf9837dd3a9b0ecd, 0x0, - 0xbfd8b56363b6990f, 0x0, - 0xbfe5e0a952da4609, 0x0, - 0xbfe1b8aff207901f, 0x0, - 0xbf842a0fdf25787e, 0x0, - 0x3fdf55f155648fbd, 0x0, - 0x3fe628ae56bdb3da, 0x0, - 0x3fdf9d746eb81cd2, 0x0, - 0xbfa114f58d9b3dc0, 0x0, - 0xbfe0e2e6cf2742c2, 0x0, - 0xbfe5c7de2e7294af, 0x0, - 0xbfe00cce75f4e58c, 0x0, - 0xbf9a67a8f9bac441, 0x0, - 0x3fe1579f77472c09, 0x0, - 0x3fe52d6b41a25a74, 0x0, - 0x3fe0521bcd3afbf0, 0x0, - 0x3fa002bd11c6d4b5, 0x0, - 0xbfe079e06e13be75, 0x0, - 0xbfe2f4fd593dc971, 0x0, - 0xbfe247247f6569a6, 0x0, - 0x3f985b250236d2d0, 0x0, - 0x3fe0893c8aec3016, 0x0, - 0x3fe73781ee7fe036, 0x0, - 0x3fe12223ec0655b8, 0x0, - 0x3fa27ce7d6de17f4, 0x0, - 0xbfe27d2700021496, 0x0, - 0xbfe61dc927d24c9c, 0x0, - 0xbfe0ddf0963101ce, 0x0, - 0x3f1d82f8763e1e5b, 0x0, - 0x3fe0241eef11f125, 0x0, - 0x3fe665911d8bb452, 0x0, - 0x3fddabaec8e8d429, 0x0, - 0x3fb0968bbb316cbb, 0x0, - 0xbfe0382aac99bf55, 0x0, - 0xbfe50bad1fc4aef4, 0x0, - 0xbfdd0d92191e8ba6, 0x0, - 0xbf990e0f2d062d57, 0x0, - 0x3fd6fd11caa887f8, 0x0, - 0x3fe63198d516fb4f, 0x0, - 0x3fe055ca91bb25ed, 0x0, - 0x3f8cd20a850b1d88, 0x0, - 0xbfe1528e8b66ea13, 0x0, - 0xbfe5ad63c6f0dc81, 0x0, - 0xbfe1e00bfe938632, 0x0, - 0xbf9494f9eddfe0a5, 0x0, - 0x3fddb42fb7de50fa, 0x0, - 0x3fe432dd95772ffe, 0x0, - 0x3fdcf2b6c54d4e7a, 0x0, - 0x3fb0a3ff72a9ce10, 0x0, - 0xbfe093a2f5fe5ef8, 0x0, - 0xbfe7ecf4f79ab2c5, 0x0, - 0xbfdfa2eedf3bad4b, 0x0, - 0x3fb47806d0b79824, 0x0, - 0x3fdd9f1809a4bde9, 0x0, - 0x3fe3f29069f21648, 0x0, - 0x3fdfc1992d332457, 0x0, - 0x3fbb94c643aabd9c, 0x0, - 0xbfdc8f3436f53f4d, 0x0, - 0xbfe466b76fc3cdb7, 0x0, - 0xbfde5c049c1030e2, 0x0, - 0xbf928712f05f26c3, 0x0, - 0x3fda4d480a736575, 0x0, - 0x3fe7d98da1d34792, 0x0, - 0x3fe0dfab9c2a2765, 0x0, - 0x3f940a589537b1a3, 0x0, - 0xbfe22e3850d3a6dc, 0x0, - 0xbfe735dda7df289e, 0x0, - 0xbfd9ad7f1340c2cc, 0x0, - 0x3f83eace3b74b22c, 0x0, - 0x3fdad041d5b46dea, 0x0, - 0x3fe6d9705da18874, 0x0, - 0x3fe1569144fe08fd, 0x0, - 0x3f6d462b05438d66, 0x0, - 0xbfe1aff1a962e125, 0x0, - 0xbfe743dbcf59cf60, 0x0, - 0xbfdfc57d12629b8f, 0x0, - 0xbf843746fcede86b, 0x0, - 0x3fdc839efad57fba, 0x0, - 0x3fe4ea51593325cb, 0x0, - 0x3fdf6cd24de1ac1b, 0x0, - 0x3fb88503f99ff789, 0x0, - 0xbfdd0b73f0713c7a, 0x0, - 0xbfe56364066b741f, 0x0, - 0xbfdf646e22ab5c8c, 0x0, - 0xbfa51f616f29152e, 0x0, - 0x3fdb07278907a646, 0x0, - 0x3fe3094928566d26, 0x0, - 0x3fdfe80bbb1bfe91, 0x0, - 0xbfa083374c2e089d, 0x0, - 0xbfdec8448a2d7a88, 0x0, - 0xbfe6c09ede440ee1, 0x0, - 0xbfda449d34ec936f, 0x0, - 0xbf7848e781b203e7, 0x0, - 0x3fe0cafd041b060f, 0x0, - 0x3fe6554a5b2b724e, 0x0, - 0x3fe31e27c73651d6, 0x0, - 0x3f8d22c8b549b31b, 0x0, - 0xbfdcbbd0b4c28cca, 0x0, - 0xbfe70ce252ecdae2, 0x0, - 0xbfe04acf6587c71a, 0x0, - 0x3f971928bfff93b2, 0x0, - 0x3fdd662a66a8124c, 0x0, - 0x3fe7702ddc76b3aa, 0x0, - 0x3fe02996a91db3ba, 0x0, - 0xbfc0947e232df48f, 0x0, - 0xbfda740b386c7c55, 0x0, - 0xbfe5a5b5ad7df89d, 0x0, - 0xbfdf4d9c574d5ac8, 0x0, - 0xbfa0d05897f00baa, 0x0, - 0x3fdf058ef51c0083, 0x0, - 0x3fe76d7d6d2e53db, 0x0, - 0x3fe049c0f50975db, 0x0, - 0x3fa5099f1755456b, 0x0, - 0xbfe0b68f4b0c9aa2, 0x0, - 0xbfe66950a2b8f170, 0x0, - 0xbfe1d345c923e0a5, 0x0, - 0xbf95bf9721f249be, 0x0, - 0x3fdea160006756aa, 0x0, - 0x3fe8802e3c6b00e2, 0x0, - 0x3fde720e6b4d4fc6, 0x0, - 0xbfc414712cb7612a, 0x0, - 0xbfdede2f8a296185, 0x0, - 0xbfe753cc68cdc783, 0x0, - 0xbfdc12cdccf1159c, 0x0, - 0xbfa4595fd6f2d804, 0x0, - 0x3fde4f0a01186614, 0x0, - 0x3fe8624d1ff6decd, 0x0, - 0x3fde9f2623dc0616, 0x0, - 0xbf4317b4de0dc850, 0x0, - 0xbfe0fafa104827cb, 0x0, - 0xbfe6b90aae324ca1, 0x0, - 0xbfe07f614ebf2dc7, 0x0, - 0x3fb752f0d0b78173, 0x0, - 0x3fdf16ba4dcfe5c2, 0x0, - 0x3fe4f7a798347a70, 0x0, - 0x3fdd1e3bd3d604dd, 0x0, - 0x3fb6b3c1675060e4, 0x0, - 0xbfde555f73e11aa5, 0x0, - 0xbfe678c2064590bf, 0x0, - 0xbfdba13b308575cf, 0x0, - 0x3f9176c91d0d8d07, 0x0, - 0x3fe395b2bd676a24, 0x0, - 0x3fe39f2ecf25cf40, 0x0, - 0x3fe0da7b9e493998, 0x0, - 0x3f9bf4b43ba22ed5, 0x0, - 0xbfdd7c51b9fa0740, 0x0, - 0xbfe792e1e5905a9f, 0x0, - 0xbfde6d542afa5049, 0x0, - 0xbfa54e8fd5b7a0d6, 0x0, - 0x3fe129337f76bd0a, 0x0, - 0x3fe7ef218f419137, 0x0, - 0x3fdff7ffc1ec4536, 0x0, - 0x3f65183fe4c83b40, 0x0, - 0xbfdd2703bf239412, 0x0, - 0xbfe8eec18ec17d44, 0x0, - 0xbfdd4fd559a9599f, 0x0, - 0xbfaea82f4891573c, 0x0, - 0x3fe045f0efd0d31f, 0x0, - 0x3fe79f895a42ec83, 0x0, - 0x3fe0126cab0992d0, 0x0, - 0xbf89eb500ab44414, 0x0, - 0xbfdf5f3d75c27b8f, 0x0, - 0xbfe51553cc5d2c45, 0x0, - 0xbfe1175b8880f933, 0x0, - 0xbf900330b52bef21, 0x0, - 0x3fdd278b618bcd66, 0x0, - 0x3fe6a14d2ab25baf, 0x0, - 0x3fd988a91d81797b, 0x0, - 0x3f7b9be3e8487442, 0x0, - 0xbfe3749107c3b4ea, 0x0, - 0xbfe424a544ff3a66, 0x0, - 0xbfdadb1e6efa3b60, 0x0, - 0xbf934f9fd1006e92, 0x0, - 0x3fdf9da228dea357, 0x0, - 0x3fe7170117f54a63, 0x0, - 0x3fdf4f770e04dba3, 0x0, - 0xbfa79f9106e40962, 0x0, - 0xbfe0486fb83f034a, 0x0, - 0xbfea06bc6d776db7, 0x0, - 0xbfe1e81a0744aa7e, 0x0, - 0xbf9c2377272d45d6, 0x0, - 0x3fde9741d83a97da, 0x0, - 0x3fe8404531293965, 0x0, - 0x3fe0acef5dd1fc9b, 0x0, - 0xbf6c8e43de5564b7, 0x0, - 0xbfdac6a15f4c8056, 0x0, - 0xbfe6befe26475b0a, 0x0, - 0xbfdc7b168e0fb2ec, 0x0, - 0xbfa115664860e29d, 0x0, - 0x3fe01370992250e7, 0x0, - 0x3fe97db232d97377, 0x0, - 0x3fe36d07c85881e8, 0x0, - 0xbf73d7431c81e405, 0x0, - 0xbfdf3d2d91772e1c, 0x0, - 0xbfe578b3238fe622, 0x0, - 0xbfe033b00c417b43, 0x0, - 0x3fa303b97dc950e8, 0x0, - 0x3fd7280799192c12, 0x0, - 0x3fe92679ed952920, 0x0, - 0x3fe0207a65897b34, 0x0, - 0xbfad774d54d4ef44, 0x0, - 0xbfe222bb17be2674, 0x0, - 0xbfe585084a8e4096, 0x0, - 0xbfe1d3e892aca584, 0x0, - 0xbf7225430c746d5f, 0x0, - 0x3fe16bd6ba93cf3f, 0x0, - 0x3fe3b327052490da, 0x0, - 0x3fe0029fd69b1e48, 0x0, - 0x3f696513e6cdcded, 0x0, - 0xbfde3057bb7d55b4, 0x0, - 0xbfe686f6904d60e4, 0x0, - 0xbfde01b95b30da49, 0x0, - 0xbfbbe3bc298b43cd, 0x0, - 0x3fe173d21abd9fa7, 0x0, - 0x3fe3c65a601e27d4, 0x0, - 0x3fdeba438337c51b, 0x0, - 0xbf71aef6209a9c69, 0x0, - 0xbfdbae441ef72240, 0x0, - 0xbfe657e2798abbc7, 0x0, - 0xbfe147ad225c5afd, 0x0, - 0x3faa0f9c25dab760, 0x0, - 0x3fdc3dc4e6a29ce6, 0x0, - 0x3fe8f8bc7e43152c, 0x0, - 0x3fddc09de790b892, 0x0, - 0x3f9663dd05f285b0, 0x0, - 0xbfe084f0ac2d2834, 0x0, - 0xbfe7097839c4ab62, 0x0, - 0xbfe1ed60fb34792b, 0x0, - 0xbfaba45db9737e88, 0x0, - 0x3fe0ac279cb1c18c, 0x0, - 0x3fe5f50d0ec9cffb, 0x0, - 0x3fda54be9cc04b97, 0x0, - 0x3fb28646485520b6, 0x0, - 0xbfde1737a0a41f3a, 0x0, - 0xbfe31441121515a2, 0x0, - 0xbfdcfc9f57c0eca1, 0x0, - 0xbf98ce2ba664aaec, 0x0, - 0x3fe010b74ccee22a, 0x0, - 0x3fe5e503a0c8e08a, 0x0, - 0x3fe1d4828ee94706, 0x0, - 0xbfad1c23c71cdc76, 0x0, - 0xbfdf837173bb130e, 0x0, - 0xbfe8ab473c074580, 0x0, - 0xbfdf6cc174a61c1e, 0x0, - 0xbfb8f5b8dc32512e, 0x0, - 0x3fe2082c022eadf6, 0x0, - 0x3fe683f408a569e4, 0x0, - 0x3fe1a59de71ff304, 0x0, - 0xbf94ff77f2a9381d, 0x0, - 0xbfe25fd5147424ed, 0x0, - 0xbfe8a1d9ecdd5639, 0x0, - 0xbfe0d5536becffba, 0x0, - 0xbf8c5b1b2e4f3d8b, 0x0, - 0x3fdc05e1f5136b40, 0x0, - 0x3fe5dff5fe9aa2af, 0x0, - 0x3fe14303b9bb7606, 0x0, - 0x3fab14dea1be74b9, 0x0, - 0xbfe29798de27caf4, 0x0, - 0xbfe778aca5a7dfe1, 0x0, - 0xbfdbe75f6b3c4043, 0x0, - 0x3fa7284dfcd450b5, 0x0, - 0x3fda96399eee0970, 0x0, - 0x3fe61f4dbd5ad461, 0x0, - 0x3fde955452b73d58, 0x0, - 0xbf9495c3b8ce330a, 0x0, - 0xbfe0c54f28d2f388, 0x0, - 0xbfe74dea9caa8738, 0x0, - 0xbfe2782dcbd26572, 0x0, - 0x3f8049ea67525871, 0x0, - 0x3fe0f188688d0c6c, 0x0, - 0x3fe6a8b6c5a6cfc7, 0x0, - 0x3fdbe20e88aad1f8, 0x0, - 0xbf9842ffa0ac7cec, 0x0, - 0xbfe084a26f298c43, 0x0, - 0xbfe7de0e8a02bb6e, 0x0, - 0xbfde1535d04f50cc, 0x0, - 0xbf9c29bb819c2d3f, 0x0, - 0x3fdfb9a7d22c095b, 0x0, - 0x3fe79317e27c5a74, 0x0, - 0x3fdfb0bbb7277ab9, 0x0, - 0x3f74dc9410b1a57c, 0x0, - 0xbfe1413b0eb76a51, 0x0, - 0xbfe6627f44c6d102, 0x0, - 0xbfe0c9b85f653164, 0x0, - 0xbfbf4efd73d7ec82, 0x0, - 0x3fdb759f34a6ca78, 0x0, - 0x3fe6d002dbb9c35f, 0x0, - 0x3fe1b747601745ae, 0x0, - 0x3fb0322d8ef7e6aa, 0x0, - 0xbfe12c851260814b, 0x0, - 0xbfe6486ad0929159, 0x0, - 0xbfe1b2f9ff390091, 0x0, - 0x3fa0eee51c1d4ce7, 0x0, - 0x3fdd923984364f2f, 0x0, - 0x3fe71e21374728f2, 0x0, - 0x3fdc9d88ef96d85a, 0x0, - 0x3fbc913813f85da4, 0x0, - 0xbfdf481419ec70d6, 0x0, - 0xbfe507422655ae28, 0x0, - 0xbfde62da05372e48, 0x0, - 0xbf92144d59b80cbd, 0x0, - 0x3fdc04e2f0f33ed2, 0x0, - 0x3fe85112776c410d, 0x0, - 0x3fe1c22dbb1c305e, 0x0, - 0xbfa3f0bfb967d042, 0x0, - 0xbfe36a937afb4aaf, 0x0, - 0xbfe71db636c7f9aa, 0x0, - 0xbfde3296ddb85be1, 0x0, - 0xbf9ad63e04cf0f1f, 0x0, - 0x3fdc6338c3f32a49, 0x0, - 0x3fe5dba91b8205fe, 0x0, - 0x3fdc6eac691286ff, 0x0, - 0xbfb109db10bd8d77, 0x0, - 0xbfe0398b8244810e, 0x0, - 0xbfe77a7e68703c3e, 0x0, - 0xbfe295cfca70f876, 0x0, - 0xbfb1e321f37158cb, 0x0, - 0x3fe12286f2b0433c, 0x0, - 0x3fe6be8e332685c2, 0x0, - 0x3fda31493312fa76, 0x0, - 0x3fb28f0689d7dd1d, 0x0, - 0xbfe0095c0e041605, 0x0, - 0xbfe8c06ca53259e1, 0x0, - 0xbfe16cf14d3b79a7, 0x0, - 0xbf6be6289c915d7d, 0x0, - 0x3fdb51d24442a950, 0x0, - 0x3fe4dd0548139e7d, 0x0, - 0x3fdbe4116bb621ee, 0x0, - 0xbf982a4024420449, 0x0, - 0xbfe0e01f97346990, 0x0, - 0xbfe67339e01e3b07, 0x0, - 0xbfde9f8086f47a4b, 0x0, - 0xbfc09d3b99f3371c, 0x0, - 0x3fdce158d933dc50, 0x0, - 0x3fe58c6d756c4339, 0x0, - 0x3fe0625811cd84ba, 0x0, - 0x3fa963ef189bbc85, 0x0, - 0xbfdf09bb88b19171, 0x0, - 0xbfe6dc8f930d1e8e, 0x0, - 0xbfe1c9af994847e0, 0x0, - 0x3f85b5b7bf999000, 0x0, - 0x3fe219f34f00ced0, 0x0, - 0x3fe51f475da89e7a, 0x0, - 0x3fdc62678d0e0cc8, 0x0, - 0xbf93950f04a9e556, 0x0, - 0xbfdf1073d38df21c, 0x0, - 0xbfe9f130e92c31e0, 0x0, - 0xbfe25c96ee711f16, 0x0, - 0xbf92c5667c1aaad4, 0x0, - 0x3fe124f09cf1a619, 0x0, - 0x3fe859ba7e9bd76a, 0x0, - 0x3fdd380217101416, 0x0, - 0xbf9ad2cca773fdcb, 0x0, - 0xbfdfd3f08b65f3b5, 0x0, - 0xbfe57c33841ebee4, 0x0, - 0xbfe13c65f7e0ba5c, 0x0, - 0xbfb104c5b143399d, 0x0, - 0x3fe0da44d4a2a3f7, 0x0, - 0x3fe784a9b532864a, 0x0, - 0x3fdefa0aeb246c83, 0x0, - 0xbfa50206d1580782, 0x0, - 0xbfdceb7bd1d1fa70, 0x0, - 0xbfe474b5fe24d034, 0x0, - 0xbfde64790895449c, 0x0, - 0x3fa8f66d9d154455, 0x0, - 0x3fdb509eec7972d2, 0x0, - 0x3fe5b1eed5b8a984, 0x0, - 0x3fe021017294a7a7, 0x0, - 0x3fa8ce4a8d6c2725, 0x0, - 0xbfde70637a830ea5, 0x0, - 0xbfe4cd3ac5798a80, 0x0, - 0xbfe165d6d4574434, 0x0, - 0xbfa1831d89c14ede, 0x0, - 0x3fdd733c75b034c0, 0x0, - 0x3fe540361db47fdb, 0x0, - 0x3fded5fbac88c7c0, 0x0, - 0x3fa24feb66565bc1, 0x0, - 0xbfe0cb3f7397069f, 0x0, - 0xbfe5d5d492c89b0a, 0x0, - 0xbfdcfd577668b700, 0x0, - 0x3f95f94bb879ac67, 0x0, - 0x3fdbeff897cf1d18, 0x0, - 0x3fe56d8d51d194c6, 0x0, - 0x3fdde77dc004b9de, 0x0, - 0x3f9459aa6221d4c8, 0x0, - 0xbfe0845714d7360a, 0x0, - 0xbfe58ca82144c8f5, 0x0, - 0xbfdfaba3c51ae250, 0x0, - 0xbfb419c76d7bdb72, 0x0, - 0x3fe17b037d98f74e, 0x0, - 0x3fe553455a71277d, 0x0, - 0x3fe0baaaf5c29137, 0x0, - 0x3f98df68703b6dd9, 0x0, - 0xbfe09b4b3bfd12cf, 0x0, - 0xbfe7f3f3ca294dd0, 0x0, - 0xbfe250671a9319ec, 0x0, - 0xbf98c4be4d47eae7, 0x0, - 0x3fdd8fa5cdef261e, 0x0, - 0x3fe49259265b2248, 0x0, - 0x3fe28710e1897245, 0x0, - 0x3fb34cc74ba6c8ab, 0x0, - 0xbfe0b4e152669d6a, 0x0, - 0xbfe29a85f4fdf373, 0x0, - 0xbfdeb57978773023, 0x0, - 0xbfa13e36e8a309c8, 0x0, - 0x3fe1c0476f38c23e, 0x0, - 0x3fea668417576ccc, 0x0, - 0x3fe089ac7a924ba5, 0x0, - 0x3fa549b0b31a1e40, 0x0, - 0xbfe0a58c8c9e9e11, 0x0, - 0xbfe6cdb7af712d32, 0x0, - 0xbfe198d2bcab5912, 0x0, - 0xbfa12cebb03af149, 0x0, - 0x3fdcf913cd8fd66c, 0x0, - 0x3fe71b66d86e1a43, 0x0, - 0x3fde2209cf3ec507, 0x0, - 0xbf72e5a07275a810, 0x0, - 0xbfe12425a1236268, 0x0, - 0xbfe95f2afe4258ee, 0x0, - 0xbfe1b65c6a54b470, 0x0, - 0xbfa8ad370367ae9f, 0x0, - 0x3fe070bb8ac95f57, 0x0, - 0x3fe49becff0032cf, 0x0, - 0x3fe01f8e1e40168a, 0x0, - 0xbf3deb74937ea945, 0x0, - 0xbfdb89ce3e1ef4f0, 0x0, - 0xbfe4ccdbd503d416, 0x0, - 0xbfe147dfa376e13f, 0x0, - 0x3fb55d33e7ba6987, 0x0, - 0x3fe01ddbc766dd73, 0x0, - 0x3fe9634981ff02b0, 0x0, - 0x3fdf85665864200e, 0x0, - 0x3f9b8fdfcb4908e1, 0x0, - 0xbfde58a216662fc7, 0x0, - 0xbfe6b145d9951ff5, 0x0, - 0xbfe13a255855875e, 0x0, - 0x3face7913457a693, 0x0, - 0x3fde54df346e4a16, 0x0, - 0x3fe5b0a63b9f82db, 0x0, - 0x3fdcd227269739a1, 0x0, - 0xbfac1299a6595c36, 0x0, - 0xbfdb3d1815bad253, 0x0, - 0xbfe639f089718c79, 0x0, - 0xbfe045e078bffddb, 0x0, - 0x3fa55dba7bd694e0, 0x0, - 0x3fe12068eb59b452, 0x0, - 0x3fe84d7eb57df73a, 0x0, - 0x3fdbfd8a4300e926, 0x0, - 0xbfa98d0e8d5d0ea3, 0x0, - 0xbfdfb8f33475d6d0, 0x0, - 0xbfe689881a5c4174, 0x0, - 0xbfdf5fcb02db5e3e, 0x0, - 0x3faa7668d227c84d, 0x0, - 0x3fe24aa63aff4a6c, 0x0, - 0x3fe620c9f20118a6, 0x0, - 0x3fe07b60b6ad2cfb, 0x0, - 0xbfb16b6bce6ef111, 0x0, - 0xbfe1e42113dda396, 0x0, - 0xbfe26993cdfd4f26, 0x0, - 0xbfdf829fc419047b, 0x0, - 0x3fa7ceb02c8beee9, 0x0, - 0x3fde3ba577bbd07a, 0x0, - 0x3fe70faa91f78872, 0x0, - 0x3fded01acc60a185, 0x0, - 0xbfa0b52769b9d320, 0x0, - 0xbfdc8523340f1326, 0x0, - 0xbfe8f0260ca18a78, 0x0, - 0xbfe1b8ce718f109c, 0x0, - 0x3f6c5fb59a44b991, 0x0, - 0x3fdc518c308f2693, 0x0, - 0x3fe74fbe6da210a4, 0x0, - 0x3fde838ce4fc6cb6, 0x0, - 0x3f71b7d1b78135bf, 0x0, - 0xbfe0e791258e5cf1, 0x0, - 0xbfe5407c921c75f0, 0x0, - 0xbfdd1ea1e91b4562, 0x0, - 0xbfb33f2c371b0b6a, 0x0, - 0x3fd8f2a5de9ee2ea, 0x0, - 0x3fe77bf9184c2539, 0x0, - 0x3fdfa58839893863, 0x0, - 0xbf37ea6656ab3be6, 0x0, - 0xbfe19bcf53a7d674, 0x0, - 0xbfe57d2fea956436, 0x0, - 0xbfdd637e178d659e, 0x0, - 0xbf9de3a84dafb225, 0x0, - 0x3fdfb22d6155c819, 0x0, - 0x3fe6c6f29e5d2879, 0x0, - 0x3fdec29270462b57, 0x0, - 0x3fc30b876e43ded5, 0x0, - 0xbfe475e0d33f399b, 0x0, - 0xbfe7f233828649f9, 0x0, - 0xbfe0394602fdbbcd, 0x0, - 0xbf9d03d3dbe73de7, 0x0, - 0x3fe1a11975fc91e3, 0x0, - 0x3fe7c00a1199de37, 0x0, - 0x3fdf343e6ada2653, 0x0, - 0xbf7017342f98955b, 0x0, - 0xbfdbbb939b9e9100, 0x0, - 0xbfe66a9006bffae2, 0x0, - 0xbfe201a492c414d7, 0x0, - 0x3f50290d68eaec95, 0x0, - 0x3fe2e5211cbaead3, 0x0, - 0x3fea06d810db322c, 0x0, - 0x3fe209a8ecafb9c3, 0x0, - 0x3fad32dac70f12a7, 0x0, - 0xbfdddfa669df1530, 0x0, - 0xbfe56762558382a9, 0x0, - 0xbfdf15eba44081ea, 0x0, - 0x3f922b29cfb81cea, 0x0, - 0x3fdc37f8c01ba4f2, 0x0, - 0x3fe851c963ae3bdb, 0x0, - 0x3fe041cf63e2741a, 0x0, - 0x3fb30d493ff1b14c, 0x0, - 0xbfdf472af4823c7c, 0x0, - 0xbfe7d86ef52dc104, 0x0, - 0xbfe0071bec66121e, 0x0, - 0xbfaa065dcb3a00ac, 0x0, - 0x3fdfbaed681d9e96, 0x0, - 0x3fe5f91a5d21d4e4, 0x0, - 0x3fde58493c4ec719, 0x0, - 0xbfb75b81f7b94041, 0x0, - 0xbfe09a122402b82f, 0x0, - 0xbfe44a87c2b0270d, 0x0, - 0xbfdba4a2512dba8a, 0x0, - 0x3fa46b52d07c2256, 0x0, - 0x3fdf657fa0eb7bff, 0x0, - 0x3fe5b180c3ce16e2, 0x0, - 0x3fdfc52e4e827774, 0x0, - 0xbfa27bd481f00646, 0x0, - 0xbfe09ea500f58ab7, 0x0, - 0xbfe52488cb838bd3, 0x0, - 0xbfd9ed100a10d3a6, 0x0, - 0xbfa18a848e4c40b7, 0x0, - 0x3fdea0f56bd8d920, 0x0, - 0x3fe82c7e6d4e8c8f, 0x0, - 0x3fe1564f5eb45592, 0x0, - 0x3f97052b99cfc704, 0x0, - 0xbfdd97a4b345b111, 0x0, - 0xbfe4887eac561617, 0x0, - 0xbfe08b6c0a790f3e, 0x0, - 0x3fb1668cea3f8718, 0x0, - 0x3fdd037afdeed608, 0x0, - 0x3fe7f15c52c02741, 0x0, - 0x3fdc2c5976989b4f, 0x0, - 0x3f905789527a8c8c, 0x0, - 0xbfe322a1226b8422, 0x0, - 0xbfe5d54d9b7dae56, 0x0, - 0xbfdeb63377fd9e42, 0x0, - 0x3f9446ba6b61e190, 0x0, - 0x3fe3748661c97a5c, 0x0, - 0x3fe5f22b314e3c01, 0x0, - 0x3fdd71bc96e99321, 0x0, - 0xbf4b8dd206c81d34, 0x0, - 0xbfe05fb9fbd7d374, 0x0, - 0xbfe69f1872d2db26, 0x0, - 0xbfda3554f7491ec7, 0x0, - 0xbf9cf06cae71210b, 0x0, - 0x3fde835a8fe9bb14, 0x0, - 0x3fe4d05695d1261a, 0x0, - 0x3fdf93638c5e6f75, 0x0, - 0xbfa8552988b369c8, 0x0, - 0xbfe0ee11cb02b200, 0x0, - 0xbfea9a4987706dbe, 0x0, - 0xbfdd85238d7f41b3, 0x0, - 0xbf840139a2a7bb51, 0x0, - 0x3fe12fc5e0c7167e, 0x0, - 0x3fe61ff3a825107a, 0x0, - 0x3fdec4c2da2bcf4b, 0x0, - 0x3fa11acfaa4b5987, 0x0, - 0xbfe0dbfcfe656de5, 0x0, - 0xbfe663b7b21f1c7e, 0x0, - 0xbfdfa21b6b70e492, 0x0, - 0xbfa9c55a229cd521, 0x0, - 0x3fde851212eeb951, 0x0, - 0x3fe839e7ecab6e72, 0x0, - 0x3fe07118611840d6, 0x0, - 0x3fb6b781c1c48830, 0x0, - 0xbfde74c481d612bf, 0x0, - 0xbfe59d8cc236fba0, 0x0, - 0xbfe115d10a79711c, 0x0, - 0x3f953a69fa0f1503, 0x0, - 0x3fdec5df40e66aa3, 0x0, - 0x3fe54d3a7a5aeebd, 0x0, - 0x3fdc00e5f8f0ca49, 0x0, - 0x3fa9f48188f732bb, 0x0, - 0xbfda9dce05e8dcfb, 0x0, - 0xbfe45c831ce396f4, 0x0, - 0xbfde37323390892d, 0x0, - 0xbf94f80f4cdf41e1, 0x0, - 0x3fdfbd2fc6579949, 0x0, - 0x3fe54a218a145293, 0x0, - 0x3fdc5fe1548ac378, 0x0, - 0x3f8fae5462167cb2, 0x0, - 0xbfdcfbe7b1335a81, 0x0, - 0xbfe70ae5a0a3ce47, 0x0, - 0xbfe1961b4d70861c, 0x0, - 0xbf9074377707670c, 0x0, - 0x3fe2671fe4d0108e, 0x0, - 0x3fe5870704ce754f, 0x0, - 0x3fe0c4b1dbf5dce6, 0x0, - 0x3fba0ab9ba47fdaf, 0x0, - 0xbfde8c5a5823d638, 0x0, - 0xbfe6204ca73d7458, 0x0, - 0xbfe1816b6c2482f0, 0x0, - 0x3fa856945a7c428d, 0x0, - 0x3fdd59cd485c92c9, 0x0, - 0x3fe5ec28f9c078b4, 0x0, - 0x3fe0bb513c89fb3a, 0x0, - 0x3fa979108f26d4db, 0x0, - 0xbfe10c70ad53067b, 0x0, - 0xbfe67a0efbb613e6, 0x0, - 0xbfdf01ecb49c5e60, 0x0, - 0x3f98c64e45c42d89, 0x0, - 0x3fdb995744ed6d66, 0x0, - 0x3fe5e78cffe79ab7, 0x0, - 0x3fe19583eab1e15d, 0x0, - 0x3fb01b70e59a856a, 0x0, - 0xbfe29e9f0a69a81a, 0x0, - 0xbfe83bb3f95232c4, 0x0, - 0xbfd982fe310eb353, 0x0, - 0xbfb21b11aa6713c3, 0x0, - 0x3fe1361afe10f721, 0x0, - 0x3fe4441d5bcb9847, 0x0, - 0x3fdc7c244355acb1, 0x0, - 0x3f7bcc3b6ae3a57a, 0x0, - 0xbfdcb59b6394de88, 0x0, - 0xbfe698ed148d57a4, 0x0, - 0xbfe14e0a986c58f0, 0x0, - 0xbf93cc29ca94fd4a, 0x0, - 0x3fe1c64e8beabee8, 0x0, - 0x3fe7979dd58389bb, 0x0, - 0x3fddeb9a21045a0a, 0x0, - 0x3facc4d7bb698a08, 0x0, - 0xbfe0b052712e3023, 0x0, - 0xbfe374043fbbfc04, 0x0, - 0xbfe322a90638a346, 0x0, - 0x3fae6509719e720c, 0x0, - 0x3fdbe68c514b4fd1, 0x0, - 0x3fe83e69d3f4ea51, 0x0, - 0x3fde7493287792ec, 0x0, - 0x3f9fa33a1e839c35, 0x0, - 0xbfe297a5b1672f51, 0x0, - 0xbfe6b561f94763f7, 0x0, - 0xbfde6664c30d57b1, 0x0, - 0x3f90d5d5d48830b7, 0x0, - 0x3fe29603b9d59ae7, 0x0, - 0x3fe3cfaa72779420, 0x0, - 0x3fdf363a5332e35a, 0x0, - 0xbfb3a1a922ae1612, 0x0, - 0xbfde105e646c277d, 0x0, - 0xbfe77366b2e31eaa, 0x0, - 0xbfe1e9f6af62bc64, 0x0, - 0x3f9b571bdd0fe549, 0x0, - 0x3fdd55c915ac4eb4, 0x0, - 0x3fe7069dc9437c1e, 0x0, - 0x3fdeed129b63b6d3, 0x0, - 0x3f927085670ae943, 0x0, - 0xbfe059036fbad7f4, 0x0, - 0xbfe5bffc6448b29b, 0x0, - 0xbfdcf31ff3034d62, 0x0, - 0xbfa004ee426710b4, 0x0, - 0x3fddd245d8bc10e1, 0x0, - 0x3fe58f7aa45588f5, 0x0, - 0x3fe157d64cdf2764, 0x0, - 0xbf7dbf4c7d5eda4f, 0x0, - 0xbfdeb71c85974ef5, 0x0, - 0xbfe795b676d9d511, 0x0, - 0xbfe2e307890d98d3, 0x0, - 0xbfb199613786121b, 0x0, - 0x3fdd57a862f46564, 0x0, - 0x3fe656c5236474e7, 0x0, - 0x3fde48babb5256df, 0x0, - 0xbfa2fcfaa3a65a7e, 0x0, - 0xbfe27d21e5f9b95d, 0x0, - 0xbfe89f8b16f1ade6, 0x0, - 0xbfe14ddde115da1f, 0x0, - 0xbfa0c6b15b3c33c3, 0x0, - 0x3fdda79e3ae73d77, 0x0, - 0x3fe2f47e02fa0a9a, 0x0, - 0x3fe21ebdb04b5733, 0x0, - 0xbf669241b841b52d, 0x0, - 0xbfdef909ebe5e888, 0x0, - 0xbfe6f31d05effdf9, 0x0, - 0xbfe0d92c5e3f2315, 0x0, - 0xbf71d9c84e7a5d0f, 0x0, - 0x3fde3f53842b9b40, 0x0, - 0x3fe9979fc42733be, 0x0, - 0x3fdef7933dd37b7e, 0x0, - 0xbfb5f5d0b2d7dad3, 0x0, - 0xbfe0b25a92c0ca6d, 0x0, - 0xbfe7b0ba847b7add, 0x0, - 0xbfe1a486ced581f7, 0x0, - 0x3f8e08d53bacc7fb, 0x0, - 0x3fda788a88f50f92, 0x0, - 0x3fe48a612d09d55b, 0x0, - 0x3fe0d3dfe3326ef5, 0x0, - 0xbf56bc1efb8a0a90, 0x0, - 0xbfe02918b6daff24, 0x0, - 0xbfe6d8c06502cb8b, 0x0, - 0xbfdfb8bc1cce644c, 0x0, - 0x3f72e92c943098b5, 0x0, - 0x3fdef00307744674, 0x0, - 0x3fe4a0527b0c76bb, 0x0, - 0x3fde4ae938351562, 0x0, - 0x3faf0d6a9af88c12, 0x0, - 0xbfdd706aebe0e80b, 0x0, - 0xbfe50acf9ad8c0eb, 0x0, - 0xbfdea61e850c1e71, 0x0, - 0xbf760823ed791544, 0x0, - 0x3fdd843e85a19de2, 0x0, - 0x3fe59a508a2c2e8a, 0x0, - 0x3fe07a3e69f66b3c, 0x0, - 0x3f6150c9e15cb28f, 0x0, - 0xbfe284843f0509c0, 0x0, - 0xbfe46263947349ca, 0x0, - 0xbfdde7eddbcf4195, 0x0, - 0x3fa0eff0102278e1, 0x0, - 0x3fdf8b93a17a94db, 0x0, - 0x3fe71d7af9345524, 0x0, - 0x3fdec73c4900c1e3, 0x0, - 0xbfb2b4aadc250016, 0x0, - 0xbfdd1f1429094d2d, 0x0, - 0xbfe6520c5e4b671b, 0x0, - 0xbfdccab787cd4b8f, 0x0, - 0x3fa2228f89b59627, 0x0, - 0x3fe1125b1fd7bc1a, 0x0, - 0x3fe87d2212644da8, 0x0, - 0x3fe219aa54363057, 0x0, - 0x3fa0d5daa32bdeb0, 0x0, - 0xbfe0634e63320105, 0x0, - 0xbfe608930bee236e, 0x0, - 0xbfdedfd8e8989969, 0x0, - 0x3fa1c305e669503d, 0x0, - 0x3fdd208d281022c0, 0x0, - 0x3fe71cf230634722, 0x0, - 0x3fdf30440a2fe252, 0x0, - 0xbf831fa3047f7a56, 0x0, - 0xbfe1dbce06f371de, 0x0, - 0xbfe6d78cac260d92, 0x0, - 0xbfde93cbb859e327, 0x0, - 0xbfa70a61ca184e52, 0x0, - 0x3fde39b61a491471, 0x0, - 0x3fe759b84e79ade3, 0x0, - 0x3fddfb5aa65a6f60, 0x0, - 0xbf99155211523441, 0x0, - 0xbfdd9f81b28f5b98, 0x0, - 0xbfe7e9505c16fbc6, 0x0, - 0xbfe0218ece8609b9, 0x0, - 0x3f462acd687fa36d, 0x0, - 0x3fdf3662a1e90b4e, 0x0, - 0x3fe7ab2b4bc7572f, 0x0, - 0x3fdb93c1f6bd3dbe, 0x0, - 0xbf74ab930eb69a3f, 0x0, - 0xbfdf7c6fcc94f6c3, 0x0, - 0xbfe714935204ddf9, 0x0, - 0xbfda0bbf516cf7ad, 0x0, - 0xbf89ee22f70cac44, 0x0, - 0x3fe20bbac661d9d3, 0x0, - 0x3fe652cef25f3522, 0x0, - 0x3fe1389540893aa1, 0x0, - 0x3fa00169c9e3c1ec, 0x0, - 0xbfe0dff408cd4616, 0x0, - 0xbfe55f615d3db495, 0x0, - 0xbfdc6cdca85d7bbc, 0x0, - 0xbf603d587fe7bed9, 0x0, - 0x3fdd1d05dfb3cb63, 0x0, - 0x3fe816b0d65565a2, 0x0, - 0x3fd8d4cf5c51b9ba, 0x0, - 0x3f94b7bac323ab64, 0x0, - 0xbfd9bea251eeb025, 0x0, - 0xbfe76011900f344c, 0x0, - 0xbfdfc98bd7056e4a, 0x0, - 0x3f92af92736a4311, 0x0, - 0x3fdf9ebfac1afad3, 0x0, - 0x3fe89f91350c145f, 0x0, - 0x3fe19a36675197ea, 0x0, - 0xbf87aac4c474a0da, 0x0, - 0xbfdd3c13f9be81d0, 0x0, - 0xbfe5e80d17902c82, 0x0, - 0xbfe17308ae1c64d7, 0x0, - 0x3fb2c1953c24ec8d, 0x0, - 0x3fe122955c700530, 0x0, - 0x3fe4313f58cdf843, 0x0, - 0x3fe0a731013f91d9, 0x0, - 0x3fa05ef5a503d7cb, 0x0, - 0xbfe094a438a25084, 0x0, - 0xbfe893a83956ea96, 0x0, - 0xbfe11802056acedf, 0x0, - 0x3f919366b23b855d, 0x0, - 0x3fdff64b53a9a5f3, 0x0, - 0x3fe52f95b4352bc5, 0x0, - 0x3fdc68dafd52f336, 0x0, - 0x3fa6f59b5d06fdd4, 0x0, - 0xbfdf40d27e6bc01b, 0x0, - 0xbfe6d6b0c1c55db4, 0x0, - 0xbfe050d88f2adcf1, 0x0, - 0x3fa1b737c15ad869, 0x0, - 0x3fe1a799b5a8f756, 0x0, - 0x3fe428363a7be976, 0x0, - 0x3fdbf9826ba6edc1, 0x0, - 0xbfa957ca622f9001, 0x0, - 0xbfe0e8a16b1f6abf, 0x0, - 0xbfe591bec8c5a0b4, 0x0, - 0xbfe101ec8459c2d6, 0x0, - 0x3fa77af2b3313da7, 0x0, - 0x3fde7ebcc5f16c76, 0x0, - 0x3fe4260155cde1ca, 0x0, - 0x3fe32b063a1ef20b, 0x0, - 0x3f72032d5a3634d8, 0x0, - 0xbfdfd795a4fa8060, 0x0, - 0xbfe5eae1116e4702, 0x0, - 0xbfd950d882a36f90, 0x0, - 0xbfa9d3c8acda0838, 0x0, - 0x3fe020fbc55f02c9, 0x0, - 0x3fe4d8b5eae22bff, 0x0, - 0x3fde65289be55c0f, 0x0, - 0x3fb312288ffdb8ea, 0x0, - 0xbfe199ffe18c5503, 0x0, - 0xbfe4b168cd14eeb7, 0x0, - 0xbfdf061cbfcea7b2, 0x0, - 0x3f8425e225da56f6, 0x0, - 0x3fdd43d8a66ce730, 0x0, - 0x3fe585f4211a30f9, 0x0, - 0x3fde2ceb334eb202, 0x0, - 0xbf9d7833af3ee569, 0x0, - 0xbfe175034d984d0d, 0x0, - 0xbfe5a88a162ab9d2, 0x0, - 0xbfe0902251e7585f, 0x0, - 0xbfb8f4eb733cd931, 0x0, - 0x3fe06882985dc471, 0x0, - 0x3fe9aeb9ab2360a9, 0x0, - 0x3fe1446ae316eb83, 0x0, - 0xbf92e03234ceb67d, 0x0, - 0xbfe1a4178ee36bf9, 0x0, - 0xbfe8027b1d17d48f, 0x0, - 0xbfddceb8d85bf9c2, 0x0, - 0x3fb178008d6a73f5, 0x0, - 0x3fe0cae626244dfa, 0x0, - 0x3fe5c6ec786587b7, 0x0, - 0x3fe29e26bfed974f, 0x0, - 0x3fa5970d7f97c734, 0x0, - 0xbfdeb85c635cad44, 0x0, - 0xbfe3fb4944d4bab7, 0x0, - 0xbfe09db5ba5aafc0, 0x0, - 0xbf5f72c2f496e70d, 0x0, - 0x3fe26593e3317ec8, 0x0, - 0x3fe6da96bf00333c, 0x0, - 0x3fdd475ca80f8ad6, 0x0, - 0xbf8b862590a085be, 0x0, - 0xbfe0bedfd7b9baad, 0x0, - 0xbfe5b9031b61fb61, 0x0, - 0xbfdb7a6e5df6c6db, 0x0, - 0x3fa7bf667cebdcb2, 0x0, - 0x3fdbc59e6b1d63c2, 0x0, - 0x3fe41b9924cf4325, 0x0, - 0x3fdf2d7f8ac42d5c, 0x0, - 0xbfaec931d081ae2e, 0x0, - 0xbfded9ec56cf44c7, 0x0, - 0xbfe4edc29853dcdd, 0x0, - 0xbfe1f002a51d8f66, 0x0, - 0xbf7521d8fc1579ca, 0x0, - 0x3fe0842ee9f01552, 0x0, - 0x3fe74e0c39c02f32, 0x0, - 0x3fda0f63acbf498f, 0x0, - 0xbfc1edc5658c087f, 0x0, - 0xbfde6faa4ecab249, 0x0, - 0xbfe56059c567dfd8, 0x0, - 0xbfe3185eb47e5471, 0x0, - 0x3fb865de49c63869, 0x0, - 0x3fdc48db62f3daba, 0x0, - 0x3fe5208755683d26, 0x0, - 0x3fe036d464010c61, 0x0, - 0xbfa5e1815768eebb, 0x0, - 0xbfde728daeabf33b, 0x0, - 0xbfe6dedc6f596042, 0x0, - 0xbfe014893f6432f2, 0x0, - 0xbf9924ea3abd0973, 0x0, - 0x3fe28325e75aa18b, 0x0, - 0x3fe3d6f1495cad03, 0x0, - 0x3fe13af5385dd151, 0x0, - 0x3f94d6d06e8cf268, 0x0, - 0xbfdf33531bf199c2, 0x0, - 0xbfe62d0badfe117f, 0x0, - 0xbfe088c4be8c4458, 0x0, - 0xbfaebea506c3626f, 0x0, - 0x3fd9ecba80b0e546, 0x0, - 0x3fe9a77b04d86e02, 0x0, - 0x3fdc0356fb628f12, 0x0, - 0x3f850274da572b51, 0x0, - 0xbfdeda6850c092e8, 0x0, - 0xbfe4dbf449f1f1a9, 0x0, - 0xbfd9d8dbf0b4d231, 0x0, - 0x3fa7e4ccd106fc31, 0x0, - 0x3fe12098667e7562, 0x0, - 0x3fe731381c4ad573, 0x0, - 0x3fdeb530b71513e4, 0x0, - 0x3f8a146186a28dc9, 0x0, - 0xbfe03d5ae02e1133, 0x0, - 0xbfe55393869b46f2, 0x0, - 0xbfe0755ae9483371, 0x0, - 0xbfb32a8e864658b7, 0x0, - 0x3fdec4a448aa6e58, 0x0, - 0x3fe471d6e4d00f9c, 0x0, - 0x3fdee85a250f6ab2, 0x0, - 0xbf9891bb9775fd50, 0x0, - 0xbfdd7f9b881af11a, 0x0, - 0xbfe5023dd8489a4c, 0x0, - 0xbfdbc0cbcd4f2d58, 0x0, - 0xbfa8ede74f6588a7, 0x0, - 0x3fdf516fe00aed4b, 0x0, - 0x3fe898cb1a9fcd4c, 0x0, - 0x3fdaa53658a2670e, 0x0, - 0x3fb0c7ec80cb2b44, 0x0, - 0xbfdefa43b6dad98a, 0x0, - 0xbfe80d49069642d5, 0x0, - 0xbfddacf33311c50f, 0x0, - 0x3f9291d185940cf9, 0x0, - 0x3fdf94879965a8cc, 0x0, - 0x3fe772a5d6c95180, 0x0, - 0x3fdde04d5d27be90, 0x0, - 0xbfaf4b46e987a44a, 0x0, - 0xbfde325d1c93b3b9, 0x0, - 0xbfe9cf4bf8740ee1, 0x0, - 0xbfda7dfef14aa4fd, 0x0, - 0xbfa19f31602bc6d8, 0x0, - 0x3fe10118653332e3, 0x0, - 0x3fe4af33d84b22c5, 0x0, - 0x3fdef78aa031aeee, 0x0, - 0xbf7bd53425c0b290, 0x0, - 0xbfe0bdd18ca64b84, 0x0, - 0xbfe6dc7f4cfd0154, 0x0, - 0xbfdf4778673b649d, 0x0, - 0xbfbbc01cb6258dda, 0x0, - 0x3fd9cb52632ce919, 0x0, - 0x3fe61e9fe01520b0, 0x0, - 0x3fdf24b49c0c3167, 0x0, - 0x3f95b2c75e6cb5aa, 0x0, - 0xbfd8d3f849d90fbb, 0x0, - 0xbfe69b81466dfe8c, 0x0, - 0xbfe0af2467245c3f, 0x0, - 0x3f945737d7337831, 0x0, - 0x3fdb16d2a4c17e8a, 0x0, - 0x3fe536ccdf5fe5a8, 0x0, - 0x3fdfabc1d214b94f, 0x0, - 0xbfa7e59d44afa641, 0x0, - 0xbfdd67fbb3bd2dae, 0x0, - 0xbfe79ea363d9b982, 0x0, - 0xbfe07acb7c61e791, 0x0, - 0xbfa20f93ea4033d9, 0x0, - 0x3fdfc8d7058d4ecd, 0x0, - 0x3fe7f5fdf4ecb226, 0x0, - 0x3fe08273e7f70999, 0x0, - 0x3fa50d02badd77a9, 0x0, - 0xbfe01b9b6556071e, 0x0, - 0xbfe5b83a81cdb81a, 0x0, - 0xbfdecc22363b0726, 0x0, - 0x3fb02115fb3ca1e7, 0x0, - 0x3fe0a629d9e0abb5, 0x0, - 0x3fe6bfedd032f668, 0x0, - 0x3fdf5353db70c726, 0x0, - 0xbfb33eda0aa4a509, 0x0, - 0xbfe07630e441d68d, 0x0, - 0xbfe35da675feea9e, 0x0, - 0xbfd8eb42e59688c0, 0x0, - 0xbfa58c62801123b7, 0x0, - 0x3fde2a1fff6f3752, 0x0, - 0x3fe87d237570c02f, 0x0, - 0x3fe219130e6d549f, 0x0, - 0x3f879e15e700b681, 0x0, - 0xbfe21ee9fede0b0a, 0x0, - 0xbfe650d1fdd84f25, 0x0, - 0xbfe33181d50f13f8, 0x0, - 0xbf9a4d20675904ee, 0x0, - 0x3fe157a55120e931, 0x0, - 0x3fe6ef05ac2fe947, 0x0, - 0x3fdcd1dd84c5b850, 0x0, - 0x3fb71d5aac4c8695, 0x0, - 0xbfde2c7cad7aca6a, 0x0, - 0xbfe6f9a3a33044bd, 0x0, - 0xbfe0217407ece6ed, 0x0, - 0xbf9d7f1fc2ba231f, 0x0, - 0x3fddee9b3a61e90a, 0x0, - 0x3fe5a4bd39caf55b, 0x0, - 0x3fe1001a0a587b06, 0x0, - 0xbf969c188f577478, 0x0, - 0xbfe107da3d12e6d2, 0x0, - 0xbfe65c25d1a2f2da, 0x0, - 0xbfd911d28d74637c, 0x0, - 0xbfa2d902911eee13, 0x0, - 0x3fe0ef7deacc5575, 0x0, - 0x3fe634e457e42c5b, 0x0, - 0x3fe1ead6c130a23a, 0x0, - 0xbf93ac8c2abf4375, 0x0, - 0xbfddc543e3b08e28, 0x0, - 0xbfe536400460aae6, 0x0, - 0xbfd9fcf6d4555f3a, 0x0, - 0xbfb880367b237896, 0x0, - 0x3fdeb1d58e2543d9, 0x0, - 0x3fe585daedac55fb, 0x0, - 0x3fe26cf8def9eeb4, 0x0, - 0xbf9d3f1fd97a47e9, 0x0, - 0xbfe16496a3763ebe, 0x0, - 0xbfe3403996a63a6b, 0x0, - 0xbfddab04375ed486, 0x0, - 0x3fa0e47fa9a87b2f, 0x0, - 0x3fda367b26177564, 0x0, - 0x3fe66e4f8b339fee, 0x0, - 0x3fdea6fad741b708, 0x0, - 0x3f9a78fd24411409, 0x0, - 0xbfe0d2f7b1170216, 0x0, - 0xbfe750c85ea4fd81, 0x0, - 0xbfe109c373e813a9, 0x0, - 0x3fa2f473dbc42f4d, 0x0, - 0x3fdf383895ef396c, 0x0, - 0x3fe9e26dab5d0cd5, 0x0, - 0x3fdfe9c78819fac6, 0x0, - 0xbf91bd7e81aaec46, 0x0, - 0xbfe040b56969bf7e, 0x0, - 0xbfe775b29428d55c, 0x0, - 0xbfe021a249ad3dac, 0x0, - 0xbfab5f7be9ad5d34, 0x0, - 0x3fdb5e9c40c2e5e9, 0x0, - 0x3fe6efc4453eee21, 0x0, - 0x3fe0a3db456fba91, 0x0, - 0xbf72cbd051acc6ba, 0x0, - 0xbfdbcd0cfc85a52b, 0x0, - 0xbfe5bc9d6bd64454, 0x0, - 0xbfdeb42fecbb7316, 0x0, - 0xbfa63a6902110475, 0x0, - 0x3fdaabc08e679caa, 0x0, - 0x3fe6f0856ba0e143, 0x0, - 0x3fe1bd2724cc4dd7, 0x0, - 0xbfa068c7deb2975f, 0x0, - 0xbfdd1225aec87f43, 0x0, - 0xbfe80cf1097384ad, 0x0, - 0xbfdf7479403e9d9d, 0x0, - 0xbfa725063f194652, 0x0, - 0x3fe05fa4d6ba76f1, 0x0, - 0x3fe5b63d24382024, 0x0, - 0x3fe027885ca9538f, 0x0, - 0x3f90a75c8968a6f9, 0x0, - 0xbfdbcf0105be8954, 0x0, - 0xbfe3f925b79943d1, 0x0, - 0xbfdd8e8d2d6627e8, 0x0, - 0x3fa71d01a27e5778, 0x0, - 0x3fdc4491019f5986, 0x0, - 0x3fe3549950eb4546, 0x0, - 0x3fdb4c1ad0447e47, 0x0, - 0x3f726a43abb9d446, 0x0, - 0xbfe2ff93f0ce0450, 0x0, - 0xbfe5b22cd59ed2ca, 0x0, - 0xbfe168b150680d9f, 0x0, - 0xbfab1c3398c11a0f, 0x0, - 0x3fe1bfd3677fd988, 0x0, - 0x3fe7bd25ab05a832, 0x0, - 0x3fdd88fc49accd12, 0x0, - 0xbfb0e83ab6c8e4ee, 0x0, - 0xbfde5e7de5f257af, 0x0, - 0xbfe767e45e900026, 0x0, - 0xbfdfe08b1b7249d2, 0x0, - 0x3fbae709cab71793, 0x0, - 0x3fdf9145b75f2e40, 0x0, - 0x3fe9ffa61c8c437c, 0x0, - 0x3fe11afd94ace3fc, 0x0, - 0x3f8da035441638a4, 0x0, - 0xbfde423ca5b0418d, 0x0, - 0xbfe4ef736047e393, 0x0, - 0xbfe15212445d6068, 0x0, - 0x3f7af71363658945, 0x0, - 0x3fe0072fc28548b4, 0x0, - 0x3fe780ed399af7da, 0x0, - 0x3fe1fae286b0dae6, 0x0, - 0x3fa5149cc68ac50b, 0x0, - 0xbfe039cd20963442, 0x0, - 0xbfe75484aee0a154, 0x0, - 0xbfdfd9462511d60d, 0x0, - 0x3f77e8c16e336905, 0x0, - 0x3fdd7a8891238176, 0x0, - 0x3fe8a93878c4d7ab, 0x0, - 0x3fdf62c8cbc413db, 0x0, - 0x3fb126812ea01a05, 0x0, - 0xbfe321e42218820f, 0x0, - 0xbfe5dd284c225304, 0x0, - 0xbfdebfc7514489ff, 0x0, - 0xbf9ca854dbdd83d4, 0x0, - 0x3fe2225a1f5c3bfe, 0x0, - 0x3fe583c8655f34f7, 0x0, - 0x3fe152b55ae13599, 0x0, - 0x3f88d3e4108e47a4, 0x0, - 0xbfdecd711cca9cb3, 0x0, - 0xbfe4eccf91df0997, 0x0, - 0xbfe0d73466ecc660, 0x0, - 0xbf98e252926eea2d, 0x0, - 0x3fe0c2f5b0c0ea14, 0x0, - 0x3fe44106f393e1d6, 0x0, - 0x3fdf34c775c1e9da, 0x0, - 0x3f8f9a4d4c628110, 0x0, - 0xbfe007c2301ebacb, 0x0, - 0xbfe4f85425ff6544, 0x0, - 0xbfe26d12fd431919, 0x0, - 0xbfce4c88c4a2f605, 0x0, - 0x3fe1df2a81afbaf8, 0x0, - 0x3fe3bed9af6180d6, 0x0, - 0x3fe11e233dd3990f, 0x0, - 0x3fbfbba6ec39a679, 0x0, - 0xbfe122d38e253ae8, 0x0, - 0xbfe3ff99089e1079, 0x0, - 0xbfe1af079b6ed57c, 0x0, - 0xbf857716094fcc12, 0x0, - 0x3fdaf1e8600ad428, 0x0, - 0x3fe5d3390ff3154d, 0x0, - 0x3fde386b55b2d692, 0x0, - 0xbf98fb250aaace25, 0x0, - 0xbfdd1b87c024fb87, 0x0, - 0xbfe7a57057170d09, 0x0, - 0xbfdb4058301c00ac, 0x0, - 0x3fadfdd6afce4106, 0x0, - 0x3fe2390f1ef7144e, 0x0, - 0x3fe525462931c37d, 0x0, - 0x3fe080b6fe8e9db1, 0x0, - 0xbfb704653eb7875e, 0x0, - 0xbfde4afc02738f17, 0x0, - 0xbfe62b53ce379928, 0x0, - 0xbfd5e3a58fc7b3b8, 0x0, - 0xbf959ac5f3700bd6, 0x0, - 0x3fdc4920c97fae94, 0x0, - 0x3fe5a0c88d4b2363, 0x0, - 0x3fddb861e371f145, 0x0, - 0xbf692a80415c4195, 0x0, - 0xbfe03ebcb42c499f, 0x0, - 0xbfe51b75d0bb73c1, 0x0, - 0xbfdffc150399695a, 0x0, - 0x3fa6904ab531d5b5, 0x0, - 0x3fdeece62b043e9b, 0x0, - 0x3fe5a29865a0b958, 0x0, - 0x3fe0dcc71983409a, 0x0, - 0xbf76890a405d5437, 0x0, - 0xbfdfe0a74881384e, 0x0, - 0xbfe6b9638bbc9a30, 0x0, - 0xbfde817de74f3e09, 0x0, - 0xbfa0a6f04f3db7e3, 0x0, - 0x3fde2d0fb3c19d38, 0x0, - 0x3fe6ee91339ce6fe, 0x0, - 0x3fe22f66d135a4a7, 0x0, - 0xbf938c35cb50fd5b, 0x0, - 0xbfde55e3f6341951, 0x0, - 0xbfe582a61854a192, 0x0, - 0xbfe0e08a2666e803, 0x0, - 0xbf9fcca6525323a8, 0x0, - 0x3fdfbbe08758e6e9, 0x0, - 0x3fe45260a21f1dbf, 0x0, - 0x3fe0debb9c2e42a7, 0x0, - 0xbf72a372d4f8d71a, 0x0, - 0xbfded6a758ca8afb, 0x0, - 0xbfe67676f9ed8f2b, 0x0, - 0xbfd9370b72ca232a, 0x0, - 0xbfa92ded20533cb7, 0x0, - 0x3fdf4d47e2e98621, 0x0, - 0x3fe7bcce888bdc64, 0x0, - 0x3fe077283e1bc6ff, 0x0, - 0xbf83caa1cb347800, 0x0, - 0xbfde00546b32d7a3, 0x0, - 0xbfe5cfca9f67a2d0, 0x0, - 0xbfde9a35cc65949f, 0x0, - 0xbfae13092aa3ac43, 0x0, - 0x3fdedd2cb6180d5f, 0x0, - 0x3fe7f474bd961a3a, 0x0, - 0x3fdd642ccde2714c, 0x0, - 0xbfbdb87aae197d66, 0x0, - 0xbfda3019327e4cfc, 0x0, - 0xbfe67b308f27a3eb, 0x0, - 0xbfe000c2662e10fd, 0x0, - 0xbfaef2c29dc9b95e, 0x0, - 0x3fdc3aeb6625ef4d, 0x0, - 0x3fe2cecd4504737f, 0x0, - 0x3fe17eba890fce64, 0x0, - 0xbfb8596cb475c4f9, 0x0, - 0xbfe1a5c5de199cad, 0x0, - 0xbfe6c6b50de712ed, 0x0, - 0xbfe292ae2d6226e5, 0x0, - 0xbfa9ab16f5b338c7, 0x0, - 0x3fdd17181d048de5, 0x0, - 0x3fe4e27c4f5c414e, 0x0, - 0x3fdf1b10164c18a5, 0x0, - 0x3f586dda62d18ccd, 0x0, - 0xbfdef459617264c7, 0x0, - 0xbfe4ceef1c38c6a3, 0x0, - 0xbfe0fee7fa38880d, 0x0, - 0x3facc9648a746a08, 0x0, - 0x3fdc3a37d6a82a1e, 0x0, - 0x3fe9d5fdfae4af9e, 0x0, - 0x3fdcf9c5cf6d9b05, 0x0, - 0xbf9942222c223cef, 0x0, - 0xbfdd9d0ed883884f, 0x0, - 0xbfe65866ddaec2db, 0x0, - 0xbfe004f187b554ab, 0x0, - 0xbf9596a8942d33dd, 0x0, - 0x3fe1c5eb3b003b68, 0x0, - 0x3fe7d3a10a1c8e70, 0x0, - 0x3fe09d0c923a2e99, 0x0, - 0xbfa657b4e582152a, 0x0, - 0xbfdf4969d747a994, 0x0, - 0xbfe5871e84fb277b, 0x0, - 0xbfe24b9d4f70d5ed, 0x0, - 0x3fae66abee4490ec, 0x0, - 0x3fe10be021dbe2d1, 0x0, - 0x3feab4df943a28bc, 0x0, - 0x3fdd1545632f1dda, 0x0, - 0xbfaa53418e47dc4f, 0x0, - 0xbfddf67c6a55d12a, 0x0, - 0xbfe6745c1ae04a24, 0x0, - 0xbfdceeeb5927777a, 0x0, - 0x3fa53fc066834a71, 0x0, - 0x3fddd4934f9684b2, 0x0, - 0x3fe6e3d99285d34b, 0x0, - 0x3fdcfa25c08b7826, 0x0, - 0xbfa5aa440055e34c, 0x0, - 0xbfdbc2b7d5c10c4f, 0x0, - 0xbfe5fb1b9271d308, 0x0, - 0xbfe0de8791be6c71, 0x0, - 0xbfa48fcfb1f2a834, 0x0, - 0x3fdc2f93f81d9182, 0x0, - 0x3fe7482edc0bdfe4, 0x0, - 0x3fe0cf6a87ce5994, 0x0, - 0x3f9261d10e86e2f6, 0x0, - 0xbfdb9943cfb0a2d2, 0x0, - 0xbfe8f13f394a23b6, 0x0, - 0xbfdbffa957532ca6, 0x0, - 0xbfbad03ff21b8f4f, 0x0, - 0x3fdf051c072a4d55, 0x0, - 0x3fe3fb5e0f3580cc, 0x0, - 0x3fdf18098f243588, 0x0, - 0x3fb4853117f11978, 0x0, - 0xbfd79ec8ca42bdaa, 0x0, - 0xbfe71f0183477e14, 0x0, - 0xbfe057a8441476de, 0x0, - 0xbfa07255e6c500ee, 0x0, - 0x3fdbdcc4ff8320af, 0x0, - 0x3fe3fd2732333d25, 0x0, - 0x3fdae198b36e43f6, 0x0, - 0x3fa428db7a8be1c2, 0x0, - 0xbfde6434d3874c75, 0x0, - 0xbfe5e6ebbbdf1332, 0x0, - 0xbfdcb1949fe79a5c, 0x0, - 0x3fb3ad02b5b8158f, 0x0, - 0x3fe086d98d4a729f, 0x0, - 0x3fe51ce5912d484e, 0x0, - 0x3fe262731ee5d5a2, 0x0, - 0x3f97e7adf939896b, 0x0, - 0xbfdebb73118fe91c, 0x0, - 0xbfe6f96a2b148233, 0x0, - 0xbfdd5dfe9f0c0512, 0x0, - 0xbf8556b28cb7b56f, 0x0, - 0x3fda6d69cda2d712, 0x0, - 0x3fe4ebbdaa67ff4b, 0x0, - 0x3fe27d9a620e1e73, 0x0, - 0x3f9bf46ce1f0bad8, 0x0, - 0xbfe046c58b90dca0, 0x0, - 0xbfe66820e3097ca1, 0x0, - 0xbfe2d07e27f5ebbd, 0x0, - 0xbfaa2cb6b7d7ef69, 0x0, - 0x3fdbce7c837259b6, 0x0, - 0x3fe7780a9c3a2149, 0x0, - 0x3fe2bf4a6fb17c7e, 0x0, - 0xbf94efd9115b389a, 0x0, - 0xbfda3cbd3648c87e, 0x0, - 0xbfe97b1527eb4579, 0x0, - 0xbfdcf7ddbf829cb2, 0x0, - 0x3fa9ece58622aac7, 0x0, - 0x3fdc4b79c81b0777, 0x0, - 0x3fe602fca2e17a31, 0x0, - 0x3fdf1d00f1ea3185, 0x0, - 0x3fa50275d3c87c13, 0x0, - 0xbfda4f1a361140da, 0x0, - 0xbfe7e4193ca0fbe9, 0x0, - 0xbfdce85830a676f6, 0x0, - 0x3fa635b830aa6219, 0x0, - 0x3fe27f56afd73fd5, 0x0, - 0x3fe578ee378ca328, 0x0, - 0x3fe162fecdfa480d, 0x0, - 0xbfa12279663a7900, 0x0, - 0xbfdbcb9afe0c21da, 0x0, - 0xbfe58bceb5bafe2a, 0x0, - 0xbfe102280ae324e3, 0x0, - 0xbf876fd7cb682a04, 0x0, - 0x3fdf3f5b8978e54c, 0x0, - 0x3fe699f94748c672, 0x0, - 0x3fddd5ed574a1fce, 0x0, - 0x3f7eea4fe59858cb, 0x0, - 0xbfe1c781ba57a6ef, 0x0, - 0xbfe4b7ce215fdbd4, 0x0, - 0xbfda6b3d86378228, 0x0, - 0x3f972efbdd4a5c48, 0x0, - 0x3fdfe1e58582c2a3, 0x0, - 0x3fe4831c23086c64, 0x0, - 0x3fdd966846649d45, 0x0, - 0x3fa0e63ec1f354fb, 0x0, - 0xbfe143f3aac4e3a2, 0x0, - 0xbfe6fcaad02a09b5, 0x0, - 0xbfe05c5fe61970d6, 0x0, - 0xbfa243859993bc05, 0x0, - 0x3fdceb71f40644b4, 0x0, - 0x3fe7218721075ccb, 0x0, - 0x3fe083cdd2d5e3d6, 0x0, - 0x3fb800d07a9dffc0, 0x0, - 0xbfdf2ed64ea40348, 0x0, - 0xbfe6927c4f089136, 0x0, - 0xbfdda95e6c2272b4, 0x0, - 0xbf889263fc0d6910, 0x0, - 0x3fe0bc5a0751c03d, 0x0, - 0x3fe83e64a56236cc, 0x0, - 0x3fe0f11c0ec97679, 0x0, - 0x3fae1c727f7fb90a, 0x0, - 0xbfdff3b614a1f273, 0x0, - 0xbfe68b14c19715af, 0x0, - 0xbfe0fae272083723, 0x0, - 0xbf8cadb542541ace, 0x0, - 0x3fdc83c5e526f740, 0x0, - 0x3fe5764132886b76, 0x0, - 0x3fdda07f5cebf7e7, 0x0, - 0xbf64bfb212404e1d, 0x0, - 0xbfe0e2385f2d54e2, 0x0, - 0xbfe71e48bf4e710b, 0x0, - 0xbfdc61d08d7cd088, 0x0, - 0xbf8242fefe3966eb, 0x0, - 0x3fdcf80c88c8c16a, 0x0, - 0x3fe5b44bbdb8090f, 0x0, - 0x3fdd66a22e734b96, 0x0, - 0xbf85b848ed0514cf, 0x0, - 0xbfe3bb64f8b28066, 0x0, - 0xbfe5e76ea4a152f2, 0x0, - 0xbfdc8ea77d8758f8, 0x0, - 0xbfab64a77327a3ee, 0x0, - 0x3fdc9a18a1662229, 0x0, - 0x3fe6e250e6ae1419, 0x0, - 0x3fe0ca2b8397cb08, 0x0, - 0x3fb0d72e2a8b0d35, 0x0, - 0xbfdff6c4bbb95412, 0x0, - 0xbfe691826ca627d1, 0x0, - 0xbfdd8e66bcac5a65, 0x0, - 0x3f94bb31ffa76b71, 0x0, - 0x3fe204ac0caf51ed, 0x0, - 0x3fe51b5972268609, 0x0, - 0x3fde531e9568be10, 0x0, - 0xbfb06d6d20f93ba6, 0x0, - 0xbfe0871dac6dae14, 0x0, - 0xbfe700e3e0cb81ba, 0x0, - 0xbfe04b14920372bf, 0x0, - 0x3fbc02551bf48985, 0x0, - 0x3fe0e8fb4160b69d, 0x0, - 0x3fe633089ce154ae, 0x0, - 0x3fdf891b2ce98a3c, 0x0, - 0xbf9d542dca66717f, 0x0, - 0xbfe0d04db03891c0, 0x0, - 0xbfe7849310a629c8, 0x0, - 0xbfde0faa8f18f6af, 0x0, - 0x3f9d64f19ca3916f, 0x0, - 0x3fdd66f34795fdca, 0x0, - 0x3fe43a7d9419af8e, 0x0, - 0x3fde583062aa0b5b, 0x0, - 0x3fb9589986d2ab7c, 0x0, - 0xbfdef538d14d289a, 0x0, - 0xbfe618f8fdc3052b, 0x0, - 0xbfe0d925b04e7414, 0x0, - 0xbfb1a39b46c5ade5, 0x0, - 0x3fdea3ff9555f427, 0x0, - 0x3fe579e47fdeee50, 0x0, - 0x3fdc8fc131d1a1cd, 0x0, - 0xbfb74619bd326cf4, 0x0, - 0xbfe0e684a9e51bdc, 0x0, - 0xbfe674478ca05802, 0x0, - 0xbfe13726ea5ad5cb, 0x0, - 0xbfa7f2d67bd33d5e, 0x0, - 0x3fe0f6eebc16449a, 0x0, - 0x3fe59d973fe8ad91, 0x0, - 0x3fd98967faed4875, 0x0, - 0x3f954db819fad44f, 0x0, - 0xbfe0ef4c1bf72b10, 0x0, - 0xbfe70b1ea5a66a90, 0x0, - 0xbfdc32fc84304f66, 0x0, - 0xbfa7b2987553783a, 0x0, - 0x3fdc1c160acd1f3f, 0x0, - 0x3fe68fdaa87fd174, 0x0, - 0x3fe20e283ad1ed2f, 0x0, - 0x3f5254c240d2af50, 0x0, - 0xbfe0023cb0d48128, 0x0, - 0xbfe47107c9bbc58e, 0x0, - 0xbfde08b004c6d3f0, 0x0, - 0xbf9c7d8b3b1a7fef, 0x0, - 0x3fdad6359264fba4, 0x0, - 0x3fe72ba4e787ef3e, 0x0, - 0x3fdf94d8ccd990a6, 0x0, - 0xbf9c8c8159fb4a41, 0x0, - 0xbfe0277d07289676, 0x0, - 0xbfe6364d5339e5c1, 0x0, - 0xbfe107356fd4f7ed, 0x0, - 0xbfac6948c546d02a, 0x0, - 0x3fe0c97419a398b6, 0x0, - 0x3fe63d9cba92ed94, 0x0, - 0x3fde7a03f8bb1ec5, 0x0, - 0x3f857a84950d6491, 0x0, - 0xbfe2cb64dddb2a30, 0x0, - 0xbfe6ff011cd02dc5, 0x0, - 0xbfe06810b3170699, 0x0, - 0x3fb42f241f5435e8, 0x0, - 0x3fe01744f45a8943, 0x0, - 0x3fe5ea012bfd98b8, 0x0, - 0x3fe0ae3a329310b8, 0x0, - 0xbf68f7e7fdf21eea, 0x0, - 0xbfe003014beae16b, 0x0, - 0xbfe84e2ce57c8db3, 0x0, - 0xbfe070b061da08a7, 0x0, - 0x3fa824744c4f4a9a, 0x0, - 0x3fe097a3b0c8bc8e, 0x0, - 0x3fe60dbebb90ba3c, 0x0, - 0x3fdb07d6a9e15e01, 0x0, - 0xbfae507bc484ce4b, 0x0, - 0xbfe150d6e4f76982, 0x0, - 0xbfe85118eb8f0723, 0x0, - 0xbfde35377ff7e4c6, 0x0, - 0x3fa29df9a39f4757, 0x0, - 0x3fe1a4a522aef22e, 0x0, - 0x3fe7d731f6a47091, 0x0, - 0x3fdcbaed7c2ec7d1, 0x0, - 0xbf9002f1770cd3f8, 0x0, - 0xbfdc5aba76817440, 0x0, - 0xbfe6f4be0a6d15cf, 0x0, - 0xbfdf791c4cd69542, 0x0, - 0xbfb5567a9fc36e3a, 0x0, - 0x3fdd13727a5a24b0, 0x0, - 0x3fe4ca4bb55bb535, 0x0, - 0x3fe20c56376283a8, 0x0, - 0x3fa5c0aff8f4f45c, 0x0, - 0xbfe1855712e5af35, 0x0, - 0xbfe62dbd2be3b2bc, 0x0, - 0xbfe01c7ced8624ac, 0x0, - 0x3fb73d7614edd09c, 0x0, - 0x3fdf891e0fea2223, 0x0, - 0x3fe6c79a5ecbe911, 0x0, - 0x3fe00b508cc03b04, 0x0, - 0xbf98b65daa21ee54, 0x0, - 0xbfdfebd86e29001a, 0x0, - 0xbfe69c7d30981c9d, 0x0, - 0xbfdc0e0719cf4903, 0x0, - 0xbf932cd7da067b02, 0x0, - 0x3fe16be053960913, 0x0, - 0x3fe5d8021a84dd36, 0x0, - 0x3fe0feec656366d0, 0x0, - 0x3f9b76c2d7d2d96b, 0x0, - 0xbfd91ce03b0fbb44, 0x0, - 0xbfe506600fd25f73, 0x0, - 0xbfde684da6f5941d, 0x0, - 0xbf7020480ffd4bdc, 0x0, - 0x3fda699fd2655041, 0x0, - 0x3fe7936d153a70ff, 0x0, - 0x3fd8574e86b94aaa, 0x0, - 0x3f86bbab95449959, 0x0, - 0xbfdc449c8d36051c, 0x0, - 0xbfe82c3289215b4a, 0x0, - 0xbfdeb109c07ed1bc, 0x0, - 0x3fa0ebd53d8e35cc, 0x0, - 0x3fdb641d870484e0, 0x0, - 0x3fe76706251a8019, 0x0, - 0x3fe11fa3ef6c4d70, 0x0, - 0xbfa7845f1e05ee6c, 0x0, - 0xbfe0fd4b8fba6cc1, 0x0, - 0xbfe75769a3e6f120, 0x0, - 0xbfe1269401c524cb, 0x0, - 0x3fbcdcc3c96c9835, 0x0, - 0x3fded3ae8953f2c1, 0x0, - 0x3fe5655482e6de28, 0x0, - 0x3fde2ee4bd93dcb4, 0x0, - 0x3fad96c3cfd1c748, 0x0, - 0xbfe12a14c5dbcc1f, 0x0, - 0xbfe5fc73dbd64941, 0x0, - 0xbfe2be83200f2a68, 0x0, - 0x3faa4d39c66e53a5, 0x0, - 0x3fdd080c8f3e885c, 0x0, - 0x3fe547388fcfe564, 0x0, - 0x3fddf44c4d76062d, 0x0, - 0xbfa171c86ee2776e, 0x0, - 0xbfdc4fe374661949, 0x0, - 0xbfe52fb5c635bf9f, 0x0, - 0xbfdfe8bf1031e7b9, 0x0, - 0x3fa395de386168e1, 0x0, - 0x3fe0e7e31f467bf7, 0x0, - 0x3fe6efcd381198c7, 0x0, - 0x3fe1f4dc9d9b1568, 0x0, - 0x3fa17e6d81e326a7, 0x0, - 0xbfd90b0140096d02, 0x0, - 0xbfe657b5250ab18b, 0x0, - 0xbfdd88de1540dd8b, 0x0, - 0xbfa11cfa7b4a0477, 0x0, - 0x3fe0b4995ec4426e, 0x0, - 0x3fe7342bfec875bc, 0x0, - 0x3fe306178cbe29da, 0x0, - 0x3fb3fff41c9ed8d9, 0x0, - 0xbfde29b4c81f682f, 0x0, - 0xbfe9ee930aa352e3, 0x0, - 0xbfe056798239e09f, 0x0, - 0xbfb10677eae359d5, 0x0, - 0x3fe0df9de79ae222, 0x0, - 0x3fe6bfa05ffb9bbe, 0x0, - 0x3fdc6d7a0ae5a008, 0x0, - 0x3f99427b82f560df, 0x0, - 0xbfe1984b6c9e2ba2, 0x0, - 0xbfe6550a8c63e762, 0x0, - 0xbfded57fe04809d8, 0x0, - 0xbfc1287bff631e96, 0x0, - 0x3fddaf72d142df87, 0x0, - 0x3fe3dc7b4343cfd4, 0x0, - 0x3fdb5354718d695a, 0x0, - 0x3fb964763f07f16c, 0x0, - 0xbfdeacf4304c1690, 0x0, - 0xbfe6f5897bfbb1df, 0x0, - 0xbfe292ae25a9de77, 0x0, - 0xbfa06faccca5de53, 0x0, - 0x3fdb8faad356dab6, 0x0, - 0x3fe899575308d2cc, 0x0, - 0x3fe1da0de87cf24f, 0x0, - 0xbfc0ec2535a85ac7, 0x0, - 0xbfdc84f749bddd75, 0x0, - 0xbfe6a087d69dce6d, 0x0, - 0xbfda3722a5d476b6, 0x0, - 0xbf77fce9413be5b6, 0x0, - 0x3fdfb452d90ab30b, 0x0, - 0x3fe4f892dfede68f, 0x0, - 0x3fdfc87ef644426d, 0x0, - 0xbfb2c4a8fb176c58, 0x0, - 0xbfe340baa571398e, 0x0, - 0xbfe60472cdc19247, 0x0, - 0xbfe0029a468b68e5, 0x0, - 0xbfabc7ca929cf33b, 0x0, - 0x3fd8f4f310a4c9c2, 0x0, - 0x3fe6cc23b5a8b3a8, 0x0, - 0x3fe053736c7f7492, 0x0, - 0xbf5686d4c1e196be, 0x0, - 0xbfdcaf6753a2930d, 0x0, - 0xbfe6a74b3a9d88e4, 0x0, - 0xbfdce3b0c018cb41, 0x0, - 0xbf748d7f31a9f520, 0x0, - 0x3fe0799ed9bc8592, 0x0, - 0x3fe5595b09ad48fc, 0x0, - 0x3fde323998c7831d, 0x0, - 0x3fb8278d0b8dcd77, 0x0, - 0xbfdbbed161caee86, 0x0, - 0xbfe714dc000cfeba, 0x0, - 0xbfe020f72584bdcc, 0x0, - 0xbf81c9aef984774b, 0x0, - 0x3fe099f6d72073d1, 0x0, - 0x3fea94c1d44e7702, 0x0, - 0x3fda412a6bb2994e, 0x0, - 0x3f9b3dd7df83a7aa, 0x0, - 0xbfe122b50da78909, 0x0, - 0xbfe6410fffc5cea0, 0x0, - 0xbfe015c228e527f6, 0x0, - 0xbf91d98476cf8c0b, 0x0, - 0x3fe099383d34d202, 0x0, - 0x3fe6e2df4f224d1a, 0x0, - 0x3fe0e6bf1cfc0624, 0x0, - 0x3f9e43bc1476db23, 0x0, - 0xbfe06dda4ac06f18, 0x0, - 0xbfe5a2894117f0bc, 0x0, - 0xbfe064ae95680042, 0x0, - 0x3f892ec010527bac, 0x0, - 0x3fe04890941fbe20, 0x0, - 0x3fe5d2eabc275e41, 0x0, - 0x3fdd21af883cd122, 0x0, - 0xbfb17072663aac13, 0x0, - 0xbfdd07217f8e0b83, 0x0, - 0xbfe7baef0844337f, 0x0, - 0xbfe18ffe5a00f19d, 0x0, - 0x3fb24b21957cbbd2, 0x0, - 0x3fe103cd5f4ae707, 0x0, - 0x3fe566bebe2e67cf, 0x0, - 0x3fdf9dc943ccf6d7, 0x0, - 0xbfc1f26804a3af66, 0x0, - 0xbfdc453c78118b47, 0x0, - 0xbfe418b7821fd165, 0x0, - 0xbfdf2cf1e3ea436a, 0x0, - 0xbf80c048b330ed90, 0x0, - 0x3fda023ba36c2da8, 0x0, - 0x3fe8095791ec5607, 0x0, - 0x3fe1dad2192ba9f8, 0x0, - 0x3f9b2d89ece9e288, 0x0, - 0xbfe0227167b363fc, 0x0, - 0xbfe57f03f3001127, 0x0, - 0xbfdd3ca8f1ce644e, 0x0, - 0xbf58a3a3bb832a1e, 0x0, - 0x3fdf9fe60587675c, 0x0, - 0x3fe80cecd749a688, 0x0, - 0x3fe013168ba2b376, 0x0, - 0x3f7d6de07272775d, 0x0, - 0xbfd9871cb7e14bbe, 0x0, - 0xbfe6792d4869e059, 0x0, - 0xbfdd3cfbe79ecfd8, 0x0, - 0xbfb60dff6b0c156e, 0x0, - 0x3fdf02f2175d8853, 0x0, - 0x3fe4e4b7aabd4840, 0x0, - 0x3fe29b7c9e5537ba, 0x0, - 0x3fa7680c57a62561, 0x0, - 0xbfdcd9b673f59428, 0x0, - 0xbfe5d1ab43313fb1, 0x0, - 0xbfd9a3dcad9f8cdb, 0x0, - 0xbfabe583e5fffb59, 0x0, - 0x3fdd8f8d00677b80, 0x0, - 0x3fe8000ed8788483, 0x0, - 0x3fe1a43d177ee3c0, 0x0, - 0x3f924ee856aea06e, 0x0, - 0xbfe096630cbae0e0, 0x0, - 0xbfe52af50f545b24, 0x0, - 0xbfd9a0c521d88b18, 0x0, - 0xbf89d4e52b16fac0, 0x0, - 0x3fe0f054993518f0, 0x0, - 0x3fe60c3ae14a36ac, 0x0, - 0x3fddccab5c0d00c2, 0x0, - 0x3f71792666d6019a, 0x0, - 0xbfe0d00d070b7189, 0x0, - 0xbfe9109e1745ff39, 0x0, - 0xbfe0229b40a492e8, 0x0, - 0x3f9ac14cae186c7b, 0x0, - 0x3fe26816d69d5dc8, 0x0, - 0x3fe7a4ee7067e634, 0x0, - 0x3fe138e16b5a31b5, 0x0, - 0x3fb5c7afc62f7373, 0x0, - 0xbfdc5f9ae6d4ae22, 0x0, - 0xbfe6693b3400160a, 0x0, - 0xbfe1f090e59cde59, 0x0, - 0xbfa8834026848d31, 0x0, - 0x3fde031c17328561, 0x0, - 0x3fe76ea66a2d01c7, 0x0, - 0x3fdfa0ec70d91943, 0x0, - 0x3f9456ad18f738b6, 0x0, - 0xbfdb89b056ccff34, 0x0, - 0xbfe88924cf2974f6, 0x0, - 0xbfdc26d9c82cf487, 0x0, - 0xbfa483b95b0d301f, 0x0, - 0x3fdd369afaf46891, 0x0, - 0x3fe791897f445e4b, 0x0, - 0x3fe0efc8534d8cdb, 0x0, - 0x3f597cea8a381e9e, 0x0, - 0xbfe0a4d5edff321d, 0x0, - 0xbfe6a9e1ded9f60f, 0x0, - 0xbfe153ef4032e832, 0x0, - 0xbfa1d7db939b3332, 0x0, - 0x3fdd1f88d49d7244, 0x0, - 0x3fe60d8c357693a1, 0x0, - 0x3fdfe1579da8bac0, 0x0, - 0xbf80caa169d3a29d, 0x0, - 0xbfdf7f8bab82e619, 0x0, - 0xbfe5f9e8be73f89e, 0x0, - 0xbfdd7373ef0c1720, 0x0, - 0x3fb79d27b512dc98, 0x0, - 0x3fe112f1893fd331, 0x0, - 0x3fe791a4fa5dfaf9, 0x0, - 0x3fdfe006cd662b42, 0x0, - 0x3fa85dc6b9b246b9, 0x0, - 0xbfe0fd663c7da000, 0x0, - 0xbfe67c0139714c0e, 0x0, - 0xbfe1b651d509b1d5, 0x0, - 0x3f902033d1a4b15b, 0x0, - 0x3fde8b99c107cc47, 0x0, - 0x3fe778a2f93fa572, 0x0, - 0x3fe12b87fadb40b3, 0x0, - 0x3f8c9bd47bf205f4, 0x0, - 0xbfe1f261b2df8f21, 0x0, - 0xbfe5fb09b7e57f3f, 0x0, - 0xbfdf2476c200ce3b, 0x0, - 0x3f8b073c14b943a7, 0x0, - 0x3fde38f9ee45591e, 0x0, - 0x3fe73dac005c02c0, 0x0, - 0x3fe08bbffc7f2844, 0x0, - 0xbf8d22bb3fe8d4c9, 0x0, - 0xbfe000fefc58c0df, 0x0, - 0xbfe96e2d37c77049, 0x0, - 0xbfdd0b83309ff309, 0x0, - 0xbfb2ebc08a7fbe99, 0x0, - 0x3fe1c8e85a60ae30, 0x0, - 0x3fe7a772295d2e7f, 0x0, - 0x3fda2b9f41eca7d2, 0x0, - 0x3f97a36d89771819, 0x0, - 0xbfe13c4902472095, 0x0, - 0xbfe7385c0407bd6a, 0x0, - 0xbfe228bf190f4f25, 0x0, - 0xbfaad26e825e413b, 0x0, - 0x3fe0108cda683597, 0x0, - 0x3fe583cd4b56ce2e, 0x0, - 0x3fd8fdfc9c97012a, 0x0, - 0x3f82314b4a95e847, 0x0, - 0xbfe01f18ff3f2999, 0x0, - 0xbfe4ad636b513e63, 0x0, - 0xbfdefa80fca441bb, 0x0, - 0x3eee0b25dd4fb049, 0x0, - 0x3fe0b88293dc2dde, 0x0, - 0x3fe4731a71402a91, 0x0, - 0x3fde6b0ab6cf97c9, 0x0, - 0x3fa3a29666cb09b5, 0x0, - 0xbfda3a77dd9e0ac1, 0x0, - 0xbfe491bc828d3fd5, 0x0, - 0xbfdcb404100cd730, 0x0, - 0xbf8e4a347b0195fb, 0x0, - 0x3fddc5913ef4fbde, 0x0, - 0x3fe3629aaf0741b1, 0x0, - 0x3fde97e3647e4793, 0x0, - 0xbfabab198bb30686, 0x0, - 0xbfdddcf0e2422978, 0x0, - 0xbfe50a4b9471e5b2, 0x0, - 0xbfddd9b9414f8b53, 0x0, - 0x3f865d200b3fdf5f, 0x0, - 0x3fe0d6e79edf6674, 0x0, - 0x3fe6032a3d072ceb, 0x0, - 0x3fde34b208701cf2, 0x0, - 0xbfa3c61794988c8a, 0x0, - 0xbfe2822fc889e895, 0x0, - 0xbfe80827ec5e16bc, 0x0, - 0xbfdfeda548b94712, 0x0, - 0xbf8d2f6760da0ac7, 0x0, - 0x3fe08e3b54cf09f5, 0x0, - 0x3fe9abb539354f23, 0x0, - 0x3fde60d8c6bd5a62, 0x0, - 0xbf9eac18924f0db6, 0x0, - 0xbfe000bbb5f080c2, 0x0, - 0xbfe600e05cc65080, 0x0, - 0xbfdbe25e20dc9a86, 0x0, - 0xbfb1dff0d49d5913, 0x0, - 0x3fd9fd6107b2b842, 0x0, - 0x3fe45cd94640add3, 0x0, - 0x3fdd9d7a54e64687, 0x0, - 0x3f9a36c1f0bec9a8, 0x0, - 0xbfe244107ea70efc, 0x0, - 0xbfe76dd13cce9450, 0x0, - 0xbfde0d605825fe5f, 0x0, - 0xbfb3afdbb69d8c65, 0x0, - 0x3fe074da2b296e5c, 0x0, - 0x3fe85050c08863c7, 0x0, - 0x3fde0b6b5cd707bd, 0x0, - 0x3fa7df54fe8bc16b, 0x0, - 0xbfe0d0dea3123a78, 0x0, - 0xbfe66bdded3eacd4, 0x0, - 0xbfddc4b3d4e0a0bb, 0x0, - 0xbfb0688093024e44, 0x0, - 0x3fdd93ed1533da13, 0x0, - 0x3fe5a36d3a361da0, 0x0, - 0x3fe02d39f32fc344, 0x0, - 0x3fb362519791c3d2, 0x0, - 0xbfd80cf2b81e8fdc, 0x0, - 0xbfe3b83bcd4da228, 0x0, - 0xbfe28d4727fb0099, 0x0, - 0xbfaaf1dd47ca2b36, 0x0, - 0x3fda6129c282eb78, 0x0, - 0x3fe61f3e30e948ff, 0x0, - 0x3fde19712fd3d42a, 0x0, - 0x3fb46805ec11403d, 0x0, - 0xbfde3e726648f772, 0x0, - 0xbfe48b550d1bc857, 0x0, - 0xbfdefda0eeaa5387, 0x0, - 0xbfb735eb7f7a41ad, 0x0, - 0x3fd8f2d818bfd92f, 0x0, - 0x3fe6688f22e65492, 0x0, - 0x3fe029e221cd455f, 0x0, - 0xbf867090a84977b9, 0x0, - 0xbfe208c3522acf8d, 0x0, - 0xbfe84c929be59e66, 0x0, - 0xbfdfa24af2ef1534, 0x0, - 0x3f9fe677f1ad0cb7, 0x0, - 0x3fe22ea99a0761c1, 0x0, - 0x3fe5498ef10c0b13, 0x0, - 0x3fdfeb2872a69795, 0x0, - 0xbfb3a5a41ef0ed31, 0x0, - 0xbfdfe61c5ab2571c, 0x0, - 0xbfe56c9f3a0a7cc7, 0x0, - 0xbfe0dd5ab36eef35, 0x0, - 0x3f7613a372354327, 0x0, - 0x3fde0ac0e7224832, 0x0, - 0x3fe5700aa5c8632f, 0x0, - 0x3fe1182da1985aab, 0x0, - 0xbfa45cc57b77bc33, 0x0, - 0xbfe2fa6e5deb8e3e, 0x0, - 0xbfe5e1b7563e436c, 0x0, - 0xbfdeb514a891afc9, 0x0, - 0xbf8a72adee709c65, 0x0, - 0x3fdf4aa6469da892, 0x0, - 0x3fe8b7b989024759, 0x0, - 0x3fe0a689a5d4072c, 0x0, - 0xbfba3b6f896609a5, 0x0, - 0xbfe070a93c4869b6, 0x0, - 0xbfe405ecf3293fa4, 0x0, - 0xbfe039a44a1224c5, 0x0, - 0xbfa9311dc3d74f40, 0x0, - 0x3fe08324784e3c05, 0x0, - 0x3fe33d005f86fb3d, 0x0, - 0x3fe0c8aa5a916a90, 0x0, - 0xbf67d8a1696afd99, 0x0, - 0xbfe13024f04e62ce, 0x0, - 0xbfe56535b0216a94, 0x0, - 0xbfddb1b133a69be9, 0x0, - 0x3f9fdf9b010b1c56, 0x0, - 0x3fdd6396c2c7e158, 0x0, - 0x3fe4437813413ba8, 0x0, - 0x3fe195e80b40dacb, 0x0, - 0x3f368a65d9499a71, 0x0, - 0xbfdcc1b610e90522, 0x0, - 0xbfe65a90d020392b, 0x0, - 0xbfe02b35123ffb4c, 0x0, - 0x3f8aef0c138fc3eb, 0x0, - 0x3fdf8d0212914b35, 0x0, - 0x3fe7d49d1abafea1, 0x0, - 0x3fdda8f599802d49, 0x0, - 0xbfa2096ebc98cb91, 0x0, - 0xbfdcdb788c414de7, 0x0, - 0xbfe2e50163c6b7dc, 0x0, - 0xbfdbc46e3bc76e5b, 0x0, - 0xbf941bf7af039712, 0x0, - 0x3fdf5c5533554c48, 0x0, - 0x3fe6e480cc35f5f6, 0x0, - 0x3fdf3c59c00c951b, 0x0, - 0xbf81ce247ee5d422, 0x0, - 0xbfdcfab6bc7f559b, 0x0, - 0xbfe54a906e81cd95, 0x0, - 0xbfe0bf15fecf3548, 0x0, - 0x3fab1cde640ca664, 0x0, - 0x3fdf1732bd0187e1, 0x0, - 0x3fe2abbed3549bd8, 0x0, - 0x3fe089412fb1b32b, 0x0, - 0xbf664275a20e24bc, 0x0, - 0xbfe0de252c0a5a74, 0x0, - 0xbfe4423e3d3102ff, 0x0, - 0xbfdee04ab9b2e102, 0x0, - 0xbfb094d3e1a4ca92, 0x0, - 0x3fdd902f5aeb6905, 0x0, - 0x3fe790679e41000d, 0x0, - 0x3fe0246717c89656, 0x0, - 0x3f979fc5ba025102, 0x0, - 0xbfddad144f560e3f, 0x0, - 0xbfe6f591f8762dcf, 0x0, - 0xbfde3c9db3c045b3, 0x0, - 0xbf83ae7bc8aaf8fd, 0x0, - 0x3fe24cd2681a922f, 0x0, - 0x3fe76bb276d6697a, 0x0, - 0x3fdf169c1c93aa24, 0x0, - 0x3f84faf439bf0e91, 0x0, - 0xbfdca246d78914f7, 0x0, - 0xbfe5e8e9cd86f9cc, 0x0, - 0xbfdfa45af2e3be84, 0x0, - 0x3fa69eee6715d452, 0x0, - 0x3fdeec04778f9ea1, 0x0, - 0x3fe4ed2bdba0bba4, 0x0, - 0x3fe07a3de8cf345f, 0x0, - 0xbfb03783bb0aad0b, 0x0, - 0xbfe15bc786d647d7, 0x0, - 0xbfe6b2640823b801, 0x0, - 0xbfdc47f6da046796, 0x0, - 0x3fb29622958c8e2e, 0x0, - 0x3fde5f9dda288800, 0x0, - 0x3fe6f9f85c4c4e54, 0x0, - 0x3fe02f0d9ab2e2d1, 0x0, - 0xbfb531e856bfb8dd, 0x0, - 0xbfdf8105397d56fe, 0x0, - 0xbfe4ed59f8f48b2a, 0x0, - 0xbfe1a65ce609df0a, 0x0, - 0xbf9e2f733cd9d355, 0x0, - 0x3fe21f11a70d978c, 0x0, - 0x3fe555773f29d975, 0x0, - 0x3fdb8e732cf9a772, 0x0, - 0x3fa6de43740ee3b7, 0x0, - 0xbfde5c178fe2c0b3, 0x0, - 0xbfe53ad1ed5837d0, 0x0, - 0xbfe15e7046ef594e, 0x0, - 0x3fa4f2a480878f3e, 0x0, - 0x3fe06602bfc2fedc, 0x0, - 0x3fe7f4d15b5d1bf7, 0x0, - 0x3fe14a43d9cc54f8, 0x0, - 0x3fb562f5bedc905a, 0x0, - 0xbfdfc7f4c4f435ff, 0x0, - 0xbfe817e0ab760ab7, 0x0, - 0xbfe037defc61443a, 0x0, - 0x3fc2ce276c57920f, 0x0, - 0x3fdb6034632bc682, 0x0, - 0x3fe5c88b6d98c48d, 0x0, - 0x3fe029c99b2c08a9, 0x0, - 0xbfb1506f5a044847, 0x0, - 0xbfe0b85dcbb28e09, 0x0, - 0xbfe7338eb9d8b146, 0x0, - 0xbfe0574c3ed5762f, 0x0, - 0x3fa156143e459403, 0x0, - 0x3fe00ed288f5556b, 0x0, - 0x3fe6b213c3b090d7, 0x0, - 0x3fe0947e4e4bfa75, 0x0, - 0x3f89e4efb5ce4076, 0x0, - 0xbfdf787db7340cb6, 0x0, - 0xbfe66dc4ab2a4cb8, 0x0, - 0xbfddb700b0e96534, 0x0, - 0x3f68fa0c0958c83f, 0x0, - 0x3fe079c25e16d44c, 0x0, - 0x3fe5d9332e143ebb, 0x0, - 0x3fe42df1f9d372d5, 0x0, - 0x3fa2534b5ff101d5, 0x0, - 0xbfde2a499624dcd8, 0x0, - 0xbfe5f61578939aaf, 0x0, - 0xbfdb843f07583c9d, 0x0, - 0xbfbb914b6f4b5348, 0x0, - 0x3fdfe7f4b3f35d43, 0x0, - 0x3fe5e393ae4a29a5, 0x0, - 0x3fdf730384f4c7d1, 0x0, - 0x3f93e738b4dbb9ca, 0x0, - 0xbfddea9509c6a887, 0x0, - 0xbfe1fa8ab98323ef, 0x0, - 0xbfe07752941694d3, 0x0, - 0x3f89a4e01f7c0a5a, 0x0, - 0x3fdb24623b21857d, 0x0, - 0x3fe1c3752030b252, 0x0, - 0x3fe1054fe13f0ece, 0x0, - 0xbf9454472aa5ecc6, 0x0, - 0xbfe1238630de6588, 0x0, - 0xbfe66f2081385a96, 0x0, - 0xbfdcac4d9d3e3080, 0x0, - 0xbf92d46bd743ac14, 0x0, - 0x3fdbfd636936d01c, 0x0, - 0x3fe76a18a3ee0371, 0x0, - 0x3fe0e364bb0337a3, 0x0, - 0xbf80462bb7bfc36a, 0x0, - 0xbfe1bd9a91845aea, 0x0, - 0xbfe70669b3957adb, 0x0, - 0xbfe02842ee73178e, 0x0, - 0xbf490bec25e1b295, 0x0, - 0x3fe29908eeebf9c4, 0x0, - 0x3fe95578a7106e3c, 0x0, - 0x3fe2b1a29d09219f, 0x0, - 0x3f6f8905631bbce1, 0x0, - 0xbfde755991d2fc0a, 0x0, - 0xbfe3ea8c74ff41c0, 0x0, - 0xbfdda8dde1a9fba2, 0x0, - 0x3fb26a3153a53ec7, 0x0, - 0x3fe02e112ba60cba, 0x0, - 0x3fe7f9063e444d23, 0x0, - 0x3fe231d0ac5478cf, 0x0, - 0x3fba59b28d15de43, 0x0, - 0xbfdf7e52190c9285, 0x0, - 0xbfe80c38ec2ab7e6, 0x0, - 0xbfe0d0573c20c609, 0x0, - 0xbf62157d9a7bfbb9, 0x0, - 0x3fe20832b6948cd6, 0x0, - 0x3fe684069116d05d, 0x0, - 0x3fe1a84eeaf8b36e, 0x0, - 0x3fb27e74e145aaef, 0x0, - 0xbfe067d26e8ef231, 0x0, - 0xbfe3880162c89f74, 0x0, - 0xbfe1b57190683077, 0x0, - 0x3fa10f9bc69c1300, 0x0, - 0x3fe0470e6c0efc49, 0x0, - 0x3fe348c1ca1c4c97, 0x0, - 0x3fdfcd347f2e586e, 0x0, - 0xbfa242237ee93f9f, 0x0, - 0xbfe14c1e22579059, 0x0, - 0xbfe608b423b507c4, 0x0, - 0xbfe093f3a537cd17, 0x0, - 0x3fb194b134a2a854, 0x0, - 0x3fe0b6df3df45a6a, 0x0, - 0x3fe70ac8a442ba67, 0x0, - 0x3fe03dad96b066c9, 0x0, - 0x3fa6ee0a5bfe9685, 0x0, - 0xbfdb73980491769b, 0x0, - 0xbfe8a967e7b577af, 0x0, - 0xbfdf1c6e5f550570, 0x0, - 0x3fb5c6d32c202650, 0x0, - 0x3fdef78c02f7d951, 0x0, - 0x3fe71e05f15a501e, 0x0, - 0x3fdaffba0f97278b, 0x0, - 0xbf6584837dc36ae1, 0x0, - 0xbfddad738dcbeaeb, 0x0, - 0xbfe7319a3bcd1950, 0x0, - 0xbfe0b85f0fa60e9d, 0x0, - 0xbfa07aed6a73c32c, 0x0, - 0x3fd61f11427a2262, 0x0, - 0x3fe8898522fe99a8, 0x0, - 0x3fdec0974a414eb3, 0x0, - 0x3fa3e3393c9c81bc, 0x0, - 0xbfdd105b2c69c96e, 0x0, - 0xbfe73128ee094e0c, 0x0, - 0xbfe108b885106a27, 0x0, - 0x3fa32507f59339d9, 0x0, - 0x3fdecf4e305b76e9, 0x0, - 0x3fe3a5bc589911ee, 0x0, - 0x3fe1a84988ae94a6, 0x0, - 0x3f98ab1d575cbe32, 0x0, - 0xbfde6393b077a85c, 0x0, - 0xbfe517629cee09c5, 0x0, - 0xbfe13907e0348c98, 0x0, - 0x3f5168ea6372a23b, 0x0, - 0x3fde2a65b558e1af, 0x0, - 0x3fe846cca9da2783, 0x0, - 0x3fd89eacc49dcb7a, 0x0, - 0x3f9ecad963756ed0, 0x0, - 0xbfdce6428370be93, 0x0, - 0xbfe59f6b93099782, 0x0, - 0xbfdee8ca2d449d92, 0x0, - 0x3fb0079bed7df5bf, 0x0, - 0x3fe3690eb01278a7, 0x0, - 0x3fe757de549c0eb8, 0x0, - 0x3fe0f61d3475d97a, 0x0, - 0xbfa457d668ee6c66, 0x0, - 0xbfdd0dba8069b9b8, 0x0, - 0xbfe5fdc0f0c7ddbc, 0x0, - 0xbfe197d81b239f2b, 0x0, - 0xbf8ba2f73223790c, 0x0, - 0x3fe147bf4d82a818, 0x0, - 0x3fe6f44109438898, 0x0, - 0x3fdf958f96be7683, 0x0, - 0xbfa87c01253a1475, 0x0, - 0xbfdc1d6bb2364cec, 0x0, - 0xbfe5510790dbf971, 0x0, - 0xbfe1243e3f00478f, 0x0, - 0x3f8269465cb79606, 0x0, - 0x3fdd7eb2dba792ba, 0x0, - 0x3fe54dff591d7054, 0x0, - 0x3fdb3c9ce276c590, 0x0, - 0xbfae4770ee1d27fd, 0x0, - 0xbfde214768e47315, 0x0, - 0xbfe67b982089a009, 0x0, - 0xbfe093b63428bb0c, 0x0, - 0xbfb872f72026bca6, 0x0, - 0x3fe0be04fc8ae49d, 0x0, - 0x3fe4e560f14b8b93, 0x0, - 0x3fdda1f6dba73f0e, 0x0, - 0x3fa68a82e35ea511, 0x0, - 0xbfdb85a960e54c08, 0x0, - 0xbfe55e649f2d8c3a, 0x0, - 0xbfe2a7f263da69c9, 0x0, - 0xbf9b209a7ff475cd, 0x0, - 0x3fe08fb017bbd7c1, 0x0, - 0x3fe64638c1762361, 0x0, - 0x3fdf2caa83f44304, 0x0, - 0xbf2c8dbb5cf095fb, 0x0, - 0xbfe1e328de956958, 0x0, - 0xbfe31ce4b4fb68f2, 0x0, - 0xbfe21ef678627e52, 0x0, - 0xbf21e5bff25bf7e7, 0x0, - 0x3fdb5a223a27ce6f, 0x0, - 0x3fe598d7347029b7, 0x0, - 0x3fdde5dea2234e2d, 0x0, - 0xbf79969f0e42b7e8, 0x0, - 0xbfdee97e80d74332, 0x0, - 0xbfe5dcf081b38b29, 0x0, - 0xbfdd90e21b3045a4, 0x0, - 0x3fc62b46cc8ccdaf, 0x0, - 0x3fe18f5e4c43d628, 0x0, - 0x3fe9503ddb72c05d, 0x0, - 0x3fe37973234e5f8a, 0x0, - 0xbf8fb0e1a783beed, 0x0, - 0xbfe251ef393c7bee, 0x0, - 0xbfe3994484415bc9, 0x0, - 0xbfdde60c1435ac47, 0x0, - 0xbf818711c9056576, 0x0, - 0x3fdd75e1fc8557e9, 0x0, - 0x3fe6be2a269f640e, 0x0, - 0x3fe15a1e3566bda7, 0x0, - 0x3fa31f9f65fac4a4, 0x0, - 0xbfe164d7546ce0d1, 0x0, - 0xbfe4196a91b1314f, 0x0, - 0xbfe10bb6ccc44b98, 0x0, - 0xbf931b2543d5bc96, 0x0, - 0x3fde5253522ffe34, 0x0, - 0x3fe7b797f4a067e9, 0x0, - 0x3fd704f9c9d4c262, 0x0, - 0xbfa5e267650abe01, 0x0, - 0xbfe0ed4435ac78b5, 0x0, - 0xbfe78347683436bc, 0x0, - 0xbfddd7d683346c7c, 0x0, - 0x3fb0972fb5fcdbaa, 0x0, - 0x3fe1436a59cc186b, 0x0, - 0x3fe47694ee9f64a5, 0x0, - 0x3fe101d9dd3c3c1d, 0x0, - 0xbf8b338366c6e714, 0x0, - 0xbfdc9477be3e6e86, 0x0, - 0xbfe7b3c6c35d9f84, 0x0, - 0xbfde69a1ff64d990, 0x0, - 0xbf8a2a3a56d4e637, 0x0, - 0x3fddabdac40e289a, 0x0, - 0x3fe63a9f9a5e8b73, 0x0, - 0x3fe05d32944dae6f, 0x0, - 0x3f80bf073c8220b2, 0x0, - 0xbfda6ebce33fb2bd, 0x0, - 0xbfe64ca34a89b2bc, 0x0, - 0xbfe20d95622831c5, 0x0, - 0x3fac79222046541a, 0x0, - 0x3fe1b107d923a1bf, 0x0, - 0x3fe68d404e231b41, 0x0, - 0x3fe0ca2517d19276, 0x0, - 0x3f92d4a4cba17931, 0x0, - 0xbfe0246b8543ab26, 0x0, - 0xbfe65336c36bb569, 0x0, - 0xbfdd038680a21494, 0x0, - 0xbfa33edc3b698e0f, 0x0, - 0x3fdf757f36e682cc, 0x0, - 0x3fe68c1c6e3191a3, 0x0, - 0x3fe085197cba1521, 0x0, - 0xbf8d2a87461210c5, 0x0, - 0xbfe3981fe6f2bc2a, 0x0, - 0xbfe56238808f3242, 0x0, - 0xbfddc42efb7138db, 0x0, - 0xbf93ed09ffd0839c, 0x0, - 0x3fe0326013906bd7, 0x0, - 0x3fe31778d0e68156, 0x0, - 0x3fde4ddfca86f8dd, 0x0, - 0x3fb1e1e1de3e9363, 0x0, - 0xbfe0e5ec9814fad7, 0x0, - 0xbfe7fe6b846bf0b7, 0x0, - 0xbfde45c24756dc0b, 0x0, - 0x3fb8719b184f6cc4, 0x0, - 0x3fe22f883dd4ade6, 0x0, - 0x3fe75d8682ac66f6, 0x0, - 0x3fdcc6a13d33ee0f, 0x0, - 0x3fc5f0738baddcc4, 0x0, - 0xbfe01f3ce86a6307, 0x0, - 0xbfe5ef6ee92478e7, 0x0, - 0xbfdc89ab0d77d73c, 0x0, - 0x3f90798ff48ab724, 0x0, - 0x3fdcc528ddae8b7f, 0x0, - 0x3fe662118f31802a, 0x0, - 0x3fe17467e801b194, 0x0, - 0x3f98bf084dfc39c7, 0x0, - 0xbfdec1cd501834da, 0x0, - 0xbfe6e9c9dfc90273, 0x0, - 0xbfe2301703751b92, 0x0, - 0x3fb66a863aa7c47b, 0x0, - 0x3fddcfe55e7f0253, 0x0, - 0x3fea043b47a3be6e, 0x0, - 0x3fde3ccc897a5068, 0x0, - 0x3fbbabaa0afdfd16, 0x0, - 0xbfdec61f117a4990, 0x0, - 0xbfe90126d514c73f, 0x0, - 0xbfe1e5f3833d2d17, 0x0, - 0xbfb133b6568dca73, 0x0, - 0x3fe09b34f3993a95, 0x0, - 0x3fe467ec13cc1a76, 0x0, - 0x3fdce7591e022947, 0x0, - 0x3f9e4192df9af570, 0x0, - 0xbfe0010348ee9878, 0x0, - 0xbfe7c80c6be8407a, 0x0, - 0xbfdc2a44c697c3cb, 0x0, - 0x3fa58b1ba297e8f1, 0x0, - 0x3fdae7026e00e4f1, 0x0, - 0x3fe9ec31a9a7045a, 0x0, - 0x3fdf9b8f72c7f466, 0x0, - 0xbfac7093ae2de204, 0x0, - 0xbfdef06b2e068090, 0x0, - 0xbfe81c331ea8fac9, 0x0, - 0xbfd9fe25e7d0e4f6, 0x0, - 0x3f6aff70d92b98b4, 0x0, - 0x3fdf721c4b0c6ddb, 0x0, - 0x3fe75c6e68d6d9c3, 0x0, - 0x3fdcff8380ab35ab, 0x0, - 0xbf655d87723879cc, 0x0, - 0xbfe2acaf82c2d596, 0x0, - 0xbfe80eb1049ec09e, 0x0, - 0xbfdc0d82ce1ed3c0, 0x0, - 0xbf73230fecd83a84, 0x0, - 0x3fddb0b37506fc2d, 0x0, - 0x3fe5767d95f0a262, 0x0, - 0x3fe0b0de878e7010, 0x0, - 0xbfb01bb6d538e933, 0x0, - 0xbfe048466a1e6d21, 0x0, - 0xbfe96636095feade, 0x0, - 0xbfe12b1996b1f400, 0x0, - 0x3f93353ac391fa2f, 0x0, - 0x3fe1981bf4f5e70a, 0x0, - 0x3fe6fd475b449064, 0x0, - 0x3fdfa0362d94627c, 0x0, - 0x3fbfa465a5e2897c, 0x0, - 0xbfe14bdadaf28547, 0x0, - 0xbfe665585b5267be, 0x0, - 0xbfdf53e4fae38839, 0x0, - 0xbf8bd9183a15b8d5, 0x0, - 0x3fe134f98720e55f, 0x0, - 0x3fe6e6e312e61f47, 0x0, - 0x3fdba7eb1434ed64, 0x0, - 0x3f98fd3c25e7b535, 0x0, - 0xbfe2bec9dc2417fb, 0x0, - 0xbfe6959aa9e35706, 0x0, - 0xbfe125241c2ce80f, 0x0, - 0xbf9b9aa609411753, 0x0, - 0x3fdd3ba718ef1eb4, 0x0, - 0x3fe83bbaf8da17ac, 0x0, - 0x3fdb1b5d46507bc1, 0x0, - 0xbf966add151ffc95, 0x0, - 0xbfe0376b6b7625f7, 0x0, - 0xbfe74115c5b1e9e0, 0x0, - 0xbfe0a81a491c7967, 0x0, - 0x3f971029665b0e0c, 0x0, - 0x3fdfd5dc91d01af9, 0x0, - 0x3fe952bec923ee8a, 0x0, - 0x3fe1e599a7218538, 0x0, - 0xbfa73e865ddebd2d, 0x0, - 0xbfe02239ad8159dc, 0x0, - 0xbfead1d1655a061b, 0x0, - 0xbfe06962847e9b96, 0x0, - 0x3f995d39e0bf934a, 0x0, - 0x3fe260e8239b9ca8, 0x0, - 0x3fea021944c392ee, 0x0, - 0x3fe2d4447b9f75f2, 0x0, - 0xbf9412e1fe36ff74, 0x0, - 0xbfde286a3fa9b266, 0x0, - 0xbfe6eb135c104ccc, 0x0, - 0xbfdfbb23ebe1ef80, 0x0, - 0xbfa82eab467bdd16, 0x0, - 0x3fe03aad42ebf896, 0x0, - 0x3fe7139d4eb0ad97, 0x0, - 0x3fe102debee64f21, 0x0, - 0xbf94d95720630852, 0x0, - 0xbfe1611f5720a75d, 0x0, - 0xbfe39bece5fb75de, 0x0, - 0xbfde5493cc91ede7, 0x0, - 0x3f94f475f5c49009, 0x0, - 0x3fdbe475269c0880, 0x0, - 0x3fe691f10c9668b2, 0x0, - 0x3fddd7423c67b489, 0x0, - 0xbf6d0d32a4684bbe, 0x0, - 0xbfe3367b58309d4b, 0x0, - 0xbfe64f801b843d70, 0x0, - 0xbfe0e396c9761294, 0x0, - 0xbfa7461ab40d2a04, 0x0, - 0x3fdf561c75321afb, 0x0, - 0x3fe77a077bef6e40, 0x0, - 0x3fdfc1512a71cf61, 0x0, - 0xbf94c76712f54bc5, 0x0, - 0xbfe2706a9726a134, 0x0, - 0xbfe3bf43bd4f3804, 0x0, - 0xbfe082c1fa7d6430, 0x0, - 0xbfb1352601c6ef1d, 0x0, - 0x3fe0fa31c53a7ef4, 0x0, - 0x3fe913fb7768fc15, 0x0, - 0x3fdba4f7d732ae16, 0x0, - 0xbf8118ab24584d3d, 0x0, - 0xbfda66feea695abe, 0x0, - 0xbfe52a688a9693d9, 0x0, - 0xbfdb2e4f4725c029, 0x0, - 0xbf9cbd2068e9cad5, 0x0, - 0x3fdfcf4ef912f14b, 0x0, - 0x3fe7fe564153bc3c, 0x0, - 0x3fe0ae79abdedc09, 0x0, - 0xbfad27194f7d80e1, 0x0, - 0xbfdc58d51de01ed6, 0x0, - 0xbfe6ada7dcc2af65, 0x0, - 0xbfdad2c3da0662e4, 0x0, - 0xbfa1a67b4987f372, 0x0, - 0x3fe1159e833b8458, 0x0, - 0x3fe65931daa7f517, 0x0, - 0x3fe287231fae06f5, 0x0, - 0xbfb2360aa43bb0fe, 0x0, - 0xbfe1a3f96ad842c6, 0x0, - 0xbfe5167ab85a6561, 0x0, - 0xbfe3444a208e62d9, 0x0, - 0x3f9d1ea0ab4f664c, 0x0, - 0x3fe02cd02c3f7656, 0x0, - 0x3fe782280d4b5eac, 0x0, - 0x3fdeb88826f42f0f, 0x0, - 0xbf8d1200c1979ed3, 0x0, - 0xbfd830d825506106, 0x0, - 0xbfe7033d791e748e, 0x0, - 0xbfd99b22e0cf2cbc, 0x0, - 0xbfb1732dcfae3bae, 0x0, - 0x3fdb60777a76d3fa, 0x0, - 0x3fe5115b995b2f41, 0x0, - 0x3fdf3eba97293227, 0x0, - 0xbf8bee2ab24504fd, 0x0, - 0xbfdfe9a9bad4216a, 0x0, - 0xbfe65878fa2b8c3b, 0x0, - 0xbfe18a2fa5876478, 0x0, - 0xbfaf0b8a59253ac6, 0x0, - 0x3fe14a861ebc411d, 0x0, - 0x3fe74133f46da52d, 0x0, - 0x3fdeae6414f2d1ab, 0x0, - 0x3fb190e45f6d9f10, 0x0, - 0xbfdd75bcdb2b7233, 0x0, - 0xbfe7b752f8100d8b, 0x0, - 0xbfe11b332235d176, 0x0, - 0xbfb0352229206184, 0x0, - 0x3fe16190db9b61c2, 0x0, - 0x3fe73ced43804bb9, 0x0, - 0x3fdff5be196bdf04, 0x0, - 0x3fb5a9ba665c1d94, 0x0, - 0xbfdd95422daee0ca, 0x0, - 0xbfe822f187efe403, 0x0, - 0xbfde2ba6f135b242, 0x0, - 0x3fb2bf0105ebc27f, 0x0, - 0x3fe00aef02f5e542, 0x0, - 0x3fe5f27438816da2, 0x0, - 0x3fe2e4462b66c82e, 0x0, - 0xbf4a239cf5a0218e, 0x0, - 0xbfe1640561fdda3c, 0x0, - 0xbfe6d473c736837a, 0x0, - 0xbfdf04f0f54f4739, 0x0, - 0xbf9925f3911327cd, 0x0, - 0x3fe0a3a93b56061e, 0x0, - 0x3fe83b4ebc50f765, 0x0, - 0x3fe2fc23a481bcbf, 0x0, - 0xbf869e33cd6e0784, 0x0, - 0xbfde233253a8af32, 0x0, - 0xbfe316d84f4be107, 0x0, - 0xbfdf9c8c4e2bfe50, 0x0, - 0x3f56455a8d72a972, 0x0, - 0x3fdd24ed716b865a, 0x0, - 0x3fe4927493dead20, 0x0, - 0x3fdc950d96b8531c, 0x0, - 0xbfb7f8ae2aaa95a9, 0x0, - 0xbfdfcea625d09555, 0x0, - 0xbfe75f1d1a67d191, 0x0, - 0xbfe0c1cd20a388e4, 0x0, - 0x3fa50bf206c7d72b, 0x0, - 0x3fe152e6d3d8e814, 0x0, - 0x3fe300b8b105e5d4, 0x0, - 0x3fe162d434ad7b6d, 0x0, - 0xbfacb35c01fb6e72, 0x0, - 0xbfe1819472eafd1e, 0x0, - 0xbfe5505b9e2ee144, 0x0, - 0xbfdd7ed4ef7e2d7e, 0x0, - 0x3f9f86d69f2f22e7, 0x0, - 0x3fd91c6896692321, 0x0, - 0x3fe602ec2ecbc9ff, 0x0, - 0x3fe06f8bdc5574d8, 0x0, - 0x3f65b20b8eb4e9f8, 0x0, - 0xbfdfb83915097d81, 0x0, - 0xbfe5be0edde3ba0a, 0x0, - 0xbfdd30044cfaba85, 0x0, - 0xbf910e2295e0b56d, 0x0, - 0x3fe008ce42652493, 0x0, - 0x3fe5db260fb4079f, 0x0, - 0x3fdab5f47c673d35, 0x0, - 0xbf944122a788ff20, 0x0, - 0xbfe060a706dc15bc, 0x0, - 0xbfe73bd1bde91762, 0x0, - 0xbfe01380e2d6e698, 0x0, - 0xbf82a885ce95950f, 0x0, - 0x3fdefc498d26e425, 0x0, - 0x3fe43519e9952b92, 0x0, - 0x3fe005060f59339f, 0x0, - 0x3f967ff265c5b387, 0x0, - 0xbfe20a25bc8be789, 0x0, - 0xbfe73a866433c159, 0x0, - 0xbfda3d3516dded8c, 0x0, - 0xbf67f872695fa15a, 0x0, - 0x3fe10ff1b8080398, 0x0, - 0x3fe6725071497dc9, 0x0, - 0x3fe16856bc64360a, 0x0, - 0xbf8700ac6216c8a3, 0x0, - 0xbfdc946f2fa59c8e, 0x0, - 0xbfe7a1df5fade41e, 0x0, - 0xbfdbb0e65db47ce3, 0x0, - 0xbfa2c364bda3d973, 0x0, - 0x3fdfa268c870cfe3, 0x0, - 0x3fe882e305d83a82, 0x0, - 0x3fe18a5acebb18cf, 0x0, - 0x3fb480e79c6c3454, 0x0, - 0xbfdd959a2fdc498c, 0x0, - 0xbfe55d96015526b0, 0x0, - 0xbfddf60c9d8fbd5f, 0x0, - 0xbfb19ff745727325, 0x0, - 0x3fde5b7e497f5597, 0x0, - 0x3fe7c5d77831e8b8, 0x0, - 0x3fde30a0bb9c678c, 0x0, - 0xbf6750cb93c7e13f, 0x0, - 0xbfe2296c1d9c2796, 0x0, - 0xbfe7911077a3539a, 0x0, - 0xbfdd8d3aae771118, 0x0, - 0x3faa8af4f71c6fd9, 0x0, - 0x3fdec45e715a74f6, 0x0, - 0x3fe767405ae9b20e, 0x0, - 0x3fdce3c815804b2e, 0x0, - 0xbfa751e52b14da1b, 0x0, - 0xbfe1d3044c71c35d, 0x0, - 0xbfe553636ded0c40, 0x0, - 0xbfe01f9678385c02, 0x0, - 0x3f96f77ef7da27c7, 0x0, - 0x3fe0748e612b7013, 0x0, - 0x3fe4d5d393d7b4ee, 0x0, - 0x3fe1b7bf7259c8cb, 0x0, - 0x3f8df87496770eaf, 0x0, - 0xbfe198746909046f, 0x0, - 0xbfe5dc9ff2db9b36, 0x0, - 0xbfdf12218acee594, 0x0, - 0x3fad9b4633535365, 0x0, - 0x3fdf1b042b2dc8c1, 0x0, - 0x3fe59f7d541a2856, 0x0, - 0x3fddd654c5d6d382, 0x0, - 0x3f78e3080d3cae31, 0x0, - 0xbfe03b398ee2e518, 0x0, - 0xbfe513e0ef346a6c, 0x0, - 0xbfe14f504d2778e7, 0x0, - 0xbf8abeee1a48833c, 0x0, - 0x3fe074b3fb3de229, 0x0, - 0x3fe3eeb47fcafeb0, 0x0, - 0x3fe31c888475c4a5, 0x0, - 0x3f63f21829f70e05, 0x0, - 0xbfdc6af7d54ea2dd, 0x0, - 0xbfe6fc2d0ab87be1, 0x0, - 0xbfe04a9ef252c400, 0x0, - 0x3fb9a7635b87daec, 0x0, - 0x3fdfc695a03b4f03, 0x0, - 0x3fe5177c50ca13fd, 0x0, - 0x3fdce2da0bb7f064, 0x0, - 0x3f7a1b7b7f6b5e7a, 0x0, - 0xbfe0db340d5ac15f, 0x0, - 0xbfe6d478fe41745a, 0x0, - 0xbfde050aab1406a1, 0x0, - 0xbfac81b24a0cef0a, 0x0, - 0x3fe08102f282dcd0, 0x0, - 0x3fe6dc180408f2cb, 0x0, - 0x3fe2f1bb65f73047, 0x0, - 0xbfaed5e4a3c87971, 0x0, - 0xbfdecc3413b13461, 0x0, - 0xbfe699e81ee47f20, 0x0, - 0xbfe02b59d808a7eb, 0x0, - 0x3fa5d99e5380b50f, 0x0, - 0x3fdffafc0c8c185a, 0x0, - 0x3fe7aa9a0401acc2, 0x0, - 0x3fdf8762b001069c, 0x0, - 0x3fb5c08629f70e59, 0x0, - 0xbfe0fd89704b9ce0, 0x0, - 0xbfe74cbaef5f3c04, 0x0, - 0xbfe28bdc022074ac, 0x0, - 0x3fb0982f3ca8a516, 0x0, - 0x3fd9e43999e8c670, 0x0, - 0x3fe5d50700c7f516, 0x0, - 0x3fdc73e839456999, 0x0, - 0xbf81521c8fcc10ac, 0x0, - 0xbfddfba1da5ddef0, 0x0, - 0xbfe8ba8cf14a3eb5, 0x0, - 0xbfdd81159c81c689, 0x0, - 0x3fb30b841c81f94e, 0x0, - 0x3fe162a3d85b9f8a, 0x0, - 0x3fe668d67296dffd, 0x0, - 0x3fe18440f7c4dd72, 0x0, - 0xbf602f2facef054e, 0x0, - 0xbfe0c5278aa2bfbc, 0x0, - 0xbfea6a10a223301d, 0x0, - 0xbfe0f13ffa935d75, 0x0, - 0xbf9f8c596b27bac3, 0x0, - 0x3fdee9f0e2817e6b, 0x0, - 0x3fe8abff3cfd12b3, 0x0, - 0x3fe00d0234269e7d, 0x0, - 0xbf9021d6e90ef730, 0x0, - 0xbfdb6e33dde5dd08, 0x0, - 0xbfe67f51e07b32eb, 0x0, - 0xbfdf50c138118e78, 0x0, - 0x3f8413928f319b15, 0x0, - 0x3fdca14b608de6be, 0x0, - 0x3fe6507ee13ed5e0, 0x0, - 0x3fe2384a63f8a615, 0x0, - 0xbfb51237706e6347, 0x0, - 0xbfdc31047843733c, 0x0, - 0xbfe7fa0d53c6f2fe, 0x0, - 0xbfe32208743bfe48, 0x0, - 0xbf92530ff90bf958, 0x0, - 0x3fe030145e0e7337, 0x0, - 0x3fe60ace621f9ea8, 0x0, - 0x3fdf643c7701575e, 0x0, - 0xbf972870d3944e02, 0x0, - 0xbfdfdaf7b5b10b7c, 0x0, - 0xbfe355a38d21b005, 0x0, - 0xbfdf9c59e5d48857, 0x0, - 0x3f92e3f9aa337046, 0x0, - 0x3fdc4aa45ab5570b, 0x0, - 0x3fe7b5ab9e26024d, 0x0, - 0x3fdf35017ff00d6d, 0x0, - 0x3fb4d7ba4b595e8b, 0x0, - 0xbfe1865d625390d7, 0x0, - 0xbfe5c669daeeb480, 0x0, - 0xbfde3c8e093072b2, 0x0, - 0xbfa600dea29a7ff9, 0x0, - 0x3fe05f919ba0b689, 0x0, - 0x3fe6cb10656e8d0c, 0x0, - 0x3fde044ae3c7b53c, 0x0, - 0x3fb44318ac787920, 0x0, - 0xbfde879d89dbda1c, 0x0, - 0xbfe61de7262b0df3, 0x0, - 0xbfdf60f6d7bc1905, 0x0, - 0x3fa522081b246cb6, 0x0, - 0x3fe3f37d21110c0c, 0x0, - 0x3fe5b1c7ff63c572, 0x0, - 0x3fdae7b870d9a790, 0x0, - 0x3fa01529abea4ede, 0x0, - 0xbfdff9e33445e4a0, 0x0, - 0xbfe5c5cf8a804e70, 0x0, - 0xbfde432420bd412a, 0x0, - 0xbf9193fd0767028b, 0x0, - 0x3fdc310d04b9d5e7, 0x0, - 0x3fe7f2eefb331f87, 0x0, - 0x3fda8c57568c4be1, 0x0, - 0xbf94cdd88259b1d9, 0x0, - 0xbfe0b0e35637e56d, 0x0, - 0xbfe5f4bd20811e6f, 0x0, - 0xbfde962a2ae6193d, 0x0, - 0xbfa7143941d9552d, 0x0, - 0x3fe0b0c24bbc4aac, 0x0, - 0x3fe76b0a9e30dae4, 0x0, - 0x3fe0601f6d00ec5f, 0x0, - 0xbfa54b8fd534ba52, 0x0, - 0xbfe104089a07d153, 0x0, - 0xbfe668ea738ca652, 0x0, - 0xbfdbfade183652a0, 0x0, - 0x3fa87d33dbb098b4, 0x0, - 0x3fdd4d4dd3298b64, 0x0, - 0x3fe51e7fde630be2, 0x0, - 0x3fdc3797310c783d, 0x0, - 0x3fb0885a5f11b836, 0x0, - 0xbfdfa8c46f38575d, 0x0, - 0xbfe410fd477b6c33, 0x0, - 0xbfde1b10b1338829, 0x0, - 0x3f99789dc5aac98c, 0x0, - 0x3fe29b4464e12259, 0x0, - 0x3fe4e351f0660cf4, 0x0, - 0x3fda1433a21cb511, 0x0, - 0xbfa6c5f2e626f9fc, 0x0, - 0xbfe206a4686d603f, 0x0, - 0xbfe442f538d19bc1, 0x0, - 0xbfe0bcadff7c5931, 0x0, - 0x3fb7db649151d492, 0x0, - 0x3fdfb9d6be8acc90, 0x0, - 0x3fe715aa01bcf8b7, 0x0, - 0x3fdbd27318b6668c, 0x0, - 0x3f83c449df72a06f, 0x0, - 0xbfe0e3855debbd3e, 0x0, - 0xbfe49fda7e92df21, 0x0, - 0xbfe0673e49217310, 0x0, - 0x3f8865660c605fbc, 0x0, - 0x3fe055c423e491de, 0x0, - 0x3fe7d6d36211d71b, 0x0, - 0x3fe25501b652546c, 0x0, - 0xbfb2b2bc2196bd16, 0x0, - 0xbfe218169a6a7f5c, 0x0, - 0xbfe7e3c43563cd5f, 0x0, - 0xbfe20c3cfef97d5c, 0x0, - 0x3fc4bbf7f5ff5c7b, 0x0, - 0x3fe30d0ccdf6de62, 0x0, - 0x3fe791a0b5bf63b8, 0x0, - 0x3fde3882550b3d46, 0x0, - 0xbf96f9212cb69612, 0x0, - 0xbfdde3fe90f9f7ef, 0x0, - 0xbfe8a2f993c89836, 0x0, - 0xbfdfddd6a176256a, 0x0, - 0xbf7f178564c73c00, 0x0, - 0x3fdfb21eebdf73a7, 0x0, - 0x3fe5d806432a4ba6, 0x0, - 0x3fe1aaaf36224c2f, 0x0, - 0xbf7420f0f488cc9c, 0x0, - 0xbfe157b2399c52ec, 0x0, - 0xbfe4226ebf896a3e, 0x0, - 0xbfdf4416fb0af197, 0x0, - 0x3f95fe6f68be67ae, 0x0, - 0x3fe04214d5ceba71, 0x0, - 0x3fe4d1507644fd86, 0x0, - 0x3fe0531c78dd4996, 0x0, - 0xbf8b7fcbe498977d, 0x0, - 0xbfe07bd99cf5f219, 0x0, - 0xbfe5b8f0fe85ac71, 0x0, - 0xbfde480d14b41910, 0x0, - 0xbf6b288c9fbaf8e8, 0x0, - 0x3fe0924e62ed240f, 0x0, - 0x3fe640ccaeae54c9, 0x0, - 0x3fde172b870c4e99, 0x0, - 0x3fa1a8d93e30cb98, 0x0, - 0xbfe029dde3676e69, 0x0, - 0xbfe5c8c7919b2393, 0x0, - 0xbfda8e89cb6eb1f4, 0x0, - 0xbfa4d8c067a84715, 0x0, - 0x3fdf7b5de16f6dcc, 0x0, - 0x3fe2fb6b2b63afa4, 0x0, - 0x3fe2df7300609a05, 0x0, - 0x3f92b33732022497, 0x0, - 0xbfe08c855669a13d, 0x0, - 0xbfe8065376b04035, 0x0, - 0xbfd72b9f13ac6c3a, 0x0, - 0xbf9bf5a521c831da, 0x0, - 0x3fe1fe6b5134447a, 0x0, - 0x3fe63bee7f08a7ad, 0x0, - 0x3fd6abb5d4a88fad, 0x0, - 0xbf319e44a4c3483b, 0x0, - 0xbfdd47cb22b8b9e2, 0x0, - 0xbfe6224baf006055, 0x0, - 0xbfe15da26a8eec51, 0x0, - 0xbfc023bc4eaf3d39, 0x0, - 0x3fde52dd7ae109e5, 0x0, - 0x3fe892d8fba7a3f7, 0x0, - 0x3fdcfbaf1e8fafae, 0x0, - 0x3fb510f426ceb833, 0x0, - 0xbfd991c03f263b48, 0x0, - 0xbfe63a145faf1a40, 0x0, - 0xbfda9510c64543bb, 0x0, - 0xbfb5e529ae267ea3, 0x0, - 0x3fe01b79266fdf21, 0x0, - 0x3fe4161645ab447c, 0x0, - 0x3fdf51c250a17aea, 0x0, - 0x3fbf1e2104e63cc7, 0x0, - 0xbfe0b302bc9f4a10, 0x0, - 0xbfe581fd3aff5429, 0x0, - 0xbfd5d394370bb8bc, 0x0, - 0x3f91df5a508d32fc, 0x0, - 0x3fe1a5a64998f490, 0x0, - 0x3fe475b29b1abe4e, 0x0, - 0x3fdf528aee3795f7, 0x0, - 0xbf83407f8cf4a536, 0x0, - 0xbfe17d9c71736ea9, 0x0, - 0xbfe3e3a603d42bc6, 0x0, - 0xbfdedd42851c0975, 0x0, - 0xbfa99d2b40c4ccfb, 0x0, - 0x3fdfbb58ebe20d3d, 0x0, - 0x3fe47d943897fcd5, 0x0, - 0x3fe050ac1e022858, 0x0, - 0x3f7f56a8ac97d216, 0x0, - 0xbfdd7d8213ebcb9a, 0x0, - 0xbfe72645c8251964, 0x0, - 0xbfe2760b0d3ea44a, 0x0, - 0x3fb3fccdbacaafc0, 0x0, - 0x3fdfed007621430a, 0x0, - 0x3fe4a82d484e3be1, 0x0, - 0x3fda8bfd0c9ba9c8, 0x0, - 0xbf8551d8f38fc533, 0x0, - 0xbfde325f7d6687ab, 0x0, - 0xbfe678dc890b3300, 0x0, - 0xbfe4770bb5a11c58, 0x0, - 0xbfa46ca9f0adaf63, 0x0, - 0x3fdf48ac34bc11ee, 0x0, - 0x3fe479df31d2c32c, 0x0, - 0x3fdd5e7ea44cf1cc, 0x0, - 0xbfb2543c64ffcac6, 0x0, - 0xbfdda8350f1852e9, 0x0, - 0xbfe54e0f007fc602, 0x0, - 0xbfdc455ddb37ef4b, 0x0, - 0xbfb63bc443be2663, 0x0, - 0x3fe100ee7e6cc273, 0x0, - 0x3fe54a2ac4f3cb6c, 0x0, - 0x3fdf2a8644d4de85, 0x0, - 0x3fb5637e3b4c47ca, 0x0, - 0xbfde16c2fdafe758, 0x0, - 0xbfe8038f66e74330, 0x0, - 0xbfe2594492864a19, 0x0, - 0xbf9d649da6f3d799, 0x0, - 0x3fe06361b84612a3, 0x0, - 0x3fe6e414f511fa20, 0x0, - 0x3fe2c748e8ba919f, 0x0, - 0xbf834ca7bd7e8175, 0x0, - 0xbfdb61c4afaa1130, 0x0, - 0xbfe634b797c5b4e7, 0x0, - 0xbfdb7b7418c55716, 0x0, - 0xbfaab1ce7277362f, 0x0, - 0x3fe0076094c7d0a1, 0x0, - 0x3fe6e2d9d90a37f2, 0x0, - 0x3fdfe8c9d752380e, 0x0, - 0x3fae4a530b9ec45e, 0x0, - 0xbfe23a0256d20a06, 0x0, - 0xbfe8ee986e0749f8, 0x0, - 0xbfe0160069f3a6cc, 0x0, - 0xbfa2f62a183f921d, 0x0, - 0x3fe010ab0fd0bd70, 0x0, - 0x3fe59e51d5bf4fa2, 0x0, - 0x3fdfd57209aa1ff0, 0x0, - 0x3fb38cf60a1f86e3, 0x0, - 0xbfe153050cbcd101, 0x0, - 0xbfe716eb6fe0ad08, 0x0, - 0xbfdedfdafb03834b, 0x0, - 0xbfad321424b61592, 0x0, - 0x3fdd63313399979a, 0x0, - 0x3fe7288024758077, 0x0, - 0x3fe3269aafae4a50, 0x0, - 0xbf9b65ee18e2b3b5, 0x0, - 0xbfde8ffa54f4540f, 0x0, - 0xbfe59f8143c882fe, 0x0, - 0xbfe1f33e37eae157, 0x0, - 0xbf8a23be4cffe76b, 0x0, - 0x3fe0e2bce0967243, 0x0, - 0x3fe8c3349f97aa39, 0x0, - 0x3fdc7546d1ebfdba, 0x0, - 0x3fb1a1dd0896aa75, 0x0, - 0xbfe0be8db3e47d0f, 0x0, - 0xbfe54482efe89edf, 0x0, - 0xbfe078b0e5ac5c80, 0x0, - 0x3fb32ce34beacb2e, 0x0, - 0x3fdc720db6e6e4ea, 0x0, - 0x3fe61ed2669c151b, 0x0, - 0x3fe006f1d4f10aec, 0x0, - 0x3f828680f2a53202, 0x0, - 0xbfdef870b4c85533, 0x0, - 0xbfe4ee37ebd3be9e, 0x0, - 0xbfe171c785a65943, 0x0, - 0x3f941342c1d822d1, 0x0, - 0x3fdc46bdff61fc00, 0x0, - 0x3fe84bd73044e9f4, 0x0, - 0x3fdeecaf00961cb3, 0x0, - 0xbfb737b5a3d3755c, 0x0, - 0xbfdb8aa8e1df49ae, 0x0, - 0xbfe571b564ae0c8c, 0x0, - 0xbfdc08c9fbf4759f, 0x0, - 0x3f9ca230b5122b26, 0x0, - 0x3fe0f65d56333e44, 0x0, - 0x3fe47710ab108dce, 0x0, - 0x3fdd2de762e97ee4, 0x0, - 0xbfb2de41c9f27834, 0x0, - 0xbfe307ce63dd017c, 0x0, - 0xbfe4f33c1194127b, 0x0, - 0xbfddbf878b2f4e4a, 0x0, - 0x3fb73f4c5594f39b, 0x0, - 0x3fdfec12d10fdd91, 0x0, - 0x3fe6b3dd6f497dea, 0x0, - 0x3fe0c1cd92ddc102, 0x0, - 0x3f86302033b94d59, 0x0, - 0xbfe022e9985af08d, 0x0, - 0xbfe742b20e166194, 0x0, - 0xbfe0d8a223fe3634, 0x0, - 0xbfb4577ac6d1b41d, 0x0, - 0x3fdee4a3fc9f7458, 0x0, - 0x3fe7e6192af6d50e, 0x0, - 0x3fdeeae6986c880a, 0x0, - 0xbf65de1bbf1d3b19, 0x0, - 0xbfe138344a9f4e87, 0x0, - 0xbfe63b1e0de81e03, 0x0, - 0xbfe1532630969d8f, 0x0, - 0xbfa73bfa22d5394f, 0x0, - 0x3fd94e8dda30d496, 0x0, - 0x3fe640002fa0c0c1, 0x0, - 0x3fe079e93a40af98, 0x0, - 0xbfa283504a4bd3e1, 0x0, - 0xbfdb64c7951ac0e4, 0x0, - 0xbfe558a991bd17cc, 0x0, - 0xbfd98fd8ecc9f858, 0x0, - 0xbf85224e05503dd3, 0x0, - 0x3fe004b16482261e, 0x0, - 0x3fe645abd5b685ed, 0x0, - 0x3fdd5a37aff79a0d, 0x0, - 0x3fa1465c089c63f2, 0x0, - 0xbfe27ff86eb93722, 0x0, - 0xbfe6bfbd7ed9b41d, 0x0, - 0xbfe2c6cdff3331b9, 0x0, - 0xbfb1c4f7c7c21c85, 0x0, - 0x3fde4c623633a69f, 0x0, - 0x3fe6eef6a9f946c3, 0x0, - 0x3fe084aa5c3b485e, 0x0, - 0x3f91c2fe339a1cb3, 0x0, - 0xbfdcffe06561ac5c, 0x0, - 0xbfe6a953555299c2, 0x0, - 0xbfdc48929083c3f0, 0x0, - 0x3fb60b97c102b0fc, 0x0, - 0x3fdd23e995596abf, 0x0, - 0x3fe7b7db8362e8da, 0x0, - 0x3fe1830c81dd2f4d, 0x0, - 0x3fa45323799c6fe3, 0x0, - 0xbfddd867bd635b39, 0x0, - 0xbfe76e7a95333943, 0x0, - 0xbfdfc9e265c3e372, 0x0, - 0x3fa1cc3ffad8ba24, 0x0, - 0x3fdfa5de5c96ff55, 0x0, - 0x3fe59a6e18c6a1ea, 0x0, - 0x3fdcca8568a7875a, 0x0, - 0x3fa4f3ab2396ad70, 0x0, - 0xbfe04f0385442118, 0x0, - 0xbfe5568accf83194, 0x0, - 0xbfdebd252e235384, 0x0, - 0xbfa465936cbc7605, 0x0, - 0x3fdf94e138581790, 0x0, - 0x3fe5a892875e2808, 0x0, - 0x3fde0a3ab995b8a0, 0x0, - 0x3faa2b6931316c91, 0x0, - 0xbfd692d13b0345bc, 0x0, - 0xbfe760a1672c81be, 0x0, - 0xbfe0b0205a708856, 0x0, - 0x3f94d8bc757f22a3, 0x0, - 0x3fe088b637a09d81, 0x0, - 0x3fe4f88fdc0edbd2, 0x0, - 0x3fdf26c370f97ca0, 0x0, - 0x3f9d671c5e0a50ba, 0x0, - 0xbfe0107db3234527, 0x0, - 0xbfe4fee0820ec588, 0x0, - 0xbfe1bced31d5a3c3, 0x0, - 0xbf8b5f71d9920aad, 0x0, - 0x3fe0d979b5f342cf, 0x0, - 0x3fe5b9f3fd6b5cf6, 0x0, - 0x3fe0d182da0612fe, 0x0, - 0xbfbcd06d28f96e86, 0x0, - 0xbfe09ebb5a276bfd, 0x0, - 0xbfe81f37739a7146, 0x0, - 0xbfe1141c6da1d169, 0x0, - 0xbfa3b7b0f9c02a90, 0x0, - 0x3fdf9960278c06af, 0x0, - 0x3fe677ba9e7d87db, 0x0, - 0x3fe1e4f16b154edd, 0x0, - 0xbf9f4758d63d5b03, 0x0, - 0xbfda7aeb2a1516aa, 0x0, - 0xbfe79b44332281d4, 0x0, - 0xbfe18715eea2e346, 0x0, - 0x3f9ad01cfbb94697, 0x0, - 0x3fe30958e9ab0bc0, 0x0, - 0x3fe3e00088ae5dbe, 0x0, - 0x3fdbb302381b837d, 0x0, - 0x3f918668fcbec56d, 0x0, - 0xbfdff86c5d7121d1, 0x0, - 0xbfe5dd764aa288cf, 0x0, - 0xbfda7fda198e8769, 0x0, - 0x3fa587115417c6de, 0x0, - 0x3fdccd329c0eb9f0, 0x0, - 0x3fe6709c82334e6d, 0x0, - 0x3fe0350b078b846c, 0x0, - 0x3f99f45b64b67613, 0x0, - 0xbfe2907c6a25fa34, 0x0, - 0xbfe66652875a9a59, 0x0, - 0xbfe08b0078744b5c, 0x0, - 0xbfa2174bcfcdcab7, 0x0, - 0x3fd77187957c44e9, 0x0, - 0x3fe65244194f7533, 0x0, - 0x3fe05250f0a315f2, 0x0, - 0xbf5e7220cc440dd1, 0x0, - 0xbfdec63fc0916405, 0x0, - 0xbfe9e176e8e9b83e, 0x0, - 0xbfe0f2de12f1bb8d, 0x0, - 0x3f90afc9528a5bce, 0x0, - 0x3fe05585c168016e, 0x0, - 0x3fe331641f07671d, 0x0, - 0x3fe23ac557d5df3e, 0x0, - 0xbfb25e312778f548, 0x0, - 0xbfe1553f233a088e, 0x0, - 0xbfe3accf35c8de36, 0x0, - 0xbfe164a438f3fc7a, 0x0, - 0x3f800c67dee194e6, 0x0, - 0x3fe0b10f0ac2d871, 0x0, - 0x3fe7a47e79d57fbd, 0x0, - 0x3fe00dd1406415f5, 0x0, - 0x3f556cbffa811d87, 0x0, - 0xbfdedb9f58721957, 0x0, - 0xbfe56b8e0f81a909, 0x0, - 0xbfda92d0566072f7, 0x0, - 0x3fa743329f4bbe8a, 0x0, - 0x3fdcc4d6268eac0a, 0x0, - 0x3fe5d989b006779c, 0x0, - 0x3fe0a0d057b7911d, 0x0, - 0xbf8c26611f09e948, 0x0, - 0xbfe0e3331b9b86ba, 0x0, - 0xbfe58c502b1c1483, 0x0, - 0xbfdbdebc446cb8f5, 0x0, - 0x3fb6f0a0d8ef8f8d, 0x0, - 0x3fde0fbe9703bc3c, 0x0, - 0x3fe4cacddb23b9a7, 0x0, - 0x3fdd60eedddda658, 0x0, - 0xbf87ca64c286d598, 0x0, - 0xbfde40d50e023ce5, 0x0, - 0xbfe899fba6224c03, 0x0, - 0xbfde70dd63d5a8eb, 0x0, - 0x3f9aeddf518fb57c, 0x0, - 0x3fddce19d7df32b3, 0x0, - 0x3fe4b7b952f56d79, 0x0, - 0x3fe1adae2101db8b, 0x0, - 0xbf79e52e90d11cdb, 0x0, - 0xbfdffee06f1faa9f, 0x0, - 0xbfe7398d53f91a8c, 0x0, - 0xbfe023aaefe389d5, 0x0, - 0xbfc00fe960ef2634, 0x0, - 0x3fe05b46b1fa4cdd, 0x0, - 0x3fe60c38bba896b5, 0x0, - 0x3fe0ed23d1ae680d, 0x0, - 0x3fa955dfcb61ced3, 0x0, - 0xbfdf60bffc2e3327, 0x0, - 0xbfe35601df8faf29, 0x0, - 0xbfdffa5ed651e5eb, 0x0, - 0xbf9786f57ab45a36, 0x0, - 0x3fddff0ff9b920aa, 0x0, - 0x3fe6b60743b60499, 0x0, - 0x3fe0b4d7dec58ac9, 0x0, - 0x3fb813eb4c9c3d3d, 0x0, - 0xbfdc130962d15115, 0x0, - 0xbfe6e63600cead9e, 0x0, - 0xbfdfc36ce23bc72f, 0x0, - 0xbf896c9c687e3eb7, 0x0, - 0x3fdbda26aa7c20e1, 0x0, - 0x3fea8bb658b8da26, 0x0, - 0x3fe3177b26e68ed0, 0x0, - 0xbfb2471bb609db91, 0x0, - 0xbfdb2d7638ab3018, 0x0, - 0xbfe41f9f64a796d1, 0x0, - 0xbfde5ea8cffc0d72, 0x0, - 0x3fb59d644caf1cc6, 0x0, - 0x3fdaa1d837b51aa4, 0x0, - 0x3fe53d7a98202275, 0x0, - 0x3fdfcf855e5af1f3, 0x0, - 0x3f9e614258b5cc47, 0x0, - 0xbfe0230c6d0ed7e1, 0x0, - 0xbfe8f97945c87637, 0x0, - 0xbfdf06a2d6d4ce78, 0x0, - 0xbf87fcd32321fc5e, 0x0, - 0x3fdfd7a56e91dafa, 0x0, - 0x3fea59c95b5787fd, 0x0, - 0x3fded0a25ec25e26, 0x0, - 0x3f52f40e73c2b476, 0x0, - 0xbfdd9f56c744cd74, 0x0, - 0xbfe4e7907718af71, 0x0, - 0xbfdf7ff7df4ce6e5, 0x0, - 0xbfba0578be0e517f, 0x0, - 0x3fe1f4afe90fc382, 0x0, - 0x3fe7baf717182b8d, 0x0, - 0x3fe19cdeb8949a0d, 0x0, - 0x3f6ac75febe4d5a7, 0x0, - 0xbfdaa76478e5df53, 0x0, - 0xbfe6a2cbb2e2ebec, 0x0, - 0xbfdecc03954a8ab4, 0x0, - 0xbfa3f4bde6ee1e9c, 0x0, - 0x3fe03d82729d7afb, 0x0, - 0x3fe795e7cad9b583, 0x0, - 0x3fdd8c4ecaecf08a, 0x0, - 0xbfa226e5f6d3f891, 0x0, - 0xbfe0c77d9a2d39e5, 0x0, - 0xbfe49f12234d284c, 0x0, - 0xbfdaf3b00bf31ea5, 0x0, - 0xbf8ad3d1e7dd1360, 0x0, - 0x3fe062b2eea39aac, 0x0, - 0x3fe55c2d1f898761, 0x0, - 0x3fdcffac90eeb98b, 0x0, - 0x3fa370e5586b9bc5, 0x0, - 0xbfe230da6391b4f5, 0x0, - 0xbfe7b6af588c95f5, 0x0, - 0xbfda20bce951f198, 0x0, - 0x3f9875bb178201b6, 0x0, - 0x3fdbf7a51161dcd9, 0x0, - 0x3fe65edf663e76cd, 0x0, - 0x3fdce2ef007dbbc6, 0x0, - 0xbfa3eff7bbfe6028, 0x0, - 0xbfe26e693b7075b0, 0x0, - 0xbfe8688ab8ba3b3c, 0x0, - 0xbfe13a02d5e7c93b, 0x0, - 0xbf906b1dbafdde8d, 0x0, - 0x3fdd032025382d74, 0x0, - 0x3fe8a62994af90e0, 0x0, - 0x3fdf3861b4863680, 0x0, - 0x3fc3235b4ecd8932, 0x0, - 0xbfdffee7ec13ec32, 0x0, - 0xbfe8b3a1b472b1fa, 0x0, - 0xbfe152390e229dad, 0x0, - 0xbfc09b35c0e14e0d, 0x0, - 0x3fe160aaa5e06f4b, 0x0, - 0x3fe61e36d5fc5ea8, 0x0, - 0x3fe1744e0c8e3ce6, 0x0, - 0x3fb0201d6c44266c, 0x0, - 0xbfe0a9f6040341fa, 0x0, - 0xbfe86ed34b2a02d2, 0x0, - 0xbfe187c531041a28, 0x0, - 0xbfa66e9982792855, 0x0, - 0x3fe0cc00365f75b8, 0x0, - 0x3fe657d25105101f, 0x0, - 0x3fdec03a48681912, 0x0, - 0xbfa9e5226fc95cf1, 0x0, - 0xbfdf0e37eb1b22fc, 0x0, - 0xbfe4fdf9cf84cd5a, 0x0, - 0xbfe032cdc2b0ae6d, 0x0, - 0x3f8e52c1922d50f0, 0x0, - 0x3fe18176b1bedfb8, 0x0, - 0x3fe710de9e76c9c0, 0x0, - 0x3fe00ad24b70a5d9, 0x0, - 0xbfa7916cbcf6237f, 0x0, - 0xbfdca3904a8aecaf, 0x0, - 0xbfe8330706df71b0, 0x0, - 0xbfdd760c455e0671, 0x0, - 0xbf82d61fa3402e43, 0x0, - 0x3fe1252689830b00, 0x0, - 0x3fe4ce9c9743f217, 0x0, - 0x3fdbe0c144f60856, 0x0, - 0xbf818ac2d03333cc, 0x0, - 0xbfe04d6301000b52, 0x0, - 0xbfe62b4eb6788779, 0x0, - 0xbfdfba1c5e00890b, 0x0, - 0x3fb044317f1d1e11, 0x0, - 0x3fdfbae19e1e13f9, 0x0, - 0x3fe6584962a491c6, 0x0, - 0x3fe024c0174a2ebd, 0x0, - 0xbf8e43476924cd43, 0x0, - 0xbfdec169d1083b10, 0x0, - 0xbfe541f0eb828b2e, 0x0, - 0xbfe0e0795032e938, 0x0, - 0x3fa09bebb5205e91, 0x0, - 0x3fdec51dd7f9e0c2, 0x0, - 0x3fe5f780fe00ff0e, 0x0, - 0x3fe15592ee548a2e, 0x0, - 0x3fb32bc61fbc13aa, 0x0, - 0xbfd98b577a541529, 0x0, - 0xbfe67570d6af9c72, 0x0, - 0xbfe0269ce679c988, 0x0, - 0xbfa4b47268260c32, 0x0, - 0x3fe01dda6387fb57, 0x0, - 0x3fe62bdc985e465f, 0x0, - 0x3fe1cb8fbb2457c3, 0x0, - 0xbfa4984214af0013, 0x0, - 0xbfdff433969a3f26, 0x0, - 0xbfe615a8ee089950, 0x0, - 0xbfe20c4a79b14371, 0x0, - 0xbfb26416c68afc83, 0x0, - 0x3fdfa820d2be0174, 0x0, - 0x3fe771670f81316e, 0x0, - 0x3fda8464bdf1f2ee, 0x0, - 0xbf85cf81e0c1647c, 0x0, - 0xbfdb34f19fc3ca71, 0x0, - 0xbfe7943bede6f42e, 0x0, - 0xbfe184ec6f8b2388, 0x0, - 0xbfa95b830b5a96cc, 0x0, - 0x3fdcab2f36523eaa, 0x0, - 0x3fe4251b80bbe14e, 0x0, - 0x3fe302981fa9cd79, 0x0, - 0xbf7c876589c278af, 0x0, - 0xbfe03c8cc502febc, 0x0, - 0xbfe5e0c30fd08381, 0x0, - 0xbfdf003aa30939e5, 0x0, - 0xbfc02c6f27cfa3c1, 0x0, - 0x3fdf91778ebdf4f4, 0x0, - 0x3fe4b41743322506, 0x0, - 0x3fe05e03bea4279f, 0x0, - 0x3fb6a6b3ef8c8094, 0x0, - 0xbfe042b93d9574b7, 0x0, - 0xbfe68385295683d1, 0x0, - 0xbfdd4df4410c3e2a, 0x0, - 0x3faa02bab236491b, 0x0, - 0x3fe0b31664ecb137, 0x0, - 0x3fe7ce40ec85bbe1, 0x0, - 0x3fdaf4ba4a62a4e8, 0x0, - 0x3fa818f97913ec46, 0x0, - 0xbfdf3eb89bd5fa99, 0x0, - 0xbfe5da158eda479d, 0x0, - 0xbfe1a28f9caccec1, 0x0, - 0x3f834071041dde65, 0x0, - 0x3fe25a597b07c48e, 0x0, - 0x3fe33e12d94676fa, 0x0, - 0x3fe0298ed48aa0fb, 0x0, - 0xbfa4788280c74521, 0x0, - 0xbfe0d06dee82c094, 0x0, - 0xbfe68ee9b59d0999, 0x0, - 0xbfdf53bd71986df1, 0x0, - 0xbf85147de910d6b1, 0x0, - 0x3fe051ed3c314c60, 0x0, - 0x3fe76f2671a8a9b0, 0x0, - 0x3fdf5c33bfa1bda5, 0x0, - 0xbfa652fc4fd69346, 0x0, - 0xbfe04870c882b031, 0x0, - 0xbfe74d998c6f466a, 0x0, - 0xbfe159f3b0460c2d, 0x0, - 0xbf8e7cf0c33c109c, 0x0, - 0x3fe0e5cdb9f8e2e7, 0x0, - 0x3fe5cffa6a2e20a9, 0x0, - 0x3fdf03ff0f973927, 0x0, - 0x3f7c0069bf4243fb, 0x0, - 0xbfe055474aabb303, 0x0, - 0xbfe4f9ca2afd006e, 0x0, - 0xbfe037b172e4f789, 0x0, - 0xbfb0d9bf05f6ca27, 0x0, - 0x3fdae47957dd1328, 0x0, - 0x3fe66a311e4896f2, 0x0, - 0x3fdb492411b15abf, 0x0, - 0x3f7b09ee8556313e, 0x0, - 0xbfdf076b5406fe5e, 0x0, - 0xbfe2b2323dfcc556, 0x0, - 0xbfdc7762583f124a, 0x0, - 0xbf4df80634687e92, 0x0, - 0x3fe03fcb956f038a, 0x0, - 0x3fe5fc2b321bfd66, 0x0, - 0x3fdf1af12ea9a3c9, 0x0, - 0x3f910b438713e50d, 0x0, - 0xbfe1f127a669d630, 0x0, - 0xbfe73df448785f8a, 0x0, - 0xbfe02ee3d7dc3fd7, 0x0, - 0x3fa75b380267aab2, 0x0, - 0x3fd9e481be2e5739, 0x0, - 0x3fe8f78bfa261004, 0x0, - 0x3fd9246761e8e504, 0x0, - 0x3fbe868be0e85c31, 0x0, - 0xbfde18e70e3d6ff2, 0x0, - 0xbfe560784a4d8230, 0x0, - 0xbfdfa7eaee82467b, 0x0, - 0xbfb1c616c14dab96, 0x0, - 0x3fe0250216db22a9, 0x0, - 0x3fe62e523f40dac4, 0x0, - 0x3fe171dd3eff0b06, 0x0, - 0xbfb70315fe4db497, 0x0, - 0xbfe36140ffd6beb4, 0x0, - 0xbfe54892cc0f168e, 0x0, - 0xbfe164ec8402163d, 0x0, - 0xbf954ba4003ddd81, 0x0, - 0x3fdfb31ae75abf11, 0x0, - 0x3fe6fce676b58676, 0x0, - 0x3fdd985da0e11024, 0x0, - 0x3f81f744357667f7, 0x0, - 0xbfdf1f172070e813, 0x0, - 0xbfe4562e0f9b4974, 0x0, - 0xbfe00185f8c000c1, 0x0, - 0x3fa601fe5b54346a, 0x0, - 0x3fe0a83637679323, 0x0, - 0x3fe71ee4db787b86, 0x0, - 0x3fe001e85fe9c9c1, 0x0, - 0xbf82527e9dfa2246, 0x0, - 0xbfe002ea5e7c8996, 0x0, - 0xbfe6246e7eee28ee, 0x0, - 0xbfe02fb4028f59c1, 0x0, - 0x3fb1ab6a61238c46, 0x0, - 0x3fdf567dcf2c0f0a, 0x0, - 0x3fe6d78c9a1eacab, 0x0, - 0x3fddd44c40343f1a, 0x0, - 0xbf97e7ccd35115bb, 0x0, - 0xbfe0f844ad7292c2, 0x0, - 0xbfe5775201907ac7, 0x0, - 0xbfe1084735ece8db, 0x0, - 0x3fb0d24a55ea7409, 0x0, - 0x3fddc18ec4ceb49e, 0x0, - 0x3fe5e6eff780a9d5, 0x0, - 0x3fe09451903f8066, 0x0, - 0xbf98483ed5cfbf2f, 0x0, - 0xbfe1aa29f7633bf4, 0x0, - 0xbfe84a577e11beae, 0x0, - 0xbfe10055393989a7, 0x0, - 0x3f86325b5bbbb003, 0x0, - 0x3fe075264bee4d0e, 0x0, - 0x3fe5921cba455b89, 0x0, - 0x3fe04730b42f8d14, 0x0, - 0x3f896b0ee76d5560, 0x0, - 0xbfdce412e6d97e80, 0x0, - 0xbfe84494c1862ed8, 0x0, - 0xbfdad0145eaa5c31, 0x0, - 0x3fb82b686db734e0, 0x0, - 0x3fe1ea99aceaa44c, 0x0, - 0x3fe7b938ad474cc9, 0x0, - 0x3fe04dd4528e01ea, 0x0, - 0x3fb09de86d83c748, 0x0, - 0xbfe0934d865b08a2, 0x0, - 0xbfe6e564a09a0260, 0x0, - 0xbfe0c9db753911b6, 0x0, - 0xbfb1c2a43e9b89e3, 0x0, - 0x3fde55d0d4fae3c2, 0x0, - 0x3fe75cc3025ec688, 0x0, - 0x3fe1733dfb8c859d, 0x0, - 0x3fa2aca7d290cfdb, 0x0, - 0xbfde963d8a73ac44, 0x0, - 0xbfe50e2cf36a54cf, 0x0, - 0xbfe1f5cda1e3a104, 0x0, - 0x3fb04a698254c4b8, 0x0, - 0x3fe12a49835578da, 0x0, - 0x3fe6f9c5451f2948, 0x0, - 0x3fd60df3ee686980, 0x0, - 0x3f97a0f3630b3b76, 0x0, - 0xbfdbd71ffbb17044, 0x0, - 0xbfe40f5d3cc82ee9, 0x0, - 0xbfe18e51a4e606bd, 0x0, - 0xbf810b2f1585f660, 0x0, - 0x3fe0bc20cc6d897a, 0x0, - 0x3fe470744b38d003, 0x0, - 0x3fdf2c67528a71c3, 0x0, - 0x3fb3a6a0d79d55ba, 0x0, - 0xbfe02b7429596d53, 0x0, - 0xbfe6167d0ee85b6e, 0x0, - 0xbfde4465be261796, 0x0, - 0xbf86c7cdb1ebd303, 0x0, - 0x3fe0a31941df5363, 0x0, - 0x3fe6d7401e4209b5, 0x0, - 0x3fe17282bb616b12, 0x0, - 0x3f9a4871b5e8bea8, 0x0, - 0xbfdbfbcd0ccc544a, 0x0, - 0xbfe656b9af6ec970, 0x0, - 0xbfdc218f1c622243, 0x0, - 0x3fb56c9475a1c0b9, 0x0, - 0x3fe1c1b2be6d396a, 0x0, - 0x3fe4b0d3e04f44e6, 0x0, - 0x3fd9c8656e19f859, 0x0, - 0x3f726cecd2fdc895, 0x0, - 0xbfe1e2e4058a759b, 0x0, - 0xbfe66702a4ef799d, 0x0, - 0xbfe270852f67bf9e, 0x0, - 0xbf97e2349fc1d52e, 0x0, - 0x3fdcbb58fb08e79f, 0x0, - 0x3fea4f2f5a82b92b, 0x0, - 0x3fddef8d9ab57829, 0x0, - 0xbf81b29a10fea340, 0x0, - 0xbfe0cc5fc65b4e4a, 0x0, - 0xbfe9acd4ce7b8f6f, 0x0, - 0xbfdcdd4455ce8453, 0x0, - 0xbfa0c7dd53b36048, 0x0, - 0x3fdccbec616d71cd, 0x0, - 0x3fe5740a386f6450, 0x0, - 0x3fdaf29e26327454, 0x0, - 0x3f9c15b9c43326d2, 0x0, - 0xbfdf66753ff99ab2, 0x0, - 0xbfe82449b1fd47c8, 0x0, - 0xbfdea3433d086734, 0x0, - 0x3f6feb7f04717c4d, 0x0, - 0x3fdebc7e86539ef2, 0x0, - 0x3fe65afef22f0d02, 0x0, - 0x3fe37101a1f3d7b5, 0x0, - 0x3fac236ca522ba7f, 0x0, - 0xbfe3a0a7cf8aaad2, 0x0, - 0xbfe6c2c2932c8f13, 0x0, - 0xbfe0852cb8c09b5b, 0x0, - 0xbf9e0cafbd99fafa, 0x0, - 0x3fe155207a7cb1ae, 0x0, - 0x3fe4fdaae289a298, 0x0, - 0x3fe197434fca9a9f, 0x0, - 0x3fa7bd029c5a2538, 0x0, - 0xbfe135520c6bccdd, 0x0, - 0xbfe5ddb53d0cb0d3, 0x0, - 0xbfdbf59f976e7e60, 0x0, - 0x3f7de626d124f77f, 0x0, - 0x3fe0f41b898fe644, 0x0, - 0x3fe63bb524ae93b2, 0x0, - 0x3fe13ec5d51370ec, 0x0, - 0x3f9ac70288cadb73, 0x0, - 0xbfdddfe5113b894b, 0x0, - 0xbfe5b1c3e3c8734f, 0x0, - 0xbfd944bcc8d7baf9, 0x0, - 0xbfaa8e4cdd3593ff, 0x0, - 0x3fe06680f91ae556, 0x0, - 0x3fe64fe6a6a90510, 0x0, - 0x3fdfed7c64ffbb94, 0x0, - 0xbf61143ce7d02494, 0x0, - 0xbfdb8112aa6b40d0, 0x0, - 0xbfe64411ee32b144, 0x0, - 0xbfe4ce2278d826db, 0x0, - 0xbf925b049cec44d8, 0x0, - 0x3fdd1a21d24e8708, 0x0, - 0x3fe6cda51d1ae9e9, 0x0, - 0x3fe1737a8a852bb3, 0x0, - 0x3f881b45f5bd042c, 0x0, - 0xbfdc414124d005de, 0x0, - 0xbfe49bca050bb1c4, 0x0, - 0xbfda37427367f6a0, 0x0, - 0x3f91e54552b6f5a9, 0x0, - 0x3fe12bc8eac7e5aa, 0x0, - 0x3fe5c3a7f1f3eb24, 0x0, - 0x3fe05c3694f34415, 0x0, - 0xbf8cf3bc5f92e9bf, 0x0, - 0xbfe0bc3dca0e6881, 0x0, - 0xbfe6d00702d78529, 0x0, - 0xbfdf9836c8980a81, 0x0, - 0xbfa6de4cce433031, 0x0, - 0x3fd9c217fb7a47ae, 0x0, - 0x3fe6bacd399c5319, 0x0, - 0x3fdef84201fdc0be, 0x0, - 0xbf653610e81d439a, 0x0, - 0xbfdc0f8439dc9140, 0x0, - 0xbfe726a26c758a58, 0x0, - 0xbfde98ed255746ac, 0x0, - 0xbf9b60a6258bbdbd, 0x0, - 0x3fdbd3442c7c650d, 0x0, - 0x3fead1801c1b03a5, 0x0, - 0x3fe1172b9b5e2d02, 0x0, - 0xbf9edbf2ce113865, 0x0, - 0xbfddf7b6b6c9310e, 0x0, - 0xbfe5fee221f39470, 0x0, - 0xbfdfe4d0db43d1c5, 0x0, - 0x3fab2553b21dac93, 0x0, - 0x3fdbf47336a43160, 0x0, - 0x3fe5c3ab2ed5b111, 0x0, - 0x3fde72eebd155293, 0x0, - 0xbfb6d0df7f6081ff, 0x0, - 0xbfe0ceb8abfad8e4, 0x0, - 0xbfe79a503a259aac, 0x0, - 0xbfdf22d12c055f36, 0x0, - 0x3fa6767a12aeab6e, 0x0, - 0x3fe1a01a6f439b7f, 0x0, - 0x3fe87fe1c9d63cc6, 0x0, - 0x3fe086144caa0285, 0x0, - 0x3f92ade830a3b094, 0x0, - 0xbfdb6f1ea5f87822, 0x0, - 0xbfe6ac4516e2d545, 0x0, - 0xbfe1bf8fe76c358c, 0x0, - 0xbfa3bbc15e3b9e38, 0x0, - 0x3fdf5b226a3cc62f, 0x0, - 0x3fe3d4eed36e2c96, 0x0, - 0x3fdc76d05895cfe3, 0x0, - 0x3fb730fce35d89de, 0x0, - 0xbfe0bb730c04f669, 0x0, - 0xbfe7a401e481eea4, 0x0, - 0xbfe06cd60799b09d, 0x0, - 0x3fa6d09bfadd776d, 0x0, - 0x3fddd12c7a677ee1, 0x0, - 0x3fe6de50e1d77be1, 0x0, - 0x3fdcd20d9546e045, 0x0, - 0x3fb6ed57e74668db, 0x0, - 0xbfde6130d12e9340, 0x0, - 0xbfe5c68f352d7922, 0x0, - 0xbfe070ae5b85b1ec, 0x0, - 0xbfb2dd1032361c05, 0x0, - 0x3fdd9323a528cb28, 0x0, - 0x3fe6e590cdf3ae40, 0x0, - 0x3fda6d5fa3d0f600, 0x0, - 0xbf8a4a49b2e45682, 0x0, - 0xbfe1a46f96f25c57, 0x0, - 0xbfe43cbf4510e5be, 0x0, - 0xbfded0fd51e5eb0c, 0x0, - 0x3fa033ad21aa5c92, 0x0, - 0x3fdd78833e572325, 0x0, - 0x3fe4964bfef2ba98, 0x0, - 0x3fdc14fc56791707, 0x0, - 0x3faf87146501efe4, 0x0, - 0xbfe099c33aeb92d4, 0x0, - 0xbfe97902dc56cceb, 0x0, - 0xbfe06267b66aca74, 0x0, - 0x3f9d72563d4b0fec, 0x0, - 0x3fdf0e84c7a1cbc2, 0x0, - 0x3fe62137b502b559, 0x0, - 0x3fe01c6dd4c15433, 0x0, - 0xbfb249e99d6adf3a, 0x0, - 0xbfdfcf347c314bc7, 0x0, - 0xbfe69ce6f7088920, 0x0, - 0xbfde3641c1937807, 0x0, - 0x3f96220513774e99, 0x0, - 0x3fe24d69560d7acc, 0x0, - 0x3fe7cd99b71be115, 0x0, - 0x3fdd71d47ff73761, 0x0, - 0x3fa23229681fc4a9, 0x0, - 0xbfe0d8aada04ce23, 0x0, - 0xbfe692ee387dd8a8, 0x0, - 0xbfe011525d0aa126, 0x0, - 0xbfa623a0fdaf0105, 0x0, - 0x3fdbd9df7e934bf6, 0x0, - 0x3fe4ab420c7d3b9f, 0x0, - 0x3fdaee5e1611772d, 0x0, - 0xbfa2083403eeb94c, 0x0, - 0xbfe1094c17a31ae2, 0x0, - 0xbfe6c7753693d4c1, 0x0, - 0xbfd9ee39605c45ec, 0x0, - 0x3f835de9107b1a57, 0x0, - 0x3fe0372df688638b, 0x0, - 0x3fe6f38dc76ad3c0, 0x0, - 0x3fdcd07fc44abac6, 0x0, - 0x3fb0216757de8521, 0x0, - 0xbfe00b7be82e4e6c, 0x0, - 0xbfe6be38a9da7fdb, 0x0, - 0xbfe0ad6d706d546f, 0x0, - 0x3f9b11b64ef758a1, 0x0, - 0x3fdda5223f22212b, 0x0, - 0x3fe625000f35da6c, 0x0, - 0x3fe0deb2e36b7b13, 0x0, - 0xbfb4f9468211c3ee, 0x0, - 0xbfe13964ac887975, 0x0, - 0xbfe6f13c37813884, 0x0, - 0xbfdf4db9feedb31b, 0x0, - 0xbfaf19fc2d4e8097, 0x0, - 0x3fdcd003d0eb6e0e, 0x0, - 0x3fe69d739c5b3605, 0x0, - 0x3fdca397b971c98e, 0x0, - 0xbf950a407eccdd7b, 0x0, - 0xbfdddfc4885fcfdb, 0x0, - 0xbfe6ab1c35230821, 0x0, - 0xbfdd3f0546049184, 0x0, - 0x3fa448d580842145, 0x0, - 0x3fde3e4bb2cc2e32, 0x0, - 0x3fe68424dc301893, 0x0, - 0x3fdac33f2803cf21, 0x0, - 0x3fab4243ab65f9ac, 0x0, - 0xbfe061c4e0e779a2, 0x0, - 0xbfe7e272b33558b8, 0x0, - 0xbfe04e807c27e94a, 0x0, - 0xbf9bcdfb7c899e82, 0x0, - 0x3fe06c8da371fd94, 0x0, - 0x3fe92ce888585596, 0x0, - 0x3fdb2f48a1fe58e5, 0x0, - 0x3fa03b8eb27d4584, 0x0, - 0xbfe22c5e79e2f2d2, 0x0, - 0xbfe55c88c7c3a0d2, 0x0, - 0xbfe2c4e20639e186, 0x0, - 0x3fafbea490ee29bd, 0x0, - 0x3fdf345e3aeaa527, 0x0, - 0x3fe51a7a29010228, 0x0, - 0x3fe0abeb8323118f, 0x0, - 0xbf8fb9276168791f, 0x0, - 0xbfdbf10ef405d75b, 0x0, - 0xbfe9097e9e08bfde, 0x0, - 0xbfe119c9d1114ea9, 0x0, - 0x3f76514ae5d853e1, 0x0, - 0x3fe1cdd3d48e6cdd, 0x0, - 0x3fe68db7bdc0a179, 0x0, - 0x3fdc5bd663dd0e52, 0x0, - 0xbf9e2973bb7e4aec, 0x0, - 0xbfe0117c12752dce, 0x0, - 0xbfe65de1977cf835, 0x0, - 0xbfda423e411677f2, 0x0, - 0xbfab78978edeb3fc, 0x0, - 0x3fdd89473fd927f9, 0x0, - 0x3fe7ae304b09a43b, 0x0, - 0x3fe1658e245eb232, 0x0, - 0xbfa6bfeee58b865a, 0x0, - 0xbfe117442e4f70cc, 0x0, - 0xbfe46544bd26f8e4, 0x0, - 0xbfe1f4211189d732, 0x0, - 0x3fb5f0a1bf531a33, 0x0, - 0x3fe26d7fd99af811, 0x0, - 0x3fe7e0482af2e001, 0x0, - 0x3fdccdc7e83e8329, 0x0, - 0x3f92225de0761f4c, 0x0, - 0xbfe108ba46185e62, 0x0, - 0xbfe5760aed583922, 0x0, - 0xbfe13e458f511e61, 0x0, - 0xbfa4e30edaa498dd, 0x0, - 0x3fe2b8226e2511c4, 0x0, - 0x3fe899849eb0b1c7, 0x0, - 0x3fdcf6316cbf3910, 0x0, - 0xbf8632ef4e72f996, 0x0, - 0xbfe3b43ab88ceeb2, 0x0, - 0xbfe612ca1e2e730e, 0x0, - 0xbfe0225df066ee5a, 0x0, - 0xbfaf1922619c16e3, 0x0, - 0x3fe20fd525752327, 0x0, - 0x3fe32cce31c2c620, 0x0, - 0x3fe124b373b41d22, 0x0, - 0xbf9ee4f117da4b44, 0x0, - 0xbfdf25b0be716c63, 0x0, - 0xbfe64d8763fe6633, 0x0, - 0xbfdcb68e152df8b6, 0x0, - 0xbfb3b82d768dd035, 0x0, - 0x3fe179610c5fb989, 0x0, - 0x3fe56f608b0740f5, 0x0, - 0x3fde8c1863f78455, 0x0, - 0xbfb2cc3135725ff4, 0x0, - 0xbfdc575228cb6d1e, 0x0, - 0xbfe3c3540bd2f92e, 0x0, - 0xbfda008943db8271, 0x0, - 0x3f785eec956f75f6, 0x0, - 0x3fde42aa1e059f1e, 0x0, - 0x3fe7cb175c5af4b8, 0x0, - 0x3fdfe63db25a1034, 0x0, - 0xbfa97a5a756cf564, 0x0, - 0xbfdfcd47918af3a9, 0x0, - 0xbfe6d2ffc746241b, 0x0, - 0xbfde55221c208d85, 0x0, - 0x3f822f8bfb816b2d, 0x0, - 0x3fe0522f9edec64b, 0x0, - 0x3fe62420fc2a1205, 0x0, - 0x3fda0d898bc46bfb, 0x0, - 0xbfa35222c091561c, 0x0, - 0xbfe2626b80223414, 0x0, - 0xbfe5380fa6699f0d, 0x0, - 0xbfdca97d371165f4, 0x0, - 0xbf8ccd3ae6c8bb6d, 0x0, - 0x3fdd5d5b1deda31c, 0x0, - 0x3fe626fcb5169832, 0x0, - 0x3fdffe81a042b7c5, 0x0, - 0x3f7ceb8a62c408e4, 0x0, - 0xbfd8813ad4ec5539, 0x0, - 0xbfe6dd0f347d85b5, 0x0, - 0xbfe1fbf6b1e6f943, 0x0, - 0xbfa561eb4a59577a, 0x0, - 0x3fd99ab3ffe190b5, 0x0, - 0x3fe63ff30d0f881a, 0x0, - 0x3fdc93332b3af1b5, 0x0, - 0x3f92733a3b3b8c4f, 0x0, - 0xbfde1064267e9562, 0x0, - 0xbfe5789382d3332d, 0x0, - 0xbfe02f26758c7ecb, 0x0, - 0xbf8fff82bdb4afff, 0x0, - 0x3fe099f658abb7d3, 0x0, - 0x3fe6dc0fef840fc0, 0x0, - 0x3fdd261253a0d662, 0x0, - 0xbfab4b4d6151ac5d, 0x0, - 0xbfe117f2455ae306, 0x0, - 0xbfe69832ce241e00, 0x0, - 0xbfe361a46975f191, 0x0, - 0xbfa9efe7262bbdae, 0x0, - 0x3fda9fe8f6702785, 0x0, - 0x3fe5a568111b75b6, 0x0, - 0x3fe062a101757a64, 0x0, - 0xbf6666b383614090, 0x0, - 0xbfe14c8f20132b38, 0x0, - 0xbfe56b5c8e044922, 0x0, - 0xbfdf7a9f48cd36fa, 0x0, - 0xbfad33c13be1651e, 0x0, - 0x3fe10ed720ce28fe, 0x0, - 0x3fe63dc84025d691, 0x0, - 0x3fd8b03fe21bcb7a, 0x0, - 0xbf99688243881214, 0x0, - 0xbfe0251f6edc5efa, 0x0, - 0xbfe6a2731bbb5dac, 0x0, - 0xbfe05fb2f9ba3809, 0x0, - 0xbf54ccb2543c949e, 0x0, - 0x3fdf9dcdeed5be1a, 0x0, - 0x3fe7ddb4a0207fd0, 0x0, - 0x3fde67b87717eadc, 0x0, - 0x3fa084ca0793759a, 0x0, - 0xbfdffd5ebb9aca78, 0x0, - 0xbfe27c8838eb446f, 0x0, - 0xbfe1bed5eb591bae, 0x0, - 0x3f503b0ba9406be8, 0x0, - 0x3fe3bec8c75e66aa, 0x0, - 0x3fe8aa4bd011035c, 0x0, - 0x3fde70dd85d9b3b0, 0x0, - 0xbfae104b19160f8d, 0x0, - 0xbfe121fb906fd7e6, 0x0, - 0xbfe967ed75c5b795, 0x0, - 0xbfddafb27b326246, 0x0, - 0xbfb0ea14938b2c6a, 0x0, - 0x3fdd9b86fd22df02, 0x0, - 0x3fe5675d41e70141, 0x0, - 0x3fde433d8652614a, 0x0, - 0xbfb20b6f5cf77a5e, 0x0, - 0xbfe00d0777071366, 0x0, - 0xbfe595278e390fe1, 0x0, - 0xbfe22fbaacbe0ec3, 0x0, - 0xbf7eddb2a931a037, 0x0, - 0x3fdfa4dee003460b, 0x0, - 0x3fe48949d49bf595, 0x0, - 0x3fdfe0fa5d92cb19, 0x0, - 0x3fac89ca0278f8fb, 0x0, - 0xbfdcec3a100a88b1, 0x0, - 0xbfe60e68830be277, 0x0, - 0xbfe0df64c2a0f651, 0x0, - 0xbf9137403ba1d6ed, 0x0, - 0x3fdb1ed97e5e34a5, 0x0, - 0x3fe565541b7d70c5, 0x0, - 0x3fe012cf388c7666, 0x0, - 0x3fbdea891dc7ec0a, 0x0, - 0xbfdc55f2ec69abcd, 0x0, - 0xbfe5a9e729f9c61d, 0x0, - 0xbfd9c9b97aea1621, 0x0, - 0xbfade623c6432c1d, 0x0, - 0x3fddf7e31be564e6, 0x0, - 0x3fe4e264a7872cde, 0x0, - 0x3fe27a5ebb9db93a, 0x0, - 0xbfb443ec796f21b1, 0x0, - 0xbfdfeff7134a6046, 0x0, - 0xbfe4f4d26c70fc52, 0x0, - 0xbfde0f41298553ff, 0x0, - 0x3f8e09d828265d4f, 0x0, - 0x3fe180156350c948, 0x0, - 0x3fe808994a3f0f23, 0x0, - 0x3fdf5c1166eff8bf, 0x0, - 0x3f742d4ce6366252, 0x0, - 0xbfe1a191e6fa610b, 0x0, - 0xbfe89507d94db855, 0x0, - 0xbfddbb4576d57c52, 0x0 + 0x3fb3235eefec727b, 0x0, + 0x3fde770b6d69a86b, 0x0, + 0x3fe6bef61983a484, 0x0, + 0x3fe125e160576455, 0x0, + 0xbf9cb7ca5b76dc36, 0x0, + 0xbfd9d6745672e132, 0x0, + 0xbfe6b2db5b3fb489, 0x0, + 0xbfde4599e8fafb41, 0x0, + 0xbf837a86990d6b62, 0x0, + 0x3fdc12893b961eff, 0x0, + 0x3fe3e6196d9278fe, 0x0, + 0x3fe17d708e861f79, 0x0, + 0xbf708d3a9ddcca43, 0x0, + 0xbfde1a2368220f26, 0x0, + 0xbfe616cd5d5bd55f, 0x0, + 0xbfe067ec328a0233, 0x0, + 0xbf88835f6a76fd15, 0x0, + 0x3fe08a8f5a561d66, 0x0, + 0x3fe8af9f926b1f86, 0x0, + 0x3fdabec7b4ebcfe9, 0x0, + 0x3fa6fd7f2c94796a, 0x0, + 0xbfe3e5ff32f6c8a0, 0x0, + 0xbfe554e419713e5c, 0x0, + 0xbfe16223eab92838, 0x0, + 0x3f91f67b7710ae9a, 0x0, + 0x3fe2b32b8efb2cd6, 0x0, + 0x3fe681c4ff96fa27, 0x0, + 0x3fdf1c8aad9eb8c7, 0x0, + 0x3fb4fb00ebd9d715, 0x0, + 0xbfe1c03eca3af99c, 0x0, + 0xbfe6e31142c72f8b, 0x0, + 0xbfe03e4d1d8cafc6, 0x0, + 0xbf8a68af3002fd2b, 0x0, + 0x3fde7d295c88ff59, 0x0, + 0x3fe6c79cdc80a046, 0x0, + 0x3fdb16bf308cc816, 0x0, + 0xbf97b01424a74fc5, 0x0, + 0xbfe194c37b34e29b, 0x0, + 0xbfe6f17fb868d76d, 0x0, + 0xbfe07d70dcb141ed, 0x0, + 0x3fb4f817a1b8cdbd, 0x0, + 0x3fe11acdfc04ac05, 0x0, + 0x3fe5b765a41a67b1, 0x0, + 0x3fdc9066edd53742, 0x0, + 0x3f85f857818e3394, 0x0, + 0xbfe008aa971eb91d, 0x0, + 0xbfe64cc4eded774c, 0x0, + 0xbfe1b9cef9eb18c9, 0x0, + 0x3f9d45f8a5839433, 0x0, + 0x3fe147c415c551ef, 0x0, + 0x3fe589cfe7345b26, 0x0, + 0x3fe33add576b925c, 0x0, + 0x3fb72f9b39d61065, 0x0, + 0xbfde04718e7408b4, 0x0, + 0xbfe64ccebd7028fd, 0x0, + 0xbfe12d39cbd3aa9e, 0x0, + 0x3f81aaea6a49dd8a, 0x0, + 0x3fdc88a4ff3235bb, 0x0, + 0x3fe602b667bd38ed, 0x0, + 0x3fe179abbb7d0fa2, 0x0, + 0xbfaa2cee7aba9d37, 0x0, + 0xbfe1178008ecf738, 0x0, + 0xbfe4a9636a02dfc9, 0x0, + 0xbfe001c489413d67, 0x0, + 0xbfb80b9a2f93e4ca, 0x0, + 0x3fdca87f6d0260c0, 0x0, + 0x3fe6a1a41efddfd6, 0x0, + 0x3fe0591cf44c3315, 0x0, + 0x3fa6f2d341642595, 0x0, + 0xbfe02fe07cb9e40b, 0x0, + 0xbfe6c0b9feba1760, 0x0, + 0xbfddba7b3d4f3572, 0x0, + 0xbfb9c8b2389013be, 0x0, + 0x3fe21097544e8e83, 0x0, + 0x3fe8076df37b77d3, 0x0, + 0x3fdd48300040a143, 0x0, + 0xbfaba5b34e14230e, 0x0, + 0xbfd6c3d2380e6730, 0x0, + 0xbfe6e63f210299bf, 0x0, + 0xbfdfad6fe0e5d4c6, 0x0, + 0xbfb79e001503ffae, 0x0, + 0x3fda255d3b7c04c4, 0x0, + 0x3fe8a8952fbcaa71, 0x0, + 0x3fdec42a3089e75a, 0x0, + 0x3faffb24b83eb172, 0x0, + 0xbfdf316ad7c344f2, 0x0, + 0xbfe6147084eb7d29, 0x0, + 0xbfe25ea47af18e7b, 0x0, + 0xbf737b5074206bca, 0x0, + 0x3fd8e11dab978b54, 0x0, + 0x3fe6950f45920a39, 0x0, + 0x3fdd302ef30bca1e, 0x0, + 0xbfb0037f3d70e32f, 0x0, + 0xbfe2763fd590ed8a, 0x0, + 0xbfe8f32c54383231, 0x0, + 0xbfdade37c0c80213, 0x0, + 0xbf9d0b4fae66add9, 0x0, + 0x3fe0381966099d3d, 0x0, + 0x3fe6d0c163159723, 0x0, + 0x3fe0658d76021dc4, 0x0, + 0x3f97ebf0247e1317, 0x0, + 0xbfdf9cad741cb1bd, 0x0, + 0xbfe41ba96823d357, 0x0, + 0xbfdf90f87cded80d, 0x0, + 0xbf91b635f3a34850, 0x0, + 0x3fe149b20ccf4130, 0x0, + 0x3fe479a08eac5902, 0x0, + 0x3fe04127b13c4af9, 0x0, + 0xbfa43e8a60ca98ca, 0x0, + 0xbfde2a12dd267cb1, 0x0, + 0xbfe37f6b4fc03c89, 0x0, + 0xbfde82b2e698b6b2, 0x0, + 0xbfb66df20a29f01e, 0x0, + 0x3fe269d4f3a06088, 0x0, + 0x3fea914db32b3292, 0x0, + 0x3fe01d935dc62ad6, 0x0, + 0x3f989815579c8450, 0x0, + 0xbfde81aaff6d87a3, 0x0, + 0xbfe84f48a75bce5d, 0x0, + 0xbfdf977b869149a7, 0x0, + 0x3f773168709cfded, 0x0, + 0x3fdfe095dc9e31dd, 0x0, + 0x3fe61657c73988aa, 0x0, + 0x3fe1b407e74dd210, 0x0, + 0x3f7dc17dbbbb5118, 0x0, + 0xbfe08fccfca708f8, 0x0, + 0xbfe68af5da80c508, 0x0, + 0xbfded517a2227467, 0x0, + 0x3fc089ba7ca39680, 0x0, + 0x3fe1ccace343fd86, 0x0, + 0x3fe47641acfbb7cc, 0x0, + 0x3fdd659a4395e2fc, 0x0, + 0xbfbc770446da8319, 0x0, + 0xbfe22a9c20326da7, 0x0, + 0xbfe7cf129c56e2d4, 0x0, + 0xbfdd697bf2b027a2, 0x0, + 0x3f941cb98de4ca73, 0x0, + 0x3fe065ffdeed9dad, 0x0, + 0x3fe333519fe26330, 0x0, + 0x3fdfb1d09654c99b, 0x0, + 0xbf9ebe70e7af4022, 0x0, + 0xbfe11ec50b693c20, 0x0, + 0xbfea1543799fe48b, 0x0, + 0xbfd7855e16e9fe22, 0x0, + 0xbfa6c028bfa1589c, 0x0, + 0x3fded6e2d5352825, 0x0, + 0x3fe60381481a8606, 0x0, + 0x3fdc9321a2c5855e, 0x0, + 0x3f94a12a9042b159, 0x0, + 0xbfdd9da183b74bac, 0x0, + 0xbfe56eed6857cb28, 0x0, + 0xbfe14c56a0b77f11, 0x0, + 0x3fae004e1e375942, 0x0, + 0x3fdf98bf4b350b80, 0x0, + 0x3fe7976c9ce8b5ec, 0x0, + 0x3fe2477e2611c041, 0x0, + 0xbf4fdcb4f0f0d3b1, 0x0, + 0xbfe0e8399074a0ed, 0x0, + 0xbfe5fa53736deb2e, 0x0, + 0xbfe018f8f57969c0, 0x0, + 0xbf89a11a7ea6fb35, 0x0, + 0x3fe1aa4f7ba14af6, 0x0, + 0x3fe4f894b900666b, 0x0, + 0x3fe054b652eaf0fe, 0x0, + 0xbf8983036acabb6e, 0x0, + 0xbfdff5c11d045044, 0x0, + 0xbfe5add08349c344, 0x0, + 0xbfdf187d9bac731d, 0x0, + 0xbf6ae36e2c42e619, 0x0, + 0x3fde5efa1a739892, 0x0, + 0x3fe80a081d9c48ab, 0x0, + 0x3fddd3968487ff31, 0x0, + 0xbfb52aa4b4b82549, 0x0, + 0xbfe0e4ddff1651d2, 0x0, + 0xbfe75c32e793dd10, 0x0, + 0xbfddd2f11475c6a1, 0x0, + 0x3f8c392615199bc0, 0x0, + 0x3fe156e751f48bad, 0x0, + 0x3fe72fb622ccea10, 0x0, + 0x3fdff27613794298, 0x0, + 0x3f9735fa1678afdc, 0x0, + 0xbfde970d00269dda, 0x0, + 0xbfe6e67638dc5bce, 0x0, + 0xbfe1b00e7a77f230, 0x0, + 0xbfb3437e86ad3559, 0x0, + 0x3fdb92856b6aa4ec, 0x0, + 0x3fe5639a8e8c8d56, 0x0, + 0x3fd89f72a2d7f555, 0x0, + 0xbf9da680a749a192, 0x0, + 0xbfe027a456a38556, 0x0, + 0xbfea0c7910fee11e, 0x0, + 0xbfde328960ea07d9, 0x0, + 0xbf84f9624c07dba0, 0x0, + 0x3fdeac611227493b, 0x0, + 0x3fe5fcd89bb1fb53, 0x0, + 0x3fe040ab3cfb9cd6, 0x0, + 0x3f820591b7f33125, 0x0, + 0xbfde8a94b131fe0b, 0x0, + 0xbfe953385b937f77, 0x0, + 0xbfdefbb4416e4a6b, 0x0, + 0xbf8059796bbd4353, 0x0, + 0x3fdf77fc515e6755, 0x0, + 0x3fe93dc6e84e68cc, 0x0, + 0x3fe2b54800e0a2d2, 0x0, + 0xbf74c9b5118e6ee2, 0x0, + 0xbfdce1970727e3a4, 0x0, + 0xbfe4c4f61648b8a0, 0x0, + 0xbfdfd996503b6b2b, 0x0, + 0x3fa782eb635fa1d6, 0x0, + 0x3fdfc0031f547f90, 0x0, + 0x3fe69604fa29760a, 0x0, + 0x3fe0f502d7764663, 0x0, + 0x3fb4b0b15a174240, 0x0, + 0xbfe17ddd24a2f5df, 0x0, + 0xbfe4599978904cc9, 0x0, + 0xbfddc50941d614dd, 0x0, + 0xbfa6270b9e169dfb, 0x0, + 0x3fdb5b190c4d73d4, 0x0, + 0x3fe699b213a270b1, 0x0, + 0x3fe042eae3d4645e, 0x0, + 0x3f8ecc7f52d3926d, 0x0, + 0xbfd95717722dc512, 0x0, + 0xbfe7022844989b57, 0x0, + 0xbfe0be1a2a731a77, 0x0, + 0x3fa297cdcc4ace8e, 0x0, + 0x3fe02db0e8860b47, 0x0, + 0x3fe5109648ac146c, 0x0, + 0x3fe0039363e3fa57, 0x0, + 0x3f68b00100f704ee, 0x0, + 0xbfe11b24f7fac794, 0x0, + 0xbfe65689efa5039b, 0x0, + 0xbfdd8d4ab9fc0c3d, 0x0, + 0x3fb4f0f35fd3865f, 0x0, + 0x3fe26f8f607e8529, 0x0, + 0x3fe6425eaaa7bd88, 0x0, + 0x3fe0aed4f286ceac, 0x0, + 0xbfb2113c1a96d927, 0x0, + 0xbfdde64fb136fc8a, 0x0, + 0xbfe60e0b536c2d39, 0x0, + 0xbfdd07f5dfb1c49b, 0x0, + 0x3fb5f34979db3496, 0x0, + 0x3fe163318a4f63a2, 0x0, + 0x3fe82585149f08f1, 0x0, + 0x3fe2b9898e7b4f70, 0x0, + 0x3fa738dccffc1003, 0x0, + 0xbfe214f02f025506, 0x0, + 0xbfe787ef114c2f02, 0x0, + 0xbfdfe58f81a0d239, 0x0, + 0xbf8f01c5223b9a30, 0x0, + 0x3fd9c876e448de1a, 0x0, + 0x3fe7b407937a87bb, 0x0, + 0x3fe090733ad4e02f, 0x0, + 0xbface273f688333d, 0x0, + 0xbfe2e2dd6cfdb37e, 0x0, + 0xbfe4f69ef887be53, 0x0, + 0xbfdfd3bb619fa714, 0x0, + 0xbfb2ea3ad4aad2ca, 0x0, + 0x3fdef018422c2d0b, 0x0, + 0x3fe5e6c147440968, 0x0, + 0x3fe2b7fe938d5403, 0x0, + 0xbf888b52b525df97, 0x0, + 0xbfdc5bc40078398c, 0x0, + 0xbfe3c5f6f4b7142f, 0x0, + 0xbfdad8f4c435d7dc, 0x0, + 0xbf964103e53d52c2, 0x0, + 0x3fe358b5c7aa8a0f, 0x0, + 0x3fe8b3d7ca9a8422, 0x0, + 0x3fe1573b4b9b1ef4, 0x0, + 0xbfa351a186cc79a3, 0x0, + 0xbfdc260c185909e2, 0x0, + 0xbfe5c8e54333dc10, 0x0, + 0xbfe0b610169c2054, 0x0, + 0xbfb08fa83fe3237f, 0x0, + 0x3fdf7d77cb564390, 0x0, + 0x3fe516a3d8cc6d22, 0x0, + 0x3fe1068b1cf8af63, 0x0, + 0x3fa31de2b53e5e01, 0x0, + 0xbfe0dd87e52a23bf, 0x0, + 0xbfe9d239faba2de3, 0x0, + 0xbfe28eab0f67bde8, 0x0, + 0x3fadeb1183ab1d7c, 0x0, + 0x3fe30088e8a1d628, 0x0, + 0x3fe601eae3557624, 0x0, + 0x3fe0663bf59c4489, 0x0, + 0xbf8097bb85ed4a19, 0x0, + 0xbfdf4e8414409ce9, 0x0, + 0xbfe68b94867389ab, 0x0, + 0xbfe3141f658fe6c9, 0x0, + 0x3fa3e648b5ba23b3, 0x0, + 0x3fe07b6dd3bfa79b, 0x0, + 0x3fe8601145581ab4, 0x0, + 0x3fd9badcc612cfe6, 0x0, + 0xbfb088bcfc8bbec5, 0x0, + 0xbfe02e9a5037227b, 0x0, + 0xbfe4e12f94dc194a, 0x0, + 0xbfe0d21949c6b98c, 0x0, + 0xbf8c6e97717efbe0, 0x0, + 0x3fdea520ef119bcf, 0x0, + 0x3fe449fd578c56e9, 0x0, + 0x3fddf4bbfeb8d714, 0x0, + 0xbfab98ea68bd7003, 0x0, + 0xbfe0151f8ff5fee8, 0x0, + 0xbfe8b3bd6c3493cf, 0x0, + 0xbfe1e55f21ec975d, 0x0, + 0xbf9ae1cec49a7688, 0x0, + 0x3fe21ba220df9cfc, 0x0, + 0x3fe427bc8d58ae65, 0x0, + 0x3fe122b48c86d8d1, 0x0, + 0xbfa0b29c7b15e7e7, 0x0, + 0xbfded6399b3f1411, 0x0, + 0xbfe636782b7ea397, 0x0, + 0xbfdeb26d5a907bcf, 0x0, + 0x3f9c5ba948b38667, 0x0, + 0x3fe18e525886773d, 0x0, + 0x3fe4a8b173a1d807, 0x0, + 0x3fe22c575ecc1c33, 0x0, + 0xbf8f9469fec59624, 0x0, + 0xbfe1118979f166c7, 0x0, + 0xbfe55442c4cc2e64, 0x0, + 0xbfe06b35ff66a7df, 0x0, + 0x3fa49605a25426bf, 0x0, + 0x3fdfcbb812002ef2, 0x0, + 0x3fe51b11ef8aec26, 0x0, + 0x3fe020ecf8c9a5aa, 0x0, + 0xbfc09c46050fdac8, 0x0, + 0xbfe0a159a9b26673, 0x0, + 0xbfe7e9654526d96e, 0x0, + 0xbfdf1f369cd1bb51, 0x0, + 0x3faa35db373d8c1d, 0x0, + 0x3fe073d4bd1dbca7, 0x0, + 0x3fe59436b14c9d06, 0x0, + 0x3fe0b63ead51c3d3, 0x0, + 0x3f7932b2aa152567, 0x0, + 0xbfe26213f2296756, 0x0, + 0xbfe78286530bacc2, 0x0, + 0xbfdd86f318c048f8, 0x0, + 0x3f6f03c06b24787c, 0x0, + 0x3fe24d1dafd33e8e, 0x0, + 0x3fe817a89d7c91fc, 0x0, + 0x3fe03dbfa42a54d0, 0x0, + 0xbfb3585c15dd1746, 0x0, + 0xbfdd45df4da41faf, 0x0, + 0xbfe6b18ef9b8f368, 0x0, + 0xbfe158ddb0e543fd, 0x0, + 0x3f7a9072f92beb43, 0x0, + 0x3fdcad356ecc9fbb, 0x0, + 0x3fe53720617eff9a, 0x0, + 0x3fded55342b718be, 0x0, + 0xbfa571cb20743104, 0x0, + 0xbfe2726201266366, 0x0, + 0xbfe6f83f4a4e4053, 0x0, + 0xbfddeb3b11c55d5e, 0x0, + 0x3f9686d60ad82979, 0x0, + 0x3fe07ad0a154da3b, 0x0, + 0x3fe715ff300a4c63, 0x0, + 0x3fe017d4226ff078, 0x0, + 0xbfa47b885dadc9f8, 0x0, + 0xbfdb3a9363380afe, 0x0, + 0xbfe4c94f8b30ea66, 0x0, + 0xbfdf6d4e9d9d67a4, 0x0, + 0x3fa7a89982272394, 0x0, + 0x3fdbd6173ad88cf3, 0x0, + 0x3fe4b5d69d5e5c6a, 0x0, + 0x3fdf984f376297a8, 0x0, + 0x3f88d1641bd80a93, 0x0, + 0xbfe08a35f5f8677f, 0x0, + 0xbfe8820e945a2611, 0x0, + 0xbfe0de51ef092dde, 0x0, + 0xbfb26bbb8caed260, 0x0, + 0x3fde20d3be578b8d, 0x0, + 0x3fe71d5c6966ef19, 0x0, + 0x3fddd983fc9335a0, 0x0, + 0x3fb157ffe2084390, 0x0, + 0xbfe15a278eeb83eb, 0x0, + 0xbfe7535bdd9d5f61, 0x0, + 0xbfe167f3fc031b1a, 0x0, + 0x3faa0d688a04288f, 0x0, + 0x3fe1d1e5183a01f7, 0x0, + 0x3fe51b13c6c1b431, 0x0, + 0x3fd99728877d48f1, 0x0, + 0x3f8faf4af8e34d24, 0x0, + 0xbfe3df16c7307e4b, 0x0, + 0xbfe47be5b7101754, 0x0, + 0xbfdadea683689088, 0x0, + 0xbfa0d7d7cec813ed, 0x0, + 0x3fe0acdc2078aa54, 0x0, + 0x3fe63a819f63191b, 0x0, + 0x3fe0a73ee4030efb, 0x0, + 0xbfb0b7366e4ccefe, 0x0, + 0xbfddbb308f2a25af, 0x0, + 0xbfe62132d8e82c2c, 0x0, + 0xbfe0540452fa4780, 0x0, + 0x3fb6b3e02664b28d, 0x0, + 0x3fdce855785e3573, 0x0, + 0x3fe4a7e3f00a72b6, 0x0, + 0x3fe1a956b2f4317b, 0x0, + 0x3fa6ea8a76465109, 0x0, + 0xbfe0c81ea13c9897, 0x0, + 0xbfe5b59011bd1e37, 0x0, + 0xbfe046f992610c26, 0x0, + 0xbfa51729aa8bf98a, 0x0, + 0x3fddc413f531f202, 0x0, + 0x3fe569ac328dd2b8, 0x0, + 0x3fe096aa4ebf00c5, 0x0, + 0xbfa922ecd706864e, 0x0, + 0xbfdc8407c92a7858, 0x0, + 0xbfe554ba7eb03d71, 0x0, + 0xbfdcc43b645ab182, 0x0, + 0x3f9e7bb97dce0978, 0x0, + 0x3fdcf690fd93c057, 0x0, + 0x3fe82582820a7cb5, 0x0, + 0x3fe2bb1d3b69e030, 0x0, + 0x3fad3c8ac8b2f412, 0x0, + 0xbfdf36af93ca1c86, 0x0, + 0xbfe5320fee6d3593, 0x0, + 0xbfe0f5ca1b6a961f, 0x0, + 0x3fa80666f1970d22, 0x0, + 0x3fe132cc1c1193a0, 0x0, + 0x3fe5e97443bc19f5, 0x0, + 0x3fe0082f90c2e86e, 0x0, + 0xbf9f72d57943d620, 0x0, + 0xbfe104ee5972d401, 0x0, + 0xbfe48223691b349c, 0x0, + 0xbfdf5d65c559af3b, 0x0, + 0x3fbee7e75b58e445, 0x0, + 0x3fdccb7538c633b3, 0x0, + 0x3fe690862e83890c, 0x0, + 0x3fd93594ca950590, 0x0, + 0xbf931539523d3764, 0x0, + 0xbfe1bb3af5cf03cc, 0x0, + 0xbfe6840a1d3037c7, 0x0, + 0xbfd807eca1207e1f, 0x0, + 0x3faa5c881460ef4c, 0x0, + 0x3fdfad88064c4f39, 0x0, + 0x3fe6e5c4bf6259d7, 0x0, + 0x3fe04fc0b82ba07f, 0x0, + 0x3f9b6bfe927fe48b, 0x0, + 0xbfdd6b7c305b813a, 0x0, + 0xbfe41509c295b9f8, 0x0, + 0xbfdb8512654c2a8a, 0x0, + 0xbfa96a9fd346f2ea, 0x0, + 0x3fe289d6c20e2426, 0x0, + 0x3fe4a167fb92ac1d, 0x0, + 0x3fe09043ffe308bd, 0x0, + 0xbf899c14880d9a53, 0x0, + 0xbfe158e0defd67b6, 0x0, + 0xbfe2d1dc93e40363, 0x0, + 0xbfdfb924a53c6239, 0x0, + 0x3fb4dbf568f07cdb, 0x0, + 0x3fe017e42c782e7a, 0x0, + 0x3fe80376b7e39fb5, 0x0, + 0x3fe1d47b114ace0d, 0x0, + 0xbf581f7bfe1d378c, 0x0, + 0xbfe0d7936d540f08, 0x0, + 0xbfe68b1cd80ec1d0, 0x0, + 0xbfde8364a881e1e0, 0x0, + 0x3f76d8df124e31ae, 0x0, + 0x3fd81c2851dd5027, 0x0, + 0x3fe90068fb81601f, 0x0, + 0x3fe0c831a02d0dca, 0x0, + 0xbfadb0548150f0e0, 0x0, + 0xbfe154a7e4e6c8a7, 0x0, + 0xbfe831f052bc8343, 0x0, + 0xbfda3dbba8105142, 0x0, + 0x3fa14acdfea39a2f, 0x0, + 0x3fe0e7df13ce0d64, 0x0, + 0x3fe410d91380da05, 0x0, + 0x3fe1a004d2e04530, 0x0, + 0xbfb3ae04306ba367, 0x0, + 0xbfe17fc53711bc34, 0x0, + 0xbfe60afcc95513d8, 0x0, + 0xbfe09e72642ae069, 0x0, + 0xbf9940c2a2fc12e5, 0x0, + 0x3fdc99d126746091, 0x0, + 0x3fe59af45648d96c, 0x0, + 0x3fdf46fe8401469a, 0x0, + 0xbeb9aa8772e58d23, 0x0, + 0xbfe13b508d3569f6, 0x0, + 0xbfe7293f92e75232, 0x0, + 0xbfe05a93ed845e68, 0x0, + 0x3f92e659e6853429, 0x0, + 0x3fe1244bf1f57c38, 0x0, + 0x3fe5b32851e50545, 0x0, + 0x3fe0d70e47e9c190, 0x0, + 0x3fa2f9abf063157a, 0x0, + 0xbfdf2bb9f06c3098, 0x0, + 0xbfe73cf0975fccd2, 0x0, + 0xbfe141018e807ae4, 0x0, + 0xbf841597ff9ca532, 0x0, + 0x3fdf44ce1aa972d3, 0x0, + 0x3fe71198707e7b54, 0x0, + 0x3fe042be3539a00a, 0x0, + 0x3fa14b66c3298ce8, 0x0, + 0xbfdb2b7f427a7932, 0x0, + 0xbfe892138a5371ea, 0x0, + 0xbfe18e4f112c74f8, 0x0, + 0x3f80581e0b0cabb1, 0x0, + 0x3fe1c1b941f86499, 0x0, + 0x3fe7589b619acd59, 0x0, + 0x3fdcf89f2f0e40d5, 0x0, + 0x3fb36c2de98d5b7b, 0x0, + 0xbfddc45ebed3a10f, 0x0, + 0xbfe468d6a1ade21d, 0x0, + 0xbfdeff058bf2b54c, 0x0, + 0xbfb38d6b1d53a92b, 0x0, + 0x3fde2409b7015e01, 0x0, + 0x3fe635b00d863708, 0x0, + 0x3fda8fc6e36053d0, 0x0, + 0xbfb805f6fe194401, 0x0, + 0xbfe2b23f71196899, 0x0, + 0xbfe43bab8bfd599f, 0x0, + 0xbfdd7152f7023a0e, 0x0, + 0x3f8ea87f0993a3c7, 0x0, + 0x3fe0901683942c5d, 0x0, + 0x3fe642fc55b27dc6, 0x0, + 0x3fde9dbdfe80d77b, 0x0, + 0x3f7779d0ca5ea8d6, 0x0, + 0xbfded76aa35e83fa, 0x0, + 0xbfe42b2b264d7762, 0x0, + 0xbfe0b4282c0dcc06, 0x0, + 0xbfb86731f6c38da8, 0x0, + 0x3fdf0bc014035cb8, 0x0, + 0x3fe85b6a8079dfbc, 0x0, + 0x3fde16e3a859b069, 0x0, + 0x3f985bc00889d5d6, 0x0, + 0xbfdd411c3dd6866b, 0x0, + 0xbfe7c793db2aac54, 0x0, + 0xbfe0516f9931141a, 0x0, + 0x3f85143292c72f07, 0x0, + 0x3fe14ff3da696e17, 0x0, + 0x3fe750736dbb4b3a, 0x0, + 0x3fe1184752a9f9df, 0x0, + 0xbf8204818e427940, 0x0, + 0xbfdd8d3fe69e3baa, 0x0, + 0xbfe56e05d3bc57d2, 0x0, + 0xbfe1151c7743782b, 0x0, + 0x3f74a8ef9aaed10b, 0x0, + 0x3fe2009f1da24669, 0x0, + 0x3fe9000f867cf083, 0x0, + 0x3fdcc959d3673b7b, 0x0, + 0x3fb19cb31b4d33a4, 0x0, + 0xbfe1c30ae8780734, 0x0, + 0xbfe62e3abf568e4c, 0x0, + 0xbfdbf93e794c9628, 0x0, + 0x3fb2444f890bd717, 0x0, + 0x3fdce6f6f9038aa7, 0x0, + 0x3fe5f1e63497cba5, 0x0, + 0x3fe1912ebb2f259a, 0x0, + 0x3f910cdc926e2b4d, 0x0, + 0xbfe07a4eb52afd74, 0x0, + 0xbfe6a0aff5bab068, 0x0, + 0xbfe09a0b469936d6, 0x0, + 0x3f9155df36990d67, 0x0, + 0x3fe2d1a8bf670a5f, 0x0, + 0x3fe60151898d4489, 0x0, + 0x3fe01542dfbb736f, 0x0, + 0x3fb47e209e49fbaa, 0x0, + 0xbfdb0bf20d9af571, 0x0, + 0xbfe5578017a6379f, 0x0, + 0xbfde146945ff2ea3, 0x0, + 0xbf9c11f1b03f6d9e, 0x0, + 0x3fda2fdd73a2e5fb, 0x0, + 0x3fe676bb90350438, 0x0, + 0x3fe0239a8fc4ab4b, 0x0, + 0x3fa84555529575c9, 0x0, + 0xbfe045fdc307d96d, 0x0, + 0xbfe9e7453fb50e7e, 0x0, + 0xbfd883cda0ab939a, 0x0, + 0xbfa6eddca917689e, 0x0, + 0x3fdc7834bb0694b5, 0x0, + 0x3fe736a4ffdc1a9b, 0x0, + 0x3fe0be02db375ce4, 0x0, + 0xbf93fac028bbaadd, 0x0, + 0xbfe1ed924306b89e, 0x0, + 0xbfe749067c0dcad4, 0x0, + 0xbfdb898e49fc1b38, 0x0, + 0x3f793f1bbad0241f, 0x0, + 0x3fe27d4994c7f89c, 0x0, + 0x3fe713db0a24844f, 0x0, + 0x3fe2767368a48741, 0x0, + 0xbf9768525921eac9, 0x0, + 0xbfdeb3348bae0c31, 0x0, + 0xbfe5df547ec19c42, 0x0, + 0xbfdb16dd8e9a824d, 0x0, + 0xbfaa2d0e69ebe6dc, 0x0, + 0x3fe15116b7cdf61e, 0x0, + 0x3fe779cd48df5752, 0x0, + 0x3fe2cfae8274f353, 0x0, + 0xbfb2d2aa9175713d, 0x0, + 0xbfe1f45869d26828, 0x0, + 0xbfe38177721cddae, 0x0, + 0xbfe057cfb25dbaa6, 0x0, + 0x3f7d2174628578de, 0x0, + 0x3fde11037d77742e, 0x0, + 0x3fe4e347d660e287, 0x0, + 0x3fe196464169e1da, 0x0, + 0x3fb4d017a0d01cc1, 0x0, + 0xbfe081444aee9e9e, 0x0, + 0xbfe5dd987b64f8f0, 0x0, + 0xbfdd45bd93aff0fc, 0x0, + 0xbf998d8dd03c250b, 0x0, + 0x3fdd00acdeb6b327, 0x0, + 0x3fe3c785512c5d65, 0x0, + 0x3fe18734d130d7e4, 0x0, + 0x3f89eafcf2329cb8, 0x0, + 0xbfde0eb7dc417446, 0x0, + 0xbfe7fca093702270, 0x0, + 0xbfde0aca0e9ec2e0, 0x0, + 0xbf876e065474ffd8, 0x0, + 0x3fe17306b78dc1e3, 0x0, + 0x3fe490c19c228734, 0x0, + 0x3fdaaab86668539c, 0x0, + 0x3fac4b9678e25af6, 0x0, + 0xbfddf23501169aa9, 0x0, + 0xbfe4911491f131d5, 0x0, + 0xbfdc7334831d323f, 0x0, + 0xbf999659e10a4184, 0x0, + 0x3fdef230a2dc2f31, 0x0, + 0x3fe59680e826d440, 0x0, + 0x3fe06ffe43172343, 0x0, + 0x3f9876cdccf7c558, 0x0, + 0xbfde30c25d46fd8a, 0x0, + 0xbfe6b238a805f438, 0x0, + 0xbfe21753e3a71872, 0x0, + 0xbfb3d6e561e9d8f8, 0x0, + 0x3fd95b8ecb03b347, 0x0, + 0x3fe6ab9205159585, 0x0, + 0x3fded2f2d16aae7b, 0x0, + 0x3f9ec4c3cd544228, 0x0, + 0xbfe07ea225072ec4, 0x0, + 0xbfe3b13b0cf2bd95, 0x0, + 0xbfdc252d614f2fa4, 0x0, + 0x3fa88600085812c5, 0x0, + 0x3fe230178cf19789, 0x0, + 0x3fe54644f331ad21, 0x0, + 0x3fdf6604be6b5259, 0x0, + 0x3faca77ca4ca7035, 0x0, + 0xbfe21eed6ab97f8e, 0x0, + 0xbfe480bf59535783, 0x0, + 0xbfdfd85d53bc4136, 0x0, + 0x3f9a55632ec5c51e, 0x0, + 0x3fdeb2d8a568669d, 0x0, + 0x3fe6fd073fcb6d50, 0x0, + 0x3fddaeafac09fe8c, 0x0, + 0x3f97ba696618f363, 0x0, + 0xbfdd7e0fe049b611, 0x0, + 0xbfe7c1520fa41226, 0x0, + 0xbfe0b97f7f8e26dd, 0x0, + 0xbf51422122bfb5fc, 0x0, + 0x3fe0e06cac73cef0, 0x0, + 0x3fe6369e248ed7b4, 0x0, + 0x3fe33401de7e20cb, 0x0, + 0x3f9975dab589b1f8, 0x0, + 0xbfdf98671ba37c4b, 0x0, + 0xbfe4687abdb6b966, 0x0, + 0xbfe01ad76de27126, 0x0, + 0xbfb06c12757f9736, 0x0, + 0x3fdde6f18a6e712a, 0x0, + 0x3fe39aff8fbe4162, 0x0, + 0x3fdedd85fbc484d9, 0x0, + 0x3facc0d674971375, 0x0, + 0xbfdb8e3b9769055d, 0x0, + 0xbfe58cbac0ce285b, 0x0, + 0xbfddf90e23664aa5, 0x0, + 0xbfa2fd9b62b7f6fb, 0x0, + 0x3fdec2356784c9d5, 0x0, + 0x3fe5a478a3b32b00, 0x0, + 0x3fe0dc2c1fafb5b9, 0x0, + 0x3f98471007f0998a, 0x0, + 0xbfdc521e6a6f6e64, 0x0, + 0xbfe6b5bdd0214f4d, 0x0, + 0xbfe0661db46b4ee5, 0x0, + 0xbf828c66eab6b5c1, 0x0, + 0x3fe312b79bef6b48, 0x0, + 0x3fe61a1a5c307172, 0x0, + 0x3fe1841d81d92262, 0x0, + 0x3fa296fb480df0a3, 0x0, + 0xbfe0e27218d8070c, 0x0, + 0xbfe632e17446aa87, 0x0, + 0xbfe0de4af1315751, 0x0, + 0xbfa1f30bab5e17f6, 0x0, + 0x3fdef736095639df, 0x0, + 0x3fe502b75dc3242e, 0x0, + 0x3fe026fbfef51db5, 0x0, + 0x3f21c24d4be4aded, 0x0, + 0xbfde9755c799c69e, 0x0, + 0xbfe4cd9732afc6cc, 0x0, + 0xbfe066d386e3affc, 0x0, + 0xbf92bdcc6efa73c1, 0x0, + 0x3fdd915cbb91c39d, 0x0, + 0x3fe5580ec9a99bd1, 0x0, + 0x3fe1552ab6afd394, 0x0, + 0x3f949e03d6fa342a, 0x0, + 0xbfdc2a8994c950f5, 0x0, + 0xbfe646c5060b21d4, 0x0, + 0xbfe0ca38ff1e1cdf, 0x0, + 0xbfa79af1dc058014, 0x0, + 0x3fe291d36ad536c0, 0x0, + 0x3fe8852fe1adfdd7, 0x0, + 0x3fe1472ea43c6448, 0x0, + 0x3fa5e2a2c49f520c, 0x0, + 0xbfde0cb37920a5f2, 0x0, + 0xbfe4e555531930dd, 0x0, + 0xbfe13a68813cea33, 0x0, + 0x3f836b95585121e7, 0x0, + 0x3fdebead703aab43, 0x0, + 0x3fe672c06d13a6bf, 0x0, + 0x3fdeb7fa13f89d5e, 0x0, + 0x3fac64fc9fab6b67, 0x0, + 0xbfe26da3b22062b1, 0x0, + 0xbfe3033ecd1b6e90, 0x0, + 0xbfdd34f4941e6265, 0x0, + 0xbfb6e7e978c8e413, 0x0, + 0x3fe0c2a94abaf659, 0x0, + 0x3fea40c5afe1bf80, 0x0, + 0x3fdd0d2d1a6bfb3f, 0x0, + 0xbf97802d5d84ddc8, 0x0, + 0xbfe11324d49d8398, 0x0, + 0xbfe74d6821d06cf6, 0x0, + 0xbfe05ae6b6ead2b3, 0x0, + 0xbfa6702ac65af9aa, 0x0, + 0x3fe1431e3208f094, 0x0, + 0x3fe7fc53d321fd0e, 0x0, + 0x3fdfec8316c8fd83, 0x0, + 0x3fa52e3865924c2f, 0x0, + 0xbfe00e3739bca1b5, 0x0, + 0xbfe4ff246148b2d6, 0x0, + 0xbfdbd5f7e225fc8b, 0x0, + 0x3f928e995855fc16, 0x0, + 0x3fdfdf593009cdb3, 0x0, + 0x3fe656ad469efa45, 0x0, + 0x3fe10fd92fe8fa07, 0x0, + 0x3fb1b80134d88b1b, 0x0, + 0xbfdf0ab4d7bff1f3, 0x0, + 0xbfe6551aba1957a8, 0x0, + 0xbfe11439c5c79a96, 0x0, + 0xbfc030a39d8f2824, 0x0, + 0x3fdec9a11d903ae4, 0x0, + 0x3fe65e119909dbe9, 0x0, + 0x3fdcd623dd94c018, 0x0, + 0xbf8c86048357c8a0, 0x0, + 0xbfdd2826d8cd5c54, 0x0, + 0xbfe6c25fa2ebdf05, 0x0, + 0xbfe08e79a74f4b03, 0x0, + 0xbfbd99c235f4671f, 0x0, + 0x3fe057ca156665d4, 0x0, + 0x3fe736ed80c4717b, 0x0, + 0x3fe109d76e0794ef, 0x0, + 0x3fa6b49798d4d47e, 0x0, + 0xbfe14336083eb5a2, 0x0, + 0xbfe40193ebd5aa33, 0x0, + 0xbfdc115cfbe0bfce, 0x0, + 0xbfb191313c56cef3, 0x0, + 0x3fe21306b992689e, 0x0, + 0x3fe6104e7ace0644, 0x0, + 0x3fe086ceedae0962, 0x0, + 0xbf9aa01a746429b2, 0x0, + 0xbfde5ea7754c1693, 0x0, + 0xbfe730f868bb7a6d, 0x0, + 0xbfe1e20f0d4e90da, 0x0, + 0xbfc060e5f31c5c1a, 0x0, + 0x3fdfe3e874b8187b, 0x0, + 0x3fe4c951be9f02a1, 0x0, + 0x3fde4b4c3527b028, 0x0, + 0xbf8e25c6a9d195c6, 0x0, + 0xbfe20cb530fec2ca, 0x0, + 0xbfe718998a199257, 0x0, + 0xbfe23be34aee3962, 0x0, + 0x3fa67dc11291b665, 0x0, + 0x3fdf3aab5546a009, 0x0, + 0x3fe834f385372936, 0x0, + 0x3fdd4a6c1f532295, 0x0, + 0x3fabca1a6f1b6d3e, 0x0, + 0xbfdd832a0fa8778c, 0x0, + 0xbfe65a5cdd8a8802, 0x0, + 0xbfdbf16850c54311, 0x0, + 0x3fbf92dda5d326e3, 0x0, + 0x3fdd23fa6ca8b9d8, 0x0, + 0x3fe846a1f65c7980, 0x0, + 0x3fe0980a6db5c2a8, 0x0, + 0xbfae8bdc0fa8a0bd, 0x0, + 0xbfdf62a738e99165, 0x0, + 0xbfe56443ec1ec56c, 0x0, + 0xbfe03f43cbac338e, 0x0, + 0x3fb3cff7d4626171, 0x0, + 0x3fe16e1bc98e3c77, 0x0, + 0x3fe5468377e343c6, 0x0, + 0x3fdf6691af0d32b3, 0x0, + 0xbf9c1ad27f64bfbe, 0x0, + 0xbfe2b3a974c212b2, 0x0, + 0xbfe62801246ee916, 0x0, + 0xbfe13bac1f9621bd, 0x0, + 0xbf86771a0cee2da5, 0x0, + 0x3fe090a439a1dea9, 0x0, + 0x3fe62d64da089fc4, 0x0, + 0x3fdb42e61f05b2d2, 0x0, + 0xbfb1c4b7a2c06017, 0x0, + 0xbfe2fcf8f59e860a, 0x0, + 0xbfe5d86eff302429, 0x0, + 0xbfde480dab20869e, 0x0, + 0xbfb74f5a7c132d3d, 0x0, + 0x3fe27443c276c9bd, 0x0, + 0x3fe694a2c82fcc63, 0x0, + 0x3fe162e953e3358a, 0x0, + 0xbf89f3bc9f60f0e2, 0x0, + 0xbfdc7bac4c4000d7, 0x0, + 0xbfe5543d2b95f4dd, 0x0, + 0xbfd9848fb8347844, 0x0, + 0x3f84677aba89d74d, 0x0, + 0x3fde5d21b8d7791e, 0x0, + 0x3fe6a80faf07d2cd, 0x0, + 0x3fdcad70dfcbb156, 0x0, + 0x3f75c4d740bd97e8, 0x0, + 0xbfdd53e6c5a4c75d, 0x0, + 0xbfe6e04bddbc9b10, 0x0, + 0xbfe09f077a3058c0, 0x0, + 0x3fbaf14497d26707, 0x0, + 0x3fe0045bb85357f4, 0x0, + 0x3fe69e5141380c47, 0x0, + 0x3fde7f1b6994a387, 0x0, + 0xbfb30d0555024ec7, 0x0, + 0xbfe140cbac8e1d64, 0x0, + 0xbfe766af84c12350, 0x0, + 0xbfda60e598a14bd4, 0x0, + 0xbfa477f502464581, 0x0, + 0x3fe1032e2fe4c984, 0x0, + 0x3fe6890d537ede00, 0x0, + 0x3fdbb4fa8a0584c9, 0x0, + 0x3fa33a2310df1f40, 0x0, + 0xbfe17363300e33cf, 0x0, + 0xbfe8ae3624c3d48a, 0x0, + 0xbfde5c2ee2525bc9, 0x0, + 0x3f7f342eead1d432, 0x0, + 0x3fde521b32ccd460, 0x0, + 0x3fe753255a9f63ed, 0x0, + 0x3fdf24d7556d90fc, 0x0, + 0x3fa56baa04e043bb, 0x0, + 0xbfe14670b3899348, 0x0, + 0xbfe5ec7d968e289b, 0x0, + 0xbfda4adb132db710, 0x0, + 0x3fb15da160408463, 0x0, + 0x3fe19fa06f374308, 0x0, + 0x3fe4d083ccea2cff, 0x0, + 0x3fdf3ab7b83fd413, 0x0, + 0x3fa0897af43fd69d, 0x0, + 0xbfe331c35636d12c, 0x0, + 0xbfe8f90ad7b4724f, 0x0, + 0xbfde996481f5a32a, 0x0, + 0x3f80e7a3abeb1fb2, 0x0, + 0x3fe0a9920bbf1680, 0x0, + 0x3fe7ac73c149619d, 0x0, + 0x3fdd1e6ca210abb3, 0x0, + 0x3f79b8fe2c709086, 0x0, + 0xbfdf1a46a9216bfe, 0x0, + 0xbfe5b49112b64ca3, 0x0, + 0xbfdcffa6715da744, 0x0, + 0x3fa4017a5df1ef83, 0x0, + 0x3fdc2d648339116a, 0x0, + 0x3fe6489469280928, 0x0, + 0x3fe1b84b5d2be73e, 0x0, + 0xbf9c5f945ad6f550, 0x0, + 0xbfdd671d0dd3141c, 0x0, + 0xbfe3765c54d7b8d9, 0x0, + 0xbfdbc4203ef05286, 0x0, + 0x3fa17aa8ee73f6c3, 0x0, + 0x3fdcb57a0dfa40e2, 0x0, + 0x3fe48b6891781819, 0x0, + 0x3fddaf9a2e294c9b, 0x0, + 0xbf9cd36feaf96cfb, 0x0, + 0xbfe1f3fc0073b613, 0x0, + 0xbfe6e4b546e3c097, 0x0, + 0xbfe3d5bd21b5b502, 0x0, + 0x3fc41b8625ff1f67, 0x0, + 0x3fe28352e663fdd8, 0x0, + 0x3fe8d8b3863285bb, 0x0, + 0x3fddea46f710f41b, 0x0, + 0x3f92703c0d41ccd9, 0x0, + 0xbfdaeb1f5b1a2d61, 0x0, + 0xbfe6e92bf8c03a13, 0x0, + 0xbfe1673eb484700a, 0x0, + 0xbfa68b599aa2dca0, 0x0, + 0x3fe1351ea10b1947, 0x0, + 0x3fe760273f6c4e45, 0x0, + 0x3fe07be22773e9da, 0x0, + 0x3f89b004f2a0f382, 0x0, + 0xbfe105af55a8d703, 0x0, + 0xbfe6ad3325eef4a2, 0x0, + 0xbfde57d8892a8336, 0x0, + 0x3f8e64679180c8f4, 0x0, + 0x3fe10134e90ee6c8, 0x0, + 0x3fe260cc641dcff7, 0x0, + 0x3fe16120c95d3979, 0x0, + 0x3fb05cda3415f397, 0x0, + 0xbfe1a3eeb0348f97, 0x0, + 0xbfe7dc4b9c6a9254, 0x0, + 0xbfe26b1f6785bcc0, 0x0, + 0xbfab4f2d1efe7acc, 0x0, + 0x3fd98311ad4631e3, 0x0, + 0x3fe69159238743f4, 0x0, + 0x3fdfacb313382c5c, 0x0, + 0x3f95107277317a62, 0x0, + 0xbfe275d2b18b7b66, 0x0, + 0xbfe63ef8a5497574, 0x0, + 0xbfdd717b9914e954, 0x0, + 0xbfb0d4005264a56b, 0x0, + 0x3fdf79b68203e6fc, 0x0, + 0x3fe56cb71faacf89, 0x0, + 0x3fe05f7c74e9fa1d, 0x0, + 0xbf610432f45c87b2, 0x0, + 0xbfe05a013c4a9fc3, 0x0, + 0xbfe4c64a562aafb6, 0x0, + 0xbfe0696c08a0e3c0, 0x0, + 0xbf98a78a30365361, 0x0, + 0x3fe057b15c881fb3, 0x0, + 0x3fe4c2270a3a72ab, 0x0, + 0x3fdc02672348ac16, 0x0, + 0xbfa9f70261ba080a, 0x0, + 0xbfdd8fac5e511841, 0x0, + 0xbfe5a46f672cc9aa, 0x0, + 0xbfe20d39e223c8cf, 0x0, + 0x3fa3eb33af1e3d8d, 0x0, + 0x3fdfc0916bb00be3, 0x0, + 0x3fe4fc737913e590, 0x0, + 0x3fe1c24421180cfe, 0x0, + 0x3f4b657874287adf, 0x0, + 0xbfe057cc09b6e738, 0x0, + 0xbfe935db1e069dc0, 0x0, + 0xbfdefdd6d5cc9fca, 0x0, + 0xbf9d4eca671a79c2, 0x0, + 0x3fdbe909c7e3de5e, 0x0, + 0x3fe400aa3401521c, 0x0, + 0x3fdf9040de22094c, 0x0, + 0x3f8c749c676e9652, 0x0, + 0xbfdd3b25a4444111, 0x0, + 0xbfe66d4f398cdc0e, 0x0, + 0xbfe1b81e0e0e4c34, 0x0, + 0xbfb6f3869bf4db0c, 0x0, + 0x3fdf18f5c20ecf13, 0x0, + 0x3fe512d287949dbd, 0x0, + 0x3fdf18758b98287f, 0x0, + 0xbf9ce761215c77a1, 0x0, + 0xbfdc13cb2ca248ac, 0x0, + 0xbfe6c406aae0b0d7, 0x0, + 0xbfdb63b23bb39410, 0x0, + 0xbf91fcb7a62f7e62, 0x0, + 0x3fdf5425ff00b9b9, 0x0, + 0x3fe82c81d1dd86fb, 0x0, + 0x3fdbaf5b2c8fed4f, 0x0, + 0x3f8bc770c24df73b, 0x0, + 0xbfdc16d624b3fc65, 0x0, + 0xbfe559e8bb3a19f6, 0x0, + 0xbfe00c9092276993, 0x0, + 0xbf9883c39a0bf1c5, 0x0, + 0x3fe261f9e6a3c5eb, 0x0, + 0x3fe5a4bc45f0f438, 0x0, + 0x3fe22f977e2a7c7a, 0x0, + 0x3fb3d34a8d5312e0, 0x0, + 0xbfddc197f1c83afd, 0x0, + 0xbfe66fe30b124ce8, 0x0, + 0xbfdf8ce4d6dfff8d, 0x0, + 0x3f874e124fc00c92, 0x0, + 0x3fdf8315a729656f, 0x0, + 0x3fe56f1bab251ec0, 0x0, + 0x3fddfc17653f0794, 0x0, + 0x3f9d679b09b6725e, 0x0, + 0xbfe01708a077b7de, 0x0, + 0xbfe6ea32bf7cfbcb, 0x0, + 0xbfe0f92195cf020c, 0x0, + 0x3fa27f0bbfb4e561, 0x0, + 0x3fdf1f381011d56e, 0x0, + 0x3fe5f002d7656c8b, 0x0, + 0x3fe1acfce321668f, 0x0, + 0xbf9b794f8929941d, 0x0, + 0xbfdf81f00de85220, 0x0, + 0xbfe3d529697669f9, 0x0, + 0xbfdf658df603e750, 0x0, + 0xbf80b61782ea5a69, 0x0, + 0x3fe05b7d4b3d5040, 0x0, + 0x3fe8350a5d9d309b, 0x0, + 0x3fe02d7f315e877e, 0x0, + 0xbf553b8215898ccc, 0x0, + 0xbfde183f7bef7f97, 0x0, + 0xbfe1e78aaeba5a7e, 0x0, + 0xbfddfe0283fb5728, 0x0, + 0x3f945d061322cd3b, 0x0, + 0x3fdf5faaf2aad1b6, 0x0, + 0x3fe85edc26b1c835, 0x0, + 0x3fe0c4eb5e3b8a94, 0x0, + 0xbf7f1dde4a310eae, 0x0, + 0xbfe011442818a74d, 0x0, + 0xbfe86be6fe7749ae, 0x0, + 0xbfdd4efda80eec9a, 0x0, + 0xbf7bd38de1b6bc1b, 0x0, + 0x3fe151491ddb5262, 0x0, + 0x3fe6d9af1d33e077, 0x0, + 0x3fe1126fd697b8b4, 0x0, + 0xbfac21501f9bfca2, 0x0, + 0xbfd902652c6112f7, 0x0, + 0xbfe5dc4be2d7c94d, 0x0, + 0xbfe18a34381ef635, 0x0, + 0x3f7cbf5b5c1ff811, 0x0, + 0x3fdb2d65bf325328, 0x0, + 0x3fe5a18b99a47877, 0x0, + 0x3fe198878d86cb55, 0x0, + 0xbf9bb0754428dd0e, 0x0, + 0xbfdbaece56b1b71e, 0x0, + 0xbfe2d4073bb58dc3, 0x0, + 0xbfdf3f14b136e67e, 0x0, + 0xbf6ccd002aac2e3c, 0x0, + 0x3fde87a7613b0a1e, 0x0, + 0x3fe5472e8bdf0edb, 0x0, + 0x3fdfd6759d010411, 0x0, + 0x3fb5ca6d0c289c06, 0x0, + 0xbfe25f76b96a8885, 0x0, + 0xbfe5411d005ab7a1, 0x0, + 0xbfe1711fdf74de46, 0x0, + 0xbfae11f447eae4ce, 0x0, + 0x3fe51aba2ef63017, 0x0, + 0x3fe38967a5a93898, 0x0, + 0x3fdf7a149bc2a72f, 0x0, + 0x3fb0dd49dfd0ba25, 0x0, + 0xbfde2bed02896f42, 0x0, + 0xbfe4613ebc090425, 0x0, + 0xbfde22515b4e627a, 0x0, + 0x3f98a1109468d15e, 0x0, + 0x3fe0cf76c4bff1af, 0x0, + 0x3fe2f08cd3eb5375, 0x0, + 0x3fe26a4a3bdbafe6, 0x0, + 0xbfa8a01de8e96052, 0x0, + 0xbfe1740b7d19595f, 0x0, + 0xbfe908f046006fa6, 0x0, + 0xbfe072dacd2b1c6e, 0x0, + 0xbf943f34bb71b067, 0x0, + 0x3fdf1c9be4ecb742, 0x0, + 0x3fe81bd2452d8b67, 0x0, + 0x3fdd69058696e60b, 0x0, + 0xbfa9266fe77f0f6e, 0x0, + 0xbfe1a171bd6ffd10, 0x0, + 0xbfe6065542bbbcf2, 0x0, + 0xbfe000dc0db49d47, 0x0, + 0x3fae4046a881d03c, 0x0, + 0x3fdca419e7c50d78, 0x0, + 0x3fe71769ef9d6f2a, 0x0, + 0x3fe37ee4a4b5c260, 0x0, + 0x3fa1ceee52346fd5, 0x0, + 0xbfdeffd8d0c4efcc, 0x0, + 0xbfe3a3869cf76e4f, 0x0, + 0xbfe118bda6597f56, 0x0, + 0x3fb203afe9b4000d, 0x0, + 0x3fe2cf921610b2f5, 0x0, + 0x3fe882b5d668af97, 0x0, + 0x3fe18563934f8f64, 0x0, + 0x3f9409a43c2108e6, 0x0, + 0xbfdd1a55bd110624, 0x0, + 0xbfe5a519e6880d68, 0x0, + 0xbfe08de9e47746d6, 0x0, + 0x3fab9ce165aa4440, 0x0, + 0x3fe16e0da6e0558e, 0x0, + 0x3fe7f310f69ff4ab, 0x0, + 0x3fe0961e74de7c0b, 0x0, + 0xbf61e3deca6f8416, 0x0, + 0xbfe290e5ceb59f51, 0x0, + 0xbfe4f52ad16327ee, 0x0, + 0xbfe01415448954ed, 0x0, + 0xbf5240028c017f93, 0x0, + 0x3fe09d80e77007c6, 0x0, + 0x3fe62afa014f0841, 0x0, + 0x3fe14f2ab63b2da9, 0x0, + 0xbfacb11f3f78a533, 0x0, + 0xbfe1be131aa2ce9c, 0x0, + 0xbfe64fea0393ffd6, 0x0, + 0xbfdf462cd478074f, 0x0, + 0xbfac4f61a6d537ce, 0x0, + 0x3fdf37081aaf7e84, 0x0, + 0x3fe78affaace4c13, 0x0, + 0x3fe059dc355e4326, 0x0, + 0xbf94d61b23e7f5c6, 0x0, + 0xbfdffbed3c2af714, 0x0, + 0xbfe47e2d4bc20fe0, 0x0, + 0xbfe1d98dbee5f171, 0x0, + 0x3f74d80700e58433, 0x0, + 0x3fe182a7794bc060, 0x0, + 0x3fe435b160bab3e8, 0x0, + 0x3fdfc50f8b0c682a, 0x0, + 0x3facaea438fdcc8f, 0x0, + 0xbfdf32f729ec1ade, 0x0, + 0xbfe7329e09beb02a, 0x0, + 0xbfdb31841cd492e8, 0x0, + 0x3fb5b5401f3948b8, 0x0, + 0x3fe0fcc7095bf51a, 0x0, + 0x3fe583fa987f7133, 0x0, + 0x3fde37c1c0877f9a, 0x0, + 0xbf97f754e3777b04, 0x0, + 0xbfe0217123a0085b, 0x0, + 0xbfe5af2e451c669f, 0x0, + 0xbfe0bc03edfa8f1e, 0x0, + 0xbf8290723becdf50, 0x0, + 0x3fddeeac40aa5a54, 0x0, + 0x3fe5fe0d2d009a5b, 0x0, + 0x3fde4da17f28870d, 0x0, + 0xbf9acb28f4a9fca6, 0x0, + 0xbfdbafa04b0de79c, 0x0, + 0xbfe81df46f35e3a2, 0x0, + 0xbfdd8e6c884e20cf, 0x0, + 0xbf9eeed7356c9adc, 0x0, + 0x3fdfa5e1ff88052c, 0x0, + 0x3fe6d5ee8c822a02, 0x0, + 0x3fe0677a6341356b, 0x0, + 0x3fa66357b2c98a93, 0x0, + 0xbfe0afd23df58125, 0x0, + 0xbfe6da0e297ac9af, 0x0, + 0xbfdfcce090fa7087, 0x0, + 0xbf4d9387a9e9db22, 0x0, + 0x3fe1085e587d0ac5, 0x0, + 0x3fe4823e2afe95cc, 0x0, + 0x3fdcafa9dea99494, 0x0, + 0xbf9b6dafb37e0d3e, 0x0, + 0xbfe135c363e7387e, 0x0, + 0xbfe481c19c50aa26, 0x0, + 0xbfdecc4393847411, 0x0, + 0xbf83b4dd5fabf0b7, 0x0, + 0x3fded34a41ef65ca, 0x0, + 0x3fe8b354c65b3fbe, 0x0, + 0x3fde3f236378b7cb, 0x0, + 0x3f98f4b1a40e91a0, 0x0, + 0xbfdf3fbac92a079b, 0x0, + 0xbfe7c3f351a409ac, 0x0, + 0xbfdd9a3862090c40, 0x0, + 0xbfb2d0780ef2b260, 0x0, + 0x3fe15ad2fff71ba2, 0x0, + 0x3fe6fe4315e1079d, 0x0, + 0x3fe197a7456c047f, 0x0, + 0x3f5cb58b7f987999, 0x0, + 0xbfdf10617fdf8451, 0x0, + 0xbfe53dd4ec07c9d4, 0x0, + 0xbfe190c58f37defd, 0x0, + 0x3fb7c61f5ca08a79, 0x0, + 0x3fdebdd125030a06, 0x0, + 0x3fe676083c369f3c, 0x0, + 0x3fe07dab747f3523, 0x0, + 0x3f9b571f69194449, 0x0, + 0xbfdf117714ec59fd, 0x0, + 0xbfe466646f7010c2, 0x0, + 0xbfdfeb568473ce0b, 0x0, + 0x3fa4fae1a54ae0c4, 0x0, + 0x3fddbdfb718069ae, 0x0, + 0x3fe585cd544e4eae, 0x0, + 0x3fe0ab7bca2cdb70, 0x0, + 0x3f944c44109789f9, 0x0, + 0xbfe0db83e4608211, 0x0, + 0xbfe7bd54bbe98e06, 0x0, + 0xbfdfa0977e733000, 0x0, + 0x3f9809385bb47bcc, 0x0, + 0x3fdc07fcd83797b6, 0x0, + 0x3fe5f95622f39de2, 0x0, + 0x3fdd200c8dd257ca, 0x0, + 0x3fbc83e5ea1f7310, 0x0, + 0xbfdc7fa9b009bf62, 0x0, + 0xbfe623f2ff2fdf76, 0x0, + 0xbfd87c2e5d3c6632, 0x0, + 0x3f986788e9d43e56, 0x0, + 0x3fe04e29eb2d5fe1, 0x0, + 0x3fe2441c1cbf3f97, 0x0, + 0x3fe11c51a41fe326, 0x0, + 0xbfb2535e12a3b8d1, 0x0, + 0xbfe018781ee56895, 0x0, + 0xbfe65af5a0e5d0bf, 0x0, + 0xbfe1ece1d6276bcb, 0x0, + 0x3f803394cae0782f, 0x0, + 0x3fe2cd7039c7e782, 0x0, + 0x3fe81f4e93b9c1c7, 0x0, + 0x3fdaa6ebaf9c2526, 0x0, + 0xbfab6ad489c5cd66, 0x0, + 0xbfdfc2802c6726f0, 0x0, + 0xbfe7a51605665aa0, 0x0, + 0xbfda3bbf2517df5e, 0x0, + 0x3f759c824e11cb8f, 0x0, + 0x3fe1e408a20bdee2, 0x0, + 0x3fe7aedafd9bf857, 0x0, + 0x3fe0154b56cd0001, 0x0, + 0x3fbb554af239803a, 0x0, + 0xbfdd3ec3b58a6390, 0x0, + 0xbfe73a6bb81b00c0, 0x0, + 0xbfdd6bf8294c052c, 0x0, + 0x3fa7c6a7e8a461f7, 0x0, + 0x3fe1ef01e2b3aea3, 0x0, + 0x3fe8665e0552d1c3, 0x0, + 0x3fdf7ddb75a0e4df, 0x0, + 0xbf9907d76d09c61e, 0x0, + 0xbfdc27d13ad9d364, 0x0, + 0xbfe5d292733c5bf6, 0x0, + 0xbfe23edb987f4c81, 0x0, + 0xbf9ab9ca7dc4dc59, 0x0, + 0x3fdfaded4e05d5ed, 0x0, + 0x3fe4e9a33076b1f1, 0x0, + 0x3fe00eef3db05175, 0x0, + 0x3f9d6a3a09303e86, 0x0, + 0xbfdacc30a1c43842, 0x0, + 0xbfea5d2672401294, 0x0, + 0xbfdf66f3c0f7f686, 0x0, + 0xbf9adc8b7959e4bd, 0x0, + 0x3fdd4cd51caf57de, 0x0, + 0x3fe75145cc817aee, 0x0, + 0x3fddeaff429b16f0, 0x0, + 0xbfa51903a92f5661, 0x0, + 0xbfe0e1206c76d582, 0x0, + 0xbfe38149e6370ed1, 0x0, + 0xbfdf07984217d947, 0x0, + 0xbf950d9e9e6c514a, 0x0, + 0x3fda17dbadbd5652, 0x0, + 0x3fe55d041a864eba, 0x0, + 0x3fe0449a9318dafb, 0x0, + 0xbfa5a162f44b0d0d, 0x0, + 0xbfde8689cf78b2e1, 0x0, + 0xbfe4ad40cb7acffe, 0x0, + 0xbfe36fccb674a356, 0x0, + 0x3fa1c50870967a10, 0x0, + 0x3fe19068bb0bc8f1, 0x0, + 0x3fe75194540239fc, 0x0, + 0x3fddaf237ce3f498, 0x0, + 0xbf710150ee9c66c0, 0x0, + 0xbfdacf36a47b896a, 0x0, + 0xbfe6106f3f999af8, 0x0, + 0xbfdcc7394108c821, 0x0, + 0xbfbc3b700e9fd0af, 0x0, + 0x3fde35fc0b751645, 0x0, + 0x3fe391f0a777f156, 0x0, + 0x3fdcb94f0620af47, 0x0, + 0xbf85999f3be735f5, 0x0, + 0xbfdd0d04501aceb8, 0x0, + 0xbfe4d7f934d3582d, 0x0, + 0xbfe12ccab1e61e0a, 0x0, + 0x3fa253cc2a779182, 0x0, + 0x3fdc0c9b5e96f412, 0x0, + 0x3fe5b076cfe7a915, 0x0, + 0x3fdb7d5ec2355d7a, 0x0, + 0x3f9c23cc3515820d, 0x0, + 0xbfdc1958356b18d9, 0x0, + 0xbfe5518f6014ca72, 0x0, + 0xbfde66a8bfb1f443, 0x0, + 0x3f721a45784de359, 0x0, + 0x3fe2d22b6e09064f, 0x0, + 0x3fe83318d1e23e04, 0x0, + 0x3fdff69a51c9ec92, 0x0, + 0xbf93a8422583b9db, 0x0, + 0xbfdd8654a148c2ef, 0x0, + 0xbfe50aa9b79ad16f, 0x0, + 0xbfe1eeeb4788531e, 0x0, + 0xbfabdfca7706b8d4, 0x0, + 0x3fdc348517fe3f11, 0x0, + 0x3fe7e12209fa2d69, 0x0, + 0x3fe0fca79bf78732, 0x0, + 0xbf954c07a7a0a379, 0x0, + 0xbfe2300f7662a12c, 0x0, + 0xbfe32a8c9742ef75, 0x0, + 0xbfdba89cafb7ce38, 0x0, + 0x3fc0fe73fcae703f, 0x0, + 0x3fe08291de41bcac, 0x0, + 0x3fe4b3bf00ed4098, 0x0, + 0x3fe0069a98289750, 0x0, + 0xbf8781faab76aab7, 0x0, + 0xbfe0e15ff375a2e3, 0x0, + 0xbfe7100ecc8a9425, 0x0, + 0xbfdf474c25ef80d7, 0x0, + 0xbfa5ee119b85d0d0, 0x0, + 0x3fde6d58f45255a4, 0x0, + 0x3fe77128f0c9227b, 0x0, + 0x3fde59c40937ab22, 0x0, + 0x3fa3c35a8201b037, 0x0, + 0xbfe14dd21acddd58, 0x0, + 0xbfe834b01bd2e063, 0x0, + 0xbfdc872f487f551f, 0x0, + 0xbfaf7c7614baef34, 0x0, + 0x3fe1591d4905da9f, 0x0, + 0x3fe54e1c203df589, 0x0, + 0x3fe0a229b4b35564, 0x0, + 0xbfacc9c6ebcf9c46, 0x0, + 0xbfde6be1e701b521, 0x0, + 0xbfe44dcd90e61696, 0x0, + 0xbfdda91bf1d9074f, 0x0, + 0x3f6af853ab711b4a, 0x0, + 0x3fdfd84053808276, 0x0, + 0x3fe594428e0d401d, 0x0, + 0x3fe0096186bea2a3, 0x0, + 0x3f9615a085f0ad0b, 0x0, + 0xbfe27d3ae9109bd8, 0x0, + 0xbfe6ba607782192f, 0x0, + 0xbfe1968f85ca7e22, 0x0, + 0xbfb09e79a562a73d, 0x0, + 0x3fdda90c1e1bdf52, 0x0, + 0x3fe4b1be28a9d7cf, 0x0, + 0x3fe15e4e09ab34ca, 0x0, + 0x3f99b11f77091407, 0x0, + 0xbfdab01f65e8eee4, 0x0, + 0xbfe774bb5f953b31, 0x0, + 0xbfe0412e6a9053bb, 0x0, + 0x3fa0275eb977287b, 0x0, + 0x3fdd33638655cfb2, 0x0, + 0x3fe64e1848248a37, 0x0, + 0x3fe0438cf77d0dbb, 0x0, + 0xbf803defaaeff5bf, 0x0, + 0xbfdc1cac281d5ed2, 0x0, + 0xbfe56569d1a082c5, 0x0, + 0xbfe0d45263eaf2bb, 0x0, + 0xbf94cbfa94af5599, 0x0, + 0x3fe067555f5e9dc7, 0x0, + 0x3fe286b5263f6848, 0x0, + 0x3fe296d6419590a6, 0x0, + 0x3fa0e9d66ca26f4c, 0x0, + 0xbfe173bf6f1e8deb, 0x0, + 0xbfe49396c74c8199, 0x0, + 0xbfdc0a45645672b0, 0x0, + 0xbf902d93030356e5, 0x0, + 0x3fdf8847bcf0d53e, 0x0, + 0x3fe703c2f7ddc5bf, 0x0, + 0x3fe05260a6aa1f0f, 0x0, + 0x3fa67e869b7f3d87, 0x0, + 0xbfdee04772c8d416, 0x0, + 0xbfe59d408094994e, 0x0, + 0xbfe0bdef96000ecf, 0x0, + 0xbfa5bc1e0bfc1ce1, 0x0, + 0x3fdff1f1ac9c0ab4, 0x0, + 0x3fe5efcb2b866281, 0x0, + 0x3fe03fe84634a4ce, 0x0, + 0xbf9bddb9b55c5239, 0x0, + 0xbfde9c3be98ee09a, 0x0, + 0xbfe6d207d16c63dd, 0x0, + 0xbfdf2321751ce04d, 0x0, + 0x3fa450da36f78d4e, 0x0, + 0x3fdeb1124af0b75d, 0x0, + 0x3fe69ef46713708d, 0x0, + 0x3fe06381e7c33f34, 0x0, + 0xbfc01bacc6414b2e, 0x0, + 0xbfe1aa158ad164f4, 0x0, + 0xbfe78d24d003be73, 0x0, + 0xbfdd5270f4ea9dc8, 0x0, + 0x3facd3dfff103092, 0x0, + 0x3fdc57f0d81528fa, 0x0, + 0x3fe37aeb3ef137dc, 0x0, + 0x3fda56e304063a85, 0x0, + 0xbfa1cb13fb66d3fe, 0x0, + 0xbfdef9b32028dac3, 0x0, + 0xbfe5afba43a87950, 0x0, + 0xbfdf2a08825dfa13, 0x0, + 0x3f8aa1a9daff1817, 0x0, + 0x3fdc3ad4ac1ee574, 0x0, + 0x3fe90208d7b5fe85, 0x0, + 0x3fe0637dba460eb8, 0x0, + 0x3fbce99cfbf094b6, 0x0, + 0xbfddf0a7d68b2c6a, 0x0, + 0xbfe4912fc10de7dc, 0x0, + 0xbfe1b0a6d64fd289, 0x0, + 0xbf984b7d1335d442, 0x0, + 0x3fdd3a830782d649, 0x0, + 0x3fe5d80cbd26cf77, 0x0, + 0x3fdeed210e5786fb, 0x0, + 0x3fa4623b79b9922c, 0x0, + 0xbfd9b6bf73af62fc, 0x0, + 0xbfe814f919ee3172, 0x0, + 0xbfe14882ccfa2bd6, 0x0, + 0xbfa0180bb264af70, 0x0, + 0x3fe069f969b31ea0, 0x0, + 0x3fe95bd9566e48d7, 0x0, + 0x3fddaf8547d303df, 0x0, + 0x3fb34d8ca7b08ad2, 0x0, + 0xbfdd3f2de3a5483e, 0x0, + 0xbfe64762d4c44393, 0x0, + 0xbfe34e3bf8fda2fa, 0x0, + 0x3fb503db8bd8abe9, 0x0, + 0x3fe115632bec817f, 0x0, + 0x3fea7a43754f8c5a, 0x0, + 0x3fdc8c8a5c47adeb, 0x0, + 0x3f7a624a97c411de, 0x0, + 0xbfdfa21aca71d24e, 0x0, + 0xbfe500fac88c8606, 0x0, + 0xbfe1068eadd2b20d, 0x0, + 0xbfb318815d8dc58c, 0x0, + 0x3fe0ab16fc7049f8, 0x0, + 0x3fe6d3bc4ab2d424, 0x0, + 0x3fe14548cde12628, 0x0, + 0x3fa1bdd026d9b4a6, 0x0, + 0xbfda83289a5f91da, 0x0, + 0xbfe64754e1b66a7e, 0x0, + 0xbfdcd05dac4bb1a4, 0x0, + 0x3fb8903eeb8e7b85, 0x0, + 0x3fdc6573676a6be6, 0x0, + 0x3fe4f2fd1d9e2a0d, 0x0, + 0x3fde28c06232343b, 0x0, + 0xbfb3960ca974ab85, 0x0, + 0xbfd9d3da01d079da, 0x0, + 0xbfe5a51c51a80276, 0x0, + 0xbfe19d142d412363, 0x0, + 0xbf261d23e02edbd5, 0x0, + 0x3fe0ad2de9e352c7, 0x0, + 0x3fe6c8f2acced5ba, 0x0, + 0x3fdb37b7dd411bec, 0x0, + 0xbf7cde7d866892da, 0x0, + 0xbfde53294dd66fbd, 0x0, + 0xbfe6736518ac6bfa, 0x0, + 0xbfe09f42fcc2a9bc, 0x0, + 0xbf988a0f5325c314, 0x0, + 0x3fe0760c60af9230, 0x0, + 0x3fe5cf756dc9d902, 0x0, + 0x3fe26e8343ff5287, 0x0, + 0x3f9ce371e4ffe2c1, 0x0, + 0xbfe1bcf9c3253127, 0x0, + 0xbfe7e9ea136ec392, 0x0, + 0xbfdf8d0b83f452a1, 0x0, + 0x3f82808fa521f2e5, 0x0, + 0x3fdcce5cf4017a6c, 0x0, + 0x3fe407b428710809, 0x0, + 0x3fe071e1fcac0b31, 0x0, + 0x3fb52145ecd409fe, 0x0, + 0xbfe0aca07cd58d5d, 0x0, + 0xbfe9395f99624c76, 0x0, + 0xbfe03c4b7871eb1a, 0x0, + 0xbfa6d19b4a578bce, 0x0, + 0x3fde084e7441f99c, 0x0, + 0x3fe629f9f54df00d, 0x0, + 0x3fe2b5311f0751de, 0x0, + 0xbf9ef50b82c2f53b, 0x0, + 0xbfe26128f20c2ad2, 0x0, + 0xbfe4f208c818e65a, 0x0, + 0xbfdc034d53bb58f5, 0x0, + 0x3f9bb5d579866353, 0x0, + 0x3fe11530be89c548, 0x0, + 0x3fe6eb16a5ef13ac, 0x0, + 0x3fe181da1be864d6, 0x0, + 0xbf93d0d932e1c23b, 0x0, + 0xbfdd873afcc2e1b1, 0x0, + 0xbfe50898488a6b83, 0x0, + 0xbfe046d12195493a, 0x0, + 0x3fa95aaec2d9d98a, 0x0, + 0x3fe15ab68969a51d, 0x0, + 0x3fe6df60595f69c9, 0x0, + 0x3fe36a6fd13a7a08, 0x0, + 0xbf9e2760976feb89, 0x0, + 0xbfdf8f205333a78e, 0x0, + 0xbfe3695834a1392e, 0x0, + 0xbfdd232b4098ffbb, 0x0, + 0x3fb4a20980c80d07, 0x0, + 0x3fdbc302f4e1417a, 0x0, + 0x3fe754be6229e3d9, 0x0, + 0x3fdd854d4324b3ad, 0x0, + 0x3fa0651778dbf22f, 0x0, + 0xbfdfeeba78866a38, 0x0, + 0xbfe47a3b2effae34, 0x0, + 0xbfdeeeb8f7f20b1e, 0x0, + 0xbfa54d3e5f0bf8c0, 0x0, + 0x3fdb758b8f14e708, 0x0, + 0x3fe67b8159e4f79a, 0x0, + 0x3fdfd28f8035ccbd, 0x0, + 0x3fa6e99c2e8f7211, 0x0, + 0xbfdcc5a219b15304, 0x0, + 0xbfe7188261352a1f, 0x0, + 0xbfe1493937abe8b7, 0x0, + 0xbfaa052b5c40792f, 0x0, + 0x3fde84a0b0cdfaad, 0x0, + 0x3fe6307ffd2ed241, 0x0, + 0x3fdd8c16847ad6af, 0x0, + 0x3fa06e70cfce7de6, 0x0, + 0xbfdb122cddb22d90, 0x0, + 0xbfe6972a4a0e8ff1, 0x0, + 0xbfd7f7898297ff4c, 0x0, + 0xbf8017566e2bfd54, 0x0, + 0x3fd9fcd49fc5d984, 0x0, + 0x3fe62e2ae5d488e9, 0x0, + 0x3fdeea0d679f5d2e, 0x0, + 0x3fa5e7ce5f7f6b58, 0x0, + 0xbfd7c6f1330094ee, 0x0, + 0xbfe50994f055fc79, 0x0, + 0xbfe0d3db8eac96a1, 0x0, + 0x3fb2899795ccc796, 0x0, + 0x3fe09fbf12fbdc27, 0x0, + 0x3fe843e8c73a183a, 0x0, + 0x3fe117f424fd516e, 0x0, + 0x3f8eea1ed284234a, 0x0, + 0xbfdc8c6bcf01c0bf, 0x0, + 0xbfe68bead184aa14, 0x0, + 0xbfdd549e67d3c9b2, 0x0, + 0xbfa28e07ffe9c7d3, 0x0, + 0x3fe28f65d679fbd2, 0x0, + 0x3fe76bb86134e4ec, 0x0, + 0x3fdf75ce729abb44, 0x0, + 0xbfa3508a59978c1f, 0x0, + 0xbfde43661cf17ef8, 0x0, + 0xbfe4f6960158767c, 0x0, + 0xbfde5146468eba1f, 0x0, + 0x3f908254b7ca7251, 0x0, + 0x3fdd7f2c156c206e, 0x0, + 0x3fe75469943c8025, 0x0, + 0x3fe0dc0f8199c08f, 0x0, + 0x3f9298d104da0f93, 0x0, + 0xbfd893a0e86a6535, 0x0, + 0xbfe865e832d8849f, 0x0, + 0xbfd889e7997611d1, 0x0, + 0x3fc210b5e346cd7f, 0x0, + 0x3fe248d73d5f91ab, 0x0, + 0x3fe50b2ee9e2c9da, 0x0, + 0x3fdc9f39b34187e8, 0x0, + 0xbf91ffebaf47d7ba, 0x0, + 0xbfe2ccc8adbdd0f8, 0x0, + 0xbfe5f31780b3aa76, 0x0, + 0xbfde968b0994cf64, 0x0, + 0xbfa6464fb815a516, 0x0, + 0x3fe24a86dd6027c7, 0x0, + 0x3fe8d4eb4a17dd0b, 0x0, + 0x3fe03f892961a928, 0x0, + 0x3f88db8468e58f24, 0x0, + 0xbfe17230fb6de137, 0x0, + 0xbfe5c6ef2b2eb92b, 0x0, + 0xbfe03120989d9386, 0x0, + 0xbfb05ffbb6f09f16, 0x0, + 0x3fe02cf7b1094059, 0x0, + 0x3fe5f895ec20b927, 0x0, + 0x3fe241cf590a9cab, 0x0, + 0x3f86b87a938cdae6, 0x0, + 0xbfe050bfc7f7bb62, 0x0, + 0xbfe955c0271850f9, 0x0, + 0xbfddbe36a157c8ca, 0x0, + 0x3f8c19f530c37ea6, 0x0, + 0x3fe0ec44eca4223c, 0x0, + 0x3fe7fa8f92cfe46b, 0x0, + 0x3fe1b17b54912872, 0x0, + 0xbf7c8fce9ce6ae40, 0x0, + 0xbfe0a0ec8d1faa7f, 0x0, + 0xbfe7e233d3e67624, 0x0, + 0xbfdd8b397cb75e9e, 0x0, + 0x3f7055e5628dc7c7, 0x0, + 0x3fe0f580c013be73, 0x0, + 0x3fe68a08069d9227, 0x0, + 0x3fdffe308a2e0f02, 0x0, + 0xbfc0ccf01315b18d, 0x0, + 0xbfe1f6a0dad98f99, 0x0, + 0xbfe6a44202d75b0d, 0x0, + 0xbfddb1075bf0d942, 0x0, + 0xbfa48ef245a0b1ac, 0x0, + 0x3fe167444c27e7ed, 0x0, + 0x3fe5c5a970425879, 0x0, + 0x3fe0618239f36665, 0x0, + 0x3f5a82a64cee8b5e, 0x0, + 0xbfe15b968ef145e8, 0x0, + 0xbfe535be8a8498df, 0x0, + 0xbfdc8fd8c6630d98, 0x0, + 0xbf8b547c219ff0d4, 0x0, + 0x3fe181e8b6a70b1c, 0x0, + 0x3fe5807241f97fb7, 0x0, + 0x3fe28a60f908c444, 0x0, + 0x3f7aa2de22de46e1, 0x0, + 0xbfdf400a3c06a9f4, 0x0, + 0xbfe62af86a350919, 0x0, + 0xbfdf2e0fd2b07dcf, 0x0, + 0xbfa76f7280e66e3f, 0x0, + 0x3fdd03bbb5b16b11, 0x0, + 0x3fe7ea45d1fbe156, 0x0, + 0x3fdb224eaac41fb8, 0x0, + 0xbfb44d5771208eae, 0x0, + 0xbfdc37f8dfe2d741, 0x0, + 0xbfe68c2a9695494f, 0x0, + 0xbfe1d1dc338f4e0b, 0x0, + 0x3fb7f5691ba71e19, 0x0, + 0x3fdc6748d1acace3, 0x0, + 0x3fe51c20b37aae26, 0x0, + 0x3fe0a32dde5770d9, 0x0, + 0xbf85d8bec2622ce5, 0x0, + 0xbfdd7ae9bb09c2d6, 0x0, + 0xbfe57c3d86b4d9d1, 0x0, + 0xbfded997c97928c6, 0x0, + 0xbfa6959897ce90af, 0x0, + 0x3fe108fa887d3f4c, 0x0, + 0x3fe7a6e41d8d9471, 0x0, + 0x3fe021ff302cd798, 0x0, + 0xbfa7bb074bc69265, 0x0, + 0xbfdebc6e7b69ec57, 0x0, + 0xbfe7ccdc1a21eebd, 0x0, + 0xbfe094e676b17bcb, 0x0, + 0x3f7ec5a34e91ae9f, 0x0, + 0x3fde4919b3036424, 0x0, + 0x3fe85a9702a3c786, 0x0, + 0x3fe0a275232440d2, 0x0, + 0x3f8008dff34e2205, 0x0, + 0xbfdf854964d8cfef, 0x0, + 0xbfe674d6c63e4e9d, 0x0, + 0xbfe345c9462f9880, 0x0, + 0x3f9ee4ee5d0b6978, 0x0, + 0x3fdb9cad5303132d, 0x0, + 0x3fe8caae4490c366, 0x0, + 0x3fde793445c585f5, 0x0, + 0x3fa01f1f9dcc99b1, 0x0, + 0xbfe0d28255b47f32, 0x0, + 0xbfe553fa34ebedf1, 0x0, + 0xbfdcfb0a940ba47f, 0x0, + 0xbfab820fdc629464, 0x0, + 0x3fdfea5d63f23ca4, 0x0, + 0x3fe72b7c6ac5f222, 0x0, + 0x3fdec1bc1536777e, 0x0, + 0x3fbb8c68302bf476, 0x0, + 0xbfe03c8b6efdedba, 0x0, + 0xbfe90719596b6cab, 0x0, + 0xbfe011693c54b8c9, 0x0, + 0x3f9970792fb32a21, 0x0, + 0x3fdd1ea42024fe91, 0x0, + 0x3fe7f52735b5e8bd, 0x0, + 0x3fe07147d488cf2b, 0x0, + 0x3f8b2c604209bb8e, 0x0, + 0xbfde64364846d67e, 0x0, + 0xbfe69341bb59ebbc, 0x0, + 0xbfde72b21f776bbd, 0x0, + 0xbf91d7d14b5e7b82, 0x0, + 0x3fe17c3f49b444f9, 0x0, + 0x3fe64a2275a3a07e, 0x0, + 0x3fde0c8d95f16d53, 0x0, + 0xbf90860703bbcefd, 0x0, + 0xbfdf129452a9df11, 0x0, + 0xbfe6fd265aa5e23e, 0x0, + 0xbfe02c39dd742605, 0x0, + 0x3f717381e44844ba, 0x0, + 0x3fe12d6da002df00, 0x0, + 0x3fe5a1582bad274e, 0x0, + 0x3fe183680fc01101, 0x0, + 0x3f8fe133577a0210, 0x0, + 0xbfdba0d204a2ca38, 0x0, + 0xbfe4b22fa0d848a1, 0x0, + 0xbfde328c197de9d2, 0x0, + 0xbf816af90f47cbda, 0x0, + 0x3fe015d4c740fed3, 0x0, + 0x3fe504242de92af3, 0x0, + 0x3fd831a9de09b48c, 0x0, + 0x3fab551a2907bba4, 0x0, + 0xbfdffe84eb52189c, 0x0, + 0xbfe69e289fab863b, 0x0, + 0xbfdf3787e915c790, 0x0, + 0x3fa715e1f2d06859, 0x0, + 0x3fe0861496738c38, 0x0, + 0x3fe75852e939fc97, 0x0, + 0x3fdd64161f13e237, 0x0, + 0x3f9d7b81ce34a6da, 0x0, + 0xbfe0b4ad6ec470e5, 0x0, + 0xbfe47710029225e8, 0x0, + 0xbfe086877ccd36fb, 0x0, + 0xbfb70729159a97bc, 0x0, + 0x3fe1276d7ef45c1a, 0x0, + 0x3fe69fd35a780838, 0x0, + 0x3fe2d829f62f9ba1, 0x0, + 0x3f84afd49de8623e, 0x0, + 0xbfdbcf1b5dd4e74e, 0x0, + 0xbfe80a44b9ecac02, 0x0, + 0xbfdcedf5be527e92, 0x0, + 0xbf99b5dac85f25a3, 0x0, + 0x3fe023660bbde319, 0x0, + 0x3fea7b84aa82d10e, 0x0, + 0x3fe0cb19b33704e8, 0x0, + 0x3fa9cdedb4752bd7, 0x0, + 0xbfe03093ef76d464, 0x0, + 0xbfe6ec677cd6c188, 0x0, + 0xbfe1c5bb70074f3d, 0x0, + 0x3fa13ebde49e2514, 0x0, + 0x3fe0df498bd100cc, 0x0, + 0x3fe813f97487f5a4, 0x0, + 0x3fded034d60af2e8, 0x0, + 0xbfa458ae4d40ec0c, 0x0, + 0xbfdee8e371588861, 0x0, + 0xbfe2bd8195c78b10, 0x0, + 0xbfde1cfa2d4fd515, 0x0, + 0x3fa9959336837078, 0x0, + 0x3fdc6fa883ade1fe, 0x0, + 0x3fe5ba42a461df48, 0x0, + 0x3fe00567e34a0da4, 0x0, + 0x3fa4836c27725df7, 0x0, + 0xbfdf62a5ad3d87d4, 0x0, + 0xbfe97ee676d1ba0b, 0x0, + 0xbfdf8505f344b40a, 0x0, + 0xbfb293574720842f, 0x0, + 0x3fde60afc70ab531, 0x0, + 0x3fe4d16d66229485, 0x0, + 0x3fe1fda701785dfe, 0x0, + 0x3fb018f2886efb66, 0x0, + 0xbfdefa4bb49e9341, 0x0, + 0xbfe76c15d002eb67, 0x0, + 0xbfe3414372e22fce, 0x0, + 0xbfb4a673346bff0a, 0x0, + 0x3fdcfa5b243e92a4, 0x0, + 0x3fe71a6e919b471f, 0x0, + 0x3fdf6a70d7b7df75, 0x0, + 0xbfa6e4af03128c9d, 0x0, + 0xbfdf643ce227e165, 0x0, + 0xbfe695d3eee3cf63, 0x0, + 0xbfda44bce1f48f5a, 0x0, + 0xbfa342e802be058c, 0x0, + 0x3fe194f02a02e951, 0x0, + 0x3fe8a369b87bcaac, 0x0, + 0x3fdf0cfe33ecb459, 0x0, + 0x3f7019b847031ae0, 0x0, + 0xbfdcdc8094005639, 0x0, + 0xbfe3763893311c7d, 0x0, + 0xbfe0977a03b7d242, 0x0, + 0x3fb9068a2aa5cf52, 0x0, + 0x3fdf5d84a48546c6, 0x0, + 0x3fe7e1fea671e568, 0x0, + 0x3fe0028e9b8480ac, 0x0, + 0x3f9ebf6cf6b3baf1, 0x0, + 0xbfd8a03c18a10bbb, 0x0, + 0xbfe5bcbfc7ab1d01, 0x0, + 0xbfe21b8b302e0849, 0x0, + 0xbf968ed45c4eacb4, 0x0, + 0x3fda414c49f0e2c4, 0x0, + 0x3fe69a2f174858ab, 0x0, + 0x3fe09e2313818216, 0x0, + 0x3fa44ce7fcbc070b, 0x0, + 0xbfe0f8c8dd7130ae, 0x0, + 0xbfe6f5879355d37a, 0x0, + 0xbfded78bcabc5f04, 0x0, + 0x3fae125b15fbf059, 0x0, + 0x3fe0592e4e45cae6, 0x0, + 0x3fe6cf6f0ce61182, 0x0, + 0x3fdc067cbd905f16, 0x0, + 0x3f87b7f3fda9247f, 0x0, + 0xbfdc99419b6e4274, 0x0, + 0xbfe6de66dc7391ef, 0x0, + 0xbfddb8ac77451ae9, 0x0, + 0xbfb5a24f265eaa20, 0x0, + 0x3fde38e7ee9632e7, 0x0, + 0x3fe5cba4b079d1c4, 0x0, + 0x3fdd1b48d776400c, 0x0, + 0xbfa4b1e41cb42575, 0x0, + 0xbfe07f49970ed100, 0x0, + 0xbfe920fbe0d1228a, 0x0, + 0xbfde5422268eb706, 0x0, + 0x3f8d23567c75a68a, 0x0, + 0x3fde95dc2b9f74cd, 0x0, + 0x3fe8a49ca4f13640, 0x0, + 0x3fdf16e29654194b, 0x0, + 0x3fb06a804f23940b, 0x0, + 0xbfe2851f300b0331, 0x0, + 0xbfe5ee22cf9b642e, 0x0, + 0xbfdd3c2b401bfa70, 0x0, + 0x3fa8e98eb1eef8f2, 0x0, + 0x3fdde6927157daf7, 0x0, + 0x3fe982525849e2b9, 0x0, + 0x3fdc1a0e9a95ee9e, 0x0, + 0xbfb247832605d0ad, 0x0, + 0xbfe05768b15387ac, 0x0, + 0xbfe89e0e90d49f65, 0x0, + 0xbfe0c75333fada68, 0x0, + 0xbfa3d2982eb51528, 0x0, + 0x3fda76fed72bea2e, 0x0, + 0x3fe5b69477d3919b, 0x0, + 0x3fe289ecd68cdd1e, 0x0, + 0x3f97e0798e82f952, 0x0, + 0xbfdfe60e251122e4, 0x0, + 0xbfe4f3e1154b2081, 0x0, + 0xbfe2d1c14f677763, 0x0, + 0x3f8aa1519a2ee0e8, 0x0, + 0x3fdf5435b0e7a424, 0x0, + 0x3fe5c35cb2607de7, 0x0, + 0x3fe0bd719754e284, 0x0, + 0xbf604725805b3ca6, 0x0, + 0xbfdef5b95fa442b2, 0x0, + 0xbfe5e585cd885a00, 0x0, + 0xbfe327b8534c38b8, 0x0, + 0xbfb264f275fd9f34, 0x0, + 0x3fe1f90cc41bbb37, 0x0, + 0x3fe60e152570e7ac, 0x0, + 0x3fdd44ea674dc618, 0x0, + 0xbf9f7b0f82062c3f, 0x0, + 0xbfdd995bb381cced, 0x0, + 0xbfe59911d8359284, 0x0, + 0xbfe1ff386a5cfe25, 0x0, + 0x3fb240a69cc3a9fc, 0x0, + 0x3fde4adfc6e9c8d8, 0x0, + 0x3fe5b4aa55d174de, 0x0, + 0x3fdd802b223f64fa, 0x0, + 0xbf8bfff751a403f9, 0x0, + 0xbfe3c32fc71eeb3f, 0x0, + 0xbfe81957a289257c, 0x0, + 0xbfdf5f0ac0e5ee98, 0x0, + 0x3f9861f32759f686, 0x0, + 0x3fdfdc29b9096100, 0x0, + 0x3fe80d743ca2cf7c, 0x0, + 0x3fe17b772ca3c002, 0x0, + 0x3f78108afbde0c84, 0x0, + 0xbfdc91490151fb76, 0x0, + 0xbfe74bf43c466628, 0x0, + 0xbfddf4f7964f8bff, 0x0, + 0x3faf77e8a18428d8, 0x0, + 0x3fe0c78aca3a50ac, 0x0, + 0x3fe437507ebb5ef6, 0x0, + 0x3fdfd941311aba7c, 0x0, + 0x3f918aeec0103717, 0x0, + 0xbfdfd5915a1e9156, 0x0, + 0xbfe5f16e7f7cd9e7, 0x0, + 0xbfde338c6dd04501, 0x0, + 0x3fac3ebe8b496a9b, 0x0, + 0x3fe1bf8d9c8f538d, 0x0, + 0x3fe652076c8e5264, 0x0, + 0x3fdc3347a1a092fd, 0x0, + 0xbfada6616642c6f7, 0x0, + 0xbfdf73414e593ab1, 0x0, + 0xbfe6cff481bad90b, 0x0, + 0xbfdf9679957bf413, 0x0, + 0xbf85ffe852fe0b9e, 0x0, + 0x3fdcf89791bed902, 0x0, + 0x3fe5059b9d49e5c0, 0x0, + 0x3fe1e5f8219aaac8, 0x0, + 0x3f9e96850910a143, 0x0, + 0xbfde09cf940ad866, 0x0, + 0xbfe6597c1298e98d, 0x0, + 0xbfdc07a3f25d14c8, 0x0, + 0xbfa225b9335dd4e3, 0x0, + 0x3fe16cb3d52e2fc9, 0x0, + 0x3fea1c27e1fd9b80, 0x0, + 0x3fdf3a88956d4b22, 0x0, + 0x3fb617669f870986, 0x0, + 0xbfe0162e33da020e, 0x0, + 0xbfe8f9c651bcca8e, 0x0, + 0xbfdcd1d731052ccc, 0x0, + 0xbfc09d6ba8cca8ec, 0x0, + 0x3fd97c500226ba27, 0x0, + 0x3fe82dc8c48603ce, 0x0, + 0x3fdef76c2c154413, 0x0, + 0xbf70d0de44ec195e, 0x0, + 0xbfdeb222cefb035d, 0x0, + 0xbfe578eece5bf8fe, 0x0, + 0xbfde324ec1690325, 0x0, + 0xbf4ecc4f29dd7863, 0x0, + 0x3fe22e580064a87b, 0x0, + 0x3fe669189f6d211e, 0x0, + 0x3fdcba9af6a55a9c, 0x0, + 0xbf97a7f0f19fb98e, 0x0, + 0xbfdb91d7d322fbfb, 0x0, + 0xbfe62a7678865e43, 0x0, + 0xbfdc17c686229432, 0x0, + 0x3f738135885fa43c, 0x0, + 0x3fdf66ae8e25ddab, 0x0, + 0x3fe50356a35690fe, 0x0, + 0x3fe1794e6ef07430, 0x0, + 0x3f11e373961e422a, 0x0, + 0xbfdcd45b17a7546c, 0x0, + 0xbfe669494044dfda, 0x0, + 0xbfe151f9cce726a9, 0x0, + 0x3f67757f285430a0, 0x0, + 0x3fdb2045dd3c2633, 0x0, + 0x3fe51f7d60188744, 0x0, + 0x3fdd0a0fe5897b55, 0x0, + 0xbf82b8d9b8afbe06, 0x0, + 0xbfe18e8eea69203a, 0x0, + 0xbfe69ea245cb77da, 0x0, + 0xbfda6ab9ea05f147, 0x0, + 0x3fa73d59aac22eb4, 0x0, + 0x3fe0b78279921b31, 0x0, + 0x3fe758d36217c4c6, 0x0, + 0x3fdda641b34444be, 0x0, + 0xbfa0cac5216296e6, 0x0, + 0xbfdfcca5a55b7a82, 0x0, + 0xbfe6af35882d8f83, 0x0, + 0xbfddc54a33050b8a, 0x0, + 0xbfa29bcc1fdde3fa, 0x0, + 0x3fe05d68e9ce6deb, 0x0, + 0x3fe598dd4b88ef80, 0x0, + 0x3fe2588d8687df19, 0x0, + 0xbfb5d83d85846efc, 0x0, + 0xbfe03bebcd4aa46a, 0x0, + 0xbfe837847c6d8522, 0x0, + 0xbfe1e71dc99e4f6b, 0x0, + 0xbfa2a6dbbc658f11, 0x0, + 0x3fddd301b9c8eda8, 0x0, + 0x3fe4c0d0d6b464f4, 0x0, + 0x3fe06993d93c95ac, 0x0, + 0x3f7f035eed0a7b90, 0x0, + 0xbfd9af37b528050e, 0x0, + 0xbfe5a1cb1e0c1b9b, 0x0, + 0xbfe0839e95439646, 0x0, + 0xbfa19259d5a0cfac, 0x0, + 0x3fe0bc537ad617fc, 0x0, + 0x3fe5e8432d0bda63, 0x0, + 0x3fdcc90b3cb4fd20, 0x0, + 0xbfa7cd9c23c4c17b, 0x0, + 0xbfe1edd8dc2ce58a, 0x0, + 0xbfe2532e6d79d7a3, 0x0, + 0xbfdb57124fadbaa8, 0x0, + 0x3f87752c2a09759d, 0x0, + 0x3fe08fe16464b78f, 0x0, + 0x3fe7995eb7657a5f, 0x0, + 0x3fdc49b3f4b33963, 0x0, + 0x3fb1dd3dfc143636, 0x0, + 0xbfe0a461b9e40b50, 0x0, + 0xbfe8841a3bdf2bd0, 0x0, + 0xbfd9fbae78713539, 0x0, + 0x3f741f0139af4dee, 0x0, + 0x3fdf935bfde00186, 0x0, + 0x3fe7ae954adbd146, 0x0, + 0x3fe15d330cc8b4f1, 0x0, + 0x3f950560e482c7dc, 0x0, + 0xbfdbfd141d4cf4b8, 0x0, + 0xbfe6863605bdc91d, 0x0, + 0xbfdb9d926b4f72a1, 0x0, + 0x3fb3af87333874fc, 0x0, + 0x3fe0c076d5ef04a1, 0x0, + 0x3fe7c2fd32fe0cfd, 0x0, + 0x3fe26444869a6586, 0x0, + 0xbf828454e8131b06, 0x0, + 0xbfdb1cdc6554f826, 0x0, + 0xbfe5c3fa3332af61, 0x0, + 0xbfe03abf4a9bf53c, 0x0, + 0xbfb04ff67f56e0d0, 0x0, + 0x3fdc055030bead62, 0x0, + 0x3fe43b2a9469c9e0, 0x0, + 0x3fdda2f707e8b98b, 0x0, + 0xbfa821105daf7ce1, 0x0, + 0xbfd9fcaf2dfce626, 0x0, + 0xbfe8dbb14c55e3ed, 0x0, + 0xbfdf6380ae5f6230, 0x0, + 0xbf7a2aed0532bc18, 0x0, + 0x3fdb8f1918e1f701, 0x0, + 0x3fe6b290652d62e3, 0x0, + 0x3fe0335bac57a334, 0x0, + 0xbfb0140a4d7dc8d7, 0x0, + 0xbfda52299a7a74d6, 0x0, + 0xbfe691bafa8b910c, 0x0, + 0xbfd77214b2664464, 0x0, + 0x3f95a0cd73363c6d, 0x0, + 0x3fdc3365af2ccbea, 0x0, + 0x3fe55304d065dfa4, 0x0, + 0x3fdb05282c02a7da, 0x0, + 0x3f96cbf8cefc214f, 0x0, + 0xbfdbc6459f343aee, 0x0, + 0xbfe8d5343ad2eef2, 0x0, + 0xbfdec87a3e5fa59e, 0x0, + 0x3fac93cc7c377059, 0x0, + 0x3fe05ce94d20cb26, 0x0, + 0x3fe445b09070fa19, 0x0, + 0x3fdc24b5feb905af, 0x0, + 0xbf8508e4959c6f17, 0x0, + 0xbfe201612fdc6a98, 0x0, + 0xbfe62cc1defe73a0, 0x0, + 0xbfdf2f2c43b4e164, 0x0, + 0x3f8b3c656ab6ee3f, 0x0, + 0x3fdf2ce9d64e26f4, 0x0, + 0x3fe78f6ce3dcd291, 0x0, + 0x3fd9a8ee4e36a361, 0x0, + 0x3f844c6995f906b8, 0x0, + 0xbfdca2d0c4b61f12, 0x0, + 0xbfe488e569d98a1d, 0x0, + 0xbfd9798737b0b863, 0x0, + 0x3fac6411b958ed6a, 0x0, + 0x3fdf904eec2fd1c0, 0x0, + 0x3fe7208e2e082243, 0x0, + 0x3fdea0781b4990fb, 0x0, + 0x3f8cff5482375bd8, 0x0, + 0xbfde161fa4feeeb2, 0x0, + 0xbfe77f0da187bf68, 0x0, + 0xbfdf73af85e1a5eb, 0x0, + 0x3fa52b1f30318c92, 0x0, + 0x3fe0801773614a61, 0x0, + 0x3fe4263bba35a35e, 0x0, + 0x3fe005aa2ce248e2, 0x0, + 0xbfa8f624de7988ec, 0x0, + 0xbfdffa6bf18a873d, 0x0, + 0xbfe7a4a602989453, 0x0, + 0xbfdaa2c2de7b916e, 0x0, + 0xbfad6efbae02c249, 0x0, + 0x3fdad81cbc1d998e, 0x0, + 0x3fe57121d23b41ad, 0x0, + 0x3fe114c6c5c385d6, 0x0, + 0xbf6403daf06f13cb, 0x0, + 0xbfdfe50307c494c8, 0x0, + 0xbfe52e5a9bc0eccf, 0x0, + 0xbfde24bde3ed97c7, 0x0, + 0x3fb18cf3e1f52fd5, 0x0, + 0x3fe078a2b861b0c8, 0x0, + 0x3fe5bfc60011b573, 0x0, + 0x3fe31b60c45a6852, 0x0, + 0x3f93cda40ed3ea15, 0x0, + 0xbfe13040115718cb, 0x0, + 0xbfe6a06fb5509cc5, 0x0, + 0xbfdce5eac38ccb45, 0x0, + 0x3f98fdb6237da1f9, 0x0, + 0x3fde07634f0cbdae, 0x0, + 0x3fe8bb66cc644ea7, 0x0, + 0x3fda9321c186a264, 0x0, + 0x3fad4571a01e4724, 0x0, + 0xbfe14cf56df945f9, 0x0, + 0xbfe290b396ee5782, 0x0, + 0xbfdeb188c1715c5a, 0x0, + 0x3fa798de5354e182, 0x0, + 0x3fdf2ad508351cf8, 0x0, + 0x3fe59546b297e312, 0x0, + 0x3fde7613c8d6f4e9, 0x0, + 0xbfa268e5169a0c8d, 0x0, + 0xbfdf0d16ceaf3a94, 0x0, + 0xbfe7453b0e5da2f6, 0x0, + 0xbfe06581bba78a91, 0x0, + 0x3f50f91db9c1a599, 0x0, + 0x3fe0ba263b5068ac, 0x0, + 0x3fe5fd2a029f83f2, 0x0, + 0x3fdf989f87333eee, 0x0, + 0xbfa42eae212d7bf6, 0x0, + 0xbfdb285aa2c1cefd, 0x0, + 0xbfe63897a632526b, 0x0, + 0xbfda183090ad70ee, 0x0, + 0xbf9a74a0f58c0b79, 0x0, + 0x3fdcecb13e8919ce, 0x0, + 0x3fe7961b13abd3f1, 0x0, + 0x3fe0981f24481375, 0x0, + 0x3fb3bfa4fbf24b72, 0x0, + 0xbfda24c292d55d32, 0x0, + 0xbfe5bad4815cca68, 0x0, + 0xbfdffbf4665554e9, 0x0, + 0x3f78b56964a40209, 0x0, + 0x3fdb4bd0c31ece4e, 0x0, + 0x3fe65812a84dba38, 0x0, + 0x3fdd0a44a03e8da8, 0x0, + 0x3facb1a0b874fa4b, 0x0, + 0xbfdd0eaf5b9aad2e, 0x0, + 0xbfe1f10145963b8f, 0x0, + 0xbfdbade9f23d266a, 0x0, + 0x3f771ad74713c570, 0x0, + 0x3fe1d1074458b72c, 0x0, + 0x3fe9d5740d58879e, 0x0, + 0x3fdc4db473a08546, 0x0, + 0xbf4ad171c9b873df, 0x0, + 0xbfe14895ec469acb, 0x0, + 0xbfe7f51c4ced2810, 0x0, + 0xbfe0ab4371791b32, 0x0, + 0x3fb0521c82a808ad, 0x0, + 0x3fe301b8fae0d6e4, 0x0, + 0x3fe687ac2348ad0f, 0x0, + 0x3fdd7d60bf4cf0a4, 0x0, + 0x3f728c8048711d2a, 0x0, + 0xbfda91c0c8ec22ff, 0x0, + 0xbfe4c7993fac5219, 0x0, + 0xbfdfe84e7cd73065, 0x0, + 0x3fbbd2e9e7743150, 0x0, + 0x3fdc94c7a5a7cfbb, 0x0, + 0x3fe6edb3f0eb12c5, 0x0, + 0x3fdacb58b4982c43, 0x0, + 0x3f92ecb42e3ca584, 0x0, + 0xbfe2d944757c719a, 0x0, + 0xbfe6e0a0ee3a4523, 0x0, + 0xbfde4399ec8ac4cc, 0x0, + 0x3f974a14bc54d66b, 0x0, + 0x3fe2859304e13a3c, 0x0, + 0x3fe9806104ede09c, 0x0, + 0x3fe05a1f7d8e9907, 0x0, + 0x3fb7fb521abe02fd, 0x0, + 0xbfdf76e42bbe818b, 0x0, + 0xbfe9161c4ec3d942, 0x0, + 0xbfdf86f035db1d22, 0x0, + 0xbf9e01193ca6afa8, 0x0, + 0x3fd7bc0c04365560, 0x0, + 0x3fe66179095b0c0f, 0x0, + 0x3fddd77886279135, 0x0, + 0xbf7fd4e7faf4706e, 0x0, + 0xbfe182f9090870d8, 0x0, + 0xbfe3f07c60f846f8, 0x0, + 0xbfe007493702689a, 0x0, + 0xbfa4cc44897266c6, 0x0, + 0x3fde4d7883806951, 0x0, + 0x3fe55f1cd554a574, 0x0, + 0x3fddb2975e447f6e, 0x0, + 0xbf9dab114097fd1d, 0x0, + 0xbfe35a96ad843ba7, 0x0, + 0xbfe71b1b3b9969cf, 0x0, + 0xbfdde9b58959ba99, 0x0, + 0xbfaff4df10c7ea46, 0x0, + 0x3fe0deff25e891e0, 0x0, + 0x3fe56b595d3af0da, 0x0, + 0x3fe1d27a88725d53, 0x0, + 0x3fb286ef50f052b1, 0x0, + 0xbfde5f5534a269fc, 0x0, + 0xbfe89cc4f4e3489e, 0x0, + 0xbfe1ec470319fbdb, 0x0, + 0x3faeecb8ea0694c7, 0x0, + 0x3fdf9e746a16611d, 0x0, + 0x3fe8a57ea47b6f45, 0x0, + 0x3fde4c0a7c60ace8, 0x0, + 0xbfb0a6bb2a1f34b8, 0x0, + 0xbfe1e4a9104071f9, 0x0, + 0xbfe79727d8b44824, 0x0, + 0xbfe024fa9af5b1fe, 0x0, + 0xbfb0f9526c8e71e4, 0x0, + 0x3fdcc09b069c73ea, 0x0, + 0x3fe5abfb42aa7c82, 0x0, + 0x3fdad8d59aab5f3e, 0x0, + 0x3fa2428f3d1bb698, 0x0, + 0xbfe253fa7a040aca, 0x0, + 0xbfe9487f92043218, 0x0, + 0xbfe0101e47a746da, 0x0, + 0x3fbcaac805762e62, 0x0, + 0x3fdc8458c910ea72, 0x0, + 0x3fe6c6fa6f6c3da4, 0x0, + 0x3fdf26aefefe3b4b, 0x0, + 0x3fa4a4dd4e990add, 0x0, + 0xbfe19ee3618aab8a, 0x0, + 0xbfe7ee5d1eadd52b, 0x0, + 0xbfdf00f7d37bd562, 0x0, + 0xbfb278fc236d1ac9, 0x0, + 0x3fe1457cd9d09256, 0x0, + 0x3fe62968e5760bfa, 0x0, + 0x3fe107959045ccfb, 0x0, + 0x3fa02a96aaab0f0a, 0x0, + 0xbfe17f8112f657fb, 0x0, + 0xbfe527296d44689a, 0x0, + 0xbfe004bf6615169c, 0x0, + 0x3f87e5b49cab5ed2, 0x0, + 0x3fde12ec7020d7a4, 0x0, + 0x3fe61b423dee0559, 0x0, + 0x3fde0cb25ee54a3b, 0x0, + 0xbfa87a4ac0c5011e, 0x0, + 0xbfe12621934413fe, 0x0, + 0xbfe8c9163e823183, 0x0, + 0xbfddf8233410754c, 0x0, + 0xbf9ce8e8a646534e, 0x0, + 0x3fe0ad610bb54f4d, 0x0, + 0x3fe661407bd56ba8, 0x0, + 0x3fdda6110963edaa, 0x0, + 0x3fb9ba96af79ff5b, 0x0, + 0xbfe035491b71af31, 0x0, + 0xbfe633403925b2c6, 0x0, + 0xbfe0c568ace371cf, 0x0, + 0xbf7f2d783dc61c32, 0x0, + 0x3fdc3e4db4ddd0a9, 0x0, + 0x3fe58a899b43f26b, 0x0, + 0x3fdbe642696b0c54, 0x0, + 0xbfb74d949cb02848, 0x0, + 0xbfddd2d772152f5e, 0x0, + 0xbfe5cc8eeb402f35, 0x0, + 0xbfdbad9c9f28b5a8, 0x0, + 0xbf5b387bdf6365aa, 0x0, + 0x3fdce9d7d7355d7f, 0x0, + 0x3fe404e309f8f578, 0x0, + 0x3fe14c99dfcae1ad, 0x0, + 0xbf9ffcb23a98e7df, 0x0, + 0xbfdb30e06ea578fb, 0x0, + 0xbfe68e4228f23d03, 0x0, + 0xbfe03af53c5d482b, 0x0, + 0x3fb2a8573d791485, 0x0, + 0x3fde533ac2b105e8, 0x0, + 0x3fe6641c49ae4bc0, 0x0, + 0x3fde14b0caf45682, 0x0, + 0xbf973960e830c6e5, 0x0, + 0xbfdff4e6f6e2b492, 0x0, + 0xbfe6ff4b5b683dd2, 0x0, + 0xbfe1ed58ced8aa0e, 0x0, + 0xbf9be3005bd6103a, 0x0, + 0x3fe1dcb1c96ff1bf, 0x0, + 0x3fe44296d4faffd7, 0x0, + 0x3fdf7ac75ed10aa9, 0x0, + 0x3fa1528acdf1b922, 0x0, + 0xbfdf0562ed526cf7, 0x0, + 0xbfe6aecede594dca, 0x0, + 0xbfde6901b232847b, 0x0, + 0x3f834828a32ecd5c, 0x0, + 0x3fdefa57cea1b4a7, 0x0, + 0x3fe55cd759273b8e, 0x0, + 0x3fdc25b08ef4b504, 0x0, + 0x3fbd17ace4f1f6de, 0x0, + 0xbfe0d5acddc9f74b, 0x0, + 0xbfe6eb359c2a9091, 0x0, + 0xbfdac168e6ee8eba, 0x0, + 0x3fa1498beaaa4b23, 0x0, + 0x3fdec32714482855, 0x0, + 0x3fe47c1e7154a209, 0x0, + 0x3fdbd833aeca1af0, 0x0, + 0x3fb0b80c168731b8, 0x0, + 0xbfe08ba14ccc1ab8, 0x0, + 0xbfe53315288bd847, 0x0, + 0xbfe07132948db399, 0x0, + 0x3f8e675d922888dd, 0x0, + 0x3fe2899ea5970cad, 0x0, + 0x3fe7c47211593e3f, 0x0, + 0x3fde5a1761f848ac, 0x0, + 0xbf72241b4991bc83, 0x0, + 0xbfe138affccb5fcf, 0x0, + 0xbfe51f6712b29e8f, 0x0, + 0xbfe0a1d60ad3a8b2, 0x0, + 0xbfb31b4fe71a6cf4, 0x0, + 0x3fda6264cfd87a52, 0x0, + 0x3fe551487af39636, 0x0, + 0x3fda38ff488d4c40, 0x0, + 0xbfa63d177d7a501d, 0x0, + 0xbfdff685cbe0cad4, 0x0, + 0xbfeac65e53d0e294, 0x0, + 0xbfdf1650d2205555, 0x0, + 0x3fb9dac6187a5f93, 0x0, + 0x3fe10149b748e53b, 0x0, + 0x3fe697ef9e4f9af0, 0x0, + 0x3fdc8e8bf6fd4d5b, 0x0, + 0xbf9f8d12d272389e, 0x0, + 0xbfdc025ae36e405e, 0x0, + 0xbfe729f77839257f, 0x0, + 0xbfdfb499d840e7cf, 0x0, + 0xbfaef98d45e24d8f, 0x0, + 0x3fdf030e3a306851, 0x0, + 0x3fe685389a003bc1, 0x0, + 0x3fd9a311ff3d5c26, 0x0, + 0x3f9aed3dd98e401c, 0x0, + 0xbfdb1a1c6a9ca5ec, 0x0, + 0xbfe6edb6476d2115, 0x0, + 0xbfe1b570cca6f070, 0x0, + 0x3fa458923c251393, 0x0, + 0x3fe0a5d13ef57d3a, 0x0, + 0x3fe646675aac75d7, 0x0, + 0x3fe0828d247298c3, 0x0, + 0x3f8a5c0aa6f7b1f3, 0x0, + 0xbfdfab3a72ba8fc0, 0x0, + 0xbfe668f6a3af4037, 0x0, + 0xbfe09ca5d455124d, 0x0, + 0xbfa1887e43f661fe, 0x0, + 0x3fdc1c8d0a6a0e90, 0x0, + 0x3fe6ff75e54d4e24, 0x0, + 0x3fe20a188712e68f, 0x0, + 0x3fa8f6477b2fc8fb, 0x0, + 0xbfe08dd81c26e242, 0x0, + 0xbfe8b8246b870f86, 0x0, + 0xbfe11c254a8e20ea, 0x0, + 0xbf925deb311e4316, 0x0, + 0x3fe0c6bfb21a060e, 0x0, + 0x3fe7506e7d30bd30, 0x0, + 0x3fe0fac03da2d84c, 0x0, + 0x3f94966f9aa02243, 0x0, + 0xbfdb68b134db7cbc, 0x0, + 0xbfe5766aaac49d49, 0x0, + 0xbfe15b249cdadf03, 0x0, + 0xbf9d3c084344b00a, 0x0, + 0x3fe29d035749a3cb, 0x0, + 0x3fe86f816f4d4e9e, 0x0, + 0x3fe082c21f8c47e3, 0x0, + 0x3f7f6e9f0816926f, 0x0, + 0xbfe215b99f75ef70, 0x0, + 0xbfe5082c99660ff9, 0x0, + 0xbfe13800a9dd09b8, 0x0, + 0xbfa195dcfd20a325, 0x0, + 0x3fe0982179c8c340, 0x0, + 0x3fe58358ab060119, 0x0, + 0x3fe0ef8cd4f05bf1, 0x0, + 0xbfae3d11a48e177c, 0x0, + 0xbfe0d4f0f8d57f26, 0x0, + 0xbfe45f06f97b8198, 0x0, + 0xbfe1947136a54cbe, 0x0, + 0xbf8f920ca6122f70, 0x0, + 0x3fdedef121dcbb48, 0x0, + 0x3fe7a5576a03bd33, 0x0, + 0x3fda28099d1deae7, 0x0, + 0xbfa39eadb6e9cb9c, 0x0, + 0xbfdcb7c12ac2716c, 0x0, + 0xbfe5c9aec32299f6, 0x0, + 0xbfe0c9d3874306ee, 0x0, + 0x3f9a687f5bf5bfc4, 0x0, + 0x3fdd727bd375e762, 0x0, + 0x3fe964e4476da89b, 0x0, + 0x3fde65cd60d0451c, 0x0, + 0xbf9c2eeafc106a27, 0x0, + 0xbfe27dd6a5cf1d04, 0x0, + 0xbfe4a3be9b9b45ba, 0x0, + 0xbfdd6c284ee092f8, 0x0, + 0xbfaa9bd688e9dc2d, 0x0, + 0x3fdd0c140fedace7, 0x0, + 0x3fe5c601c1e69d6b, 0x0, + 0x3fe3a42d77924889, 0x0, + 0x3fa881807e7763fe, 0x0, + 0xbfd8a4b273491739, 0x0, + 0xbfe9ecb21c14f138, 0x0, + 0xbfdcada59b6e0f2f, 0x0, + 0xbf94887519a5975c, 0x0, + 0x3fdf61c2249a8d37, 0x0, + 0x3fe958480f198663, 0x0, + 0x3fdc19861343ee24, 0x0, + 0x3fbdb7934bf023bb, 0x0, + 0xbfe087ec8e50ec10, 0x0, + 0xbfe79655fa20c9ce, 0x0, + 0xbfe001daf576ef51, 0x0, + 0x3fb615ef7ec1f45b, 0x0, + 0x3fdbd786c3555067, 0x0, + 0x3fe530a443e419c9, 0x0, + 0x3fde495cdcd10e6c, 0x0, + 0x3f7f9acdd07e7bfc, 0x0, + 0xbfddda3a4411ae67, 0x0, + 0xbfe6a887787155bb, 0x0, + 0xbfdbdc3bec0adbf5, 0x0, + 0xbf9c8d6624d3b6e5, 0x0, + 0x3fe0ac3528d39e1b, 0x0, + 0x3fe6262ff46bc922, 0x0, + 0x3fe058729cf9201f, 0x0, + 0x3fb4b0eea25a1156, 0x0, + 0xbfe12faa3348364c, 0x0, + 0xbfe5f40605c7e9bf, 0x0, + 0xbfe2985cc854e6c6, 0x0, + 0xbfb1312ee59ca328, 0x0, + 0x3fdc8635040b667a, 0x0, + 0x3fe4de6ddd4d2cb0, 0x0, + 0x3fdfa6bc16484a4e, 0x0, + 0xbf974eec3530ab83, 0x0, + 0xbfe0e730877101b0, 0x0, + 0xbfe7c5b2965639d2, 0x0, + 0xbfe21de164c2b489, 0x0, + 0xbfa7248a1851a671, 0x0, + 0x3fd860b98d8cc6ad, 0x0, + 0x3fe76252248cf617, 0x0, + 0x3fdb2082bdd27776, 0x0, + 0xbfac021e48b72e6b, 0x0, + 0xbfe3a20f3f881a0c, 0x0, + 0xbfe79282d7a69bda, 0x0, + 0xbfd9415cde569bfe, 0x0, + 0xbf80de4fed8c217d, 0x0, + 0x3fe11ac99390d234, 0x0, + 0x3fe534fbc0e8eab1, 0x0, + 0x3fe1013b33cc8c71, 0x0, + 0xbf8991878ffbd395, 0x0, + 0xbfe0a66226a200b7, 0x0, + 0xbfe5a23ec470ac55, 0x0, + 0xbfdc3a35058fd8c2, 0x0, + 0x3f54ba8aab08bc71, 0x0, + 0x3fdd2c0481440a26, 0x0, + 0x3fe4703c96f1ba63, 0x0, + 0x3fdd756a2a4e73f6, 0x0, + 0x3faed9cdb840ea73, 0x0, + 0xbfe0ebfa0f3fbe01, 0x0, + 0xbfe6f996f7f3d6f5, 0x0, + 0xbfd91f0d7185d3a4, 0x0, + 0xbf8d15c172bf9925, 0x0, + 0x3fe06bc1cd6a4ba0, 0x0, + 0x3fe6c77a2290b9a5, 0x0, + 0x3fe04b533f101c15, 0x0, + 0x3faf7b29237a3b94, 0x0, + 0xbfdc27487d09dfe9, 0x0, + 0xbfe4a569e76f0072, 0x0, + 0xbfdb7622565415e6, 0x0, + 0x3f62435f9ddbb100, 0x0, + 0x3fdc0fd996bf7b26, 0x0, + 0x3fe5967d015c1aff, 0x0, + 0x3fdff82f785297bb, 0x0, + 0x3f8692e5746551c1, 0x0, + 0xbfe05533d21d0743, 0x0, + 0xbfe64c425349ef74, 0x0, + 0xbfda2e8f0044caaf, 0x0, + 0xbfc36824aee7677a, 0x0, + 0x3fe19f9e08098065, 0x0, + 0x3fe505bba81cea5b, 0x0, + 0x3fe0bfd981cf219e, 0x0, + 0xbfa06aa2029c131b, 0x0, + 0xbfdc74f6868d2c1d, 0x0, + 0xbfe7248096030dbe, 0x0, + 0xbfdda74a27691f9c, 0x0, + 0xbfa9e2e738762088, 0x0, + 0x3fe21dded69035b1, 0x0, + 0x3fe7eb29ff809334, 0x0, + 0x3fdd6638a54c8612, 0x0, + 0xbf946921397eaef1, 0x0, + 0xbfe0f9a968e1f401, 0x0, + 0xbfe6870994adb762, 0x0, + 0xbfde59b7054dea64, 0x0, + 0xbf6e5f896a51753e, 0x0, + 0x3fd96b502de08a95, 0x0, + 0x3fe68b2f11506cb8, 0x0, + 0x3fe166d7d93b4074, 0x0, + 0x3fb4afec58719301, 0x0, + 0xbfe18b9316f359f8, 0x0, + 0xbfe70f26738637ff, 0x0, + 0xbfe107cd13e9a57a, 0x0, + 0xbf8fff55df383c21, 0x0, + 0x3fe02bd7fcc2a4e7, 0x0, + 0x3fe63b97d8bca555, 0x0, + 0x3fe0d30a263bc15a, 0x0, + 0xbf94f7a27e87d9f6, 0x0, + 0xbfdef97594e432ea, 0x0, + 0xbfe59a45f05751e8, 0x0, + 0xbfd7eb85dfba4c5a, 0x0, + 0xbf951a726a9b80f7, 0x0, + 0x3fe01a81b018693d, 0x0, + 0x3fe74954c4543056, 0x0, + 0x3fdb27684378998b, 0x0, + 0xbfa9f49121eba4a4, 0x0, + 0xbfde05a3a11ec5c3, 0x0, + 0xbfe6ef74a839ad22, 0x0, + 0xbfdc78932c891d69, 0x0, + 0x3f8dbf7a0ab9ba85, 0x0, + 0x3fe06f685c9669a0, 0x0, + 0x3fe618563a0f2380, 0x0, + 0x3fe07a61e8f02ab6, 0x0, + 0xbfbe9fc34ddda9bf, 0x0, + 0xbfdf404469920165, 0x0, + 0xbfe5ad259b5924e7, 0x0, + 0xbfe48e93cd8634cf, 0x0, + 0xbfb17c428b197c49, 0x0, + 0x3fdd77e511827ffe, 0x0, + 0x3fe8b79150605980, 0x0, + 0x3fde9509ebeff178, 0x0, + 0x3f9012288f1a7e9f, 0x0, + 0xbfdcdea21486adfe, 0x0, + 0xbfe68d396ea27fc0, 0x0, + 0xbfe1a2dcbe39ed89, 0x0, + 0xbfae7be2c26e77e6, 0x0, + 0x3fdf3845c757d6b2, 0x0, + 0x3fe6cda28e83aab6, 0x0, + 0x3fdca6e095c2c243, 0x0, + 0x3fa659de44123e3c, 0x0, + 0xbfe10c366420625b, 0x0, + 0xbfe6447eeb0991cf, 0x0, + 0xbfde808a52a4746c, 0x0, + 0xbfacdf7255edc9ca, 0x0, + 0x3fdb6e6df5f5f37c, 0x0, + 0x3fe543607d677059, 0x0, + 0x3fe0978741e31f3a, 0x0, + 0xbfac63d3530ee711, 0x0, + 0xbfdddc01b5904b8f, 0x0, + 0xbfe8fc495680b3da, 0x0, + 0xbfdde784c6057db6, 0x0, + 0xbfadab6b4435504f, 0x0, + 0x3fdb9c727a540689, 0x0, + 0x3fe6d5e1c020be55, 0x0, + 0x3fdee0230ff36c39, 0x0, + 0xbfb2b07e3c3b71c3, 0x0, + 0xbfdf87ef6fbb5c50, 0x0, + 0xbfe61e59266ab151, 0x0, + 0xbfde8b6bb36d208a, 0x0, + 0xbf95d2732944403b, 0x0, + 0x3fe2c3f45192f57f, 0x0, + 0x3fe534a5f0ea8a2d, 0x0, + 0x3fe09cf76b16e444, 0x0, + 0x3fa13e1dfe1ec741, 0x0, + 0xbfe356b907432511, 0x0, + 0xbfe4156af4891372, 0x0, + 0xbfe0e0f4bd6c3456, 0x0, + 0xbfad853af131f3d9, 0x0, + 0x3fd7b610088c9de8, 0x0, + 0x3fe3425b07c627ce, 0x0, + 0x3fe21dafa400d199, 0x0, + 0x3fa4b5007fcdb49c, 0x0, + 0xbfdc29805f10ee88, 0x0, + 0xbfe50dfa06f5b53b, 0x0, + 0xbfdd19797cfbc1ab, 0x0, + 0x3f9778a3f7f66a97, 0x0, + 0x3fdf41c01974e9f5, 0x0, + 0x3fe7f75a029d00d0, 0x0, + 0x3fd9ae538f98da5e, 0x0, + 0xbfb1a70df12f6c57, 0x0, + 0xbfe05fc51990985d, 0x0, + 0xbfe5b3bd0c5d2830, 0x0, + 0xbfda76df153a973c, 0x0, + 0xbfa68c95572eeb49, 0x0, + 0x3fd956c8b73cc3b4, 0x0, + 0x3fe5912d2791bd9c, 0x0, + 0x3fdfa3e0a0ecef4e, 0x0, + 0xbfb9178b928e4dbb, 0x0, + 0xbfd4c87c5e46b62b, 0x0, + 0xbfe71839b46fadf5, 0x0, + 0xbfe112891b70c6de, 0x0, + 0x3f7819fd707120ca, 0x0, + 0x3fdee28001590c1c, 0x0, + 0x3fe570edf279b2d7, 0x0, + 0x3fdfb124140f4e03, 0x0, + 0x3faa9a87f88ab4ed, 0x0, + 0xbfdbbe1937b557bf, 0x0, + 0xbfe53b229f7e984c, 0x0, + 0xbfdf4c44627e6b39, 0x0, + 0x3f9749f6469366d3, 0x0, + 0x3fdd0ca3e0cf6da0, 0x0, + 0x3fe6dbf1b37a70b0, 0x0, + 0x3fdef6ff057461b9, 0x0, + 0x3f6e4becdc9a6887, 0x0, + 0xbfe12445b64d5a00, 0x0, + 0xbfe19b8c18691df9, 0x0, + 0xbfdaf6237f36a6dd, 0x0, + 0xbfbea0ea846cb620, 0x0, + 0x3fe0c70784485ebf, 0x0, + 0x3fe55727d28d2365, 0x0, + 0x3fe39c1d5eac4696, 0x0, + 0xbfa00c0d44eb0544, 0x0, + 0xbfe05ed744c9effa, 0x0, + 0xbfe63b647d520ffa, 0x0, + 0xbfe0b1875048e324, 0x0, + 0xbf9de016baf53141, 0x0, + 0x3fde55b6b7ac9cbb, 0x0, + 0x3fe56c6bc1c4c1cb, 0x0, + 0x3fdcbc5caf08f45e, 0x0, + 0xbfa0d9e23ceb428b, 0x0, + 0xbfdba04aee1c25ea, 0x0, + 0xbfe7acaa00673593, 0x0, + 0xbfdfc8610346be3a, 0x0, + 0xbf7b949e3540e03e, 0x0, + 0x3fe01f1b984e2988, 0x0, + 0x3fe942365af3cc92, 0x0, + 0x3fe1d1486e835064, 0x0, + 0x3fa237938d46130b, 0x0, + 0xbfda4e99961398c6, 0x0, + 0xbfe7344551713cd3, 0x0, + 0xbfe0bad21fd300bd, 0x0, + 0xbf86f1fe8e03470e, 0x0, + 0x3fe07541c7d057dd, 0x0, + 0x3fe809b570c54f49, 0x0, + 0x3fe011dc6f193ba0, 0x0, + 0xbf988fa12d6877fd, 0x0, + 0xbfe08890e8631c44, 0x0, + 0xbfe7278ea9519502, 0x0, + 0xbfdfb588af548186, 0x0, + 0x3fa564179c8b52b9, 0x0, + 0x3fdf23928a6ff4a8, 0x0, + 0x3fe3d7cb64fd1665, 0x0, + 0x3fdce9a3bb073995, 0x0, + 0x3f8d62b366965796, 0x0, + 0xbfdd11a390714983, 0x0, + 0xbfe673f3d2fdf422, 0x0, + 0xbfdddeea08d72eee, 0x0, + 0x3f49acc5af0be281, 0x0, + 0x3fdfc8e2363e7eec, 0x0, + 0x3fead6f8457184cc, 0x0, + 0x3fe1e9f51b452738, 0x0, + 0xbf8b6603b3264700, 0x0, + 0xbfde15cddd9b9a67, 0x0, + 0xbfea0e49a7d815fc, 0x0, + 0xbfdd84289c6db2a3, 0x0, + 0xbfb3e3f27f76186e, 0x0, + 0x3fdfb512024acf78, 0x0, + 0x3fe5ee2da6fa99d0, 0x0, + 0x3fe24a19f1b6bbb0, 0x0, + 0x3f86175191580529, 0x0, + 0xbfe08069bd143238, 0x0, + 0xbfe7d19341a9d717, 0x0, + 0xbfdf4519d9690083, 0x0, + 0x3fbbc42d2f70659c, 0x0, + 0x3fde19c5c691d8b3, 0x0, + 0x3fe8cbb3f8cef38c, 0x0, + 0x3fe1fff573b01740, 0x0, + 0xbfa9a7dc9e432efb, 0x0, + 0xbfdd24573ece45dc, 0x0, + 0xbfe580dffb249dbc, 0x0, + 0xbfe1eccb53756c97, 0x0, + 0xbfae17384a250e93, 0x0, + 0x3fdf7a6c83fc421c, 0x0, + 0x3fe81917a029e560, 0x0, + 0x3fe1809037cbd174, 0x0, + 0x3f70fd9aeba9bd40, 0x0, + 0xbfdfe2b2e2c5bb25, 0x0, + 0xbfe6bf0f1196f26d, 0x0, + 0xbfdb37b53d813ba4, 0x0, + 0x3fa9276da7ff580f, 0x0, + 0x3fddf912192bf310, 0x0, + 0x3fe5d319aa1a7e87, 0x0, + 0x3fe279018dfcb827, 0x0, + 0x3fa5d1429868969e, 0x0, + 0xbfdc01727c2016a0, 0x0, + 0xbfe74782ae033850, 0x0, + 0xbfdc361d8cfca9d9, 0x0, + 0xbf9313f2b6a37877, 0x0, + 0x3fdad13cf20cd39e, 0x0, + 0x3fe707ea5bdb50f5, 0x0, + 0x3fdfc0f00cf9d9e8, 0x0, + 0xbfae496c535e4361, 0x0, + 0xbfde4f95d086bf11, 0x0, + 0xbfe7923d7f9ff89f, 0x0, + 0xbfdcc51f8de52eed, 0x0, + 0x3f8643ef490a829c, 0x0, + 0x3fdec25792c6f30e, 0x0, + 0x3fe73f97e21efdd7, 0x0, + 0x3fe069307fa29c7a, 0x0, + 0x3f6e7c50e968859f, 0x0, + 0xbfdf993933ad8972, 0x0, + 0xbfe69bb7029539d9, 0x0, + 0xbfd7b201720a61e9, 0x0, + 0xbfa30d8fe1e0c90f, 0x0, + 0x3fe03540faf72c45, 0x0, + 0x3fe962a3f648dbe7, 0x0, + 0x3fe0b4aa277c69c3, 0x0, + 0x3f8b1db5916b29aa, 0x0, + 0xbfe20f03d7b07f23, 0x0, + 0xbfe50a6afd8eab65, 0x0, + 0xbfe1fd6ff93bba92, 0x0, + 0xbfab6354295663c2, 0x0, + 0x3fde48b47b081208, 0x0, + 0x3fe7347b896e71ed, 0x0, + 0x3fdca3778694c579, 0x0, + 0xbfa269db9969a3ca, 0x0, + 0xbfdfd5cad13dcd82, 0x0, + 0xbfe67131f4c2b774, 0x0, + 0xbfe201b20e7e07fc, 0x0, + 0xbfb320c918a38614, 0x0, + 0x3fde713a0749ae2e, 0x0, + 0x3fe4f865e19feb38, 0x0, + 0x3fda83ea48760c90, 0x0, + 0xbf9d045046e97dfe, 0x0, + 0xbfe135ac3d1572d1, 0x0, + 0xbfe33c5d71bcf616, 0x0, + 0xbfe104d850048032, 0x0, + 0xbfa17258264e101a, 0x0, + 0x3fdb380a374ee4d8, 0x0, + 0x3fe36f94ee31d652, 0x0, + 0x3fe075433b4e3274, 0x0, + 0x3f99352e18067af8, 0x0, + 0xbfdbb4197a064080, 0x0, + 0xbfe7103766668790, 0x0, + 0xbfdecce873f0463a, 0x0, + 0xbfa7420a28c9b750, 0x0, + 0x3fe02b6e24ef0fc3, 0x0, + 0x3fe3960bdcd5c0b8, 0x0, + 0x3fde1d106efaa6a4, 0x0, + 0x3fbc60da859222a6, 0x0, + 0xbfe0eb4d44c92549, 0x0, + 0xbfe827014fd5cd33, 0x0, + 0xbfe102e4b1c53224, 0x0, + 0x3f9b20be502bd398, 0x0, + 0x3fdf4e0ef6afa93d, 0x0, + 0x3fe39e15dd6c574f, 0x0, + 0x3fdbd4341ac598b6, 0x0, + 0xbfa50cdeb095fbd4, 0x0, + 0xbfe1a9d5d2dca864, 0x0, + 0xbfe5f3c19adf0bd9, 0x0, + 0xbfe1f300ac8c22c2, 0x0, + 0x3fb00afce18991f4, 0x0, + 0x3fdea11f23d2af18, 0x0, + 0x3fe6fb6f5e8b5291, 0x0, + 0x3fde5e303b5c9d98, 0x0, + 0xbfb3188151edd939, 0x0, + 0xbfdd24650471bb56, 0x0, + 0xbfe76de86762d72f, 0x0, + 0xbfe027b60cbbc6ab, 0x0, + 0xbf9e13f2ed5cd276, 0x0, + 0x3fdfe4dbad1a3882, 0x0, + 0x3fe77062af04b387, 0x0, + 0x3fdfaab5bddb7150, 0x0, + 0xbfb1119fe777c497, 0x0, + 0xbfda68ae1184ac81, 0x0, + 0xbfe51a330d7d4fee, 0x0, + 0xbfdad21f79719e1d, 0x0, + 0x3fa38c7097492e9e, 0x0, + 0x3fdbdda07e09550c, 0x0, + 0x3fe96fd72b40e514, 0x0, + 0x3fdd69f3389e3bf5, 0x0, + 0x3f70bff7d6a30685, 0x0, + 0xbfdfb48752cc30d7, 0x0, + 0xbfe6dffe92b5f075, 0x0, + 0xbfdcf4e150e7ef89, 0x0, + 0x3fabd71e3ce5cd1b, 0x0, + 0x3fdfc857137b4c59, 0x0, + 0x3fe7239c2795d787, 0x0, + 0x3fe04887199e2bf0, 0x0, + 0x3fa05ff9c5d97cf0, 0x0, + 0xbfe0a1bd236b7fb8, 0x0, + 0xbfe5c470f2ef8c86, 0x0, + 0xbfdbb5781ac37532, 0x0, + 0x3f75378216021ab8, 0x0, + 0x3fe20ddb9ac56adb, 0x0, + 0x3fe3e1021770916c, 0x0, + 0x3fdeedf4b4942509, 0x0, + 0xbfa5691c78f187b9, 0x0, + 0xbfde1c94b38ce996, 0x0, + 0xbfe7b944b1e82332, 0x0, + 0xbfe08f118c61fa3f, 0x0, + 0x3fa5eb8bf8f65535, 0x0, + 0x3fdbd5d5a15ed94f, 0x0, + 0x3fea6c887fb8f441, 0x0, + 0x3fdc5e0544db3292, 0x0, + 0xbfa73eca0aab3b5b, 0x0, + 0xbfdfebc052fe4caf, 0x0, + 0xbfe68ee58fb34677, 0x0, + 0xbfdbfc1a24231582, 0x0, + 0x3fa2b276c9177303, 0x0, + 0x3fe256495382c450, 0x0, + 0x3fe69238c8f0d7c0, 0x0, + 0x3fe0848fca4c6821, 0x0, + 0x3faca7ca915ecf63, 0x0, + 0xbfd7bbe8662cf641, 0x0, + 0xbfe3ebdc563b7847, 0x0, + 0xbfe094948c9b4f76, 0x0, + 0xbfb76722e3ef9a54, 0x0, + 0x3fdf0ab4c7ce6f09, 0x0, + 0x3fe9813ba3fc78a8, 0x0, + 0x3fdff97139055068, 0x0, + 0xbf8b1e22dc7ee198, 0x0, + 0xbfdf79a9279ae55c, 0x0, + 0xbfe797077bb55dbf, 0x0, + 0xbfe1daa0d72d47e7, 0x0, + 0xbf68d12fab341be2, 0x0, + 0x3fdef4d21dd1eff4, 0x0, + 0x3fe602433f164512, 0x0, + 0x3fdf20cb4c3f93a6, 0x0, + 0xbfb3824d57c60210, 0x0, + 0xbfdfd8e7730f6c20, 0x0, + 0xbfe568e2bdf9b448, 0x0, + 0xbfe499381d899d6a, 0x0, + 0xbf8367d77972b784, 0x0, + 0x3fdf74b21570f98d, 0x0, + 0x3fe7f087276c5e36, 0x0, + 0x3fe09e84556919f7, 0x0, + 0xbf890f7ad58698e5, 0x0, + 0xbfdf2299b94f8ecd, 0x0, + 0xbfe5338fc0bfd114, 0x0, + 0xbfe15dc602fe1c6a, 0x0, + 0xbfa898ad25cf556a, 0x0, + 0x3fdab1982dededc5, 0x0, + 0x3fe624ae5b782fc1, 0x0, + 0x3fe1769aed884557, 0x0, + 0x3faa97d19e30e60a, 0x0, + 0xbfddfb87a216ef9a, 0x0, + 0xbfe5b835c1311bf7, 0x0, + 0xbfe03f12f6986c0e, 0x0, + 0x3f9b823cefd6bb39, 0x0, + 0x3fdd18a71f41e0c8, 0x0, + 0x3fe7bb9ebcc7953a, 0x0, + 0x3fe1b8cc9027d1e2, 0x0, + 0x3faf94537d549070, 0x0, + 0xbfd9c710dcd0fe49, 0x0, + 0xbfe6cb27d9445d40, 0x0, + 0xbfe034e400410190, 0x0, + 0x3f74987a782fad3b, 0x0, + 0x3fdd0be3051b3bca, 0x0, + 0x3fe7b66e5164c171, 0x0, + 0x3fe02e6b87ae6cec, 0x0, + 0x3f8a2da79bcfdc03, 0x0, + 0xbfdefddf289de836, 0x0, + 0xbfe4df6cc18f80a9, 0x0, + 0xbfde0decd59adc8c, 0x0, + 0xbfa3c0fead3e4e10, 0x0, + 0x3fdaf2ccb8637eb0, 0x0, + 0x3fe5eb2bd4c2a9ff, 0x0, + 0x3fe03671147e894a, 0x0, + 0xbf96b9aa106412da, 0x0, + 0xbfda70181b2edc41, 0x0, + 0xbfe4de908e2413f6, 0x0, + 0xbfdc17fe9cf30ab7, 0x0, + 0xbf47e87588ec6c33, 0x0, + 0x3fe14ae8a2abb357, 0x0, + 0x3fe720c04e59589a, 0x0, + 0x3fe0729320c14ab3, 0x0, + 0x3fa3740ae7485959, 0x0, + 0xbfda948d9f3a0234, 0x0, + 0xbfe729cc2e1823e6, 0x0, + 0xbfde69c24d4450a7, 0x0, + 0xbf8befff9af0f384, 0x0, + 0x3fdd8a8e650e4803, 0x0, + 0x3fe6684194b26fec, 0x0, + 0x3fde951019b92f1e, 0x0, + 0xbf83e944c9282543, 0x0, + 0xbfddc086daa4a984, 0x0, + 0xbfe7490f5f919833, 0x0, + 0xbfe0767560b74c23, 0x0, + 0xbfa5ebe22404fbcb, 0x0, + 0x3fe1d82660a8c91f, 0x0, + 0x3fe79b4c64b4083a, 0x0, + 0x3fdc4c016ffe6da2, 0x0, + 0x3fae2aa42b6168aa, 0x0, + 0xbfe00438b9fa83b1, 0x0, + 0xbfe64a420afa1dfb, 0x0, + 0xbfe0b20759ed6e00, 0x0, + 0x3f99f5fc62830a7d, 0x0, + 0x3fe0eded721f7101, 0x0, + 0x3fe5461da6397860, 0x0, + 0x3fdf6580a8289e50, 0x0, + 0xbfc12f1d740f8ae4, 0x0, + 0xbfe2b0ef5b08e237, 0x0, + 0xbfe56678de7fd086, 0x0, + 0xbfe301538dd6d03d, 0x0, + 0xbf98e9889af24148, 0x0, + 0x3fdf0f958495e832, 0x0, + 0x3fe4c4fdaa7df3d1, 0x0, + 0x3fd89e8d119b6b5f, 0x0, + 0xbf9974ca8bf4ea66, 0x0, + 0xbfe006a6a5329ce7, 0x0, + 0xbfe81f1fe3bdef5d, 0x0, + 0xbfde9d4c2dc4427c, 0x0, + 0x3fa61b2bf38d6d73, 0x0, + 0x3fddf0421a34605f, 0x0, + 0x3fe76950bdd3f361, 0x0, + 0x3fe29c4650bf2d01, 0x0, + 0xbf998c84f35fd6d3, 0x0, + 0xbfde48decaa3436c, 0x0, + 0xbfe52a2395f86a4e, 0x0, + 0xbfdde14b6de01fee, 0x0, + 0x3fa0173bb42ea7f5, 0x0, + 0x3fdd0624ff4ba4b6, 0x0, + 0x3fe78e99a7ad5046, 0x0, + 0x3fdce20118ebbfab, 0x0, + 0xbf849b85cd7f3ffe, 0x0, + 0xbfdf83810018fdc9, 0x0, + 0xbfe3b0cf29f601c6, 0x0, + 0xbfddcd08903770c6, 0x0, + 0xbfb01786ed34403a, 0x0, + 0x3fde2c329333da21, 0x0, + 0x3fe699bc7a59c984, 0x0, + 0x3fe06bf59928ab83, 0x0, + 0xbf9c4127737fc2b3, 0x0, + 0xbfdeb580da3a527a, 0x0, + 0xbfe5cc29bf772a7e, 0x0, + 0xbfe2d1ed26b88160, 0x0, + 0xbf9bd18bc62dd88d, 0x0, + 0x3fe17a81ed63f622, 0x0, + 0x3fe895d106a6304f, 0x0, + 0x3fdb2d10beab6e30, 0x0, + 0xbf54a54726b038d5, 0x0, + 0xbfe13942bab76d04, 0x0, + 0xbfe6faab23c7ae52, 0x0, + 0xbfe070bf4c48208c, 0x0, + 0x3fab787be3b0d4c8, 0x0, + 0x3fe1f2c3ff098c6d, 0x0, + 0x3fe61a9c41d467a2, 0x0, + 0x3fd885503b9ebf90, 0x0, + 0x3f9dfb6d5331ad51, 0x0, + 0xbfddc7bffeb758fd, 0x0, + 0xbfe44a8714b6ced8, 0x0, + 0xbfdd4d3b63d83aec, 0x0, + 0x3fb8dc8404102059, 0x0, + 0x3fe1c43246551c86, 0x0, + 0x3fe3808d3f0490d8, 0x0, + 0x3fe00fc6a66195f3, 0x0, + 0x3f869dc9bbff501d, 0x0, + 0xbfe048c41b156a06, 0x0, + 0xbfe77f12a1b16a30, 0x0, + 0xbfde1ac6d95c3958, 0x0, + 0x3fa7f892898e26d5, 0x0, + 0x3fe308d350d5950e, 0x0, + 0x3fe6f49a6caa7397, 0x0, + 0x3fdec16e5eba52af, 0x0, + 0x3f6d8ef0fef10705, 0x0, + 0xbfe1c600fc93fc38, 0x0, + 0xbfe6cd93c2f0da51, 0x0, + 0xbfe13270f460a3af, 0x0, + 0xbfa69abe76a40cfc, 0x0, + 0x3fe1a9e32bb4baf0, 0x0, + 0x3fe4b8e93f805168, 0x0, + 0x3fe16bc7edf626ae, 0x0, + 0xbfae62a954f8e144, 0x0, + 0xbfdef7c50dcf8077, 0x0, + 0xbfe579243720d6e4, 0x0, + 0xbfdfe3250756e12f, 0x0, + 0x3f8ad8e6d7f6b97b, 0x0, + 0x3fda8f1fc03800e2, 0x0, + 0x3fe59cd0d43ee413, 0x0, + 0x3fe06ad15d00a324, 0x0, + 0x3fac8c624336cb9c, 0x0, + 0xbfdafa5e13ae5b9d, 0x0, + 0xbfe4cb9ec767c6ec, 0x0, + 0xbfe04772b6f74686, 0x0, + 0x3f67f33fae417857, 0x0, + 0x3fdd7de66130af26, 0x0, + 0x3fe36cc63c48c575, 0x0, + 0x3fdf3c344aa4e8d0, 0x0, + 0x3f8ff8114ccf8db9, 0x0, + 0xbfe0a7a140b37ab7, 0x0, + 0xbfe4c078c576e87e, 0x0, + 0xbfdfe6db866d41c6, 0x0, + 0xbfb6043466c4a843, 0x0, + 0x3fde7b02abf5d07f, 0x0, + 0x3fe6e165d0c746f4, 0x0, + 0x3fe00a35c4605778, 0x0, + 0x3fa93f64a4b5f1b4, 0x0, + 0xbfe034ef9aa424c1, 0x0, + 0xbfe7e983ae4923c2, 0x0, + 0xbfe01ff1de8e8da0, 0x0, + 0xbf84c771d7a86109, 0x0, + 0x3fdf5271a7c927fc, 0x0, + 0x3fe3e2c76c53fea6, 0x0, + 0x3fe18b2a759412c8, 0x0, + 0xbfc1e360ea37ccb3, 0x0, + 0xbfdc335d631246f3, 0x0, + 0xbfe5d45ee0a293fc, 0x0, + 0xbfe175a4b9654815, 0x0, + 0xbfbe43afe0f48ef9, 0x0, + 0x3fdd28b4160c1221, 0x0, + 0x3fe4d98562166319, 0x0, + 0x3fe06520ced3ae0e, 0x0, + 0xbf7e06ae00cb4f49, 0x0, + 0xbfe1fc1a27473492, 0x0, + 0xbfe81f847214ce48, 0x0, + 0xbfe0d85a43f4c8c3, 0x0, + 0xbfaf29401170e802, 0x0, + 0x3fdbeeed6cb4fcba, 0x0, + 0x3fe57c6504a4d91f, 0x0, + 0x3fdeccd10a667372, 0x0, + 0xbfb809c1c96df4f4, 0x0, + 0xbfe06f45d55a1889, 0x0, + 0xbfe5a4b61acdefb2, 0x0, + 0xbfe0507ef16fff60, 0x0, + 0x3f8e3d1e5c25448d, 0x0, + 0x3fdf25449cad7077, 0x0, + 0x3fe542d378c29044, 0x0, + 0x3fe103db04751739, 0x0, + 0xbfa6697691a99b37, 0x0, + 0xbfdde53b7d6476ea, 0x0, + 0xbfe960728ed3bdcc, 0x0, + 0xbfdc6c6ff71ab845, 0x0, + 0x3f4821468acdc103, 0x0, + 0x3fe1310ba3bf4f05, 0x0, + 0x3fe6035d293b01b6, 0x0, + 0x3fdf8bf609eeb504, 0x0, + 0xbf9880f81a7ff899, 0x0, + 0xbfde74216140889b, 0x0, + 0xbfe448cb343d8467, 0x0, + 0xbfe07a04ab0d27ed, 0x0, + 0x3fb187705c576270, 0x0, + 0x3fe01960ea9d978d, 0x0, + 0x3fe6123cd3244e20, 0x0, + 0x3fe0ce6922300e53, 0x0, + 0x3faa74a96e78840d, 0x0, + 0xbfe1bfa6d7fde45d, 0x0, + 0xbfe5356eb6d2cc45, 0x0, + 0xbfe638c9f80113e4, 0x0, + 0x3f914247b8f8da54, 0x0, + 0x3fdefd56b168b322, 0x0, + 0x3fe7f5dbf3839c8f, 0x0, + 0x3fe2e7f7211955e7, 0x0, + 0x3fab20c5e3cf416a, 0x0, + 0xbfe022068321ca10, 0x0, + 0xbfe95b4284a42399, 0x0, + 0xbfe077ded470e38a, 0x0, + 0xbfa541e46638b93e, 0x0, + 0x3fde79b8f132f434, 0x0, + 0x3fe46285255e303d, 0x0, + 0x3fde5152c76c4b72, 0x0, + 0xbf871ba3beb7827c, 0x0, + 0xbfdc8beefd413e9b, 0x0, + 0xbfe7456e8a4a51f3, 0x0, + 0xbfe19439f7edac6f, 0x0, + 0x3f911bbc6ac2ef58, 0x0, + 0x3fdb6b1a385999a4, 0x0, + 0x3fe797882c48d3e8, 0x0, + 0x3fe03b2d7e1f6f70, 0x0, + 0xbfa48ca1f272fedd, 0x0, + 0xbfe353b632f7e362, 0x0, + 0xbfe5899f3b698359, 0x0, + 0xbfe5403470c9671f, 0x0, + 0x3f8a13f5fb780c17, 0x0, + 0x3fe078152ae1d01c, 0x0, + 0x3fe793a812886a9e, 0x0, + 0x3fe00726081c6876, 0x0, + 0xbfa913f4f97f0768, 0x0, + 0xbfde9c5e1b030de9, 0x0, + 0xbfe77b3e39916aad, 0x0, + 0xbfdbcc3a2a8028f4, 0x0, + 0xbf921efebefe4a57, 0x0, + 0x3fdb228bc5b1a556, 0x0, + 0x3fe7e0f1f2e421f9, 0x0, + 0x3fddd37795dba614, 0x0, + 0xbfa7c02af3c0840e, 0x0, + 0xbfdfdbc0ed04aa0e, 0x0, + 0xbfeac4b7a46c5b34, 0x0, + 0xbfdcb8a5bcbdde6c, 0x0, + 0xbf876a220b7a0283, 0x0, + 0x3fe16e67278f3969, 0x0, + 0x3fe58d3301329725, 0x0, + 0x3fe2e4cb3cd95384, 0x0, + 0x3f8573138e106589, 0x0, + 0xbfe107111462a9bd, 0x0, + 0xbfe819af6b61785e, 0x0, + 0xbfdd2531fd357cc9, 0x0, + 0x3fb0ffe99fb49705, 0x0, + 0x3fde8da81c7ddcae, 0x0, + 0x3fe749fcf07d40b9, 0x0, + 0x3fdbe56e8673bd18, 0x0, + 0x3f77c2aa30cf7d48, 0x0, + 0xbfdf78577711684a, 0x0, + 0xbfe4a126097c1815, 0x0, + 0xbfddd57158560a38, 0x0, + 0x3fa9817122355489, 0x0, + 0x3fe0cd27bcdaf53e, 0x0, + 0x3fe31d6fd59ef60e, 0x0, + 0x3fe0060d7aad4e47, 0x0, + 0xbf8973cf5b60536e, 0x0, + 0xbfe0f0f00d2820b9, 0x0, + 0xbfe7fc7e8ef58282, 0x0, + 0xbfdf3bf23a3ae753, 0x0, + 0xbf9a2c6bfb65dfd5, 0x0, + 0x3fe0ab7701bce176, 0x0, + 0x3fe66487bb3d4715, 0x0, + 0x3fdaf03b9ebe46cc, 0x0, + 0x3facf34061ca5b75, 0x0, + 0xbfde770352c6cbf5, 0x0, + 0xbfe5a400c5e7f09b, 0x0, + 0xbfe12ab43064eea6, 0x0, + 0xbfa8b17710170c35, 0x0, + 0x3fe00b0c147e6d08, 0x0, + 0x3fe76a1cf7d8fec1, 0x0, + 0x3fde2d3e21d0cac0, 0x0, + 0x3f69b70c398262be, 0x0, + 0xbfe1d76f416485d2, 0x0, + 0xbfe68d6e46fb67ed, 0x0, + 0xbfe118584660a7e0, 0x0, + 0xbf8911d55ae82fda, 0x0, + 0x3fdea4a34aaa9e1c, 0x0, + 0x3fe6a1e568affd1a, 0x0, + 0x3fde7d200a04c16c, 0x0, + 0x3f7a73fb3fc5765e, 0x0, + 0xbfdb76e2f28b44b7, 0x0, + 0xbfe62ce36f084069, 0x0, + 0xbfe087921f0befcf, 0x0, + 0xbfb2e4e4261639a2, 0x0, + 0x3fe188a8421d4863, 0x0, + 0x3fe5ecef0008e177, 0x0, + 0x3fdc23a9a066b079, 0x0, + 0x3f682474752c683a, 0x0, + 0xbfd91ef9926f249d, 0x0, + 0xbfe46e64fb9d2891, 0x0, + 0xbfe05bef26ff2059, 0x0, + 0x3f87284579c6aa45, 0x0, + 0x3fda5eef96b33f0e, 0x0, + 0x3fe6f2c3e2b790ad, 0x0, + 0x3fe0930edceb387a, 0x0, + 0x3fb4565c20d34077, 0x0, + 0xbfddbd16ac04dd50, 0x0, + 0xbfe63b8c68cd8f08, 0x0, + 0xbfde8aea10cd0aa2, 0x0, + 0xbfbd67a6e8c26c86, 0x0, + 0x3fdc6f9b3ca3e0d2, 0x0, + 0x3fe887611daabd76, 0x0, + 0x3fdf3b58a56c97a1, 0x0, + 0x3fb35c05b41b10a7, 0x0, + 0xbfe39d81f5e365a6, 0x0, + 0xbfe60cfe395165f7, 0x0, + 0xbfdab022459e4a0c, 0x0, + 0xbfa20c15b4e6cec3, 0x0, + 0x3fe0d9639aeb0736, 0x0, + 0x3fe820daa7a63961, 0x0, + 0x3fdf5f04c87e8775, 0x0, + 0xbf9c60e146cf00cb, 0x0, + 0xbfdb8f97ece63c9c, 0x0, + 0xbfe657126cc09272, 0x0, + 0xbfe09e0726fc45dd, 0x0, + 0x3fa77898917445ee, 0x0, + 0x3fe0b7dbcaed41ec, 0x0, + 0x3fe60378b405e29a, 0x0, + 0x3fe25beb76e96329, 0x0, + 0x3f80cb19b9a38d4c, 0x0, + 0xbfe0c7498de12405, 0x0, + 0xbfea43f42cc0eea6, 0x0, + 0xbfe1fedcdf295392, 0x0, + 0xbfa9256b6bed767c, 0x0, + 0x3fde641a548eabc2, 0x0, + 0x3fe3b1bdfb79264e, 0x0, + 0x3fdfc951255f44cc, 0x0, + 0xbf9c3773a17538cb, 0x0, + 0xbfda5cf23dfdea2a, 0x0, + 0xbfe6160f7a4966c0, 0x0, + 0xbfd9fc14e3439de5, 0x0, + 0x3f626d06060a0a54, 0x0, + 0x3fe05ae59b847fce, 0x0, + 0x3fe9b18b57e23e74, 0x0, + 0x3fda07ecc6033a5e, 0x0, + 0x3fb009731cfa271b, 0x0, + 0xbfe0662a8d37a097, 0x0, + 0xbfe9ab10b307413a, 0x0, + 0xbfe21d6327d02c64, 0x0, + 0x3f96a20235b42d30, 0x0, + 0x3fdf3f18f2903878, 0x0, + 0x3fe42858b9a985a4, 0x0, + 0x3fe0a443b6aabee3, 0x0, + 0x3f92812083c46db4, 0x0, + 0xbfe13e611dc9820d, 0x0, + 0xbfe9a8695379a5a4, 0x0, + 0xbfdf78e8be62f003, 0x0, + 0x3fa6b155b6637600, 0x0, + 0x3fe00b8b0e47d80d, 0x0, + 0x3fe3defd9ea8434a, 0x0, + 0x3fddd705ff57abc3, 0x0, + 0xbfa7e2fa0d2ca22d, 0x0, + 0xbfde777ae6407aa5, 0x0, + 0xbfe6e18864d7abba, 0x0, + 0xbfdd34aa6c807fc8, 0x0, + 0xbf5690023fb14af7, 0x0, + 0x3fdde5c5c2c5e432, 0x0, + 0x3fe6f967d9aef510, 0x0, + 0x3fe0649d1ee5c394, 0x0, + 0x3fae030a9be2041e, 0x0, + 0xbfe15cbe4a76a7ed, 0x0, + 0xbfe603638e5fb1ea, 0x0, + 0xbfe065245ebb6eca, 0x0, + 0x3fb2739c51d33f83, 0x0, + 0x3fdcde51a29e7411, 0x0, + 0x3fe1e81fb1a91d9d, 0x0, + 0x3fe001d9f02edcba, 0x0, + 0x3f9fbd0cdd178acd, 0x0, + 0xbfe2d13016021e35, 0x0, + 0xbfe583c62354898e, 0x0, + 0xbfe1749b30b287de, 0x0, + 0xbf91d578ef9dc828, 0x0, + 0x3fdc936971b3321e, 0x0, + 0x3fe6106c8e4f9070, 0x0, + 0x3fe101efd03268b0, 0x0, + 0xbfa46eb526f0f284, 0x0, + 0xbfe088731f666f07, 0x0, + 0xbfe56f1b8886d676, 0x0, + 0xbfd89720f83a410a, 0x0, + 0x3fb01b5c6ecfa118, 0x0, + 0x3fdc34080e59df53, 0x0, + 0x3fe5e5720e13df5e, 0x0, + 0x3fdc24747b31e242, 0x0, + 0x3f86d7b865763c9b, 0x0, + 0xbfddafa2aa45ee98, 0x0, + 0xbfe817be1b91247e, 0x0, + 0xbfe05daf350be228, 0x0, + 0x3fa1c36a38a0f7f5, 0x0, + 0x3fddf8e17e360528, 0x0, + 0x3fe6c71f696d3959, 0x0, + 0x3fdbb3211bb8a8bc, 0x0, + 0xbf99bf974f570aed, 0x0, + 0xbfd98edc66e5c6dc, 0x0, + 0xbfe7168edbb03a71, 0x0, + 0xbfdf119bdc89d6cd, 0x0, + 0x3f817bea68764d4c, 0x0, + 0x3fe1c23c0cd5bb45, 0x0, + 0x3fe4b354c1d5150d, 0x0, + 0x3fd9f8e3dd6210ed, 0x0, + 0x3f4cc93bcdf9bd23, 0x0, + 0xbfe0175cf2c409cd, 0x0, + 0xbfe84067d4a33a7a, 0x0, + 0xbfe098a05750d14e, 0x0, + 0x3fb3c908f8630396, 0x0, + 0x3fdb7a3809274400, 0x0, + 0x3fe69bc37550b7ba, 0x0, + 0x3fdfc0ac8a897576, 0x0, + 0xbfa490a91145942a, 0x0, + 0xbfe0cb0956fcbbdd, 0x0, + 0xbfe65807aa2a0e24, 0x0, + 0xbfe2b7f4a3b965a0, 0x0, + 0xbf73371cfbc9aa2c, 0x0, + 0x3fe036dbe33c3775, 0x0, + 0x3fe7bb05e2d61e74, 0x0, + 0x3fe1fd0dfd29176d, 0x0, + 0x3f9b92a2f14bd499, 0x0, + 0xbfe09b84b8ecd889, 0x0, + 0xbfe5a4f5e64faf19, 0x0, + 0xbfde94978474414c, 0x0, + 0x3fb4f0f23d7323fb, 0x0, + 0x3fddfbc632753b46, 0x0, + 0x3fe7a42a6416e77d, 0x0, + 0x3fdc1c82b282db15, 0x0, + 0x3fac425cb711ddf1, 0x0, + 0xbfe05e545d1c0cd6, 0x0, + 0xbfe3fbdebecf2c14, 0x0, + 0xbfdd4e4d1b03d5aa, 0x0, + 0x3f9532f144968d08, 0x0, + 0x3fdde5a346651192, 0x0, + 0x3fe7c0436d9e70b8, 0x0, + 0x3fe08e58cd09a948, 0x0, + 0x3fb63e4e4c43096e, 0x0, + 0xbfd69ef88ba0b6c0, 0x0, + 0xbfe7982bbec7cf41, 0x0, + 0xbfdd1d6cb0317197, 0x0, + 0x3f94296ee749800e, 0x0, + 0x3fe269d3e9b11dd7, 0x0, + 0x3fe721581685fd56, 0x0, + 0x3fdea2f109e5c034, 0x0, + 0xbf6363d9605a1586, 0x0, + 0xbfe24ce229f5a906, 0x0, + 0xbfe96e81c28b7906, 0x0, + 0xbfe053074417d598, 0x0, + 0xbf8d3d050d45d821, 0x0, + 0x3fe0bc8dcb8d9411, 0x0, + 0x3fe4afc77bb77dbd, 0x0, + 0x3fdeea5e7a9a8e16, 0x0, + 0xbfa4be2d06fe7c73, 0x0, + 0xbfe059878499df6f, 0x0, + 0xbfe3483aa812d736, 0x0, + 0xbfdbe2fda74e777c, 0x0, + 0xbf99d593ee7b43d2, 0x0, + 0x3fe44416eeb1d7d6, 0x0, + 0x3fe6e21a88eb232e, 0x0, + 0x3fdbaee2582692d1, 0x0, + 0xbfbaf0bd48acd15a, 0x0, + 0xbfe39a10b68090e5, 0x0, + 0xbfe6f23199c2a144, 0x0, + 0xbfdb59ed6d5dc9b7, 0x0, + 0xbfa9653a65a95fcd, 0x0, + 0x3fdedca19199b986, 0x0, + 0x3fe5b7ea6bdb51e1, 0x0, + 0x3fe04e5d8e3f383c, 0x0, + 0x3fb6f029a5d9d8a9, 0x0, + 0xbfd9daaab75dcba0, 0x0, + 0xbfe677f240c1e403, 0x0, + 0xbfe1adf98612eebe, 0x0, + 0x3f956ed716d1b412, 0x0, + 0x3fdd5984d2067c30, 0x0, + 0x3fe6f2a5cd7f567d, 0x0, + 0x3fda1c5d7779cf26, 0x0, + 0xbfb3c4bbc25ce750, 0x0, + 0xbfe0d6e9e207b8e6, 0x0, + 0xbfe3dd598197b8d9, 0x0, + 0xbfe1ebf9b76ea916, 0x0, + 0xbf9bddc643868443, 0x0, + 0x3fdea9d26cf3cfae, 0x0, + 0x3fe82ffdfe0e7c56, 0x0, + 0x3fdd2978556362c2, 0x0, + 0x3fa6d6d459c19436, 0x0, + 0xbfdfb3b62bddbd92, 0x0, + 0xbfe86cf166890e91, 0x0, + 0xbfe1dc5c7956d8f7, 0x0, + 0xbf9f2cd2a5fbea8b, 0x0, + 0x3fe087a85a5edfa7, 0x0, + 0x3fe5dd2e7ad0cfc5, 0x0, + 0x3fdc7b634a60aede, 0x0, + 0xbfab503140a0f027, 0x0, + 0xbfe0a99c56371844, 0x0, + 0xbfe6bfba5ea72f06, 0x0, + 0xbfe2a93143adb2ac, 0x0, + 0xbfa6c02645009e47, 0x0, + 0x3fde57a821e9162b, 0x0, + 0x3fe687f0974cd172, 0x0, + 0x3fddccefd21da574, 0x0, + 0x3fa0f44a3421f0a8, 0x0, + 0xbfe0de94518fc2d8, 0x0, + 0xbfe5e3a8755b5f40, 0x0, + 0xbfdff5b8983755a0, 0x0, + 0xbf9a5127a4ff8b34, 0x0, + 0x3fdf05c4b9a3aca6, 0x0, + 0x3fe53884fccac447, 0x0, + 0x3fdb96cb70546440, 0x0, + 0xbf9705e8e7c4c794, 0x0, + 0xbfe21b707e7fec1d, 0x0, + 0xbfe565f99309f4ae, 0x0, + 0xbfe14aa1c6295fea, 0x0, + 0xbf8df7c56c6e6a9a, 0x0, + 0x3fe10b597efe355b, 0x0, + 0x3fe6df93b5df6f5c, 0x0, + 0x3fde5f25a35ce5b0, 0x0, + 0x3fb003e709e8d99b, 0x0, + 0xbfe1804e43cacb28, 0x0, + 0xbfe77c20a01dfa04, 0x0, + 0xbfe05a8a18e5f385, 0x0, + 0xbfb082faed9087f4, 0x0, + 0x3fe0b3691741bd00, 0x0, + 0x3fe7068b9d09dcf9, 0x0, + 0x3fe3da05a43b0c8a, 0x0, + 0x3fa9c1a340872ab6, 0x0, + 0xbfe0418ae0cc268f, 0x0, + 0xbfe4765e924be1f1, 0x0, + 0xbfd838b17d24c54a, 0x0, + 0xbf9104c95c17e989, 0x0, + 0x3fe108d242a5f3ab, 0x0, + 0x3fe83e0d273ebfba, 0x0, + 0x3fe2ee5be08f8498, 0x0, + 0xbf8ba8691a24f4da, 0x0, + 0xbfd7b10aa0af82be, 0x0, + 0xbfe9ae0b80d56a16, 0x0, + 0xbfdd596d04e03667, 0x0, + 0xbf91e6b9c3c9eead, 0x0, + 0x3fdcdd67caca7596, 0x0, + 0x3fe7b1aeb8989d69, 0x0, + 0x3fe0734d81e816f5, 0x0, + 0x3fae93a9d123cf37, 0x0, + 0xbfe0a013fa0a5a50, 0x0, + 0xbfe5b401e3c9db5c, 0x0, + 0xbfdfc53c021ce1ba, 0x0, + 0xbfaef0238a873ece, 0x0, + 0x3fe1d5eac5b62d78, 0x0, + 0x3fe487f7c6e2e51d, 0x0, + 0x3fded074c2097626, 0x0, + 0xbfa52d1c0337e39c, 0x0, + 0xbfe0be704dc8aa61, 0x0, + 0xbfe7d7d9b07c61b0, 0x0, + 0xbfe106c91956f81b, 0x0, + 0xbfa47857e3721ae5, 0x0, + 0x3fe1c35e9c334710, 0x0, + 0x3fe571b08c539a8d, 0x0, + 0x3fdc61c22e352660, 0x0, + 0xbf977708e0e20da1, 0x0, + 0xbfe22a6f61b867d3, 0x0, + 0xbfe549048f02f6c4, 0x0, + 0xbfe05d6a43f85cdb, 0x0, + 0x3f96be65d4e781de, 0x0, + 0x3fe073fd7ea6a659, 0x0, + 0x3fe450fcdc8bc606, 0x0, + 0x3fe13f6653796525, 0x0, + 0x3fa81fb8d0066c35, 0x0, + 0xbfdd610ddfa055f8, 0x0, + 0xbfe5b687288b2a4a, 0x0, + 0xbfd8a7e6970ca266, 0x0, + 0xbfafa6777d600dfd, 0x0, + 0x3fe150fc787b1b86, 0x0, + 0x3fe6043ecc075853, 0x0, + 0x3fe12aaa865c22e0, 0x0, + 0x3fa42129d955cd5f, 0x0, + 0xbfe0e97f24e8269f, 0x0, + 0xbfe6db0609661a54, 0x0, + 0xbfe085eda73154e7, 0x0, + 0x3fbdeb9590d445b5, 0x0, + 0x3fde2548f841ed8a, 0x0, + 0x3fe6ec0db4bfb14d, 0x0, + 0x3fdb430ff0a1f6f8, 0x0, + 0xbfa3aae4d00135cd, 0x0, + 0xbfddb88980fe9f76, 0x0, + 0xbfe92b0c5c01dc95, 0x0, + 0xbfdd15af77be189b, 0x0, + 0xbfb0467c35ae66d2, 0x0, + 0x3fe0d6f1d11b251d, 0x0, + 0x3fe43aacfee30a10, 0x0, + 0x3fd9d096b2258539, 0x0, + 0x3fb6577a66f38dad, 0x0, + 0xbfe2ab9d404acf9c, 0x0, + 0xbfe7f1d4c53d5f28, 0x0, + 0xbfe090eabb3d682a, 0x0, + 0xbf9ce42a3586aa22, 0x0, + 0x3fddccad521c7e1c, 0x0, + 0x3fe3eb0e2b3a99e8, 0x0, + 0x3fddd0ba519addc6, 0x0, + 0x3f84c5e3e93b1245, 0x0, + 0xbfe2805a3d8c3c60, 0x0, + 0xbfe4a277acb1ac15, 0x0, + 0xbfda8078801a3733, 0x0, + 0xbfa2cceb8f836c7c, 0x0, + 0x3fddaf9656951791, 0x0, + 0x3fe5ca8aebd8f69a, 0x0, + 0x3fd99c8f47f670dc, 0x0, + 0x3faedbcf4e20434f, 0x0, + 0xbfe009925053baf5, 0x0, + 0xbfe60c218cb0bbc4, 0x0, + 0xbfe00e43b8500e4f, 0x0, + 0x3f75bce1e27cc5f7, 0x0, + 0x3fde5f99b6d20638, 0x0, + 0x3fe66511926fc5d2, 0x0, + 0x3fe0b2416c9e1d64, 0x0, + 0xbfb0df40718d41ff, 0x0, + 0xbfdf5b6f3bc484e1, 0x0, + 0xbfe6b8d2c63a6768, 0x0, + 0xbfe0338ab554b876, 0x0, + 0x3f6129843893d239, 0x0, + 0x3fe193934af0e5a7, 0x0, + 0x3fe2228a6dddcedd, 0x0, + 0x3fe00929397a3e5f, 0x0, + 0x3facb0c32f29ded7, 0x0, + 0xbfe13a6c153446c8, 0x0, + 0xbfe5cc389db2d21e, 0x0, + 0xbfe1e96fe17978e5, 0x0, + 0xbfa6be7931f11baf, 0x0, + 0x3fe26cb4693c49cd, 0x0, + 0x3fe64a49020c4a9f, 0x0, + 0x3fe0e1f6f48e5566, 0x0, + 0xbfb27b327449693e, 0x0, + 0xbfe0acc8481be655, 0x0, + 0xbfe5836fdc230886, 0x0, + 0xbfe03a70f4c1299e, 0x0, + 0x3faf55fec56d9e6f, 0x0, + 0x3fdd9108a149d460, 0x0, + 0x3fe59d879a557516, 0x0, + 0x3fdc759f79ea2151, 0x0, + 0xbf876923158b54fa, 0x0, + 0xbfe0b32f48c6c94e, 0x0, + 0xbfe5cda527424e30, 0x0, + 0xbfdbbea91c07a68d, 0x0, + 0xbf943274408cdeec, 0x0, + 0x3fe01463360cc677, 0x0, + 0x3fe5b4960a501eab, 0x0, + 0x3fdd3fe21b06b46b, 0x0, + 0xbf901980299ee6e9, 0x0, + 0xbfe0172c30c4de72, 0x0, + 0xbfe631007ee613bf, 0x0, + 0xbfe039c2803e96db, 0x0, + 0xbfae904484b0f92f, 0x0, + 0x3fe0ce8e42968510, 0x0, + 0x3fe98f973a4ae9dd, 0x0, + 0x3fdfdaafc1d559c5, 0x0, + 0x3f914a25aa0e2da3, 0x0, + 0xbfe047d9b5e9e657, 0x0, + 0xbfe7122f37fe7fb1, 0x0, + 0xbfdfcc65dd35f97f, 0x0, + 0xbf9e1b666ce2fafd, 0x0, + 0x3fe046a67649bd70, 0x0, + 0x3fe976f23aa7ac4f, 0x0, + 0x3fdbf26e58dc5c62, 0x0, + 0xbf905539314fd7da, 0x0, + 0xbfe067b19aa59ea2, 0x0, + 0xbfe78ac4c1ddb23d, 0x0, + 0xbfe23c92caeaf2ab, 0x0, + 0xbfa69dbdc8a02f83, 0x0, + 0x3fe0678f4453eab2, 0x0, + 0x3fe5b4684a155273, 0x0, + 0x3fdb6029839558f4, 0x0, + 0x3f962433bfdbcee4, 0x0, + 0xbfdbd5952f7135cc, 0x0, + 0xbfe5314e7295ffb6, 0x0, + 0xbfe00a99b8270f79, 0x0, + 0xbf85a6159ea7162d, 0x0, + 0x3fe24710612fa88a, 0x0, + 0x3fe3230895d0195a, 0x0, + 0x3fdeeed7aecbdaf4, 0x0, + 0x3f9a4c7271941514, 0x0, + 0xbfe0ee743077f334, 0x0, + 0xbfe69f62f82b41e9, 0x0, + 0xbfe25b2a144b2a72, 0x0, + 0xbfa185fc56a72f3e, 0x0, + 0x3fe03029d82f6e4c, 0x0, + 0x3fe3fddc8682f295, 0x0, + 0x3fdfb73e3125a1af, 0x0, + 0xbf95e9646e43e8ab, 0x0, + 0xbfdf090701924e09, 0x0, + 0xbfe568e1cc192e7b, 0x0, + 0xbfdb59953d9b28d0, 0x0, + 0xbfa0aba2bcf677b2, 0x0, + 0x3fdf4f78716acc68, 0x0, + 0x3fe681a9b6d6bb66, 0x0, + 0x3fe05c8840e39011, 0x0, + 0xbf972e22979465a2, 0x0, + 0xbfe040614f3a6ae4, 0x0, + 0xbfe67763f7c0834a, 0x0, + 0xbfe25925a436e8a6, 0x0, + 0x3f8663d19f222df8, 0x0, + 0x3fe1db99403954bd, 0x0, + 0x3fe54a0a0d294e0d, 0x0, + 0x3fdbd58e881583ac, 0x0, + 0xbfb9944a15ca89b9, 0x0, + 0xbfdff9e32780c615, 0x0, + 0xbfe70ae764c75d9f, 0x0, + 0xbfdecddc8f9823c3, 0x0, + 0xbfaaa016aec55d53, 0x0, + 0x3fe0440417a27829, 0x0, + 0x3fe734e6b1b28dec, 0x0, + 0x3fdb2c6232de636f, 0x0, + 0x3fa580ccf13e4935, 0x0, + 0xbfe1865fc2125d20, 0x0, + 0xbfe66874683bcac1, 0x0, + 0xbfe0488aec65ccec, 0x0, + 0x3f8c2f9dca4dc226, 0x0, + 0x3fdf2f39e9920612, 0x0, + 0x3fe69557ff2b6858, 0x0, + 0x3fe1cec76b245e8f, 0x0, + 0x3fab8fb28f69e2a8, 0x0, + 0xbfe344809bdc490d, 0x0, + 0xbfe647de077faddd, 0x0, + 0xbfdd5ecb5d4b624b, 0x0, + 0x3fc26d96e580713d, 0x0, + 0x3fdfc5e889ec85ef, 0x0, + 0x3fe7fdecc0ead229, 0x0, + 0x3fe39c940a018b24, 0x0, + 0x3fab1850e37459ad, 0x0, + 0xbfdb84753f8722a4, 0x0, + 0xbfe83ca6f32d4581, 0x0, + 0xbfd9e260b4fb68d5, 0x0, + 0xbfb605d87e39668b, 0x0, + 0x3fdd7b74fab16d7c, 0x0, + 0x3fe8203b6bf40b48, 0x0, + 0x3fe02d2bb8a930c3, 0x0, + 0x3f9c511af7ad80f3, 0x0, + 0xbfe2458264a77f1c, 0x0, + 0xbfe44b58a5552013, 0x0, + 0xbfdba525d3623daa, 0x0, + 0x3f9b05fa865e6688, 0x0, + 0x3fdc274e87c4a5ab, 0x0, + 0x3fe6247792951c83, 0x0, + 0x3fdf8590e9100b48, 0x0, + 0x3f717ead45f79b66, 0x0, + 0xbfe0e463f1545962, 0x0, + 0xbfe62dbece28d90d, 0x0, + 0xbfde3d891b79f13d, 0x0, + 0x3fa9c9308a151314, 0x0, + 0x3fdcb1b91419a958, 0x0, + 0x3fe70f0033f3cb9e, 0x0, + 0x3fdfaf5bb893f9cf, 0x0, + 0xbf960ddb5e780b21, 0x0, + 0xbfdd005e201479dd, 0x0, + 0xbfe88e9dbc41198e, 0x0, + 0xbfd965c0a790d29e, 0x0, + 0x3f944866e2e28ba6, 0x0, + 0x3fdd539d61767e87, 0x0, + 0x3fe785f9d29c906a, 0x0, + 0x3fdf1e407b68a4bc, 0x0, + 0x3f9dc2ebce2b03ed, 0x0, + 0xbfdf1a8bc62df14f, 0x0, + 0xbfe8b42a0c13b167, 0x0, + 0xbfe11cf651e53f2d, 0x0, + 0xbfa496de2e3649b7, 0x0, + 0x3fdee83d3d9d93ad, 0x0, + 0x3fe5795d4da62c00, 0x0, + 0x3fe446a10c1f67a4, 0x0, + 0x3f6f44d07446a261, 0x0, + 0xbfde1f401decf4dc, 0x0, + 0xbfe64edb772e2be3, 0x0, + 0xbfde4c8a8c1c8d44, 0x0, + 0x3fa2f7e1f8598f3a, 0x0, + 0x3fe0c60d46fa1d2e, 0x0, + 0x3fe716b53a2cd276, 0x0, + 0x3fdcb87948f4cd47, 0x0, + 0xbf99dc1ce5b581c8, 0x0, + 0xbfde7f65f2852c36, 0x0, + 0xbfe5459750a047ed, 0x0, + 0xbfde17bea017cdf5, 0x0, + 0x3fa45c27dbef4e33, 0x0, + 0x3fe05d6d407ade54, 0x0, + 0x3fe5651e6fe3a91b, 0x0, + 0x3fe2a18f1b5231d0, 0x0, + 0x3f92960bed221930, 0x0, + 0xbfdee664a6d3b012, 0x0, + 0xbfe5eae174a48a4e, 0x0, + 0xbfe3d65b23f80faf, 0x0, + 0xbfa00b32b98c08b1, 0x0, + 0x3fe15528f57215db, 0x0, + 0x3fea155f762c5809, 0x0, + 0x3fdfeea1fe1efbc4, 0x0, + 0x3f83b63d89732cc2, 0x0, + 0xbfe04bfaf6896913, 0x0, + 0xbfe5c58e0f418819, 0x0, + 0xbfdf8c6798ba710c, 0x0, + 0x3fb41521285b8054, 0x0, + 0x3fdc3f27fde9647c, 0x0, + 0x3fe6b31153ad5ac0, 0x0, + 0x3fdb98c57a41269d, 0x0, + 0x3f938d2f07ac886b, 0x0, + 0xbfe4004f358b6e77, 0x0, + 0xbfe78fea6b1f4cf2, 0x0, + 0xbfe10e5d6c23ec36, 0x0, + 0x3f96b08765227b4a, 0x0, + 0x3fd908130c3cc882, 0x0, + 0x3fe545dc1e6a24f2, 0x0, + 0x3fe05901e610e922, 0x0, + 0x3f998a08186b2682, 0x0, + 0xbfdf79711b0d1a7e, 0x0, + 0xbfe75f1a8b00513e, 0x0, + 0xbfdb0cc8f281211b, 0x0, + 0xbfa9489fdb32e0a5, 0x0, + 0x3fdee29bdf92eb37, 0x0, + 0x3fe6f618a7af0ab0, 0x0, + 0x3fe0cd8bb36676b5, 0x0, + 0x3f6513844d6aacb9, 0x0, + 0xbfdcc64d600f8be7, 0x0, + 0xbfe549fa552cd157, 0x0, + 0xbfdcafde8a2281f3, 0x0, + 0x3fa052a9c7e76d5e, 0x0, + 0x3fe0f7f0f2143b8d, 0x0, + 0x3fe759eb61775c3e, 0x0, + 0x3fdbd54b7d773758, 0x0, + 0x3fab2c42113656ff, 0x0, + 0xbfe24a0b25e4f3aa, 0x0, + 0xbfe6678614caa3f0, 0x0, + 0xbfe21552f28503b7, 0x0, + 0x3fa215632b9195a4, 0x0, + 0x3fe0c5b6d807d666, 0x0, + 0x3fe60397ebd9bfb6, 0x0, + 0x3fdfa7647d19f8ce, 0x0, + 0x3faac1a217fc4668, 0x0, + 0xbfddfdc3ac8b70bb, 0x0, + 0xbfe773cb570856f6, 0x0, + 0xbfe20a72d7dd2848, 0x0, + 0x3f7db1b2f099bef2, 0x0, + 0x3fe03b3552b6c256, 0x0, + 0x3fe50daa316995c3, 0x0, + 0x3fdb549fcd1383a6, 0x0, + 0xbfb091f8043da4fe, 0x0, + 0xbfe051f33fa533e5, 0x0, + 0xbfe82ed5a80ef97f, 0x0, + 0xbfe026ed34d0412e, 0x0, + 0xbf64d0a9f0c2f34c, 0x0, + 0x3fe12b46a519dde2, 0x0, + 0x3fe67a1a5d38c3be, 0x0, + 0x3fe06c4fc3474b3a, 0x0, + 0x3f8f95f59dae1b67, 0x0, + 0xbfdd01ce465fd156, 0x0, + 0xbfe4b89d4262fbbe, 0x0, + 0xbfdae6878fb0dcad, 0x0, + 0xbfafba95d9f9f451, 0x0, + 0x3fe0deb0459153be, 0x0, + 0x3fe4ceecd715a13c, 0x0, + 0x3fdcaed01ba84bd1, 0x0, + 0xbf939a0e24fc098e, 0x0, + 0xbfe1e0f617833f1f, 0x0, + 0xbfe94954b0b62b32, 0x0, + 0xbfdab44919dd5d83, 0x0, + 0xbf84e45c05893624, 0x0, + 0x3fdb007b8b028480, 0x0, + 0x3fe6bb11bee5e5f8, 0x0, + 0x3fde8ee978aac947, 0x0, + 0x3f9cc4af35bf3e42, 0x0, + 0xbfe0c07e90e74615, 0x0, + 0xbfe565c0c665a3f1, 0x0, + 0xbfdf88bde525bdda, 0x0, + 0xbfa1ac5651fba5f2, 0x0, + 0x3fe1bddb4c25b423, 0x0, + 0x3fe566656e29ddc4, 0x0, + 0x3fdc3707785ed571, 0x0, + 0xbf955244b4e5513f, 0x0, + 0xbfdeb5d5f8dbe1c7, 0x0, + 0xbfe43c3057c0ae82, 0x0, + 0xbfe2c4572e150e4c, 0x0, + 0xbfa093f878cc900f, 0x0, + 0x3fde30cbce2a0de8, 0x0, + 0x3fe4f565e0abc170, 0x0, + 0x3fe095e3b43e3667, 0x0, + 0xbfbd68a9fb853d74, 0x0, + 0xbfde9ae7d6fcf358, 0x0, + 0xbfe51e5883aff280, 0x0, + 0xbfdc297f88e68da7, 0x0, + 0x3f60f8cb7a4a0004, 0x0, + 0x3fdcc9e2a8f0b023, 0x0, + 0x3fe61f193d831d40, 0x0, + 0x3fde06a997782177, 0x0, + 0x3f9b76184f556e5a, 0x0, + 0xbfdd4c8e0be197e7, 0x0, + 0xbfe673d8b9a14b8a, 0x0, + 0xbfe0e5e5d0d481be, 0x0, + 0x3faf755261bf09d7, 0x0, + 0x3fe07cea620d293e, 0x0, + 0x3fe3eb012353d042, 0x0, + 0x3fe0f1215a8d684a, 0x0, + 0xbfa462b0e9e89e90, 0x0, + 0xbfdad65b901264e4, 0x0, + 0xbfe5d9e1a6bf399c, 0x0, + 0xbfe0d38da5b25a33, 0x0, + 0xbfa60d4c2939e3a1, 0x0, + 0x3fe06462e40f4c9c, 0x0, + 0x3fe64a333da56a9e, 0x0, + 0x3fe11635582a3b4f, 0x0, + 0x3f905385410e5cf2, 0x0, + 0xbfe1e67f65e78dbd, 0x0, + 0xbfe5f7e0b1b76281, 0x0, + 0xbfe07a59214bd8ad, 0x0, + 0x3fafff40202e5d1e, 0x0, + 0x3fdf5901554e61d9, 0x0, + 0x3fe6af7dc32d5697, 0x0, + 0x3fd9fbb50f00b990, 0x0, + 0xbfacc2fb7cf0c99a, 0x0, + 0xbfdfecc29dd30533, 0x0, + 0xbfe3d023e6d46ec5, 0x0, + 0xbfda3b117c48fa0a, 0x0, + 0x3fab037596b1ff1c, 0x0, + 0x3fe1329f2a3eaae7, 0x0, + 0x3fe8b8116da0a150, 0x0, + 0x3fe05901086fd842, 0x0, + 0xbfa658f91955b6ba, 0x0, + 0xbfdf84ca41b50b85, 0x0, + 0xbfe2948734623ac1, 0x0, + 0xbfddf27f5c8069bc, 0x0, + 0x3f9b4c67dda10640, 0x0, + 0x3fdba74f1a3d47c9, 0x0, + 0x3fe83eb2f1a443bf, 0x0, + 0x3fdf373cb094dea0, 0x0, + 0x3f4cda4e213102b7, 0x0, + 0xbfdbb6d8bd054081, 0x0, + 0xbfe9013ee52f3928, 0x0, + 0xbfe0f3bd856971a6, 0x0, + 0x3f4ca2e085ca347b, 0x0, + 0x3fdec920d2558223, 0x0, + 0x3fe5948588ae7f09, 0x0, + 0x3fe171ea133ab0cc, 0x0, + 0x3fb016784863642d, 0x0, + 0xbfdf96308a1ff4f6, 0x0, + 0xbfe6706e8b2d4223, 0x0, + 0xbfe0e6056dc7eb31, 0x0, + 0x3f8de82e4f363f84, 0x0, + 0x3fddf4cda4488bca, 0x0, + 0x3fe6703b0bbfcc7d, 0x0, + 0x3fe040fefe7a763f, 0x0, + 0x3f9aedc46e0848b8, 0x0, + 0xbfe467cf079a9ae2, 0x0, + 0xbfe4a466cba1dca2, 0x0, + 0xbfddfe62172fb944, 0x0, + 0x3faf44b65ddb4bac, 0x0, + 0x3fdfd9ee53ae1609, 0x0, + 0x3fe5bfd1d9bf88e4, 0x0, + 0x3fe19237b42cefb7, 0x0, + 0x3fb0ff7e82fa370e, 0x0, + 0xbfe06742127d929c, 0x0, + 0xbfe64982c9ac445e, 0x0, + 0xbfdcb896ab534a3b, 0x0, + 0x3fa9f5b62ab6fd6c, 0x0, + 0x3fdeb6c4aac9db7d, 0x0, + 0x3fe426a9e7545fc5, 0x0, + 0x3fe04c38883f1eb2, 0x0, + 0x3f9fd982bfec1a39, 0x0, + 0xbfde7b07737a1111, 0x0, + 0xbfe807b2fdec39ac, 0x0, + 0xbfe28eae61ee26b5, 0x0, + 0x3fa8768a5a8b07a0, 0x0, + 0x3fd99bb9225960a2, 0x0, + 0x3fe65b340f9f7a1b, 0x0, + 0x3fe194807cec0776, 0x0, + 0x3fac838ce77028cf, 0x0, + 0xbfe153c2c60f83fa, 0x0, + 0xbfe5a95ba3f83d24, 0x0, + 0xbfe2b3210362fa96, 0x0, + 0x3fa31d20a2391400, 0x0, + 0x3fdc35f19bfe3986, 0x0, + 0x3fe5a34e5bbb9323, 0x0, + 0x3fdd11983837cde5, 0x0, + 0xbf79c93dc936d542, 0x0, + 0xbfe0e5314ebed12d, 0x0, + 0xbfe4260be03cf560, 0x0, + 0xbfdb446fcc644299, 0x0, + 0x3fa097fd93efaa7f, 0x0, + 0x3fe0dc5e995cdc56, 0x0, + 0x3fe7a538b3d10b45, 0x0, + 0x3fdb50a4f72c36e3, 0x0, + 0xbfa2d83523eb96d8, 0x0, + 0xbfe24497c2150ef9, 0x0, + 0xbfe5ac024886dc97, 0x0, + 0xbfe0247be37bcec5, 0x0, + 0x3fbaaa0b791d6d3c, 0x0, + 0x3fe007d994aab78e, 0x0, + 0x3fea7196b7c13cd9, 0x0, + 0x3fddb69fa331ece8, 0x0, + 0xbfacd4f399c429c4, 0x0, + 0xbfe340dc24ca9282, 0x0, + 0xbfe87581d5239f00, 0x0, + 0xbfe02acbe4abc7b6, 0x0, + 0x3f7403f232c89b4a, 0x0, + 0x3fde96afe9b47f97, 0x0, + 0x3fe8defd235da766, 0x0, + 0x3fdeb81b32285c47, 0x0, + 0xbf773a23e309813b, 0x0, + 0xbfdf4310f67ad38e, 0x0, + 0xbfe869cd690e26e5, 0x0, + 0xbfe0d5eafc0ab004, 0x0, + 0xbfb8900da5213cec, 0x0, + 0x3fdf8d55579949c8, 0x0, + 0x3fe831618bf6661b, 0x0, + 0x3fe3e57f270e5601, 0x0, + 0xbfade32ef40b4335, 0x0, + 0xbfe16b6fee2143fa, 0x0, + 0xbfe8671627c4584a, 0x0, + 0xbfe08208c37e83e5, 0x0, + 0xbf9b55c0f59b4197, 0x0, + 0x3fe03e8fdf34c6d3, 0x0, + 0x3fe69d94c3a34627, 0x0, + 0x3fe0cbe1ad997f82, 0x0, + 0xbfa11685dd5ac852, 0x0, + 0xbfdb702384af58b3, 0x0, + 0xbfe9a351c8218aa2, 0x0, + 0xbfde26e2a04b2aeb, 0x0, + 0xbf6c8d66fc81880a, 0x0, + 0x3fe021696b39aa0f, 0x0, + 0x3fe8a5ac1de8ad59, 0x0, + 0x3fdf03a4f31d9a0c, 0x0, + 0x3fafd1364d31a71a, 0x0, + 0xbfe1523dea60714f, 0x0, + 0xbfe8d985c531fe4a, 0x0, + 0xbfe143cfdbb9995c, 0x0, + 0x3fadcaa026c666b8, 0x0, + 0x3fdd9694fdbe5e2b, 0x0, + 0x3fea666b1c530130, 0x0, + 0x3fe12f427724386e, 0x0, + 0x3f74992f3375a822, 0x0, + 0xbfdf5ce6c8912641, 0x0, + 0xbfe5d7218a652214, 0x0, + 0xbfdb5dacc47d01a0, 0x0, + 0x3faddb33cef7e42d, 0x0, + 0x3fe0df299d3fcdcd, 0x0, + 0x3fe6376f3bef8bb5, 0x0, + 0x3fe11d28e1dd5ca3, 0x0, + 0x3fb6baba3ada9c0b, 0x0, + 0xbfdc49bdbf64c436, 0x0, + 0xbfe7a5eb435e4ef6, 0x0, + 0xbfdd341a77cdd1fa, 0x0, + 0x3f993193589006a2, 0x0, + 0x3fe1652c5a33e7cf, 0x0, + 0x3fe7b5d36acd2813, 0x0, + 0x3fdffd7740dda93d, 0x0, + 0xbfa2bacdc76dd9aa, 0x0, + 0xbfd9bee43c55b440, 0x0, + 0xbfe485775b0adec4, 0x0, + 0xbfe1758f282fb22c, 0x0, + 0x3fb7e95e57598d66, 0x0, + 0x3fe1a2e448587205, 0x0, + 0x3fe77ef5679b8f22, 0x0, + 0x3fde68553ff6f8cb, 0x0, + 0x3fa66f30a07a2725, 0x0, + 0xbfe1f967799beb06, 0x0, + 0xbfe5457a00110b54, 0x0, + 0xbfe15c3478ad1336, 0x0, + 0x3fb2734b22830b2e, 0x0, + 0x3fe1e1568fb78eac, 0x0, + 0x3fe89e7a23cc9329, 0x0, + 0x3fdf11efbee9957c, 0x0, + 0xbfa5f322a820eb75, 0x0, + 0xbfe246234c2cad45, 0x0, + 0xbfe10531d81ee7d0, 0x0, + 0xbfe0a70a0a23b7ca, 0x0, + 0xbfbecb86d4ccefb5, 0x0, + 0x3fddd31d5974f8d2, 0x0, + 0x3fe6514b8eb926b3, 0x0, + 0x3fde4eccace87df3, 0x0, + 0x3fb4396c5dce9531, 0x0, + 0xbfd6d0aa9614c427, 0x0, + 0xbfe51f3e11106577, 0x0, + 0xbfe048dba770d0dc, 0x0, + 0xbf9b9e37014ca005, 0x0, + 0x3fe0958fa98c6e57, 0x0, + 0x3fe59e658242852a, 0x0, + 0x3fdefa38a902880f, 0x0, + 0x3fa4dd17fbc6a174, 0x0, + 0xbfe36811518b6309, 0x0, + 0xbfe69d6b905c3cbe, 0x0, + 0xbfe1689a09051986, 0x0, + 0x3f95696aa98f7efd, 0x0, + 0x3fe099a639c0e7aa, 0x0, + 0x3fe86c820327a4ee, 0x0, + 0x3fdfb35314a20979, 0x0, + 0x3fa8ded222e7348b, 0x0, + 0xbfda8a81b42e084d, 0x0, + 0xbfe6855963fd70b1, 0x0, + 0xbfdd7e66413af19d, 0x0, + 0x3f836a85bc8d9d02, 0x0, + 0x3fe09fca473b0642, 0x0, + 0x3fe68d47e64c822c, 0x0, + 0x3fe0ec39b0383cf4, 0x0, + 0xbfa5eb908e5d47fa, 0x0, + 0xbfe0af18c08d148c, 0x0, + 0xbfe4f0a3394a7a03, 0x0, + 0xbfe22cc9cdafe4f3, 0x0, + 0x3fa65622acc6a7be, 0x0, + 0x3fe04304a456c753, 0x0, + 0x3fe8e35248676478, 0x0, + 0x3fe0786bf8f41dab, 0x0, + 0xbfb43963b32faca0, 0x0, + 0xbfdaf9dc3a3d2e6c, 0x0, + 0xbfead62c2dceb296, 0x0, + 0xbfe03039b3f7d6b7, 0x0, + 0xbf8e65a59b88b9a6, 0x0, + 0x3fdc169cbb9f4d98, 0x0, + 0x3fe6594b93ef088e, 0x0, + 0x3fe13be8a6d2eb8d, 0x0, + 0xbf6564c78deb85ee, 0x0, + 0xbfdce35c81ed5f57, 0x0, + 0xbfe27f582f63b976, 0x0, + 0xbfdb02486eaa18d9, 0x0, + 0xbfaaedc8b8ea785e, 0x0, + 0x3fe07dace1451d72, 0x0, + 0x3fe74884857f2937, 0x0, + 0x3fe191eca7b44696, 0x0, + 0x3fa7bfbcd1066465, 0x0, + 0xbfe1f97255f4c1b4, 0x0, + 0xbfe59540f2facc52, 0x0, + 0xbfe1e0382229c855, 0x0, + 0xbfb02edbe06c975d, 0x0, + 0x3fe0d5a1be3b51b7, 0x0, + 0x3fe6e4b49ccfe9b5, 0x0, + 0x3fdc8953ffd29739, 0x0, + 0x3f88c3223c18c415, 0x0, + 0xbfdcf84c3186a96b, 0x0, + 0xbfe5f15a52f72195, 0x0, + 0xbfdca85ce0642275, 0x0, + 0xbf9b808ed81ae2ac, 0x0, + 0x3fe10374a94eb57e, 0x0, + 0x3fe85e3dc83ddd0d, 0x0, + 0x3fe3a29275df708d, 0x0, + 0x3f99223c817243c5, 0x0, + 0xbfe067bcb0c92b2b, 0x0, + 0xbfe7bbb69ac5dd2f, 0x0, + 0xbfd85dfeaaa38ad9, 0x0, + 0xbf81629979869e08, 0x0, + 0x3fdfd91c02bd2f44, 0x0, + 0x3fe4a9c46b712087, 0x0, + 0x3fdfe123bd321693, 0x0, + 0x3f734a32335e1d73, 0x0, + 0xbfdf8d4c85750bee, 0x0, + 0xbfe61d7f94822c05, 0x0, + 0xbfdebb33c3ecbe00, 0x0, + 0xbf86c7a3fcfad160, 0x0, + 0x3fe06c73e08566a3, 0x0, + 0x3fe86a0d990438b2, 0x0, + 0x3fe0fc3497f064a6, 0x0, + 0xbfa78a68e26b6f9b, 0x0, + 0xbfdf5d2d6f5e01ef, 0x0, + 0xbfe4f2429c2193aa, 0x0, + 0xbfe20ffd4ab4f180, 0x0, + 0x3f75e95f6655392f, 0x0, + 0x3fdf28f109f187a3, 0x0, + 0x3fe64a67eef7a6c1, 0x0, + 0x3fd994a22e425e6c, 0x0, + 0x3f72e98d463d3967, 0x0, + 0xbfdcc9899d6f6998, 0x0, + 0xbfe6a4f8f4e03fc5, 0x0, + 0xbfe04d6e4a352a43, 0x0, + 0xbfa32c686db41f08, 0x0, + 0x3fdf78427dd8bc46, 0x0, + 0x3fe805102d450ae8, 0x0, + 0x3fdc0c95a00b737a, 0x0, + 0xbf978eb60ba6365f, 0x0, + 0xbfe150035ba59584, 0x0, + 0xbfe6d61bd333f395, 0x0, + 0xbfdbb9225866ba78, 0x0, + 0x3f8cb8c357f85ddc, 0x0, + 0x3fe0da2c056c068b, 0x0, + 0x3fe660d30f0223f5, 0x0, + 0x3fe1669c78fd6bf8, 0x0, + 0xbf9f3f102eb05e0e, 0x0, + 0xbfde1afdc7012dc6, 0x0, + 0xbfe4f53b86235832, 0x0, + 0xbfe1d278e586db9f, 0x0, + 0x3f96a985eaedf9b8, 0x0, + 0x3fe02467b213a84a, 0x0, + 0x3fe83e1879c38f3e, 0x0, + 0x3fddc4bdafa6e9aa, 0x0, + 0xbfbbad4dc5f78fee, 0x0, + 0xbfdd028e371fa68a, 0x0, + 0xbfe91d889855f0aa, 0x0, + 0xbfdec506e2d0bc13, 0x0, + 0xbf94dc2f1cf486f2, 0x0, + 0x3fdfb43a3c40b392, 0x0, + 0x3fe99a37a2840ce5, 0x0, + 0x3fdf285bacd4430c, 0x0, + 0xbf9ffb34b4db0d5d, 0x0, + 0xbfe10c3381a02570, 0x0, + 0xbfe5561af96842a9, 0x0, + 0xbfd997afd469cf8e, 0x0, + 0x3f8a7c4db08a3268, 0x0, + 0x3fde571f1e527266, 0x0, + 0x3fe68936bacc03b7, 0x0, + 0x3fe0b114a61be263, 0x0, + 0xbf9a9f8bb1e61299, 0x0, + 0xbfde52fc389b13b7, 0x0, + 0xbfe71bdbe0bdb706, 0x0, + 0xbfe21e42e8c0f256, 0x0, + 0x3fa7d6dc92521e7a, 0x0, + 0x3fe333d2edac0b16, 0x0, + 0x3fe608255bde4990, 0x0, + 0x3fe2117363edb85e, 0x0, + 0xbf94f7803a65b13a, 0x0, + 0xbfe23c62c1fc8b3a, 0x0, + 0xbfe566a104220165, 0x0, + 0xbfdcb05342b70494, 0x0, + 0xbf733b43a462437b, 0x0, + 0x3fdde8155d8c9003, 0x0, + 0x3fe6274d625f2d8b, 0x0, + 0x3fdd15d2d209197a, 0x0, + 0x3faee02cd3921d97, 0x0, + 0xbfdd5b1bc32bcc43, 0x0, + 0xbfe6fe4577a11467, 0x0, + 0xbfdb4277adb59172, 0x0, + 0x3fb58eacaa6c8981, 0x0, + 0x3fdedc386f4005f6, 0x0, + 0x3fe6f4c8fa63fd67, 0x0, + 0x3fe1edb4ee3bfc70, 0x0, + 0xbf91d1dd9b9902c4, 0x0, + 0xbfdafe180cdc340a, 0x0, + 0xbfe7bd1b937a38cf, 0x0, + 0xbfde33d99b0f79fa, 0x0, + 0xbf625dd7e1a1ad41, 0x0, + 0x3fe15d9f3af80854, 0x0, + 0x3fe71bbfec0a3865, 0x0, + 0x3fdc766e305ac290, 0x0, + 0x3fc011658484147c, 0x0, + 0xbfdeb9f5c0fc264c, 0x0, + 0xbfe6e2eccae629c0, 0x0, + 0xbfdede9f03b7f574, 0x0, + 0x3fb0dae80fa7ab69, 0x0, + 0x3fe0629a544dbcb0, 0x0, + 0x3fe776fb28f2d925, 0x0, + 0x3fd97ff5b01e33d3, 0x0, + 0xbf99ed5ec2340d29, 0x0, + 0xbfe0b12e53fffe5d, 0x0, + 0xbfe5b015f8ac17f8, 0x0, + 0xbfdeb845513a16a3, 0x0, + 0x3fa1e7342c85796b, 0x0, + 0x3fe181779e7d7401, 0x0, + 0x3fe363cee07d0670, 0x0, + 0x3fdfe7cd76904764, 0x0, + 0x3fb1a018ad7eef40, 0x0, + 0xbfde379f2b14fb41, 0x0, + 0xbfe5160fcbc731bf, 0x0, + 0xbfdf6555d82a6a28, 0x0, + 0xbfb7c5b58629a303, 0x0, + 0x3fe0d145036df3c7, 0x0, + 0x3fe1e6e797504d9e, 0x0, + 0x3fe097f0d3ced795, 0x0, + 0x3fadbc6163f77eb1, 0x0, + 0xbfdc727ca124b6af, 0x0, + 0xbfe5da5991f19269, 0x0, + 0xbfdbd62ba3bf3ff4, 0x0, + 0x3fc069a33f92b03b, 0x0, + 0x3fde468f36ccf606, 0x0, + 0x3fe5750bc3f4372e, 0x0, + 0x3fda0e6e5ed95b95, 0x0, + 0xbfa39758a3d98343, 0x0, + 0xbfe01f9ff75c7a4e, 0x0, + 0xbfe67903d09d696e, 0x0, + 0xbfdfeab62e3fc76c, 0x0, + 0xbfacfef8b93bb4c0, 0x0, + 0x3fe2669b02676d85, 0x0, + 0x3fe7e51818a67207, 0x0, + 0x3fde89232b4bc782, 0x0, + 0x3f26dfe8d583591a, 0x0, + 0xbfdf9cc4e6288bb7, 0x0, + 0xbfe749c9ced5307b, 0x0, + 0xbfdd37a2822b84b5, 0x0, + 0xbfb738a29667990e, 0x0, + 0x3fddf8057b567746, 0x0, + 0x3fe7165b62552e5c, 0x0, + 0x3fda41870f1356fc, 0x0, + 0x3f963e7337b182ec, 0x0, + 0xbfdcc1d282fc9004, 0x0, + 0xbfe7b2fe7e48d598, 0x0, + 0xbfdb43929236a19b, 0x0, + 0x3f394f423040dee7, 0x0, + 0x3fe0f16a41fe261c, 0x0, + 0x3fe51c232446c9e3, 0x0, + 0x3fd974b7f70eb1e7, 0x0, + 0xbf78e67e0baffda3, 0x0, + 0xbfdad35171a247ed, 0x0, + 0xbfe7f4db5fc0b57f, 0x0, + 0xbfdf5acc3baa3fab, 0x0, + 0xbf9eb93f041f5b95, 0x0, + 0x3fdcf926352338c0, 0x0, + 0x3fe87aef99c45716, 0x0, + 0x3fe048514fe5256d, 0x0, + 0xbf85bf53b2d53b70, 0x0, + 0xbfdf07eff9f1e257, 0x0, + 0xbfe81cae46594578, 0x0, + 0xbfd6f800968f8667, 0x0, + 0x3f7be1cc863098dd, 0x0, + 0x3fe0552f6453c2af, 0x0, + 0x3fe4508676195b65, 0x0, + 0x3fdecbc089d30712, 0x0, + 0xbfa66c34b76b953f, 0x0, + 0xbfdd46c64243a21a, 0x0, + 0xbfe586ce4189eed2, 0x0, + 0xbfe121a20924bf87, 0x0, + 0x3fb38b197b57a718, 0x0, + 0x3fdd6e988a3e1a52, 0x0, + 0x3fe795c10ba528a7, 0x0, + 0x3fe02a41dabebce9, 0x0, + 0xbfc1281f8b3ef3e8, 0x0, + 0xbfd9f3453798ca82, 0x0, + 0xbfe6bfdc5658b4fb, 0x0, + 0xbfdd504893a17611, 0x0, + 0xbf95c0518e8fb751, 0x0, + 0x3fe1505f041e4f66, 0x0, + 0x3fe6ac4b8fe72a39, 0x0, + 0x3fdde4f818d9b00d, 0x0, + 0x3f9422e8bd8cbaa5, 0x0, + 0xbfe1e7bd3d969797, 0x0, + 0xbfe7c254a4011cad, 0x0, + 0xbfdc825e2658a6a3, 0x0, + 0x3fa75371512ad1a0, 0x0, + 0x3fe08d41dee44425, 0x0, + 0x3fe8dd7aac020b76, 0x0, + 0x3fdf735f402ce663, 0x0, + 0xbfa9f05bda0a06af, 0x0, + 0xbfd921aac4378edc, 0x0, + 0xbfe458e1dc6c008e, 0x0, + 0xbfe2ae2c028daf62, 0x0, + 0x3fb32080f6bdd4c3, 0x0, + 0x3fe125a3cda034b1, 0x0, + 0x3fe6efd9120526ca, 0x0, + 0x3fe05ae78ad0105e, 0x0, + 0x3fb052f7225bafc4, 0x0, + 0xbfdb373d16dd0e69, 0x0, + 0xbfe534acf0438bc3, 0x0, + 0xbfd91d8497e84c2c, 0x0, + 0x3f92d997f84988c6, 0x0, + 0x3fdeff208b8a44fb, 0x0, + 0x3fe63984972afa69, 0x0, + 0x3fddd4fb480311ea, 0x0, + 0xbfb3530c71d29115, 0x0, + 0xbfd962c416309dfd, 0x0, + 0xbfe6b45ee8900436, 0x0, + 0xbfe1202ea07e07a3, 0x0, + 0x3faf59173617abc7, 0x0, + 0x3fe1b64334ba6e28, 0x0, + 0x3fe308fdb7fbce3a, 0x0, + 0x3fdd564f6c942315, 0x0, + 0x3fa68f71f11f811c, 0x0, + 0xbfdb06e9db9c7cec, 0x0, + 0xbfe62f009c62d940, 0x0, + 0xbfde337970ef99e8, 0x0, + 0x3fa898d19374e163, 0x0, + 0x3fdd27498baf1b49, 0x0, + 0x3fe804190918173d, 0x0, + 0x3fde33dc6248f7fe, 0x0, + 0xbf9fb68a099d3534, 0x0, + 0xbfe07788455a8dd2, 0x0, + 0xbfe50312b3bee085, 0x0, + 0xbfe01eca7ddbf569, 0x0, + 0x3f81d582ffa853c1, 0x0, + 0x3fe2138590d606fe, 0x0, + 0x3fe5f51ff638f2bb, 0x0, + 0x3fe13a7097ef6d7e, 0x0, + 0x3fb484b1ac4ee27e, 0x0, + 0xbfdeba761d7f5afb, 0x0, + 0xbfe4a38dd5c98ba4, 0x0, + 0xbfe2343eb46f2330, 0x0, + 0xbf97eab25075ceed, 0x0, + 0x3fdbf0030fe977c2, 0x0, + 0x3fe5f19b7fde3c6a, 0x0, + 0x3fddbfb963add9d9, 0x0, + 0x3f8cf336e02f9ec5, 0x0, + 0xbfddbc2b19f3409a, 0x0, + 0xbfe6694cb70482c1, 0x0, + 0xbfe28b26213e3b47, 0x0, + 0xbf7234890873edc6, 0x0, + 0x3fdd2e50da4bc64c, 0x0, + 0x3fe752d2fdc35e97, 0x0, + 0x3fdce6ee3d5af268, 0x0, + 0x3fa16f780edab4b7, 0x0, + 0xbfe1b9fcacb994bc, 0x0, + 0xbfe71d9f33d08006, 0x0, + 0xbfdbd1b1e8707bfa, 0x0, + 0x3f7053acef4835df, 0x0, + 0x3fe0e65f35f21bc2, 0x0, + 0x3fe5494c0852ead0, 0x0, + 0x3fe14d6b5924d95a, 0x0, + 0x3f9a56a3409e50f2, 0x0, + 0xbfe0522acf0fd1dc, 0x0, + 0xbfe5aab3805cd890, 0x0, + 0xbfe0641c0925a131, 0x0, + 0xbfa8fec531df5097, 0x0, + 0x3fdcb9e024b9b2ca, 0x0, + 0x3fe4dd3f3c2d8f97, 0x0, + 0x3fe1cd602d4f23e0, 0x0, + 0xbf9a86e61e8675db, 0x0, + 0xbfe062a368f9e943, 0x0, + 0xbfe6cf969ca97915, 0x0, + 0xbfdc93763e126bb3, 0x0 }; static const uint64_t in_cifft_noisy_4096[8192] = { - 0xc00ada05db8ecc9e, 0x0, - 0xc006a1903c67d7c0, 0x400b901cafc705ff, - 0xbfe0a84a0db6bb0a, 0xbff358360c005e2a, - 0x3ffaaa37eb686be0, 0xbfed04f1d3dc3e40, - 0xc007f1de29fb936a, 0xc004b423a087d05a, - 0xbff6a9923068a897, 0xbff97cb6c2ff438f, - 0xc00525ff8ec1db23, 0x3fd0972b464b1cb0, - 0xbfde019e83458ce8, 0xbfebe7e26cd694da, - 0x3ff86e96d1b9de20, 0xc0046f09757d79aa, - 0xc00e6eebb57f15b2, 0xbfd5b55fd0ad6388, - 0xbfebb919e5f42b89, 0xbfea1ed645854b97, - 0x40054f4cb2ee20c9, 0x400a2bbe9ca4d958, - 0x400b1b02c8987466, 0xc010d041c874d5a9, - 0x3ff1b79f361f42a2, 0x3fb391effef54f24, - 0xc012777ef521054c, 0x3fe6c66fd53ce579, - 0x3fd3c34c67c31f7c, 0x400b3fe39a93f251, - 0xc00221b8ef5e3a80, 0xbfe6a925742f8daa, - 0xbff21632dd8dc072, 0x3ff0c9c1680dde08, - 0x3fe3b946b6763084, 0x3ff4b1b25d3bab1e, - 0xbfea85301f7619e8, 0xc00583a260efce52, - 0x3fff4dc7c348efed, 0x40055b3b77c6dbd7, - 0x3feb224f45ba1831, 0x3fe6fdea5caa6e66, - 0x3fff6c00e2a1802b, 0xbfc4c7972061c060, - 0xbff25e4e5f33450c, 0xc0064d8f2552c9d0, - 0x40017c20d9f03d65, 0x4003147b7e83e8bc, - 0x400c91e76575ea28, 0xc01004442d8284e6, - 0x40101665cab474cc, 0x3fed88502f726abd, - 0xbfe884a035c45bf7, 0xbffeb3d5a846aeae, - 0x3ffd87cb94ce14e0, 0xc0023930d9fe687b, - 0x3ff31c54e4d50b70, 0xc0055b34833cb5f4, - 0xbfcbf94f28da5608, 0xbfd7d5d94a468aa8, - 0x3ff41266dd35052d, 0xbfee9e3eeae431fc, - 0x3fe73d56f1c24014, 0x3fff57c9050c920a, - 0xc0065017e8448b24, 0x4005f6cbb9364166, - 0x3ffee25a10af403d, 0x400acd2596a0f27d, - 0xbfe01d9588a4ed41, 0xc004b7dff1219644, - 0xbfe61c92debedc40, 0xbff348a8f2a93a54, - 0x3fd27b194896da7e, 0x3fc8fe622d479bc8, - 0x400714999595f500, 0xbffe854790399199, - 0x3fb55ef77f7fd3d0, 0x3fec4e2f1e343e65, - 0xc0003f5be65a8f14, 0x3ff8a137ce3f59e6, - 0xbfdb797fd2bd0758, 0x3fdb8a2049509f60, - 0x3fd494f85d2e6d44, 0xbffa477344657a73, - 0x3fea19eed58c1e50, 0xbfe89e1cfbe35b74, - 0xbfa2a94df0c65910, 0x400585f64e41fe1e, - 0xc005a649dc88b323, 0x3fd0aab8e0423d1a, - 0xc00af94cb8c9689d, 0xbfdaebd89dbabe17, - 0xc0055950a6325ce6, 0x4006cec1d22cebb7, - 0xbfd3bab104e637d8, 0x3fe5835efedfbe8a, - 0xbff47e73c5dc46e6, 0x3fb4450a300705c0, - 0x3ff22998a35366ea, 0x3ffa734923ecf650, - 0x3fc19fed702dd5f8, 0xbfe306ae2bed9906, - 0x400b06c87be07f50, 0x3ff01f8364d8b724, - 0x401212651ab79ec3, 0x3fd0046224943df8, - 0xc0064d092737435e, 0xbfc774991f1ed678, - 0xbff268558ce83e38, 0x3ff2bd8aa081be16, - 0xbfde12463e5da010, 0xbff21ad7a75c389c, - 0x3feadf7c1e850ea0, 0x3fe66e695ac5db34, - 0x3ffd016bf066f5ae, 0xc00da3e5faed69cb, - 0xc005f99b6a69bbda, 0x3fe34dc28d46f571, - 0xbfea6869a1d48996, 0x4000c3cc7e25e281, - 0xbff5400031be02ce, 0xbffb486bdb12a172, - 0x4000d40c65697d8d, 0xc002744d80601e3d, - 0xc0048296915c02ed, 0xbfcac6c6cde7bcac, - 0x400aa061c9c32347, 0xbfbf9ce6ed0ae780, - 0xbfec4f8a72f1d87f, 0xbff006f4f1cd0b5e, - 0xbffe21244ce7391c, 0x3fee739ed63f9048, - 0x4004cfcbd7bc2483, 0x4008886d979b7144, - 0xc018170930d5f952, 0xbff511d1e4b4b17e, - 0xbff91d1e890078da, 0x3fcefea70c7a8584, - 0x400e420acc04d88a, 0x3faef16261c18f80, - 0xc00cba2e8a70fe96, 0x3fd67f068ecd1f8e, - 0x3fe0c42b9df6d89e, 0xc0088ea854cff52e, - 0x3ff85340bc330f7e, 0x3fe4fe1d840ea18d, - 0x3fe49b3e9f492216, 0xbffb78e133ef69b6, - 0x400328a776b8bcf0, 0x400585b56f9d4583, - 0x3fc495cb241c762c, 0xc002a64793942d96, - 0x3fee1bf14e77405d, 0xbfeb376a4b1be886, - 0xc003fac79b59ba8d, 0xbfe0c8e461cbad5a, - 0xbfe7fe11567070ed, 0x4005e07f7f427c7e, - 0x3ff7a99774428809, 0x3ff566a6a6c62100, - 0x3ffac0a970d14d18, 0x4007dfd6cee7f4a1, - 0xc013d55fbf93efd7, 0xc0110c4fa3d35ac4, - 0x40091b09c1ed98c7, 0x4002c4c63a2b3c80, - 0xc00261dbaa3f608b, 0x4002d897d3334a1a, - 0x3feeb65ec522d858, 0x3fd933feda9bf323, - 0xbff464b7ef2538a3, 0xc0049cd89364dfef, - 0xbff76741785b883d, 0x3fe53278fb7a8564, - 0x3ff1675489940138, 0x3fc94df69b62adc8, - 0x3fb449e7dc53d400, 0x400e8b09e49fd89a, - 0x3feae7f2cb24d396, 0x40079acce85984bc, - 0xbfff3d57c3bc623f, 0x4015d4fb17677b12, - 0x400898a007850720, 0xbff60ce4a63304f1, - 0x3fca959d60f06e54, 0xbfff4bd0d58db406, - 0xc005bbd8950da918, 0x3ff906a905312300, - 0xbff32e34ef2e2a2a, 0x400051b65ca6bce3, - 0x3fc38adac9644470, 0xbff29f7d17b52112, - 0x3ffd429c8e81d2b6, 0x3ffd369d16b8dd95, - 0xc00119a6db0b9879, 0xbff99e0539a9fc0a, - 0xbfe0aca4d8a16be9, 0x3fca9ec8f24cf66c, - 0xc006f3c509a2bdec, 0xbfd3d360eba2a0a8, - 0xc00758b15fd94a26, 0x400176fa55cfe73d, - 0x3ff562fc2ead1296, 0x400139898086f3c4, - 0xc009d2ac85c7beea, 0x4008e8486d47d159, - 0xbfd0caa6d1553fc4, 0xbff219a0e58a4aad, - 0x3ffc798b080e9050, 0xc017b5af7f4add3a, - 0xc0074e15fc1070be, 0x401b7b0a8416904b, - 0xbffbaf1a18b82e6a, 0x3fdff6235a1c9ce4, - 0xc0039a2fef64c232, 0x3fe9043bf7584c38, - 0xc00e71e3ab1ac6f0, 0x4001f4377581ce3a, - 0x3ff710936ee41b0d, 0xc00b7dea643edb3d, - 0x4007d2f07d73c645, 0xbfc4a27fe8bef0c0, - 0xbfe1fa1ea69f0fda, 0x4000685dc1913f76, - 0x3fffe9970df9bfee, 0x4015e17bfcbee668, - 0xbffe163614251f30, 0x3fe5ae4a262c2e24, - 0xc001b7b377c6d93e, 0x400888d95736025d, - 0xc0023993c60fd50d, 0xbff0c52e01d1927c, - 0xc0043ad540cb7248, 0x4010234a1db10abc, - 0x3ffeaa29cdf081b8, 0xc00f4486fa56a8dd, - 0x3fe2dd6b39f9c9a3, 0xbfe271cb29968b4e, - 0xc00f5fb2f5d48b98, 0xbfe341d9d480ce76, - 0xbff46b2273b05c9c, 0x400d0ef40d5712f4, - 0xbfe01414a89a9360, 0x4002eb16781f0b68, - 0xbfc98c60e1083906, 0x3fdc21a362805e26, - 0x3fb60fcee2b74490, 0x3fee15fc32908ec9, - 0xbffca9bdc194953d, 0x40130444a0e411ae, - 0xbfe15b0776c90bef, 0x3fffc55346697a60, - 0xc0011c153e610280, 0xbfe8fc4737cce8e8, - 0x3fec46fbc7c6eebc, 0xc00f9739a51fcf96, - 0x3ff569391917becc, 0xbfb7551b1aa95cd0, - 0x3fb0ad66baca8910, 0xbff34c5a3c17239e, - 0x3fe54d28ed25edea, 0xc005b3ae78920628, - 0xc011707ca2566f17, 0x3fda6b9773609810, - 0x40089d0334444434, 0xc001a0efe9a27bd4, - 0xbff342a20a4d799d, 0x4004a12d79c04088, - 0xbff34ca3372619ec, 0xbff0254389815214, - 0x40134a206c381510, 0xc0044e2e5df3597a, - 0xbfe7366c6d947db6, 0x4003d4ee617a197f, - 0xc010da54ee8c093a, 0xc015d4fe86cc583e, - 0x400eb20c90427f2c, 0xbff57b14a1abe210, - 0x3fcde4882a539ba8, 0xc0057c7470cbd980, - 0xbff09d6290e6f2e0, 0xbff6615dd5248f79, - 0x3ff57c9cb36dc932, 0x3fc442e80ca3f540, - 0x4000b32ef97af6f0, 0xbfb25f1038a4e780, - 0xbfcdc89b7a4f3cc8, 0x3ff8b0be8f24f36c, - 0x3fef247f10d3fcca, 0x3fd3bb8d209db414, - 0x3fecac3b97363ef4, 0x3ff8d67b8283db02, - 0x3f97ab573a2d18c0, 0xbfec5d32e5a6bdf8, - 0x3fe5d2b2f1bfa6ef, 0xbfd53a709faa0b9a, - 0x3fed990e9cb274cc, 0xbffa600dfc18c752, - 0xbfc510d37533d5d6, 0x4003684d7743b029, - 0x400ee37288fea35e, 0xbff1573c40aa8ad1, - 0xbff2d521c0e6bcc8, 0x3fe095dd52a80473, - 0x3fe1154226cd1ef2, 0x3fc63ee85d50d846, - 0xc00c4f27dd02ee34, 0x4005190e75a6b92e, - 0xbfbd1f93907c2d68, 0x3fea293398d7c550, - 0x3fe71e5389b562b1, 0xbff8e28b06290f2e, - 0x400865cfcd9f1b62, 0xc00212e16f70eb9e, - 0xbff57ffa50a26448, 0xbff2ca1dfe7d7fc6, - 0xbff50e0efafba145, 0x3fff2c6f8d10873a, - 0x3ffed5cec9a041ec, 0x3fdfe59187d51e08, - 0x3ff1d7f9f4d073f0, 0xc00bf5a065c7da8a, - 0xbffff76994602c47, 0x3ffce79f21d1c274, - 0x4017d1d3c9da9270, 0xbfd68562fc8a6c58, - 0xbfc8d651586d1648, 0xbfe0c258e4918538, - 0xc003d58ffb8a1d51, 0xbff08ab2ccb9d808, - 0xbff43c68d741e69e, 0xbfe9ece15a072a72, - 0x3ff13622e83cd2e8, 0x4000d8acb828c44a, - 0x3ff4674b595e7500, 0xbff6330a65e82818, - 0xc00b45ed9535b8fa, 0x3f8513297e953480, - 0xbfa6716316c23300, 0x4009a57928524f01, - 0x3fa0c83f077dc440, 0xbfefe81d4bd171b7, - 0x3ff48df5f20e4394, 0xbffe7e7988b9879e, - 0x3fdbdaa3db77a5a5, 0xc00155408e75ff0a, - 0xc009df948c2274be, 0xc003e192ef6d3e88, - 0xbff45b4ab46f2964, 0x3feaca7eed9712ae, - 0xbffd9428d27106ba, 0x3ff6d995228a2901, - 0x3fe231cdee7967ff, 0xc001cdee2953eeba, - 0xbfbe24c7b4cd2c10, 0x401143970dc6155d, - 0x3ff155efa90a7bee, 0x3ffcb9eb52102dc2, - 0x400d229d295945b6, 0x400092dd570b3711, - 0xbff04b24605c7ba9, 0x3f68941b8e789800, - 0xbff4c85643a39e6c, 0x40165ff1ef852648, - 0x3ff8abb723b784d3, 0xc00b6bcfdfe28962, - 0x40035c1b6a2727d6, 0x4001381fd583d028, - 0xbfe31d221cb95190, 0xbfe74cb78cce5b57, - 0xbfcc20d4efcc83fc, 0x3fff6c1a3ddce4e0, - 0xbff97ff4b9268f0a, 0x3fa2cba1c9768b40, - 0x40075957b79a24d4, 0x400446d17f8a4eec, - 0x3ffa4d02df81028a, 0x40043cce6b000f28, - 0xc002536f9cb5e0dc, 0xbff13925d0cd1270, - 0xc0064c461c4ade8b, 0x4000be43b0968e42, - 0xc00a9b5e6a523c64, 0x400bd9eff45fc756, - 0x4008eae9b8d90e5a, 0xbfd65ee0a22ef8a4, - 0x3fd342d1a3b8569a, 0xbfff12182425dc00, - 0xc00dbc5bdd6456bb, 0x4001f27a8b39b6a2, - 0xbfe9186b45e8f3d6, 0xc004521f33a27d11, - 0xbf9f655f1f162650, 0x3fdc282df2c9cb30, - 0x3faf297a5d9aae80, 0xc005466054e3332c, - 0x4000914f865da3f9, 0xc0118920eb7f416c, - 0x3ff8315f8c838e4a, 0x4009900e232011ba, - 0x3ffa29fab7c953f3, 0x40060014b45f1bd6, - 0x3fed00903aef4bd6, 0x3fe6f77dc0efdda9, - 0x3ff582a7d9904ef2, 0x3fd97eaae0dfe14c, - 0xc00ad62dc706c3aa, 0xbfd425f4e9a51e22, - 0xbff42029dd34ef23, 0x3fdf2262b7e3429c, - 0xc0078e43a65d70ee, 0x3fff38a25b01b866, - 0xc0014dbd72faa607, 0x3ffa6d5dd1cb5037, - 0xbfff5909432fbc5f, 0x3fa50bc485c20aa0, - 0x3fe08586f78cd690, 0x40008cc2daf75915, - 0xbfd170821accdf74, 0xc00c0e45dd45aa04, - 0xc005416af26099fe, 0x3ff938d6c8bf60b2, - 0xc01312cd5fb42d1a, 0xbfc656614f41ff00, - 0x3fa90fc7514eb550, 0xbff6e62dbf0c6575, - 0x3fd17b981a1389e4, 0x3fef2229a5f9f970, - 0x40013e58b3ea190a, 0x4010cbaac646a557, - 0x3ff6d2535dc3167d, 0x3ff9a4d6e6186375, - 0x3fe246b844588a63, 0x3ff3d8d420f60150, - 0x3fe5c7293815dd1e, 0x3fb5cea3210e7560, - 0x3fca0b59bdc1f540, 0xc00e16016cab8bee, - 0x3fddab266bc783e8, 0x3fea0aa8eb683730, - 0x3ff3293bf5c19acc, 0x4009aae2a5d8d0c4, - 0xc00544aaff5bb365, 0xbff5cebde63e216a, - 0xbfdd08b14c046de0, 0xc000c0ed043fda46, - 0xc004da65d3cd012c, 0x3ffa20a00bd9db93, - 0x3fe4c929b2eb9786, 0x3ffe38a037126a64, - 0x3ffabee05eb778de, 0x3ffbb07717abc286, - 0x3fe19f115878b368, 0xbfe0cbc3e4e767f0, - 0x40037814ba734e68, 0x3f5893cede09e400, - 0xbfd6c12278680822, 0x3fe10ab582f6a86e, - 0x3fd75afe261531ec, 0xbffac2b9bdb6e850, - 0x3fea8ae38da8b634, 0x3fc718b86d2b6a8c, - 0xc000b8cc4eb47fab, 0x3fe02cbc8de8fdcb, - 0x3fb963dc507e7c40, 0x3ff50eed791014e1, - 0xc0033f727d14b9c2, 0x3ffdf4096c7dc9b4, - 0xbf856ad75baa9780, 0xbfe2fee6d2306987, - 0xc002ee0d305ae740, 0x3fff41491d5324b0, - 0xc006e7d0fe40bcf4, 0xbff3e45d04e0c9fa, - 0xbfce397a1d7a7070, 0xc00f89d780cf8563, - 0x3ffbde638a8f5c04, 0xc0053536ed13a03f, - 0x40086c69cb14220e, 0xbff27815d25eeacc, - 0x4014bd40ca6634fa, 0x3fd787f6cfbc6f90, - 0x400382861797880c, 0x3ffe5b28af20ef89, - 0x401174130a2e1de2, 0x40013886729a8572, - 0x3ff0edaec9868248, 0x3ff9d370f36cc2b2, - 0xc007837237b32ec2, 0xbffe2002c5ae3398, - 0x40007425bff897a7, 0x4002f50756c04e0e, - 0xbfd4fd21f182da54, 0x3fd5020125a919fb, - 0xc00a8f81204da6f0, 0x3ff208ffd2cd1836, - 0x3ff25e2994f87087, 0xc013e9fd65d749c6, - 0xbff5a91534307d1d, 0xbfda2e1d8e4a33e8, - 0x3fda205108265158, 0x3ff2cd7010816c02, - 0x400a3e90f776265d, 0x3ff96eba3e881bec, - 0xbffeeef5d0d7dbfa, 0xc005a2edefa883c5, - 0x4006072dd3d9f63d, 0xbfe1c2460698e39a, - 0x400987d6b33ec3d0, 0x3fe7cc75dd5a5ef4, - 0x3fe632d4fc7b3b08, 0xbff3edd26227f674, - 0x40115c4058d0a323, 0x3fed52e1fbb837f4, - 0x400f63ac68726f08, 0x3fefd9996bd00fae, - 0x400a5665149c3963, 0xc007851c3d1fe800, - 0x3fd5b17fbd2f8c4d, 0xc00ed0ebe9a8ef54, - 0x3ffaa8aaa94adcbf, 0x400db96b387fa904, - 0xbfe43d612952f199, 0x3ff5d80e7a93b2ce, - 0xbfdb4d8cced35dec, 0x40104b78a050e870, - 0xbff2d375fec62d4d, 0xc0001add489cccc4, - 0x3fee82b92a063f80, 0x3fdd832c97b91cb4, - 0x3fb083ecff18f5e0, 0x3ff9c4ab9f0b24cc, - 0xc01932bfae2afdb5, 0xbfd661a7705295ac, - 0xc00ee154a1a426e6, 0x3ff9fac2c1af3873, - 0x3ff61714630353fb, 0x3ff49774e2810cb2, - 0x400e2661b4ee0ef4, 0x400d7a05c44c1991, - 0x3ffefd038fb80c9d, 0x4003c86d9ae79a14, - 0x3fd13513fd36bed4, 0xbfe91f50fbd67c4c, - 0x3fe81560acbb8dd0, 0x3ff88265534a9965, - 0x3fb145ac2d7a4de8, 0x3fe619b06d4105c0, - 0x3fdafda65410474b, 0xc009810b27f2beb9, - 0xbff8fb97f14a95e0, 0x3ffa43301fa7ece0, - 0x3fff637e0f5f0d17, 0xbff3c87d638250c2, - 0xc00460210516627d, 0x400433f7f8497961, - 0xbfe5fa152ffd0ce0, 0x400edc4b4423e58c, - 0x3ff1210290983662, 0xbfd7b49413c6f5a0, - 0xbff8b9953841a651, 0x3fe6722805c4a958, - 0xbfc018e36fdad8b0, 0xbffbaecce77a2848, - 0xc010804a05b83229, 0xbfccbf74b51894f0, - 0x3fd3806540b6f458, 0xc007af8403ebebd0, - 0xc00fcea59ee8477f, 0x400c93e753151576, - 0xbff430f0ccc1b63e, 0xc00ca68d5afcaf67, - 0x3fffecdf1891c9c4, 0x3fbd45beecac7678, - 0x40089ffaf0d82916, 0x3ff671d6b7dbc453, - 0xbfe0c30c7e2e90c2, 0x3fdc4d968b068542, - 0x4003f6c32f3f4814, 0xc0074276711e5c9e, - 0xbfdeab590407deec, 0xbff8af4b853a05d9, - 0xc0146917bed300a3, 0xc00dbbd176e9b426, - 0x3ff1f9babd06bf1d, 0x3fdbec1c338d1e8f, - 0xbfc7953077b01bbc, 0x40007a9a6bf77c2e, - 0xc006e97e7627bb43, 0xbffe3d510570ec2b, - 0x3ff4dddb45053f63, 0xbfc98b6915cddf6c, - 0xbfd096c4106b0e2e, 0xbfe73620c85e73d8, - 0xbff083eba55bdfc8, 0x400badf35fccfd0c, - 0xbfb04ae53a485d60, 0xbfd617ec18109952, - 0x3fe53a8d8b54571b, 0xbfda281be61e6d3c, - 0x3ff3e2ac063a1485, 0xbff06ce0c929d07a, - 0x40019fbe5a27d97c, 0x3ff21806386e160f, - 0x3fd6ae4574fd3808, 0xc001f8f933b6f42e, - 0x3fee967c7b73628e, 0xbff25d86bd513d8e, - 0xc0045dbbf1118b1a, 0x3fed3801f7c2fcc7, - 0x3ff161c4429f0b7f, 0xbff771e24cf0181c, - 0x3ffb572488ec83e2, 0xbfcae67480d2e850, - 0xbff3f615b41eee31, 0xc00175b59029193a, - 0xbff672a9979abc06, 0x3ff8c2c1e4920a6c, - 0x4012970709eaf494, 0xbfcec7668947bd80, - 0x4006c6d541ea241e, 0x40019ef3ee33a74e, - 0xc00948fe4ac992f0, 0x3fee150ffd53fca7, - 0x4001aac6d88f5424, 0xc007d186e42e8e1a, - 0x400163c392fc2102, 0x400a5f7234e25064, - 0x3ffe067df256cd38, 0xbfd56d3807e8388c, - 0xc0132100c2fc1474, 0xbffebc43439a4b8e, - 0xc008c0a500d5d954, 0xbfde7256bc35bc60, - 0xbfd7334389913243, 0xc0023fd1402c8474, - 0xbff768bd50902f20, 0xbff19d2adb1e73bc, - 0x3ff75cb43afed7bc, 0xbfeb0e2b9b2b162a, - 0x3ff0193a2a1f8b1a, 0xc0165f4b53e5dadf, - 0x3ff5aeff64aeabb8, 0x40166cbef49a8288, - 0xc0068d8592e06dc4, 0x4001298279c76875, - 0xbfff314570f6e35a, 0x401c43f667cb5032, - 0xbff26eb1b435ae24, 0x3fef6e7bbeef97ae, - 0xc004a21e9c6228e6, 0xc002c061c8463c9a, - 0x3ff040048edb5b92, 0xbfefa80b38f76cc4, - 0xc003a3c08eaca314, 0x3fec10febc7b8d72, - 0xbff79413bd969c1c, 0xc0118ce764e98de0, - 0x3ff06d5854182de0, 0x400467c6bbe21984, - 0x3fbca838cbbbace0, 0xc00d437e15f5fed2, - 0x3fedf771399ae087, 0x3fecd890c79f3ee6, - 0x400eae9903517f21, 0xc0077de9b802e612, - 0xbfe59fcdeb84e92e, 0x3fc65ac63dd9d1a0, - 0xbffcf49f3acb8ed9, 0x3ff4aedc898f0a7c, - 0x3ffcae02e0a319c4, 0xbfeb319bd368c19d, - 0xbffb65945b7d0312, 0xc00f5218ef53607e, - 0xc00585ae0fda3589, 0x3ff196284dc0db6c, - 0xbfebf110d405b678, 0x3fb874eb51d93a50, - 0xc00461582c324158, 0x3ff55c5299765346, - 0xc005afd77186fb68, 0x4006569ef49e7db8, - 0xc01cc983103bef82, 0xc0168b87e27645e4, - 0x3ffcb3709c7442f7, 0xbfe1027889a40206, - 0xbfe7a1de064b875c, 0x400c9a00a486b9d3, - 0xbfd960fb093f9a78, 0x400579a8936af0bf, - 0xbfbc307a1c5c3220, 0xbff233628887f62e, - 0x4004fa4b8b8603e3, 0xbff5edc9af040e44, - 0xbff510985b91afbf, 0xc00d457b73ec156c, - 0x3ffa0fc5111db991, 0x4000cf717ee37f59, - 0x3ff5c8def951af18, 0x400443cfb41c5d4c, - 0xbfe2a7ece143ff56, 0xbfeebcbf1ba848d4, - 0x401512718f65c33e, 0xc003b142cd53da4e, - 0x3fea5264739d20ac, 0xbfe2483b01cedaea, - 0x4001837c36350450, 0xc009268290ff8f5a, - 0xc004ca7ae5e1a742, 0x3fcc8cd169be09b8, - 0xbfcc5d44b630610e, 0x3ff1b886a9994dd5, - 0x40045a21edd91474, 0xbff6114ef81a26f1, - 0x3fe4bb764baf912e, 0xbfc9f07caaca8bd0, - 0x3ff538d4c7c7cec9, 0xbff100ee79ec1538, - 0xbffa43d237aba7da, 0x3ff7104c2095e5be, - 0xbfae923612b4b590, 0xbff9c6951ff16003, - 0xbfddbf8fda2e7e92, 0xbff50cc80f81a666, - 0x40118f59528c76fa, 0x3fe56114f5027145, - 0xbfe2a6ee626bc0de, 0xbff4fb2300401558, - 0x4006f2769779ba21, 0xbfef90333dcaa032, - 0x3fe424baf72ba55c, 0xbfce7bae9c6821ac, - 0xbffb066a9371c228, 0xbff5aaad6bf45e36, - 0xbfe5fd7e4e9bac36, 0xbfe0a421afe8f70d, - 0xbff3cc3b9dbd025f, 0xbff2412e4903a508, - 0x3fe1de3a61f62d05, 0xc00dddf3c644cc06, - 0x3ff787b3659ee5ef, 0x3fe60ea0010adffc, - 0xbfee7aa68385a9fd, 0xc007e012500c9410, - 0xbffed74d9efdbaa3, 0xbfff8ffdadf187d6, - 0x3fef5647ed6da744, 0xbff77aee1cc0eda6, - 0x3ff216755b9667fc, 0x40019a9932435ef2, - 0xc01e0869e000ace0, 0xc0036538bf8f725c, - 0x3ff4cc0ccf104322, 0xbff11f4ccb29c6ca, - 0xc00b678d88a0b55a, 0x4004db708accaed2, - 0xc000b676501e6304, 0x3ff5cf09bc5899d0, - 0xc0099c610cf85cb6, 0x40112e1f53912812, - 0x400cb42b52eb98d9, 0x3fcdf0feba322610, - 0xbff27562e3422df0, 0xbfea4243310610f0, - 0xbfff077bdf40ec9a, 0xc00846065bc2281b, - 0xbfe02558c9d6d660, 0xbff04bafa49bbdde, - 0xc00816f72bf3cc44, 0x4000a40692ca09bb, - 0xc00b569b53235507, 0xc00ab2958d3717c3, - 0xc013d86639f5d05c, 0xc00f49f78e37a23a, - 0xbfe2d39ac8d9d81e, 0x3ffe58793b62e59e, - 0xbfa805c31bfb3a38, 0xc000c06786ed0bbe, - 0x3fe7126ce18bf2f0, 0x4002b621114be153, - 0x4002a7ba133df790, 0xbfe8464943a38764, - 0x4015304ce2378334, 0xc008fcc2a3ca0088, - 0xbfd500ced242f376, 0xbfd8f15678719d84, - 0xbfff2525854a84a8, 0x3ffc0cbfeb72382b, - 0xbfc30fac231e81e0, 0x40013392ffd3a754, - 0x400351a03f409254, 0xc00aee6729daa78a, - 0x4003d53f51f04be8, 0xc00f01110f270cb0, - 0x3ff2f5b15cc53d16, 0xbfb04e7a70b2a9d8, - 0x4005efe18d21816c, 0x400625e3ab091012, - 0x3ffc802d75a4a2df, 0x40131f5476797328, - 0xbfd745baac75daea, 0xc00faaeab7342ff4, - 0xbfd444a58350c632, 0xc01410f6a460f74f, - 0x3febfa5a2db11d18, 0x3ff5a917d9f69098, - 0x4000a410987099ad, 0xc01e15a0a5eb8024, - 0x40060450a350950d, 0xbfda759feea4ac60, - 0xc00aec64c1f04fb7, 0x3ffd1db85af74fc3, - 0xbff265f5cec8b314, 0xbfff1e74141b45fc, - 0xbff05c98c207de14, 0x3ff6ccf51a5416b8, - 0xc004f5fc71d49034, 0xc01305bcba58ae96, - 0x3fee543059b8e7e1, 0x4003babe8d4026d2, - 0x3fd4c18221cf2590, 0x3fb184d0c821e3c8, - 0xc0139d2bd1d00bee, 0x400078d228b9a0fb, - 0x400f1a732fd96704, 0x3fc0948f8908f650, - 0xbfe564270f4575b2, 0xbfd92e54a9eb2c20, - 0x3ff0a45992346476, 0x3fd0602474e0aadc, - 0xc00cca00ec70cf09, 0xc00570bc5b5e1ff8, - 0xbff986bfd16be2ad, 0xbff9842ee0869abd, - 0x400787b200071c21, 0x3ff3b1b1653f4654, - 0xbff39d96cb473947, 0xbfb5f6e2c39128e8, - 0x3fb20bcc6346a018, 0x3fce6f3ed18afab0, - 0xc003b554018fc64f, 0xc010f5902c34ed1a, - 0x3fda50f337e6df45, 0xc018bbac0b652bfe, - 0x4012da56652b134f, 0xbfc9301004fb9a50, - 0x401838f5395db66c, 0x3fcd791d54e40e9c, - 0xc0116885c305654c, 0xbffdbecea85b0802, - 0x401531cb819f042e, 0x40092585225d6b1a, - 0xbfe4748210e3ed6c, 0xbfe3c3a8260a6f16, - 0xbfa8f22d26cc88e0, 0xbfe76e454bc3e7e1, - 0xbfb56aa70c9cb6d8, 0x3fcbff6bb9050f1c, - 0xbfd9b05d07317034, 0xc00ece112f035cba, - 0x400713e860e403ac, 0x4010e7d6fd4fcf21, - 0x3fee0a0b1d551608, 0xbffd86272c649f78, - 0x400382b2f78fb892, 0x3fe3091f1975199b, - 0x3fe1ee78b1001fff, 0x3ffdab260a0093d0, - 0x4016b848363f8597, 0xbfd398041fb2b7e4, - 0xc007a88cddead8f8, 0xc003bfdb0e32966c, - 0x3ff149101ab58230, 0xc00b05da19002d10, - 0x3fd329e99c1c3112, 0x3ff21b7bd784e8f0, - 0x40004fd6014307b2, 0x3ff1e0e94d91e137, - 0x400ce896356c6e28, 0xbfe79db602068920, - 0xc0059386ee3e5176, 0x4001972d598050a0, - 0x4013ba52f2759e90, 0xbfef0e74b61b5d03, - 0xbff7172eb4c1b863, 0xbfd184e8f10e0a1c, - 0x400223bc4eced592, 0x3fe7abdd8bab8421, - 0x3fbb72ae501768e0, 0xbfa5a4668b08cec0, - 0x400ec7d9f4a58aeb, 0x3ff40bac22fc8bf8, - 0x4002163c1d0ba588, 0x4002932df46a1fe7, - 0x3ff7aa4c2dacdcc1, 0x3fd94ed03c7674be, - 0x3fd48ca43836cdd0, 0x4010569cd8519a50, - 0xc007daea678c94d3, 0xc017e2ec0b579ef3, - 0xbfd53edc8a4f9648, 0xbfb543949c284a34, - 0x4007520f20063036, 0xc00875738e1f4a5c, - 0x3feebcafcfac4c20, 0xc00c1e5827fcfc7f, - 0x40120eb2b60b84a4, 0x3fe80b62efd84862, - 0xbff756a5c9f56719, 0xbff67715be989c9c, - 0x401114e2729f5bcb, 0x4009edc52e62e88c, - 0x400220d1a7597094, 0xc011eab947799dc2, - 0x400f7f6b404d2e08, 0xbff3e3f4b43bc5a0, - 0xc005b1eb592e1166, 0x3fdf4ad0f5b304fc, - 0xbffae439faa4f375, 0xbff77cb39389f18e, - 0x3fc583a312b17098, 0x3ff729fdc6551fa3, - 0xc0048ca6c03d9645, 0xc016d788452946db, - 0xc003802135422f5b, 0xbff1c4414098ebf8, - 0x3fff4c3a7853b902, 0x3feebdd73fa3e81f, - 0xc00173c4d2b78842, 0xbfe436a5ab95ca7b, - 0xc00422748020565c, 0xbffc1838a8e58b3a, - 0x400303af85ac93b0, 0x3ff63e7557c84a27, - 0x400863c522b50148, 0x4006a89753df3572, - 0xc003fbe8eb5bf5f0, 0xbfd1fbd2532e25d4, - 0xc00eb310f6e863eb, 0xc0044f1ba8212c70, - 0x3ff3120df4787b36, 0x3ff3127edd538bc8, - 0x4000a14fe8853fcc, 0xbff3ad1cfeb98c4f, - 0xc00d7e5aa3bedf9d, 0x3fee11a637a7ac04, - 0xc00996b0110dafa0, 0x40018731c34539f0, - 0xbfea8228afc0b5bc, 0xc00187e6a2e8dfaf, - 0x4004ec28b5ee2fc0, 0x3ffd34531b00432a, - 0x3fccb82d0115ac70, 0x3fe9e2758aca3f09, - 0xbffe64d75ed937d6, 0xbffa28642743d319, - 0x3fc762b984bf8012, 0x3fe185f2bf5ce1c2, - 0xc003dc498b4236bc, 0x3fed0f5f6dc2eb91, - 0xbffa86fadf12eae5, 0x401033b0902e2ea5, - 0xc000940b3ce262e7, 0xbfef8e0581a87afc, - 0x3fe6442302706ff2, 0x3fd73bb4b02b2b58, - 0x400536bb4ef8d328, 0xbffd35bf733ee595, - 0xbff0f7442566040a, 0x3fe99dabb46a9f76, - 0xc0020f86fb73ca34, 0x3fe2331dab1ab146, - 0x3fee2fb7884d88c8, 0xbff6c09b6146855f, - 0x3ff245959d6eb99a, 0x4001019598c1528a, - 0xbffb18c878e34ce6, 0xbfd93d3082f97076, - 0xbffc09c8a9509318, 0xbff48980e18786ab, - 0x4004a26ef1ecc99d, 0xbfe6db287c73e4ca, - 0x3ff493be9fae43af, 0x3fe59cdb71a3a39b, - 0x40008c5cb7ee988f, 0x4004215e91b43522, - 0x3fdd2aa433b31102, 0xbfeed3813acdd236, - 0x4010ab0b641a2da9, 0x401082d1d7136abc, - 0xc0079faf6b004892, 0x3ffa91da96c45f1c, - 0xbfd677c74515b300, 0xbff6246c1e19771a, - 0xc002cb094baccc26, 0x3ff6fd4083265498, - 0xc004fb8dff907b06, 0x3fe0436e8ca190a8, - 0x400a3e5e2f08ed10, 0xbffb26a9b1206c94, - 0x400354f90c57b27b, 0xbfe3db3f1b5dd688, - 0xbff9ab71aa7d5225, 0xc0112fd495366a84, - 0xbfff21f27d4286d7, 0xbff0e6b1944b97e2, - 0xbfb30c5ea6ecfa80, 0xbfff0ae7344def08, - 0xc007d39597144be9, 0x40047f8aed5d8d35, - 0x3ff3ce0c8c5603b4, 0xc003824c5a0df242, - 0x3fd432b88e428efe, 0x3fb8cfa376b60700, - 0xbfeaf2e6e18c6466, 0xbff62e4cf62c5e40, - 0x3ff82c5cf1ea2ece, 0xbff7742baf0389a6, - 0xbf970620ebe336c0, 0x3ffccc15a301499f, - 0xbff667c113066c9c, 0xc0052da18cbbc66e, - 0xc01919eab419ae94, 0xc09661fb2a20188e, - 0xbfb7b3da970dd930, 0x40053a28139331ea, - 0xbff82c5c80063059, 0x4010d98778d5a7f4, - 0x4019ba2497b495d5, 0x3fde08d7b8f7c726, - 0x401490ab34dce535, 0x3fcf83a37414f884, - 0xbffb3aead398314c, 0x400d10274783c08d, - 0x3fcf578594d94b4c, 0xbff65e9d3bca9bbc, - 0x3ff8a424cabb2b08, 0xc001474b4a174436, - 0x3fd0116fa94e654c, 0xbfd7e41921cd13ec, - 0x3fb1609cc3621c60, 0xc002ebe086c20e82, - 0xc00d1e70a94247d7, 0xbfe0237564a10bcf, - 0xc00a951e599655a7, 0xbfe5bd69f9af866d, - 0xbfd6275bf0fddeee, 0x3ff30f79fbdcf4c1, - 0xc0105c9e3012824c, 0x3fe1401da0e60660, - 0xc010caa47d741ab4, 0x40156ece9d480f10, - 0x3fe39a7a5e10f233, 0xc00ecaea6c795df2, - 0x40009d6d1e11b09c, 0xbfe34baa62461281, - 0xbfbe48b3a52d5fa8, 0x3fefbba3fd1361c8, - 0xc00859f443c1c59a, 0xbfa9761e152e4120, - 0xbfd81e60032befe2, 0xc006630a4660c58d, - 0xbfe08370d1977846, 0xc003958a28460bb2, - 0xbfd81ad424841da0, 0x3fd488f5d214f0dc, - 0x3fd086d2dacdf680, 0x3ff8bcd59f0e44c2, - 0xbff6024fa203b872, 0xbfeae14d9e4bddd4, - 0xbfedcbb16b5913f5, 0xc010903859f42b2c, - 0xbfccb93a9fe517f6, 0x40047ef3d3b91fff, - 0xc0047e30072bad8b, 0x3fe0df4b86f92ebd, - 0xbfe1e809b11a6d4a, 0xbfcb20c12c6811cc, - 0x3ffb2f929ac4fb04, 0xbff255a7bd6918fa, - 0x4015a77c2f4de325, 0xbff1a480f359c40d, - 0xbfbdc13c66a27fa0, 0xbfe27e9866d049e7, - 0x3fee57bcf42efd6e, 0xbfe35b39c6833db8, - 0xc0058198b429af75, 0x3ff01bc5b5fe135f, - 0xbfb1ad5c032fa698, 0xc01a65bb4bc37df4, - 0x3ffce58e739df186, 0x3ff2db4a74840f6d, - 0x3fdbbaa2be458740, 0x3fb49c3a0a8529a0, - 0xbff8be7a0fb0669a, 0x401a33cbb284aa52, - 0x3ff9377be59688c6, 0xc0034eabd15c7517, - 0xc00542a0d64b4782, 0x3ffceab106dc55eb, - 0xbfe82379553e5a0a, 0x3feb1532cee7a29d, - 0x400cd9cf4a1af2ad, 0x3fffd43aede8f65a, - 0xbfe597d376ab2876, 0x3fc7c6b87f4ae758, - 0xc002dea269d9546c, 0xbfe9f329105eaece, - 0xc0064e0a31e58abe, 0x401139baecb97608, - 0x3fe464b0b4abf03f, 0x3ff52afafe8a3015, - 0xbfdaf48f04f9b0f0, 0x400087d2a23ec691, - 0xc0117dfb68c7ad5c, 0xbff40b0c968a12bf, - 0x3fe6ff0618bd5b40, 0x3fdb886301e9c6b8, - 0xbfce803889e6bd80, 0x400023e4a5a68245, - 0xbfe202b31792c968, 0xc015c45a1234bfca, - 0xbff7917477aa6421, 0xbfde8864be906086, - 0xbff0860213141d40, 0x40033ab3f37f2692, - 0xbff1dec04d653a33, 0x3ff4fa7e0464d7f9, - 0x3fffdb802a878e78, 0xbfe47e9f456718c6, - 0xbfd28bad68b3eb2c, 0xc00169b18a5f1f6c, - 0xc0064c20b4eb2917, 0x3ff310a69a4b9922, - 0xc00eacca18b1f93e, 0xc01cb3f76653546e, - 0x400ad23d0da8e9a2, 0xbfd2c0f24de2998d, - 0x3ff89ffa4c606de5, 0xc013d16b6713d48c, - 0xbfd939c35ece0f02, 0xbfd009e6eae38a90, - 0x3ffb78fd4fd05d1f, 0x3ff9a5b1fcb87afa, - 0xc00676d9d4808bb2, 0x3fd429bf434c12d8, - 0xc003c19b256268ed, 0xc002a68d84faa5ec, - 0xbff2e17d051a1f61, 0xbffe62cb769316b6, - 0x400b851b8e03a9a8, 0xbfc346f5e7517b98, - 0xbfb497e5d56a4c00, 0xbffab09d92be774a, - 0xbfa072afc3310780, 0xbfe82091616dac54, - 0xbff7808e0b27128e, 0xbff74924e2850aaa, - 0xbfab0ad357fe2a70, 0x401109b336d3cea9, - 0xc00102fbb3dc7ef0, 0xbff956897c2eb7dc, - 0xc0055a966aa89952, 0xc00c6ee47ac4be18, - 0x4002d3fb410b5312, 0xbff38d250906350c, - 0x3ff7b7f05fbe55fb, 0xbff196c9c60c0ac2, - 0x3ff0db4947efb29d, 0xbfe6761cd52536a7, - 0xbfd77e5414c6eca8, 0x40026f31f0e6b73a, - 0x400d2409afeee854, 0xc00a1fd2d4f45082, - 0xc005d134fd85d4d1, 0x3fe262c11105bd18, - 0xc005d93b595e0024, 0xc0011236c61cb786, - 0x400e0f87663b7e21, 0x4008cf46d487bbf0, - 0xc00c4dde13192e21, 0x3ff6767b9af4792c, - 0x40034659308c3b38, 0x3ffd1ec3d07f32e7, - 0xc002cc41cfd288f9, 0x3ffdedc47c776012, - 0xbff5120b37719834, 0x40016d7966af0ae1, - 0x3ffda61c26da16e4, 0xbff7a186901cfdc0, - 0x40139d9db6fdac2c, 0x3fbb8b29700adfe0, - 0xc00e44a8d51efb3e, 0xc0055ea42df96198, - 0xbff827c2531ad155, 0x3ff4a78f0ac8e48e, - 0x3ff4b9f2b0dd8a65, 0x4007054b9bda16ac, - 0x3fc3b04ab3783508, 0xbff52a7f41e5f02f, - 0x3ff1c6a5aa96a4fd, 0x3fe973270d2e9c3a, - 0x3fd0fd182bee47ed, 0x3fe3e5cdb5045f32, - 0xc00862979db84e4a, 0x3f98bf393e98c200, - 0x3ff8c2de9ee370b9, 0x3ff8271673eb44c2, - 0x4004c839c9b59ca0, 0x3fe2677715c07446, - 0x401049facb9376fd, 0x400472696ef65a7f, - 0x40051058768fe01e, 0xbfa0949a665c5160, - 0x3fecd42f7d72d704, 0x3fff1d50657b3db0, - 0xbff5931979854942, 0xbff82d32c1d9a8ce, - 0xbff762ca65a370c3, 0xc009906b61aa3420, - 0x3fcd5520740794dc, 0xc000c722821ff2f7, - 0x4001cd157737471a, 0xc00349a9a4593260, - 0x3ff6035956b1047a, 0x401c0feaf4116c78, - 0x3fcb0a024d0070a8, 0xc01119e8fbdb51b0, - 0xbfe7a0de9a1d8da3, 0x40081cfaa76d42b2, - 0x3fd62873dcf92058, 0xbfd4d6be6cd91b74, - 0x3fb1de3a0ec7c590, 0xc0019a58e285c3c8, - 0x3fe442a63321706e, 0x3ff1b1cd8eebe63a, - 0x400ae2e006e0ed53, 0xbfd4db7bcf74da48, - 0xbfe5e3c216dd74be, 0x3ffe33ab06c3ff02, - 0xbfeb159791d5b967, 0xbfe2e2ccbf12aa75, - 0x4000ec7d34d33ed2, 0x40008b0945c1b947, - 0x400203e9b78bc467, 0xbffcb56fe3a2c08c, - 0x3ffdae5f809541e2, 0xc00a2c80a270b938, - 0x3ffbc302f40718df, 0x3fcbc7fda98b0570, - 0xc0026dc4175ecb25, 0xbfc38aa9b087578c, - 0xbfe2506c6dd1c8ea, 0x3fe8e6ff003d8427, - 0x3fde3e87aff26c4e, 0x3ff89399cd17614b, - 0x3ff23ab1716c00de, 0x3ff796e7c92ca78e, - 0x3ffba046dbbd5e02, 0x3fdded7512b574a2, - 0xbff67ead6423be1c, 0x3fd6426624816890, - 0x400629f709693a12, 0xbff090966fd5eb91, - 0x400c2c8debe3e848, 0xbff20bce91e84d6c, - 0x3fe0dd613923414f, 0xbfd0084eccf2f88c, - 0x3fc35f6f869d79b0, 0x40085187d1c455d4, - 0x40136b17faa6bdea, 0xc0021c5152c0e684, - 0xc003983c809fc8de, 0x3ff044974ab72da3, - 0x4001d122743f6690, 0x3fe9fa395c0309a8, - 0x3ff6492eb5306836, 0xbfc8c5faa8a85a48, - 0x4011d0d17a60d1dc, 0x400733af9e920521, - 0x3ff3f775b6c55b84, 0xc00ba640aaa54f76, - 0xc004b30aa456d6a8, 0x4008ddbaf7325f48, - 0x3fcf4c74fd86f272, 0xbfb9f960496e2920, - 0x4000fd6b353199b4, 0xbfb175557d5b6b48, - 0x3ff425f7229d2291, 0x3fde659463802f58, - 0x4009aa5763466636, 0x3fefd99bc70170e7, - 0xbffc9c37b5485f00, 0xc005a107949e13ea, - 0x3fe3df4066f7a180, 0x3ff999e51e2ad412, - 0xc001b4e31d0d7bf3, 0xbfe2b19db127bf1e, - 0x3fe8a124903b90e2, 0x401106fef3776c67, - 0xbfe57a034c9a89a9, 0x3fe01f7b8461713d, - 0xbff06780104a54eb, 0x4007d167b60dfc48, - 0xc000003e90a48554, 0xbfe8064042af8670, - 0x3fc851e4c324b8e2, 0x40082894841b6891, - 0xc00b558d43462d83, 0xc0100665b20ccba2, - 0xc012078810f0c20c, 0xbfee77a1aae63f6c, - 0x4001ec4959cdaca9, 0xbff734c14c07d420, - 0x3fe05cd9a6bfa968, 0xbfefeb8270cf5a4a, - 0xbff163a6d9840083, 0x400167cd34058338, - 0x3ff222c585d0ff11, 0xbffc4c7f0aba4031, - 0x4006816af5793e83, 0x3ff12b11af621060, - 0x3fe8ed0d2b332722, 0x400d9c8ea07c709b, - 0xbfa2ef928de43010, 0xc00ac12608231380, - 0x3ffc090fdc2af9b4, 0x3ff7880703df86c3, - 0xbfe01defba4f7336, 0x3ff05d3026f424f5, - 0x40048649fbc7384a, 0xbff1674f4f1b3776, - 0xbffd29d1934c2836, 0x3ffb7bca61b26e47, - 0x3fceb132bd9a0188, 0xbfe494ac7c1faae2, - 0xc001ff86435e32dc, 0xbff38c9c835dbbdf, - 0x400e5333e19b73da, 0xc00028a91e073dc7, - 0xbff61eb000207da4, 0xbffd88c416ca5c8a, - 0x3fcd53bb45796168, 0xbff819a53b18f41a, - 0xbff8f3d896b202fc, 0xc00bd4dbeb24ae0f, - 0xbfdd2a8d07cc9290, 0x3ff31bd663bc4024, - 0x3ff2a6d52e5de21e, 0xbfc17c50d593a18c, - 0x3ff8e1082bd4eec8, 0x4007488e336b376f, - 0x3ff2e7edd59c407a, 0xbffff0db58eed508, - 0xc0106fd42fcc827a, 0xc0024e5b577d7cdd, - 0xc0035ced523a36fe, 0xbff2ab07901370d6, - 0x400389d1a6c0c9e6, 0x4004997ef046dc1c, - 0xbff06baea649da22, 0x3fe9ac27ae194326, - 0xbfe12943e71dca52, 0x400be39f077b3b3b, - 0xc003b0c63797eaf2, 0x3fe66d85213eea14, - 0x3ffb6b4b7b5f8662, 0xbfb5f6a357fe1d78, - 0xbfc3528018a72a58, 0xbff116e601cdd05e, - 0x3fe00521c881c440, 0xbfe3408dd4af7752, - 0xbfc6b4fc8ed199a4, 0x400032ec4d0679bd, - 0xbfc1786e3ff7200a, 0xc0129b88afd4dc34, - 0x400cae825b38cbd0, 0x40008ef9166f3be4, - 0xbfec2978ded053ff, 0x3ff5f6f82863f7a4, - 0x3fe05cc6f460117d, 0x3fb51f3bd06515b0, - 0xc0046e868990efe8, 0xbfdceb333ea1d29a, - 0xc0076cf12f1e68cb, 0xbfe2c34b8519a210, - 0xbffcb50e7e8f8c01, 0x3fcbf5fdc706c1a0, - 0x3fc45f2d18114ef0, 0x3fe8c8ad1ce0dc37, - 0x40006ef39be31b14, 0xbffad51c51265122, - 0x3fe71c7cc31b5885, 0xc0001905ddc14447, - 0xbffe5052573daea0, 0xc013f2c60f844754, - 0xbff81e47c076c8bb, 0x3ff2dcd7287dbf8e, - 0xc000956b26554096, 0xc00c71ee9672f8ed, - 0xbfd7908c5103e1c8, 0xbfc051f050628294, - 0xbff53daad39f0dce, 0xbfd5fd87d687d648, - 0x40029ede5f9fd71e, 0x3ffcb6dcd43567dd, - 0xc00c6d86e8e5476c, 0xbfe2ae3b5497778a, - 0xc0037db65d1feb7c, 0x40120fd8f227d99e, - 0xbffb16f24d5ab8b9, 0xbff7bcecb604aa06, - 0x3fdd769535bf5270, 0x4008141fd25555f4, - 0xbff1cf54a8a31038, 0xc0065e2df08a33e5, - 0x3fc21fd71e749f10, 0x3fe20d97e26ad5b6, - 0x40017d95204005b0, 0x3ff8798283ba3f70, - 0x3ff0dc4b3cf58776, 0xc00332abb5bbc0aa, - 0x4003a31242f72006, 0x3ffb65460cbe793a, - 0xbfe11a7148d8ed37, 0xbfe8daf1fab7f8de, - 0x3f91521dbd2c6a40, 0xbfedfba0fb51697e, - 0x40066ca5b97487b7, 0x40105a66d48c151b, - 0xc0003ba4ce933589, 0x40039a33e71ec4f2, - 0xc004c800baf37c3e, 0x3ff77d7601b82ede, - 0xbffa47eb41c1c664, 0xbfe96db2f0015bdd, - 0x4003b9fd6a831b2a, 0xbfe9b9e806dc857d, - 0x3fe02ff77a630db8, 0x400d2631dd40867c, - 0x3ffde0f3ee34fb70, 0x4011cfa450b31af0, - 0x3ff2ed1bd97005b4, 0xbfc435bb40752508, - 0x4014cdb110b0dc35, 0x3ff8ef22a3a604c4, - 0x40109c8d4501d043, 0x3fed1440b654189b, - 0x3fe809741b37e5a5, 0x4007c08e045732e8, - 0x3ff02f97b6472ab6, 0xc0010c45b112b6ca, - 0xbff58d5410203b48, 0x3ff50bc6c1fd426d, - 0x3ff28c9da84b3e75, 0xbfbff74feff8df00, - 0xc0093f4f00954098, 0xbff2a8e3ac86138e, - 0xbfe4573739f50802, 0xbfd770a40baff4e0, - 0x4011bb00c5a3ada3, 0x40041812136f5028, - 0x3ff5dd7f32b22c7c, 0x40009122b503cc47, - 0xbfea6c30a16fc568, 0x40079d4ea2291696, - 0xbfdd675b9b4bce4c, 0x3ffbe6ea427847f6, - 0x400ec1f1c1199dd6, 0x40155561010f0c6a, - 0x3ff05d8dbb4ca41e, 0x3fe2cae7208d5598, - 0xbff3ca4f18a87adc, 0xc009a5ef746e1610, - 0xc0084f3ee0b09ad4, 0xbffa53a954885afc, - 0xbfc64f7ba9d2d303, 0x3fe263f3a80ce87c, - 0xbff3ba65e84dd374, 0xc0056cef34109cd1, - 0xbff160930206399b, 0xbfcb0ceb39ab1eda, - 0xbfddc43fdb8a4bdb, 0xbfd9ba0a92def8d0, - 0x400f61357aab6e2d, 0xbffd148b8eda28ba, - 0xbfc13eae5158c790, 0x3fe73e3d4bc70c58, - 0x400a32bc1ce65e66, 0xc003cfdc88da7664, - 0xc008326b24711172, 0x3fddfd993e435c92, - 0xc00c7df25a3453b9, 0xc00093caade9c8fe, - 0x3fff859d62fce350, 0x40066969b7da1587, - 0x3fe2b0c65c819280, 0xbff96a72ace9ce30, - 0xbfd347d339ed92a6, 0xbff922a69b2da5a2, - 0x3ffe109bcc31c4ec, 0xc00318d488321273, - 0xc00864c1ca7c0d04, 0x3fe80d8a4ef7a6cb, - 0x3fc381de83efdf50, 0x3ff9ca8c2cc87338, - 0xbffd5f1aeaf83ffa, 0x3fed787a36c22e0a, - 0x3fba769aaddba3c0, 0xc00640592ad70d9c, - 0x3ffa2fa886423bb1, 0x3fea033888bd49c4, - 0x3febf3d60da11848, 0xbffa8c6e4fbeb1f4, - 0xbff15597b19d6561, 0x3ffb59361b101580, - 0x3ff9d2ef0108cdf4, 0xbfefcdc6924b8693, - 0xc00df08213f46557, 0x400253c2c748910d, - 0xc004f1aed3f8d04d, 0xc00d6909843837e0, - 0x3fe70957ab445cac, 0x3ff7302fc5847573, - 0x3ffbfa64cb76f90c, 0xbffd341fe862cde2, - 0x3ff8510f99466a51, 0xbff46b93b07783a2, - 0xc00050b31d10b3c2, 0xbff094cf003a1e1c, - 0x3fe1e172206b4660, 0x3ffd5228508a7106, - 0x40067cf1f1e32898, 0xbff20c2db7bbe9e0, - 0x3ff01c88ecbd92da, 0x3fe9986c033d0dc4, - 0x3ffd76e646b8e904, 0xbff26442755f3c7c, - 0xbff90d31621d4c97, 0xbfcd6325f712096c, - 0x3ffcc13efad69d68, 0x40126b4dfcc95c80, - 0x3ff61edb216983be, 0xbffc94300fb5ff1f, - 0xbffc518ffd956f45, 0xbfba8028bd407b24, - 0xc00bbcbd522e42d6, 0xbff1d91e6a45c0d0, - 0xbfe7366d31ad748d, 0xc009b0e83e882952, - 0xbfc3c40e42631390, 0xbff56923c41ba453, - 0x3fe012d2820b8d7e, 0x400c377b28141f3a, - 0x3fe6886f97866905, 0x3ff6ff944aecb9a0, - 0xbff6d1439c00d69e, 0xc000d573ff2986f4, - 0xbfe7fdca9b1d9227, 0xbff5d2374825b8ad, - 0xc004749e8f26675e, 0x3ffd040addb814c6, - 0xbfce533db6e46d78, 0x4008cc2fea798124, - 0x3fe5e11177a950de, 0x3fc43888d3c420fc, - 0x3fad890381f01d50, 0x3fe6483f245625dd, - 0x4002df53bbb167ab, 0x4010183d06f53280, - 0x3ff292ff1f4dc5b7, 0xc011af89e04072dd, - 0xbfe7777a04fce1cc, 0xbfef374ffa4e8180, - 0x3fe8408b5a20584c, 0xbfe544f6da169f20, - 0xbff7cbacc1a5f20d, 0xc0081cabd3e3a8ab, - 0xc00e401ba4b22f8e, 0x400393ca4841a415, - 0xbfe68eb361a0e1d2, 0xbfe2e9fdcb21eec4, - 0x4005aa2315311536, 0x3ff6091dbfaecae8, - 0x3fe5a298cbf9b09d, 0xc001771f570cec2f, - 0x3fe40ad11f8987fb, 0xbfd725a6f2f83c5c, - 0x400109590d366827, 0xc004e234cfeaa7b4, - 0x400624c4127e2c70, 0x3ff92c38cfd7e38b, - 0xc0096a4296ba3efa, 0x400f4fb316eea17d, - 0xbfa20a0540ff88b0, 0xc01071e0185378b6, - 0x3f90cc503bb7f7c0, 0x4005150f03aeab33, - 0x400aa0ad5b455b44, 0x40044f60d8c17254, - 0x40163a04f3fb7a15, 0x3ff279154929601a, - 0x4002eabd95a409ae, 0xc00b1a9a8acc9e50, - 0x400e444d02873ee5, 0x4004ef3fa8a9520e, - 0x3ff04c2f65466c5b, 0x3fb8468af544bc50, - 0xbfe29371d796c474, 0x3f982f1ee104d960, - 0xbff201568eef3b9a, 0x40059234d4568b2d, - 0xc00d1362d2836bcf, 0x3fedb77b61665264, - 0xbfa7357c61f0cc58, 0x3ffe8d08364f5a51, - 0x3ffa8cb61d105a7b, 0x3fc5ef1fa6617eb0, - 0xc0105d12c3834b7e, 0x3fbb9bfa747a0504, - 0xc014717763d3c931, 0x4001766a354d2524, - 0xbffc5e2b8146d2b4, 0xc01c3c94174b66b0, - 0xbffd0155e4e75781, 0xbfc25a63a9473fd0, - 0x40029acc4c9d14ac, 0x400473467551505d, - 0x4007622d4f90b93e, 0x3fef70344e3983a6, - 0xc00d374867a2a70e, 0xbff6985312de3a10, - 0x40056962d8b8d2e6, 0x3fe9266e16361337, - 0x3ff8c05964f04684, 0xbfcc3f2b4f61df1d, - 0xbffd75232d2965e1, 0x3fb5c1f68e182b18, - 0x40015a576d398ced, 0x3fd8ce21554ca7a0, - 0xbfe5a85f22b06424, 0xbfe3b72376efd6e1, - 0x40134180144d6c02, 0xc007ff42182d8a8a, - 0xbfbcd33903d5d85b, 0x3ff1c1c61d5254f2, - 0xbffe6dec3ff8f5ac, 0xbff5af7bc1021b37, - 0x4003a34f767816ef, 0xc006fbc531abc87e, - 0x3ff148cd39dbf03b, 0x40028360973ff25d, - 0x40045548cf3600a4, 0xbfc2fef7cae26788, - 0x3feefa591696c6f8, 0x3ffaf9d395094399, - 0x3fdff40c6e57e3a0, 0xc008ed42d152939c, - 0x3ff34a3a4d66292e, 0xbff4c2c2e3c3cf30, - 0x400475d3afc551f8, 0x400f7262c3296a0c, - 0xbfcd1b4e0f6e3618, 0x3ff52d506ce4eb33, - 0xbfe3df3f13b486bd, 0xbfee92f398e2d38b, - 0x3fefba223b6f5d29, 0x3fccc4afcce18186, - 0x3ffe0d3fb49f4f60, 0xbffa0a62d546d3a1, - 0xc00186ddabe9b36b, 0x400071aea6cda1b6, - 0xc00fb9159a2caf88, 0x401348211fe19ac7, - 0x3fe9e8a5b422d833, 0xbff366a1693577e5, - 0x3ff01cc9b3dc8d55, 0xbff88b2dd040f8d5, - 0x40004b98bd1ffa50, 0xc005cd6cde41b18c, - 0xc01507cc8527f928, 0x3ff33df3075d90b2, - 0xc0075d86ecbb6245, 0xbfe91ded5b1280c2, - 0xc006ee390b59d526, 0xbfa5c6d766d6e300, - 0x3fd885629256e440, 0xc010a5900cd45cce, - 0xbfe4d3fdfeba4d60, 0xbffb028eecee4771, - 0x4012225a6c04b88b, 0x3fc7998c227b265c, - 0xbfeaf8ece18e578a, 0xc00e0266aa03126e, - 0x3fdd95dd87de8efc, 0x3fe9aa7abdc85a96, - 0x3fe4723bafd0e942, 0x4008614bbe86a144, - 0xbff0b4b8a8421539, 0xbfdab82072934e50, - 0x3fd4032447ba21f4, 0x3ffba0ac4342a829, - 0xc000649b847b9dc6, 0x400aa10fd73fe227, - 0x3fe8f382020f5500, 0x3ffd525e02170529, - 0xbfca792efd966500, 0xbffdf35607f24dcc, - 0xbff9f1415f8ad3e6, 0xbfefb751292e98c0, - 0xbffb24ff332c2684, 0xc00ea66ab74581bb, - 0x3fd987f39a043990, 0x40065c43d0387570, - 0x3ff4fc644c2a96e3, 0x400a4bac0fdc4eff, - 0x3fffef98d342031b, 0x3fe3b21c72fb0f08, - 0xc007e37d9ea66601, 0x3ffd11aef9d2d184, - 0x3fe5f9f672c180d4, 0x40112178eab97f92, - 0xbfd44857435ab520, 0xbff7bd866c04ea8e, - 0x4001e31cab7299c7, 0xc014b361f0c44047, - 0xbff7a4db0540d58a, 0xbff769252e32d99c, - 0x400bf23939069f0d, 0x400f7290b638813c, - 0xbfe845857ddb72b9, 0x3fdd1e06230056ac, - 0x400203e989388e92, 0xc00b6a3b30e9fc2c, - 0xbfef656341f8205e, 0xc0015052ab685919, - 0x3f72600241071a00, 0x3fd27d97f9470ec0, - 0xbfe2ba91d19aae8a, 0x3ff99120b5c628a7, - 0x3fe43ad4f5e80810, 0xbffc6be1c57bb04a, - 0xbff85561f61447ee, 0x3ff36de1970d55d4, - 0x3fae209a319d1440, 0xbffa40862eeb06f9, - 0xc007877b9aaf9a34, 0xc0091deeeebaa83e, - 0xc0023d28f777d93f, 0x400aa7e206b9ee04, - 0x3ff2f745002df0ce, 0x40073d67565ed2b4, - 0x3fd7e2957ddda67c, 0xbfea027152e61c03, - 0xc00b8e96d5357cce, 0xbfc067e4555b746a, - 0xbfd8f1b4368093c8, 0xc0088d3b2d803f7a, - 0x4017675df9a0c918, 0x3ff2c72bb04f9203, - 0xc003be764c9fe73d, 0x3ff355cbbdd38497, - 0x400e1a0a4d7b8c0f, 0xbfff8fbe52a68ec8, - 0xbfe20030908b1592, 0x4007b67e4b0a093e, - 0x4008f0605bd46a6e, 0x3ff81dcc0a1e185c, - 0x3ffaf33f5024e0b8, 0x4007e314ea682b5c, - 0x401e3ca8f6833bdc, 0xc00b181e84f56727, - 0xbfccd416f179bfe0, 0xbff4500d27997241, - 0x3fdf9b806ed4cff8, 0xbffa528c85a9e216, - 0x3fea1b3d0f8acaae, 0x3ffe2baaa302496b, - 0xbff9793762c3d809, 0xc000f8c34878b95f, - 0x400848886e7b4af5, 0xbfd7b26180a2047c, - 0x3ff96a608ea89e86, 0x40026069677219d6, - 0xbfff6014e97859aa, 0x3fd16f0ad26ee1c4, - 0xbfe22aa307bd6eb8, 0xbff77ae080deb970, - 0xbff012098ce4ae94, 0xbfd054bbdfbe1c45, - 0x3fff449775e01654, 0x3ffa23d808125126, - 0x3ff957a085989495, 0x3ff2316d54a67084, - 0x3ff0978a15016d34, 0xc01267d7100c3d7c, - 0x3fb96df32a2417c8, 0x3ff97f6cfb435fb6, - 0x3ff7afd4ef8666e4, 0xbffd83b170e44bfd, - 0xc005892039e6fe8e, 0x4001a4a5eca54057, - 0x3fee1e4e5d9a06bc, 0x3fbb3f938a5ad110, - 0x4005da0fbb8d7228, 0x3ff700afe20c3fb6, - 0x40127b81fbe6fe79, 0x40001913b8f9fc83, - 0x3fd73ad2c860dfb0, 0x401284ff7e3545ef, - 0xbff576e892ce72b8, 0x3fc666811fe158a8, - 0xbfba13649181cec8, 0x3fe7407f7f5c832e, - 0x4011dbd8953a6654, 0xbff7e21f825683ad, - 0xbff1ef3328b94bb0, 0x3fdfee3862f912dd, - 0x40026a6f1058a503, 0xbfed91511e9d8af0, - 0xbffc153f0c30420e, 0xc00154b8db8a376f, - 0x4002e1d6c12f2c2f, 0xbfdc5c8b54c79728, - 0xbff1787a84478a28, 0xbfc4191ba49b2ab0, - 0xc007691c05f6465a, 0xbfcb455ff9323508, - 0x3fff6b68072ae8a9, 0x3ff285feb8c8a301, - 0xbfd77a40cf9bb578, 0xbfefcd8d9854e387, - 0x4000385b85b2e59e, 0x4007f6b672210bae, - 0xc002fbdc4a14be42, 0xbff678a2b772f12c, - 0xbff9e392cb6b4cfe, 0xbfe4b61716fb2fe8, - 0x4000cb592c6f6d2e, 0xbff5632432d20f6d, - 0x3fe3866075e2e2a0, 0xc006e194af86213f, - 0xc00afe4f830e1baa, 0xc007dc3368ba0fee, - 0xc010091ef26fa9b8, 0x400b614c6d1a7ebe, - 0xc000433ca4f8e3c4, 0x400d6a12e25c8fe1, - 0xbfe00678260aff84, 0x3fe62648ae3342b8, - 0x3fe5b88837f48936, 0xbff564457664fd12, - 0xbfd755fca92b911c, 0xbff7b860fd1b5576, - 0x3fff8e08f67f4022, 0x3fff181b0cafc88d, - 0xbfdd3d9367e105f4, 0x3ff35ff88f7e22da, - 0x3fff8579262002fa, 0x400b6bf6694075d9, - 0x400abc8c85789f45, 0xbff7d1f88d357478, - 0xc0114be3a6f53768, 0xbfed442305bd6ea8, - 0xbffba5c9159125c7, 0xc018c6c860b7d07a, - 0x400afda24dcfc7aa, 0xbfd68fc2ff4c9b50, - 0x40118102d4e86ef0, 0x400821a4cfac849a, - 0x3fa1941e074a9780, 0x400014cea4c92500, - 0x3ff69074b5c71c45, 0x4005fc29286e6cb6, - 0x3f8554bf50346000, 0xbfe28bc163123f33, - 0x4005f4d5f76a6d88, 0xbfe5ee0487aa437c, - 0xbfe29577e21bcd86, 0x3fd6a6ad64d47238, - 0xc007cc95eb28333c, 0xbfee3572096e6d78, - 0x3febf7da7a995a70, 0xbff7f30ebcbb7340, - 0x400fac93f627f3b3, 0xbfd997c2570d0604, - 0xc001d7650b986c7d, 0x3fe2ff8957cc3d0c, - 0x3ffcc1a63da7457e, 0xbfe439408273b6c7, - 0x3fdd560ddf5e6b90, 0xbfe8e0f9192be27e, - 0xbfe98c93b4319db8, 0xbff16afbe3f66052, - 0xbfea9acbeb60289c, 0xc0123b65225cea34, - 0x4002b351e995ac90, 0x400037b86763f615, - 0xbff260b8b40f526c, 0xbfe92c906731542c, - 0x3feebbf1eee59761, 0xc00075fb7ff1a7b8, - 0xbfc685f05a3b5b5c, 0xbfe82396674ce06c, - 0xc00b602e8f867184, 0x3ffa35ee78b63c48, - 0x3fd04223fcff6756, 0x400e0522a6bed3ea, - 0x400fc20b81dd46fe, 0x3fe2cd3e059b8248, - 0x3febaaa9b821b426, 0xc007f4fa0da3325b, - 0xbffb0eff52923a41, 0xc00a9e0f1f9fae31, - 0xc0012f9896f5c227, 0x3ff5ed5abf2bab76, - 0xc00d05f1b6e8ecb0, 0xc001baa770d64ea1, - 0x400df043fb2de9b2, 0x3fd8427bc4eb3de0, - 0xbfdcc093ff6ecfd8, 0xbfeed321f2a656ac, - 0x4016c6e31c5fec48, 0xbfe88a3bddce98a9, - 0xbff4fdd66d2c0067, 0xbfe1b1ac3c32ab58, - 0x3fcd020868d316e8, 0xbff6c4f3ff2af40f, - 0xc007a33126222c56, 0xbfe1b66d01165696, - 0x400d3b1775a8060e, 0xbff7cc2709ec3ad0, - 0xc00cef0ac7e5ab36, 0xc0011b53baaa2e59, - 0xc00ed0221ef5bc2a, 0x3fc835e650e06698, - 0xc0052da62290baae, 0x3ff94b4864dac0d0, - 0x3ffefab2dd9b9a7e, 0xbff0dee7227b6169, - 0xbff502f4a4efe1d1, 0xc002080d33c1c92a, - 0x3ff92e3d478845a7, 0x3f76087e998f4580, - 0xbfbae1e9d6dd9cb8, 0xc002c476bdaf87e4, - 0xbfeac539f8c4a2a6, 0xc0030992fe9f0a07, - 0x3ffc218a0cf98eaa, 0xc0096faacb761bf4, - 0x3fe6faca6b7c9d6a, 0x3ffad3c12dae3d18, - 0x4001c4bf2265defd, 0x401b1cb919f4341e, - 0x3ffaa3148a688060, 0x40005d048d30cdf1, - 0x3fdac2a1ccad6634, 0xbfe2876ce8c439c8, - 0xbfffdee37812df64, 0xbfffaf2431558a08, - 0x3feec4be66c894a4, 0xbfe02ad28fb5702a, - 0x3ff4f593a5c69248, 0xbff5771731d2aca7, - 0x3fd531fd7503ca70, 0x4002d36335166f6a, - 0xbfe9221701ab4814, 0xbff338a01938ab97, - 0xbfeef934507cbcad, 0x4014fe64d2b9c231, - 0xbfddb5b2277d67e0, 0x3fcfc9349ec82bd0, - 0x3ff5bc34515f181e, 0x3faba1fcb31934c0, - 0x3fd9735153bd0b84, 0x3fff416ef60fe20d, - 0xbffdd359f2acc9b0, 0x3fe95f917d33204e, - 0xbfdff51db7db9a70, 0x4004fbd8c0d39eae, - 0x3fe57433002dc2d0, 0x3fd83f37b9062b64, - 0x3ff5092fb1d9a589, 0xc004bfe652895938, - 0x3ffc4039c1a55309, 0xbff1940f36cfac94, - 0xbff14fe638890f40, 0xbffa7d8e69f6c392, - 0x3ff2c18c9da33b53, 0x3fc2f315925d341c, - 0xbffb28ce6a2e2384, 0x3ffed6ba01d0adc1, - 0xc007cc24b74ec56c, 0xc00576a9c8bb3b0f, - 0x4003d9c263e772bf, 0x4011afd26ae7762a, - 0xc0020b2539d008b6, 0x40068180538fdf24, - 0x3fec5a8099931478, 0xc011289cc564b5a0, - 0xbffbf22cf5843da6, 0xbff3398156b81cb2, - 0x3f788c4afe620800, 0xc000e42ad114c5ec, - 0x3ffd40a3f6cc2b5a, 0x3ff58e64e4c05dda, - 0x3fe78835eb9327c0, 0x400f802a53f15892, - 0xbffdc991022e3948, 0x4004724e2ccb40aa, - 0x401f13e197e2e0d5, 0x3fd365633749458c, - 0x3ff079502cf0b23f, 0x3fd948f29d525158, - 0xc00e182ecf6da4fc, 0xbffe83233bc2308a, - 0x400998092d69deaf, 0x3ffe46f3d1c8cd51, - 0x3fb7cd577c479040, 0x3ff2fee42b9c8776, - 0x3ff10a337b538f0f, 0x3ffa6ebeffc33a9b, - 0x3fe6ad47c3666e2c, 0xbfe297c3b25f886a, - 0x3fe6fddc420371b2, 0x3ffd6a37e5a6e704, - 0x3fe749474078d256, 0x3ffd25a3d2abe212, - 0xc006677d6b8a1942, 0xc007af660e661a43, - 0xbfde8cd71cbd7428, 0xc00e27badae73364, - 0xbfff4c294962ae7a, 0x4010b2013f690458, - 0xc0005045bdc376f6, 0xc0060eeb8cd51b15, - 0xc007fc0584c27049, 0x3fea8bf163fe9d7c, - 0x3fc28b6132a37f58, 0xbfe38f1f6c6382ce, - 0xc0055380a7bb29bb, 0xbff1095f301fda80, - 0xc0020c3a4285d6d9, 0xbfec5129c0f4b7d0, - 0xbffdb556521540bb, 0xc00e20fa73639cdf, - 0xc00dd50bc095a99e, 0x40057d6c5c840680, - 0xbfdb27f342ec0f4a, 0x3fb02f584ee85350, - 0xbff28f292e53cb06, 0x3fded120e237a026, - 0x3feb28894331876c, 0x3fd25b1a02157676, - 0x3fe743bcb12ef634, 0xbfe8233e46392f34, - 0xc006e0b578144686, 0xbff428ad07eb0309, - 0x3ff8b54a56794ce9, 0x400ac7348503ba42, - 0xbffefb57395bf7ee, 0xc005d444f3c240f0, - 0xbfe934ab14b1e1c2, 0xc0073b0171ab9a20, - 0x3fd363bc53c54b6c, 0xc0020a46ac47b25a, - 0xbffa9526347d5b98, 0xbfdfb3c48d72e73e, - 0x400a374261311ea6, 0xbfc0148d33ce9528, - 0x3fbf89023ec82c20, 0x4006cb2cc55b1e78, - 0x3ff61abc649b9fdf, 0x4000a945aad05356, - 0x4004346c7fbf8908, 0xc004d51e5ba0dbf5, - 0x3fe03eba079744fe, 0x3fdbfa3018e493b2, - 0xbfef09bff6da8ee6, 0xc00b34bc476abc8e, - 0x40007077730fa08b, 0xc000841bc7af8e69, - 0x3ff3bc0f983a0056, 0x4001dde601101813, - 0xc01403cbfcfb2112, 0x3ff03dde57d5d7e4, - 0x401281c37ee62718, 0xbff086c8248fc9c3, - 0xbfca7f7ef96fdb00, 0xbfe3a458257f73f7, - 0x4003a867bc3fbc59, 0xc0022a5f20875c28, - 0x3ff0732be35733ae, 0x3ff91ff2e9f8116c, - 0x401039dde8ebec28, 0x401be4168ff0c23f, - 0x3fcb47a1d642c218, 0x3fdd10ccb5df31fc, - 0xc000260679c878be, 0x3fffce7b6afcf99e, - 0x401324bdefb9fa6b, 0xc004bd7f74203d13, - 0xc0078fc291c8b2c3, 0xc007741db040dbaa, - 0xbfe99de69c170514, 0xbff3e65b519eee18, - 0x3ff370e5f5e98528, 0xbfc07e6f3910c4c0, - 0xc010c6e1259834d2, 0x3fcb534e0a530b80, - 0x4001d9f00aad31a5, 0xc00859235ecb9f58, - 0x40085d60c34e93b4, 0x3fbd9c16172d9620, - 0x4010f4785d04db50, 0x3fa0985dd8299d60, - 0x3f936bc91f4bfe20, 0xbfe304206cef3257, - 0x3fe22771e304cc3c, 0xc00e9afbaa037904, - 0xc00df53d237ee114, 0xbff51b0f9e0dfcba, - 0xc00ee785b67c8b95, 0x40193835ec5c2b61, - 0x3fdf62e5779b1c30, 0x3fc8679d6043e590, - 0xbfcba3d5986a6e18, 0xbff2232a4e839dbb, - 0xc00459d3e4bfe4ce, 0xbfbc83ffa0664870, - 0xc005ee489fea39c0, 0xbfc9574515fa2300, - 0xc00cb03d8b812375, 0x3ffaf22ef5381848, - 0xbffefe3cfeb55a00, 0x40027cc108693ef6, - 0x4006458f28dfcc02, 0x3ffbfb75fa02d8e0, - 0x3ff6c906ea0ce739, 0xc01068bed425610f, - 0x3fcc1e1224e1b5c8, 0x3ff87df794582ad2, - 0x3fc395bbf108ecd0, 0xbfed4b3cc3d91b62, - 0xbfface6628297b8b, 0xc004d14bc803d5d8, - 0xbfb6ed8048a6f2d0, 0x4009ac426150446d, - 0xbffd7948004f9e0b, 0x400026459c214abc, - 0x40020bf97fee8a69, 0x3fb7773478f4dc20, - 0xbfe2d1ffe7d2ff0e, 0x3ffe810ae590c8fd, - 0xbffca2178b8662a9, 0xc00d8e5fe05a4efa, - 0x3ff5b0ca1fd9e87e, 0xbfd9828a20a68d1a, - 0xbff641a1504fc86f, 0x3fdc516a3272f59a, - 0xc00343a9bfc20ee1, 0xbff8ea5137e1d1a0, - 0xc0107cfd3988959a, 0xbff2f98f5f9f96cc, - 0xc005b683d2b29b71, 0x4011c759ca69a95c, - 0x3f86450959fc0240, 0x4005b3a4049817e6, - 0xbfdb458018abe8f4, 0x400d2bcc81dd83f9, - 0xbff96496cf523bd6, 0x3fe8cf1a8a64f7bd, - 0x40090208e2a22042, 0x4000294dda7754ba, - 0xc011b6ba0d6e395a, 0xc00e1d537210068e, - 0x3fdb415b805ab4fc, 0xbff60600c90b9c78, - 0xbfc6577d5d6fa7d0, 0xbff95ead8c3379ea, - 0xc00587bb1644bee4, 0x3fc75d61fa049910, - 0x3ff94c31d8c6805c, 0x40040d2daa8cac5e, - 0xbff27e35c7bc5c4a, 0x3ff2a711a78842ae, - 0x3fe5c7fb03f309b4, 0x3ffe3d8063a08f7b, - 0xc00203156b393e1e, 0xbff53def958b4ed5, - 0xbfd86dd287fc455e, 0x3ff71ef1c49c9fe4, - 0xc00554f596c456fa, 0xbfe8a6211e2900f7, - 0x3feb90beb6260733, 0x3fcd83f11696288a, - 0xbff2a75bebddbccd, 0x4003ab48acb6f96f, - 0xbfd75c5926cd7756, 0x3ff7941f6fb35634, - 0x3ff39c54680fb9c4, 0xc00362e38727ff33, - 0xbff331ec56694808, 0xc0100c0ea9b6b7ab, - 0x3ffcd43697af1349, 0xbfe05917e3fc425c, - 0x3fd3e1acab215628, 0x40078c4e7799fba0, - 0xc00748d71e01c64f, 0xbfd47a6df7186522, - 0xbffe160e3022998e, 0xbfe04ebdf4251c46, - 0xbfeaa75d1ff7fc9e, 0x400015e416c51d82, - 0xbfee329760cbdae6, 0x3ff8be8c72b59a93, - 0xbffe341b4d750082, 0xbffbd72b4510de40, - 0xbff55b57f71ca6d0, 0x4000b31edbebd3b6, - 0x3fe45ef25d342c3c, 0xc0049bfe78065380, - 0xc003d211a74304f6, 0xc00591067fe04b77, - 0xc011e46ac7e225ab, 0x3ff9b31cb4df9f5b, - 0xbfca57cca8a81068, 0x401327e02fe0a126, - 0xbff1a49fccde9227, 0xbff518d21f4c9d3e, - 0xbff1f9527c417961, 0xbff4176327fb56f8, - 0x3feab19aaaff2642, 0xbfff3d81de3a342e, - 0x3ff78a15383edd2f, 0xbfe934e755956108, - 0x40008d7004bfac26, 0xc000284eaefeb6d7, - 0x3fe725f89674138a, 0xbff6f434de1a8a5c, - 0x400a6b694a42189e, 0x4008b6658150a931, - 0x3feb703b4198fb6a, 0x3f917c4d47349280, - 0x3ff847b57d737389, 0xc0031f71d9f9abec, - 0xbff71dc3c526d604, 0xbff16c9d43cbf8d6, - 0xc006968e527655d6, 0xbff2cb5f89e10b1b, - 0x3fc7b643a42eb2e0, 0x3ff735226c9067fc, - 0xc0184101b90b1a7c, 0x3ff4ef3a371f3d8a, - 0xc00172ff91bc06b2, 0x3ff08949d500b914, - 0x3ffebae8f91c649c, 0xbff30befb0e0705e, - 0xbff4a97511ad4a6f, 0xbff2a5a4ef3ac078, - 0xbfe8990fc59db175, 0x3ff0e85f6afd4737, - 0x3ff823a501828562, 0x40015d0d43cde7fe, - 0x3fe8410a43ebf24e, 0x4000aa1a1a3e2f54, - 0x3feeccdae0e9d3d6, 0x400fc21b1a41550e, - 0xbffbdea27221db2c, 0xbffe05d285130038, - 0xbfdf6e4890621070, 0x3ffc95d0d9549311, - 0xbfdb5eb5a0912dc8, 0x3ff73abf5102efa8, - 0xbfe3903c659dd8e1, 0x3fca6bd9842f1230, - 0x3fe4073d105b7422, 0x3ff0cef6863e0376, - 0xbfe10902081ed6a0, 0xbff2ea0b79d87752, - 0xbfee38599593b001, 0xbf9984bf868c3640, - 0x40058926f4d5e512, 0xc00401e7aff403c3, - 0x401b98f5dffbed9b, 0xbfabae75fa7c7c40, - 0xc0056cb69ce7b0ea, 0xc00ab95713331d52, - 0x3fefc300e685bfbb, 0xbff0299987f1972a, - 0x3ff6921f41980436, 0xc0001c9f340544f2, - 0xc0037ebb9b4a9c41, 0xbfef27f6e27e79c2, - 0x400f41f1dc702576, 0xbfed42406dca07df, - 0xbfe79838b05ec6ce, 0xbff18c19fa4c0295, - 0xc002858e4ddfeae6, 0x3fbc643d0e3c30a0, - 0xbfe0049b1ee8cd6e, 0xbffb1c3851fbff08, - 0xc009e726b7515f3a, 0x400b7d096a0fbb86, - 0xbfe560078b5246ad, 0xbfe77f410dab043c, - 0x3fd5ae078a6483da, 0x3fec41dfb6d73466, - 0x3ff36949da7ab247, 0x3ff5ca5b12f2e2ca, - 0x40132d4abb038b75, 0x4005042d1f7442ea, - 0xbfe372e2acf980e8, 0xbfb3c32d4a70c3d0, - 0x3fd2061cf1775f64, 0xbff6013dbf2ad297, - 0x3fc4662a33376290, 0x3fda88aeef6cecd2, - 0xbfe975366cb3e9ec, 0xbfc580c4ca6c70b0, - 0xbffe16811f9a44ad, 0xbff3d370899bd5c5, - 0xbff32fc29c9a0540, 0xc002edda96e451c3, - 0x40007260d48257a0, 0xbfe3fbc7ba9d528c, - 0xbfb8e2da64d82b60, 0xbff766a6497d3eb6, - 0x4006ef609c44f3bf, 0xbfc5406547e44c60, - 0x400035c47b9806c5, 0x4011953cc72b1528, - 0xc00b3fb30cda30d8, 0xbffbb158e21caffe, - 0xc010a6df89d9103c, 0xc009ad63fec2e732, - 0x4016f37bccb56d6c, 0xbfe3d96a321a687c, - 0xc011e058bb464180, 0x3fe0bd3edd774b64, - 0xbfef2b7005a5c48f, 0x4003d3b5245d2155, - 0xc00303e0f06b31c7, 0xc001f8e48ca347fe, - 0x40109d17ff9f8168, 0x3fe0a24e86a0f1c6, - 0xbfcd4f5c3eace370, 0x3fff7410fc227639, - 0x400bb4c2b4be802d, 0xc0005d70418367ff, - 0x3f407cd4dcc36c00, 0xbffd18464f324c72, - 0x3ff1c6d1921d7598, 0x3fb1f2cb0b10aea8, - 0x3fdaf7c3c3074cd6, 0x3fc36488aea7e620, - 0x3ff1cc34e55d471a, 0x3fff50419c3f104e, - 0x400f8e5afda708a8, 0xc004eb76a1220f49, - 0x400256cb16ac2fa9, 0xc005079e514a90b6, - 0x3ff67fa07d60b8c6, 0xc010b9abc8f45592, - 0xbfe54d506723c9c2, 0x40050e1d3abec080, - 0x3fece140a0dac398, 0x4004dd0d6db71dde, - 0x40109d6925a8e756, 0xbfe1e6c5856a7754, - 0x40128d90fa8395ae, 0x3fa1b795e7795cc0, - 0x3ffb6b0c55f4d6dc, 0x400525e5551eb692, - 0x40051522aeaaad5f, 0x3fe42bad28785484, - 0xbffe94e496022c73, 0xc01e85b7aa50fb12, - 0xbfd25400a421ba64, 0xbfe27b8a9be2ea6e, - 0xc01a4aa98a00f0f0, 0xc00baa2aad4690cd, - 0xbfdfd07b8c39f1bc, 0xc009490e9bb47856, - 0xbfffafa3ebfd66ae, 0x40111a21a0391b16, - 0xbfba7d0da9a83f88, 0xc00bf260c342b258, - 0xbfc1bad7837b84e4, 0xc00cd93f720d4ca5, - 0xc0038d86ad15e33c, 0x3ff0dadb78c5e2f2, - 0x3ff99742045f15fb, 0x3ffa6da21e33e87d, - 0x3fed19ed596af1f5, 0xbff8422e0416c978, - 0xbfdc58bc32f42310, 0xbfe9e310b67d93c4, - 0xc00b4be2bb8789d2, 0x40124814c3b39e58, - 0xc00f999c01d0eef6, 0xbfee74f2537efcdc, - 0x40171d13879cf17b, 0xbf69126af3754000, - 0x4006fd6b8a8dd765, 0x3fd99753d02c33a0, - 0x3fffd1affcbc5566, 0x3fde761ef5122fa4, - 0xc010b5b200999274, 0x400c06c2050c077a, - 0xc002b23cbeeea10e, 0x3fe838578b229304, - 0x40049b1b07fef22c, 0x4000c34f22edd953, - 0xbfefefbc08fe5ea0, 0x3fdfca826f016328, - 0x401204d32bfb490d, 0xbffe68620846ffb0, - 0xc0056d52e28c193f, 0x400ebef7aaf33c60, - 0x3fe5dd3ad999c67e, 0xbfeb5d883fa6a864, - 0x4016bae93896cb76, 0xbfee77c3aa55930c, - 0x40027d383d669870, 0x40107a42690d0f3b, - 0x3fbf1bcccff79d60, 0x3fea9cc7356bcaaa, - 0x3ffe11b90072109e, 0xbffc640832f30646, - 0x400179cd376d3e3f, 0x3ffb6c0d0fadfb24, - 0x400cdbf59ed30e55, 0xc00199082a4b14d8, - 0x3ffa68bff8afa685, 0xbff7c9159b4cdd29, - 0xbff1434998771d7f, 0xbff32d66947246e5, - 0xc000d2ee4b8cba1e, 0xc000e4d341e8c0f4, - 0xbfeb9c34080d64f8, 0x3ff27fa19b96d866, - 0xbff7f161bc758eff, 0xbfeb955c266392d8, - 0xc00d5f3644af70a9, 0xc00a5ec82641f96d, - 0xbfe08698706e1a3e, 0x3fcdddc7744400c8, - 0xbfc7ace2c632e6a6, 0x3fefb6da00a70b38, - 0x3ffc1a5b74c95312, 0xc002a445b11411b2, - 0x401270465ce6a3ca, 0x40038474cd7e2f83, - 0x400c7b7a7f66fafc, 0x40051b4ffbdff810, - 0xc00025c04d7bbea4, 0xbff54d7cfd3ad0b2, - 0x3fb69d3bce563e30, 0x3fd89d7b5e31a89c, - 0xbff2d2ed3f92a059, 0xbf8cce5e1bb60780, - 0x4000701b875bb364, 0x400122ae28cc8e2f, - 0xbfe2b99fe3ed5bd8, 0x4007a67fa5e0a51e, - 0x3fee36482992225b, 0xbfe0182ecf899dd8, - 0x401022dc652c9966, 0x3fffc28370dd773a, - 0x4009779683aa1581, 0xbf97642f8eeb0500, - 0x3fe66620319d0f30, 0x3ffd528fa49d01f2, - 0xbff13359ea66632f, 0xbff15e5d259dd0d3, - 0xc00fabd376ba7760, 0xbffdf1af849a294c, - 0x3fd7de0f8773f4a6, 0x3fbe3325b92364d0, - 0xbfe886560efb6350, 0xbff74699d9e554cc, - 0xc00da1398261e400, 0x4005bb9227543b1b, - 0xc0097ce33189bfa6, 0x3ff1d9889c6d47e4, - 0xbfa09981e8d95c00, 0x3fff481af71a9a5c, - 0x3ff237e03e299124, 0xc00c2f1db46ce5e4, - 0xbff55102f8e031ab, 0xbff06f285f8ce82b, - 0x400e1cbb56f9a4f6, 0x3ff04de816a39ee0, - 0x401008f5a5cc7ac0, 0x4002565c6b9a9045, - 0x3ff4cca8a48f75fd, 0xbfffce350ae245dc, - 0xbff871576c39af82, 0x3fee7a4f705e2900, - 0x3fd35a02a53ed400, 0x40053dc93b031feb, - 0x3ffb33d7a727b38c, 0x3fd3b5a8aea8c4fc, - 0xbff0aaeb52c4d9f6, 0xbfd794c487d27b98, - 0xbff6ebc32ebe8d4f, 0x3ff98a5c831ff57b, - 0xc0028604b69adef9, 0x3ffaa116d2b15c65, - 0xbff56245b2cfe37b, 0x4010ee61d3786822, - 0x4007315a0bdba7a0, 0xbff111ad1a69925b, - 0xbfe1edc6a22506a0, 0xbff2e56c2523241a, - 0x3fd06c0ef83c9880, 0x3f92d762437399c0, - 0x401863ee28b1960b, 0x3fe9735422517566, - 0xbfef0973b4181258, 0x400e588a16afa236, - 0xbfd52432a007a532, 0xc004cef0c703d725, - 0xbfe0b59432a25fad, 0xbff331a61c7c82ac, - 0xbfed77d31715cfbb, 0xbff50064a2486eac, - 0x3fee47d48fd10bb4, 0x3fd04df76fe6c721, - 0x3fb286bb053a4cb0, 0x3ffac99ddc0d4198, - 0xc0011c7069b4ead9, 0x40017d45f3a34f33, - 0xbfd24416ee7fa320, 0x3ff3814d9a2bf346, - 0xc0040c490784c9de, 0xbff58dd3ed65c13a, - 0xbfced56dc8e093fc, 0xbfe5053e572b4e6c, - 0x3ff7340fa2fb4d17, 0x3ff38b899fa74b1b, - 0x4001600bdc70c820, 0x40085350a730ab52, - 0x3fd188c7ca165774, 0x400e62f96795035c, - 0xbfd12c584f221e30, 0x3fed6bd5c1831e06, - 0x3ff4c7d058fd67f9, 0x3fb23ecf6baa19c0, - 0x3fc3d169ab12bb34, 0xbffc90ecb1147bfc, - 0xbfda8b520bf7f40e, 0xbfeb4d38db8d3406, - 0x40055026e7ca1bd9, 0xbffaa1d6116a0e0a, - 0xc000561882b4f706, 0x3ff3d5b1bbbd8211, - 0x3f43a951f44eb800, 0x3fe42d611bdc90c6, - 0xc0010b8c5a1cd710, 0xc015d5d83629f499, - 0xc00bc60837985e86, 0x3fbfd45139f85600, - 0x3fe71dcddd901dd3, 0xc00c74164bf07103, - 0xbfeb204f009f44ec, 0xc010a30c925d27a6, - 0xc0077bf3a12362fd, 0x3ffe7d2e9f5c5aaa, - 0x400f798149641af7, 0xbfa04c841d6b7b70, - 0x3ffd570da311030c, 0x3f7a0d2950357500, - 0x3fce352ba58f1018, 0xc0009241d45fe3d6, - 0x3fd1bd1d8494ad30, 0xbfd287594aadf95b, - 0xbff98cc71d8252ad, 0x3f3984bccb7f6000, - 0xc007a4b0aa23202c, 0x3fd7d46d7dc8a4ec, - 0x3fe3e7c0ccfb5d86, 0xbfea2de3e80b9bc2, - 0x40051465b338a38c, 0x3fefc08da6a25b26, - 0xbfd6afb92514df94, 0x3ff85f3320cf47df, - 0x4015f23f4687dbd5, 0x3ff80b165a6185aa, - 0xc000db153165b15c, 0xbfe40abc0ce396cb, - 0xbff567367a659284, 0xbff9edf9dc3bb1ce, - 0xbfbae89bf8077732, 0xbff134e099aebe75, - 0xc0065c3cb6bdab14, 0x3fca8b23a049ea68, - 0x3ffeaa86770479f2, 0xc000342834868adc, - 0x3fe2553c68be8466, 0xc00819dd0f4351d4, - 0xbfeee225060720d8, 0xbff868c3905eac94, - 0x4010dd3f346bd9d0, 0xbfe45436ea24b74a, - 0xbff7e616bc22eb42, 0xbff51ea2723f8aaa, - 0x4001f57922f19cfe, 0xbffa382e81a9e75c, - 0xbfe5703d91865f44, 0x401054a3a4117ddc, - 0xbffc6c1d682571cf, 0xbfe338565583e56a, - 0x3fed757b0d2e68d4, 0xbffe3b0bfc2865c8, - 0xbfde7bf394d503ce, 0xc00d0510ae87e1b5, - 0x3fc21ddaf4786568, 0xbfedae7fa37c6718, - 0x3ff88acd99961fd2, 0x400a5e1ea1be1c97, - 0x3fef428dc33a5de6, 0x400fdb4eb768ae5e, - 0x3fe6aade5f06c38c, 0x3ff890797795db7e, - 0xbfc16a8eec92a470, 0x4011afdde79ae650, - 0x400e5c31795557d4, 0xbfe73f98236ac098, - 0x3fe821185dd53d6c, 0x3ff34a793d20c3e8, - 0x4005eaa97c4830ce, 0xbfd557f4a95748e4, - 0x4004423311e2265a, 0x3ffcf1cfe82e95e0, - 0x3ff9710f3ab9db75, 0xbfff57e32353d6f2, - 0x3fd50a72b9e724aa, 0x40129124e7a024a6, - 0xc009e6392954aba4, 0x3fe8125a57d636b3, - 0x3ff758e775370cc0, 0x40044d1825620e93, - 0x3ffb3058e9353e61, 0x3fefda361c4bee54, - 0x3fe56c213988709a, 0x4005e92be9e56a10, - 0x400350f7ecd171ef, 0xbfd8a0a6e6e13810, - 0xbfd08608eb7ec77c, 0xbff27685eb92227b, - 0x3fbd570884c4bd70, 0xbfe2a3c6228cf968, - 0xc0041134bcc904ba, 0x4004396f90603e43, - 0xbff1fba016d6429c, 0x3ff7f84fb5c7033e, - 0xc0092b1ad03a07ea, 0xbfffb892f7805153, - 0xbff087be716081e3, 0xc00632d85318f5f0, - 0xbff57ca7a556ae29, 0x400dbfd63f369763, - 0xc0099c6e775b38d3, 0xc003f260d0c306cb, - 0x4000f0fa0f578b4e, 0xbff0e70e23105223, - 0x3ff052761367abe1, 0xbfdecc1f7b54510c, - 0xbfe9b9ca8dbe9e22, 0xc008f7ab0df21f7e, - 0xc0048045a7a0a38a, 0xbfe826bcbc5fb994, - 0xbfeafa7c96bc410f, 0x40094a28f77ee666, - 0xc011a73b4e9dd637, 0x3ff796e7f5cdcfdb, - 0xbff057b1d4448c54, 0x3fd78087768c83ec, - 0x40153d9416e1adde, 0x3fe32f70104405e0, - 0xbfe37399bb71835d, 0xbffba493ff981d6d, - 0xc00640879a49eae7, 0x400f4a7a7f68f1ab, - 0xbfaa9225b52f2340, 0xbff0da5fcc51edd0, - 0x3fb3135c26b32140, 0xbfe8810006414ee2, - 0xc0056eb6bdcdead5, 0xc00cf7db999bde39, - 0xc001d8f168f38c19, 0x3fca1faeee0b42b8, - 0x3fd58e2c33f1b9ac, 0x40117183f84f1401, - 0xbfe4ac6a1e7d05eb, 0x3ff6ea12832ba974, - 0xbff236c75388ffb6, 0x3ff962c41fee574e, - 0x3fc5ed72aa0bf2ba, 0xc002c1e5d8150d6a, - 0x3f81da0b3ff4b600, 0xbfd4db8ce60a7864, - 0xc0029485307d307a, 0xbff516bf4a41f134, - 0xbfeda4787ca86b90, 0x40012fedfe5a2e8f, - 0xc004fe6cc6034819, 0x3fe30f5270a9c24e, - 0xbff40e75386dda6b, 0xbfe8e7aff416f558, - 0xbfe35e3c939ee460, 0xbff7bd4dc5930c0c, - 0xbfe7d0e9a30ed827, 0x3fd51ceb87f8ab62, - 0xbfd4c327fcc93dfc, 0x4009246480cdaff3, - 0xbfd382fc8dac4e9a, 0x3fb1397854d66660, - 0xbffa86a56795e28d, 0xbfe6c480bacb396a, - 0xc00f313d7fbcc752, 0x400df779f8f9ea67, - 0xbffce2fafa1b235c, 0xc011cffcaa933650, - 0x3fdd1b34a0222754, 0xbffb1d24b5948396, - 0x3f7fca3df0ae1b00, 0x4007682732f2d10f, - 0x400787a2405660c6, 0xbff0d862abf7292a, - 0x3fd6ac4b47818ce7, 0xbff97382cfebeb58, - 0xbfe8b1bac6140d8c, 0xbfc47037bce94710, - 0x3fda96dd1ff2f100, 0xc00e559cd66eb350, - 0xc0098c04d35743d9, 0x3ff795608bd2be98, - 0xbff20eea9e8ec7b8, 0x3ff479d855b26366, - 0xbff7fb12839e339b, 0xc014ef6e70923d4a, - 0x3ff2f1c97e055e99, 0x3ffa4c5bc4992816, - 0x3ff2b8592286655a, 0xbfef51fe72a2d79c, - 0xbff5b5157954c070, 0x4001dd1f45321726, - 0xc0068026798a071d, 0x3fa611392c7f36c0, - 0xc00dd0df9d20459a, 0xbfd796ed7fa84a42, - 0xbff8734b072d7d48, 0x3fe080e9f4b63622, - 0x3fee9438b8f59d24, 0xc004c8cc8b305518, - 0xbfb689dee3c83638, 0x4001c1857ac542a8, - 0x3fe2fd48bab5138a, 0x400028ee50b5a79c, - 0xc0050b9cc16acbc7, 0xbfb6e56e88e75d90, - 0x3ff9653e3907558f, 0x3fed50cd3685dcb1, - 0xbff06850788444ba, 0xbff197f9984acba0, - 0xbfff487940d555ac, 0x3ff47a1e0d133718, - 0xc012a90ed8f70beb, 0xbffc6f1a6907426a, - 0xbfc379bc49e63a18, 0x4000653291346454, - 0xbfd80c1da303667f, 0xc00187ff2fe67619, - 0xc005440726bbddd9, 0x3ff20392587711c0, - 0x3fea477502a22986, 0x4008f382be4244d8, - 0x400f233aaecbd84d, 0xc0080e10999fc7d2, - 0x3ff6095ee03e8605, 0x4000016bbd8334b4, - 0x4010b32fcc60f530, 0x4011e6c605336aff, - 0xbfe1c3ccbfe7429c, 0x40016a9b4c1997e2, - 0x3ffa98798dde57ad, 0x40169fcec0f3298a, - 0x400be3c3943853c1, 0x3ffb03f6ec0e846a, - 0x3ffd3af208da0326, 0xc00315bbc933ad2f, - 0xc0034e9cf16c8a28, 0xbfe9a01445051834, - 0x4003c8b2d43aeb6b, 0x4006ab18c55ce4a8, - 0xc0071f4f877724f4, 0x3fddd4d1e011f630, - 0xbfe825f90e3ce048, 0xbff1af8dcb2ba466, - 0x3fec67a64e50ddbc, 0x3fe570bf89a3220f, - 0x40004ffc57da198e, 0xc010a7349a792407, - 0x3ff5915414f73f79, 0xbffcf8c5d97478fc, - 0x3fce3252ab4fd8d0, 0x4000a60d3476a931, - 0xc003e93af0d044b9, 0x3ff23942f5e538e6, - 0x3fd19b168a569d94, 0x4011b49c4391168d, - 0x3fa9e34b55579f80, 0xc0067b7b4f5b1963, - 0x3ffda4df9dcab512, 0xc0069eddc0a4c518, - 0xbfec1673be869286, 0xbfe77977d2a6614c, - 0xbf86350394ed4900, 0xc001bda467922fd4, - 0xc01385af8eeaa2b4, 0x3ff297e0beef6058, - 0xc007208eddd4a8c6, 0xbfe594c4761aef82, - 0x3ff1620f9cc0b31c, 0xbffda7d747a328a6, - 0xc009dd04526115fb, 0x3fe3f7e07b3b30af, - 0x3fd9665833824504, 0x3ff323ab51877023, - 0x40057ad38f84c8bd, 0x40062649b9de54ce, - 0x3feca54bc81c8927, 0x40019ca8229c0a7a, - 0x4016416e9f08eda6, 0xbff36990ad6ebc8e, - 0x3fe11856aa651ab4, 0x3ff33540c8ae46e1, - 0x400c85edfd3869e4, 0xbfdae110248e31a7, - 0x3fe81378f684c1c6, 0x3fe23f9ed24aa378, - 0x4006328090b9d464, 0x4002333fa5a5aa76, - 0xc00b4aa24aed85b1, 0xc0065518e1573ff2, - 0x3fe4903ae918a665, 0xbffcc6240e5f4014, - 0xbff96ba1de1eefc0, 0xc00a9936062d130f, - 0xbffc2110abd93340, 0xc00174a5792a89e8, - 0x40104bd88c2c9303, 0xbffe43daac6ac4d7, - 0x3ff40981b9895ee8, 0x4003148b63f6bafb, - 0x3ffe2a5e8306315f, 0xc00adeef63f2b01a, - 0x3ff09f442f96d0fa, 0xbfe6da989b22fbf5, - 0xc0006dd46b13d056, 0xbfe6b846ed3583e8, - 0x400189be7a3d2e16, 0xbfcaf04c59f2b768, - 0x3fff53136c33dc3f, 0x4011c3132d2095ac, - 0xc00649129688e980, 0x3fde445f2569ee38, - 0x3ff2d036d31e15ec, 0xbfe8dd14c7819133, - 0xbfe2c72c0f4fdd93, 0xbfb731816ff1c870, - 0xbfee56dfc7283d6c, 0x3fff43d8fd7dd203, - 0xbfffa6b76347fa3a, 0xbffa0af2d51ad34a, - 0x3ffce8624b7af6f7, 0xc0008b02f4444669, - 0xc0024a347e86aad5, 0x40065d28ed2ae23c, - 0x3ff354f0b3020d4c, 0xc000913b05ca0c17, - 0xbfd6cabe7d7bf168, 0xc00555719614eef6, - 0x4003516d1a78f62b, 0x3fed79d3a829df84, - 0xbfbb59fb50c9fc90, 0xc01159fcb37b72ae, - 0xbfbe605f4e375228, 0xbff508ad23e1e555, - 0xc01096feb060054f, 0xbffaa67d040a9c24, - 0xc0026f48b434bec8, 0xbffca86772c17a6b, - 0xbff4ec15feb6d4e1, 0x400a9f44f548e034, - 0xc002bf8a4f996f6e, 0x3ff35ce3f95643b9, - 0xbff9aa55af1671fe, 0x40044b8d35db394b, - 0x4002aee5a936f122, 0xc00671114acd58fc, - 0xbfe9d87d565432c6, 0x4004e761ecaeb9b6, - 0x3fec21e77f0601bb, 0x4008fb30aae622ad, - 0xc00ae90b7d2cb140, 0xbff4424f3366236a, - 0x3febf0eec91f32ec, 0x4003730ba21406b6, - 0xc0099fc8538b65bf, 0x400b7ab1060757b1, - 0xc0021a54d94c8eaf, 0xbfb653ac6b3bc020, - 0x3fee3817ad3a6bf6, 0x3fb9b126c86b76e0, - 0xbfd868bc907c8d60, 0x4002cb4b04452bd4, - 0x3fec6432c090cb4c, 0x3fe50475fa1d7dc4, - 0x400b05314332b5b4, 0x3fce09e86efc5ce8, - 0xc0096c63a3ec35e6, 0x40034fb36aebffd3, - 0x4000116a1364f987, 0xc00436948b9c521e, - 0x3fe67e29c48d5764, 0x400f61e0e055f00c, - 0x3fde9378431e51c0, 0x3fedf5be3104d4a8, - 0xbffd1a03bd26e307, 0x3fd426d17741785e, - 0x3fe2d7ad6d7847a7, 0xbff5042986354feb, - 0xbff397b95cc52106, 0x400d0a22c3259e3d, - 0xc00e235c8d9d0fc8, 0xc00383e2d6a2eeb1, - 0x3fe9fec01b017ea8, 0x3fcf68fbdb90d034, - 0x3fe4c1855eddd5ac, 0xc00b5323c8a1054c, - 0xbff346d970bd875b, 0xbfed660d66335664, - 0xc00645430162e7cf, 0xc001f0a608a7a885, - 0xc005c4f02cef4d01, 0x3ffdd50d4b336248, - 0x400556bc67bf6fc0, 0xbfe60b061b9f3dfd, - 0x3fd2bf53c48b48fa, 0xc007cf172cb6870e, - 0x3ffe2b2952e85fc1, 0x3fe84da28f77ff80, - 0x40118eeab284a0f2, 0xbfe982e510388b26, - 0xbfd291eeafe7b730, 0x3fef9b391cbb202c, - 0xc014f19d93ef83ca, 0xbff94e4a57564906, - 0x40034760e9182870, 0xc004e8b6b824bcb0, - 0x3ff345f066094660, 0x3ffe3bbc53993f33, - 0xbfd2446e61defd9e, 0x4004f0f029589c1c, - 0xc000e607ae23dcd1, 0xc011a5f545865853, - 0xbfd834b85a9afb48, 0x3fe253be4a03aab5, - 0x40147c7fadcf00db, 0x400f5b4ec03686bd, - 0x40086f6ad65bd1be, 0xbff830c7fcc08abf, - 0xc012610077e41eaa, 0xc0033b4b5ba2078b, - 0x3ff9003af5a456bf, 0x3fe621fdde738256, - 0x400182f59a6546d1, 0x3fffe7ba9b01be30, - 0x3fd9ec97cc10a20d, 0x4011b20d464ad092, - 0x40067932de90b8ee, 0x400c781154998282, - 0x3ffddeb93806ed9c, 0xc001f18c66aefd2a, - 0xc009be7aaa2c45a6, 0x4001dd90e0f3ebbf, - 0x400b98da7eb5d54c, 0xc0089ba06b296225, - 0xc012a72d33b5a0e0, 0x3ffda9eddd8ff535, - 0xbfb5fffbb9f04650, 0xbfe46b3c871e93d4, - 0x3fe49c97a2e6b94c, 0x4003041501a6038b, - 0x3fdae80531eb70ea, 0x3ffd5c1dfaf3a95a, - 0xbffcace9db85321d, 0xbfee1c05dd5bba24, - 0xc013afc050d7c082, 0xbff133e3679775d2, - 0x3ff7278a6769d6d1, 0x3fe0067411b62c50, - 0x3faafc20482933e0, 0xbfa00807e55485d0, - 0xbfee047c714f5df2, 0xc00028898cea4808, - 0x4011cf8bc01cb294, 0xc0040a628a369d47, - 0x3fb40fcc534915c0, 0xbfeef2299a467dfe, - 0x3ffb23cc4db70be3, 0xbfd2edc10d20e80a, - 0x3ff55f74083c2cae, 0x3ff706313e291142, - 0xbffdd95b8c03eb83, 0xbff0bf866422ded7, - 0xbff35fff8fe6693f, 0xbff0d2b6073f0900, - 0xbfc7989b67b392d8, 0xbfc38294fa56a358, - 0xbfe7707706a2ff8f, 0x3fa00c2362806178, - 0x3fe1c848f0a6be70, 0xbff249faf556ea3c, - 0x3fd0aa5f1f5a461e, 0x400b1ea04e964547, - 0xbfe4680ae09c9871, 0xc00907f935b020c7, - 0xbfa52fbf33fcc750, 0x40079ce4d1c3f091, - 0x3fe780e487567f14, 0x4002cf9883494678, - 0xbfe24abe0d1a7d0e, 0xc0062fe6a2dc7786, - 0x4016edd3c582a0db, 0x3fe012e4ddc3df22, - 0x3ff1fe13a3566c7a, 0xbffa451d72e90b1a, - 0xc00072a1dc681781, 0x3fec5b0087481eb0, - 0xbfe3e88b122e8288, 0xbff81f8a5ee78f56, - 0xbff4e80277a04e22, 0xbff1cec799999696, - 0xbff04a06ab33ae62, 0xbffe8801cde850f0, - 0x3fe94158f26a411a, 0x3ff949f8fb4cf3e9, - 0xc005e1291117affa, 0x3fce8142364b1ab0, - 0xbffad274d98d7cae, 0xc00c415906c178d3, - 0x4003fd4bb9b86ae0, 0xbfc84d74fc8b0cf0, - 0xbfe423b50e3c2b54, 0x3ff4768306c7a9c8, - 0x3fe00c854b33ceff, 0xbfdcbdb468ec8640, - 0xbfd5ac3b02d129d0, 0x3ff8666f83395b08, - 0xbfd26be1ee94fb60, 0x3fce5dbb5e22c64c, - 0x3ff0edaab568588b, 0x40041943faf05052, - 0xc0026b3d768f855c, 0x3fd0cffa30c6bda8, - 0xc009ae03265a07ec, 0x3fcf75ebb569b000, - 0x3fe15c4abe80e4ba, 0x3fe1d51954bc009c, - 0x3ffd4f5e436ee14e, 0x3fe1754c995cc696, - 0x400239c76513ee05, 0xc008f65634cbdb0d, - 0xc00409f1a5a6957c, 0xbfee85d67c14109e, - 0x3fff512b3db492f4, 0xc0128ad8b1399a8e, - 0x3ffad18d3691adac, 0x3ff40aaacefce8b0, - 0xbff4c501d99fcec5, 0xc0125ea28f2d790e, - 0xbfb33b3756153ec4, 0xbffc34be0d21b682, - 0xc00e793a396a2287, 0xc0061e9f049320ef, - 0x3fec3bac548bf545, 0xc01d34f4167fe8a6, - 0x3fee08595bc7f3f5, 0x400b6cfbb2640c39, - 0x400cf375883db8be, 0x3fde6eb4ec61e066, - 0xc0015bb7feec0928, 0x3fd48e1095c32910, - 0x3ff92cc5072fbe46, 0xc0072b03fe3870c7, - 0xc004a396b4dd31a9, 0x3fefb6d402994fe0, - 0x3ffcb602e30bdaf2, 0x3ffdb2d8d22eacfe, - 0x4000525f1bb5c540, 0xc013bcd16604b3e5, - 0xc0017b5ae20b238d, 0x3fcf856c3a77c0b0, - 0x3ff46701859a8054, 0x3fb9983f852354c0, - 0xbfee311faf1c641a, 0x3ff42c25d41a3119, - 0xc0154479f4f9dc0c, 0xc00da4d749cd5faa, - 0xc016a872d0000c88, 0x400130d178f48472, - 0x3fec4535aed08d6d, 0x3fc5fe5e6b4ce750, - 0xbfd5b0ec83e734c5, 0x3fd099bdfaee80bc, - 0x3ff59b67060d68e6, 0x3fec4bcd106b475c, - 0x400d20b5b52005c2, 0xc002b3932ddfb65d, - 0xc016923930b2f250, 0xc002089008357820, - 0xbff8f8daaa597e64, 0xc00301442950b870, - 0x400962a31d8e060e, 0xc010ec8f4496b536, - 0xc0012829cddba3b7, 0x4004ddab03455e9a, - 0xbfc09795726fbbc8, 0x4008992f5dc37087, - 0xc0037dd8a8c07251, 0x4000b46e64c391d3, - 0x3fc5106ae4f7c332, 0xbfd67aac69f2d736, - 0x3fde89fe46c054f2, 0x3ff389b08d8b4462, - 0xc013fec12ebe8ae4, 0x3f9a341100e54cb0, - 0x3fe0cd072973b232, 0xc00860ef93947bea, - 0x4007c392dceb99f8, 0xc0082c3df5f03e94, - 0x3ff50be95968a9c3, 0x3fe22a8ab7f38bad, - 0xc0072ec6b70b47ff, 0x3fde5c22d70148aa, - 0x3ff3a7188f9664c5, 0xbfd86af1b42735fc, - 0x4004d629daf82492, 0xbfb410e9f697fb58, - 0x3ffcf4d5e43fa605, 0x40046d3cf9dbaa8c, - 0xbff42db362c2c84b, 0x3fee61a90d14feae, - 0x400ec9cc543cfba3, 0xbff85970bbe9a09e, - 0x40041284ab1cbac8, 0x40001767998c98ad, - 0xbff6b8216a2477d0, 0x3ff8b8e3dd2702c9, - 0xbff3fcdf7ffa98ee, 0xbf65b37fcb19eb00, - 0xbffb338dc6813642, 0x4003256e35224c76, - 0xbfdf89d58933ffe4, 0xc019b8ed558181fa, - 0xbfeab7a1d49df785, 0xc000ed4765a110a8, - 0xbffa2ea7ec6938e4, 0x4001dbcda70118b4, - 0xc00b38061040a300, 0x3fbc3504e73a9258, - 0xbff17cef14a9f0ad, 0x4002f9508b20975b, - 0x3fe59251bc58a17c, 0xc0111cefe1f4250e, - 0xbfc6b977b05399d8, 0x400120d4cfc9b920, - 0xc0039b670d8fb3ed, 0xbfdcedbfae01e71c, - 0xc00199b577de8c25, 0xbff3b2b523817e33, - 0xbfe0cebaa5ad314e, 0xbfdb4b383d25992a, - 0xbff3bd79783fcaf8, 0x40194828cd241b5c, - 0xbff365dacd4dbb16, 0x40114cd3fe6454e2, - 0xc000f1e32db8ee08, 0xbff14eeaa9f8b026, - 0xbfff76f3537366ec, 0x401302c853288746, - 0x3fe5efbfc02e2e65, 0xc0097c8c7660cda8, - 0x3fc0fe9df36b6aac, 0x3fd43967c6f2a788, - 0x400a554416c6d926, 0xbfe76195942fff16, - 0x3fafd55fafe11c60, 0xbffe6b3064abee7a, - 0x400583f7155db6c8, 0xc014865c4a7437dd, - 0x4008540a1e4825b4, 0xbfcaa0dfe9843704, - 0xc007f0c1ed5da1dc, 0x3fbb0392e4dd8bd2, - 0xbfb947ddaad03e00, 0x3feab442a90090ca, - 0xc004c710138f91cb, 0xbfd98f13c5a962dc, - 0xbfe9fb5bed9a8e04, 0x3fb1e0c473a14638, - 0xbff03b512fc20e00, 0xc0032499c88fe685, - 0x3febaa40044d30fe, 0x3fc5bf1178ca8920, - 0xc00302e96fa1f92a, 0xc0057c1d2f7c6a5a, - 0x3ff8eafcfdc96117, 0xc0128e6421306a89, - 0xbff274c37327d46c, 0x3ff9e729efd0e1e4, - 0x3feaa7d7a532e4d5, 0x40076b881e6ce598, - 0xc0028d8f1dfae50a, 0x3fe5ac44dcb5b003, - 0xbfd83f036dcb71f2, 0x3fcae8a8973cb2dc, - 0xbff9ccb747e0ed8d, 0xc00e4ef6801f29c0, - 0xbffb6a5eca1d28c2, 0x400cba4b219be8aa, - 0x3fe36e2c8c88de0a, 0x3fde1ff632d8a956, - 0xbffa1c0a61704326, 0x3ff13eef433a3e8d, - 0xc00364f178e3f0c4, 0xbfba110ac40664fc, - 0xbfe148be195b47f8, 0xc00dd16939f0be8c, - 0xbfe23736292d9f1c, 0x40118df716bed3aa, - 0x3ffb6ad2ac82df24, 0xc001195bf0523284, - 0xc0080f73c4403ab8, 0x400249cabdc1122c, - 0xbfccc54732dd90d2, 0x3fc49bc5ca8213c0, - 0xbfecd1eca8ec1b34, 0x4008b088050c3a61, - 0xbfef7e5b5057787b, 0xbfff7a018f42f31e, - 0xc0091ce7db16014d, 0x3ffa2ed7466ac4d1, - 0x400b76e812e1bd6d, 0xc005491131477ce7, - 0x3fef61f37ba9cc71, 0x401308eb3886395c, - 0xc01663ac7671c48b, 0xc00ab96a4437f4bc, - 0xbfe2e079605a5344, 0x3ff25d3875779932, - 0xbff8cc996260aee3, 0xc013321718b33e00, - 0x3fdc291d7b521100, 0xc011423b29306886, - 0xbfc4096ebf9346c0, 0x3ff539e9313a1d3d, - 0xbffe699c88f687b7, 0xbfd029fb541c36e2, - 0x3fcd9708be56ebcc, 0x4001c2ae1c2dde5d, - 0x3ff62c406670d566, 0x3fe7449f8e1f48dc, - 0xbfa4d62d37e629e0, 0xc00350d8b4cc8fff, - 0x3fe3c86ed2d125f6, 0x3fc94a64dda20520, - 0xc006be87b07a59fd, 0xbff94b0d7f87751a, - 0x40020a69cc204e1e, 0x4005ada939cdd089, - 0x3fd6564a7f0b6c96, 0x4004728a3df749e7, - 0xc0119ac3220c869e, 0x4007903163130783, - 0x3ff02870cfefd876, 0x3fc42798a9680070, - 0x3feaa064afd59e28, 0x3ffb1fbbc5929818, - 0xbfc41077dc518094, 0xbfe8906ce6d2eca8, - 0xbff35e039745680a, 0x40118f831e46302c, - 0x3ffb36309d5b1041, 0x3fd5f083177d997d, - 0x3fd2ab0ad2b01dc4, 0xbfe47e0159400380, - 0xc008f7476e5cedf6, 0x3ff959f122a4ba7d, - 0xc0067f950e6c27e4, 0x400b668d290501c9, - 0xc00bd5bd64e016ab, 0x3fe65d9fc475847d, - 0x3ff491565515be56, 0xbfe1f151cccfbfe3, - 0xbff3a9399bc7b1ac, 0xbfb1c1ddf974e9b0, - 0xbfc84e8393021180, 0x4009256706da46e5, - 0x4012538e7282abf8, 0xbf76e570437e5200, - 0xbfe050541564a34a, 0x3ff2c87c83bb5bb8, - 0x3feb29fa3db71850, 0xbfff146c1b03e5fc, - 0x3ffdd1de4f387adf, 0xbffe6d8294dacf79, - 0x400fbeceef5cba50, 0xbfd5aa291de703b8, - 0xbfebd0cb888ad634, 0x3ff1a770f08a09b7, - 0xbff21e7722499bc3, 0xbfda57395b8ffd28, - 0xbfff4821ef83763c, 0x3ff45f428bb8b5f8, - 0x40106384bce3cfde, 0x3ff1c931f3dd315c, - 0xbfebc9891b0a8f54, 0xbff93bbf638f4c0c, - 0xc002f03291fc783d, 0xbfec6033971fa292, - 0xc0036179200b02c7, 0x40076f500e85cf6f, - 0xbfb0d97196343510, 0x3ff0e92fcc59a856, - 0x3ff6c18b3f567aaa, 0x3fe8a0e216346c9a, - 0x3ff66c65aaceb6e4, 0x3ff57860aa175c20, - 0xbff25edc931af12b, 0x3fcb1d3d6c46f848, - 0x400b582fced506f1, 0xbff4b81b3eb465ac, - 0x3fd3d43031513e3a, 0xbfe59cc945dabf1c, - 0xc002314f53d26aaa, 0x3fbf9076f290ffe0, - 0x3fd998c872137b28, 0xbfecbf6b2876bf54, - 0xbfef57df9e5dc4fa, 0x3fe5b22cb88318ea, - 0x4001a323e2ed38f3, 0x3fd680670b1daa98, - 0xc007a40cd69d4d5c, 0xbffe08e1f8ca1d51, - 0x3fbece5b4853efb0, 0x3ff3641d37ba565b, - 0xbfe1abbfd1574db3, 0xbff3e89706076fc3, - 0x3ff56662fe805cf4, 0xbffd58f471c68a6f, - 0xbff1b244646cd1c4, 0x3fd605623ef7b8dc, - 0x4005ee2488eb1c84, 0x40050e1a5a8ba00f, - 0xbffa1bd083056940, 0x400e263f7906ffc2, - 0xbff665c640da2386, 0x3ff4c757ee49a524, - 0x3ff8fea2164b84ae, 0x400a84b5c635d01d, - 0xc00183a045b087d6, 0x3ffdeac3e22299db, - 0xc00692730ffcecac, 0xbffd91a738022f38, - 0xbff99cc3a5b4418f, 0x3ff86326d01194e6, - 0x3fef9afdbf741db8, 0xbffe3534f6a3bf8f, - 0x400682e2bd76c47c, 0x4003686ed5f9cba9, - 0xc00669a76e76779b, 0x4010bf16ab24bee7, - 0x3fe00e7760e3c818, 0xbf987829f10dd1d0, - 0xbfe9b2f7366feb7c, 0x400976f96f8881f2, - 0xbfda757adffe6b73, 0xc012940b9b1ad368, - 0xc003b5e3c7c0e584, 0x3ff0accaba8fcdac, - 0xbfacbfc1818b8490, 0x3fde0fe045ae9828, - 0xbffb252b028fe596, 0xbfee88b92323ffae, - 0x3fe1075b45a83ee0, 0x3ff48ee9bdf4db8b, - 0x40052d33e4c78d2a, 0xbfe2626c97113a28, - 0x3fdf89930ee56f24, 0xc003dabe85a5733a, - 0x3fe2cda845cbbffb, 0xc0033282c7b229e2, - 0xbfebdbca4e587958, 0xbff18729b9f8e938, - 0x400088928017d537, 0xbff884c966c7b438, - 0x4005ad713fadda07, 0xbfefd096fd217412, - 0xbffb110f33f7759b, 0xc00055977cd98d5e, - 0xbff44cbf7e327921, 0xbfee0d8db5a2ba1e, - 0xbfef79b393d03366, 0x3ffabf91e4f6bec8, - 0x3ffec030e9bf8ff6, 0x3fd0d9b7384cd464, - 0x3ff760997c62de4f, 0x3ffbf85450aa0229, - 0x4008f9a1e3435704, 0x4004bfd001fd822b, - 0x3ff01306ac028922, 0x4004b1c0c0c360fc, - 0xc00e8fcdd72e3fd0, 0x4008063a70be00ea, - 0xbfea5a8876314a8e, 0xbfe8d9226d59060c, - 0x40016dad81f71192, 0x4003cb97f7c1e920, - 0xbfda8ed457dad20e, 0x3ff6db91f501ad3c, - 0xbfe1941aaf785c7f, 0xbfebc01597941714, - 0x4004b845ae564fad, 0x400c92c2b5a21b72, - 0xbfe1dd79a5a45698, 0xbfbc1da528a84008, - 0xbfc4f3a08d6a42d0, 0x3ffbf5b53787bfca, - 0x3fec3bd75946c8af, 0x3fed339bfc383b5f, - 0xbff34b76e61f1b92, 0xbff5525093f62c3c, - 0xc0154e70bb9ec914, 0xc004249941ba4098, - 0x4004a4aed0946070, 0xbfe5c75e332c7d4c, - 0xc0115df863daceaf, 0x3fe6112735d53bb4, - 0xbff0611d3fce968a, 0xbff7a383139ed7aa, - 0xc002fc9402d47b04, 0x3fee6408f7318e5c, - 0xbfe0593db251fc6c, 0x400adbd8973ae520, - 0xc00a5810d43fc065, 0xbfeabb403744d92d, - 0x3ff0a696527d0182, 0x400f9020244e4293, - 0xbfd3c98a3d896de8, 0x3feda7434bec4d2d, - 0x3ff900f913ffe67b, 0x3fe143a9f806eb3e, - 0x3ffdb62c951a4aaa, 0x400e0302e367ec62, - 0xbfed99d8063c9bd8, 0x4003bda9b5031ac9, - 0xc00835fd879fa8bc, 0x40032fc180f4f788, - 0xbffe4f50faa31f8b, 0x3fd0b163499cd958, - 0x3fea225d27dbe9a0, 0xc00df763a6a90d98, - 0xc00f7c69f700a15a, 0x400c60845cc01563, - 0xbfe7040b04710a9c, 0x4015ecd0082189e6, - 0xbfed54c6fd82978c, 0x4003ac35eb970723, - 0x3fd3833f929a6858, 0x3fecdf4b501516e8, - 0x40068b32b4b7ebca, 0x3fe98ab6e9649419, - 0x3ff1fb48ffaee7c7, 0xbfc90f0db4ea5780, - 0x400279bf1313b866, 0x3ff14b454b7c2bf8, - 0xbfedacbf4a1fa7ca, 0x4015398b7d45396c, - 0xc00228b9c9e19b12, 0xbfdfefff05fb0eb6, - 0xbffa67b8df715692, 0xbfa72ca34ee1a45c, - 0x4011366a03400771, 0x4008aa09979a35e4, - 0xc000262f5ea147d1, 0xc00f13e97ec767ee, - 0xbff9e1a8c2595672, 0x3fff98c86a9bba2b, - 0xbff57293fd9fe992, 0x3ff82a1ca3551734, - 0xbfe0392c1cdfb202, 0xc01562915231c797, - 0x401369e132b311e8, 0x3fc999a5f2b64d3c, - 0xc0039b47c41b4264, 0xbfed8282cc9695ce, - 0xbfb28c24c6aa7dd4, 0x3fedac5022e75ac8, - 0x400233812847934b, 0xbff57f839b84bb9a, - 0x4000dbb9b6979186, 0x3ffd6e40244957d3, - 0x40065e750bba813c, 0xbfdcd55c74a2e7cf, - 0x3fe5ca6c4852de10, 0x3fe4ef664d5d06f2, - 0x3fe721c51607411a, 0xc00442db2330ce83, - 0xbfe0ddecfdf292d8, 0xc003eba5ff8537ab, - 0x40189c3a6f38d874, 0xbfe8dcef0db7b460, - 0x4008f9bc1bcb3fe0, 0x3ffb94d7c3dcbd18, - 0xc000ee17ba50e8ec, 0x3f9db3c01d52e420, - 0x3ff090a8b20c7eb6, 0xbfb0aab43efb6e7c, - 0x3fe1aa5e8ee490a4, 0x400ed791f84eec92, - 0xc0079db1fca3e092, 0xbff5e26d9f5f9ef9, - 0x3ff44b7a764c3f3c, 0xc0128c7407bf4f2a, - 0xc0039f8336e79613, 0xbfff49ea600e46e4, - 0xbfe734590e568683, 0xbfa9b7f767e80f90, - 0xbff4c05590fec0fb, 0x3fd11d7e9df765fc, - 0xbff0737a00a6a794, 0x3ff2b258fe0cfe91, - 0x4007c52257452d75, 0xc00edd8f4686cf1c, - 0xc00156adc8a30c08, 0x400e3eb459c73ff5, - 0xc0024992cf90918c, 0x40144dd5006c26ca, - 0xbfed99af6a5b50b2, 0xc00b09d2f3c5a4d1, - 0xbfe699ba9dc6d86e, 0xc0093972cd5bce75, - 0xc002f2331d601f94, 0xc00074e87b11b071, - 0x3fb5c468b2031ec0, 0xc002f01954f2e250, - 0xc011a330acb295bf, 0xbffc2211402e705d, - 0x3fd22c430b23c558, 0xbff88f8bb3137eac, - 0xc00b3cd4dbf4351e, 0xc00239a13a1347b4, - 0x3fff3e6d4be41622, 0x40085b8c8af82748, - 0xbfffeb214fd71b36, 0x3fca709d46c66f20, - 0x40109ceddf5faf30, 0x3fe638c66c00e868, - 0xbfdfc2e53e979654, 0xbfef92a02f8ccdfc, - 0xbff0f12380ae376a, 0x3ff794a75b730204, - 0x401626507030330e, 0x3fcc45ec154c1f52, - 0x4000f3a16ff7d9e2, 0xbfe9ff55b754cf62, - 0xbfe87f55f57b2172, 0xc002db31a6f8d3e5, - 0x3fc193d82dfd0de0, 0xc00788478e8dac6c, - 0xbff99325796eed87, 0xbfd4b34f5faaa5fb, - 0xc0011b7d836cbd31, 0xc016bb121bff6bf7, - 0xc01b52934c2a2988, 0xbfe048cc172bb2c1, - 0x401166990e4be567, 0x40065c72f397e67a, - 0xbff24387778bd44f, 0xc005aa4053bc47be, - 0x3ffffd946354054c, 0xc00a88f161694cfa, - 0x4007e490b1e12def, 0xbffd8208120ac558, - 0x3ff370e35aaf2153, 0x3fe02bf5eac367fc, - 0xc0131f1c8713a18c, 0xbfe51ba2517a647e, - 0xbfa438fccdd695e0, 0xbff99f1a757be5c3, - 0x3ff01930101e54fc, 0xc0034e907d2388a4, - 0xc00007551d1cedc9, 0x3fe1e4ed709db0df, - 0xc0136d64af90aced, 0xbfefeba281b46e60, - 0x3fe4350d4bc50140, 0xbff6b8c19065d0a6, - 0x400228b61a8e97da, 0x40068f0e4edecba1, - 0x400d9a640e9f4c08, 0x3ff3ea33d85f10c8, - 0x40160ae771c3b0c8, 0xbff4f0b1398baa90, - 0xbff5a29be7181596, 0x400b294d470bde62, - 0xc00b668c745b95de, 0x3ff00d0383e4cf48, - 0xc002afb79d838ede, 0xbfe3b938ad95f080, - 0x3feecc23b7c3556d, 0x4003a639ccad5e7b, - 0x4010cdd25cbfa64f, 0xbff83e62b8268bcd, - 0x3fa2eaf9e4dd85e0, 0xbfd34cfa5f838acc, - 0x3fb66395657388b8, 0xbfee3672a58c34b2, - 0xc0016385e92806c0, 0xc005c375026f5fbd, - 0xc001c78f9c646112, 0x4001231f741614fc, - 0x3fdaa7c5c704ce14, 0xbffd9dfbec7abd4a, - 0xbff7aec436b03335, 0xbffb7a716ac6aeab, - 0xbfdeb052b4979e34, 0xc0081e86069f14fc, - 0xc00d37190c2c847c, 0x3fea04b9c6f062f0, - 0x4005622b42e72474, 0x40072c55df7bff7b, - 0xbff28da735dd6375, 0xc00625091ba53d62, - 0x401384651851050e, 0x3fe50c5727af09eb, - 0x40027a779664190c, 0x4000a610d362d5f3, - 0x400986a2ca113ef4, 0xc0033e3169bceab8, - 0xc011207c539ba020, 0xbff3cc405cde62fe, - 0xbff341efd043fb3a, 0x3fd653522e2496a0, - 0xbfed0bd8fdf385e6, 0xbfe934aaea87ecf9, - 0xbfed6d2be7138262, 0xc005ae9075c48b53, - 0xc004f3019c82da25, 0x401108e3667aeeb3, - 0xbffb9bcbfb565529, 0xbff64a4bd12bd898, - 0xbff7c9ce5aa4749d, 0x3fef5714d4c88e38, - 0x400045a952c6637d, 0xc00571e29ccc9972, - 0x3fd443a99e611424, 0x4012af84cd093326, - 0xbfc248d2c586c870, 0x3ff3c326c2347f3e, - 0xc00acee1557870cc, 0xbff605e2f26b5870, - 0x4004f74c9ba364d7, 0xbfec9595649f5efc, - 0x3f7b287b363ea200, 0xbff077e8ccbfad20, - 0xc00ab638541a6755, 0xbff5309bd768a702, - 0x3fc33d712465ccdc, 0x3ffe50ede2fb82fb, - 0x3fe409a17529a6e6, 0xc00234b5389828fa, - 0x40010842eb853ac9, 0x4004d7d3ed120353, - 0xbfe7668c3224d56f, 0x3ffade23a106d110, - 0xbff91e4130ed4e48, 0xc0017c11a8e52c4a, - 0x3fe778d1a2efae9a, 0xc003b567d3f2e346, - 0xc00e3b7b8ec5e946, 0xbfde70f1407e60ac, - 0xbff5f75c399cbce8, 0x3fc786e5a4622708, - 0xbfe95e8517e7eb6d, 0xbfe690438fc7fa02, - 0xbfd00ac144659934, 0x3fe5be7513044ed9, - 0xc00dc42e3be4803d, 0x3fddbaddaa13ad40, - 0x3fa16ffed7e30370, 0xc00426e5dfc6244a, - 0x400e7829f2258b91, 0xc01028d6a1d3a984, - 0x3fe5818239784930, 0x3fd384da675a7698, - 0xc001b02d5fd84c09, 0xbfde15980e684862, - 0x3fef30f84da2cd6d, 0xc001af6ee8a6fcbb, - 0xc018521fd133791a, 0x401014de2c47b194, - 0xc001870a1e8951b7, 0x3fd25b167711d98c, - 0xbfe0df9ce9aeb2dc, 0xbfff0bd40cb25ad7, - 0xbfee6826de7da3bd, 0xbfb025dffb3d0e90, - 0x4012b024c2a270c2, 0xbff536f031f732ef, - 0xbfc49fcb6c758800, 0x3ffa84c6150e27a8, - 0x3fbf271b4e5798c0, 0x3ffae0a6b014288e, - 0xbfcc7df549332504, 0xbfe4da80701597b8, - 0xbff928415b8d4070, 0x40023e5c501b6264, - 0x3fe2f6042f6eef86, 0x3ff8862182043f2c, - 0x3fec3ca4fec1e5f0, 0xc0115c1e5385f1e8, - 0xc002a9cc37996828, 0xbfd07c7c64c44a50, - 0x3febabf3b18f012c, 0x3ff7df77a3e7fd21, - 0x3fe07d9020dd908c, 0xbf80ba3423210100, - 0xc0032b57ef2810a7, 0xbfc5a714f2a965ae, - 0x400a6c81b232e68f, 0xbff82a351c51f603, - 0xbfc1b962bb2a8544, 0x3fef1f8c7001efab, - 0xc00b4227b003ca22, 0xbfe3f5146e1b82ee, - 0x4006f2a8efced862, 0xc004e1b32b9743cb, - 0x4012d7ea92e4b154, 0xbffc63c8b91b7e57, - 0x400809cd4c5d7733, 0xbff88ebf753c42df, - 0x3ff07fe94c50e5f0, 0xbfe9175e771b99d8, - 0xc0021c7c15679876, 0xbff16d0d4bc1c6ba, - 0xbffb1821ec4d047c, 0x4000749bcd3a2d80, - 0xbff737afe107f4cf, 0xc009daf0775320ec, - 0xc007f8ea2dbfca0d, 0x4012c4180d400f27, - 0x3ff57193ad2e37d8, 0xbffd80354636e485, - 0xbfefb90f7d624c30, 0xbfe44425c7ea98c0, - 0xbf84cb78d93e7380, 0xbfdc84de3b94527c, - 0x400845f9fd556bc8, 0x3fee2e8b88cbfb01, - 0x400958242d4996e5, 0xbfe3b83a809c59ed, - 0xbff190c2be4a71c1, 0xbfeea1a2a609874e, - 0xc00557ef76a26dec, 0x400e7ce78d9fe955, - 0x40014a2382ef4bf8, 0x4000374d2f480752, - 0xbff29e63df104a50, 0xbfed32d70b612abb, - 0x40123f695f4f30d6, 0x400b87e8a5913985, - 0xbfce60534b0a4834, 0xbfe870a869b85e38, - 0x3fffffe62b62c11d, 0x3ff395f631e588a6, - 0x3ff9708549126b3e, 0xbfbb39ab2f1788d8, - 0x3fe27f0a283831e0, 0xbfd818bfab35daf4, - 0x3feefe6a77742b43, 0xc00ce2a166e27a54, - 0xbfe3a356961dd8ce, 0xc000c28d0792f1b5, - 0x400c4b66681046fe, 0x400b33bb41877ed5, - 0x4008d0cf96d7c0f5, 0xbffd7ae45526ffde, - 0x3ff0d794105ace76, 0x4001a83256a238d6, - 0x40091775926f5462, 0x3ff76e9092a55b8c, - 0x40124a0b5df3b8d8, 0xbfef52e67a7bea42, - 0xbfe8a5d4717c1d20, 0xc00e18ef38f21e0d, - 0xc012123ac9e46ec2, 0xbfe70bc223264419, - 0x3fe43384d6d7041c, 0x40112b7be63434e7, - 0x3fc60b5c1a867848, 0x400010cdf9af31de, - 0xbfe2c4bc52a79fec, 0xbff2297ea0979e84, - 0xbffb82b506dea399, 0xc00486fba854e97f, - 0xc002da6c066e8c34, 0x3ff13c36dafe3e97, - 0x3fcf32a1a1af5924, 0x4001c27780d46105, - 0x3ff8ab0e0d91f3ac, 0x40106c32ce0c0b49, - 0xc0057a96a8e31ec4, 0x401a95f3011787e8, - 0x3ff8749a72d8bd85, 0xc0145e664a17322a, - 0xc008f2e4ec8ce1be, 0xc00b40bf3f6b2b68, - 0xc006765f0d462fd2, 0x400c443013f32e24, - 0x400305176a8e8a4a, 0x400d591849c3167c, - 0xc00e30d159a3bf66, 0xbff3c5cb51535610, - 0xbff7465927f57776, 0xc00f7adf88b967ba, - 0xbffd3f13230e5f41, 0xbfe70239541fa5e2, - 0xbfdd7e4f1e8a6cd8, 0x3ff8a08250b65c64, - 0xc0021bfb5c15d63a, 0x4000f6f7f3671c0a, - 0xbfd246b887dbcc2c, 0x3feaec18bf9d968b, - 0x4014f052ced95b6e, 0x400320f12e6e6252, - 0xc003bd582aac168a, 0xc005254e457d3554, - 0xc0031fca2c61cf84, 0x3ff0e696de8e230c, - 0x4000889358fe6224, 0x4008845deadfc1b0, - 0x401307efd1a1fb26, 0x3ffffcd5841e79cc, - 0x400e0dd48adddafe, 0xbffa40213df2a124, - 0x40099e5bd4243d2c, 0xc00aafe3b1187f83, - 0xbfe424d00bcf8930, 0x40058cc093250f10, - 0x40116af2458b780a, 0xbfef2b9c4141d6fd, - 0xbfd6f0bcc062f9bc, 0x4000ea59bb7e838a, - 0x4003c6da1e2c3cc3, 0x400e42a242c587e5, - 0xc0077162e3a8a091, 0x40127eafdfaa5638, - 0xbfd9652e99d016a4, 0x3ff9ec14705a2871, - 0xbfd09c2258953928, 0x401050dbc5fd7a13, - 0x3fd74b4e63ab76a4, 0xc00482bcdf828b19, - 0xbfed63e7535b0b79, 0xbffea5888cf8d0ad, - 0x3ff5641440ed704a, 0xc0026c2507dcbf2d, - 0xc014bdfeaf31ec56, 0xc0037eabd73aec4e, - 0xc0001a852f8dfe05, 0xbfe9fca33803de5f, - 0xc00059c396389153, 0x3feebadfe450d6b4, - 0xc0121ff3b98f190d, 0x3fc8c53a07d99a4c, - 0xbfeaff3fc5cf8db2, 0x4006c43bed7d4666, - 0xbfc2aa7a1f214790, 0x3ff1715351f6f74e, - 0xc0026c99aede8fa2, 0x4001783ac0c5f4b8, - 0xbffb60244d18e284, 0xc0098e5e81e8fac2, - 0x3feae9a6be6c2771, 0xc0009ea392c94908, - 0x4006c8552eaaab1c, 0x3fdf889b5ce69b41, - 0x40005021120036a1, 0xbfe1969ff2e67fe6, - 0x3ff9c2963bc1e24a, 0x3fdc43acb03199fc, - 0xbfedd366657ff898, 0x3fffeb5d31fa991e, - 0xbfda2a6d3c5a9598, 0xbff3772107aa368a, - 0xbfeefea7c4bc58f6, 0x400041b37070b7c5, - 0xbff22c965a3f9a01, 0xbffb24c3fc2396a8, - 0x3ffe91ab47dbac1e, 0x3ff3bf927c10bab9, - 0x40172967e3697102, 0xbfdca130ac65a972, - 0xc003d0f6b5e0a2e6, 0xc000037c339fd621, - 0xbff6ee892037eb02, 0xbff146ae9535b3e2, - 0x3ffdf1f6df06c9ad, 0x3fd2bd45f5fe1c71, - 0xc00843ded63269da, 0x400cb248cfe78f54, - 0xbffa252ec08346a5, 0xbfcfb63716cec8d0, - 0x400a7cbdb96c247a, 0xbff8cc6950ab8106, - 0x400c2abb115405e8, 0x40160cfaff8c05e1, - 0xc0048356c99334b9, 0x3ff89e776e95f2a2, - 0xbfb43fb7a2d060f4, 0x401060a732c528f1, - 0x40035d6cd41e3880, 0x3ffc0e47a2d944c8, - 0x3ff8b6d7ae57de96, 0xbfe1cc0384e04608, - 0xc0006550f714c1ef, 0xc003445f1af7f12b, - 0x3fe2c8deaa778642, 0x3fd404f46d4cf3e8, - 0x3fd334cbf2b512fe, 0xbff729d1c38d07b2, - 0xc00716e27dd31438, 0x3ff330a6a2c44182, - 0x3ff5b68e6f06e67a, 0x3fc2e401ab365018, - 0xc00c55f946320948, 0x3ff3f46f80f77bec, - 0x4003719cdd565f5c, 0xc002904c4dd2ee20, - 0xbfc8f44bc113ce84, 0xbff52c0a21c48b3c, - 0xc008388f9e90668c, 0x40063af1088b44c9, - 0x40146bcc3ac1bc12, 0x3fd4aacb696338f8, - 0xbfb4ce1b6169cfd0, 0x400b4fd44cacf7b9, - 0xbfe33fdd500dc46a, 0xbfcaf3f11be69da2, - 0x40012b190fccbf77, 0xc0103df2ca0d365e, - 0xbfbf7ad9e3fdbc70, 0x3fe5934ac29988ba, - 0x3ffba77275f00342, 0xbfe0e6d40165b972, - 0xbfbb40345cade1e0, 0x400285ae67bd001b, - 0xbfe9d46d2373e945, 0xbfa6ee04c472ce80, - 0xbff7818743d89177, 0xbfe801be4236495a, - 0x400c0b5a8636ce22, 0xbff5c11d4e1081e5, - 0x3fe773631cd60bab, 0x3fcd679afe241de0, - 0xbfc74c5f8a811727, 0xbfff61341f4bdaa9, - 0xbfeea5a1f89055c6, 0xbff53ea1f7bf9df4, - 0xbfd5e7a01a9324dc, 0xbffee57a05d96f2b, - 0x3ffae03a9c6bbbe0, 0xbff62516062bc42e, - 0x3fe3d8c69c943b28, 0x4007fa1974b1b3fe, - 0xc009ae6eb66f6736, 0x3feacd7210f618a0, - 0x3ff9041aff41e578, 0xbff5028edffcb8fe, - 0xbff4f6a6be1a5915, 0x40105b466f8932f7, - 0x4008973707590ff4, 0xbfe02ea11d6f462e, - 0x3fef07abdef22ae1, 0xbff8883c954883e6, - 0x3fea1f833ec5be94, 0xbfc217bc2da09058, - 0xc00ce314079aa5dd, 0xbfe2c2c394c75284, - 0x3ffdacc92fe6f1e1, 0x4002b9c6f42f81c6, - 0xc00bb92db9a5eca2, 0x401947296b1ff73a, - 0x3ff22e6e0965ce4e, 0x40007b242fb2ffda, - 0xbff0ba13da78bd39, 0x400e3df55c3bba30, - 0x3fd14dbed74e6794, 0x3ffa6b4d88060268, - 0x3fd234bb20c0c8f4, 0x4002b06ec1188d0c, - 0xc005a42e069a7241, 0xbfe96f14308b21dc, - 0x3feae8d525b77927, 0xc0079fb8c8ecf6f2, - 0xc00fd03ee8ab9a44, 0xbff192c976750ec7, - 0x3ffc74407bad6a0d, 0x400ad57cdff0d367, - 0x3fdcc51eb3766ddc, 0xbfe64ca8a9c94924, - 0x3fe675589db08958, 0x3ff537897c04879a, - 0x3fe72628b0d7bd2a, 0xbffe00fd964fd7dc, - 0xc0025b476ec324b3, 0x3fe6ffcf44948909, - 0xc002086e2818eb1c, 0xbfec5bf23b1f394e, - 0xbffdbc611d107c16, 0x3ff052dabfad0d0c, - 0x4004927f660b82ca, 0x400430244bddcd86, - 0xbfa44e9135dd8470, 0xbfc066c556b20c2c, - 0xbff0b9db1e13f298, 0x3fdc258a71c0d22d, - 0x3ff0a12fe8882148, 0xc002886b13ef9b54, - 0x3fee565c41581e13, 0x40008c0e7d66609a, - 0xbfea16d0e43adb3a, 0x3fd4354f3d1449fc, - 0xc0025f165b35bc7a, 0xc005eeea575d8576, - 0x3ff5779a77f5267b, 0xc0051a5c57e0d35a, - 0x401333c231460930, 0xc00875c1c6076045, - 0x3ff708b69ad3589c, 0xbfffacdfd90a053d, - 0xbfc1a84058aa4742, 0x3ff77577019fd9ae, - 0xc00874a34d184ba4, 0x3feae4e06944a787, - 0xbfc4ff8e31ccebd0, 0x40012418fd738bf8, - 0x4004c724c899fb5f, 0x4010f0537291d8af, - 0x3fb1f9a829c2a180, 0x3fffc0fb5776d904, - 0x3fe07c5851f88cf4, 0xbfc19b0fa493614e, - 0x3ffa6dd59f15d4dd, 0xc0187e76819bf17a, - 0x3ffdbeb9f7d25e3c, 0xbfd9d362a3d80dd8, - 0xbfeadad75da286bf, 0xbffcc8bee2a0f4b3, - 0x3fd70b16ec3fbf50, 0xbff824e4f8aa0d1b, - 0x400142cf34a34902, 0xbfed2d103cc25c46, - 0xc00db29ba1eb1527, 0xbfe4f3338db950ba, - 0xc0057b616ce6132f, 0xc009fdde5c1c8236, - 0xc0053303fd3f09fa, 0x3fd9b0037e655724, - 0xbfeea55f6079b426, 0xbff605b201f002bc, - 0x3fe6416ffa84ff2d, 0xc0144271e1832bab, - 0xc00786989b2e7b9a, 0x3ff515871cdbb7a7, - 0x3ff03ca89610e334, 0x3fdc0a5f6d815abc, - 0x40085bb07d074562, 0x0, - 0x3ff03ca89610e332, 0xbfdc0a5f6d815ab8, - 0xc00786989b2e7b98, 0xbff515871cdbb7b6, - 0x3fe6416ffa84ff13, 0x40144271e1832bac, - 0xbfeea55f6079b438, 0x3ff605b201f002b8, - 0xc0053303fd3f09f6, 0xbfd9b0037e65573c, - 0xc0057b616ce61331, 0x4009fdde5c1c8232, - 0xc00db29ba1eb152b, 0x3fe4f3338db950a2, - 0x400142cf34a34903, 0x3fed2d103cc25c40, - 0x3fd70b16ec3fbf40, 0x3ff824e4f8aa0d20, - 0xbfeadad75da286cf, 0x3ffcc8bee2a0f4b8, - 0x3ffdbeb9f7d25e45, 0x3fd9d362a3d80de0, - 0x3ffa6dd59f15d4d9, 0x40187e76819bf179, - 0x3fe07c5851f88ce7, 0x3fc19b0fa4936156, - 0x3fb1f9a829c2a180, 0xbfffc0fb5776d908, - 0x4004c724c899fb64, 0xc010f0537291d8b1, - 0xbfc4ff8e31ccebc8, 0xc0012418fd738bfa, - 0xc00874a34d184ba3, 0xbfeae4e06944a793, - 0xbfc1a84058aa472e, 0xbff77577019fd9ae, - 0x3ff708b69ad3589c, 0x3fffacdfd90a0538, - 0x401333c231460930, 0x400875c1c6076049, - 0x3ff5779a77f52674, 0x40051a5c57e0d35c, - 0xc0025f165b35bc7c, 0x4005eeea575d8574, - 0xbfea16d0e43adb3a, 0xbfd4354f3d1449f4, - 0x3fee565c41581e1c, 0xc0008c0e7d66609a, - 0x3ff0a12fe8882147, 0x4002886b13ef9b57, - 0xbff0b9db1e13f298, 0xbfdc258a71c0d226, - 0xbfa44e9135dd84b0, 0x3fc066c556b20c14, - 0x4004927f660b82cc, 0xc00430244bddcd85, - 0xbffdbc611d107c10, 0xbff052dabfad0d13, - 0xc002086e2818eb1c, 0x3fec5bf23b1f3938, - 0xc0025b476ec324b2, 0xbfe6ffcf44948914, - 0x3fe72628b0d7bd28, 0x3ffe00fd964fd7da, - 0x3fe675589db0895e, 0xbff537897c048798, - 0x3fdcc51eb3766dec, 0x3fe64ca8a9c94924, - 0x3ffc74407bad6a14, 0xc00ad57cdff0d364, - 0xc00fd03ee8ab9a48, 0x3ff192c976750ebc, - 0x3feae8d525b77927, 0x40079fb8c8ecf6f4, - 0xc005a42e069a7240, 0x3fe96f14308b21d6, - 0x3fd234bb20c0c904, 0xc002b06ec1188d0c, - 0x3fd14dbed74e6794, 0xbffa6b4d8806026c, - 0xbff0ba13da78bd34, 0xc00e3df55c3bba30, - 0x3ff22e6e0965ce59, 0xc0007b242fb2ffda, - 0xc00bb92db9a5ec9c, 0xc01947296b1ff73a, - 0x3ffdacc92fe6f1ea, 0xc002b9c6f42f81c2, - 0xc00ce314079aa5dd, 0x3fe2c2c394c7526b, - 0x3fea1f833ec5be94, 0x3fc217bc2da0905e, - 0x3fef07abdef22ad7, 0x3ff8883c954883ee, - 0x4008973707590ff6, 0x3fe02ea11d6f4634, - 0xbff4f6a6be1a590e, 0xc0105b466f8932f9, - 0x3ff9041aff41e57a, 0x3ff5028edffcb8fc, - 0xc009ae6eb66f6734, 0xbfeacd7210f618a8, - 0x3fe3d8c69c943b2c, 0xc007fa1974b1b400, - 0x3ffae03a9c6bbbe5, 0x3ff62516062bc42e, - 0xbfd5e7a01a9324e4, 0x3ffee57a05d96f29, - 0xbfeea5a1f89055c7, 0x3ff53ea1f7bf9df4, - 0xbfc74c5f8a811740, 0x3fff61341f4bdaa6, - 0x3fe773631cd60bac, 0xbfcd679afe241dea, - 0x400c0b5a8636ce23, 0x3ff5c11d4e1081f2, - 0xbff7818743d89170, 0x3fe801be42364953, - 0xbfe9d46d2373e942, 0x3fa6ee04c472ce40, - 0xbfbb40345cade168, 0xc00285ae67bd0019, - 0x3ffba77275f00342, 0x3fe0e6d40165b978, - 0xbfbf7ad9e3fdbc60, 0xbfe5934ac29988c3, - 0x40012b190fccbf73, 0x40103df2ca0d365e, - 0xbfe33fdd500dc475, 0x3fcaf3f11be69dc4, - 0xbfb4ce1b6169cf70, 0xc00b4fd44cacf7b8, - 0x40146bcc3ac1bc12, 0xbfd4aacb696338d4, - 0xc008388f9e906688, 0xc0063af1088b44c9, - 0xbfc8f44bc113ce94, 0x3ff52c0a21c48b3e, - 0x4003719cdd565f5a, 0x4002904c4dd2ee21, - 0xc00c55f94632094a, 0xbff3f46f80f77be6, - 0x3ff5b68e6f06e67b, 0xbfc2e401ab364fe8, - 0xc00716e27dd31437, 0xbff330a6a2c44188, - 0x3fd334cbf2b512d1, 0x3ff729d1c38d07b2, - 0x3fe2c8deaa778642, 0xbfd404f46d4cf3e8, - 0xc0006550f714c1ef, 0x4003445f1af7f128, - 0x3ff8b6d7ae57de92, 0x3fe1cc0384e0460c, - 0x40035d6cd41e3883, 0xbffc0e47a2d944c1, - 0xbfb43fb7a2d060b8, 0xc01060a732c528f2, - 0xc0048356c99334b8, 0xbff89e776e95f2aa, - 0x400c2abb115405f0, 0xc0160cfaff8c05e0, - 0x400a7cbdb96c247b, 0x3ff8cc6950ab8110, - 0xbffa252ec08346aa, 0x3fcfb63716cec898, - 0xc00843ded63269d5, 0xc00cb248cfe78f56, - 0x3ffdf1f6df06c9a8, 0xbfd2bd45f5fe1c61, - 0xbff6ee892037eb0d, 0x3ff146ae9535b3e2, - 0xc003d0f6b5e0a2e2, 0x4000037c339fd623, - 0x40172967e3697102, 0x3fdca130ac65a9a4, - 0x3ffe91ab47dbac29, 0xbff3bf927c10baad, - 0xbff22c965a3f99ff, 0x3ffb24c3fc2396a5, - 0xbfeefea7c4bc58ea, 0xc00041b37070b7c4, - 0xbfda2a6d3c5a959c, 0x3ff3772107aa3689, - 0xbfedd366657ff895, 0xbfffeb5d31fa991e, - 0x3ff9c2963bc1e249, 0xbfdc43acb03199f0, - 0x400050211200369f, 0x3fe1969ff2e67ffd, - 0x4006c8552eaaab1c, 0xbfdf889b5ce69b38, - 0x3feae9a6be6c2777, 0x40009ea392c94908, - 0xbffb60244d18e28c, 0x40098e5e81e8fac1, - 0xc0026c99aede8fa4, 0xc001783ac0c5f4b7, - 0xbfc2aa7a1f214758, 0xbff1715351f6f74d, - 0xbfeaff3fc5cf8da6, 0xc006c43bed7d4663, - 0xc0121ff3b98f190e, 0xbfc8c53a07d99a98, - 0xc00059c396389154, 0xbfeebadfe450d6c4, - 0xc0001a852f8dfe06, 0x3fe9fca33803de52, - 0xc014bdfeaf31ec5a, 0x40037eabd73aec49, - 0x3ff5641440ed704c, 0x40026c2507dcbf32, - 0xbfed63e7535b0b74, 0x3ffea5888cf8d0ad, - 0x3fd74b4e63ab769c, 0x400482bcdf828b17, - 0xbfd09c2258953900, 0xc01050dbc5fd7a15, - 0xbfd9652e99d01694, 0xbff9ec14705a287e, - 0xc0077162e3a8a08b, 0xc0127eafdfaa5639, - 0x4003c6da1e2c3cc4, 0xc00e42a242c587e2, - 0xbfd6f0bcc062f9a6, 0xc000ea59bb7e8389, - 0x40116af2458b780a, 0x3fef2b9c4141d71c, - 0xbfe424d00bcf8915, 0xc0058cc093250f13, - 0x40099e5bd4243d2b, 0x400aafe3b1187f88, - 0x400e0dd48adddafc, 0x3ffa40213df2a136, - 0x401307efd1a1fb26, 0xbffffcd5841e79ba, - 0x4000889358fe6226, 0xc008845deadfc1b0, - 0xc0031fca2c61cf84, 0xbff0e696de8e230d, - 0xc003bd582aac1689, 0x4005254e457d3550, - 0x4014f052ced95b6e, 0xc00320f12e6e624c, - 0xbfd246b887dbcc0d, 0xbfeaec18bf9d9699, - 0xc0021bfb5c15d638, 0xc000f6f7f3671c0f, - 0xbfdd7e4f1e8a6cbc, 0xbff8a08250b65c58, - 0xbffd3f13230e5f48, 0x3fe70239541fa5e1, - 0xbff7465927f5777c, 0x400f7adf88b967b6, - 0xc00e30d159a3bf65, 0x3ff3c5cb51535607, - 0x400305176a8e8a4f, 0xc00d591849c3167c, - 0xc006765f0d462fce, 0xc00c443013f32e27, - 0xc008f2e4ec8ce1c2, 0x400b40bf3f6b2b64, - 0x3ff8749a72d8bd78, 0x40145e664a173229, - 0xc0057a96a8e31ebc, 0xc01a95f3011787ea, - 0x3ff8ab0e0d91f3af, 0xc0106c32ce0c0b46, - 0x3fcf32a1a1af5950, 0xc001c27780d46104, - 0xc002da6c066e8c33, 0xbff13c36dafe3e97, - 0xbffb82b506dea39d, 0x400486fba854e981, - 0xbfe2c4bc52a79ffc, 0x3ff2297ea0979e80, - 0x3fc60b5c1a867860, 0xc00010cdf9af31e0, - 0x3fe43384d6d7042a, 0xc0112b7be63434e4, - 0xc012123ac9e46ec4, 0x3fe70bc2232643f2, - 0xbfe8a5d4717c1d2c, 0x400e18ef38f21e08, - 0x40124a0b5df3b8d6, 0x3fef52e67a7bea54, - 0x40091775926f5466, 0xbff76e9092a55b90, - 0x3ff0d794105ace7b, 0xc001a83256a238d4, - 0x4008d0cf96d7c0f3, 0x3ffd7ae45526ffe4, - 0x400c4b6668104702, 0xc00b33bb41877ed4, - 0xbfe3a356961dd8cd, 0x4000c28d0792f1b4, - 0x3feefe6a77742b28, 0x400ce2a166e27a53, - 0x3fe27f0a283831d8, 0x3fd818bfab35db08, - 0x3ff9708549126b3d, 0x3fbb39ab2f178950, - 0x3fffffe62b62c122, 0xbff395f631e588a0, - 0xbfce60534b0a4852, 0x3fe870a869b85e38, - 0x40123f695f4f30d6, 0xc00b87e8a5913980, - 0xbff29e63df104a54, 0x3fed32d70b612ab6, - 0x40014a2382ef4bfb, 0xc000374d2f48074d, - 0xc00557ef76a26de6, 0xc00e7ce78d9fe956, - 0xbff190c2be4a71c0, 0x3feea1a2a609874c, - 0x400958242d4996e4, 0x3fe3b83a809c59fd, - 0x400845f9fd556bc6, 0xbfee2e8b88cbfafc, - 0xbf84cb78d93e7600, 0x3fdc84de3b945274, - 0xbfefb90f7d624c3a, 0x3fe44425c7ea98c0, - 0x3ff57193ad2e37d2, 0x3ffd80354636e47c, - 0xc007f8ea2dbfca0c, 0xc012c4180d400f2b, - 0xbff737afe107f4da, 0x4009daf0775320ee, - 0xbffb1821ec4d047c, 0xc000749bcd3a2d80, - 0xc0021c7c1567987a, 0x3ff16d0d4bc1c6af, - 0x3ff07fe94c50e5ee, 0x3fe9175e771b99e0, - 0x400809cd4c5d7732, 0x3ff88ebf753c42e4, - 0x4012d7ea92e4b154, 0x3ffc63c8b91b7e6e, - 0x4006f2a8efced85d, 0x4004e1b32b9743d0, - 0xc00b4227b003ca22, 0x3fe3f5146e1b82d9, - 0xbfc1b962bb2a854e, 0xbfef1f8c7001efb6, - 0x400a6c81b232e68a, 0x3ff82a351c51f60e, - 0xc0032b57ef2810a6, 0x3fc5a714f2a9658a, - 0x3fe07d9020dd9094, 0x3f80ba342320ff00, - 0x3febabf3b18f012f, 0xbff7df77a3e7fd24, - 0xc002a9cc37996828, 0x3fd07c7c64c44a30, - 0x3fec3ca4fec1e5e4, 0x40115c1e5385f1ea, - 0x3fe2f6042f6eef9a, 0xbff8862182043f26, - 0xbff928415b8d406f, 0xc0023e5c501b6266, - 0xbfcc7df5493324e0, 0x3fe4da80701597bc, - 0x3fbf271b4e579870, 0xbffae0a6b0142889, - 0xbfc49fcb6c7587d0, 0xbffa84c6150e27ad, - 0x4012b024c2a270c0, 0x3ff536f031f732f8, - 0xbfee6826de7da3b7, 0x3fb025dffb3d0e60, - 0xbfe0df9ce9aeb2ef, 0x3fff0bd40cb25ad6, - 0xc001870a1e8951b8, 0xbfd25b167711d99c, - 0xc018521fd133791a, 0xc01014de2c47b198, - 0x3fef30f84da2cd63, 0x4001af6ee8a6fcbe, - 0xc001b02d5fd84c09, 0x3fde15980e684862, - 0x3fe581823978492e, 0xbfd384da675a7690, - 0x400e7829f2258b8e, 0x401028d6a1d3a986, - 0x3fa16ffed7e30270, 0x400426e5dfc6244e, - 0xc00dc42e3be4803d, 0xbfddbaddaa13ad7c, - 0xbfd00ac14465992b, 0xbfe5be7513044ee0, - 0xbfe95e8517e7eb76, 0x3fe690438fc7fa04, - 0xbff5f75c399cbcee, 0xbfc786e5a4622738, - 0xc00e3b7b8ec5e947, 0x3fde70f1407e6088, - 0x3fe778d1a2efae8c, 0x4003b567d3f2e348, - 0xbff91e4130ed4e4d, 0x40017c11a8e52c46, - 0xbfe7668c3224d562, 0xbffade23a106d114, - 0x40010842eb853aca, 0xc004d7d3ed120352, - 0x3fe409a17529a6de, 0x400234b5389828fc, - 0x3fc33d712465cd20, 0xbffe50ede2fb82f9, - 0xc00ab638541a6752, 0x3ff5309bd768a6fe, - 0x3f7b287b363ea200, 0x3ff077e8ccbfad1d, - 0x4004f74c9ba364d7, 0x3fec9595649f5f06, - 0xc00acee1557870cc, 0x3ff605e2f26b5868, - 0xbfc248d2c586c858, 0xbff3c326c2347f40, - 0x3fd443a99e61145c, 0xc012af84cd093326, - 0x400045a952c6637c, 0x400571e29ccc9974, - 0xbff7c9ce5aa47498, 0xbfef5714d4c88e4e, - 0xbffb9bcbfb56552b, 0x3ff64a4bd12bd88e, - 0xc004f3019c82da1e, 0xc01108e3667aeeb5, - 0xbfed6d2be7138262, 0x4005ae9075c48b52, - 0xbfed0bd8fdf385df, 0x3fe934aaea87ecf8, - 0xbff341efd043fb3d, 0xbfd653522e249694, - 0xc011207c539ba020, 0x3ff3cc405cde62f9, - 0x400986a2ca113ef4, 0x40033e3169bceab9, - 0x40027a7796641911, 0xc000a610d362d5ec, - 0x401384651851050c, 0xbfe50c5727af09d8, - 0xbff28da735dd637c, 0x400625091ba53d62, - 0x4005622b42e72474, 0xc0072c55df7bff7a, - 0xc00d37190c2c847a, 0xbfea04b9c6f06300, - 0xbfdeb052b4979e58, 0x40081e86069f14fb, - 0xbff7aec436b03338, 0x3ffb7a716ac6aea8, - 0x3fdaa7c5c704ce0c, 0x3ffd9dfbec7abd47, - 0xc001c78f9c646110, 0xc001231f741614fe, - 0xc0016385e92806c0, 0x4005c375026f5fba, - 0x3fb66395657388f4, 0x3fee3672a58c34a9, - 0x3fa2eaf9e4dd8640, 0x3fd34cfa5f838ade, - 0x4010cdd25cbfa64f, 0x3ff83e62b8268bd7, - 0x3feecc23b7c35580, 0xc003a639ccad5e7a, - 0xc002afb79d838ede, 0x3fe3b938ad95f077, - 0xc00b668c745b95de, 0xbff00d0383e4cf4c, - 0xbff5a29be7181591, 0xc00b294d470bde61, - 0x40160ae771c3b0c6, 0x3ff4f0b1398baaa2, - 0x400d9a640e9f4c0c, 0xbff3ea33d85f10c4, - 0x400228b61a8e97dc, 0xc0068f0e4edecba0, - 0x3fe4350d4bc50140, 0x3ff6b8c19065d0a2, - 0xc0136d64af90acec, 0x3fefeba281b46e3e, - 0xc00007551d1cedc5, 0xbfe1e4ed709db0e9, - 0x3ff01930101e54f8, 0x40034e907d2388a1, - 0xbfa438fccdd69680, 0x3ff99f1a757be5c4, - 0xc0131f1c8713a18c, 0x3fe51ba2517a6460, - 0x3ff370e35aaf2151, 0xbfe02bf5eac367ee, - 0x4007e490b1e12df0, 0x3ffd8208120ac560, - 0x3ffffd946354054b, 0x400a88f161694cfc, - 0xbff24387778bd457, 0x4005aa4053bc47bb, - 0x401166990e4be568, 0xc0065c72f397e673, - 0xc01b52934c2a2988, 0x3fe048cc172bb2a8, - 0xc0011b7d836cbd39, 0x4016bb121bff6bf8, - 0xbff99325796eed86, 0x3fd4b34f5faaa5c9, - 0x3fc193d82dfd0da8, 0x400788478e8dac6b, - 0xbfe87f55f57b2176, 0x4002db31a6f8d3e4, - 0x4000f3a16ff7d9e2, 0x3fe9ff55b754cf68, - 0x401626507030330e, 0xbfcc45ec154c1ee8, - 0xbff0f12380ae3772, 0xbff794a75b730207, - 0xbfdfc2e53e97965b, 0x3fef92a02f8ccdf2, - 0x40109ceddf5faf31, 0xbfe638c66c00e84e, - 0xbfffeb214fd71b36, 0xbfca709d46c66f50, - 0x3fff3e6d4be41627, 0xc0085b8c8af82747, - 0xc00b3cd4dbf43522, 0x400239a13a1347b2, - 0x3fd22c430b23c560, 0x3ff88f8bb3137ead, - 0xc011a330acb295be, 0x3ffc2211402e7052, - 0x3fb5c468b2031dc0, 0x4002f01954f2e250, - 0xc002f2331d601f96, 0x400074e87b11b070, - 0xbfe699ba9dc6d87e, 0x40093972cd5bce71, - 0xbfed99af6a5b50ae, 0x400b09d2f3c5a4cf, - 0xc0024992cf909186, 0xc0144dd5006c26cc, - 0xc00156adc8a30c06, 0xc00e3eb459c73ff5, - 0x4007c52257452d73, 0x400edd8f4686cf20, - 0xbff0737a00a6a78a, 0xbff2b258fe0cfe94, - 0xbff4c05590fec0f9, 0xbfd11d7e9df76620, - 0xbfe734590e568687, 0x3fa9b7f767e80e50, - 0xc0039f8336e79610, 0x3fff49ea600e46da, - 0x3ff44b7a764c3f32, 0x40128c7407bf4f2a, - 0xc0079db1fca3e094, 0x3ff5e26d9f5f9ef1, - 0x3fe1aa5e8ee490a8, 0xc00ed791f84eec94, - 0x3ff090a8b20c7eb5, 0x3fb0aab43efb6e34, - 0xc000ee17ba50e8eb, 0xbf9db3c01d52e500, - 0x4008f9bc1bcb3fe4, 0xbffb94d7c3dcbd14, - 0x40189c3a6f38d874, 0x3fe8dcef0db7b478, - 0xbfe0ddecfdf292ec, 0x4003eba5ff8537ac, - 0x3fe721c516074114, 0x400442db2330ce85, - 0x3fe5ca6c4852de17, 0xbfe4ef664d5d06e7, - 0x40065e750bba813e, 0x3fdcd55c74a2e7df, - 0x4000dbb9b6979188, 0xbffd6e40244957cc, - 0x400233812847934a, 0x3ff57f839b84bba0, - 0xbfb28c24c6aa7d90, 0xbfedac5022e75aca, - 0xc0039b47c41b4262, 0x3fed8282cc9695c8, - 0x401369e132b311e7, 0xbfc999a5f2b64cce, - 0xbfe0392c1cdfb21d, 0x401562915231c795, - 0xbff57293fd9fe992, 0xbff82a1ca3551739, - 0xbff9e1a8c259566b, 0xbfff98c86a9bba2e, - 0xc000262f5ea147d4, 0x400f13e97ec767ea, - 0x4011366a03400773, 0xc008aa09979a35e0, - 0xbffa67b8df715696, 0x3fa72ca34ee1a404, - 0xc00228b9c9e19b15, 0x3fdfefff05fb0e9c, - 0xbfedacbf4a1fa7b2, 0xc015398b7d45396c, - 0x400279bf1313b866, 0xbff14b454b7c2bfb, - 0x3ff1fb48ffaee7c2, 0x3fc90f0db4ea5798, - 0x40068b32b4b7ebca, 0xbfe98ab6e964940a, - 0x3fd3833f929a6874, 0xbfecdf4b501516e5, - 0xbfed54c6fd82978a, 0xc003ac35eb970725, - 0xbfe7040b04710a83, 0xc015ecd0082189e6, - 0xc00f7c69f700a158, 0xc00c60845cc01568, - 0x3fea225d27dbe98c, 0x400df763a6a90d98, - 0xbffe4f50faa31f86, 0xbfd0b163499cd974, - 0xc00835fd879fa8ba, 0xc0032fc180f4f786, - 0xbfed99d8063c9bce, 0xc003bda9b5031acd, - 0x3ffdb62c951a4ab8, 0xc00e0302e367ec62, - 0x3ff900f913ffe67b, 0xbfe143a9f806eb44, - 0xbfd3c98a3d896df6, 0xbfeda7434bec4d32, - 0x3ff0a696527d0191, 0xc00f9020244e4291, - 0xc00a5810d43fc06a, 0x3feabb403744d928, - 0xbfe0593db251fc54, 0xc00adbd8973ae520, - 0xc002fc9402d47b02, 0xbfee6408f7318e5b, - 0xbff0611d3fce968c, 0x3ff7a383139ed7a7, - 0xc0115df863daceae, 0xbfe6112735d53bc8, - 0x4004a4aed094606c, 0x3fe5c75e332c7d64, - 0xc0154e70bb9ec916, 0x4004249941ba4097, - 0xbff34b76e61f1b90, 0x3ff5525093f62c38, - 0x3fec3bd75946c8c0, 0xbfed339bfc383b58, - 0xbfc4f3a08d6a42a0, 0xbffbf5b53787bfcc, - 0xbfe1dd79a5a45696, 0x3fbc1da528a8404c, - 0x4004b845ae564fb4, 0xc00c92c2b5a21b70, - 0xbfe1941aaf785c75, 0x3febc01597941714, - 0xbfda8ed457dad1fa, 0xbff6db91f501ad3d, - 0x40016dad81f71195, 0xc003cb97f7c1e91e, - 0xbfea5a8876314a93, 0x3fe8d9226d59060c, - 0xc00e8fcdd72e3fcb, 0xc008063a70be00ee, - 0x3ff01306ac028927, 0xc004b1c0c0c360fc, - 0x4008f9a1e3435708, 0xc004bfd001fd822a, - 0x3ff760997c62de56, 0xbffbf85450aa0226, - 0x3ffec030e9bf8ff4, 0xbfd0d9b7384cd44c, - 0xbfef79b393d03361, 0xbffabf91e4f6becc, - 0xbff44cbf7e327924, 0x3fee0d8db5a2ba1e, - 0xbffb110f33f77598, 0x400055977cd98d5d, - 0x4005ad713fadda04, 0x3fefd096fd21741a, - 0x400088928017d533, 0x3ff884c966c7b434, - 0xbfebdbca4e587966, 0x3ff18729b9f8e937, - 0x3fe2cda845cbbff4, 0x40033282c7b229e3, - 0x3fdf89930ee56f08, 0x4003dabe85a5733d, - 0x40052d33e4c78d29, 0x3fe2626c97113a31, - 0x3fe1075b45a83edc, 0xbff48ee9bdf4db88, - 0xbffb252b028fe59f, 0x3fee88b92323ffae, - 0xbfacbfc1818b84e0, 0xbfde0fe045ae9816, - 0xc003b5e3c7c0e57d, 0xbff0accaba8fcdb5, - 0xbfda757adffe6bb8, 0x4012940b9b1ad366, - 0xbfe9b2f7366feb84, 0xc00976f96f8881f4, - 0x3fe00e7760e3c808, 0x3f987829f10dd280, - 0xc00669a76e767794, 0xc010bf16ab24bee9, - 0x400682e2bd76c47e, 0xc003686ed5f9cba4, - 0x3fef9afdbf741dbc, 0x3ffe3534f6a3bf93, - 0xbff99cc3a5b44190, 0xbff86326d01194ed, - 0xc00692730ffcecac, 0x3ffd91a738022f30, - 0xc00183a045b087d2, 0xbffdeac3e22299dc, - 0x3ff8fea2164b84ba, 0xc00a84b5c635d019, - 0xbff665c640da237c, 0xbff4c757ee49a529, - 0xbffa1bd083056938, 0xc00e263f7906ffc5, - 0x4005ee2488eb1c85, 0xc0050e1a5a8ba010, - 0xbff1b244646cd1bf, 0xbfd605623ef7b8d5, - 0x3ff56662fe805cf2, 0x3ffd58f471c68a73, - 0xbfe1abbfd1574dae, 0x3ff3e89706076fc2, - 0x3fbece5b4853ef60, 0xbff3641d37ba565a, - 0xc007a40cd69d4d62, 0x3ffe08e1f8ca1d4a, - 0x4001a323e2ed38ef, 0xbfd680670b1daab0, - 0xbfef57df9e5dc4ef, 0xbfe5b22cb88318f8, - 0x3fd998c872137b24, 0x3fecbf6b2876bf60, - 0xc002314f53d26aad, 0xbfbf9076f2910050, - 0x3fd3d43031513e14, 0x3fe59cc945dabf17, - 0x400b582fced506f3, 0x3ff4b81b3eb465ae, - 0xbff25edc931af12c, 0xbfcb1d3d6c46f858, - 0x3ff66c65aaceb6e8, 0xbff57860aa175c18, - 0x3ff6c18b3f567aac, 0xbfe8a0e216346c9c, - 0xbfb0d97196343480, 0xbff0e92fcc59a858, - 0xc0036179200b02c6, 0xc0076f500e85cf70, - 0xc002f03291fc783e, 0x3fec6033971fa294, - 0xbfebc9891b0a8f5c, 0x3ff93bbf638f4c09, - 0x40106384bce3cfdf, 0xbff1c931f3dd314d, - 0xbfff4821ef837634, 0xbff45f428bb8b602, - 0xbff21e7722499bbe, 0x3fda57395b8ffd26, - 0xbfebd0cb888ad62e, 0xbff1a770f08a09ba, - 0x400fbeceef5cba51, 0x3fd5aa291de703d0, - 0x3ffdd1de4f387ad2, 0x3ffe6d8294dacf74, - 0x3feb29fa3db71862, 0x3fff146c1b03e5fa, - 0xbfe050541564a34a, 0xbff2c87c83bb5bb6, - 0x4012538e7282abf8, 0x3f76e570437e5e00, - 0xbfc84e8393021138, 0xc009256706da46e5, - 0xbff3a9399bc7b1b0, 0x3fb1c1ddf974e990, - 0x3ff491565515be5a, 0x3fe1f151cccfbfe0, - 0xc00bd5bd64e016aa, 0xbfe65d9fc475848a, - 0xc0067f950e6c27e2, 0xc00b668d290501c8, - 0xc008f7476e5cedf6, 0xbff959f122a4ba8c, - 0x3fd2ab0ad2b01dac, 0x3fe47e015940037a, - 0x3ffb36309d5b1040, 0xbfd5f083177d9956, - 0xbff35e0397456800, 0xc0118f831e46302d, - 0xbfc41077dc518078, 0x3fe8906ce6d2ecb4, - 0x3feaa064afd59e27, 0xbffb1fbbc5929818, - 0x3ff02870cfefd876, 0xbfc42798a96800a0, - 0xc0119ac3220c869b, 0xc007903163130788, - 0x3fd6564a7f0b6ca8, 0xc004728a3df749e7, - 0x40020a69cc204e23, 0xc005ada939cdd08c, - 0xc006be87b07a5a01, 0x3ff94b0d7f877517, - 0x3fe3c86ed2d125f9, 0xbfc94a64dda20504, - 0xbfa4d62d37e62b00, 0x400350d8b4cc9002, - 0x3ff62c406670d564, 0xbfe7449f8e1f48dc, - 0x3fcd9708be56ec44, 0xc001c2ae1c2dde5a, - 0xbffe699c88f687b8, 0x3fd029fb541c36c6, - 0xbfc4096ebf9346b0, 0xbff539e9313a1d36, - 0x3fdc291d7b5210c0, 0x4011423b29306886, - 0xbff8cc996260aeeb, 0x4013321718b33e01, - 0xbfe2e079605a532c, 0xbff25d3875779937, - 0xc01663ac7671c48e, 0x400ab96a4437f4b4, - 0x3fef61f37ba9cc92, 0xc01308eb3886395d, - 0x400b76e812e1bd6b, 0x4005491131477cea, - 0xc0091ce7db160148, 0xbffa2ed7466ac4d8, - 0xbfef7e5b5057787f, 0x3fff7a018f42f31a, - 0xbfecd1eca8ec1b38, 0xc008b088050c3a5f, - 0xbfccc54732dd90c2, 0xbfc49bc5ca8213c0, - 0xc0080f73c4403aaf, 0xc00249cabdc1122b, - 0x3ffb6ad2ac82df1e, 0x4001195bf0523285, - 0xbfe23736292d9efe, 0xc0118df716bed3ac, - 0xbfe148be195b4804, 0x400dd16939f0be8e, - 0xc00364f178e3f0c8, 0x3fba110ac40664f0, - 0xbffa1c0a6170431d, 0xbff13eef433a3e8e, - 0x3fe36e2c8c88de1d, 0xbfde1ff632d8a952, - 0xbffb6a5eca1d28b7, 0xc00cba4b219be8ac, - 0xbff9ccb747e0ed93, 0x400e4ef6801f29c2, - 0xbfd83f036dcb71f0, 0xbfcae8a8973cb2f0, - 0xc0028d8f1dfae508, 0xbfe5ac44dcb5b001, - 0x3feaa7d7a532e4e1, 0xc0076b881e6ce594, - 0xbff274c37327d46c, 0xbff9e729efd0e1e9, - 0x3ff8eafcfdc96110, 0x40128e6421306a8a, - 0xc00302e96fa1f92d, 0x40057c1d2f7c6a56, - 0x3febaa40044d3103, 0xbfc5bf1178ca8942, - 0xbff03b512fc20e00, 0x40032499c88fe684, - 0xbfe9fb5bed9a8e0e, 0xbfb1e0c473a14624, - 0xc004c710138f91ce, 0x3fd98f13c5a962cc, - 0xbfb947ddaad03de0, 0xbfeab442a90090c7, - 0xc007f0c1ed5da1da, 0xbfbb0392e4dd8c1e, - 0x4008540a1e4825b6, 0x3fcaa0dfe984374c, - 0x400583f7155db6c1, 0x4014865c4a7437de, - 0x3fafd55fafe11c00, 0x3ffe6b3064abee82, - 0x400a554416c6d928, 0x3fe76195942fff34, - 0x3fc0fe9df36b6ab8, 0xbfd43967c6f2a78a, - 0x3fe5efbfc02e2e4a, 0x40097c8c7660cda4, - 0xbfff76f3537366ea, 0xc01302c853288747, - 0xc000f1e32db8ee08, 0x3ff14eeaa9f8b021, - 0xbff365dacd4dbb08, 0xc0114cd3fe6454e4, - 0xbff3bd79783fcaea, 0xc0194828cd241b5e, - 0xbfe0cebaa5ad315e, 0x3fdb4b383d259915, - 0xc00199b577de8c24, 0x3ff3b2b523817e30, - 0xc0039b670d8fb3ec, 0x3fdcedbfae01e6fc, - 0xbfc6b977b05399e0, 0xc00120d4cfc9b91e, - 0x3fe59251bc58a16e, 0x40111cefe1f4250e, - 0xbff17cef14a9f0a7, 0xc002f9508b20975a, - 0xc00b38061040a300, 0xbfbc3504e73a92d8, - 0xbffa2ea7ec6938e7, 0xc001dbcda70118b6, - 0xbfeab7a1d49df78c, 0x4000ed4765a110a6, - 0xbfdf89d58934001e, 0x4019b8ed558181fa, - 0xbffb338dc6813640, 0xc003256e35224c79, - 0xbff3fcdf7ffa98ea, 0x3f65b37fcb19e500, - 0xbff6b8216a2477c7, 0xbff8b8e3dd2702c4, - 0x40041284ab1cbacc, 0xc0001767998c98a7, - 0x400ec9cc543cfba2, 0x3ff85970bbe9a0ab, - 0xbff42db362c2c84b, 0xbfee61a90d14feb2, - 0x3ffcf4d5e43fa602, 0xc0046d3cf9dbaa84, - 0x4004d629daf82494, 0x3fb410e9f697fbd8, - 0x3ff3a7188f9664c4, 0x3fd86af1b42735f4, - 0xc0072ec6b70b47fd, 0xbfde5c22d70148b7, - 0x3ff50be95968a9c5, 0xbfe22a8ab7f38ba8, - 0x4007c392dceb99f7, 0x40082c3df5f03e9b, - 0x3fe0cd072973b220, 0x400860ef93947be9, - 0xc013fec12ebe8ae4, 0xbf9a341100e54fa0, - 0x3fde89fe46c05506, 0xbff389b08d8b446b, - 0x3fc5106ae4f7c372, 0x3fd67aac69f2d74d, - 0xc0037dd8a8c07250, 0xc000b46e64c391d4, - 0xbfc09795726fbb98, 0xc008992f5dc3708a, - 0xc0012829cddba3b7, 0xc004ddab03455e9b, - 0x400962a31d8e060a, 0x4010ec8f4496b538, - 0xbff8f8daaa597e69, 0x400301442950b86e, - 0xc016923930b2f252, 0x400208900835781e, - 0x400d20b5b52005c0, 0x4002b3932ddfb660, - 0x3ff59b67060d68e4, 0xbfec4bcd106b474e, - 0xbfd5b0ec83e734c2, 0xbfd099bdfaee80ac, - 0x3fec4535aed08d7c, 0xbfc5fe5e6b4ce74b, - 0xc016a872d0000c87, 0xc00130d178f48476, - 0xc0154479f4f9dc10, 0x400da4d749cd5fa6, - 0xbfee311faf1c640e, 0xbff42c25d41a3118, - 0x3ff46701859a805a, 0xbfb9983f85235440, - 0xc0017b5ae20b238c, 0xbfcf856c3a77c0b8, - 0x4000525f1bb5c53a, 0x4013bcd16604b3e4, - 0x3ffcb602e30bdaf0, 0xbffdb2d8d22eacfe, - 0xc004a396b4dd31a2, 0xbfefb6d402994ff5, - 0x3ff92cc5072fbe3b, 0x40072b03fe3870cc, - 0xc0015bb7feec092a, 0xbfd48e1095c32921, - 0x400cf375883db8c0, 0xbfde6eb4ec61e050, - 0x3fee08595bc7f409, 0xc00b6cfbb2640c38, - 0x3fec3bac548bf532, 0x401d34f4167fe8a8, - 0xc00e793a396a228a, 0x40061e9f049320ec, - 0xbfb33b3756153f10, 0x3ffc34be0d21b684, - 0xbff4c501d99fceca, 0x40125ea28f2d790e, - 0x3ffad18d3691adb4, 0xbff40aaacefce8b4, - 0x3fff512b3db492ec, 0x40128ad8b1399a8f, - 0xc00409f1a5a6957c, 0x3fee85d67c14109f, - 0x400239c76513ee05, 0x4008f65634cbdb11, - 0x3ffd4f5e436ee151, 0xbfe1754c995cc692, - 0x3fe15c4abe80e4bf, 0xbfe1d51954bc0090, - 0xc009ae03265a0828, 0xbfcf75ebb569b000, - 0xc0026b3d768f855c, 0xbfd0cffa30c6bdb0, - 0x3ff0edaab5685891, 0xc0041943faf05053, - 0xbfd26be1ee94fb50, 0xbfce5dbb5e22c650, - 0xbfd5ac3b02d129c0, 0xbff8666f83395b02, - 0x3fe00c854b33cef5, 0x3fdcbdb468ec8658, - 0xbfe423b50e3c2b5b, 0xbff4768306c7a9d4, - 0x4003fd4bb9b86ae0, 0x3fc84d74fc8b0d38, - 0xbffad274d98d7caf, 0x400c415906c178d2, - 0xc005e1291117affc, 0xbfce8142364b1af0, - 0x3fe94158f26a411c, 0xbff949f8fb4cf3e6, - 0xbff04a06ab33ae5e, 0x3ffe8801cde850ee, - 0xbff4e80277a04e1c, 0x3ff1cec799999691, - 0xbfe3e88b122e8286, 0x3ff81f8a5ee78f52, - 0xc00072a1dc681783, 0xbfec5b0087481ec0, - 0x3ff1fe13a3566c7c, 0x3ffa451d72e90b1b, - 0x4016edd3c582a0db, 0xbfe012e4ddc3df0d, - 0xbfe24abe0d1a7d17, 0x40062fe6a2dc7788, - 0x3fe780e487567f22, 0xc002cf9883494676, - 0xbfa52fbf33fcc750, 0xc0079ce4d1c3f093, - 0xbfe4680ae09c987a, 0x400907f935b020c6, - 0x3fd0aa5f1f5a4644, 0xc00b1ea04e964548, - 0x3fe1c848f0a6be70, 0x3ff249faf556ea46, - 0xbfe7707706a2ff8c, 0xbfa00c23628061e8, - 0xbfc7989b67b392dc, 0x3fc38294fa56a358, - 0xbff35fff8fe66941, 0x3ff0d2b6073f0906, - 0xbffdd95b8c03eb82, 0x3ff0bf866422ded8, - 0x3ff55f74083c2cb1, 0xbff706313e29113e, - 0x3ffb23cc4db70be4, 0x3fd2edc10d20e823, - 0x3fb40fcc53491580, 0x3feef2299a467df2, - 0x4011cf8bc01cb292, 0x40040a628a369d4a, - 0xbfee047c714f5e02, 0x400028898cea4806, - 0x3faafc20482933c0, 0x3fa00807e5548540, - 0x3ff7278a6769d6d4, 0xbfe0067411b62c50, - 0xc013afc050d7c082, 0x3ff133e3679775c3, - 0xbffcace9db853220, 0x3fee1c05dd5bba1c, - 0x3fdae80531eb7110, 0xbffd5c1dfaf3a958, - 0x3fe49c97a2e6b948, 0xc003041501a6038d, - 0xbfb5fffbb9f04610, 0x3fe46b3c871e93ca, - 0xc012a72d33b5a0e1, 0xbffda9eddd8ff53e, - 0x400b98da7eb5d549, 0x40089ba06b296225, - 0xc009be7aaa2c45a4, 0xc001dd90e0f3ebc8, - 0x3ffddeb93806ed99, 0x4001f18c66aefd30, - 0x40067932de90b8f2, 0xc00c78115499827c, - 0x3fd9ec97cc10a232, 0xc011b20d464ad093, - 0x400182f59a6546d5, 0xbfffe7ba9b01be2d, - 0x3ff9003af5a456c2, 0xbfe621fdde73824e, - 0xc012610077e41eac, 0x40033b4b5ba20785, - 0x40086f6ad65bd1bc, 0x3ff830c7fcc08ac0, - 0x40147c7fadcf00df, 0xc00f5b4ec03686b5, - 0xbfd834b85a9afb24, 0xbfe253be4a03aab9, - 0xc000e607ae23dcd6, 0x4011a5f545865852, - 0xbfd2446e61defd90, 0xc004f0f029589c1a, - 0x3ff345f06609466e, 0xbffe3bbc53993f35, - 0x40034760e918286c, 0x4004e8b6b824bcb2, - 0xc014f19d93ef83ca, 0x3ff94e4a575648f8, - 0xbfd291eeafe7b72c, 0xbfef9b391cbb202c, - 0x40118eeab284a0f1, 0x3fe982e510388b42, - 0x3ffe2b2952e85fc1, 0xbfe84da28f77ff70, - 0x3fd2bf53c48b48ee, 0x4007cf172cb6870c, - 0x400556bc67bf6fc0, 0x3fe60b061b9f3e04, - 0xc005c4f02cef4cfe, 0xbffdd50d4b336252, - 0xc00645430162e7cf, 0x4001f0a608a7a884, - 0xbff346d970bd875d, 0x3fed660d6633565c, - 0x3fe4c1855eddd5ae, 0x400b5323c8a1054a, - 0x3fe9fec01b017eb0, 0xbfcf68fbdb90d020, - 0xc00e235c8d9d0fca, 0x400383e2d6a2eeac, - 0xbff397b95cc520fa, 0xc00d0a22c3259e3b, - 0x3fe2d7ad6d7847ab, 0x3ff5042986354fef, - 0xbffd1a03bd26e309, 0xbfd426d177417868, - 0x3fde9378431e51cc, 0xbfedf5be3104d4b0, - 0x3fe67e29c48d577c, 0xc00f61e0e055f00c, - 0x4000116a1364f987, 0x400436948b9c521f, - 0xc0096c63a3ec35e4, 0xc0034fb36aebffd4, - 0x400b05314332b5b4, 0xbfce09e86efc5cb0, - 0x3fec6432c090cb56, 0xbfe50475fa1d7dba, - 0xbfd868bc907c8d60, 0xc002cb4b04452bd2, - 0x3fee3817ad3a6bf3, 0xbfb9b126c86b76c0, - 0xc0021a54d94c8eaf, 0x3fb653ac6b3bbfa0, - 0xc0099fc8538b65bb, 0xc00b7ab1060757b2, - 0x3febf0eec91f32f1, 0xc003730ba21406b4, - 0xc00ae90b7d2cb13f, 0x3ff4424f33662360, - 0x3fec21e77f0601d7, 0xc008fb30aae622a9, - 0xbfe9d87d565432c8, 0xc004e761ecaeb9b8, - 0x4002aee5a936f123, 0x400671114acd58ff, - 0xbff9aa55af1671f7, 0xc0044b8d35db3948, - 0xc002bf8a4f996f6d, 0xbff35ce3f95643c0, - 0xbff4ec15feb6d4db, 0xc00a9f44f548e036, - 0xc0026f48b434becc, 0x3ffca86772c17a6b, - 0xc01096feb060054f, 0x3ffaa67d040a9c15, - 0xbfbe605f4e37522b, 0x3ff508ad23e1e555, - 0xbfbb59fb50c9fd80, 0x401159fcb37b72b0, - 0x4003516d1a78f62a, 0xbfed79d3a829df73, - 0xbfd6cabe7d7bf160, 0x400555719614eef8, - 0x3ff354f0b3020d48, 0x4000913b05ca0c19, - 0xc0024a347e86aad0, 0xc0065d28ed2ae244, - 0x3ffce8624b7af6f2, 0x40008b02f444466c, - 0xbfffa6b76347fa3e, 0x3ffa0af2d51ad33e, - 0xbfee56dfc7283d62, 0xbfff43d8fd7dd1fc, - 0xbfe2c72c0f4fdd8d, 0x3fb731816ff1c860, - 0x3ff2d036d31e15eb, 0x3fe8dd14c7819134, - 0xc00649129688e97d, 0xbfde445f2569ee58, - 0x3fff53136c33dc45, 0xc011c3132d2095ac, - 0x400189be7a3d2e17, 0x3fcaf04c59f2b7b8, - 0xc0006dd46b13d057, 0x3fe6b846ed3583da, - 0x3ff09f442f96d0fd, 0x3fe6da989b22fc05, - 0x3ffe2a5e8306315d, 0x400adeef63f2b01f, - 0x3ff40981b9895eea, 0xc003148b63f6bafb, - 0x40104bd88c2c9303, 0x3ffe43daac6ac4e4, - 0xbffc2110abd93340, 0x400174a5792a89e7, - 0xbff96ba1de1eefd0, 0x400a9936062d130d, - 0x3fe4903ae918a65b, 0x3ffcc6240e5f4014, - 0xc00b4aa24aed85b7, 0x40065518e1573fee, - 0x4006328090b9d468, 0xc002333fa5a5aa77, - 0x3fe81378f684c1c8, 0xbfe23f9ed24aa37e, - 0x400c85edfd3869e8, 0x3fdae110248e31c2, - 0x3fe11856aa651abf, 0xbff33540c8ae46df, - 0x4016416e9f08eda6, 0x3ff36990ad6ebc96, - 0x3feca54bc81c8924, 0xc0019ca8229c0a78, - 0x40057ad38f84c8be, 0xc0062649b9de54cc, - 0x3fd966583382452c, 0xbff323ab5187701f, - 0xc009dd04526115fa, 0xbfe3f7e07b3b30ce, - 0x3ff1620f9cc0b310, 0x3ffda7d747a328a9, - 0xc007208eddd4a8c7, 0x3fe594c4761aef6e, - 0xc01385af8eeaa2b4, 0xbff297e0beef6064, - 0xbf86350394ed4780, 0x4001bda467922fd2, - 0xbfec1673be869299, 0x3fe77977d2a66138, - 0x3ffda4df9dcab50e, 0x40069eddc0a4c518, - 0x3fa9e34b55579f80, 0x40067b7b4f5b1963, - 0x3fd19b168a569dc1, 0xc011b49c4391168c, - 0xc003e93af0d044ba, 0xbff23942f5e538e8, - 0x3fce3252ab4fd8fe, 0xc000a60d3476a933, - 0x3ff5915414f73f79, 0x3ffcf8c5d97478fc, - 0x40004ffc57da198a, 0x4010a7349a79240a, - 0x3fec67a64e50ddb8, 0xbfe570bf89a3220d, - 0xbfe825f90e3ce044, 0x3ff1af8dcb2ba468, - 0xc0071f4f877724f4, 0xbfddd4d1e011f64e, - 0x4003c8b2d43aeb6f, 0xc006ab18c55ce4a6, - 0xc0034e9cf16c8a24, 0x3fe9a01445051828, - 0x3ffd3af208da0326, 0x400315bbc933ad32, - 0x400be3c3943853c2, 0xbffb03f6ec0e8464, - 0x3ffa98798dde57bc, 0xc0169fcec0f3298c, - 0xbfe1c3ccbfe74290, 0xc0016a9b4c1997e3, - 0x4010b32fcc60f532, 0xc011e6c605336afc, - 0x3ff6095ee03e8607, 0xc000016bbd8334b2, - 0x400f233aaecbd847, 0x40080e10999fc7da, - 0x3fea477502a2299a, 0xc008f382be4244d4, - 0xc005440726bbddda, 0xbff20392587711c0, - 0xbfd80c1da3036693, 0x400187ff2fe6761a, - 0xbfc379bc49e63a00, 0xc000653291346458, - 0xc012a90ed8f70bed, 0x3ffc6f1a69074262, - 0xbfff487940d555aa, 0xbff47a1e0d133719, - 0xbff06850788444be, 0x3ff197f9984acb99, - 0x3ff9653e3907558f, 0xbfed50cd3685dcb0, - 0xc0050b9cc16acbc6, 0x3fb6e56e88e75cc8, - 0x3fe2fd48bab5138c, 0xc00028ee50b5a796, - 0xbfb689dee3c83608, 0xc001c1857ac542aa, - 0x3fee9438b8f59d10, 0x4004c8cc8b30551a, - 0xbff8734b072d7d44, 0xbfe080e9f4b63633, - 0xc00dd0df9d20459a, 0x3fd796ed7fa84a18, - 0xc0068026798a071a, 0xbfa611392c7f3740, - 0xbff5b5157954c064, 0xc001dd1f45321723, - 0x3ff2b85922866554, 0x3fef51fe72a2d7a0, - 0x3ff2f1c97e055e9e, 0xbffa4c5bc4992816, - 0xbff7fb12839e33a6, 0x4014ef6e70923d48, - 0xbff20eea9e8ec7b2, 0xbff479d855b26368, - 0xc0098c04d35743db, 0xbff795608bd2bea3, - 0x3fda96dd1ff2f0ac, 0x400e559cd66eb355, - 0xbfe8b1bac6140d92, 0x3fc47037bce94718, - 0x3fd6ac4b47818ce2, 0x3ff97382cfebeb65, - 0x400787a2405660c4, 0x3ff0d862abf7293a, - 0x3f7fca3df0ae2500, 0xc007682732f2d111, - 0x3fdd1b34a0222742, 0x3ffb1d24b594839a, - 0xbffce2fafa1b236d, 0x4011cffcaa93364e, - 0xc00f313d7fbcc74c, 0xc00df779f8f9ea6c, - 0xbffa86a56795e28a, 0x3fe6c480bacb3963, - 0xbfd382fc8dac4e8f, 0xbfb1397854d66660, - 0xbfd4c327fcc93df0, 0xc009246480cdaff4, - 0xbfe7d0e9a30ed817, 0xbfd51ceb87f8ab78, - 0xbfe35e3c939ee459, 0x3ff7bd4dc5930c0b, - 0xbff40e75386dda6b, 0x3fe8e7aff416f55b, - 0xc004fe6cc6034817, 0xbfe30f5270a9c254, - 0xbfeda4787ca86b7e, 0xc0012fedfe5a2e92, - 0xc0029485307d3079, 0x3ff516bf4a41f130, - 0x3f81da0b3ff4b780, 0x3fd4db8ce60a7868, - 0x3fc5ed72aa0bf294, 0x4002c1e5d8150d6d, - 0xbff236c75388ffb4, 0xbff962c41fee574c, - 0xbfe4ac6a1e7d05ea, 0xbff6ea12832ba974, - 0x3fd58e2c33f1b9d8, 0xc0117183f84f1403, - 0xc001d8f168f38c19, 0xbfca1faeee0b42fc, - 0xc0056eb6bdcdeadd, 0x400cf7db999bde36, - 0x3fb3135c26b32120, 0x3fe8810006414eee, - 0xbfaa9225b52f2300, 0x3ff0da5fcc51edd2, - 0xc00640879a49eae2, 0xc00f4a7a7f68f1ac, - 0xbfe37399bb71835a, 0x3ffba493ff981d68, - 0x40153d9416e1addf, 0xbfe32f70104405b6, - 0xbff057b1d4448c50, 0xbfd78087768c83f8, - 0xc011a73b4e9dd636, 0xbff796e7f5cdcfe3, - 0xbfeafa7c96bc4103, 0xc0094a28f77ee668, - 0xc0048045a7a0a387, 0x3fe826bcbc5fb98a, - 0xbfe9b9ca8dbe9e1e, 0x4008f7ab0df21f81, - 0x3ff052761367abe6, 0x3fdecc1f7b545124, - 0x4000f0fa0f578b4a, 0x3ff0e70e23105225, - 0xc0099c6e775b38d9, 0x4003f260d0c306ca, - 0xbff57ca7a556ae1e, 0xc00dbfd63f369762, - 0xbff087be716081e1, 0x400632d85318f5ef, - 0xc0092b1ad03a07e8, 0x3fffb892f7805146, - 0xbff1fba016d64294, 0xbff7f84fb5c70342, - 0xc0041134bcc904b8, 0xc004396f90603e46, - 0x3fbd570884c4bda0, 0x3fe2a3c6228cf974, - 0xbfd08608eb7ec760, 0x3ff27685eb92227d, - 0x400350f7ecd171ee, 0x3fd8a0a6e6e13810, - 0x3fe56c21398870a2, 0xc005e92be9e56a10, - 0x3ffb3058e9353e5a, 0xbfefda361c4bee3a, - 0x3ff758e775370cc2, 0xc0044d1825620e92, - 0xc009e6392954aba2, 0xbfe8125a57d636be, - 0x3fd50a72b9e724cb, 0xc0129124e7a024a5, - 0x3ff9710f3ab9db6c, 0x3fff57e32353d6f6, - 0x4004423311e2265e, 0xbffcf1cfe82e95e6, - 0x4005eaa97c4830cd, 0x3fd557f4a95748f4, - 0x3fe821185dd53d78, 0xbff34a793d20c3e1, - 0x400e5c31795557d2, 0x3fe73f98236ac09e, - 0xbfc16a8eec92a3f8, 0xc011afdde79ae650, - 0x3fe6aade5f06c39e, 0xbff890797795db7a, - 0x3fef428dc33a5dfc, 0xc00fdb4eb768ae5e, - 0x3ff88acd99961fd8, 0xc00a5e1ea1be1c96, - 0x3fc21ddaf4786568, 0x3fedae7fa37c6720, - 0xbfde7bf394d503f2, 0x400d0510ae87e1b5, - 0x3fed757b0d2e68e0, 0x3ffe3b0bfc2865c6, - 0xbffc6c1d682571cb, 0x3fe338565583e566, - 0xbfe5703d91865f2a, 0xc01054a3a4117ddc, - 0x4001f57922f19cfb, 0x3ffa382e81a9e75c, - 0xbff7e616bc22eb44, 0x3ff51ea2723f8aa8, - 0x4010dd3f346bd9ce, 0x3fe45436ea24b762, - 0xbfeee225060720c6, 0x3ff868c3905eac9e, - 0x3fe2553c68be845c, 0x400819dd0f4351d6, - 0x3ffeaa86770479f4, 0x4000342834868adf, - 0xc0065c3cb6bdab15, 0xbfca8b23a049eaa4, - 0xbfbae89bf807776e, 0x3ff134e099aebe76, - 0xbff567367a659284, 0x3ff9edf9dc3bb1ca, - 0xc000db153165b15c, 0x3fe40abc0ce396c7, - 0x4015f23f4687dbd6, 0xbff80b165a618598, - 0xbfd6afb92514df80, 0xbff85f3320cf47e1, - 0x40051465b338a38c, 0xbfefc08da6a25b23, - 0x3fe3e7c0ccfb5d86, 0x3fea2de3e80b9bc6, - 0xc007a4b0aa23202e, 0xbfd7d46d7dc8a4e8, - 0xbff98cc71d8252a9, 0xbf3984bccb7fa000, - 0x3fd1bd1d8494ad2e, 0x3fd287594aadf956, - 0x3fce352ba58f0ff0, 0x40009241d45fe3d7, - 0x3ffd570da311030e, 0xbf7a0d2950357300, - 0x400f798149641af5, 0x3fa04c841d6b7c80, - 0xc0077bf3a12362fc, 0xbffe7d2e9f5c5aaa, - 0xbfeb204f009f44f2, 0x4010a30c925d27a6, - 0x3fe71dcddd901dd2, 0x400c74164bf07102, - 0xc00bc60837985e88, 0xbfbfd45139f85680, - 0xc0010b8c5a1cd718, 0x4015d5d83629f498, - 0x3f43a951f44ec000, 0xbfe42d611bdc90c4, - 0xc000561882b4f706, 0xbff3d5b1bbbd820a, - 0x40055026e7ca1bda, 0x3ffaa1d6116a0e16, - 0xbfda8b520bf7f410, 0x3feb4d38db8d3402, - 0x3fc3d169ab12bb4c, 0x3ffc90ecb1147bfb, - 0x3ff4c7d058fd67f9, 0xbfb23ecf6baa1944, - 0xbfd12c584f221e2c, 0xbfed6bd5c1831df8, - 0x3fd188c7ca16578e, 0xc00e62f96795035a, - 0x4001600bdc70c825, 0xc0085350a730ab50, - 0x3ff7340fa2fb4d15, 0xbff38b899fa74b17, - 0xbfced56dc8e093fc, 0x3fe5053e572b4e74, - 0xc0040c490784c9e2, 0x3ff58dd3ed65c133, - 0xbfd24416ee7fa312, 0xbff3814d9a2bf34b, - 0xc0011c7069b4ead8, 0xc0017d45f3a34f37, - 0x3fb286bb053a4d10, 0xbffac99ddc0d4191, - 0x3fee47d48fd10bbe, 0xbfd04df76fe6c722, - 0xbfed77d31715cfc5, 0x3ff50064a2486eae, - 0xbfe0b59432a25fb4, 0x3ff331a61c7c82a9, - 0xbfd52432a007a53c, 0x4004cef0c703d723, - 0xbfef0973b4181242, 0xc00e588a16afa236, - 0x401863ee28b1960c, 0xbfe9735422517556, - 0x3fd06c0ef83c9880, 0xbf92d76243739980, - 0xbfe1edc6a225069e, 0x3ff2e56c25232412, - 0x4007315a0bdba7a0, 0x3ff111ad1a699266, - 0xbff56245b2cfe374, 0xc010ee61d3786822, - 0xc0028604b69adef7, 0xbffaa116d2b15c6e, - 0xbff6ebc32ebe8d46, 0xbff98a5c831ff580, - 0xbff0aaeb52c4d9f2, 0x3fd794c487d27b8c, - 0x3ffb33d7a727b38c, 0xbfd3b5a8aea8c4ec, - 0x3fd35a02a53ed400, 0xc0053dc93b031feb, - 0xbff871576c39af7e, 0xbfee7a4f705e2906, - 0x3ff4cca8a48f75fb, 0x3fffce350ae245e6, - 0x401008f5a5cc7ac2, 0xc002565c6b9a9044, - 0x400e1cbb56f9a4f6, 0xbff04de816a39ed0, - 0xbff55102f8e031a9, 0x3ff06f285f8ce828, - 0x3ff237e03e29911e, 0x400c2f1db46ce5e2, - 0xbfa09981e8d95ba0, 0xbfff481af71a9a63, - 0xc0097ce33189bfa7, 0xbff1d9889c6d47ec, - 0xc00da1398261e3f9, 0xc005bb9227543b1f, - 0xbfe886560efb6354, 0x3ff74699d9e554ca, - 0x3fd7de0f8773f4a5, 0xbfbe3325b92364d0, - 0xc00fabd376ba7762, 0x3ffdf1af849a2946, - 0xbff13359ea666332, 0x3ff15e5d259dd0d4, - 0x3fe66620319d0f48, 0xbffd528fa49d01f0, - 0x4009779683aa1580, 0x3f97642f8eeb0880, - 0x401022dc652c9967, 0xbfffc28370dd7732, - 0x3fee36482992225e, 0x3fe0182ecf899dcc, - 0xbfe2b99fe3ed5bcc, 0xc007a67fa5e0a520, - 0x4000701b875bb366, 0xc00122ae28cc8e2e, - 0xbff2d2ed3f92a05b, 0x3f8cce5e1bb606c0, - 0x3fb69d3bce563e38, 0xbfd89d7b5e31a892, - 0xc00025c04d7bbea4, 0x3ff54d7cfd3ad0aa, - 0x400c7b7a7f66fafd, 0xc0051b4ffbdff80d, - 0x401270465ce6a3ca, 0xc0038474cd7e2f7c, - 0x3ffc1a5b74c9530f, 0x4002a445b11411b8, - 0xbfc7ace2c632e69a, 0xbfefb6da00a70b34, - 0xbfe08698706e1a3f, 0xbfcdddc7744400f8, - 0xc00d5f3644af70ad, 0x400a5ec82641f96a, - 0xbff7f161bc758f05, 0x3feb955c266392d1, - 0xbfeb9c34080d64f5, 0xbff27fa19b96d869, - 0xc000d2ee4b8cba1e, 0x4000e4d341e8c0f4, - 0xbff1434998771d80, 0x3ff32d66947246e4, - 0x3ffa68bff8afa684, 0x3ff7c9159b4cdd2c, - 0x400cdbf59ed30e54, 0x400199082a4b14dc, - 0x400179cd376d3e40, 0xbffb6c0d0fadfb21, - 0x3ffe11b90072109e, 0x3ffc640832f3064a, - 0x3fbf1bcccff79d68, 0xbfea9cc7356bcaa2, - 0x40027d383d669874, 0xc0107a42690d0f38, - 0x4016bae93896cb76, 0x3fee77c3aa559320, - 0x3fe5dd3ad999c672, 0x3feb5d883fa6a86a, - 0xc0056d52e28c193c, 0xc00ebef7aaf33c64, - 0x401204d32bfb490c, 0x3ffe68620846ffbd, - 0xbfefefbc08fe5e9a, 0xbfdfca826f016320, - 0x40049b1b07fef232, 0xc000c34f22edd94e, - 0xc002b23cbeeea10f, 0xbfe838578b229316, - 0xc010b5b200999273, 0xc00c06c2050c077e, - 0x3fffd1affcbc556a, 0xbfde761ef5122fa4, - 0x4006fd6b8a8dd766, 0xbfd99753d02c337c, - 0x40171d13879cf17d, 0x3f69126af3755900, - 0xc00f999c01d0eef6, 0x3fee74f2537efcda, - 0xc00b4be2bb8789d0, 0xc0124814c3b39e59, - 0xbfdc58bc32f42314, 0x3fe9e310b67d93ce, - 0x3fed19ed596af1e6, 0x3ff8422e0416c988, - 0x3ff99742045f15fe, 0xbffa6da21e33e871, - 0xc0038d86ad15e33a, 0xbff0dadb78c5e2ee, - 0xbfc1bad7837b8538, 0x400cd93f720d4ca6, - 0xbfba7d0da9a84040, 0x400bf260c342b25a, - 0xbfffafa3ebfd66a2, 0xc0111a21a0391b17, - 0xbfdfd07b8c39f1e0, 0x4009490e9bb4785b, - 0xc01a4aa98a00f0f1, 0x400baa2aad4690c8, - 0xbfd25400a421ba44, 0x3fe27b8a9be2ea5c, - 0xbffe94e496022c81, 0x401e85b7aa50fb13, - 0x40051522aeaaad5f, 0xbfe42bad28785478, - 0x3ffb6b0c55f4d6f2, 0xc00525e5551eb692, - 0x40128d90fa8395ae, 0xbfa1b795e7795bc0, - 0x40109d6925a8e757, 0x3fe1e6c5856a7768, - 0x3fece140a0dac390, 0xc004dd0d6db71dda, - 0xbfe54d506723c9b4, 0xc0050e1d3abec080, - 0x3ff67fa07d60b8ba, 0x4010b9abc8f45593, - 0x400256cb16ac2fa6, 0x4005079e514a90b6, - 0x400f8e5afda708a4, 0x4004eb76a1220f4b, - 0x3ff1cc34e55d4720, 0xbfff50419c3f104a, - 0x3fdaf7c3c3074ccc, 0xbfc36488aea7e658, - 0x3ff1c6d1921d7596, 0xbfb1f2cb0b10ae10, - 0x3f407cd4dcc35400, 0x3ffd18464f324c70, - 0x400bb4c2b4be802a, 0x40005d7041836804, - 0xbfcd4f5c3eace398, 0xbfff7410fc227635, - 0x40109d17ff9f816a, 0xbfe0a24e86a0f1a6, - 0xc00303e0f06b31ca, 0x4001f8e48ca347fc, - 0xbfef2b7005a5c48a, 0xc003d3b5245d2153, - 0xc011e058bb464182, 0xbfe0bd3edd774b82, - 0x4016f37bccb56d6c, 0x3fe3d96a321a689e, - 0xc010a6df89d9103c, 0x4009ad63fec2e72e, - 0xc00b3fb30cda30d9, 0x3ffbb158e21caffb, - 0x400035c47b9806cf, 0xc011953cc72b1528, - 0x4006ef609c44f3c0, 0x3fc5406547e44ca0, - 0xbfb8e2da64d82b70, 0x3ff766a6497d3eb6, - 0x40007260d482579d, 0x3fe3fbc7ba9d528e, - 0xbff32fc29c9a054e, 0x4002edda96e451c9, - 0xbffe16811f9a44b4, 0x3ff3d370899bd5bf, - 0xbfe975366cb3e9e4, 0x3fc580c4ca6c70ac, - 0x3fc4662a333762a6, 0xbfda88aeef6cecc4, - 0x3fd2061cf1775f5c, 0x3ff6013dbf2ad294, - 0xbfe372e2acf980e4, 0x3fb3c32d4a70c3f0, - 0x40132d4abb038b74, 0xc005042d1f7442e4, - 0x3ff36949da7ab244, 0xbff5ca5b12f2e2c5, - 0x3fd5ae078a6483e9, 0xbfec41dfb6d73467, - 0xbfe560078b5246b3, 0x3fe77f410dab0436, - 0xc009e726b7515f36, 0xc00b7d096a0fbb89, - 0xbfe0049b1ee8cd76, 0x3ffb1c3851fbff0e, - 0xc002858e4ddfeae5, 0xbfbc643d0e3c30e0, - 0xbfe79838b05ec6e3, 0x3ff18c19fa4c0292, - 0x400f41f1dc702576, 0x3fed42406dca07ea, - 0xc0037ebb9b4a9c42, 0x3fef27f6e27e79ac, - 0x3ff6921f4198042e, 0x40001c9f340544f4, - 0x3fefc300e685bfb1, 0x3ff0299987f1972e, - 0xc0056cb69ce7b0ee, 0x400ab95713331d51, - 0x401b98f5dffbed9b, 0x3fabae75fa7c7e80, - 0x40058926f4d5e50c, 0x400401e7aff403c6, - 0xbfee38599593b00b, 0x3f9984bf868c3540, - 0xbfe10902081ed6aa, 0x3ff2ea0b79d87753, - 0x3fe4073d105b7428, 0xbff0cef6863e0377, - 0xbfe3903c659dd8f3, 0xbfca6bd9842f1270, - 0xbfdb5eb5a0912dd0, 0xbff73abf5102efb1, - 0xbfdf6e489062107a, 0xbffc95d0d9549312, - 0xbffbdea27221db30, 0x3ffe05d285130032, - 0x3feeccdae0e9d3f2, 0xc00fc21b1a41550e, - 0x3fe8410a43ebf252, 0xc000aa1a1a3e2f55, - 0x3ff823a501828568, 0xc0015d0d43cde7fb, - 0xbfe8990fc59db179, 0xbff0e85f6afd4738, - 0xbff4a97511ad4a74, 0x3ff2a5a4ef3ac074, - 0x3ffebae8f91c649e, 0x3ff30befb0e0706c, - 0xc00172ff91bc06b2, 0xbff08949d500b91b, - 0xc0184101b90b1a7c, 0xbff4ef3a371f3d96, - 0x3fc7b643a42eb2f8, 0xbff735226c9067fb, - 0xc006968e527655d9, 0x3ff2cb5f89e10b0f, - 0xbff71dc3c526d60c, 0x3ff16c9d43cbf8d6, - 0x3ff847b57d737382, 0x40031f71d9f9abee, - 0x3feb703b4198fb6e, 0xbf917c4d47349120, - 0x400a6b694a4218a2, 0xc008b6658150a92f, - 0x3fe725f89674138c, 0x3ff6f434de1a8a63, - 0x40008d7004bfac22, 0x4000284eaefeb6d9, - 0x3ff78a15383edd2a, 0x3fe934e7559560fc, - 0x3feab19aaaff263c, 0x3fff3d81de3a342e, - 0xbff1f9527c417960, 0x3ff4176327fb56f8, - 0xbff1a49fccde922b, 0x3ff518d21f4c9d30, - 0xbfca57cca8a81008, 0xc01327e02fe0a125, - 0xc011e46ac7e225ac, 0xbff9b31cb4df9f6c, - 0xc003d211a74304f6, 0x400591067fe04b74, - 0x3fe45ef25d342c3a, 0x40049bfe78065382, - 0xbff55b57f71ca6d0, 0xc000b31edbebd3b9, - 0xbffe341b4d750087, 0x3ffbd72b4510de3e, - 0xbfee329760cbdae2, 0xbff8be8c72b59a9e, - 0xbfeaa75d1ff7fca2, 0xc00015e416c51d82, - 0xbffe160e30229992, 0x3fe04ebdf4251c51, - 0xc00748d71e01c651, 0x3fd47a6df71864ec, - 0x3fd3e1acab215646, 0xc0078c4e7799fba1, - 0x3ffcd43697af1342, 0x3fe05917e3fc4265, - 0xbff331ec5669480d, 0x40100c0ea9b6b7aa, - 0x3ff39c54680fb9bc, 0x400362e38727ff33, - 0xbfd75c5926cd7768, 0xbff7941f6fb35637, - 0xbff2a75bebddbccb, 0xc003ab48acb6f971, - 0x3feb90beb6260730, 0xbfcd83f116962880, - 0xc00554f596c456fc, 0x3fe8a6211e2900ea, - 0xbfd86dd287fc4546, 0xbff71ef1c49c9fe6, - 0xc00203156b393e24, 0x3ff53def958b4ed8, - 0x3fe5c7fb03f309bd, 0xbffe3d8063a08f7c, - 0xbff27e35c7bc5c4d, 0xbff2a711a78842b5, - 0x3ff94c31d8c6805b, 0xc0040d2daa8cac5f, - 0xc00587bb1644bee6, 0xbfc75d61fa049960, - 0xbfc6577d5d6fa7f0, 0x3ff95ead8c3379e6, - 0x3fdb415b805ab4f0, 0x3ff60600c90b9c7d, - 0xc011b6ba0d6e395b, 0x400e1d537210068c, - 0x40090208e2a22042, 0xc000294dda7754b5, - 0xbff96496cf523bda, 0xbfe8cf1a8a64f7cb, - 0xbfdb458018abe8d7, 0xc00d2bcc81dd83fa, - 0x3f86450959fc0000, 0xc005b3a4049817e4, - 0xc005b683d2b29b6e, 0xc011c759ca69a95d, - 0xc0107cfd3988959a, 0x3ff2f98f5f9f96c2, - 0xc00343a9bfc20ee6, 0x3ff8ea5137e1d1a1, - 0xbff641a1504fc86b, 0xbfdc516a3272f59c, - 0x3ff5b0ca1fd9e87c, 0x3fd9828a20a68d12, - 0xbffca2178b8662aa, 0x400d8e5fe05a4ef8, - 0xbfe2d1ffe7d2ff0a, 0xbffe810ae590c904, - 0x40020bf97fee8a6a, 0xbfb7773478f4dbf8, - 0xbffd7948004f9e0a, 0xc00026459c214ac0, - 0xbfb6ed8048a6f250, 0xc009ac4261504471, - 0xbfface6628297b90, 0x4004d14bc803d5d4, - 0x3fc395bbf108ecc2, 0x3fed4b3cc3d91b6c, - 0x3fcc1e1224e1b5d0, 0xbff87df794582ad2, - 0x3ff6c906ea0ce730, 0x401068bed425610e, - 0x4006458f28dfcc02, 0xbffbfb75fa02d8da, - 0xbffefe3cfeb559fe, 0xc0027cc108693ef8, - 0xc00cb03d8b812375, 0xbffaf22ef5381857, - 0xc005ee489fea39c2, 0x3fc9574515fa22e8, - 0xc00459d3e4bfe4ca, 0x3fbc83ffa0664830, - 0xbfcba3d5986a6e00, 0x3ff2232a4e839dc1, - 0x3fdf62e5779b1c3a, 0xbfc8679d6043e560, - 0xc00ee785b67c8b8c, 0xc0193835ec5c2b62, - 0xc00df53d237ee119, 0x3ff51b0f9e0dfcb3, - 0x3fe22771e304cc30, 0x400e9afbaa037906, - 0x3f936bc91f4bfda0, 0x3fe304206cef3256, - 0x4010f4785d04db50, 0xbfa0985dd8299b60, - 0x40085d60c34e93b6, 0xbfbd9c16172d9600, - 0x4001d9f00aad31a1, 0x400859235ecb9f5c, - 0xc010c6e1259834d3, 0xbfcb534e0a530bcc, - 0x3ff370e5f5e98526, 0x3fc07e6f3910c4d0, - 0xbfe99de69c17051e, 0x3ff3e65b519eee14, - 0xc0078fc291c8b2c6, 0x4007741db040dba8, - 0x401324bdefb9fa6c, 0x4004bd7f74203d17, - 0xc000260679c878bb, 0xbfffce7b6afcf9a7, - 0x3fcb47a1d642c1f0, 0xbfdd10ccb5df320c, - 0x401039dde8ebec2b, 0xc01be4168ff0c23c, - 0x3ff0732be35733aa, 0xbff91ff2e9f81168, - 0x4003a867bc3fbc58, 0x40022a5f20875c2a, - 0xbfca7f7ef96fdad4, 0x3fe3a458257f73f4, - 0x401281c37ee62717, 0x3ff086c8248fc9cc, - 0xc01403cbfcfb2111, 0xbff03dde57d5d7ef, - 0x3ff3bc0f983a005c, 0xc001dde601101814, - 0x40007077730fa08a, 0x4000841bc7af8e6b, - 0xbfef09bff6da8ee8, 0x400b34bc476abc8f, - 0x3fe03eba07974504, 0xbfdbfa3018e4939c, - 0x4004346c7fbf8906, 0x4004d51e5ba0dbf9, - 0x3ff61abc649b9fe7, 0xc000a945aad05354, - 0x3fbf89023ec82ce0, 0xc006cb2cc55b1e7a, - 0x400a374261311ea4, 0x3fc0148d33ce9534, - 0xbffa9526347d5b99, 0x3fdfb3c48d72e730, - 0x3fd363bc53c54b5c, 0x40020a46ac47b25b, - 0xbfe934ab14b1e1d4, 0x40073b0171ab9a20, - 0xbffefb57395bf7f2, 0x4005d444f3c240ed, - 0x3ff8b54a56794ce9, 0xc00ac7348503ba43, - 0xc006e0b578144685, 0x3ff428ad07eb0302, - 0x3fe743bcb12ef62e, 0x3fe8233e46392f3c, - 0x3feb288943318788, 0xbfd25b1a02157672, - 0xbff28f292e53cafe, 0xbfded120e237a028, - 0xbfdb27f342ec0f44, 0xbfb02f584ee853e0, - 0xc00dd50bc095a99e, 0xc0057d6c5c840680, - 0xbffdb556521540c8, 0x400e20fa73639cdc, - 0xc0020c3a4285d6de, 0x3fec5129c0f4b7d1, - 0xc0055380a7bb29be, 0x3ff1095f301fda7e, - 0x3fc28b6132a37f70, 0x3fe38f1f6c6382d2, - 0xc007fc0584c2704c, 0xbfea8bf163fe9d7a, - 0xc0005045bdc376f8, 0x40060eeb8cd51b12, - 0xbfff4c294962ae70, 0xc010b2013f690457, - 0xbfde8cd71cbd7464, 0x400e27badae73364, - 0xc006677d6b8a1944, 0x4007af660e661a3c, - 0x3fe749474078d268, 0xbffd25a3d2abe210, - 0x3fe6fddc420371b8, 0xbffd6a37e5a6e703, - 0x3fe6ad47c3666e24, 0x3fe297c3b25f8874, - 0x3ff10a337b538f13, 0xbffa6ebeffc33a98, - 0x3fb7cd577c4790c0, 0xbff2fee42b9c8776, - 0x400998092d69deb6, 0xbffe46f3d1c8cd4c, - 0xc00e182ecf6da4fe, 0x3ffe83233bc23084, - 0x3ff079502cf0b242, 0xbfd948f29d525168, - 0x401f13e197e2e0d6, 0xbfd3656337494538, - 0xbffdc991022e394a, 0xc004724e2ccb40aa, - 0x3fe78835eb9327c8, 0xc00f802a53f1588e, - 0x3ffd40a3f6cc2b5a, 0xbff58e64e4c05dd4, - 0x3f788c4afe61fe00, 0x4000e42ad114c5ee, - 0xbffbf22cf5843da6, 0x3ff3398156b81cae, - 0x3fec5a809993146c, 0x4011289cc564b5a1, - 0xc0020b2539d008b2, 0xc0068180538fdf26, - 0x4003d9c263e772c2, 0xc011afd26ae77628, - 0xc007cc24b74ec56d, 0x400576a9c8bb3b09, - 0xbffb28ce6a2e2382, 0xbffed6ba01d0adc4, - 0x3ff2c18c9da33b56, 0xbfc2f315925d340c, - 0xbff14fe638890f42, 0x3ffa7d8e69f6c392, - 0x3ffc4039c1a55309, 0x3ff1940f36cfac98, - 0x3ff5092fb1d9a583, 0x4004bfe652895938, - 0x3fe57433002dc2d2, 0xbfd83f37b9062b64, - 0xbfdff51db7db9a58, 0xc004fbd8c0d39eac, - 0xbffdd359f2acc9b4, 0xbfe95f917d332059, - 0x3fd9735153bd0b88, 0xbfff416ef60fe208, - 0x3ff5bc34515f1820, 0xbfaba1fcb31934c0, - 0xbfddb5b2277d67d8, 0xbfcfc9349ec82ba0, - 0xbfeef934507cbc8c, 0xc014fe64d2b9c232, - 0xbfe9221701ab481a, 0x3ff338a01938ab91, - 0x3fd531fd7503ca74, 0xc002d36335166f68, - 0x3ff4f593a5c69247, 0x3ff5771731d2acb0, - 0x3feec4be66c8949c, 0x3fe02ad28fb57028, - 0xbfffdee37812df68, 0x3fffaf2431558a05, - 0x3fdac2a1ccad664c, 0x3fe2876ce8c439c8, - 0x3ffaa3148a688067, 0xc0005d048d30cdea, - 0x4001c4bf2265df08, 0xc01b1cb919f4341e, - 0x3fe6faca6b7c9d6b, 0xbffad3c12dae3d17, - 0x3ffc218a0cf98ea3, 0x40096faacb761bf4, - 0xbfeac539f8c4a2b4, 0x40030992fe9f0a09, - 0xbfbae1e9d6dd9db0, 0x4002c476bdaf87e6, - 0x3ff92e3d478845a4, 0xbf76087e998f4400, - 0xbff502f4a4efe1d9, 0x4002080d33c1c928, - 0x3ffefab2dd9b9a7f, 0x3ff0dee7227b616b, - 0xc0052da62290baab, 0xbff94b4864dac0cc, - 0xc00ed0221ef5bc26, 0xbfc835e650e0670c, - 0xc00cef0ac7e5ab37, 0x40011b53baaa2e57, - 0x400d3b1775a8060b, 0x3ff7cc2709ec3ad4, - 0xc007a33126222c55, 0x3fe1b66d0116568c, - 0x3fcd020868d316ec, 0x3ff6c4f3ff2af410, - 0xbff4fdd66d2c005e, 0x3fe1b1ac3c32ab54, - 0x4016c6e31c5fec48, 0x3fe88a3bddce98c7, - 0xbfdcc093ff6ecfd0, 0x3feed321f2a656ae, - 0x400df043fb2de9b3, 0xbfd8427bc4eb3dd0, - 0xc00d05f1b6e8ecae, 0x4001baa770d64e9c, - 0xc0012f9896f5c225, 0xbff5ed5abf2bab72, - 0xbffb0eff52923a49, 0x400a9e0f1f9fae2d, - 0x3febaaa9b821b413, 0x4007f4fa0da3325e, - 0x400fc20b81dd46ff, 0xbfe2cd3e059b823b, - 0x3fd04223fcff6780, 0xc00e0522a6bed3e6, - 0xc00b602e8f867182, 0xbffa35ee78b63c4f, - 0xbfc685f05a3b5b74, 0x3fe82396674ce06c, - 0x3feebbf1eee59764, 0x400075fb7ff1a7b8, - 0xbff260b8b40f526a, 0x3fe92c9067315426, - 0x4002b351e995ac96, 0xc00037b86763f611, - 0xbfea9acbeb6028a3, 0x40123b65225cea34, - 0xbfe98c93b4319db7, 0x3ff16afbe3f6604e, - 0x3fdd560ddf5e6b80, 0x3fe8e0f9192be286, - 0x3ffcc1a63da74585, 0x3fe439408273b6e2, - 0xc001d7650b986c7a, 0xbfe2ff8957cc3d12, - 0x400fac93f627f3b3, 0x3fd997c2570d063e, - 0x3febf7da7a995a53, 0x3ff7f30ebcbb7341, - 0xc007cc95eb28333e, 0x3fee3572096e6d66, - 0xbfe29577e21bcd86, 0xbfd6a6ad64d47230, - 0x4005f4d5f76a6d87, 0x3fe5ee0487aa4388, - 0x3f8554bf50345dc0, 0x3fe28bc163123f22, - 0x3ff69074b5c71c48, 0xc005fc29286e6cb4, - 0x3fa1941e074a9780, 0xc00014cea4c92501, - 0x40118102d4e86ef1, 0xc00821a4cfac8492, - 0x400afda24dcfc7a8, 0x3fd68fc2ff4c9b78, - 0xbffba5c9159125d1, 0x4018c6c860b7d078, - 0xc0114be3a6f53768, 0x3fed442305bd6e91, - 0x400abc8c85789f44, 0x3ff7d1f88d35747e, - 0x3fff8579262002fb, 0xc00b6bf6694075d6, - 0xbfdd3d9367e10600, 0xbff35ff88f7e22da, - 0x3fff8e08f67f401d, 0xbfff181b0cafc88c, - 0xbfd755fca92b912c, 0x3ff7b860fd1b5576, - 0x3fe5b88837f4892a, 0x3ff564457664fd13, - 0xbfe00678260aff7e, 0xbfe62648ae3342c1, - 0xc000433ca4f8e3c3, 0xc00d6a12e25c8fe5, - 0xc010091ef26fa9b5, 0xc00b614c6d1a7ec0, - 0xc00afe4f830e1bb0, 0x4007dc3368ba0fea, - 0x3fe3866075e2e298, 0x4006e194af86213f, - 0x4000cb592c6f6d2e, 0x3ff5632432d20f70, - 0xbff9e392cb6b4cfc, 0x3fe4b61716fb2fe7, - 0xc002fbdc4a14be46, 0x3ff678a2b772f128, - 0x4000385b85b2e5a1, 0xc007f6b672210bac, - 0xbfd77a40cf9bb582, 0x3fefcd8d9854e386, - 0x3fff6b68072ae8b1, 0xbff285feb8c8a2ff, - 0xc007691c05f64658, 0x3fcb455ff93234d8, - 0xbff1787a84478a2c, 0x3fc4191ba49b2ac4, - 0x4002e1d6c12f2c2e, 0x3fdc5c8b54c7973c, - 0xbffc153f0c304216, 0x400154b8db8a376e, - 0x40026a6f1058a4fe, 0x3fed91511e9d8afc, - 0xbff1ef3328b94baf, 0xbfdfee3862f912ca, - 0x4011dbd8953a6653, 0x3ff7e21f825683ae, - 0xbfba13649181cf18, 0xbfe7407f7f5c8332, - 0xbff576e892ce72bc, 0xbfc666811fe158f0, - 0x3fd73ad2c860dfd0, 0xc01284ff7e3545ee, - 0x40127b81fbe6fe7b, 0xc0001913b8f9fc7a, - 0x4005da0fbb8d722c, 0xbff700afe20c3fae, - 0x3fee1e4e5d9a06c0, 0xbfbb3f938a5ad150, - 0xc005892039e6fe89, 0xc001a4a5eca54058, - 0x3ff7afd4ef8666db, 0x3ffd83b170e44c04, - 0x3fb96df32a24176c, 0xbff97f6cfb435fab, - 0x3ff0978a15016d24, 0x401267d7100c3d7e, - 0x3ff957a08598949b, 0xbff2316d54a67080, - 0x3fff449775e01658, 0xbffa23d808125123, - 0xbff012098ce4ae98, 0x3fd054bbdfbe1c51, - 0xbfe22aa307bd6ebf, 0x3ff77ae080deb96d, - 0xbfff6014e97859a9, 0xbfd16f0ad26ee1d0, - 0x3ff96a608ea89e89, 0xc0026069677219d8, - 0x400848886e7b4af6, 0x3fd7b26180a20484, - 0xbff9793762c3d811, 0x4000f8c34878b95e, - 0x3fea1b3d0f8acaba, 0xbffe2baaa3024968, - 0x3fdf9b806ed4cfe8, 0x3ffa528c85a9e218, - 0xbfccd416f179c018, 0x3ff4500d27997241, - 0x401e3ca8f6833bda, 0x400b181e84f5672b, - 0x3ffaf33f5024e0c0, 0xc007e314ea682b5d, - 0x4008f0605bd46a6c, 0xbff81dcc0a1e1852, - 0xbfe20030908b1578, 0xc007b67e4b0a0940, - 0x400e1a0a4d7b8c0d, 0x3fff8fbe52a68ece, - 0xc003be764c9fe73c, 0xbff355cbbdd38498, - 0x4017675df9a0c918, 0xbff2c72bb04f91f3, - 0xbfd8f1b4368093f0, 0x40088d3b2d803f7a, - 0xc00b8e96d5357ccf, 0x3fc067e4555b741e, - 0x3fd7e2957ddda676, 0x3fea027152e61c04, - 0x3ff2f745002df0d4, 0xc0073d67565ed2b4, - 0xc0023d28f777d938, 0xc00aa7e206b9ee0a, - 0xc007877b9aaf9a37, 0x40091deeeebaa83a, - 0x3fae209a319d1400, 0x3ffa40862eeb06fd, - 0xbff85561f61447f2, 0xbff36de1970d55d8, - 0x3fe43ad4f5e8080a, 0x3ffc6be1c57bb04c, - 0xbfe2ba91d19aae8d, 0xbff99120b5c628a2, - 0x3f72600241071e80, 0xbfd27d97f9470ee2, - 0xbfef656341f8205a, 0x40015052ab685919, - 0x400203e989388e8f, 0x400b6a3b30e9fc2e, - 0xbfe845857ddb72cc, 0xbfdd1e06230056a8, - 0x400bf23939069f0e, 0xc00f7290b638813a, - 0xbff7a4db0540d58a, 0x3ff769252e32d998, - 0x4001e31cab7299c3, 0x4014b361f0c44046, - 0xbfd44857435ab518, 0x3ff7bd866c04ea84, - 0x3fe5f9f672c180ec, 0xc0112178eab97f94, - 0xc007e37d9ea66601, 0xbffd11aef9d2d188, - 0x3fffef98d3420313, 0xbfe3b21c72fb0f10, - 0x3ff4fc644c2a96ef, 0xc00a4bac0fdc4efe, - 0x3fd987f39a0439a8, 0xc0065c43d0387571, - 0xbffb24ff332c268b, 0x400ea66ab74581b6, - 0xbff9f1415f8ad3e8, 0x3fefb751292e98ba, - 0xbfca792efd96652c, 0x3ffdf35607f24dd1, - 0x3fe8f382020f5501, 0xbffd525e02170522, - 0xc000649b847b9dc6, 0xc00aa10fd73fe22b, - 0x3fd4032447ba220c, 0xbffba0ac4342a827, - 0xbff0b4b8a842153c, 0x3fdab82072934e3a, - 0x3fe4723bafd0e958, 0xc008614bbe86a147, - 0x3fdd95dd87de8f10, 0xbfe9aa7abdc85a9c, - 0xbfeaf8ece18e5798, 0x400e0266aa031269, - 0x4012225a6c04b88d, 0xbfc7998c227b2610, - 0xbfe4d3fdfeba4d64, 0x3ffb028eecee4770, - 0x3fd885629256e41e, 0x4010a5900cd45ccf, - 0xc006ee390b59d51f, 0x3fa5c6d766d6e260, - 0xc0075d86ecbb6246, 0x3fe91ded5b1280b4, - 0xc01507cc8527f928, 0xbff33df3075d90ba, - 0x40004b98bd1ffa50, 0x4005cd6cde41b18e, - 0x3ff01cc9b3dc8d54, 0x3ff88b2dd040f8da, - 0x3fe9e8a5b422d82f, 0x3ff366a1693577e8, - 0xc00fb9159a2caf7e, 0xc01348211fe19aca, - 0xc00186ddabe9b369, 0xc00071aea6cda1b8, - 0x3ffe0d3fb49f4f65, 0x3ffa0a62d546d3a3, - 0x3fefba223b6f5d22, 0xbfccc4afcce1816a, - 0xbfe3df3f13b486bc, 0x3fee92f398e2d395, - 0xbfcd1b4e0f6e35f0, 0xbff52d506ce4eb36, - 0x400475d3afc551ff, 0xc00f7262c3296a08, - 0x3ff34a3a4d66292d, 0x3ff4c2c2e3c3cf33, - 0x3fdff40c6e57e374, 0x4008ed42d15293a0, - 0x3feefa591696c6f4, 0xbffaf9d395094397, - 0x40045548cf3600a7, 0x3fc2fef7cae267c0, - 0x3ff148cd39dbf043, 0xc0028360973ff25a, - 0x4003a34f767816ed, 0x4006fbc531abc883, - 0xbffe6dec3ff8f5ad, 0x3ff5af7bc1021b33, - 0xbfbcd33903d5d814, 0xbff1c1c61d5254f4, - 0x40134180144d6c00, 0x4007ff42182d8a8a, - 0xbfe5a85f22b0641e, 0x3fe3b72376efd6e1, - 0x40015a576d398cec, 0xbfd8ce21554ca794, - 0xbffd75232d2965e1, 0xbfb5c1f68e182b98, - 0x3ff8c05964f04687, 0x3fcc3f2b4f61df3f, - 0x40056962d8b8d2e6, 0xbfe9266e16361336, - 0xc00d374867a2a710, 0x3ff6985312de3a0a, - 0x4007622d4f90b93e, 0xbfef70344e3983a6, - 0x40029acc4c9d14ab, 0xc00473467551505d, - 0xbffd0155e4e75781, 0x3fc25a63a9473fb4, - 0xbffc5e2b8146d2be, 0x401c3c94174b66af, - 0xc014717763d3c930, 0xc001766a354d2525, - 0xc0105d12c3834b7c, 0xbfbb9bfa747a0630, - 0x3ffa8cb61d105a7b, 0xbfc5ef1fa6617e90, - 0xbfa7357c61f0cca0, 0xbffe8d08364f5a55, - 0xc00d1362d2836bcc, 0xbfedb77b6166526f, - 0xbff201568eef3b98, 0xc0059234d4568b2b, - 0xbfe29371d796c472, 0xbf982f1ee104d900, - 0x3ff04c2f65466c5e, 0xbfb8468af544bc60, - 0x400e444d02873eea, 0xc004ef3fa8a95208, - 0x4002eabd95a409a8, 0x400b1a9a8acc9e54, - 0x40163a04f3fb7a15, 0xbff2791549296010, - 0x400aa0ad5b455b43, 0xc0044f60d8c17253, - 0x3f90cc503bb7f840, 0xc005150f03aeab30, - 0xbfa20a0540ff8a40, 0x401071e0185378b5, - 0xc0096a4296ba3ef6, 0xc00f4fb316eea183, - 0x400624c4127e2c74, 0xbff92c38cfd7e385, - 0x400109590d366821, 0x4004e234cfeaa7b7, - 0x3fe40ad11f8987fa, 0x3fd725a6f2f83c4c, - 0x3fe5a298cbf9b095, 0x4001771f570cec2f, - 0x4005aa2315311532, 0xbff6091dbfaecae2, - 0xbfe68eb361a0e1cc, 0x3fe2e9fdcb21eec6, - 0xc00e401ba4b22f86, 0xc00393ca4841a419, - 0xbff7cbacc1a5f217, 0x40081cabd3e3a8a8, - 0x3fe8408b5a205850, 0x3fe544f6da169f24, - 0xbfe7777a04fce1d0, 0x3fef374ffa4e8182, - 0x3ff292ff1f4dc5a4, 0x4011af89e04072dd, - 0x4002df53bbb167b0, 0xc010183d06f5327f, - 0x3fad890381f01d30, 0xbfe6483f245625e0, - 0x3fe5e11177a950e0, 0xbfc43888d3c4210e, - 0xbfce533db6e46d68, 0xc008cc2fea798124, - 0xc004749e8f26675d, 0xbffd040addb814c6, - 0xbfe7fdca9b1d9226, 0x3ff5d2374825b8ae, - 0xbff6d1439c00d6a0, 0x4000d573ff2986f7, - 0x3fe6886f97866919, 0xbff6ff944aecb99e, - 0x3fe012d2820b8d82, 0xc00c377b28141f36, - 0xbfc3c40e42631398, 0x3ff56923c41ba44f, - 0xbfe7366d31ad7496, 0x4009b0e83e882950, - 0xc00bbcbd522e42d8, 0x3ff1d91e6a45c0cd, - 0xbffc518ffd956f47, 0x3fba8028bd407a90, - 0x3ff61edb216983bc, 0x3ffc94300fb5ff24, - 0x3ffcc13efad69d76, 0xc0126b4dfcc95c7e, - 0xbff90d31621d4c9e, 0x3fcd6325f7120960, - 0x3ffd76e646b8e8fc, 0x3ff26442755f3c7f, - 0x3ff01c88ecbd92db, 0xbfe9986c033d0dc4, - 0x40067cf1f1e32898, 0x3ff20c2db7bbe9ec, - 0x3fe1e172206b466a, 0xbffd5228508a7106, - 0xc00050b31d10b3c2, 0x3ff094cf003a1e1a, - 0x3ff8510f99466a50, 0x3ff46b93b07783a7, - 0x3ffbfa64cb76f906, 0x3ffd341fe862cde4, - 0x3fe70957ab445cb4, 0xbff7302fc584756e, - 0xc004f1aed3f8d052, 0x400d6909843837e0, - 0xc00df08213f46554, 0xc00253c2c7489110, - 0x3ff9d2ef0108cdf2, 0x3fefcdc6924b869e, - 0xbff15597b19d6559, 0xbffb59361b101580, - 0x3febf3d60da1184c, 0x3ffa8c6e4fbeb1f5, - 0x3ffa2fa886423baf, 0xbfea033888bd49b2, - 0x3fba769aaddba370, 0x400640592ad70d9c, - 0xbffd5f1aeaf83ff9, 0xbfed787a36c22e12, - 0x3fc381de83efdfa0, 0xbff9ca8c2cc87336, - 0xc00864c1ca7c0d04, 0xbfe80d8a4ef7a6d5, - 0x3ffe109bcc31c4e6, 0x400318d488321273, - 0xbfd347d339ed92b6, 0x3ff922a69b2da59f, - 0x3fe2b0c65c81927a, 0x3ff96a72ace9ce35, - 0x3fff859d62fce352, 0xc0066969b7da1584, - 0xc00c7df25a3453bc, 0x400093caade9c8f8, - 0xc008326b24711172, 0xbfddfd993e435cbe, - 0x400a32bc1ce65e64, 0x4003cfdc88da766a, - 0xbfc13eae5158c764, 0xbfe73e3d4bc70c5b, - 0x400f61357aab6e2c, 0x3ffd148b8eda28be, - 0xbfddc43fdb8a4bf5, 0x3fd9ba0a92def8d8, - 0xbff1609302063999, 0x3fcb0ceb39ab1ef8, - 0xbff3ba65e84dd376, 0x40056cef34109cd0, - 0xbfc64f7ba9d2d325, 0xbfe263f3a80ce874, - 0xc0084f3ee0b09ad4, 0x3ffa53a954885af4, - 0xbff3ca4f18a87ae2, 0x4009a5ef746e160f, - 0x3ff05d8dbb4ca41b, 0xbfe2cae7208d5598, - 0x400ec1f1c1199dd9, 0xc0155561010f0c68, - 0xbfdd675b9b4bce38, 0xbffbe6ea427847f2, - 0xbfea6c30a16fc560, 0xc0079d4ea2291697, - 0x3ff5dd7f32b22c80, 0xc0009122b503cc45, - 0x4011bb00c5a3ada3, 0xc0041812136f5026, - 0xbfe4573739f507fa, 0x3fd770a40baff4ea, - 0xc0093f4f0095409e, 0x3ff2a8e3ac86138a, - 0x3ff28c9da84b3e72, 0x3fbff74feff8df40, - 0xbff58d5410203b45, 0xbff50bc6c1fd426e, - 0x3ff02f97b6472ab8, 0x40010c45b112b6c9, - 0x3fe809741b37e5a6, 0xc007c08e045732e7, - 0x40109c8d4501d044, 0xbfed1440b6541898, - 0x4014cdb110b0dc36, 0xbff8ef22a3a604bc, - 0x3ff2ed1bd97005b3, 0x3fc435bb4075251a, - 0x3ffde0f3ee34fb7d, 0xc011cfa450b31aef, - 0x3fe02ff77a630dc0, 0xc00d2631dd40867d, - 0x4003b9fd6a831b29, 0x3fe9b9e806dc8585, - 0xbffa47eb41c1c664, 0x3fe96db2f0015be2, - 0xc004c800baf37c3c, 0xbff77d7601b82ee4, - 0xc0003ba4ce933586, 0xc0039a33e71ec4f1, - 0x40066ca5b97487bb, 0xc0105a66d48c1519, - 0x3f91521dbd2c6c00, 0x3fedfba0fb516971, - 0xbfe11a7148d8ed3c, 0x3fe8daf1fab7f8de, - 0x4003a31242f72006, 0xbffb65460cbe7937, - 0x3ff0dc4b3cf58772, 0x400332abb5bbc0ad, - 0x40017d95204005b3, 0xbff8798283ba3f6b, - 0x3fc21fd71e749f20, 0xbfe20d97e26ad5ae, - 0xbff1cf54a8a3103e, 0x40065e2df08a33e6, - 0x3fdd769535bf5270, 0xc008141fd25555f4, - 0xbffb16f24d5ab8bc, 0x3ff7bcecb604a9ff, - 0xc0037db65d1feb73, 0xc0120fd8f227d99e, - 0xc00c6d86e8e5476b, 0x3fe2ae3b54977782, - 0x40029ede5f9fd71e, 0xbffcb6dcd43567d9, - 0xbff53daad39f0dca, 0x3fd5fd87d687d658, - 0xbfd7908c5103e1c2, 0x3fc051f0506282b8, - 0xc000956b2655409a, 0x400c71ee9672f8ed, - 0xbff81e47c076c8ba, 0xbff2dcd7287dbf94, - 0xbffe5052573daeaa, 0x4013f2c60f844754, - 0x3fe71c7cc31b5874, 0x40001905ddc14446, - 0x40006ef39be31b12, 0x3ffad51c51265127, - 0x3fc45f2d18114ec8, 0xbfe8c8ad1ce0dc3f, - 0xbffcb50e7e8f8bfc, 0xbfcbf5fdc706c1b0, - 0xc0076cf12f1e68cd, 0x3fe2c34b8519a1fe, - 0xc0046e868990efe8, 0x3fdceb333ea1d28c, - 0x3fe05cc6f460117c, 0xbfb51f3bd06515c0, - 0xbfec2978ded05401, 0xbff5f6f82863f7a2, - 0x400cae825b38cbd4, 0xc0008ef9166f3bdd, - 0xbfc1786e3ff7201c, 0x40129b88afd4dc34, - 0xbfc6b4fc8ed199b8, 0xc00032ec4d0679c0, - 0x3fe00521c881c43a, 0x3fe3408dd4af7754, - 0xbfc3528018a72a7c, 0x3ff116e601cdd05e, - 0x3ffb6b4b7b5f8661, 0x3fb5f6a357fe1de0, - 0xc003b0c63797eaf4, 0xbfe66d85213eea24, - 0xbfe12943e71dca40, 0xc00be39f077b3b3d, - 0xbff06baea649da1c, 0xbfe9ac27ae194320, - 0x400389d1a6c0c9e7, 0xc004997ef046dc1d, - 0xc0035ced523a3702, 0x3ff2ab07901370cb, - 0xc0106fd42fcc827b, 0x40024e5b577d7cd9, - 0x3ff2e7edd59c4078, 0x3ffff0db58eed50e, - 0x3ff8e1082bd4eed5, 0xc007488e336b376f, - 0x3ff2a6d52e5de221, 0x3fc17c50d593a1ac, - 0xbfdd2a8d07cc9286, 0xbff31bd663bc4024, - 0xbff8f3d896b2030c, 0x400bd4dbeb24ae0e, - 0x3fcd53bb45796170, 0x3ff819a53b18f41e, - 0xbff61eb000207dac, 0x3ffd88c416ca5c86, - 0x400e5333e19b73d8, 0x400028a91e073dcc, - 0xc001ff86435e32df, 0x3ff38c9c835dbbe1, - 0x3fceb132bd9a0168, 0x3fe494ac7c1faade, - 0xbffd29d1934c2829, 0xbffb7bca61b26e48, - 0x40048649fbc7384d, 0x3ff1674f4f1b3779, - 0xbfe01defba4f7336, 0xbff05d3026f424fa, - 0x3ffc090fdc2af9b6, 0xbff7880703df86c4, - 0xbfa2ef928de430d0, 0x400ac12608231382, - 0x3fe8ed0d2b332730, 0xc00d9c8ea07c709b, - 0x4006816af5793e82, 0xbff12b11af621054, - 0x3ff222c585d0ff10, 0x3ffc4c7f0aba4036, - 0xbff163a6d984007a, 0xc00167cd34058338, - 0x3fe05cd9a6bfa966, 0x3fefeb8270cf5a58, - 0x4001ec4959cdaca7, 0x3ff734c14c07d42c, - 0xc012078810f0c20d, 0x3fee77a1aae63f56, - 0xc00b558d43462d89, 0x40100665b20ccba1, - 0x3fc851e4c324b8f8, 0xc0082894841b6896, - 0xc000003e90a48558, 0x3fe8064042af8670, - 0xbff06780104a54e6, 0xc007d167b60dfc4b, - 0xbfe57a034c9a89a0, 0xbfe01f7b8461713d, - 0x3fe8a124903b90fa, 0xc01106fef3776c68, - 0xc001b4e31d0d7bf1, 0x3fe2b19db127bf16, - 0x3fe3df4066f7a190, 0xbff999e51e2ad40c, - 0xbffc9c37b5485f02, 0x4005a107949e13e7, - 0x4009aa5763466635, 0xbfefd99bc70170d3, - 0x3ff425f7229d2291, 0xbfde659463802f4c, - 0x4000fd6b353199b0, 0x3fb175557d5b6c20, - 0x3fcf4c74fd86f258, 0x3fb9f960496e2980, - 0xc004b30aa456d6a5, 0xc008ddbaf7325f4f, - 0x3ff3f775b6c55b75, 0x400ba640aaa54f7a, - 0x4011d0d17a60d1dd, 0xc00733af9e92051f, - 0x3ff6492eb5306836, 0x3fc8c5faa8a85a68, - 0x4001d122743f6690, 0xbfe9fa395c030990, - 0xc003983c809fc8dd, 0xbff044974ab72da8, - 0x40136b17faa6bde8, 0x40021c5152c0e688, - 0x3fc35f6f869d79c8, 0xc0085187d1c455d4, - 0x3fe0dd6139234144, 0x3fd0084eccf2f888, - 0x400c2c8debe3e845, 0x3ff20bce91e84d76, - 0x400629f709693a14, 0x3ff090966fd5eb95, - 0xbff67ead6423be1e, 0xbfd6426624816890, - 0x3ffba046dbbd5e00, 0xbfdded7512b57474, - 0x3ff23ab1716c00e0, 0xbff796e7c92ca788, - 0x3fde3e87aff26c54, 0xbff89399cd17614b, - 0xbfe2506c6dd1c8e8, 0xbfe8e6ff003d8428, - 0xc0026dc4175ecb24, 0x3fc38aa9b0875778, - 0x3ffbc302f40718d8, 0xbfcbc7fda98b0518, - 0x3ffdae5f809541d2, 0x400a2c80a270b93a, - 0x400203e9b78bc463, 0x3ffcb56fe3a2c08e, - 0x4000ec7d34d33ed1, 0xc0008b0945c1b941, - 0xbfeb159791d5b967, 0x3fe2e2ccbf12aa71, - 0xbfe5e3c216dd74c0, 0xbffe33ab06c3ff09, - 0x400ae2e006e0ed58, 0x3fd4db7bcf74da58, - 0x3fe442a633217076, 0xbff1b1cd8eebe634, - 0x3fb1de3a0ec7c4d0, 0x40019a58e285c3c7, - 0x3fd62873dcf92060, 0x3fd4d6be6cd91b80, - 0xbfe7a0de9a1d8d9f, 0xc0081cfaa76d42b4, - 0x3fcb0a024d007068, 0x401119e8fbdb51b0, - 0x3ff6035956b10495, 0xc01c0feaf4116c78, - 0x4001cd1577374713, 0x400349a9a4593261, - 0x3fcd55207407949c, 0x4000c722821ff2f8, - 0xbff762ca65a370ce, 0x4009906b61aa3418, - 0xbff5931979854946, 0x3ff82d32c1d9a8ca, - 0x3fecd42f7d72d70e, 0xbfff1d50657b3db6, - 0x40051058768fe01b, 0x3fa0949a665c52c0, - 0x401049facb9376fd, 0xc00472696ef65a7d, - 0x4004c839c9b59ca1, 0xbfe2677715c07434, - 0x3ff8c2de9ee370c0, 0xbff8271673eb44c2, - 0xc00862979db84e4a, 0xbf98bf393e98c200, - 0x3fd0fd182bee47e6, 0xbfe3e5cdb5045f36, - 0x3ff1c6a5aa96a500, 0xbfe973270d2e9c28, - 0x3fc3b04ab3783508, 0x3ff52a7f41e5f02d, - 0x3ff4b9f2b0dd8a67, 0xc007054b9bda16ac, - 0xbff827c2531ad158, 0xbff4a78f0ac8e48f, - 0xc00e44a8d51efb45, 0x40055ea42df96197, - 0x40139d9db6fdac2a, 0xbfbb8b29700adf70, - 0x3ffda61c26da16dd, 0x3ff7a186901cfdc7, - 0xbff5120b3771982c, 0xc0016d7966af0ae3, - 0xc002cc41cfd288f4, 0xbffdedc47c776014, - 0x40034659308c3b3b, 0xbffd1ec3d07f32e4, - 0xc00c4dde13192e1d, 0xbff6767b9af47932, - 0x400e0f87663b7e21, 0xc008cf46d487bbeb, - 0xc005d93b595e0024, 0x40011236c61cb780, - 0xc005d134fd85d4d4, 0xbfe262c11105bd30, - 0x400d2409afeee851, 0x400a1fd2d4f45086, - 0xbfd77e5414c6ec94, 0xc0026f31f0e6b73a, - 0x3ff0db4947efb2a3, 0x3fe6761cd52536a9, - 0x3ff7b7f05fbe55f4, 0x3ff196c9c60c0ac3, - 0x4002d3fb410b530e, 0x3ff38d2509063514, - 0xc0055a966aa89953, 0x400c6ee47ac4be1c, - 0xc00102fbb3dc7ef1, 0x3ff956897c2eb7d8, - 0xbfab0ad357fe2a30, 0xc01109b336d3cea9, - 0xbff7808e0b271292, 0x3ff74924e2850aa6, - 0xbfa072afc3310720, 0x3fe82091616dac58, - 0xbfb497e5d56a4c60, 0x3ffab09d92be7752, - 0x400b851b8e03a9a9, 0x3fc346f5e7517bb8, - 0xbff2e17d051a1f61, 0x3ffe62cb769316ba, - 0xc003c19b256268f1, 0x4002a68d84faa5e9, - 0xc00676d9d4808baf, 0xbfd429bf434c12f8, - 0x3ffb78fd4fd05d1c, 0xbff9a5b1fcb87afa, - 0xbfd939c35ece0f22, 0x3fd009e6eae38a8c, - 0x3ff89ffa4c606dd9, 0x4013d16b6713d48c, - 0x400ad23d0da8e9a0, 0x3fd2c0f24de2999b, - 0xc00eacca18b1f946, 0x401cb3f76653546c, - 0xc0064c20b4eb2914, 0xbff310a69a4b9926, - 0xbfd28bad68b3eb58, 0x400169b18a5f1f68, - 0x3fffdb802a878e76, 0x3fe47e9f456718ce, - 0xbff1dec04d653a30, 0xbff4fa7e0464d7ff, - 0xbff0860213141d3a, 0xc0033ab3f37f2696, - 0xbff7917477aa6422, 0x3fde8864be906072, - 0xbfe202b31792c978, 0x4015c45a1234bfca, - 0xbfce803889e6bd58, 0xc00023e4a5a68246, - 0x3fe6ff0618bd5b3a, 0xbfdb886301e9c6aa, - 0xc0117dfb68c7ad5c, 0x3ff40b0c968a12b7, - 0xbfdaf48f04f9b0c8, 0xc00087d2a23ec694, - 0x3fe464b0b4abf042, 0xbff52afafe8a300e, - 0xc0064e0a31e58ab8, 0xc01139baecb97609, - 0xc002dea269d9546a, 0x3fe9f329105eaec6, - 0xbfe597d376ab2874, 0xbfc7c6b87f4ae730, - 0x400cd9cf4a1af2ae, 0xbfffd43aede8f656, - 0xbfe82379553e5a0c, 0xbfeb1532cee7a282, - 0xc00542a0d64b4780, 0xbffceab106dc55f2, - 0x3ff9377be59688c2, 0x40034eabd15c7519, - 0xbff8be7a0fb0668a, 0xc01a33cbb284aa52, - 0x3fdbbaa2be45873c, 0xbfb49c3a0a852960, - 0x3ffce58e739df18a, 0xbff2db4a74840f6a, - 0xbfb1ad5c032fa790, 0x401a65bb4bc37df3, - 0xc0058198b429af76, 0xbff01bc5b5fe1362, - 0x3fee57bcf42efd6a, 0x3fe35b39c6833db5, - 0xbfbdc13c66a27fe0, 0x3fe27e9866d049e4, - 0x4015a77c2f4de324, 0x3ff1a480f359c419, - 0x3ffb2f929ac4fb03, 0x3ff255a7bd691900, - 0xbfe1e809b11a6d50, 0x3fcb20c12c6811e8, - 0xc0047e30072bad8f, 0xbfe0df4b86f92eca, - 0xbfccb93a9fe51828, 0xc0047ef3d3b92001, - 0xbfedcbb16b591404, 0x4010903859f42b2b, - 0xbff6024fa203b87a, 0x3feae14d9e4bddca, - 0x3fd086d2dacdf66f, 0xbff8bcd59f0e44c0, - 0xbfd81ad424841daa, 0xbfd488f5d214f0f0, - 0xbfe08370d197784f, 0x4003958a28460bb1, - 0xbfd81e60032beff2, 0x4006630a4660c58f, - 0xc00859f443c1c599, 0x3fa9761e152e4060, - 0xbfbe48b3a52d602c, 0xbfefbba3fd1361ce, - 0x40009d6d1e11b0a0, 0x3fe34baa6246128a, - 0x3fe39a7a5e10f215, 0x400ecaea6c795df1, - 0xc010caa47d741ab2, 0xc0156ece9d480f12, - 0xc0105c9e3012824d, 0xbfe1401da0e60664, - 0xbfd6275bf0fddef8, 0xbff30f79fbdcf4be, - 0xc00a951e599655ab, 0x3fe5bd69f9af865f, - 0xc00d1e70a94247da, 0x3fe0237564a10bc6, - 0x3fb1609cc3621c10, 0x4002ebe086c20e82, - 0x3fd0116fa94e6554, 0x3fd7e41921cd13d8, - 0x3ff8a424cabb2b05, 0x4001474b4a174437, - 0x3fcf578594d94b20, 0x3ff65e9d3bca9bc0, - 0xbffb3aead3983144, 0xc00d10274783c08e, - 0x401490ab34dce537, 0xbfcf83a37414f81c, - 0x4019ba2497b495d4, 0xbfde08d7b8f7c6f4, - 0xbff82c5c8006304d, 0xc010d98778d5a7f6, - 0xbfb7b3da970dd900, 0xc0053a28139331eb, - 0xc01919eab419af76, 0x409661fb2a20188e, - 0xbff667c113066cab, 0x40052da18cbbc66b, - 0xbf970620ebe33400, 0xbffccc15a3014997, - 0x3ff82c5cf1ea2ec5, 0x3ff7742baf0389a6, - 0xbfeaf2e6e18c6475, 0x3ff62e4cf62c5e3d, - 0x3fd432b88e428f10, 0xbfb8cfa376b60780, - 0x3ff3ce0c8c5603ac, 0x4003824c5a0df244, - 0xc007d39597144be6, 0xc0047f8aed5d8d36, - 0xbfb30c5ea6ecfa84, 0x3fff0ae7344def04, - 0xbfff21f27d4286da, 0x3ff0e6b1944b97d8, - 0xbff9ab71aa7d522e, 0x40112fd495366a82, - 0x400354f90c57b279, 0x3fe3db3f1b5dd694, - 0x400a3e5e2f08ed0e, 0x3ffb26a9b1206c9c, - 0xc004fb8dff907b02, 0xbfe0436e8ca190b4, - 0xc002cb094baccc25, 0xbff6fd40832654a2, - 0xbfd677c74515b308, 0x3ff6246c1e19771a, - 0xc0079faf6b00488f, 0xbffa91da96c45f1e, - 0x4010ab0b641a2dac, 0xc01082d1d7136abb, - 0x3fdd2aa433b31110, 0x3feed3813acdd23e, - 0x40008c5cb7ee9892, 0xc004215e91b4351f, - 0x3ff493be9fae43ad, 0xbfe59cdb71a3a38e, - 0x4004a26ef1ecc99b, 0x3fe6db287c73e4e0, - 0xbffc09c8a950931a, 0x3ff48980e18786ac, - 0xbffb18c878e34ce6, 0x3fd93d3082f9706a, - 0x3ff245959d6eb9a3, 0xc001019598c15286, - 0x3fee2fb7884d88c4, 0x3ff6c09b61468566, - 0xc0020f86fb73ca32, 0xbfe2331dab1ab14c, - 0xbff0f7442566040c, 0xbfe99dabb46a9f6e, - 0x400536bb4ef8d326, 0x3ffd35bf733ee599, - 0x3fe6442302706fee, 0xbfd73bb4b02b2b58, - 0xc000940b3ce262e5, 0x3fef8e0581a87ae0, - 0xbffa86fadf12ead8, 0xc01033b0902e2ea6, - 0xc003dc498b4236bb, 0xbfed0f5f6dc2eb95, - 0x3fc762b984bf7ff2, 0xbfe185f2bf5ce1c1, - 0xbffe64d75ed937d6, 0x3ffa28642743d31a, - 0x3fccb82d0115ac80, 0xbfe9e2758aca3f0a, - 0x4004ec28b5ee2fbe, 0xbffd34531b004324, - 0xbfea8228afc0b5c6, 0x400187e6a2e8dfb0, - 0xc00996b0110daf9a, 0xc0018731c34539f5, - 0xc00d7e5aa3bedf9d, 0xbfee11a637a7ac0f, - 0x4000a14fe8853fcc, 0x3ff3ad1cfeb98c53, - 0x3ff3120df4787b3a, 0xbff3127edd538bca, - 0xc00eb310f6e863ee, 0x40044f1ba8212c6c, - 0xc003fbe8eb5bf5f0, 0x3fd1fbd2532e25c4, - 0x400863c522b50147, 0xc006a89753df3571, - 0x400303af85ac93b0, 0xbff63e7557c84a1c, - 0xc00422748020565a, 0x3ffc1838a8e58b39, - 0xc00173c4d2b78841, 0x3fe436a5ab95ca71, - 0x3fff4c3a7853b904, 0xbfeebdd73fa3e81a, - 0xc003802135422f5e, 0x3ff1c4414098ebf6, - 0xc0048ca6c03d964a, 0x4016d788452946da, - 0x3fc583a312b170bc, 0xbff729fdc6551fa4, - 0xbffae439faa4f37c, 0x3ff77cb39389f18e, - 0xc005b1eb592e1166, 0xbfdf4ad0f5b30502, - 0x400f7f6b404d2e09, 0x3ff3e3f4b43bc5a5, - 0x400220d1a7597092, 0x4011eab947799dc2, - 0x401114e2729f5bcd, 0xc009edc52e62e886, - 0xbff756a5c9f56718, 0x3ff67715be989c97, - 0x40120eb2b60b84a4, 0xbfe80b62efd8484b, - 0x3feebcafcfac4c19, 0x400c1e5827fcfc80, - 0x4007520f20063033, 0x400875738e1f4a5d, - 0xbfd53edc8a4f9662, 0x3fb543949c284a54, - 0xc007daea678c94da, 0x4017e2ec0b579ef2, - 0x3fd48ca43836cdfe, 0xc010569cd8519a52, - 0x3ff7aa4c2dacdcc4, 0xbfd94ed03c7674c0, - 0x4002163c1d0ba58a, 0xc002932df46a1fe4, - 0x400ec7d9f4a58aee, 0xbff40bac22fc8bf4, - 0x3fbb72ae501768c0, 0x3fa5a4668b08ce80, - 0x400223bc4eced590, 0xbfe7abdd8bab8417, - 0xbff7172eb4c1b863, 0x3fd184e8f10e0a1e, - 0x4013ba52f2759e8e, 0x3fef0e74b61b5d0e, - 0xc0059386ee3e5175, 0xc001972d598050a2, - 0x400ce896356c6e27, 0x3fe79db602068920, - 0x40004fd6014307b6, 0xbff1e0e94d91e12e, - 0x3fd329e99c1c310d, 0xbff21b7bd784e8ee, - 0x3ff149101ab5822e, 0x400b05da19002d0e, - 0xc007a88cddead8fc, 0x4003bfdb0e32966a, - 0x4016b848363f8597, 0x3fd398041fb2b80a, - 0x3fe1ee78b1002019, 0xbffdab260a0093d9, - 0x400382b2f78fb892, 0xbfe3091f19751985, - 0x3fee0a0b1d55160b, 0x3ffd86272c649f7a, - 0x400713e860e403b2, 0xc010e7d6fd4fcf20, - 0xbfd9b05d07317058, 0x400ece112f035cba, - 0xbfb56aa70c9cb690, 0xbfcbff6bb9050edc, - 0xbfa8f22d26cc89c0, 0x3fe76e454bc3e7e0, - 0xbfe4748210e3ed68, 0x3fe3c3a8260a6f0c, - 0x401531cb819f042d, 0xc0092585225d6b14, - 0xc0116885c305654e, 0x3ffdbecea85b07fe, - 0x401838f5395db66d, 0xbfcd791d54e40e48, - 0x4012da56652b1350, 0x3fc9301004fb9a90, - 0x3fda50f337e6def7, 0x4018bbac0b652bfe, - 0xc003b554018fc653, 0x4010f5902c34ed19, - 0x3fb20bcc6346a018, 0xbfce6f3ed18afab0, - 0xbff39d96cb473946, 0x3fb5f6e2c3912910, - 0x400787b200071c25, 0xbff3b1b1653f464a, - 0xbff986bfd16be2ac, 0x3ff9842ee0869abe, - 0xc00cca00ec70cf0a, 0x400570bc5b5e1ff4, - 0x3ff0a45992346476, 0xbfd0602474e0aada, - 0xbfe564270f4575ba, 0x3fd92e54a9eb2c38, - 0x400f1a732fd96706, 0xbfc0948f8908f640, - 0xc0139d2bd1d00bee, 0xc00078d228b9a0ff, - 0x3fd4c18221cf258c, 0xbfb184d0c821e338, - 0x3fee543059b8e7df, 0xc003babe8d4026d3, - 0xc004f5fc71d49035, 0x401305bcba58ae96, - 0xbff05c98c207de15, 0xbff6ccf51a5416ba, - 0xbff265f5cec8b31b, 0x3fff1e74141b45f0, - 0xc00aec64c1f04fb9, 0xbffd1db85af74fc4, - 0x40060450a350950a, 0x3fda759feea4ac88, - 0x4000a410987099a6, 0x401e15a0a5eb8024, - 0x3febfa5a2db11d24, 0xbff5a917d9f69096, - 0xbfd444a58350c637, 0x401410f6a460f74e, - 0xbfd745baac75db10, 0x400faaeab7342ff2, - 0x3ffc802d75a4a2ea, 0xc0131f5476797329, - 0x4005efe18d21816d, 0xc00625e3ab091011, - 0x3ff2f5b15cc53d11, 0x3fb04e7a70b2aa54, - 0x4003d53f51f04be8, 0x400f01110f270cb6, - 0x400351a03f40924e, 0x400aee6729daa78a, - 0xbfc30fac231e81c8, 0xc0013392ffd3a751, - 0xbfff2525854a84a6, 0xbffc0cbfeb723830, - 0xbfd500ced242f378, 0x3fd8f15678719d82, - 0x4015304ce2378331, 0x4008fcc2a3ca008a, - 0x4002a7ba133df790, 0x3fe8464943a3877c, - 0x3fe7126ce18bf2f4, 0xc002b621114be155, - 0xbfa805c31bfb3b58, 0x4000c06786ed0bc1, - 0xbfe2d39ac8d9d81a, 0xbffe58793b62e5a4, - 0xc013d86639f5d05e, 0x400f49f78e37a236, - 0xc00b569b53235506, 0x400ab2958d3717bf, - 0xc00816f72bf3cc41, 0xc000a40692ca09c2, - 0xbfe02558c9d6d654, 0x3ff04bafa49bbdde, - 0xbfff077bdf40eca8, 0x400846065bc2281a, - 0xbff27562e3422df2, 0x3fea4243310610ec, - 0x400cb42b52eb98d9, 0xbfcdf0feba3225b0, - 0xc0099c610cf85cb7, 0xc0112e1f53912815, - 0xc000b676501e6301, 0xbff5cf09bc5899d6, - 0xc00b678d88a0b55c, 0xc004db708accaed5, - 0x3ff4cc0ccf10431c, 0x3ff11f4ccb29c6ce, - 0xc01e0869e000ace1, 0x40036538bf8f7250, - 0x3ff216755b966801, 0xc0019a9932435eee, - 0x3fef5647ed6da74c, 0x3ff77aee1cc0edac, - 0xbffed74d9efdbaac, 0x3fff8ffdadf187cc, - 0xbfee7aa68385aa12, 0x4007e012500c940f, - 0x3ff787b3659ee5f4, 0xbfe60ea0010ae000, - 0x3fe1de3a61f62cf2, 0x400dddf3c644cc08, - 0xbff3cc3b9dbd026a, 0x3ff2412e4903a504, - 0xbfe5fd7e4e9bac36, 0x3fe0a421afe8f70e, - 0xbffb066a9371c231, 0x3ff5aaad6bf45e29, - 0x3fe424baf72ba561, 0x3fce7bae9c6821d8, - 0x4006f2769779ba1e, 0x3fef90333dcaa03e, - 0xbfe2a6ee626bc0e7, 0x3ff4fb2300401559, - 0x40118f59528c76fa, 0xbfe56114f502712f, - 0xbfddbf8fda2e7ea8, 0x3ff50cc80f81a664, - 0xbfae923612b4b630, 0x3ff9c6951ff15ffe, - 0xbffa43d237aba7d2, 0xbff7104c2095e5c6, - 0x3ff538d4c7c7cec4, 0x3ff100ee79ec1535, - 0x3fe4bb764baf9136, 0x3fc9f07caaca8c10, - 0x40045a21edd91470, 0x3ff6114ef81a26fc, - 0xbfcc5d44b6306152, 0xbff1b886a9994dd3, - 0xc004ca7ae5e1a744, 0xbfcc8cd169be09f0, - 0x4001837c36350449, 0x4009268290ff8f5a, - 0x3fea5264739d20ae, 0x3fe2483b01cedae2, - 0x401512718f65c33e, 0x4003b142cd53da50, - 0xbfe2a7ece143ff5e, 0x3feebcbf1ba848c8, - 0x3ff5c8def951af19, 0xc00443cfb41c5d4a, - 0x3ffa0fc5111db996, 0xc000cf717ee37f5b, - 0xbff510985b91afbe, 0x400d457b73ec156a, - 0x4004fa4b8b8603de, 0x3ff5edc9af040e51, - 0xbfbc307a1c5c3280, 0x3ff233628887f62c, - 0xbfd960fb093f9a5c, 0xc00579a8936af0c0, - 0xbfe7a1de064b8755, 0xc00c9a00a486b9d4, - 0x3ffcb3709c7442f6, 0x3fe1027889a4020d, - 0xc01cc983103bef84, 0x40168b87e27645e0, - 0xc005afd77186fb63, 0xc006569ef49e7dbc, - 0xc00461582c32415a, 0xbff55c529976534b, - 0xbfebf110d405b67e, 0xbfb874eb51d93a90, - 0xc00585ae0fda3586, 0xbff196284dc0db78, - 0xbffb65945b7d0316, 0x400f5218ef536082, - 0x3ffcae02e0a319c5, 0x3feb319bd368c1a6, - 0xbffcf49f3acb8ed8, 0xbff4aedc898f0a7e, - 0xbfe59fcdeb84e927, 0xbfc65ac63dd9d1a8, - 0x400eae9903517f20, 0x40077de9b802e616, - 0x3fedf771399ae096, 0xbfecd890c79f3eea, - 0x3fbca838cbbbacd0, 0x400d437e15f5fed4, - 0x3ff06d5854182dea, 0xc00467c6bbe21981, - 0xbff79413bd969c20, 0x40118ce764e98de0, - 0xc003a3c08eaca30d, 0xbfec10febc7b8d78, - 0x3ff040048edb5b8b, 0x3fefa80b38f76cc3, - 0xc004a21e9c6228e5, 0x4002c061c8463c95, - 0xbff26eb1b435ae1e, 0xbfef6e7bbeef97b5, - 0xbfff314570f6e354, 0xc01c43f667cb5033, - 0xc0068d8592e06dc0, 0xc001298279c76878, - 0x3ff5aeff64aeabca, 0xc0166cbef49a8288, - 0x3ff0193a2a1f8b13, 0x40165f4b53e5dae0, - 0x3ff75cb43afed7ba, 0x3feb0e2b9b2b162c, - 0xbff768bd50902f24, 0x3ff19d2adb1e73b8, - 0xbfd7334389913260, 0x40023fd1402c8474, - 0xc008c0a500d5d957, 0x3fde7256bc35bc32, - 0xc0132100c2fc1474, 0x3ffebc43439a4b82, - 0x3ffe067df256cd34, 0x3fd56d3807e83896, - 0x400163c392fc2106, 0xc00a5f7234e25064, - 0x4001aac6d88f5421, 0x4007d186e42e8e16, - 0xc00948fe4ac992ee, 0xbfee150ffd53fcab, - 0x4006c6d541ea2422, 0xc0019ef3ee33a74e, - 0x4012970709eaf494, 0x3fcec7668947bdd0, - 0xbff672a9979abc06, 0xbff8c2c1e4920a70, - 0xbff3f615b41eee3b, 0x400175b590291939, - 0x3ffb572488ec83e2, 0x3fcae67480d2e8d0, - 0x3ff161c4429f0b7a, 0x3ff771e24cf01826, - 0xc0045dbbf1118b15, 0xbfed3801f7c2fcda, - 0x3fee967c7b736290, 0x3ff25d86bd513d90, - 0x3fd6ae4574fd37ec, 0x4001f8f933b6f42f, - 0x40019fbe5a27d97a, 0xbff21806386e1604, - 0x3ff3e2ac063a1483, 0x3ff06ce0c929d07a, - 0x3fe53a8d8b545713, 0x3fda281be61e6d32, - 0xbfb04ae53a485de0, 0x3fd617ec18109952, - 0xbff083eba55bdfc4, 0xc00badf35fccfd0e, - 0xbfd096c4106b0e26, 0x3fe73620c85e73de, - 0x3ff4dddb45053f62, 0x3fc98b6915cddf88, - 0xc006e97e7627bb45, 0x3ffe3d510570ec28, - 0xbfc7953077b01ba8, 0xc0007a9a6bf77c2a, - 0x3ff1f9babd06bf1c, 0xbfdbec1c338d1eae, - 0xc0146917bed300a4, 0x400dbbd176e9b41e, - 0xbfdeab590407deff, 0x3ff8af4b853a05d8, - 0x4003f6c32f3f480d, 0x40074276711e5ca1, - 0xbfe0c30c7e2e90bf, 0xbfdc4d968b06856c, - 0x40089ffaf0d82914, 0xbff671d6b7dbc454, - 0x3fffecdf1891c9c0, 0xbfbd45beecac7650, - 0xbff430f0ccc1b64b, 0x400ca68d5afcaf63, - 0xc00fcea59ee8477c, 0xc00c93e75315157d, - 0x3fd3806540b6f438, 0x4007af8403ebebce, - 0xc010804a05b8322a, 0x3fccbf74b51894a0, - 0xbfc018e36fdad89c, 0x3ffbaecce77a2846, - 0xbff8b9953841a64c, 0xbfe6722805c4a956, - 0x3ff1210290983664, 0x3fd7b49413c6f59c, - 0xbfe5fa152ffd0cce, 0xc00edc4b4423e58c, - 0xc00460210516627a, 0xc00433f7f8497968, - 0x3fff637e0f5f0d22, 0x3ff3c87d638250c8, - 0xbff8fb97f14a95da, 0xbffa43301fa7ece8, - 0x3fdafda654104721, 0x4009810b27f2beba, - 0x3fb145ac2d7a4e58, 0xbfe619b06d4105c6, - 0x3fe81560acbb8dd4, 0xbff88265534a9964, - 0x3fd13513fd36bec4, 0x3fe91f50fbd67c4c, - 0x3ffefd038fb80ca3, 0xc003c86d9ae79a15, - 0x400e2661b4ee0ef8, 0xc00d7a05c44c1989, - 0x3ff6171463035401, 0xbff49774e2810cae, - 0xc00ee154a1a426e2, 0xbff9fac2c1af387b, - 0xc01932bfae2afdb7, 0x3fd661a77052955c, - 0x3fb083ecff18f540, 0xbff9c4ab9f0b24d1, - 0x3fee82b92a063f8e, 0xbfdd832c97b91cb8, - 0xbff2d375fec62d54, 0x40001add489cccc6, - 0xbfdb4d8cced35dce, 0xc0104b78a050e872, - 0xbfe43d612952f183, 0xbff5d80e7a93b2cf, - 0x3ffaa8aaa94adcc6, 0xc00db96b387fa8fc, - 0x3fd5b17fbd2f8c3c, 0x400ed0ebe9a8ef55, - 0x400a5665149c395f, 0x4007851c3d1fe802, - 0x400f63ac68726f0d, 0xbfefd9996bd00f9c, - 0x40115c4058d0a323, 0xbfed52e1fbb837da, - 0x3fe632d4fc7b3b06, 0x3ff3edd26227f674, - 0x400987d6b33ec3d0, 0xbfe7cc75dd5a5ee6, - 0x4006072dd3d9f63a, 0x3fe1c2460698e3b2, - 0xbffeeef5d0d7dbfa, 0x4005a2edefa883c2, - 0x400a3e90f776265d, 0xbff96eba3e881bee, - 0x3fda20510826517c, 0xbff2cd7010816bfe, - 0xbff5a91534307d21, 0x3fda2e1d8e4a33dc, - 0x3ff25e2994f8707c, 0x4013e9fd65d749c7, - 0xc00a8f81204da6ed, 0xbff208ffd2cd1844, - 0xbfd4fd21f182da54, 0xbfd5020125a91a08, - 0x40007425bff897ac, 0xc002f50756c04e0c, - 0xc007837237b32ec4, 0x3ffe2002c5ae3391, - 0x3ff0edaec9868248, 0xbff9d370f36cc2b8, - 0x401174130a2e1de2, 0xc0013886729a856c, - 0x400382861797880e, 0xbffe5b28af20ef82, - 0x4014bd40ca6634fa, 0xbfd787f6cfbc6f4e, - 0x40086c69cb14220a, 0x3ff27815d25eead2, - 0x3ffbde638a8f5bf4, 0x40053536ed13a040, - 0xbfce397a1d7a70d0, 0x400f89d780cf8564, - 0xc006e7d0fe40bcf1, 0x3ff3e45d04e0c9f0, - 0xc002ee0d305ae738, 0xbfff41491d5324b8, - 0xbf856ad75baa9600, 0x3fe2fee6d2306986, - 0xc0033f727d14b9c1, 0xbffdf4096c7dc9ba, - 0x3fb963dc507e7c40, 0xbff50eed791014df, - 0xc000b8cc4eb47fac, 0xbfe02cbc8de8fdd4, - 0x3fea8ae38da8b633, 0xbfc718b86d2b6a90, - 0x3fd75afe261531ce, 0x3ffac2b9bdb6e852, - 0xbfd6c1227868081c, 0xbfe10ab582f6a876, - 0x40037814ba734e6c, 0xbf5893cede09ea00, - 0x3fe19f115878b35a, 0x3fe0cbc3e4e767da, - 0x3ffabee05eb778dd, 0xbffbb07717abc27c, - 0x3fe4c929b2eb978e, 0xbffe38a037126a64, - 0xc004da65d3cd0128, 0xbffa20a00bd9db9a, - 0xbfdd08b14c046dfd, 0x4000c0ed043fda44, - 0xc00544aaff5bb369, 0x3ff5cebde63e2162, - 0x3ff3293bf5c19ace, 0xc009aae2a5d8d0c3, - 0x3fddab266bc783f4, 0xbfea0aa8eb683726, - 0x3fca0b59bdc1f4c0, 0x400e16016cab8bef, - 0x3fe5c7293815dd1b, 0xbfb5cea3210e75b0, - 0x3fe246b844588a62, 0xbff3d8d420f6014c, - 0x3ff6d2535dc31681, 0xbff9a4d6e6186376, - 0x40013e58b3ea190d, 0xc010cbaac646a555, - 0x3fd17b981a1389f4, 0xbfef2229a5f9f975, - 0x3fa90fc7514eb4a0, 0x3ff6e62dbf0c6574, - 0xc01312cd5fb42d1a, 0x3fc656614f41feb8, - 0xc005416af2609a00, 0xbff938d6c8bf60b6, - 0xbfd170821accdfa4, 0x400c0e45dd45aa07, - 0x3fe08586f78cd69a, 0xc0008cc2daf75915, - 0xbfff5909432fbc62, 0xbfa50bc485c20ac0, - 0xc0014dbd72faa607, 0xbffa6d5dd1cb503c, - 0xc0078e43a65d70ef, 0xbfff38a25b01b86e, - 0xbff42029dd34ef24, 0xbfdf2262b7e342bc, - 0xc00ad62dc706c3a8, 0x3fd425f4e9a51e1c, - 0x3ff582a7d9904ef6, 0xbfd97eaae0dfe138, - 0x3fed00903aef4bdb, 0xbfe6f77dc0efddac, - 0x3ffa29fab7c953fc, 0xc0060014b45f1bd4, - 0x3ff8315f8c838e53, 0xc009900e232011ba, - 0x4000914f865da3f2, 0x40118920eb7f416f, - 0x3faf297a5d9aade0, 0x4005466054e3332e, - 0xbf9f655f1f162720, 0xbfdc282df2c9cb14, - 0xbfe9186b45e8f3e6, 0x4004521f33a27d10, - 0xc00dbc5bdd6456b7, 0xc001f27a8b39b6a8, - 0x3fd342d1a3b8565a, 0x3fff12182425dc03, - 0x4008eae9b8d90e57, 0x3fd65ee0a22ef8bc, - 0xc00a9b5e6a523c62, 0xc00bd9eff45fc758, - 0xc0064c461c4ade89, 0xc000be43b0968e48, - 0xc002536f9cb5e0e0, 0x3ff13925d0cd126c, - 0x3ffa4d02df810288, 0xc0043cce6b000f26, - 0x40075957b79a24d3, 0xc00446d17f8a4ee8, - 0xbff97ff4b9268f14, 0xbfa2cba1c9768ae0, - 0xbfcc20d4efcc83e4, 0xbfff6c1a3ddce4df, - 0xbfe31d221cb951a4, 0x3fe74cb78cce5b56, - 0x40035c1b6a2727da, 0xc001381fd583d025, - 0x3ff8abb723b784ca, 0x400b6bcfdfe28961, - 0xbff4c85643a39e60, 0xc0165ff1ef85264a, - 0xbff04b24605c7ba8, 0xbf68941b8e789e00, - 0x400d229d295945ba, 0xc00092dd570b3713, - 0x3ff155efa90a7bec, 0xbffcb9eb52102dbe, - 0xbfbe24c7b4cd2bf0, 0xc01143970dc6155c, - 0x3fe231cdee7967f0, 0x4001cdee2953eeb8, - 0xbffd9428d27106b6, 0xbff6d995228a2904, - 0xbff45b4ab46f2962, 0xbfeaca7eed9712ac, - 0xc009df948c2274c3, 0x4003e192ef6d3e80, - 0x3fdbdaa3db77a59e, 0x400155408e75ff0d, - 0x3ff48df5f20e438f, 0x3ffe7e7988b987a7, - 0x3fa0c83f077dc3e0, 0x3fefe81d4bd171b4, - 0xbfa6716316c233c0, 0xc009a57928524f00, - 0xc00b45ed9535b8fb, 0xbf8513297e953880, - 0x3ff4674b595e74fc, 0x3ff6330a65e82818, - 0x3ff13622e83cd2ed, 0xc000d8acb828c448, - 0xbff43c68d741e69a, 0x3fe9ece15a072a80, - 0xc003d58ffb8a1d54, 0x3ff08ab2ccb9d7fc, - 0xbfc8d651586d1650, 0x3fe0c258e4918548, - 0x4017d1d3c9da926f, 0x3fd68562fc8a6ca4, - 0xbffff76994602c48, 0xbffce79f21d1c278, - 0x3ff1d7f9f4d073e9, 0x400bf5a065c7da8a, - 0x3ffed5cec9a041f0, 0xbfdfe59187d51e06, - 0xbff50e0efafba13e, 0xbfff2c6f8d10873e, - 0xbff57ffa50a2644b, 0x3ff2ca1dfe7d7fbf, - 0x400865cfcd9f1b5e, 0x400212e16f70eba1, - 0x3fe71e5389b562aa, 0x3ff8e28b06290f31, - 0xbfbd1f93907c2de0, 0xbfea293398d7c54d, - 0xc00c4f27dd02ee34, 0xc005190e75a6b935, - 0x3fe1154226cd1ef1, 0xbfc63ee85d50d866, - 0xbff2d521c0e6bcc7, 0xbfe095dd52a80477, - 0x400ee37288fea35d, 0x3ff1573c40aa8ad4, - 0xbfc510d37533d5ae, 0xc003684d7743b02a, - 0x3fed990e9cb274b3, 0x3ffa600dfc18c755, - 0x3fe5d2b2f1bfa6ee, 0x3fd53a709faa0b8e, - 0x3f97ab573a2d1740, 0x3fec5d32e5a6bdfc, - 0x3fecac3b97363f04, 0xbff8d67b8283db04, - 0x3fef247f10d3fcc0, 0xbfd3bb8d209db440, - 0xbfcdc89b7a4f3c70, 0xbff8b0be8f24f364, - 0x4000b32ef97af6f2, 0x3fb25f1038a4e770, - 0x3ff57c9cb36dc930, 0xbfc442e80ca3f4f0, - 0xbff09d6290e6f2e0, 0x3ff6615dd5248f74, - 0x3fcde4882a539b9a, 0x40057c7470cbd982, - 0x400eb20c90427f2a, 0x3ff57b14a1abe213, - 0xc010da54ee8c093e, 0x4015d4fe86cc583c, - 0xbfe7366c6d947dae, 0xc003d4ee617a1981, - 0x40134a206c38150f, 0x40044e2e5df35980, - 0xbff34ca3372619e6, 0x3ff0254389815214, - 0xbff342a20a4d7992, 0xc004a12d79c0408a, - 0x40089d0334444430, 0x4001a0efe9a27bd7, - 0xc011707ca2566f18, 0xbfda6b9773609828, - 0x3fe54d28ed25edda, 0x4005b3ae78920628, - 0x3fb0ad66baca88f0, 0x3ff34c5a3c17239d, - 0x3ff569391917bece, 0x3fb7551b1aa95cd0, - 0x3fec46fbc7c6eeb8, 0x400f9739a51fcf9c, - 0xc0011c153e610282, 0x3fe8fc4737cce8da, - 0xbfe15b0776c90bee, 0xbfffc55346697a63, - 0xbffca9bdc194952e, 0xc0130444a0e411b1, - 0x3fb60fcee2b74470, 0xbfee15fc32908eca, - 0xbfc98c60e1083918, 0xbfdc21a362805e3a, - 0xbfe01414a89a9350, 0xc002eb16781f0b6a, - 0xbff46b2273b05c99, 0xc00d0ef40d5712f6, - 0xc00f5fb2f5d48b98, 0x3fe341d9d480ce65, - 0x3fe2dd6b39f9c99e, 0x3fe271cb29968b42, - 0x3ffeaa29cdf081a8, 0x400f4486fa56a8e2, - 0xc0043ad540cb7242, 0xc010234a1db10abe, - 0xc0023993c60fd50c, 0x3ff0c52e01d19276, - 0xc001b7b377c6d93a, 0xc00888d957360262, - 0xbffe163614251f2f, 0xbfe5ae4a262c2e37, - 0x3fffe9970df9bff9, 0xc015e17bfcbee669, - 0xbfe1fa1ea69f0fd3, 0xc000685dc1913f75, - 0x4007d2f07d73c643, 0x3fc4a27fe8bef0c0, - 0x3ff710936ee41b05, 0x400b7dea643edb42, - 0xc00e71e3ab1ac6ef, 0xc001f4377581ce40, - 0xc0039a2fef64c234, 0xbfe9043bf7584c48, - 0xbffbaf1a18b82e6c, 0xbfdff6235a1c9d14, - 0xc0074e15fc1070b3, 0xc01b7b0a8416904c, - 0x3ffc798b080e903a, 0x4017b5af7f4add39, - 0xbfd0caa6d1553fd0, 0x3ff219a0e58a4aae, - 0xc009d2ac85c7bee9, 0xc008e8486d47d15f, - 0x3ff562fc2ead129d, 0xc00139898086f3c1, - 0xc00758b15fd94a24, 0xc00176fa55cfe73e, - 0xc006f3c509a2bdef, 0x3fd3d360eba2a089, - 0xbfe0aca4d8a16bd8, 0xbfca9ec8f24cf69c, - 0xc00119a6db0b987d, 0x3ff99e0539a9fc08, - 0x3ffd429c8e81d2ba, 0xbffd369d16b8dd8c, - 0x3fc38adac9644468, 0x3ff29f7d17b52113, - 0xbff32e34ef2e2a26, 0xc00051b65ca6bce8, - 0xc005bbd8950da913, 0xbff906a905312301, - 0x3fca959d60f06e30, 0x3fff4bd0d58db400, - 0x400898a00785071f, 0x3ff60ce4a63304f6, - 0xbfff3d57c3bc6233, 0xc015d4fb17677b12, - 0x3feae7f2cb24d3a6, 0xc0079acce85984b8, - 0x3fb449e7dc53d520, 0xc00e8b09e49fd89a, - 0x3ff1675489940138, 0xbfc94df69b62addc, - 0xbff76741785b883a, 0xbfe53278fb7a8570, - 0xbff464b7ef2538a6, 0x40049cd89364dfef, - 0x3feeb65ec522d85a, 0xbfd933feda9bf317, - 0xc00261dbaa3f6088, 0xc002d897d3334a1c, - 0x40091b09c1ed98ca, 0xc002c4c63a2b3c7b, - 0xc013d55fbf93efd9, 0x40110c4fa3d35ac0, - 0x3ffac0a970d14d27, 0xc007dfd6cee7f49e, - 0x3ff7a9977442880a, 0xbff566a6a6c620fa, - 0xbfe7fe11567070d8, 0xc005e07f7f427c82, - 0xc003fac79b59ba8c, 0x3fe0c8e461cbad4b, - 0x3fee1bf14e774064, 0x3feb376a4b1be882, - 0x3fc495cb241c7600, 0x4002a64793942d97, - 0x400328a776b8bcf4, 0xc00585b56f9d457f, - 0x3fe49b3e9f492218, 0x3ffb78e133ef69ba, - 0x3ff85340bc330f88, 0xbfe4fe1d840ea17c, - 0x3fe0c42b9df6d89f, 0x40088ea854cff530, - 0xc00cba2e8a70fe98, 0xbfd67f068ecd1fae, - 0x400e420acc04d88a, 0xbfaef16261c18e00, - 0xbff91d1e890078da, 0xbfcefea70c7a858c, - 0xc018170930d5f952, 0x3ff511d1e4b4b172, - 0x4004cfcbd7bc2486, 0xc008886d979b7140, - 0xbffe21244ce7391c, 0xbfee739ed63f9054, - 0xbfec4f8a72f1d88e, 0x3ff006f4f1cd0b5f, - 0x400aa061c9c32345, 0x3fbf9ce6ed0ae760, - 0xc0048296915c02ee, 0x3fcac6c6cde7bc78, - 0x4000d40c65697d8a, 0x4002744d80601e42, - 0xbff5400031be02d1, 0x3ffb486bdb12a179, - 0xbfea6869a1d48991, 0xc000c3cc7e25e284, - 0xc005f99b6a69bbd8, 0xbfe34dc28d46f586, - 0x3ffd016bf066f5ad, 0x400da3e5faed69cc, - 0x3feadf7c1e850ea5, 0xbfe66e695ac5db33, - 0xbfde12463e5da004, 0x3ff21ad7a75c3899, - 0xbff268558ce83e35, 0xbff2bd8aa081be1c, - 0xc0064d092737435e, 0x3fc774991f1ed668, - 0x401212651ab79ec2, 0xbfd0046224943dbe, - 0x400b06c87be07f52, 0xbff01f8364d8b71b, - 0x3fc19fed702dd608, 0x3fe306ae2bed9912, - 0x3ff22998a35366ec, 0xbffa734923ecf652, - 0xbff47e73c5dc46eb, 0xbfb4450a300705c0, - 0xbfd3bab104e637cc, 0xbfe5835efedfbe8a, - 0xc0055950a6325ce0, 0xc006cec1d22cebb7, - 0xc00af94cb8c9689d, 0x3fdaebd89dbabdec, - 0xc005a649dc88b323, 0xbfd0aab8e0423d40, - 0xbfa2a94df0c658e0, 0xc00585f64e41fe1e, - 0x3fea19eed58c1e48, 0x3fe89e1cfbe35b78, - 0x3fd494f85d2e6d47, 0x3ffa477344657a73, - 0xbfdb797fd2bd0737, 0xbfdb8a2049509f60, - 0xc0003f5be65a8f12, 0xbff8a137ce3f59ea, - 0x3fb55ef77f7fd430, 0xbfec4e2f1e343e66, - 0x400714999595f501, 0x3ffe8547903991a2, - 0x3fd27b194896da72, 0xbfc8fe622d479ba8, - 0xbfe61c92debedc3e, 0x3ff348a8f2a93a51, - 0xbfe01d9588a4ed3e, 0x4004b7dff1219645, - 0x3ffee25a10af4045, 0xc00acd2596a0f27f, - 0xc0065017e8448b20, 0xc005f6cbb9364165, - 0x3fe73d56f1c24016, 0xbfff57c9050c9206, - 0x3ff41266dd35052c, 0x3fee9e3eeae43211, - 0xbfcbf94f28da55e8, 0x3fd7d5d94a468aac, - 0x3ff31c54e4d50b6a, 0x40055b34833cb5f8, - 0x3ffd87cb94ce14db, 0x40023930d9fe687a, - 0xbfe884a035c45bff, 0x3ffeb3d5a846aeb0, - 0x40101665cab474cc, 0xbfed88502f726a9a, - 0x400c91e76575ea24, 0x401004442d8284e8, - 0x40017c20d9f03d66, 0xc003147b7e83e8ba, - 0xbff25e4e5f334512, 0x40064d8f2552c9d0, - 0x3fff6c00e2a18027, 0x3fc4c7972061c0a0, - 0x3feb224f45ba1822, 0xbfe6fdea5caa6e60, - 0x3fff4dc7c348effa, 0xc0055b3b77c6dbd3, - 0xbfea85301f761a00, 0x400583a260efce54, - 0x3fe3b946b6763090, 0xbff4b1b25d3bab1c, - 0xbff21632dd8dc070, 0xbff0c9c1680dde04, - 0xc00221b8ef5e3a81, 0x3fe6a925742f8da0, - 0x3fd3c34c67c31f88, 0xc00b3fe39a93f250, - 0xc012777ef521054e, 0xbfe6c66fd53ce588, - 0x3ff1b79f361f42a8, 0xbfb391effef54eed, - 0x400b1b02c8987460, 0x4010d041c874d5aa, - 0x40054f4cb2ee20d2, 0xc00a2bbe9ca4d954, - 0xbfebb919e5f42b99, 0x3fea1ed645854b92, - 0xc00e6eebb57f15b4, 0x3fd5b55fd0ad636c, - 0x3ff86e96d1b9de17, 0x40046f09757d79ae, - 0xbfde019e83458cf8, 0x3febe7e26cd694e2, - 0xc00525ff8ec1db21, 0xbfd0972b464b1cbc, - 0xbff6a9923068a899, 0x3ff97cb6c2ff438f, - 0xc007f1de29fb936c, 0x4004b423a087d056, - 0x3ffaaa37eb686be0, 0x3fed04f1d3dc3e48, - 0xbfe0a84a0db6bb12, 0x3ff358360c005e2f, - 0xc006a1903c67d7be, 0xc00b901cafc70602 + 0x4010785baf69d0c4, 0x0, + 0x40046255f53cf243, 0xc01930a0be8be4f8, + 0x3ffc97b4c0741cc0, 0x400ca32f3104f35e, + 0x3ffc7a4073ddee2d, 0x4003424a8d478d6b, + 0xc00b0ed4b8440794, 0x400b910f67a09806, + 0xbfe5feab65054ace, 0x3fef8e8fdfc6f8a1, + 0x3fb9c8fcff9009d8, 0x400ccaf2bee083ee, + 0xbffd0dc71e50abf6, 0x3fb3cb5d1a81bdf0, + 0x400bf0ccd7777920, 0xbfd47b881979e798, + 0xbff4f24e69d31196, 0xc00723c9478f1088, + 0xc010fdbf5376bd33, 0x4001fa8b897ae7cd, + 0x3fed6319624165bc, 0xbff7990e8bf26d6f, + 0x3ffee2b9f82ff11f, 0x3fe7cfd762db16d1, + 0x3fe23e87be1114ee, 0x3fe32c00ac7424d2, + 0xbff40c5ee71dc0d0, 0x400f96d037fa9af6, + 0x3ff292fae6ddf4ac, 0x3fdb6dc4802c563c, + 0xbffca36883cf9be4, 0x401495b568ebedd0, + 0x3fd6ea6c34327b84, 0xc0065c608db61b26, + 0x400269fdd91164b9, 0x3fc5749783f0ed04, + 0xbfd00ba7a0b26a38, 0x400275fdd1d6095e, + 0x4009986f7eb6c3f2, 0xbfcb17390540ef92, + 0xbfeb22c0df754146, 0xc0020d07af281d6f, + 0xbffef20b7e8a414a, 0xbfe9d7251a122d37, + 0xbfe30cac63aa522a, 0xc00fb3dea14cab55, + 0xbff51514d2fe847b, 0x4002309301d8e5bb, + 0x400945c1aaedd73e, 0xc010ee7f3d5d5a32, + 0xbff1c8e948fca4e8, 0x4012d2e7f3cf92ce, + 0xc016c63d97845bc2, 0x4015accdb1d0325a, + 0x3f98c30659d83ac0, 0x400400f66cf10328, + 0x3ff381e5739ed4af, 0x400939ae765620b9, + 0xbfe3825cc8b95919, 0x3fe3c2c55a4a2708, + 0xbff58715cd470558, 0xc005ed5b03ae3f4c, + 0xc006dfababf5b770, 0xbfca5d032f39fea8, + 0x3ff7876ccc95e341, 0xc0014001ddaea81e, + 0x3ff3ded438516464, 0x3ffe27efb8be6b3f, + 0xbf807f81773e5d80, 0x3ff1a12849db76ca, + 0xc0023ea534e38498, 0x3ff8cc63f4cf014a, + 0x3feb800b892e6fac, 0xc012aa57abddfb2c, + 0x3ffd9c58eae263ed, 0x400bda162fd88f26, + 0x3ff6e2573a53fef2, 0xc00fb994d81b1516, + 0xc01766492f5ffb20, 0xc0034bf331e255f2, + 0xc0096fe0c36f80f4, 0xc0186b9536936d2c, + 0x400cf674724e6ed6, 0xc003f292e97430cc, + 0xbf99ac84c7b1f480, 0xbff7c4c23d0eb581, + 0xbfef3f9f9d1d1c7d, 0xc00910a39479e459, + 0x3fcb00ffa4806150, 0x4014291f5bbe608d, + 0xbff5d9c80f2f8759, 0xbfed53df049f08b8, + 0x400e8ca96015e48a, 0xbffba46b83d2bc46, + 0x4004567e89eca3e2, 0x3ff8aa5e39e1d3ae, + 0xc00c6b4efaf9aa21, 0x3ff2b3b79c793850, + 0x3ff77b6e2a9aa2ba, 0x3f994115be505480, + 0x3fe6e2f7b334ab9c, 0x3fe1a4c6cd124dd1, + 0xbffa20461ec9fa8a, 0x3fcc2fd912ab7538, + 0xbfe50361fef74a1c, 0xc0087070f667c19b, + 0xbff359f03a9b28a8, 0x3ff7c45b05eabebb, + 0xbfe446e4523726e2, 0xc00215ed0b75dd68, + 0x3ffaf8b5b7087110, 0x3fe7b2a3186cca4a, + 0x3ff5af54e4434fe3, 0x3fe579f64a6e7f69, + 0x3fd1d84afa1b7839, 0xbfaedab2aad624e0, + 0x3feea58d31ab4c32, 0xbfe8c2a16e066c8e, + 0x3ff4c84f3aa56650, 0x3fbdc979f0097c00, + 0x3f9bbdbbe757f280, 0x3ff0a209987bb96f, + 0xbff365db800dcc40, 0x400f7e8219ec3138, + 0x3ffe2565b1b4a0cd, 0xc0065d8c20baad94, + 0xc009b59423ce0024, 0xc009c3fc48369198, + 0x400a69a9e4179e6f, 0x4001480187caa05f, + 0xbfdf634b924004ae, 0x3fc83229d525b820, + 0x3ff23b089049ae26, 0xc0035177916454b4, + 0xbfee3a33adfd0cef, 0x40105003440680e6, + 0x40023c4ccbb1ab68, 0x40051aaa6e46bb3f, + 0xbffe529da585e474, 0xbff915415e729184, + 0x3ff0e9407cec298b, 0x3fe385deec1a05e8, + 0x40066b904417ebf1, 0x4011bfc1318c6270, + 0xc00e4e1b43b0f0c3, 0xbfe360753aba410b, + 0x4012e1ca141830af, 0x3ff878dee6a18cc7, + 0x4004bb18881628d1, 0x3fe9658d4b93c05e, + 0x3ffc44e5c30cb8af, 0xbff7eab70e4f9eeb, + 0x3feb5058334ab814, 0xbfebf83ad1085cb8, + 0x40109c9ef6dbbc83, 0xc010ba37865b4a70, + 0x3fea34bd553109a0, 0x3ff76eaec1d30e80, + 0x400327cb80f12172, 0xbff4d16152e8d04a, + 0xbff39e51b0dc1ce4, 0x4001f65a1cb5d25a, + 0xc000fd39fc5dc97c, 0xbfc3702bb5ebb1ac, + 0x3fe250b56bc398db, 0xc011cc123fa12ce7, + 0xbfe1db78c6bab4e3, 0xc006949b17458cf1, + 0x40079ab887fdcff9, 0xbffa055798df968a, + 0xc00fc3c71c17e2b9, 0x400043ce0b683a45, + 0xc00d450a869d0a6e, 0xc015228170af3d60, + 0xc010edd5011bcf46, 0xbff3b2e5e33c3fd7, + 0x40051b9cce96c240, 0x4000c72b188312ad, + 0x3ff2cb64c7d9f4ec, 0x3ff4c2568725e41f, + 0x3fe0bb801c63914b, 0x3fd3b1d66dfbab84, + 0x3fe9b1ed21dbfa84, 0xc00478a404b8a100, + 0xbfe30c8eaf0d5af9, 0x400d9194df9c50b7, + 0x3ffc7020595310da, 0x3fe456dff3a41057, + 0xc007306bf45e3f80, 0xbfd58a56a5972e08, + 0xc015f577bedecb9e, 0x3fd829cb3c5d71c6, + 0x4000114719323f84, 0xbfaaea385332c540, + 0x3fe225c101eb28da, 0xbfe12e8554a737fe, + 0x3ff1ce68f5c01ce8, 0x4010f4149b44d2ea, + 0xbfeaf052a3645c20, 0x3ffd3cd80fc8e31e, + 0x3fea10f153eb2998, 0xbfe8ad42aca27c5e, + 0x3ff05f19348c3653, 0xc005db43ad2677cb, + 0x3fde0c5793572d08, 0x3fc699f3ce90da98, + 0x40049fc023866e8c, 0xbfe3864f0bfde450, + 0x3feaff65d42e9560, 0x3fe9699e868eec3a, + 0x40005ffb43bff2f4, 0xbf8b360b41dab180, + 0xc003aa15ff451165, 0xc01160ce4c626671, + 0x4009e9306719d612, 0xbfe5c801fbdbdffc, + 0x4002dfcb89315df6, 0xbfeb3dc2cc9d85ac, + 0xbff7171736a5558f, 0xbfed97190d490b9c, + 0x3ff7286d2b035b7f, 0x3fde4971f8e32c18, + 0x3feba176805d1e54, 0xbfe8274b47efbe9c, + 0xbffe2e429b68ea64, 0xc00903d0e026a0b2, + 0x3ffb33e4276a7239, 0xbfbfd9dd29a6cba0, + 0xc00212d02b1341ee, 0x40159b791361108a, + 0xc0042b9a590f4419, 0x3fe8d3480e74c448, + 0x40166be21eb45a8a, 0xc009b22da86f4cc3, + 0x40012812c0e9b480, 0x3fcc0b3ac63b1514, + 0xbfed86f25664e7fc, 0xbfe06bb5598da22c, + 0x3fffde1207f8752a, 0x4013c0780a55b0e2, + 0x3ffa9890c9f62176, 0x4003b993d5b6c102, + 0xbfcb47949252ab16, 0xc015c49db8827504, + 0xbff3e98d00fa1b6c, 0x3fa0bde650f86b08, + 0xc0120eb90d35b9aa, 0x4000074eeae92cbd, + 0x4004265eeb79d0ee, 0xbfffbcf716738ec8, + 0x4000048c83ce0fce, 0xbffb4227761516b4, + 0xbfe12e99f7a24d64, 0xbfd755b3a0198bb6, + 0x3fe36e3163c94072, 0x4012f2b75b31bdee, + 0xbffc444eb038851a, 0xbfdb06e64b33d174, + 0xc017ed474ca79642, 0x3ff80f0409568354, + 0xbff0edc516762ea6, 0xbffcc1d8eb33b502, + 0xbffe7c802be22388, 0x3ff63c5c5b6aa374, + 0x3fdb221270d7bd97, 0xbfe423362c6fcc2c, + 0xc0002020fb73e532, 0x400d3578423da0b0, + 0xbfc23d659445d0fa, 0xbfaedb326cc5f7a0, + 0xbff19068f77d9b5c, 0x400cf68071a91718, + 0x3ff5b4707ac8228b, 0xbfce00506f6fa674, + 0x3fe0d8d212aefc72, 0x3fe4b7cccaef3de2, + 0x3fd317a555ad8a2a, 0xbfce772556423cc0, + 0x3ff0eae66cea359c, 0x4013b17aef8cac29, + 0x3fcdcac60cad17c0, 0xbffc4d29c21d6910, + 0x400b36b76e7dfa35, 0xbff5f6e249c3f29e, + 0x3fc8ccdd187651a0, 0xc005fd42f4078fa5, + 0xc0100d78dbe6637e, 0xc008395c2e2bf67a, + 0x3fd0fee8f1b7b4ca, 0x40088339e2b3c37c, + 0xc000a5394d33a3d5, 0x3ffa5d4ec18397d7, + 0x3fdbcaddbd2f8ea4, 0x400d32539ec13a6f, + 0xbfe383a5cb174128, 0x3fe6aed6c751cd4c, + 0xbff71b3cbcf4669a, 0xc00078a875173f7a, + 0xc0198ec309be8577, 0xbff2a9eb23c64f18, + 0xc0079283227c9796, 0x40064230b96c399a, + 0x3ff8319d3c6d57ca, 0x3fe8085ec9ecefe4, + 0xbff10c129af08956, 0xbfb54b1c3b3fa700, + 0x3ffae273c57f0488, 0xbff63953b5e855fa, + 0x3fdabc27587c0878, 0x4006a49ce0ad4dfc, + 0xbfa94b8c07ddede0, 0x400820cbb4579d47, + 0x4003029acf6addfc, 0xbfe9619e20df2c72, + 0x40119630f6862175, 0x400b46d88667cc09, + 0x3ffd0d1881ab2976, 0xc005cea6b3419d7e, + 0x4003f8f9ef70bf11, 0xc00c541f45281595, + 0xbff0c8297b9359a4, 0xbfde0ada26a61539, + 0x40041e75fe3e2aa6, 0xbfc010fb767013f1, + 0x3ff53e6914dfcce6, 0xbfe598392ff6edac, + 0xbfd52dd2615e0336, 0xbfdeceeff4be7d99, + 0xc00ab17e2493b2eb, 0xc012eecb31abc9a8, + 0xbffd8193e6883af1, 0x40061118df0542ff, + 0x3fc19c6c613a91cc, 0x3faf262221cb9c40, + 0x400c0effb7d6a36e, 0xbfb8728a5e09f878, + 0x4001c8aa2ba011ef, 0xbfd0819b7551ac42, + 0x40163d953c222264, 0x3fdd9340e009f37d, + 0xbffe33f444623c80, 0xc0009ff8e6a602dd, + 0xbff07144a2abfde7, 0x3feeac6560b8417c, + 0x3fff6095dd3445fa, 0xc01ee96eb814d927, + 0xbfd58f59a929eaf8, 0x3fe59dc98c8a7c8d, + 0x3ff29004c19cd184, 0xc00341617de4f342, + 0xc00330701b484f60, 0x3fc3fd8f89a734a0, + 0x3fd89c6d21770738, 0xc00d82f60e3b0c9e, + 0xc009758e8dea8922, 0xbffbd54867e54b7c, + 0xc0062c3f010eba98, 0x400d56c856cb8258, + 0xbfe96e8c3c15a36d, 0xbff821e12db58a70, + 0x400322292071aa00, 0x3fe10da0de7e53b1, + 0x3ff5ae4de3e2b810, 0xbff59da19feb2652, + 0xbfef8863ff902504, 0x4010e1004fb842ae, + 0x3ffb9a7e441d1800, 0xc001f1115be2a4a9, + 0x4007ccf8305916ff, 0x3ff37e039a5f74e8, + 0x4003a060a38049b4, 0x3ff4347474e0ec5e, + 0xbff8dbce09545864, 0xc0097c6f08783dc1, + 0x400201b912f3ad1d, 0x3ffea688ee401931, + 0xc00843f6b0257273, 0xc003c32013775b7c, + 0xbfb28a920a2d0890, 0xbff7dc8e3f6cc11e, + 0xc0021e3e48b4c7c8, 0xbff2f93b1fea58ec, + 0x3ffdcde0b670e6d6, 0xc00cc1308628c502, + 0xc002c8d45443a9e3, 0xc002f22fb01403d4, + 0xbff3e170b9920df6, 0x3ff78d259809f498, + 0xbffe8e7ef6d30d96, 0x3fd66c3424c91a4c, + 0x4007a1667fe85b35, 0xc0045f309a6b3a58, + 0x40061bbd5a4d8594, 0x3ff70cc2479f49de, + 0xc0046f2dc0bd0380, 0x400458dab80f25bf, + 0x3ffa38f4cbdc14b0, 0xc0095f2969854bc6, + 0x3ffee90c5ad62cc9, 0x3ff536cbe0a5115a, + 0x40058d77468cc3a2, 0x400389526ea15af8, + 0xbff0b571c0724e36, 0xbff19f6a33e9ec0c, + 0xc006fe88e762e548, 0x3ff9999e07f09acc, + 0xc004b67f90dda016, 0x400537b34810980d, + 0xbfee5e262fb17324, 0xbffc38589806b676, + 0x3ffe8e3c764fe5bb, 0xbfc216d97dc43e04, + 0xbffdc448b04c4f35, 0xbff60902652bd3cd, + 0x4016579e10ddff56, 0xc009fd2eb595abb4, + 0xbfd46c307f3164b4, 0xbffef485a2a65c50, + 0xc0097d513774a032, 0xc0092a0d09935edf, + 0xbff8f6287f0ea386, 0xbfe018a779f1d670, + 0x3ff626b41671838c, 0xbfd0af418b9ecb9e, + 0x4005d1dd90058960, 0xbfec76b43ff1292c, + 0xbfea0809fee9bcda, 0x3fe867f16782fd92, + 0x3fff0968aa4d2a42, 0x40017376823e94c0, + 0xc005de8ec83d327a, 0xc0067e90be4f821a, + 0xc00261c3805973ec, 0x401031323380cdc2, + 0xc002673d88463af8, 0x3ff513de46e30908, + 0x4009c45509cfac04, 0x3fb076b690f7a940, + 0x4000f8e9160f1c7a, 0xc010fe5e7c8d8cb2, + 0x4000ce23d281ca36, 0xbff44d681affe7c0, + 0x3fd39cc9f1b87938, 0x3fe4dfbefd1bb401, + 0xc0011183d32b7efb, 0xc01abb09f933328d, + 0xbfec244290b33c62, 0x4005a91d4379a564, + 0x3ff1790a89483d1c, 0xbff2a9fc4e89449b, + 0xbfe6f06315fdae6d, 0xc00117f1ebff2bec, + 0xbfea57a50834e2c3, 0x40088d9cadb7026a, + 0x3fe336e574526b8a, 0xbfd6dd2a8be2f024, + 0x4011dfc706ab6ca2, 0xbfe39ed90603fbe4, + 0x3ff08f65bd8fdcb0, 0x4008ff6b6fe25a97, + 0x40012c6a9330cbb2, 0x3fe26613be4f8689, + 0xc006c98b5a7ca28c, 0x3fe47a91da0a6a5e, + 0xc0061f6c4cb9f7ae, 0xbffdbd6850201b50, + 0x40173b0f785ad372, 0xbff0daa814ac093a, + 0xbfe4b91bd949162b, 0xc0008c771adcf1e2, + 0x40001cf9856eca7b, 0xbfc8587d2effd2ee, + 0xbfd801f386cb3a3a, 0x4004490f1f5716a4, + 0x3fdcaa49bca7bdb5, 0x3fe3e296f1cfc920, + 0x3fd905883aa2328c, 0x400aa963b9c03297, + 0xbfe8a38d629fdc14, 0xbff92a0b37f5613e, + 0xbfcaa78e5cbc14aa, 0xc013780f5afbd624, + 0x3ffe7c52b4c96894, 0xc00def94814ce26c, + 0xc00167c55cb8bcac, 0x4016c23ffa5e36ec, + 0x4006324d8db1c74c, 0x3fd47802cafba692, + 0x3fd72b36ee1d21f2, 0x3fcfb0d0800bf890, + 0x4003f0bd2fd383fa, 0x3fd3866604bc43c8, + 0x3fde1c2098ac2f4c, 0x400c3148bc606aa6, + 0x3fc4938e5a130660, 0x3ff936ac93ac1e6b, + 0xbfd770a5e9c78240, 0xbff7252403f012b4, + 0xbfe4803b3bc897be, 0xbffb20c323e8a38a, + 0xbfe087611a01c9ac, 0x3fedd55f0ac0414c, + 0x3ff4ec102724c0bc, 0x400231e519c78820, + 0x400eaf82fd23443a, 0xbff46bdeb2871544, + 0x3ffaefa185763943, 0xbff106cf3c1f854e, + 0x4004b79e51a595a4, 0x3fdb5c977a48714c, + 0xbff1c7829b4c93c3, 0xc00240b37c6fb5ff, + 0xbff9ae8959ec4bdc, 0xbff97d1420539168, + 0x3ff9ca42e65b1cee, 0xbfd9aa588be0f758, + 0x3ffc7f283c7d67e7, 0xbfea412063235e88, + 0xc0003b5fc7a5c122, 0x4003bfce5e95a833, + 0x3fd3cdf896778908, 0xbfa493e0dca716b8, + 0xc00977dadd9b9d42, 0x40068236916c074f, + 0x3fd78f9cfdf04fc6, 0xc006f82d6f7dbdff, + 0x3feab3c9659add30, 0x3fbe134c322b82e8, + 0x4001f14c5488d56c, 0xbfd740985c544d80, + 0xbffac92d43dec51a, 0xbfc18c0d35e2da24, + 0xc00e2c7106d4078b, 0xc0064fffd151a21b, + 0xbfe789abb79e96fe, 0xc004f8ee6cc24775, + 0xbff58bf147f8e88c, 0x3ff222b592fa140e, + 0xbfef608990140868, 0x3fec2b9eae0e84f5, + 0x3fe88f0c7703ed49, 0x3ff977170c027f6e, + 0x40036b96c79f097e, 0xbfeef3bfd1bdaa66, + 0x40047c38923c6c96, 0x3ffbe91618d6940b, + 0xbfed35151bfbd8d4, 0x4013201680b253bc, + 0xc001e8a7333f2c28, 0xbfe1aec627e58a20, + 0xbfe4f3c5a1c004f4, 0x4003bfe233ca5ac6, + 0x3ff63f5e87d5615c, 0xc000193d1fb76193, + 0xbffd7b6ae8778ff0, 0x4014b3bc0d0b30a6, + 0xc0013cec5ee05967, 0xbfe6c51f49cec7e3, + 0xc003a076e661816c, 0xbfd31e446e273858, + 0x40190fb61c0a8919, 0xc00968c2f8f0525e, + 0xc01005c05d1d0b13, 0x3ffa4bec157f2193, + 0x3fe5167e0f020628, 0xbffb80ed925a72be, + 0xc011005ad0dc664d, 0xbfe0212b9eda09c1, + 0x4003ba1492b15d7a, 0xbfe52b3dc4356e4e, + 0x3fff93c8887957e6, 0x3fbbda694204f410, + 0x3ff356c19caa9a1e, 0x40037b613f8bccf6, + 0x3feafa16f841b82c, 0x3fff4f1a62fd03a1, + 0x3fedb18ebc811d9f, 0xbfe3417c23871f04, + 0x3ff38e646f8f788e, 0x4011955e8e79c784, + 0x400692e6f8e79098, 0x3fec30ce6142811c, + 0xc011ebe00bfbcec6, 0x4006b132c443a135, + 0x3ff330c40bfe68ad, 0xbff28e8617d6bcee, + 0x3fe046c773e33008, 0xc002fb0b68224bce, + 0x3fd7b443d2542f9c, 0xc007402d62cd4f6c, + 0x3feda6e4faec3e66, 0x3ff2f0d18e4d0210, + 0x40038f0662b551e6, 0xc00a8070b70792c4, + 0x3fd195df779dbf90, 0x3ff933b525a791d7, + 0x3fb2852f2c3882d0, 0xc00140c5e523c58e, + 0x40006be728c073fb, 0xc0007b7d28a4345d, + 0x400997bea42fd30b, 0xbffe3cf457885460, + 0xbfe6c41ff26f0884, 0xc00b39b65d52596d, + 0xbfe87cbd440f55ec, 0x3fe0cd8f0c7b85c0, + 0x400d33ea9dff9509, 0xc00bf57fd9e52ac6, + 0xbff8fdc81aecfa36, 0xbff444da6bf2491a, + 0xc011a698c7017eea, 0xc01508b11a5e5d24, + 0xbfe4cac75f752dc9, 0xc011ea11fc632528, + 0x400ca15e2bd95068, 0x3febee742f526ca2, + 0x40119202722355db, 0xbfa312037004d2c0, + 0x3ff8392d23c75fd0, 0x3ffd53c402422a0d, + 0x4010326ffc92f3ce, 0xbfeed7ad85ca9a00, + 0x3f8eac2323a07cc0, 0x400479861ca0d828, + 0x3fcbaec0442cd816, 0x3ff6ec0f5926f6db, + 0xc00212a436510d33, 0xc00a77acb8d287a2, + 0x3ff481fcd679df28, 0x4011d44e8dd3a1ac, + 0xbff1ae232bbf5c74, 0x4015d4c9c515afc5, + 0x4005fc09c52e3999, 0x4010ff37241e0a0c, + 0xbff24f7579883592, 0x3fef730b119f44ba, + 0x4002e6a2dd03a3d6, 0xbfb0f5cb1330d8e0, + 0xbfc0bdc090d37998, 0x40073b35e6218234, + 0x3fe7a650ca67c79a, 0xc00982ec50fc8f07, + 0x4009bd46bf9db1e8, 0xbfd30aca7faff17c, + 0x400678a8033fa27e, 0x3fcd6b7500058550, + 0xbffb53ba2b05133c, 0xc0082bab32be21fc, + 0x4000df395fd904f0, 0x3ff6cf418302d532, + 0x3fbb62a7922b5540, 0x3fe2edbfb6237cca, + 0x3ff819fb4be7c7f8, 0xc00978091eadace8, + 0xbfe5bb36fc0790d8, 0x3fd4671182f9377a, + 0x4009683546e19da2, 0xbff93f7227506d0c, + 0xbffba680bf4ec58d, 0xc0053a10f1605e19, + 0xbff7aaa87f7d2702, 0xbfef250e29617619, + 0xbff6b369418a3a90, 0x3fca783daada8588, + 0x400e769736e5a6cc, 0xc0043526c48de0de, + 0x3fe2574d1e9d4a86, 0xc016a609ca6f7eb0, + 0x3fef2d27b9768cd1, 0x3ff0bfd3be35e284, + 0xbf8f53e1a5344e80, 0xbff3621bead582ab, + 0x4019303cd1385f96, 0x40006681b2cae479, + 0x3fc45d1c3b7f03ec, 0xc0058fb7ec566b5e, + 0x4015c689afa7153e, 0x4015d49c23662d69, + 0xc006246d32bd3302, 0xbf92719f6e48b6c0, + 0xbff9fe6f41333835, 0xbfe313b4b8a903ee, + 0x3ff689ae1ca2e136, 0xbff9bac30f6bfe90, + 0x400bbd6c2db699a8, 0x3fe29c990c40c860, + 0xc014534bc163588d, 0x3fcdc29343c74068, + 0xbff9789c7becf076, 0x3ffe887a4eadb5be, + 0x3fc34f6f8a1c2e98, 0x3fd7eaaea12de1ca, + 0x4009311f7674bfd2, 0xc0039f85e1086a32, + 0xc00d77fc49666c7c, 0xbff37693ded78cc2, + 0xc00fcfb02d3cb358, 0x3fd3cd894f2dc660, + 0x3ff8b2bf5bef5361, 0x3ff72ec004e280ee, + 0x3ff1113b3d6f28bc, 0x3fed78e1f4f03cb2, + 0xbffa08c253c53852, 0xbfecfc8e1deef8c0, + 0x3fe8290dd46e3f80, 0xc005e7027b1e8e7a, + 0xc011dad7604e8de0, 0xbffe21d4c40813a2, + 0xbffa1e26516ff036, 0xbfb77da55f40b630, + 0xbfd6a219d029fee4, 0x3ff42262b9bf7cb0, + 0x3ffb019ec54960bf, 0x3fe7deb707d169be, + 0xc01377854e5901bc, 0x3fe2c81b8735ae63, + 0x4003bba9fc43e7da, 0xbfede6b11e4e0730, + 0xbff9f08c10ba39cd, 0xc0041a3309d1d3b2, + 0x3fd67138ff4a9608, 0x4003e4725b72f23c, + 0x40084f15e06df424, 0xc00a1bcd3210c098, + 0xc004deed6d42327a, 0xbff74d1611d69194, + 0x3fdf1e251e5541a0, 0x400978205d6e0e9a, + 0x3fd0b9c210f6aee6, 0xbff23106de28e127, + 0x3fffcdf13670d9de, 0xbff00a4984e5b472, + 0xc00bf8feff3a6fc6, 0xbfeb3363da45b27b, + 0x3fdd64d22a7c8bf0, 0xbfc54f96a16ed66c, + 0x3ffc84fbb353c381, 0x3ffc2eb750dc70ba, + 0x3fe1b4453d4f0530, 0x401021db778f2459, + 0x3fb414851fb9b24c, 0xbffe0725e7d062e2, + 0xbfdc899c4d0934e5, 0xbf7f800c0be58700, + 0x3fb37ad79cd1c214, 0x3fe7f0b53852ffa4, + 0xbfce09f0ade800e0, 0x3ff55219d8f15854, + 0xbfecfab4b2b46c0c, 0x4005d073925cf1e0, + 0x400361251a2e771a, 0x3fd03531a19abee0, + 0x3fec88dc8b79a7b5, 0x3ff57080e228ade1, + 0xc00f111e3548bc60, 0xc0018b19890e9ca8, + 0xc00221b93e151a13, 0x40074400b067f8c2, + 0xc01b8188340bd888, 0xbf58bba849769800, + 0xc000130607fb29a3, 0x3ff3b124c7f517f4, + 0xbff9240e25a3d70b, 0x40014af734b412f8, + 0xbfb6d1661c509128, 0x3ff4b364b0ff58b0, + 0x400b26fdf78b41c9, 0x3feb1e5f4d24a3c0, + 0xc004090ed35a6f98, 0xbfcba547823a681c, + 0x40107654f588b349, 0x400290993b7e7507, + 0xbfae9c65235cb160, 0xbffd26d15585cba0, + 0xbfde95ed168d8421, 0x400f7479853a0936, + 0xbfeeebe792dc5baf, 0x4013d46a62ced142, + 0xc011659e08931046, 0xc009c459480b37eb, + 0x4004aa00b3daa7fd, 0xbffa2f1bb8bc0e04, + 0x400177d9190dbe0b, 0xc0158b128de79760, + 0x3ffc4242356b01dc, 0xc01479c11897701e, + 0xbfe33f59979dbcf8, 0x4005b6e0e22b505e, + 0x3ff44bacc539ba1e, 0xbfdff48449dd2b28, + 0xbff3dfc3a3c2eeeb, 0x400bf6f4ea3a5bcb, + 0x3ff148cf67c3c9ab, 0xc000564f5c0815d7, + 0xc003d25d2c64268c, 0x4006b9843e43ee50, + 0xbfffe1b16d4d59f1, 0xbfdac14ea450079c, + 0xbfeb300fc3f29f96, 0xbfde9fe9832c5a08, + 0xbff50367d0e83e25, 0xbff6dbe91f31b8f8, + 0xc015985cb0c254d4, 0x3ffe1238be75fece, + 0x4007b56a9fa3eabb, 0xbfc5964cefee3178, + 0x3fc3678ec639dd24, 0xc008468352313f91, + 0x3fe8d8989a47b4b2, 0x3f8d18357cb92e80, + 0xc0007ba318be5d5e, 0x3ff3dc756e20b7f8, + 0x3ff4a06986b780ec, 0x3ff05bccaa8b86e6, + 0x4005d0cdb0ad4ff5, 0x3ff403d17469a816, + 0xc007131f4ea2f593, 0xbff4f58b4eac50e2, + 0xbfe08aa7f2c7d321, 0xc012119c7e4c2977, + 0xc0010bec1ae8910b, 0xbffe07e39d2d9e12, + 0xbff57f3cbe3bae74, 0x3ffb2b0855dbf34a, + 0xbff1290a91c57810, 0xc00c6e72d9b4c486, + 0x400a0be9a8ada04d, 0x3fa8bbe2af5a4250, + 0xbfff12c6e1ec56a9, 0x3fd6006e98674822, + 0xc00cb0459dd8f9f6, 0xbfbceaf46ca5e970, + 0x3ffc192eaad0c955, 0xbfee531bdd3b1f58, + 0xbfe33a72878f26a0, 0xbfe69aa4ccc03804, + 0x3fff03811c762f1e, 0xc0018d77fe08d808, + 0xbff56771c04e887c, 0x3ff7a1aa51c3c7b9, + 0x401056ab2a6fb5e0, 0xbff259e0f6bc9a36, + 0x3fed49c82fca34f6, 0x3ff8837811efb5ba, + 0x3ffa8d84ee24d82e, 0x3fe29cdfbb5d3988, + 0x40084eb9db9770d6, 0xbff08ac0a946cba6, + 0x400be5b601b2dc79, 0x3ff5c6ed2fb7c8fe, + 0x3f7cc4fd0e133800, 0x3fea478b6a2063a4, + 0x400e9c21fd068850, 0x3ff9b5ae34685593, + 0xc002db4b8b8dfb4a, 0xc010f95d83c54e90, + 0x3f7c5f7932e2cd00, 0xc010ed2e98915bda, + 0xc0038628583c537b, 0xc001c7b4ea2bbce5, + 0xbff7c65a5f26ef33, 0x401406275c86992c, + 0x3fefd15a4ed8c9c0, 0xbff9618304ca014e, + 0x3fbed0d0269b92c0, 0x3ff13ad3d7578b71, + 0x3fdf0b9ab61ad670, 0xbfe7773086c5d10a, + 0x3ff35fbec069d644, 0x40045b810908710f, + 0xbfe19cf02a65c8b3, 0x3ff51fd330334033, + 0xbff139ea6e9bb98b, 0x3ff5bc4610994144, + 0xbfe890f6d6671380, 0x4005cbf028b0d971, + 0xbff0bd4b32142b0c, 0xbf7ae2f1cd533000, + 0xc008f2c5fbd4045c, 0x3ff0cae02f3c4d40, + 0x40018e4d24c46bca, 0xbfd8dfea0ab34c98, + 0x3fe0a94e408380a7, 0xc00f9a41f1b0e53c, + 0x4005553c26a462f6, 0x3fc6cb638f9213d8, + 0xc003d0de740868aa, 0x4005ff5c629dfbe3, + 0xbfdfc19f4de1b9a8, 0x3fe1ccba51c07fa0, + 0xbfe24c267570ea10, 0x3fed416ed66479c0, + 0xbfeb24fd1a9f78e8, 0x3fd2a10a1ead0d30, + 0x3ff1eb335db63fe7, 0x3fe123a3d5a03306, + 0x3fc1eae7b93daea8, 0x3ff29c1d7bfdc8d2, + 0xc0098417ab5d0dcd, 0xc00c57fd58e3c49c, + 0xc00f70198b03008a, 0xc00cc9a9a36be61b, + 0x3fdbd2c539fc6d0c, 0x3fdfb3ff6a1ed558, + 0xbfd5953849d2f570, 0x3fe496fa18f241d0, + 0xbfdf3572887e45b8, 0xbfbd24d3526de1e8, + 0x40014093718a38e6, 0x40043aa99dd182e1, + 0xc0031c131a05abf5, 0x401846b5b0acee2d, + 0xbfc5136198536c50, 0xbfe573656b7c54c4, + 0xc0118de683b948dc, 0xc009be6cc9e9b497, + 0x4008a411881bf5d2, 0x401a9a48a7fbf70f, + 0x3ff86ce6121d6a90, 0xc00a9429f8ac7f2e, + 0xbff53669ecca7c85, 0xc002c3c5db03432d, + 0x3fe6defd9405ecee, 0x3ff5482cccc0238c, + 0x3fe1aab08893dbdc, 0x3ff948128d34c8fa, + 0x3fde397ea33d8df8, 0x3fdd058b4474ed94, + 0x3fd7243ef9a3c77b, 0x40126e8fd6a50bf2, + 0xbfd1d9fba826903a, 0xbfdaa321021b5d92, + 0xc00532158d35b2f2, 0xbfe3a367c160877e, + 0xc00be4d858f4d56c, 0x3fe154fb6556929b, + 0xc000d737cfa1cbf7, 0xbffa68d26d61241a, + 0xbfca74f6e92b265c, 0xbff1661411d2d332, + 0xc00588a41985d7d5, 0x3fd89904520ebb7c, + 0x400835e1683d7880, 0x400436c664c99f96, + 0x3fe11457b89b8a57, 0x400b00c9a85fd9d6, + 0x4009b6469e5bd13a, 0x3ff34c3fc82717cf, + 0x3fe5884438cffd4c, 0x3fd467d8c3d1d810, + 0x4013184c0bce04ee, 0x40109c8006c9d97c, + 0x3fdd127935614d50, 0xbfee1c27619eb7d4, + 0xbfea912f675bd586, 0xbfb793b64b0239e0, + 0x3ff59ce6aa1b48a4, 0x400506340f3647e8, + 0xbff23777ce6798bb, 0xbf989e8efb2dd100, + 0x3ff3a7eb6f54ba06, 0x3fcb4d31dbd89c78, + 0x4013b1a3f5a496d6, 0x401421f88b902107, + 0xc00619d09c4c35fb, 0xbfe26537089463be, + 0x4013260a439ae5b2, 0xbff20fa07713390b, + 0xbff8d04c57cd09d2, 0x400764dbbd9d4af3, + 0xbfabb9ec32f98820, 0xc0056df5b3945be2, + 0x400cc5a3c3cd796f, 0x400884cfe9a65036, + 0xbff448406fe92526, 0xc0045df85b4fba1e, + 0xc00bb3c8bb10e31e, 0xc008e881bb90aeb6, + 0xbffa3b14875b936a, 0xbff871bb570c6e3d, + 0x3fc2ece985b5edd8, 0x3fd77d8178b6ea24, + 0x3fd3f1c7fc46096e, 0xbfeaccf9d0b2ea11, + 0x4009732cf5d0affe, 0xbfeb35489a82996c, + 0xc0018f78c34b1716, 0xc01495206b64d808, + 0x3ffd4470eaaae442, 0x4002a1df25b75481, + 0x400c052d966802c6, 0x3ffbaedf441fea2e, + 0xc007937ebb7bda5d, 0x3ff17bcd912c4542, + 0xc00e7dd2c7e3f41a, 0xc006ee5df84ac04e, + 0xc005ba09292583ae, 0xc005712c1a5a8fef, + 0xbff7929309a39fa8, 0x3ff22c176ea42c88, + 0x3fbcb9a4df218ed0, 0x3fa5a653e63f35d0, + 0x40101d431d075150, 0xc00cb78cbe096045, + 0x3fea72727f831183, 0x3fd07123d64db12e, + 0x400c5aaff1f80cee, 0xbffadc25acd46e1e, + 0xc00d99efc725a350, 0x3fe0438cc7b09240, + 0x4008aa906d47492a, 0x4002257ffb637c81, + 0xbffda2e70d630f64, 0x3fffe94cd399bb6e, + 0x3ffd551af00e1876, 0x3ffddc466964a790, + 0xbfd458326608f7b8, 0x3ff4a26ae0e591f8, + 0x3fe936c5399901a2, 0xbff254051b85d81c, + 0x400550afc0e1c365, 0xc00573374f8098a8, + 0xbfd98cc5529993d2, 0xc09666fc4e690dfc, + 0x400b7ab36ca7611a, 0xbfffb66531289158, + 0x4003d9ab8ddca7a2, 0x3ff7bb146e227a6d, + 0xc00738a937551b0d, 0xbff1bb3c5010e938, + 0x4003009b8d0089b6, 0x3fed629938eba9ff, + 0xc0012d091e9fa17b, 0xbffc9b88c08d493a, + 0xc012aa454bf6b2fc, 0x400b5a15deda612d, + 0xc0046f1f83f6a501, 0x400a4ae019f1a79a, + 0xc007e912d39e77da, 0x40093f2c188bdc71, + 0x3f9280f634cace80, 0x400cf40d96605080, + 0xbff891a8735cdeef, 0x400055b358a00bf0, + 0x3ff9904b5f41f1b2, 0xc00ee8d1245b10be, + 0xc012455e2baddf72, 0xc002b0cab75ea767, + 0xc002e7883a2b179e, 0x40009af95ae4e4fc, + 0x3ffb4d9e0e1455cc, 0xbfdaaf7136ab52ac, + 0x3fec41c79f351f88, 0xbfe568fea588dd41, + 0x3fda5e0645d13c5e, 0xc00f93b29e92a78c, + 0xc01a0c9f0290c1dc, 0x3ffcffc9562d6dd4, + 0xc012d6de173469d7, 0xbff5ad5c4c85d460, + 0x3fdef642c741f449, 0x4002a3b05e14cbe9, + 0xbff3f56d105089d1, 0xbfd6eb7a68356712, + 0x400e68b4668cddb9, 0xbffaea8cdca7edee, + 0x3ffb17e71052faec, 0x3ff0f8235e4656d0, + 0xbfd7da7e875aefca, 0x400498f1863424e3, + 0x3fe223059c6a058b, 0xc001787750c56f71, + 0x4006f954c4048214, 0x40165f118b3a78a6, + 0xbffa6ab1565aa3c7, 0x400432b8ba2952ac, + 0xbfdbd0c044daf663, 0xbff0786e33693df8, + 0xbfef53f148ba6cd9, 0xc00558634d18dbbe, + 0x4000b0f17c12f0ee, 0x3fe850db91876e6d, + 0xc003d91e75a6d52b, 0xbffe0678a886bcda, + 0x3ff22a743c9d1556, 0xc00bb40c7c2b17da, + 0x3fe4854bbe267939, 0x3feed328817fe7ad, + 0xc012166baddb16db, 0xbff85b2eb0308c6f, + 0x3ffad82f799ea148, 0xbfec3780b5999d99, + 0x400dfb69589916f2, 0xc0000cd3817075fb, + 0xbfeca086678a6300, 0xbfe9c55c31a0ed61, + 0xbfe2187218fa9320, 0x3ffa55c2327a3083, + 0xbffc3f45bf0748e0, 0xc0123e133682a379, + 0x3ff523d29395f27e, 0xc0065d441f1be445, + 0xbfe0cc4f2476d110, 0x3ffd97bd4a2dfc62, + 0xbffbc3ae8e7b7bea, 0xc00b1cf5c807cfaa, + 0xbf6fdf4032bbac00, 0xc00c1ce1d0fdf05e, + 0x3ff083f049ef1c9e, 0xc008bd642fa23cb0, + 0xbff608fc4c6406e5, 0xbfec0bb7435058fa, + 0xbffb9d4c7d60ce1f, 0x4007589a4946fd61, + 0x3ff7dd4803c56312, 0xbffbba64bcf774b4, + 0xbfe7363d51745eed, 0xbfefa4647e66d856, + 0x3fc6a1818317df78, 0x400273180e834c6c, + 0xbfd82236d36fbe18, 0xbfe6232b72d00ce0, + 0xbfd0a20cd8ea2564, 0x3fe9d239d9a93e31, + 0x3ff22ad7e401f42f, 0x3fe8b75290be4a34, + 0xc0081a793cb7bca5, 0x3fc1591455b21b94, + 0x3fea118833dcd13e, 0xbff11e92c1f517d9, + 0x3fc40d54d3c4b428, 0x3fcc9b85c6cbdd88, + 0xbfd13c39d762aedd, 0x3fdf38f3d324e5d0, + 0xbfe342f67a0a0d08, 0x3fd6207af8f1d60a, + 0x4000cbdcd4b12048, 0x3fdf62a85db39260, + 0x3ff6d1a30a02f073, 0x3ffb1d167d37faa8, + 0x3fb144e095435b30, 0xc00cf66e34e9295c, + 0xbff1ec83bdebbe45, 0x3ff562f6e97c77bd, + 0xbfe69442e598d797, 0x400486559e86a2a4, + 0x3ff08ec91b50efce, 0x40120dc1b740c892, + 0xc00d8c390c002472, 0xc004aeff8f9fff7a, + 0x400cdd1ede650d1a, 0x3fabebb026495b60, + 0xc00e56bac7d69a13, 0x3fd4171b09c19c16, + 0x3ff66c37815df4a0, 0xbfff90916bc7098d, + 0x3ff400de55896315, 0x4002c65254dc51ad, + 0x4007b655d0aadf2f, 0x4000ed219fdc0a64, + 0x400224b054eb3727, 0xbffd92099aaf834c, + 0xbfff8422722e6800, 0x3fe2369c7b4c677a, + 0x3fe8bcfefe5aba5c, 0x40103706e77bc2cd, + 0xc00719c60722bd48, 0xc00e3287c6ffc3d5, + 0xbfdee94a6dadc1cc, 0x3f870db00cad4d80, + 0x4007242ae9b25567, 0x4009b28528ca9e72, + 0xc000eef9a66515bd, 0xc0052077f68ff53e, + 0xbff0f3fc27e06013, 0x4001622dcba8f302, + 0x3fe58a426a8a98a4, 0xbfe5456bb52331ab, + 0xbff183662a798f7c, 0xbfed8680f250163f, + 0xc004cfcb0627f662, 0x3fd6398b090065b8, + 0x3ff173501ac080f7, 0x400639cda01dd086, + 0xbff2d73cff311538, 0xbfeac7104a2ad206, + 0xbff0ac9f38235d11, 0x401834051d4ed688, + 0x4011fc33e6a6a2e6, 0x40071960c5ab9aaf, + 0xbff982c57c7e4a9d, 0x4008da1a7c8fcec3, + 0x3fe1dedc703e7302, 0x3fe3fa8613710c13, + 0x3fdf48b62da94eb4, 0x3fff36a16ad41bf6, + 0x3f8f459104f35100, 0xbfee77336aa21b79, + 0xbff035b7f8ea8392, 0x3ffeca031c4d7031, + 0x3fc709755dde54a8, 0xbfe36ccedba0e5a2, + 0xbff678fa9746f1e4, 0xc000166c3489e6f1, + 0x3ff800220c054ec8, 0xbfe94093bb8e215a, + 0x3ff72893461d449e, 0x3fdf2cf08345c6a0, + 0xc013e8556a5ee6fa, 0x3fecc4b6e72b6603, + 0x3fda8cd3d565b080, 0x3ff03d0a999f91b0, + 0x4003499688667ca9, 0x400368870235660e, + 0x400822101fde8102, 0x3ff74e0596f72d35, + 0x4013cc000f0b1d8a, 0x3feca985a6a30fea, + 0xbfbea79394ca83a0, 0xbfe87c2a16f0e1dc, + 0x4010817a9f2b2b7d, 0xc0156ff654e7f370, + 0xc008b6df398bf7da, 0xbff5996e397a0b8a, + 0x40035ec2788831ea, 0x4002819f10ce2c4f, + 0xc00b5dfff09c39ad, 0xbfe43dd5ce56f6c6, + 0xc00dbbe77daf8770, 0x40031456dc26383c, + 0x3fddb095f4af408d, 0x3fd0e9c1a960b72e, + 0xbfdef32a9034c20c, 0xc004006482be7011, + 0xbfcc476f38077b38, 0x3fe097d305a20b38, + 0x4011b5bb61c6b4c4, 0xbfff3b1be795239d, + 0x3fcd57646051c0d0, 0x3fe414e275ecfa1a, + 0xc00484b5e4f413f9, 0xc0034b94b14bf7cb, + 0x3fa679e8155ce920, 0x400cfa1180bfad6a, + 0xc0102062556f58e8, 0x40157b758a983552, + 0xc009c723eaa0e11d, 0x3ffb62a5050ed19c, + 0xbff9582fa97896a4, 0x40125ad1a78feeb6, + 0x3fd8809700cced8e, 0x3ffdc95bb46e9b3f, + 0xbff93bf12bc9e45e, 0xbff93605e8675950, + 0x400bf61bfb46a70c, 0xc00818f1cdf0929e, + 0x4006a8c9a484de39, 0xbff02fe730d4a199, + 0x3ffe3e6c7a7793dc, 0x4006b922fbe6f359, + 0xbfc21e88ae7e7514, 0x40126e0ecbfa0ddf, + 0xc0009b01f57b270a, 0xbfe95f01df64c11f, + 0x4011427a8dfe949c, 0xc003f022b7351e8e, + 0x4000388ce014e17b, 0x3fd90c0a7e924124, + 0xbfe46ba8901057bb, 0x3ff34e3b9341aefa, + 0x3ff20d06c3896226, 0xc0021b26bbd67eab, + 0x3ff0c5f505e7671b, 0x40076b64284168a8, + 0x4015e927b3f0ba8a, 0x3ff677f630d4dbe4, + 0xbff826a51d67111d, 0xbfe91756f2530415, + 0x4010b7f9de7d9506, 0x3fdf4c35ec8bac04, + 0x3ffbeb92683fd8ae, 0xbff4291e12f241e1, + 0xbfd8ef81b35bfe26, 0xbff9ca9aa81e0b50, + 0x3fd623aead1eae6c, 0x3fecfe3ab93e37fb, + 0xbfd9d70776b4a0f0, 0xc01383fbd0f7467d, + 0xbfe6729781524f0f, 0x3fe52a1380aecbb5, + 0xbffc934ed3bab51a, 0xbfc4958109a28d6c, + 0x4006cd9f013aa8e0, 0x3fec7d4613c2f2e0, + 0xbffcac84c313d31e, 0x4000ce9f6f79ea9f, + 0xc00e0441d4879f2a, 0x3fb46ef496472830, + 0xbffb934501bf09cd, 0x3fd116142dc03a6c, + 0xbfd366555c27859c, 0x3fe1bab240ab40ea, + 0xbfdc61af489c6de2, 0xbffc33dc02ad35f2, + 0x3fdc210029f8df62, 0xc0036fc159a69fe0, + 0xbfd7d2a3b65b8864, 0xc0002dc9e2f9227a, + 0x3ff255ad58e56fa6, 0x3fe811ed7d516eae, + 0x400791a1bbb53dd2, 0xc004c72acfc6904b, + 0xc001a39fb734224f, 0xbfd035d0b9d4b4c2, + 0xc00126e2554f512b, 0x3fbd3dda63f8c980, + 0xc00f5d568cf703eb, 0xbff08162c76441fe, + 0x4001bba9541b5326, 0xbff563f86f6d90b8, + 0xc011c5ff31a9a1d3, 0xbfc9b119adc970b3, + 0x3ff15d20b3fe7070, 0xbfe819aff4369754, + 0x400b348d8c7fe4f3, 0x3fd93c452e6b63b2, + 0xc012982e68e88282, 0x400d0f75d3d333ca, + 0x3ffabef6c6342d6d, 0xbfc0bff2169b3082, + 0x40020d05e4705830, 0xbff92fcd5d844ec4, + 0x400280ef3f6a9e8f, 0x3ffc78f8c4ba1b33, + 0x3fe72afcc0070b86, 0xbfe0a1bd515276da, + 0x3fd5315149984ac6, 0x401554e13d26163a, + 0x3feda66d1eb4a8f6, 0xbfec7183be35ed54, + 0xc00bc8f341a244c8, 0x3fe058c3db166390, + 0x4002ce9cf6cfd8e4, 0x3fdf1fbca2987987, + 0xbfc352ffded7bfdc, 0xbfe7b9a1d300a3bc, + 0xbfec0899a2410528, 0x40037d71aec18bb0, + 0x3fcae9aac1a26b99, 0xc00a4f053b83c7dc, + 0x3ffb03eae1b53f0d, 0xc010cb03425cd07e, + 0xbff92fd6e358ccfc, 0x3fd98059b1f10918, + 0xbfe574e1f2d9774c, 0xc00b6b2000e88ba3, + 0xc004df0b0577b47a, 0xbf48fb87c0f76400, + 0x400b6b23ebc00af4, 0xbfc047735de75a34, + 0x4006c94fd620c5fc, 0x4005f942e16abc48, + 0x40047ff188a56897, 0xbfd1820e386637d0, + 0xbff858c5710d1f12, 0x3ff7618f2ae5a6f6, + 0xc00ab90e421f5e5e, 0x3fe9cdcf63072999, + 0x4004c2b5a1521a00, 0x3ff3bd302fab9b0d, + 0x3fe1b5ab51553b7e, 0x3ff5e360f72a07ac, + 0x3ff2842376f76eca, 0xc01183e3b0a00053, + 0x400f14dd3dca7cb3, 0xbfb8dfe0c779f610, + 0x3fe2c0c39b7863b6, 0xbfe064019990b9a7, + 0xc00294cba63c708e, 0xc0083ca83a7a3a2e, + 0xc00be9c757c7bb54, 0x3ffea2d52c69c02a, + 0x3ffaa8bef32be925, 0xbf95f7efe390a000, + 0x3feceacb574c0308, 0x3ff26666155dc438, + 0x4009f9752bdb4d09, 0xbff08a271e962294, + 0xc008aab299cb852c, 0x40049131fa0cef56, + 0xbff869ed50b54b18, 0x3fcc2a3f21dc0744, + 0xbfc0f6ee7ff844d8, 0x3fe0faa264458114, + 0xc000110e1fd4e6b2, 0xbff68d969e259862, + 0xbff3e4f8b9ce1a82, 0xc016878d200a350e, + 0x3ff9606ba45c09ae, 0xc012836d772febf9, + 0x3feb3a7643cf10e4, 0xc0048039d2220008, + 0xbffee1cb749d237b, 0x4005aec1e1cd840a, + 0xbfeff0defc2921c8, 0xc0001659d6cd68a3, + 0x3ff4bea9f8f13b85, 0x3ff5a371cd96b32c, + 0x40075d3d91768e56, 0x400318550fdd9744, + 0x4001bae9583e7d22, 0xbff19d4cb434a4a1, + 0x4004593b1995f984, 0xbfd7225f38993bd5, + 0xbfbe247387a57886, 0xbfc40c0d766ebae0, + 0x3ff22fd5c204f202, 0xc0042aa636d865d0, + 0xbff4523da2d4c9f0, 0x4000b36d4042cf38, + 0x400e553d7f3f91c7, 0xc000c3469ff8d73f, + 0x3fe28de89ad6c9f2, 0x4000feb1261220d0, + 0xbff06764630b728e, 0xbfafbba36d7b4570, + 0x4005414c074301ac, 0xbfec0f603a94d304, + 0x3ff447c72bd077ac, 0xbfea4d671abf7662, + 0xbff5bb7d88a445dc, 0x3fced7aed8cdc403, + 0x3ff93371365b2d02, 0x400575309f19e415, + 0xbfb1e14ae915d050, 0xc00547c7c3dc301e, + 0x400510d1a5dfd1e3, 0x3fe753aca6d69954, + 0x3fed08c2cf7eb784, 0x3ff7e2c71ab7e888, + 0x3ff052d8d981760a, 0xbff1f448e2ca15c2, + 0x4019231ed2fc713c, 0x3ff5148296d48404, + 0xc0061da214ac5886, 0x4012027413c82d98, + 0xc0070c5df10af412, 0x3fd2e6d71eddcbab, + 0x400eacccf8980afe, 0x3fc2418e6750d366, + 0x3ff08827267e7d94, 0xbfef06740346dc4e, + 0x3ffa9ded8044b880, 0x3fe22c7182e5009f, + 0x3ff0e40b0ecbce62, 0xbffeaa4d179203e6, + 0x3fd5960093844178, 0xbff734708a14c47d, + 0x3ff82178b8e7f2d5, 0xbfe465b26e2bf87a, + 0xbfe129a16799aa09, 0xc00625f546868924, + 0x3feba3f01a663be2, 0x4006e195bf613e58, + 0xbff2f34bc7bd3762, 0x3ff262c269f81466, + 0x40129cc12392126a, 0xc0139511fc0c542d, + 0xc011b48e4e3a3940, 0x3fd0660710be5ce8, + 0xbfe055e391e4d7c6, 0x4001130241dbdeb2, + 0xbfcc577fcffbdff0, 0xc002cabe3a346656, + 0xc008a7998d514fb4, 0xc0051f84c29d70e9, + 0x40123bc50f383b70, 0xbff33c98fa23442c, + 0x3ff264a2637b43c1, 0xbfd09abaf330ac8c, + 0x4009479786511875, 0xc00cd963043d0874, + 0x401a69dc173804b7, 0x40000f1458a7b627, + 0x3ffb37f57e2ab6b9, 0xbfd53a9c88cd6db8, + 0xc0059114308f1c11, 0xbff9b4b8ea433e4c, + 0x400611225a14d1bc, 0xc003b1e63b978641, + 0x40031288a7b3c359, 0x4005fef479bbc106, + 0x3ff9357f9e56e2d0, 0x3fd6760d35899218, + 0xc00d8df153a4cac3, 0x3fd4b75bde076b90, + 0xc01034d1a05cb02e, 0x3fd57f2e7a0d7e81, + 0xbffa6c618e90df34, 0xbff3723fcfd5c8c8, + 0x3ffb816d17ca3036, 0xc003c0cac3179d4b, + 0x3fee69ac37dd590e, 0xbff540f69656c605, + 0x3fc49dfa7714159a, 0x4001eb8e5de7aaa6, + 0xbfb9607c920d5ad8, 0xbfb066e990661be0, + 0xc01693a905b0e396, 0xc002127329772598, + 0x3fe8a9ee51ca2c80, 0x3fe31248f03da32f, + 0x3ff25e8a8ba5fa31, 0xbfdba83df939686c, + 0xc010a627c39e7b24, 0xc00901a1ad440415, + 0xbfea304dc4e40540, 0xbff272a5184762df, + 0xbfc7cb1a314f696c, 0x3ffac1a8bd95794c, + 0x400da2d979639b32, 0xc0038bc40e9e85e6, + 0xbff815c1e08920c4, 0x3ff7869752c82160, + 0x3ff237d9d1078d66, 0xbfa4089d0b78f9c0, + 0xbff5e5bfd8052552, 0xbfe91ec8911f9808, + 0x40063577219fc2bf, 0x3fe1342164dc3477, + 0xc004664a40157c66, 0x4018ca7b2096fffd, + 0x3ff46d06390e1231, 0x3fc4a27ed0369fe0, + 0xbfd6e1366b925838, 0x3fd3d99286ce2880, + 0x3fcf8fd4c15fee8f, 0xbfe58e709bdb5f56, + 0xbfcdbe8b81f9b4fc, 0x3ff9898509e6d35b, + 0xc009c057aac36d9a, 0xc00882f227f06716, + 0xbfea123ea597b67b, 0x3ff4499025ba4726, + 0xbfec987646c8fb1f, 0xbffc942fd8312e5c, + 0x3ff71ae398917142, 0x3ff32f02347e0ea8, + 0x3fe2c423275438e8, 0xbfac3b6b91c80400, + 0x3ff8cd988748ce8d, 0x3fe0cc9e3af81c90, + 0x400a388dc52a9f8d, 0xbff42e53a505090f, + 0x40014b89780d1631, 0xbffbe5290da40ab4, + 0xbff0671192284210, 0x3fc267273b5b24ac, + 0xc0062f6b219a19f7, 0x4005481d21d8e46c, + 0xbfea58f6396bcfe6, 0xc00ad9fa7dbd2e8d, + 0xbfd024c6c3005ced, 0x3f9ac5474b270680, + 0xc00026c3e2c92a2e, 0x4006dc84929cbcfd, + 0xc0037c020efb4a59, 0x3ffebb9ea85ae9dc, + 0x4007c20b510456b8, 0xbfe0e5c9f2ebe839, + 0x3ffd6f7dc5ac3128, 0xc008fa83ffbcb4fc, + 0x3fc2499d18775770, 0x3ff5693724b5d569, + 0x40070caa0edb31d4, 0x3ff5e816f8cfd0a5, + 0x3ff0b273f8396429, 0x3ffbd64bb2241d85, + 0x3ff5f07b6d312c75, 0xbfebde4fdab7e52f, + 0x401118d3e5847ce4, 0x40090c430f3a372e, + 0x3fb9261ab5b09ba0, 0x3fc7660d69944156, + 0x401298eafa175606, 0x3fe8b473e24a467e, + 0x40000a0fed1a2252, 0x3ff816ad1a837ac8, + 0x3fd33a777ec3280a, 0xbff7553babcebcb6, + 0xc0041b317c194862, 0x3feb91457df540eb, + 0xc006d46756131aa8, 0xbff43415d16fcbab, + 0xbfd7cd008031be44, 0xbfd9712fc101ba53, + 0xbff2990972e795e0, 0xbfd036be1bd200b8, + 0xbff8860d470190c3, 0xc0011e573374d0db, + 0x3ff4c9466fec853a, 0x3fe2d396950b7324, + 0x3fe8bcd13559a598, 0xbfeea3532695d38a, + 0xbffa38592f55d17a, 0xc003dadc182b617e, + 0xbfd2c4a96397ded0, 0xbff959c37ea05e14, + 0x3ff1609154f78409, 0x3ff6913b5f54f860, + 0x3ff58843c26351b4, 0x3fe8518d77eadd6c, + 0xc00aa5147880e8b7, 0xc011bd4fc9ed4053, + 0x400a9ae95d8b4ffe, 0xbfc55faf8bb273a1, + 0x3fd47e9e22ddfa15, 0xc0002e6d3ca0651f, + 0xc00c716354ec9a05, 0xbfd786dc7c3f1228, + 0xc001917f5bd88321, 0x401285002311d2b6, + 0xbffd9546ace98fd2, 0xbfeedb1c72d39bd8, + 0xbff28475f51d2f3f, 0x3fde6ded916722c8, + 0x3fe0f5cf8d27692e, 0xbfe3a73ef049d147, + 0xc006d501a8497e5d, 0x401c0c609cd512c4, + 0x3ff3256637c08cdf, 0xc006a6ce0f82c460, + 0x4002278b6281252b, 0xbfe2e14882110576, + 0x400c9ee42b084f29, 0xc0107dc2e6ed0c9c, + 0xbffd613dac38c7d5, 0xbff4e01cf022892b, + 0xbfe69140269c82a6, 0x400151bf49d6eb3c, + 0x4003d3540636c49e, 0xbfebe1efd15c48c5, + 0x40144f446b2b003d, 0xbfc39912daa0f320, + 0xbffaae6df719f124, 0xbfcb5a5e30fa596e, + 0x3fdfdab130432db7, 0xbfe68971cdceefeb, + 0x4012215a791da537, 0x3fe32e6c4bb9d65c, + 0x4017f6916d074ab7, 0x4007a11cea35de0c, + 0xbff87c148a36a2aa, 0x400245cf3ceb6a95, + 0xbffa1015d3ba21e9, 0x4016162a608bca6c, + 0xc010498562ef4461, 0xbfed538b9314cbcc, + 0x3ffa1403eff03924, 0x3ff0b99d50d9a73a, + 0xbff6154af25f7a6b, 0x3feaf3d28ae90d2e, + 0x3feecb30c10076f8, 0x3fe6389673d33f28, + 0xbfdf623b1a099907, 0xbff691ae934a3997, + 0x3fd9f469c0066bf4, 0x4010b857d374fd3d, + 0x40002e564a570422, 0x400c966d43cdf2ce, + 0xc005b124424c5776, 0xbff9bde88d86c55e, + 0xbfdf9824284ae89b, 0x40124edeac3fb0c8, + 0xbff61bae351c9bb4, 0xbfe5dad1754511dd, + 0xc013fd3dc6f226a6, 0xc000d53fc7e1bd9a, + 0x4009b8d3b353731c, 0xbffe37163b2f90e6, + 0xc0111f95a25ae1c2, 0xbff67c04a628d4de, + 0xc0098de5cdaec200, 0xbff42e5f53047e5d, + 0xbffc4138758a75d6, 0x4011c99e3766ed3f, + 0xbfe76d6cbbc58267, 0xbff69fc1f5a7c096, + 0x3ff7e418ce644369, 0x400ebe86992aa676, + 0xbff2025027e424b8, 0x3ff7b00d0cca005e, + 0xbfed34299c2687da, 0xc003f78b10a8b063, + 0x3fd82c8b3268a894, 0xbfc386deaba2ff26, + 0xbfd1f97915507618, 0xbfe7419d872c8de4, + 0x400cd9cc43b22272, 0xbff312a90e6ec812, + 0xc004106356af7a04, 0x3ffd1d58d13c7013, + 0x40019e270aca6521, 0xc00b131ee0dacf40, + 0xbffec1e51337e7e7, 0x400440af36d741dd, + 0xbff63f645d046bd6, 0xbffe8ae10c1e3f07, + 0x3ffed60d32599383, 0x3fb016b489eac3f0, + 0xc005bd17eb2bbcde, 0xc0110d56ede632b9, + 0x3ff21ede8863ec98, 0x40088e55b6a7c9af, + 0x4005463c5df413dd, 0x3fcfc69160be2e00, + 0x3ffe7bfc88801eee, 0xbfe49b1d317a484a, + 0xbff7562da5ab92a1, 0xc00a6e20d8634598, + 0x400121fce0217559, 0x3fed7504921205f2, + 0x40028e9a8f1093b4, 0xbff5e53764371588, + 0x400393dc9123655e, 0xbffc5d563cd0028c, + 0xc00e923f0fc18095, 0x3ff1c0dd464448f8, + 0x40136c3973119be2, 0xc01061e424a970c5, + 0x3fd324713b0d8f80, 0xbfcb5c222bd4257c, + 0x3ff42925712aa693, 0x400683aefcdafb0c, + 0x400e637e78b6bb1d, 0xbfdfa2caed1f9a66, + 0xc00e3d81f9df73e0, 0xc005f76add030a9d, + 0xc01078c3f03c2782, 0x400b12fe3279603a, + 0xc01175c4a66d4f65, 0xc000710291915ab4, + 0xc00064011024d7f6, 0x3fffee3654e221f9, + 0x3fe55223624acb36, 0xbfe979a8dd83cf7a, + 0x3fdf4b61d53787e9, 0x3ff6f887b8508858, + 0x3fb3be8e98466f55, 0x3fd277c76f0a6f3c, + 0xbff2fb7f44413632, 0xbff59c7e716fbd87, + 0xbfff05faf80a9515, 0xbff9f150a6e2c284, + 0xbfe39887c9c82f1f, 0xbff54f7bdff47b40, + 0x4007f7ab927c0e00, 0xbffccaf6801908c5, + 0xbff7074d8ea0de2a, 0xbffe6d781e5f60ca, + 0x3fc59d36eea855de, 0x4013665b915476a7, + 0x3ff1b341d9be0284, 0xbfe3040b346875f6, + 0x3fdb1f780e6f2526, 0xbfe2ae58a1f3d1f7, + 0xbfd01910f15bd7f4, 0xc00ee48871306948, + 0xc00385192420e098, 0xbfe00d3a4717df31, + 0xc00915796aef6f52, 0x3ffa7fbfa5aaf074, + 0x400a59800b66b31e, 0x401b1f41b85aee63, + 0x4006fbc28cf0a958, 0x400328e11f3adbe5, + 0x3fd6b3120f4a488e, 0x3ff4e0460732c136, + 0xbfd36a15a732f847, 0x4009c5071d8b44c9, + 0xbfd18d2a3d7ba862, 0x3fe5e2c0fa5ca861, + 0x3fbef9657b08e6a0, 0xbfedbb677ac8b5c8, + 0xbfd485b348c7ae92, 0xbfc4a22ecce8e540, + 0xbfe9da9628e4cf3e, 0xbfed5453eecc5fea, + 0x4007eb8adbe10fde, 0xbff692102643690c, + 0x4002bb61c9118dc5, 0x40008394a82a65ba, + 0x3ff42a014b20cde7, 0xbfcd6ee6a21de178, + 0xbfd2b415851a975c, 0x3fdfbe233b6941bc, + 0xc00373639f31a014, 0x3ff605da39b6c367, + 0x400408cbdc980eac, 0x3fe9e114f4aa08c8, + 0x3ff7994bc75149a1, 0xbfd8c41e9e21e71c, + 0xbff5a1037edcedee, 0x3fde39459f4cd642, + 0x4001997e96209ee4, 0xc00257e0b9745458, + 0xbfca5a6974fbd7c0, 0x3fe2b3877b40c8f2, + 0xbff90052d1c06282, 0x3fe46dcb2a2c5add, + 0x3fc1f23480c62930, 0x3ff01e3636e7ffdc, + 0x3ff4bf8823901302, 0xbfd30f699d07942a, + 0xc00519b3ede40072, 0xbffa5fa8a14f26c5, + 0x3ff98f470018f442, 0xc0065410aa6b23e5, + 0x400c5c963bbe3797, 0xbff28006a47c98cc, + 0x4000837389848d63, 0x400af2c6ca2cfe60, + 0xbfeeeffa85d6c96e, 0xc007077560cc3fb0, + 0xbff125e06289b1e0, 0x40025b920d64908b, + 0x4010ad56cd22f257, 0xbfe39681ac301a70, + 0xbff1a48743261400, 0x3feeadef178a2e0c, + 0xc00339661c617b5f, 0x3ff2923e8704a200, + 0xbfdc24e18e4f03a0, 0xbffd362a263ddb48, + 0x3ff1a1716a748ef0, 0xbfde02d7d70032a2, + 0xc00062dd84f34017, 0xbff4e5a338a68672, + 0x3fdc7aac73254d91, 0x400240451a5b6a79, + 0x3fea0e75db2cd402, 0x3ffbb2906367358d, + 0xbfed138b2591923e, 0xbfb973aed37dbc08, + 0x40059ebc14ba1869, 0x3fe35d99edacaa7a, + 0xc005909875bf73bf, 0xbff2b26a6283c927, + 0xbfecb1ed9da4c224, 0xc000abc8c51fe8aa, + 0xbff69f93c4e1fbb1, 0x4005b04e73682edc, + 0xbffeaec4f2f7f9a0, 0xbfd0613beb107246, + 0xbfd071c478fe3118, 0x40097a55c791e323, + 0xbfe1d7af853bc0e4, 0x3fc76882e37a6bd2, + 0x3ff60777268c6d93, 0xbfd110e38158ba60, + 0x3fd169b86a0c6a06, 0xc00416fefd2ad3dd, + 0xbfeaf59d06fa2a93, 0x3ff8a07afa0404af, + 0x3fe3432e9d905363, 0x3fca49cc028e5759, + 0x4012f4ffeb6217d7, 0x3ff24c045a001f55, + 0x4003a08e9f696244, 0x3ffb1d377261ea5b, + 0x3fe5ac92051563b7, 0xbfe1357084922bc8, + 0x3fe312f576fab892, 0x3ff9959614eada14, + 0xc0015572ca1d4831, 0xc00f4f4e61018b7a, + 0x40108f1a03d5209c, 0xbfefd89ed53d8b43, + 0xbfc7ba1b2ff76ee4, 0xbfed1bdf195a8c63, + 0xbff4d65b7b025807, 0xbff4275ea0bc0c98, + 0xbfef81be269a22da, 0xbfe3a8472037bcfc, + 0x3ff25ea00584c1c8, 0xbfe0fde5825d2964, + 0xc0002bbe0bb43b18, 0x3ff1c8d7fab1af34, + 0x3fffbe6768e89f2e, 0xbfb3e6a621a5ef1d, + 0x3fe228d02ae45faf, 0x40003ab6e975ae24, + 0x3fb9f001f007aae0, 0xbff4f5269608c6c4, + 0x40117083ead04c83, 0x3ffed49a9fe024b4, + 0xbff6c31e743cdbd2, 0x3feabc6235182ace, + 0x3ff153120f4fda2c, 0xbff442f2f13f7a1b, + 0xbff8ff28179a395c, 0xbfe7240118eec8cb, + 0xbffec8f7bb2ec4be, 0xc0080176387b50dc, + 0x3fed3ed6bc33ba90, 0x4006502776cd6f18, + 0xc00d3969d20037d6, 0xbfef60df3d9b101b, + 0x3feb59a0649c28a8, 0xbfdb3c83d3db408c, + 0x4003ee7e7e97388e, 0x3fc519b8a09a2b38, + 0x3fe8456d6bca762a, 0xbfaef25dd6abee90, + 0xbfec33c722e24e7c, 0xc018cd5fdf80254a, + 0xbfe3ada08108d8d6, 0x3fd1d8b44724fb58, + 0x3ffebd205e3ede37, 0x400b4c88e7e1496e, + 0xbf701365e3a9fbc0, 0x3ff0ed3d181c1b5c, + 0xbfe0852e56d9ca90, 0x4013fd5231bf231d, + 0x4006e6e0a929411a, 0x401306b3ca27fdbd, + 0xbfcaa41e025c8140, 0x3ff935c5d1f789c0, + 0xc0085a530dbb342b, 0xbff8263c97044fe4, + 0xbfd18becbc8b8144, 0xc00bd85bc8bdfa2e, + 0x4006ad3af2bf55bc, 0xc00f4738520d62a2, + 0x3ff3d9601e39b678, 0x3ff43c276ed4b72f, + 0xc007334301602e66, 0xbff90303114f93e5, + 0x40018f17f0695fd1, 0x4001c35f6113ff45, + 0x3fc1c491c9a93ee0, 0x3ffad158907647e4, + 0xc0030f71fe691adf, 0xbff16a76dede27c2, + 0x3fef15f84f583863, 0xc004b676172d2e5e, + 0xbff538e36fa9c461, 0x3fdfef0aecc8f5ac, + 0x3ff7d86f1dc11d38, 0x3ffc6bd77237cc05, + 0x3fd4d57fde904bd0, 0xc00aaf073819eeb6, + 0x3fe8dddcb3f389dc, 0xbfe46eef980cb63a, + 0xbff504d98bf45847, 0x4004db3635026a68, + 0x4005bcd15383c508, 0x3fe8ce6839939b0b, + 0x3ff5fa9526cf1ae0, 0x400d2f2ca3710ebe, + 0x40089b63b77d7d5b, 0x400c330ebfbf6ef0, + 0xbfe953b0c56429c6, 0x4007edf16bc5917e, + 0xc00ac1d4e3224ff9, 0x3fd5c1b0434f2af4, + 0xc00a1bbd55e8e11c, 0x3fe8d7ab61cfabba, + 0xbfe77408f7675f9f, 0xbfbff7f1a2bea290, + 0xc002b104d6f1f166, 0x3ff9ff9d188bf65f, + 0xbffeb78cbc375410, 0x3ff0b58b608b7039, + 0xbfd5923f52c5e1b0, 0x3ff73e9632fff540, + 0x3ff04b650ea8ab7f, 0x400766e084808139, + 0x3fea5eee414344d3, 0x3ff75eec27c3e76c, + 0xbfc2a4f596906730, 0xbff31963f8bac19e, + 0x3ff9e55709eaaf68, 0x3fee70b67e728908, + 0x3ff6104048660eb2, 0xbfe8e527cd1bd8eb, + 0xbfef8f9581a1d648, 0xbffffe6a4bcaace8, + 0xbfff71c434a4be2f, 0x400c16b8f324e7f4, + 0x400f305418009b88, 0xbfd87c9cb097dd18, + 0x3ff94c7f7d2fcb01, 0x3feb5aa3ab954a99, + 0xbfddcff185939426, 0x3fd94f6cb49b16f7, + 0x401899c4d8373c8f, 0xbfe3961b8e1d16d3, + 0xbfe4dd5dbac740ba, 0xbfded89774943452, + 0xc000c2f0bb28b5e9, 0x3f9582c18b3ef520, + 0xc005f40fa0fe6cc3, 0xc0005bc36b7af087, + 0x40188c35030cf893, 0xbff08e414ac09e55, + 0x3ff4c58c1ae450e0, 0x4011e1c6c1c37fc3, + 0x401572578e0119fd, 0x4015c9fff1fd896e, + 0xbfefae6422a04780, 0x3ffd664aa5f8c0bc, + 0xc009426c3b113726, 0xc0138acb2b4b5540, + 0xc006ea15cd7c3bf0, 0x40044c0543335b94, + 0xbfdf73379ab392ab, 0x3fe8f8199800aee8, + 0x3fe6c05b7158db18, 0xbfce2e349e1bafe4, + 0xbff0c9a299b59c45, 0xc0062ae98e15fe55, + 0xbff5f21df474d2fc, 0xbff963c19ef3ac8c, + 0xbff0c2f1d1353a77, 0xbff37ec0b9dad7a8, + 0xbff062493dbd4a16, 0x3fe9e2e9fc972268, + 0xbfff70ae7561e000, 0xc0062eaec04b0331, + 0x40101dc4b6539839, 0xbf9a2fb9237c9280, + 0xbffc0e54301ca17a, 0x3fc466e06b9c3b30, + 0x3fbbfa36d03116a0, 0xbfd971fb45a128be, + 0xc000ef6660a67f9c, 0xbfe41149d4a012cf, + 0x3ffda0c897f7478f, 0xbffd9272765c1f61, + 0xc00037dcdf23d1e3, 0xbfe3bdbbb35fa0d2, + 0xbffd23213fc4cc33, 0xbfdac6d84ebd4bdc, + 0xbfc5667b647c2cc2, 0xbfde70754b71669c, + 0xbff5cdc86f729b6f, 0x3fe545280baf1d00, + 0x3ff0cfd59a68636a, 0x3fd4de8f422cb7f4, + 0x3ff27cde0285a5b9, 0x400529e7e475d0ea, + 0xbff895a6e054219a, 0xc0116709b02028a5, + 0x40157932dfc636f6, 0xc00aa513ec109136, + 0xbff4804023c5f4c4, 0x3fbb4ce8d70c42c8, + 0x3ff9dcb438a88efe, 0xc001de3316da9ca1, + 0x40024e4f6622802c, 0x3ff6ed1e5b3099dc, + 0x3fbad3234960a960, 0x4005d38c728f842c, + 0x40079775d3648d06, 0x400004e3c2508b10, + 0x3fded032a11a6790, 0xbfe8fec59187f65c, + 0x3ff63851515d8f2b, 0x3ff5cd1f6df05f08, + 0xbfe3650e54cb9145, 0x3fe46df2e315729c, + 0x3fca9ed4136c1a9c, 0x3ff67d3896109d9e, + 0xbfd96cda29085382, 0x3ff8222607222104, + 0x3fd6ecf412352b31, 0xc0133a155e0d9f18, + 0x3fa9d62a60ed1900, 0xbfcce44bbbc5b720, + 0xbfffd545b31f8ff1, 0x3fd40ed2831d61b8, + 0xbfdbbaea80808224, 0x3fe3e2ef964511c0, + 0x3fdf69ec1cd6c7b8, 0x400a60ea23f1d1f9, + 0x400a1e1ec3fb749b, 0x4007b1dd8c1bd81c, + 0xbfeb9ae8a62c1628, 0x40042ba497961030, + 0xbfd976d9461480dc, 0xc0026a03e8a80a2a, + 0x4011a9ade1ba5c4a, 0xbff1b285d592b9cf, + 0x400255bbf47e2f32, 0xc001a6f77cc758d6, + 0x4006bec9f33a2372, 0x3fec28deed885ee2, + 0x3fdf0ddfee22e094, 0xbfe83b289f154ccb, + 0xbfe594b2301cc9ca, 0xbfdb650982c18b14, + 0x3ff8c0e96f82f67b, 0x3fd2d650903cc3c0, + 0x3fffc002d0bc09f2, 0x400cc16858413a8c, + 0x40020cfd6dcbd6f3, 0x3f90924a2b1a80a0, + 0xc0012b9556aaea6d, 0x3ff2149918b97c39, + 0x3fe22a838f664310, 0x3fffd66fbdc8dd8b, + 0xc0154e5da924e7fa, 0xc0062404356205fe, + 0xc00185f15dd78274, 0xbfde662a088c6214, + 0x3fe12924d4537700, 0x400380b7318f5c34, + 0x40162700a3d12695, 0x3ff60a2e74c7c608, + 0xc00cce20b85b87d3, 0x401192f2c3754690, + 0x4008c3ad134926e2, 0xbffde0fb93c71861, + 0x3f8c0b4ba145c380, 0xbfdcfba461329040, + 0xc00be4b3a08cc42d, 0xbff3eb3fe6ebfb8e, + 0x4005db2b0765c946, 0xc00d40902d3a1406, + 0xbfe86acd04e9a6a0, 0x3fe1f9bee158d9ce, + 0xc007992270240da6, 0x3ff6e56236b741ac, + 0x3ff89b7e2ac008ce, 0xc001f7fb682804ef, + 0xc00eed9c552f2e39, 0xc003b6ca5a6f4344, + 0xbfe275f9ae16933f, 0x3fd02613fb1f1198, + 0xbffa4109155abb22, 0x3feae9672a1b6cc6, + 0xc0130519534d0a76, 0x400348e752523f9a, + 0xc01065692fa519e4, 0x3fe3546b85503207, + 0xbffc71b1af25fb6a, 0x3ffbc3a1097f88df, + 0xbff27b02f694a4c7, 0xbf8987cc78544a00, + 0x4000fe09ce23e598, 0x4013a471c102561a, + 0xbfdba169ad9df87c, 0xc0037d1f3a77f8c5, + 0x3fd296ada2537eda, 0xbfee66b48c9f63bd, + 0x40101aa4ea471d98, 0x4006efe5fd1bf59a, + 0xbffa9854c1ce7e70, 0x3ff368d36b0b8447, + 0xc002d6cf848e7882, 0xbfee4425d1e9e140, + 0xbfe0770dd849774a, 0x3fd548cca01d5d34, + 0x3feb0571682f9a7a, 0x400757da22f98514, + 0x3fe50bfd0b7522a4, 0xc003a445423dac59, + 0xc00312663afd71b4, 0xbfda18dc0e230468, + 0xc0134528c8599ee8, 0xbfc973a9c65a7440, + 0xbfccfcdc86f57628, 0xbfd81661295040dc, + 0x3ffb14c7a1c88d6d, 0x40126367716c19cd, + 0x400338a644ccdf20, 0xc00073197e4a4a71, + 0xbfed4e5b2e75ca58, 0x3ff825e6f419d9fa, + 0x400ca2f715c9866d, 0x3fd4b9253f59aa19, + 0xbfab44afeeae9000, 0x40076243882388a0, + 0x3feb30e646434cc8, 0xc00c9534fc2460a6, + 0xbff7be3c8a5041d4, 0xc005836994008a4d, + 0xc001ce703d5a670a, 0x3fe0161db0103c22, + 0xbff792fa8aae0eae, 0x3fbdbbc9ab4d1410, + 0x40065940a4038e62, 0xbff7d3caeb6e5364, + 0x4008e077413cb05e, 0x3ff79e21ef268bc1, + 0xbff0bfd371da2539, 0x3fef2989ec71bd82, + 0x3fe864a8cc8c2e2c, 0xbfd69f1cae4a9b00, + 0xc018f62fe44a1a84, 0xbff521008a409759, + 0x3fe9c62780512be6, 0x4006165e3e4500e2, + 0x400770762a6cb84f, 0xbfb0c2026c09775c, + 0xbfd396a87a3a9898, 0x401346188367fa1d, + 0xc00657bddb2963eb, 0x3feb4eb74e7da409, + 0x40122773f7fe5ad3, 0x400f6492de81ac3a, + 0xbff0db70614f447a, 0x40178b494fcf6698, + 0xbfcf4c6f7386daf8, 0xbfbf5a725c7e5510, + 0x400794f61d0329d8, 0x3ffbe68b41fdb5f4, + 0xbfe36080c9af7dda, 0x3fe2c1e0a37a3920, + 0x3ff3b3d892c979fc, 0x3fd68f4d38104320, + 0x3ff95d4b0722549a, 0x400576af6feef700, + 0x4011de0eddb61e74, 0xbffdfd4c04ed8346, + 0x400c2e3c039b041e, 0x3ff752fcd9194d0a, + 0xbffc2a338cd02e48, 0xbfc765fb697d00ce, + 0xbfe992ed22174a0c, 0x40055f6af23d3380, + 0xbfe939dc0fb16d1e, 0x3fd5bdcfc1fdb4f8, + 0xc003be6188e9ba8e, 0xc016f5de9957310d, + 0x3fe600e335c9631d, 0x3faf8fcb64d6a510, + 0x3ff8b7ccf106b36e, 0x400468599360eccd, + 0xbff08f5077485c24, 0xbfb5108a0ac6f474, + 0xbff174d3efc47b73, 0x3ff5864c161898fa, + 0xc00aa1145ee1213e, 0xbffaec1589a38940, + 0xbfe89b31aac912c0, 0x3fd3146a826ea034, + 0x400aef9c3a55acdc, 0xc00d5825b4d9c8d1, + 0x4007fdd456b9bd3e, 0x3fddc2be13c39a46, + 0x3ff3f20848e6b9a5, 0xc010fcb7f9fe3522, + 0xbfe0d488edc4a17f, 0x4003e8b75e18104a, + 0xbff0224af2e35ce4, 0xc0075fc6e7f635c5, + 0x3ffdbf5d5a26e78a, 0xbfe1cb7d9f026042, + 0x40143716fb00a61c, 0xc00eb16ddc2ba211, + 0x3ff94d818e281f78, 0x3fd8dc941ffd92d6, + 0xc014730d9d13813c, 0xbfd60e9520ecb68e, + 0xbffc89cd936f553d, 0x3fdbece0129c3d48, + 0x3fd0bc4459e7eac1, 0xc004c5d70a81b888, + 0xc01295a4525a1e3a, 0xbff4bd3663c8939c, + 0xbffc6b3cf28a8900, 0x3ff1ae1fe8f5ff60, + 0xc00bea7af0a643c9, 0x3fe4a7ac250b9567, + 0xbfcc0e0573c5e628, 0x400cdde5834fd6e6, + 0x3ff393abbb497077, 0x3fe381cd7522eee6, + 0xbff64ecd32e70822, 0xbfef186eacd43f62, + 0xc00d66999b09ced4, 0x3fac30c5e845c990, + 0xc007944659ed5194, 0xbfed18e522bff15e, + 0x40110c75d78f8532, 0x3ffa80d9016c83c8, + 0xc005de68da691e86, 0xbfe892fbc538a5ec, + 0xc0067180e6bf4b15, 0x3fe642e2584cbb6e, + 0x40039f3d770621f4, 0x4008d744bb8b4fe8, + 0xbffb58a42c390c80, 0xbfbda521f733c380, + 0xbfd688daf05f29d8, 0xbfae0b8135289b40, + 0xc009da5adae018a2, 0xbffe285c18cb7078, + 0xbff1796ac9fd28e4, 0x400c66587924f43f, + 0xbff1765fecd58cb0, 0x3fecd950adec0aac, + 0x3fe166a003fdb07c, 0xbffb2bb88378317f, + 0xbfc3533277b7697c, 0xbfca9f0751c22160, + 0xbff39fe61549bc48, 0x400255ed141952ab, + 0x4005c3988a2d7b21, 0x3fe29963a1e13b2d, + 0xbff990b8393fb211, 0x3ff2c64dc37e3bca, + 0xbff05ce4e93e09af, 0xc006106340cbfe33, + 0x3fdbc43c3a613d2c, 0xbff919ab8e2f75b7, + 0x3fe4e429b2304cb6, 0xbffd815fc946195f, + 0x40103be2f1ab432c, 0xbffeb1cba91ae1b4, + 0xbfffb691a1546dca, 0xbfce70ae5eba5750, + 0x3fead5bae46e6d8c, 0xbfdda64d05ec16e8, + 0x40006d26aa5152df, 0xbff9f27b40e4562c, + 0x3ff8b3e0fbb3402a, 0xbfea64d96e84e0ca, + 0xbff202cc35ddd958, 0x4010eab0301fe51c, + 0xbfe7f8192c1734ce, 0x400b1e8795c2b39a, + 0xbfef021a3d238a12, 0x3fda6c473b37681e, + 0x3fe8e12b767bf842, 0x4004b50b0ca7456e, + 0xc00328bf58800cbe, 0xbfc44b75508876d8, + 0x40000b4c451f81ac, 0xc00cfe56683a55fc, + 0x3ff9862231fa10fa, 0xc00512a45624747a, + 0x3fd1678da0819142, 0xc001158cc88c1c25, + 0x3fd61e47885c224c, 0x40001df08db9024e, + 0x400a49089605c3ec, 0xbf894e998a0b2940, + 0x400ce79058d8753a, 0xbfead7e828b89dac, + 0xbfe41f2bcfc974dc, 0x40061be40e90e899, + 0x3ff3e2668f188efe, 0xbfe17cdb36391978, + 0x3fcdcdd293722bf0, 0xbff9dec168428180, + 0x3fbdc88956d5cc30, 0x3fe9544683056c25, + 0x3ffb651a24aee7be, 0x3fe632d918bd75a8, + 0xc00a1779ca7a784b, 0x3fe97f8a480b8076, + 0xbfd376958783c050, 0x3fdf21ab654f1840, + 0xbfebabc24ec613c8, 0x3fdd692adff8b0cc, + 0xc009dbd35f4b6e0f, 0xc0018c766be035a5, + 0x3fee4b372034bc54, 0xbff845d2489f6cd5, + 0x3febc5d5815ee6bc, 0xbfd5e4376cd6e1ba, + 0x400acbfdf015c2c0, 0xbff59afe89a332e7, + 0x3fd2946d24f8e5f8, 0x3fb07c28ccaa38b8, + 0x3ff32637441e7199, 0xc00a131ceb77e349, + 0x40054ac1dd6c465b, 0xbfe2fb4c25538c34, + 0xbff2747a7f961b8c, 0x3fd997af02d89388, + 0xbfdf8564837957b0, 0x40031c0074679830, + 0xbfd86edc5dbc35c4, 0xbffaa1b6504535b1, + 0x4004c5cda57c2f07, 0xbffb2c9059b92478, + 0xbfe6e5abf386038a, 0x4003f6d17c0cf102, + 0xbfeeb12048b9ea1a, 0x4002bf191021dcea, + 0x3feaf8fc0be582e8, 0xbfe6e48bb7714c3c, + 0x40016237af12db64, 0xc007fa7d7f3dd77a, + 0x400349717fe87d1d, 0x3fec210c550dfb00, + 0xbff12fb604398e29, 0xbfe2d4364ba70b0a, + 0x3fface88e040c1e8, 0xbfc0ae716fc79300, + 0xc0060b813742d34d, 0xc002a7204cb355ce, + 0xbfe260f0df22746b, 0x4010d5cb56d18c15, + 0x3ffc882fef25af35, 0xc00123657217b7ce, + 0x3fc917d341baa438, 0xbfe795c803953934, + 0xbffa2026f3be168c, 0xc001574ce77f8663, + 0xbfe947990d0c3380, 0x3fde70558c873270, + 0xbfefd9ecf25ccba0, 0xbfe2bf79f1770870, + 0x40040550cbdb6f8c, 0xbff07168cefb432c, + 0xbfded7ecdf1ee6ea, 0x3ff74532ae241b34, + 0x3fedca8b7e4b5bd5, 0xbfe6f2d1c9548776, + 0xbfd311766fe6d150, 0xc004eaab83edbbbc, + 0xbfee5ab8803eedc2, 0x3fc64be77bacba20, + 0x3fe8f24b8ad04ea7, 0x400cb646811d7ab6, + 0x40030e442dfb3168, 0xbff9c00ac02b064a, + 0xbffa2904f3674813, 0xbff1b2840999ed84, + 0xbfdb0cc3874c73c0, 0x3ff8c586a8cc48e6, + 0xbfe8b4091a09f548, 0x4006ab1bed0e7e0b, + 0xc01060e1c44b601a, 0x3fea3d6342dba2d8, + 0x400e2c66fe4d9e8f, 0xbfbcc0819ec16da0, + 0xbff5bc778b6bad16, 0xbfb0343d3dd92280, + 0xbfeaba8c4ec9472a, 0xbfe30090ea9c47ab, + 0xbfb5ac5c833a22f0, 0xbfe37c4a151fd603, + 0xc00c8333f4cddd6c, 0xbfd40db30a9ca24a, + 0x401181e64d32aa74, 0xbff93c7312e5652b, + 0xc00bb4213cb2aa63, 0x40057cb660f74d26, + 0x3fef5183538f2ad0, 0xbfdfc661ffa5c868, + 0x3fdaaa1bd8f2d9d4, 0xbfe317cd609d2237, + 0xbff78771440f70ba, 0xbff6886d673b8768, + 0xc015fd0d531533c6, 0x3fd1f8d40f75943d, + 0x3ff2adbd350c02f8, 0xbfe125900a8a2eb0, + 0xbff7cd4bec9ea8ec, 0xc00ec1b5fa92f6de, + 0x3ffe642934201840, 0x3ffefff650909755, + 0xbff968f9fe49a278, 0x3fea7bc4cd6b7ede, + 0x3fe0b75863c7fd04, 0x3fcbe82d32f7b15c, + 0xbfe0c6ed6d26f954, 0xbfe68e39a51a3514, + 0xbfeaf1d751433864, 0xc00293c579c9948e, + 0xbfd250321f9550b3, 0x3fe7cf0849df8d13, + 0xbfdf9af9025b93c0, 0x3fc6acdade5eb512, + 0xc0064f230b7fadc8, 0xc0115d46a01d1d1a, + 0x3fece99c0ed66ab6, 0x3ff4727fcb6c723c, + 0xbfef68a5180f81ca, 0x3ff9aef1b9ae3e16, + 0x3fbf1cffd32f8500, 0xc0013ecdedf0ec88, + 0xc000c53ea3c4aeef, 0xc012d389bb96b639, + 0xbfdc51a6386c048c, 0xc0081803d2ebea83, + 0x3ffb0c6697250484, 0xc00caee9e887aee1, + 0xbff6d097a0f4c002, 0x3fd47c73824e60ac, + 0xbfbf71214a21f728, 0x400a2c74fde1060e, + 0x400b67e102d91e5b, 0x3fce826bd81e21b6, + 0x3fe4d856c517efaa, 0x3ffbb0ec27080202, + 0xbfe6acec994b290c, 0x3fff9542df3fe9ed, + 0xbff3dc52cc2da680, 0xbff2152d9a408b55, + 0xc0008bc948fa8c8c, 0x3fef26440743db65, + 0xbffb063c44abd6c1, 0x3fc5fab2deac1800, + 0x3fdc05eb2021890a, 0xbfd3d7226c11e195, + 0x40019165361a30f0, 0x3fd350970049d3f4, + 0x3ffc27e1198bfa9f, 0x3fc1bf1cfe0e3890, + 0x3fdae4d4cdacadac, 0xbfd00e095302d426, + 0x401262adeddb3ae7, 0x3fe461cf1963e898, + 0x40008252fb4f5a50, 0x3fd2860f76260e24, + 0x40054bbe1f605beb, 0x3ff3639cf751b783, + 0x400da94f413a3c7b, 0xbfe28816857a3ced, + 0x3fc6361a2dee0b50, 0x3fe21f5d2df7eca6, + 0x40009def10099b83, 0xc00bfda7f5987d24, + 0xbfd81d75e29c1fc8, 0xc0048870a02984d2, + 0xc00e5b783795204b, 0x3ff6e7c68fa45994, + 0x3fb358aa20ff0b40, 0xbff318c58f762fe3, + 0xc00682dca352b64f, 0x3fda0ff711338611, + 0x3fe69cf70beab82a, 0x3fdf44d450ed7e9c, + 0x3ff9061704b3d73e, 0x3ff850e808cfa60e, + 0x4011082d85876b2b, 0x401314e85ab30c7a, + 0x4011da18d0b5fcf0, 0x4007eb8b749fce46, + 0xbfd7cc6b9fad5ef8, 0xbfff6fc4fde3ad86, + 0x3ff2074cc0b75e95, 0x3ffab004caea7310, + 0xbfb51b9f834a7a90, 0x400d1a2fd738e086, + 0xc0030de93906339d, 0x40031abcd7d3da06, + 0xbfffee5eac70ead2, 0xbff2f5a453028c0c, + 0x3fce86719a7a4648, 0x3fe09722f37856fe, + 0xc009fe74b5d8abef, 0x3feb666c145fbb08, + 0x3ff6a900026ae30f, 0x400917a5cc05f369, + 0xc0103202846078be, 0xbfe39dfd815e6504, + 0xbff39676ef578216, 0x3fe1461fd4149bf6, + 0xbfee583db6cd3174, 0x400a6d9e66c9b03f, + 0xbfe2e911adfc926f, 0xbff40fded65956ac, + 0x3feee6f7c705fc5f, 0xbfefc6bcfeeebd78, + 0xbfd2146b8a02da20, 0x40033ebdca0a448e, + 0xbff8a4a21496d606, 0x40016cc0b28bc970, + 0xc011171537a86e14, 0x3ff68df6849fabeb, + 0xbff243afd818a1f8, 0x4003e9d5ed831f96, + 0xc00ca691007d618d, 0x3fa1683e9a14c8c0, + 0xc007507c9712cef0, 0x3fca874d590ed410, + 0x4002f7b904de5d5a, 0x3fff9acad6fe632f, + 0xbff8c0f0e5489f06, 0x4016c872b1a26b32, + 0xbfe3ad6caa276047, 0x3ff394a8cb2107fc, + 0x4008fe106c07abce, 0x3fc276827c20e53c, + 0x3fe4e12d6878a0b2, 0xc00741914c778a08, + 0xbfff26459e1d4f0e, 0xbffdf44c8ce9e53e, + 0xbfe5538c81384f4c, 0xbff39655a3793226, + 0x3fcd80e7300dcaf8, 0xc00b533e8c6b4d9e, + 0xc01a0936793f9e64, 0xbffefc0f68265bde, + 0xc001d3e98ddb1ae5, 0xbffab95ecc57c970, + 0x3ff7d1bf43c7fa04, 0x3ff59b5ef83d85b0, + 0xc00417c262f7257a, 0x3fed14cf371a9e9e, + 0xbff0cfc3c33ccbd4, 0xc010a5ef8cb3a4b4, + 0xbff550a08a813158, 0xbffb3e53f4042eca, + 0xbfe58276e5705ff2, 0xc009a09365448dcf, + 0x3feb21cce8969b79, 0x3fefb8c61af73864, + 0x3ff70e65bdee4ae9, 0xc00efd2abd098028, + 0xc004d33a5f481304, 0x400adcff342bad22, + 0x40123d762575a99e, 0xc011f9b261e959ce, + 0x3fd502b0a43b07df, 0x3ff0e057ac044266, + 0x3ff58395d27c712d, 0x4006b549d72c2bdc, + 0xc0010187ad3aa7b4, 0x3ffb0fa414ced042, + 0x4003dcd5ab6f9654, 0x400ed4b835b2fc89, + 0x3fd2ea75f1d84a80, 0xc00374168909c467, + 0xc0021ee5b85064df, 0xbfd534c69c347964, + 0x3ff0c46e3662e9e6, 0x40043de481250172, + 0xbff29256518b0c7c, 0x400913d108b88c75, + 0x400b9885edb9b042, 0x3fea3822a7ad822e, + 0xbfb32e34b53ac660, 0xc0005408aeccfcef, + 0xbfc11baac1d41aac, 0xc006657989076336, + 0xc00fe9b18e151e5a, 0xbfe9346a810f5511, + 0xbfc261cc1d161e40, 0x3fe0950408e26113, + 0xbfd5963115cb3554, 0x3ff4447691f4e7e1, + 0x400eafd90f0b272e, 0x3ff25d1cece9fc72, + 0x3ffdf89b172f0152, 0xc001d9f8e2c89962, + 0x400cb410b7e66b08, 0xbfcb6a4804e40470, + 0x3fe3eaf291351834, 0x3fd496262010cf96, + 0xbff3500f3de10ce8, 0x4004802d92079a54, + 0xbffa56d2e59e38fc, 0xbff7367f4ceda442, + 0x400d7f211cbc4cb8, 0xbfbc9d27613cd726, + 0x3fef5e20e84b3019, 0x400e0538d8e43cc6, + 0x3ff61c9cc1d11777, 0x3fe7d064a927c923, + 0x3fbde463809fe610, 0x3fe25d779370542b, + 0x400600f052189149, 0xbfe19a1fdbce5885, + 0xbffd2d118a304179, 0xc0086508303ca470, + 0x400751d958e301f8, 0x3ff5a2f4fa2c1466, + 0x400670f3dfeb08e5, 0x3ff933e9503107ed, + 0xbfb143c414433168, 0x401118087a49d4ac, + 0x3fd98981cf7fdc00, 0x3f8702c4599aa220, + 0x3fdcb9e820ca0334, 0xbfdbe3b3af209755, + 0xbffa8675339ff7fa, 0x4005e07d2b8b236e, + 0xc00bdc62dc84179a, 0x3ffde044f7162cb5, + 0xc00523d737e4620d, 0xc0110833eb79bad0, + 0x4001d4aab36d53b1, 0x401169dcb5c03110, + 0xc00531fe3fa43e83, 0xbff6a389a7a02b96, + 0xc008a8cf5bfaba2f, 0xc003482f50677e96, + 0xbfe374a183d59a35, 0xc006d15585d128e8, + 0x400c6c4357240429, 0xc00387d49255f5a2, + 0xc00308c58a55a3de, 0xc01563001894db7b, + 0x3fe6102868dfd1c4, 0x3ff34b899f2d4515, + 0xbfe659278e2e0b2e, 0xc00a92dbdc237a52, + 0xbfe6469edbfb307e, 0xbfe8a74bb3f00e6c, + 0xbfc129a2648004ae, 0x3fd88d06956f5e26, + 0xbfb00b10cbd0dce8, 0xbff1854f8e97ccc5, + 0xbfd9ec37d8cae054, 0xc0043f3f3c192f2e, + 0x3fe83437fc29cada, 0x3fd77cadd6cfea9c, + 0x3ff1339964cb6efa, 0xbfd48b6fb13142f6, + 0x4013144613bd130d, 0xc0044f73e1277a5a, + 0xc00fa8f0fd6914e6, 0xc00c7350f1534ac7, + 0xc00afc0981fffea7, 0x40117989615baa2d, + 0xbfe5e137acdda46a, 0x4005799661977009, + 0xc014a6ba6697e287, 0x3ff44f6b6085a8b7, + 0x3fec2d982e3c29c2, 0x4008491e36ee9768, + 0xbfdc5fd54fe2a778, 0x4002e2b0780b43af, + 0xc002259ab3dbb5f0, 0x4000a4bfa7f13ad4, + 0xbff11e83df264c24, 0xbff745bf6a320c0d, + 0x400c1d522008c87f, 0x3ff7dd5bafbde318, + 0x4003625494b8588f, 0x40098c5d4b28d248, + 0xbffa62afa933c8ba, 0x3fd79878cb9d74f2, + 0x3ff953286eb7e693, 0x3fff8006318aec56, + 0x3fe3b5de5a0ff2a3, 0xc001e0055895db74, + 0x400721c51ff21a70, 0xbfc8727d32c35590, + 0xbfeba19c4473ee20, 0x3fd7cbbbed6da5a8, + 0x40010178fa15139e, 0x3fbbbcc1015fc7bc, + 0x3ffb6ab37b50e85a, 0x3ff1923049bf88c7, + 0x3ffd818adfd022a4, 0x3ff22aa60f187a66, + 0xbff0306133dfca64, 0xc000acd69eba4886, + 0x3fec586e5cbb6ab1, 0xc004511646b64659, + 0x3fe3b74783275cee, 0xc001e2a80564f1b5, + 0xc016767828a4d965, 0x3ff54946d6b6656e, + 0xbfde7b80685a2c98, 0x3fe92b28f114b45e, + 0xbfe3f0022ab8830c, 0x3ff684cbb3ebcf8f, + 0x4007bd834cf3970e, 0xbfff96f6dd8845cd, + 0xbffceca60d6ea935, 0x400434859193ab18, + 0xc013f41ba46f961f, 0x3fe0a4b82a2d649b, + 0x3ff9b74bd7960936, 0x4016dbec4b44d78e, + 0xc00581b901a72aaf, 0xc00d8827274a9366, + 0xbff61c197c16abe4, 0xbff392fac025b147, + 0x4000c9c4e657e0bf, 0x3ffb3f4d354af6ca, + 0xc00798a1966f5b12, 0x3fa4fe67ba068f80, + 0xc007896d6689aa87, 0x4001b423f5470b47, + 0x400839a5bb0311f4, 0xbfeffd6cc5c136a2, + 0x3fff93a039b67ca6, 0x3fd8c09e3db19240, + 0xbfc03d281c2c51a2, 0xbfe546e10442cc74, + 0x3ffe9cd65d928319, 0x3ff8b83668fcb8c2, + 0x3ff92338b2b0a54b, 0x3ffc514ad5190be3, + 0xbff8fd12893b27b3, 0x3ffc0a082f9a0aad, + 0xbfb83f5c5fcc2e60, 0x3fd9aafe684b15a4, + 0xbff1ce844c4b619a, 0x400496f66757416e, + 0xbfc872cdc116b79c, 0xbff056e0157bb1ad, + 0xc0056ff1ad19a805, 0xbff20fd02882c5c0, + 0x4000734ff8bf32d6, 0x3ff8cab4e9549c84, + 0xbfee814da823d3ed, 0xbfb35e702cacd234, + 0x3fdd57f381d91933, 0xc007dfa494915317, + 0x4006505d21e35911, 0xbfffe109d0f28c5c, + 0xc0048ec26e46a947, 0x40002b5d2cbcdd7e, + 0xbfebe85f0e99ae18, 0x3ffee452886a0348, + 0x3fc4a8ccddeb1120, 0x3fe6c04f6d584616, + 0x3fd6700790e1858e, 0xc01c0da74ec2623c, + 0xbf8934373c573ac0, 0x40052dc67836d274, + 0x3fe7375ea6d6772c, 0xbff2e6daf4eee353, + 0x3fcd299a4269d40c, 0xc005b43bde8d3bee, + 0x3feec745e63a1788, 0x3ff4ddd8c6eece6e, + 0xbfe8d739a40b4c26, 0xbfd86e4d662bd710, + 0x3ff23da231c340ce, 0x3ff7a66eec78b5b0, + 0xc00eb3cc266b2bbd, 0x3fb142e288b133a0, + 0xbff23078eabe1a76, 0x3fb1c0e8ef291a10, + 0xc012333cf3bb4a43, 0x3ffbf4ed8ccf5ef8, + 0x4009b25c8991d869, 0xbff2272a001c7d4a, + 0x3fffb84b9b28c0ff, 0x3ff7aabc5fc3a208, + 0xc01196d22b203ac8, 0x3feba21ef1d5bd2e, + 0x3ff16182948936de, 0x3fe3ab1ae4f48045, + 0xbfeed460b2bf3e48, 0x4000d65ef745d4ad, + 0x3ffc8b2660962286, 0x3fed0d418958cb50, + 0xc00a7b3896c8cb19, 0x400c6a60c793320c, + 0xc00d9fa2757635aa, 0x400ad707f603dff6, + 0x3fc101dd8c78e7f0, 0x4000c78df5a74c18, + 0x4002ade2dfd0cdf7, 0x4010e4da161c874a, + 0x3ff0f89a4dd79670, 0xc0033cfcd114c270, + 0x3ff2ec86aaf8384e, 0x3ff2b4774898010f, + 0xbfd45f7e0e0018e8, 0xbfe73772f0db9948, + 0x3fe96ee06a17c958, 0x400e5e7438de8d43, + 0xbfc9f5b60a9cad48, 0x3feda541640b4545, + 0x3f9b4fdbc95238c0, 0xbfe6c1ee285c9ed6, + 0x40105604da3ee594, 0x4008d5311cd9ed10, + 0x3fe59fd5a7760a60, 0xc006a1237807911a, + 0xbffc84d90adef51d, 0xbfd3b81c8c6a147d, + 0xbfad04bafbf355c0, 0xc00118c34a14a0f6, + 0x4006e9aa969003ff, 0x40007049c39f002c, + 0x401e090415e0badd, 0x3ff4607eb24e4e80, + 0xc011552a0c20b42b, 0xbfa6f5f8f86a72a8, + 0x3ffddbf4872e5536, 0x4008c2e192304098, + 0xbfeb16a191778048, 0x3fc3b15aafac932c, + 0x40026372d81227fa, 0x400294c21316eee9, + 0x400661fde12c1ab4, 0x3fc4f144f07d83e4, + 0xc01093023c99a033, 0xc0101c99650278a4, + 0xc011860f09815a8a, 0x3ffb150f3cbd630f, + 0x400d0c59b58f9058, 0x3fd3803002b3b19c, + 0x3ff8365c46ca2069, 0xbff30b3d6488968f, + 0x4000566e23ea4d23, 0xc000aa6a35ec0cc5, + 0x4002a86611911d30, 0xbfd0003e6cf1ea4c, + 0x400c58ee212f004b, 0xbffb556e8125003c, + 0x3fede08bf4bbc214, 0xbff8101f3a229995, + 0x3ffd467a09d9d9ec, 0x3fef6b73121f9522, + 0x400d0b8356c5081f, 0xbff11c53896d9a7a, + 0x4013fb2dcf5f0f60, 0xbffcdbe1dd1c673f, + 0x4006eb8d9ccdf3ee, 0x3fd3a4f3f97ec88c, + 0xc00bff21476d3974, 0x3fe9e3e818066a83, + 0x3fee6fe6b8497b1e, 0xbfbf066802d1d6b0, + 0xc009287856df0294, 0xbfa0f262371c8240, + 0xbfcd31fa30e2ccb8, 0xbff685a7550e58fb, + 0x3fe6b09afbc82b26, 0xbfc53613bd8c07f8, + 0x400b55be658f63e8, 0x3ff7e64bbe550090, + 0x3ff5777d11bb6568, 0xbfc1d79f293f1734, + 0x3ff3273958941fee, 0x3ff348c133067f33, + 0xbffd8d2b5bbe08cc, 0xc0067df0e9a8f2fd, + 0x3ffb9e7d30602d83, 0x400237d4b9bd6f82, + 0xc00211817c95dee8, 0x40018295b5b82580, + 0xc001136394b40630, 0xbfd0cfec3751849c, + 0xc008e317a4e14d3a, 0x3fe698cce2d5b4c4, + 0x3fde5ec025e3ee88, 0x3fde23a6a8db0244, + 0x3fe47ab4e2a5110a, 0x40052efc21fd236d, + 0xbff0ce197010840e, 0xbfbbe6f7acc5cc90, + 0xc00e662b360eab3a, 0xbff1e5968b67048e, + 0xc0065bd580db9874, 0xbff94de48d0b6054, + 0x400d59ad427039e4, 0xbfe5829266c04a0b, + 0x4001527d74371a89, 0xc0042d53ac71f64a, + 0x3fe140d4ae9ae50a, 0x3ffa16151655b1ab, + 0xbfe27ef639e44f8b, 0xc000b7964f966477, + 0x400a61421f2085ed, 0x4002dcf540616732, + 0xbfb2db941e55fc20, 0xbff9370c77daef60, + 0x3ff04f509ecdec6e, 0x3ff6a4ac85b975be, + 0xbfe3a85bc63a426f, 0x3fa22ba2d5b86160, + 0x3ff15007b8a25685, 0xbfdf0929db334f91, + 0xc001eca93ce0cdde, 0x3ff4eefd98e08fe1, + 0xc00066201c9316f3, 0xbffe0c9b367d0c5c, + 0x40041966ec4e85b2, 0x3fcef9b7d74c55be, + 0x3fc120bc789fc96c, 0xc0163a4cdd756a59, + 0xbfd07c4858d1c3f4, 0x401703d8439beb21, + 0x40012b27d14e0610, 0x3fe195f1565dfd0e, + 0x3ff957c922e64ec6, 0x400b0eccf5550e76, + 0x40099685e7884f73, 0x3ff0511b0e373770, + 0x3fbba373cfcde738, 0xbfc161679ec23d08, + 0x3fd3504e781737b2, 0x3fa57da595021530, + 0xbfcbdb9165cdf03c, 0x400b76e6e8bd9b36, + 0x40011d33fc953e4e, 0x4006b728ba50f61e, + 0x3ffd640bc91e9a40, 0x3fe01a220f847b79, + 0xbfd31c31a8c9eeac, 0x3ff1f05c54642df4, + 0xbff05b7ba06b1ece, 0xc0069fbe9ae6a0d8, + 0x3fb05d6c75fd8370, 0x4001470bf93731a2, + 0x3ff9a0351016ded6, 0x3ff2cdc0a89cb234, + 0xbfc5b98f3a5d6cf8, 0xbfebe8124441853a, + 0xbfefc767d97f271a, 0x400667604c24a2a3, + 0xc011108b07de9cdd, 0x3ffe162a8baa2a39, + 0xbffbb6b9da4dd9fa, 0xbffb4161baddf6e0, + 0xc0066332b37b4778, 0xbff8ccf238ed16e3, + 0xbff0174c258b45a1, 0xc00d0455e32238a0, + 0xbfd9a8207f95626a, 0xbff536d74285d51c, + 0xc003c6cc86421bda, 0xc0068a743c2a96b5, + 0x3ffd0c855979fa44, 0xbfe0914cb8bc1e13, + 0xbff8183808fc2b40, 0xc0020f2a21b1938c, + 0xc00e296a0ad8b308, 0x3fb214f923961318, + 0x40034912b1f8750d, 0x3fa3b40bb4902a80, + 0x4004377fb010481d, 0xbfeffb9154ceae49, + 0x3fe165eca9e20080, 0xbfe551a2112d6a9d, + 0xbff653b7f4258934, 0xc0065c4ce5b23e01, + 0x4002d910697fbe02, 0xbfc6cd2aad6c9590, + 0xbfc794a0b5ae1772, 0xc00b434fcd16b573, + 0x3fe9de47a2f01453, 0x3fad5d90cae9f438, + 0x3ff4d842437b4e3d, 0xbffd47d75b700d4c, + 0x4010222e8844f60d, 0xc00b7b46625663d3, + 0x3ffe4f52dbd4b090, 0xc000c52a12727cfa, + 0xc0098b3911ad6cbe, 0xbff6c15b74babd5a, + 0xbfef23b4715bbbea, 0xbff2c5dff87490cf, + 0x4008cfa5a2068909, 0xc002124495d32c0b, + 0x4003a0fb7b61eb20, 0xbff5381d1b24c6ba, + 0xc005cd8a695904d4, 0x3fe0fadd24adfb54, + 0xbfd6764d47f47d80, 0x3fea2fbfb7cd220c, + 0xbffee82e67e7264a, 0x401306d11bd11afe, + 0xbfdb093056fecd7c, 0xbfee092354729632, + 0x4015a2c336c3883a, 0x3fe77b2324f5234e, + 0x4005d10cc446f801, 0x4011c209e7afa220, + 0x400432ae89401f8e, 0xc00f253e180f6a68, + 0xc001429bc609ceb4, 0xbfa46576d5e9c000, + 0xc00a8623248b29a2, 0xc010a3ce6ef58c16, + 0xbff56e0a207c8fe1, 0x4013f70cdc7ae14d, + 0x4013ab054c100e29, 0x3ff610da0d951166, + 0xc00c11d78d6ddc52, 0x3fe48f44e7d5e61d, + 0xc012002eab11af74, 0xc000d6cc0065b6db, + 0xc00b6d832ab65162, 0xbfe50ab1c449415c, + 0x3ff4bacdcf602e96, 0xbff013ac191b3a90, + 0x3fd7949aa81cf29c, 0x400eb0b630a25b4a, + 0xbfe41095e2c8a47e, 0x3fdc5c8bda9bc0d7, + 0x3fcb2ab26d2f3cb8, 0xbffa9f56ee83e331, + 0x400df03f153d89f6, 0x3ff86c4976717343, + 0x3fd526ba8f4177a4, 0xc0006748be8679e7, + 0xbfbe7afe5c37fd70, 0xbff27a354b00f072, + 0xc0096bada1b8664b, 0x3ff3274feacf3db9, + 0x3f9795243a087c40, 0xbfd10f167c31cdaf, + 0xc000fd7c18b92642, 0xc00874e7b3e9daca, + 0x400a4f88a59c715f, 0xbffac219274bb8a0, + 0x3ff9118f5bf418f7, 0x400c8a5702e09384, + 0xbfecd3eddf162480, 0xbffc707c7f5afed8, + 0x3ff9db21c3751b14, 0x3fd161d137503b0c, + 0xbff7109b27e43f65, 0x4010cacc29e6d7ad, + 0xc007c33255de1298, 0x3fb0a9efba7a6918, + 0xbfed499d2f3f100a, 0xbfd55af2eac0db34, + 0x3ff16c96ddbcbefe, 0x3fab9985ab1d8240, + 0x3fc1d5e6778034b8, 0x3ff588e4a0acaa1e, + 0x3ff1aea34b0e1d22, 0xbfeeb895bf141df6, + 0x3fe280458a26b9bb, 0xc0039e2205bd7e87, + 0x3ff4663021c653be, 0xbff19a911396f6e5, + 0xbff4c8a34e4c9334, 0xbfe5b3d26b3c2208, + 0xc0029db027a5b894, 0x3fd64dcbd159da90, + 0x400b2d0afc4f5379, 0xbfe9c83283c6b9f9, + 0xbffb61974c560aca, 0xc0080ea82e7e39c6, + 0xc00432f721f1d28e, 0xbfe04c6d061c6a68, + 0xbfe2cc352dce3814, 0x401213ca3c5cd8af, + 0xc004239ce7900386, 0xc00d0e474dd63b5e, + 0xbfd2d2b350ddf820, 0x400b55e9b4501b7f, + 0x4009f4f4e662750b, 0xc00cee79aefc20b9, + 0xc0027737e8ba9b86, 0xbff36287d1a5cfb6, + 0x3fffdeb28ce5c9f6, 0x3ffbfd38f5564a74, + 0xbfeaa7014cfa97d2, 0xc000d605aca8bfea, + 0x3fff81515363ec61, 0x3ffdcc83dda6b04c, + 0x3ff7da166dd4564f, 0x4004d6d458b02ebc, + 0xc004487fff564b28, 0x3ff84e8c76f642b5, + 0xc003dac5e6c1b286, 0xbfd84b8b350dfdd4, + 0xc00a67f868fb14a3, 0x40122d9d17904a8d, + 0xbffa7e38d009d4b6, 0xbfd64e2941c3e313, + 0x3ff50d5031bd6f22, 0x3fca849505bb2e10, + 0x3fdefbb9e49a063f, 0xbff6e34bbb8bbf17, + 0x40042b9fa99e3d6e, 0x3fe78194e271a116, + 0x3ff5369b5b936a6e, 0x400f9d997134a371, + 0xc00427a8aef1874a, 0xbfd7d8edbd9f2c24, + 0x40048066c1cb929c, 0xc0017821b6b69388, + 0x40118a8078d17271, 0x3ffd6d73065185d4, + 0xbff2e7aeed1741a3, 0xc0044d646c71937c, + 0x3ffb6c98430879a9, 0xbfaedebb35073c30, + 0xbfff3d9487b568f4, 0x40015734908ca0ec, + 0xbffb0eda8d3f1510, 0x3fea26617f503ca4, + 0x401038c1ea420896, 0xbfc8e74c99276063, + 0x3fcec2d785bf4d66, 0x400fd5ad1d967abc, + 0x4002d7fb5bdbedc2, 0x4000420c869a6742, + 0xbfee3802eeb4bcee, 0xbfdb7304b08984f8, + 0x400b0de45916fc2c, 0x3fd987cfd618be08, + 0x3fb926dc3c2e3c59, 0xc010fc7308a397ff, + 0x3ffdd6a78bc61bb2, 0xbff8f5b1718f102a, + 0x3fe9b2532b4992a3, 0x400148e439112121, + 0x3ffa1b3e54818cf5, 0x3ff582983b52c5b0, + 0x3ff5bdcaeb6a47cc, 0x4010b442c7624d7f, + 0x3fe1eaf713d13658, 0xbff5694cb38b30da, + 0x40010a78cfa19a3c, 0x40044a3acc357d51, + 0xbfd37e8bdeb038dc, 0x400860962e7e0af4, + 0x4016b36fa27b1b4b, 0x3fea5553c8dd47c2, + 0xc00aace67c395bd8, 0xc00b56ee80c9ad5e, + 0xbfd489be1e1be103, 0xc0092c4f25b37e0c, + 0x3fe2f65595c35d9a, 0x4002612ad4320c6c, + 0x40047da7365e8986, 0xbfeabb388ada6fa4, + 0x3f84bf9ef6131680, 0xc009383586563806, + 0xbffafeab0df3b58f, 0xbfea31ccfb2e4764, + 0xc01d48e9ad3e7156, 0xbff54643dfa2333c, + 0x40084b7e2dd80a87, 0xc0049a7342a2e36a, + 0x400f9091771e25dc, 0xbfe835192a500420, + 0x3fd5f05db0dd2c94, 0x3fdec772f7baa960, + 0xbffe0e32d0bc55f8, 0x3ff3692135c7d7d0, + 0xbfd88e8a802d33c4, 0xc012a538b66355a7, + 0x4007038687085b92, 0xbff8ddc6bf88d1cd, + 0xbff38f7edfa481aa, 0x3fea8f7c283095a4, + 0x4000e9200027e4a4, 0x3fdb0d0ebb27da28, + 0xbff35ad8d7fe6523, 0xbfd26d99c223f8a2, + 0x3ff15e588bce7ebc, 0x40022fa9724ab04c, + 0x4010cba72bd1c384, 0x40010ad2b60568e6, + 0xc0018a5f5e2594bc, 0x3fff0869a5b0070c, + 0x400419b74c502462, 0xc00a023ca3f148a1, + 0x3ff34298e275f27f, 0xc002f74bf13a0f6c, + 0x3ff06a9047f172b6, 0xbfed8c94117fa6df, + 0x400977951435fcfa, 0x4013d8d7b2903132, + 0x3fe4773bf90f0544, 0xbfb7ad3456de1c00, + 0x3ff1e038010ae37a, 0x3ffaf4b153277a20, + 0xbff1fd2e4105a7e4, 0x3ff3fe198ef1ef5b, + 0xc00ae5a4bda7791e, 0x3fea67ec92242282, + 0xbffaedb2135d4a7a, 0x3fd08c6588067194, + 0xbfe77712a4d09352, 0x40050b5ec8c91340, + 0x3ff7af922becbce4, 0xbff1bb27a482979f, + 0x3fe117dc992149f6, 0xbffcdedef8db59e5, + 0x3ff57d188ef0fe23, 0xc00c7561d720b75f, + 0xbff19dc04f92d762, 0xbfe4489855da2e7a, + 0x3fd96e6d28ed72df, 0xbff107809d105121, + 0xc00ab1b71a6a8df0, 0xc0099ac8c8a414a7, + 0x3ff8e9bf65022d14, 0xc00306781ffb54e0, + 0x3ff4b81236836e8e, 0xc00ae3360346a727, + 0x3ffb110f41302846, 0xbfcb6541c263fb51, + 0xbfdf9ec6f1104888, 0x3fd6341a46aa05f0, + 0x4011c9cc9aae1371, 0x400313b464ed59c8, + 0xc00aad25b92d8db8, 0xc007fcff04d423e2, + 0x40003519f03b0293, 0xbfec3d817aa69c66, + 0xbfcb254efb962c00, 0x400ff1b3592a8f86, + 0xbff65afa9e04785c, 0xbfe0b0f9d109024b, + 0x400b67ad34f5bb0f, 0x3ff48adf1993c4dd, + 0x3fe0680150182ac7, 0xbfe47859de59bd9e, + 0x4009c306096a13cc, 0xbff6f2ebb72c8aec, + 0x400af04bcbdf21ef, 0xc000b433a60db523, + 0xc00f6f1feedbdf65, 0x3ff861bd55aecfd9, + 0xbff535af1b2536b3, 0xc01381e1460982e8, + 0xbff512eb23f2ae30, 0x4004978e2fce84f6, + 0xbfc3394320d96b3e, 0x4003353f72c4aefb, + 0x3fd7122c039c49ce, 0x3fd8fb71aa725888, + 0x4000a18b56ad43e2, 0xc0054d972a5a9496, + 0x400187ce39bf0c8f, 0x3ffcea352844f772, + 0x4013e4745b788a1a, 0xbff8c2b57468c7a4, + 0xbfd9039db4449ea4, 0xc011131acd7dc2ce, + 0x3fe7ca1aa194a0d0, 0xbff29f65be398c65, + 0x3fb631ac13a03fb8, 0xbff2ac934f6cc16b, + 0xbffec020cd95d6ea, 0xbfc43899c8bc10e8, + 0x400398da5cd7febd, 0xbffe4375b4dd8982, + 0x3ffcf82c10fb3c38, 0x3fefca3b554a050d, + 0x3fdf7954c0f4fbd8, 0x400a5bf096141e51, + 0xbfe3ca0f6b1a6e82, 0x3fecdda9889309b0, + 0x4000ee9689694bc0, 0xbfeb818be1bc587c, + 0x400ce2c92a6bf2c9, 0xbfb2016c9332b690, + 0x3fe0fe2b097ad6ac, 0xbfc3a641222a55b8, + 0x3fc2bcfedae25f8b, 0x400f808ace6289cc, + 0x3f99fd3f98bffde0, 0xbffc2df9c2a7bf86, + 0xbfd364c900278f0a, 0x3fee5f9374c42a22, + 0xc012fbb20ab174f4, 0x4005ee87bb1138d7, + 0x3ff4dac6889e5d5d, 0xc00692b2f81afae0, + 0x4005a8a489318c4e, 0xbfc72184a33550da, + 0x4002490fb4721c78, 0x3fd41695e5b421c6, + 0x40011f18e5cca4ec, 0x3fa4b1a1b0eba668, + 0x3ff756e60d4c754e, 0xbfe1cc2db873404b, + 0x400543939ad4a794, 0xc002597f9d4076f4, + 0x3fa2972675ca0c40, 0xbff00cd7211f8f04, + 0x4009b7ec844d4938, 0x40142d0ec5095cac, + 0xbfcd3ac899124e20, 0x400b527b9dfa8220, + 0x3ff4d630f30203f3, 0x3faad5331093de00, + 0xc00fddd42ce18c42, 0x40038512e681a3b7, + 0x4007fecc7e4c9e66, 0x3fa494cc37a02978, + 0xbfd8a9279980ba60, 0xbfe2d8ddd8793f66, + 0x40011f73f0e3d0ba, 0xbffefbe6e86a067e, + 0x3f7f5d79f8b1e680, 0xc006dd0f5d1da222, + 0xc0036b416398afe6, 0xc005ebe1cf6ca735, + 0xbff61155a88cc242, 0xbfef33677c5cf0ca, + 0x3fcf0e3eb9e4acc4, 0xc0092132a23bf990, + 0x3ff356790581a2b1, 0xc00204fd20341630, + 0xbff21e5aa421ecbe, 0xbff4327f47eb879b, + 0xbff7115c188d374a, 0xc011583efdeb3584, + 0x40118ec212b73b6d, 0xbfe611fe3582bf8c, + 0x4010197c215b4604, 0x401007ea595745a4, + 0xc003df32dcc8ff60, 0xbfff17f94d3467ae, + 0xbfe42a6db5ee42a3, 0xbfdd2cbad64ff064, + 0x3ff92dadaae1d04f, 0x3ffab6470c8a903c, + 0x4002612e68e4e48f, 0xbff8ff6f8ce94810, + 0xbffa382d59caeaf6, 0x3ff594207a1353cc, + 0xbfd58d60d03f7e3e, 0x4010c6eb7b45ee3e, + 0x3ffe1b1a9dc83e89, 0x3ff32360d61721b2, + 0xc008d40e64a4d893, 0xbff727f74d952bc8, + 0x3ffb6f69348794f2, 0xbffff2437ff5dacb, + 0x4007e98e63b140b6, 0x401194a0fa0a2455, + 0xc001308e4c12d5d7, 0xc001bf34e2dba740, + 0xbff462435d6cb086, 0xbfd6461f4016a66d, + 0xc00123c13e5c647e, 0x40047afca5d54580, + 0x4012e5144c2c870f, 0xbfe5cbda5a092988, + 0x3ff36f13f124871e, 0x3fe064bdcfe55941, + 0xbfe06b97866eaeb0, 0x4001dfdf165aebc1, + 0x3fefb090bbbcbbf8, 0x401f9808272a32ec, + 0xbff30eeab734f782, 0x3ff855c84454b1c7, + 0x3fefa2db81d98acc, 0xbff72b8611d00dbb, + 0xc000af06ec14ebb2, 0xbfe21223d0dbeb96, + 0xbffc807c9addea38, 0xbfe8e73796d87946, + 0x400ae9161da16e77, 0x3fb1a66e5c061ba0, + 0xbff3d156a6147b89, 0x4006aecacf38ca15, + 0x3fdafc2b9c0c1180, 0x4011faa7cabfd808, + 0xc008f7bfb0e04b30, 0x400b1c54b908ddda, + 0xc0008c11724fc6f3, 0x3fedd71e959e37f6, + 0x400bef8a2b20297a, 0xbfebdbfdb23a54d2, + 0xbfde2c7dba5a8150, 0xc017698ac4a32346, + 0xc0048816a21bda7a, 0xbfde7a064d854651, + 0xc00e00b6506ab40d, 0x400088b52f2ff715, + 0xc005101c036512cc, 0x3fd7b8464badae50, + 0xc00e6ece20b88461, 0xbfd2d5a53c15f148, + 0xbfedf21d9eece309, 0xc008232a123daf2a, + 0xbfe684380b838234, 0x4008a634d29942be, + 0x3ffb7080ed494294, 0xbfe6ab569a5ba392, + 0xbff784db955ac85c, 0x3ffbd6d55042bd8f, + 0xbffe8fa0c526705e, 0xbfc0444714b294e8, + 0x3fd2954a1257d320, 0xc00a94d87f1a15b6, + 0x3fe5328912e18088, 0x3ffd21017f4ad21c, + 0xc00063f74eeaff39, 0xbfda515e9aee3b88, + 0x3ff8ab55cf50bb36, 0xbff55daaa2a627ca, + 0xc00115cf5ef59435, 0x3fd280c7bb5b2727, + 0xbffb1bd2988fb3fe, 0xbff0bc78509ab8e2, + 0x3fbb52a15fe77b08, 0x4013317b56434feb, + 0xc005ef11836a3f3c, 0xbff2d50b54648498, + 0xc001fd61ff5a501c, 0xbfb82a8897a6bbc0, + 0x400b3743f9ef837f, 0x3fdf7f27485a4100, + 0xc00fb9a909f78524, 0xbfaaafb0e30da9c0, + 0xbffd508129f39c88, 0x3fe73f0fac871850, + 0xc003d84debc0cb90, 0xbff3cffb02b28632, + 0x40094df004c84cdf, 0xbfde3946294431d9, + 0x3fef3b611d1e41da, 0xbffbaa1b2635031d, + 0x4012905ea4876b60, 0xbfff59591e3cf4bd, + 0x3ff6a10a29e36962, 0x40083c8d45da37f6, + 0x40126007958f74e5, 0xbffc96e3dfae26fc, + 0xc00c861f7db45694, 0x40090445fb24bd11, + 0x3ffc1f9476a37c92, 0xbfeba264a36c0e9a, + 0x3ff3b03ba16571c2, 0x3ffd7392b427c6e2, + 0x3fe7e28a43eac37b, 0x4009d67552c4c04e, + 0x3fff2d542a60cbde, 0xbffafac172855bd8, + 0xc001fb4ae4039426, 0x40052bcd69c52e42, + 0x3ff2974ad98ff962, 0xbff5579281b29d64, + 0x3ff0e7571cf31d54, 0x3fbac0d36f1e9c5e, + 0xbfc5f3dd89876ebc, 0xbfe02ddb01d79f04, + 0xbfcaef406d6c6498, 0x3ff3fca7ed4fea2c, + 0x400c3920b97d656d, 0xbff213b542c9bd14, + 0xc0008ce19fb369ac, 0x40028b8eae0f1de0, + 0xc01230cfba3b9878, 0xbff23db3011b1468, + 0x40180c587c0cd14e, 0xbfcee57808c27fc0, + 0xc00ba6ed5841929e, 0x40169bed26288c1d, + 0xc012eadad5f3080a, 0xbfe9c8f00f99f573, + 0xc0102a974abd90aa, 0xbfdc17e5bb23998d, + 0xc0012c386c0dcaa0, 0xbfe0b174cc71be80, + 0x3ffc6ae8c430b8df, 0x3fcf00d9fa581d8c, + 0xbff368a5d0eea316, 0xc008f50a758f61bc, + 0x3ff74cc5864491dc, 0x400ad8c92808ef23, + 0xc0003897641c65a6, 0x3fcb73f4d5aff038, + 0x3fed1cfd553c47ab, 0xbff7e6ff12153890, + 0x3fe4273c4fd8b8eb, 0xc0112ed6531d0c3a, + 0x4007cf6670eb03d2, 0xbff1ca1f297fc486, + 0xc002600442d1b8d7, 0xbfeda232e86eea4d, + 0xc0077ed5bdd2944b, 0xbffee69448422daf, + 0xc0085b9c72ab93e3, 0x3fca7b479334bb6a, + 0x4000fc4626af96a2, 0xbff01a85958e1502, + 0x3ff5106e0d8851e5, 0x3ffa1d098914b0ca, + 0xc003b91717f7b890, 0xbfea7d822e79b628, + 0xbff9ee77d8de7268, 0xbfd8d9b81f685edc, + 0x4003bcfc382f1e8b, 0x4004f828ad777d88, + 0x3fc30ed45d88f788, 0xc01b2bab06549d26, + 0xbfd78ad2970a4c18, 0x4006186005aa98c1, + 0x3ff3c344b0f7d3e0, 0x40083138a095da73, + 0x40085112583b3dc5, 0xc0078d900860ea3e, + 0xc00acfffd876b89f, 0x3ff10ab36c99bc37, + 0x3fff2dd0262b8cc2, 0x400e774dfe0fbdd3, + 0x3ff6d3f7c156e927, 0x40168264883367e2, + 0x3f8aabb634beed40, 0x4014b9dd5d671eca, + 0xc0013d95f24c5125, 0x3fea1da001ee65fe, + 0x4012000dc34e35ea, 0xbff66023e33cd6c0, + 0x3ffd9f4e99267f35, 0x3fdd8c44a6aff98a, + 0xbf98a0da884816d0, 0x3fb7af35436aec40, + 0x3ff7952b45fe2c0c, 0x401065715fcad107, + 0xbffbf9727c44aed0, 0xc00a9fa0ab8c4a2f, + 0xbff2e38396ffa53c, 0x40003358e5ada1a1, + 0x3fc10e2ea696c390, 0x3fec50073c07b108, + 0x400d6a1359a24c42, 0x3ff409e1a0d58218, + 0xbfb4aeb198c65a87, 0xc0095cf7d7473f35, + 0x3ff087dcb51411a2, 0xbff00c544693f631, + 0x4005a52b09e3345a, 0xbff500b116c4a0f3, + 0x3fc7b83265e457c2, 0x400ad61a1ddd9c64, + 0x3fa5775e066a9b8c, 0x3ffdb60064b98858, + 0x3fe47c9882e3ebd3, 0xbfec743d2e1182de, + 0xbfe672d19720b16d, 0xc00122c872ba3efe, + 0xbff2b5fe5e0bd3d8, 0x4004625a307b10d7, + 0xbfee1ce1c2e9351a, 0xc01ae0abcdf7be55, + 0x3ff29747ec9c4ef6, 0x40069003939737dd, + 0xbff9e3e41d9acc3e, 0x3fd8836b052c07cc, + 0xbff6c12dfc7246a4, 0x3fc99bb079656448, + 0x3ffc6b9d191d48c8, 0xbffb19f96a85b7e1, + 0x3fff2008bfbb13b6, 0x3ff8824908f0a68b, + 0x3fec9c76abd83bb7, 0x3fcdc4bd68e92278, + 0xbffbef746a0702c8, 0x3fda3d469af638c2, + 0xc0007db91a6db171, 0xbff585cf9de02f90, + 0xbfb4359d33d08174, 0xbfef06aaecef7501, + 0xbff90ad1cd6abb5a, 0xbfdbc822eb5ed668, + 0x3fe96d51d1d33ee5, 0x3fffad00100c6520, + 0xbffd20c3a8950754, 0x3ff84e57dd126c6d, + 0x400bc137d6675f3a, 0xc0015b26fdb80b03, + 0xbff87cd2000607d4, 0xc000b03c8847210b, + 0x3ff10b492ef3b1e2, 0x3ff0b3aa0b9e175a, + 0x3ff8bf97abfebc01, 0xbfc3aa168f50a2d8, + 0x3fe266d4ed8825a4, 0xbff1d393f2dbf49c, + 0x400d641199eb4c4c, 0xc0002c45e3028671, + 0xbfff3ff08ab75df5, 0x4003a5ca0d5f5ab4, + 0x40113b7bb2a17658, 0x40127943e747412c, + 0xbfffb425daea7674, 0xbffccc19ffd3b796, + 0xc002b4f28bdb22d0, 0xbfd02632915fa0ed, + 0xbfdbfbb2f20b7798, 0xbf9a8919c9331380, + 0x3fb4c9adc85e79ba, 0xbff1020848df84f4, + 0xc004266d8e19527c, 0x3fe2ea69184f8a50, + 0x3ff2d2d2941cad3a, 0xbff98747f2edbbbe, + 0x3fc7145b2b0a0730, 0xbfea7b18f0d8f6b5, + 0xbff41ffa40911892, 0xc010e432741df9be, + 0x3fe35b43c0d05348, 0x3ff71322df012375, + 0x3fb70d4662184900, 0x4007c787040cc264, + 0xc000c051beba96c4, 0x4007232a07e07fb6, + 0xbfd2eef07a628830, 0x3fdb82d28179c614, + 0xbfe1d0c7adfd387c, 0xbff45e18dcfa9f7c, + 0xbfc1004aba04d4f0, 0x3ffae1e237dd4b3f, + 0x40174dfaec9d1ac9, 0xbfe6c5ddc90eca34, + 0x40137f984efe2b5a, 0x400e8c4503c8e041, + 0x3fed972d046713d4, 0xbff8bf1585869108, + 0x40012a0c09c69ac1, 0xbff12116ef38409e, + 0xc000a8e3d5e9fad9, 0x40061f9d00f4ebc7, + 0x3fd56e8baa85f42c, 0xbff1dbc8bcdc8a87, + 0x40016bf7a288fdf3, 0x400131e9d0d2952f, + 0x3febd24f4e1af312, 0xc01cc57a0ac93ec7, + 0x400e22dbeb02dca7, 0xbfeea4fb5de5327e, + 0xbfe223ee1b5c3710, 0x3fed2521b0f3ee73, + 0xbffbb182d997cb76, 0x3ffe767d92f91b6c, + 0x3feb60d700932a26, 0xbfe36f299d5a9ae0, + 0x4004a0116402fed8, 0xbff30b137780e846, + 0xbfebfe1dca2058cc, 0xc00711183ad3fdce, + 0xc000266d6be99595, 0x400066e23d5808e5, + 0xbffac4cfec866110, 0xbfe3be9c46fa04d4, + 0x4004c2b17b42549e, 0xc009ee8a09c232e6, + 0xbfe03c69a7c10188, 0xbffaa18ac64deb79, + 0x3ff18402c06d8623, 0xc007a3ba83fbe9f9, + 0x3ff1a7458ce7f842, 0xc01481855824fd7f, + 0x3fdc247b43daac38, 0xc015ce752741dafb, + 0xbfd9fee72e440ea5, 0xbfd5de169236e698, + 0x3ff1e6e485f4145c, 0x3fdd1de7c6616392, + 0x3fe25ba48a61e2a0, 0xc0025e99f06f0802, + 0x3ff5f78fd9b17a11, 0x400054ad759f0416, + 0x4012f44eaa812032, 0xbffe96166e0cc4f8, + 0xc011d6e2f2e65f06, 0xbfbacfa2b52406e0, + 0x3fe8672fdc8bddf4, 0xc002d7265dc6cd96, + 0x3ffd5ac519204c16, 0xbfe2ea154bf18550, + 0xbff41ef71f3e05b7, 0x3ffabb9bc578981c, + 0xbfe17da59c706396, 0xbfcc8b5cae6b0478, + 0x3ff84fdf1775f58a, 0x3ff4532fa5e95ada, + 0x3ff3f3f354e256fc, 0x40159c4dca2af7e2, + 0x3fc9b54e123e1678, 0xc005c652e742bf74, + 0x3fe62bf1827485ac, 0xbfdebdc028d5ab26, + 0x3fd0aa8cb9c490e2, 0x3fe3b9da5fe07e67, + 0x3fda0474a438a6b8, 0x3fc78ef9f1ef4f60, + 0xbfc6206969ed7ebc, 0xbfb7c1219adb6580, + 0x3fdc6606c648bb18, 0xbffb9ee32212dfba, + 0x3ff05c80ddee9dae, 0x4015a4ab78ebeee2, + 0xc013d5103c5214a7, 0xbff599ef7e0e9f81, + 0xbffa685da43e0a48, 0xbff9bfefcf8d0f54, + 0x3fecf44eb4f88cb9, 0x400fe9b69cdc0093, + 0x4004743bc4d1b740, 0xc0015724171dcdae, + 0xbffbb60df26b3b78, 0xbfdd522251739e84, + 0x40162e012d2560fc, 0xbfe2d404e3df57f6, + 0xc0135cc305394465, 0xbff34f4ad1e359a8, + 0x3ff70e36382607ac, 0xc00764e79d4b8c78, + 0x4011aef90f22f7a1, 0xbff8f0ba7c2297e2, + 0xbfd27154775f11ec, 0xbfe72e38b90471fb, + 0xc00ebe738a9c4dd5, 0x4003be1fdda3cb5e, + 0xbff7e59c32a4957e, 0x4014d8ce63c8b9ba, + 0x4002392461b0a8bd, 0x3fed03e79becd3a8, + 0xbffb8a2fcfcadc31, 0x3fde5dc07f5c6014, + 0xbf9ae1da86fa8c80, 0xc00b49edc4518044, + 0x40161d7cbe46fc1c, 0xbff55a5f6bfe0005, + 0x400817166cb9792e, 0x4008a902958cb592, + 0xc00accfda9d9603d, 0x4005449e855af5e1, + 0xc00106b0aa720a9f, 0x3ff5cc61f6911584, + 0x4001a39f6c7643e9, 0x4003c1b43b69a81e, + 0xc000ba88458d547c, 0x400c93bcb8c69f8f, + 0xbfc0e8462258e3a0, 0xbff30e820772cdd6, + 0xbfd1c9c42d1862bb, 0xbffa5d1a35ba06f4, + 0xbfda58bf1681d4b4, 0xc0014f3dc46091fa, + 0xbfc6028177a2dafc, 0xbfddd7dd8a1c81e4, + 0x3fdc759ad7ef6369, 0xc009c02d327ace0b, + 0x3ffcc2cfe9e77a86, 0xbfeb8f8f3b1011a1, + 0x3f64c2ddfc6ae000, 0xbfdeac4984e851a4, + 0x3ffd0d0c7163f1a2, 0xc011922e9c9b626b, + 0x3fff4fa43c1ed984, 0x40039b6b0c283d8e, + 0x4004a29d8155c8d4, 0xc003d86282319baf, + 0xbff0fc698afa92c3, 0x3fea730775403b42, + 0xbff322d7ecde04ac, 0xbffdb3271127f433, + 0xbff5bdc94e53e4b2, 0xc009e01fb8c1df20, + 0xc0112880188d4c43, 0xc0103fa4b4ddf6f8, + 0xc00614043c617bc2, 0xbfdc9f98523a4f12, + 0x3fdca28eb924556d, 0xbf964eb0dd83e980, + 0xc008bb578971abec, 0xc00db7e2df2d039c, + 0x400109cd38e1d52b, 0xc004d6d9febac514, + 0xc00a4ddfdc2c8daa, 0x40138163f0c14e94, + 0x4013e7937b787e9e, 0x3fd91e81af059298, + 0xbff4c2d2d7ab5156, 0x3fed18d170fb6fd8, + 0x40059d90b2e50e1a, 0xbff454080b627a66, + 0x3fe89e6b06797230, 0x3ff72f0da790d1de, + 0xbff80e013718044a, 0x400cdd31b4259d67, + 0x3fe33977c053dcdd, 0xc01138569c820d9b, + 0xc0082cbe1b9a2d5a, 0x401228790cde1e59, + 0xbfe7a762e3992877, 0xbfeca50aa0a99b7a, + 0xbfe361f5bfef8522, 0xbff91856995cc490, + 0xc005ed5a45536f55, 0xbfeb970fb9ef33b7, + 0x400ae92fb6c6fca2, 0xc00e50440f505350, + 0xc00e23db28c3fb66, 0x3fe15dbbe1459d0c, + 0x400332a918a961ea, 0x4007172a011e83b4, + 0xc00168ac9e537e93, 0x40006d476d1c4c84, + 0xbfe21a1b9c4e710a, 0x3ffe22c4b352c8b0, + 0xc01159146f7fa9aa, 0xbfe2644ebbf6f82a, + 0x3fa547e832f459e0, 0xbffb65f16a1c7bde, + 0x400a9267df658892, 0xbfe4a5e0a08a57d9, + 0x4006225ce6412d2c, 0x4002069e80a86c6d, + 0x400066a0c5ae6327, 0x40055947eef50395, + 0x4001cc1bc111cab6, 0xbf765a841d4d3a40, + 0x400f0a0c17448c4f, 0xbff1f143bada4612, + 0xbf83f11b135c2b00, 0x4000d46d9a698814, + 0xbffc06de096f2d08, 0xc00491ffbe379d54, + 0xbff4323e157605f9, 0xbff385bc0175dfab, + 0xbfe3864f624e604b, 0xbfdd24ff0971f398, + 0xc010bf6329e9ea1c, 0x3ff3ea5aacd2485b, + 0x3fd78051364f4c0e, 0x40087c0ac34de271, + 0xc00738f361a7b06a, 0x3ff741611b1c6e9a, + 0x3ff3ff582231621c, 0xc0092919f10a2a0e, + 0xbff2cff778a1fa0d, 0xbff85f2baffdf776, + 0x3ff748ab728ab6fc, 0x3fed6e2a011ffd60, + 0xc0010c8eaf733bc7, 0x4004b8415f46044c, + 0x4001e8f340b46627, 0x3ffc668ac735ef26, + 0xbfea72509358be5c, 0xc0008db86fbbe492, + 0xbff963cbd990ffdc, 0x4003ffb6c1eb6d44, + 0xbfec34691fedd7a6, 0xbff37c918c7a29f5, + 0xc002c1d08ea60de4, 0x3fe69b6bc5d375ed, + 0xc001ef5f783c8334, 0xbfed80b689aebba9, + 0xbfc02ff7186e5092, 0x3fd8881b6d61dc26, + 0xbff16abc70a1e684, 0xbff80b2af98d0c1d, + 0xc00a75c1d108a00a, 0x3febdfa2aee9803a, + 0x3fe9d05e5f2a6a2c, 0xbff709e3f64c3e28, + 0x3fe2fe36a9961b17, 0x4003c8d638f0f602, + 0xc002a21fd09bc41e, 0xbff05bfe880c6b8c, + 0xc009d9aef29ca638, 0xbff6098ef407f362, + 0x3ff455350cb3cccf, 0xbffd69a2a56e9dd7, + 0xc00397d50fdf8952, 0x3fbbd8e952377008, + 0xbfe834d355e8130b, 0x3fe3d1001a719226, + 0xbff3bd20644671fb, 0xbffac520c3c33d62, + 0x3fff5a9ce4892384, 0xbffee81b810e864e, + 0x3fcd96d629b7e0f4, 0xbff522d47b0f4c71, + 0xbff9bb7ea1db3b6c, 0x3ffdb50635ba8373, + 0xc002db767b60912d, 0x3ff16f7629c4335f, + 0xc007db577facafc8, 0xbfd9ede441c7fa90, + 0xc006a2557b24f32c, 0x3fd7f726c4540e24, + 0xbff8b724d0d5be80, 0xc00f77d6336143ab, + 0xc010ceaf17b5ac21, 0x400156acf7423776, + 0xc004771aab0da654, 0x3fd6d7a08a22d962, + 0x400428b00097dea5, 0x40041dcab8d5f777, + 0x3fd6f6c74665cded, 0x400542f1a13aabe0, + 0xbfdab2b62f3df97f, 0xbfd0b00393945578, + 0xc010b5fdced6021a, 0xc011aead2f8f5099, + 0x4000f02c9ef737fd, 0x3ffef8a5266a3a5b, + 0x3fea432d1e7183eb, 0x4002421f0b8253aa, + 0xc007eec44241512b, 0x3fe89bee22e7acf0, + 0xbff6666b60241797, 0xbfe21a8f560eb766, + 0xbfa1eff8a66bdae8, 0xc003f84677cc6f2b, + 0xbff5c98ba4eb35f2, 0xc00a8c9c1fe615af, + 0xbfc38d2fe1cfb348, 0x3fe5d0087ce64856, + 0x3fde90827e8ee9d8, 0x400e9f39e40257e5, + 0x400163cd19a48bf3, 0x4011093e4e9e452e, + 0x400003575b420bac, 0x3fbc1ebc61062f30, + 0xbfdec3d856a7415e, 0xbfd3f264ac677b00, + 0xc006658871610df8, 0x3ff4644baab83448, + 0xc009c13848003d06, 0x4000ea838d4b8ce5, + 0xbffbc459b0e0908c, 0xc001b1e9542db4f2, + 0xbfa0a20728b66680, 0xc00456f2978b2042, + 0x3fe61232adb244bc, 0x4016683ebbb77756, + 0xbff7318ad3c9f8a6, 0xc00033a716dbde37, + 0xbfd80b12cdc92418, 0xc00f2acc9d2a7c12, + 0x3fd78e5c6e92ebdc, 0xbfd6e82aba485198, + 0x3ffa63ecd6d2f18c, 0xbff685ca58c2a66d, + 0xc006306b4c0ee4e2, 0x3fe624c41e25446a, + 0xbf7130af20144680, 0x4014969831f8b544, + 0x3f82a930bec88ec0, 0x3fee0b47a9bae784, + 0xbff89d2694104374, 0xbffb30843fb17667, + 0xbfce9eeb2a890cbc, 0x3ffcae15dfd643cb, + 0xc002e1a0049620ca, 0xc007764e6e1c508e, + 0xbff996248f3a5549, 0xbffef961bbb52819, + 0x3fe700914d5cfecf, 0xc0071bc06501d569, + 0x3fb7a49032035120, 0xbfb6a80d17ba3e20, + 0x3fdec8445d6763f8, 0x3ff26ed482775026, + 0xbfb54633098eac10, 0x3ff12cc5c06386bf, + 0x3ff1d8cd0f3e7e82, 0x401267493ab17bf2, + 0xbfed46cda8e2f191, 0xbffa34652d9ac6ae, + 0x3ff3457e86bfea12, 0xbffd770450eedcd8, + 0x3ffa8a3d3bc8556a, 0x4003f9c2ea4b9f41, + 0x400710b79da7f77c, 0xbfc904144584ab22, + 0x3fee16b72c96b290, 0x3ffa7c11ecceb7f9, + 0x400eb339ebfb468e, 0xbff5c54ad1bc9aa1, + 0x3fe473eee7fc0d84, 0x3ff5e07f84c04356, + 0x3fc2c1acad4356b8, 0x3fd6bc128b22e300, + 0xbfe01bacbc167562, 0x3ff12a6f2a1f537c, + 0x3fd986d3622d7e7b, 0xc00c50787285311a, + 0xc004f1f51f73423c, 0x3ff71ba417a732e0, + 0x40122786dca50e16, 0x3fd0ec54547ffd2c, + 0x3fe2374eb842acd3, 0x3ff93e9875890b4a, + 0x40091e337f0bfefd, 0x400238959d3a0b02, + 0x40084c45c68ef61c, 0xc00da19ae38a00ab, + 0x400857c63fdc68dc, 0x400d7d8e6defd238, + 0xbfea47a7272a233e, 0xbfd5b30a9eb32612, + 0x3ff11ad20491e8d8, 0x4001f537205f8220, + 0xc00b93ab6f0b6836, 0xbfdcf4e31713b377, + 0xbfcfbf4373d299e0, 0xbff13b81a18c5d5a, + 0xc004ff036f144a38, 0xbfe67b3c366e5cfb, + 0xbfe63a341ec61e6c, 0xc0033440ed56fe14, + 0x3faa21cd5f9f8ee0, 0xbff8318ae9230a96, + 0xbfc92a9604168f78, 0x0, + 0x3faa21cd5f9f8f40, 0x3ff8318ae9230a98, + 0xbfe63a341ec61e64, 0x40033440ed56fe14, + 0xc004ff036f144a3a, 0x3fe67b3c366e5d00, + 0xbfcfbf4373d299e0, 0x3ff13b81a18c5d58, + 0xc00b93ab6f0b6836, 0x3fdcf4e31713b372, + 0x3ff11ad20491e8dc, 0xc001f537205f821e, + 0xbfea47a7272a233d, 0x3fd5b30a9eb3260c, + 0x400857c63fdc68dc, 0xc00d7d8e6defd239, + 0x40084c45c68ef61d, 0x400da19ae38a00ac, + 0x40091e337f0bfefc, 0xc00238959d3a0b03, + 0x3fe2374eb842acdc, 0xbff93e9875890b47, + 0x40122786dca50e15, 0xbfd0ec54547ffd3a, + 0xc004f1f51f73423e, 0xbff71ba417a732e3, + 0x3fd986d3622d7e82, 0x400c50787285311a, + 0xbfe01bacbc167565, 0xbff12a6f2a1f537d, + 0x3fc2c1acad4356bc, 0xbfd6bc128b22e300, + 0x3fe473eee7fc0d8e, 0xbff5e07f84c04351, + 0x400eb339ebfb468d, 0x3ff5c54ad1bc9aa4, + 0x3fee16b72c96b28c, 0xbffa7c11ecceb7f9, + 0x400710b79da7f77c, 0x3fc904144584ab16, + 0x3ffa8a3d3bc8556d, 0xc003f9c2ea4b9f43, + 0x3ff3457e86bfea14, 0x3ffd770450eedcd8, + 0xbfed46cda8e2f19a, 0x3ffa34652d9ac6ae, + 0x3ff1d8cd0f3e7e81, 0xc01267493ab17bf2, + 0xbfb54633098eac40, 0xbff12cc5c06386bf, + 0x3fdec8445d6763f8, 0xbff26ed482775022, + 0x3fb7a49032035100, 0x3fb6a80d17ba3e80, + 0x3fe700914d5cfec6, 0x40071bc06501d56a, + 0xbff996248f3a5549, 0x3ffef961bbb52816, + 0xc002e1a0049620ca, 0x4007764e6e1c508c, + 0xbfce9eeb2a890cb0, 0xbffcae15dfd643cd, + 0xbff89d2694104375, 0x3ffb30843fb17667, + 0x3f82a930bec88b80, 0xbfee0b47a9bae78a, + 0xbf7130af20144a00, 0xc014969831f8b544, + 0xc006306b4c0ee4de, 0xbfe624c41e254463, + 0x3ffa63ecd6d2f18c, 0x3ff685ca58c2a66e, + 0x3fd78e5c6e92ebd8, 0x3fd6e82aba4851a8, + 0xbfd80b12cdc92404, 0x400f2acc9d2a7c10, + 0xbff7318ad3c9f8aa, 0x400033a716dbde34, + 0x3fe61232adb244bc, 0xc016683ebbb77755, + 0xbfa0a20728b666e0, 0x400456f2978b2040, + 0xbffbc459b0e0908b, 0x4001b1e9542db4f0, + 0xc009c13848003d09, 0xc000ea838d4b8ce4, + 0xc006658871610df7, 0xbff4644baab83446, + 0xbfdec3d856a74148, 0x3fd3f264ac677b00, + 0x400003575b420bac, 0xbfbc1ebc61062f10, + 0x400163cd19a48bf4, 0xc011093e4e9e452e, + 0x3fde90827e8ee9d0, 0xc00e9f39e40257e5, + 0xbfc38d2fe1cfb350, 0xbfe5d0087ce64859, + 0xbff5c98ba4eb35ee, 0x400a8c9c1fe615ae, + 0xbfa1eff8a66bdae8, 0x4003f84677cc6f2c, + 0xbff6666b60241796, 0x3fe21a8f560eb76e, + 0xc007eec44241512b, 0xbfe89bee22e7acec, + 0x3fea432d1e7183e7, 0xc002421f0b8253a8, + 0x4000f02c9ef737fa, 0xbffef8a5266a3a59, + 0xc010b5fdced6021a, 0x4011aead2f8f5098, + 0xbfdab2b62f3df984, 0x3fd0b0039394556a, + 0x3fd6f6c74665cded, 0xc00542f1a13aabe2, + 0x400428b00097dea6, 0xc0041dcab8d5f776, + 0xc004771aab0da654, 0xbfd6d7a08a22d96c, + 0xc010ceaf17b5ac20, 0xc00156acf7423778, + 0xbff8b724d0d5be84, 0x400f77d6336143ac, + 0xc006a2557b24f32a, 0xbfd7f726c4540e2c, + 0xc007db577facafc8, 0x3fd9ede441c7fa94, + 0xc002db767b60912d, 0xbff16f7629c4335c, + 0xbff9bb7ea1db3b68, 0xbffdb50635ba836c, + 0x3fcd96d629b7e104, 0x3ff522d47b0f4c73, + 0x3fff5a9ce4892382, 0x3ffee81b810e864e, + 0xbff3bd20644671f8, 0x3ffac520c3c33d61, + 0xbfe834d355e81308, 0xbfe3d1001a719220, + 0xc00397d50fdf8952, 0xbfbbd8e952377040, + 0x3ff455350cb3ccd2, 0x3ffd69a2a56e9dd6, + 0xc009d9aef29ca639, 0x3ff6098ef407f362, + 0xc002a21fd09bc41a, 0x3ff05bfe880c6b8b, + 0x3fe2fe36a9961b1b, 0xc003c8d638f0f600, + 0x3fe9d05e5f2a6a2e, 0x3ff709e3f64c3e29, + 0xc00a75c1d108a00b, 0xbfebdfa2aee98038, + 0xbff16abc70a1e689, 0x3ff80b2af98d0c22, + 0xbfc02ff7186e50a0, 0xbfd8881b6d61dc1a, + 0xc001ef5f783c8334, 0x3fed80b689aebbac, + 0xc002c1d08ea60de4, 0xbfe69b6bc5d375ea, + 0xbfec34691fedd7a6, 0x3ff37c918c7a29f8, + 0xbff963cbd990ffda, 0xc003ffb6c1eb6d48, + 0xbfea72509358be5b, 0x40008db86fbbe491, + 0x4001e8f340b46627, 0xbffc668ac735ef26, + 0xc0010c8eaf733bc7, 0xc004b8415f46044b, + 0x3ff748ab728ab6fb, 0xbfed6e2a011ffd64, + 0xbff2cff778a1fa0e, 0x3ff85f2baffdf779, + 0x3ff3ff5822316221, 0x40092919f10a2a0f, + 0xc00738f361a7b06a, 0xbff741611b1c6e99, + 0x3fd78051364f4c13, 0xc0087c0ac34de270, + 0xc010bf6329e9ea1c, 0xbff3ea5aacd2485f, + 0xbfe3864f624e6047, 0x3fdd24ff0971f398, + 0xbff4323e157605fa, 0x3ff385bc0175dfac, + 0xbffc06de096f2d08, 0x400491ffbe379d51, + 0xbf83f11b135c2700, 0xc000d46d9a698815, + 0x400f0a0c17448c50, 0x3ff1f143bada4612, + 0x4001cc1bc111cab6, 0x3f765a841d4d3500, + 0x400066a0c5ae6329, 0xc0055947eef50397, + 0x4006225ce6412d2a, 0xc002069e80a86c6f, + 0x400a9267df658892, 0x3fe4a5e0a08a57d6, + 0x3fa547e832f45a20, 0x3ffb65f16a1c7bda, + 0xc01159146f7fa9aa, 0x3fe2644ebbf6f826, + 0xbfe21a1b9c4e7108, 0xbffe22c4b352c8b4, + 0xc00168ac9e537e93, 0xc0006d476d1c4c84, + 0x400332a918a961ea, 0xc007172a011e83b2, + 0xc00e23db28c3fb69, 0xbfe15dbbe1459d0e, + 0x400ae92fb6c6fca4, 0x400e50440f50534f, + 0xc005ed5a45536f56, 0x3feb970fb9ef33ae, + 0xbfe361f5bfef8526, 0x3ff91856995cc488, + 0xbfe7a762e399287a, 0x3feca50aa0a99b78, + 0xc0082cbe1b9a2d59, 0xc01228790cde1e58, + 0x3fe33977c053dcdc, 0x401138569c820d9b, + 0xbff80e013718044f, 0xc00cdd31b4259d65, + 0x3fe89e6b0679722a, 0xbff72f0da790d1e0, + 0x40059d90b2e50e1b, 0x3ff454080b627a66, + 0xbff4c2d2d7ab5158, 0xbfed18d170fb6fd4, + 0x4013e7937b787e9f, 0xbfd91e81af05928e, + 0xc00a4ddfdc2c8da7, 0xc0138163f0c14e94, + 0x400109cd38e1d52b, 0x4004d6d9febac514, + 0xc008bb578971abef, 0x400db7e2df2d039a, + 0x3fdca28eb9245567, 0x3f964eb0dd83eb80, + 0xc00614043c617bc2, 0x3fdc9f98523a4f07, + 0xc0112880188d4c42, 0x40103fa4b4ddf6f8, + 0xbff5bdc94e53e4b1, 0x4009e01fb8c1df1e, + 0xbff322d7ecde04b0, 0x3ffdb3271127f438, + 0xbff0fc698afa92c2, 0xbfea730775403b43, + 0x4004a29d8155c8d4, 0x4003d86282319baf, + 0x3fff4fa43c1ed984, 0xc0039b6b0c283d8c, + 0x3ffd0d0c7163f1a4, 0x4011922e9c9b626b, + 0x3f64c2ddfc6ae400, 0x3fdeac4984e851a6, + 0x3ffcc2cfe9e77a84, 0x3feb8f8f3b1011a0, + 0x3fdc759ad7ef6365, 0x4009c02d327ace09, + 0xbfc6028177a2dae8, 0x3fddd7dd8a1c81e0, + 0xbfda58bf1681d4bf, 0x40014f3dc46091fa, + 0xbfd1c9c42d1862bb, 0x3ffa5d1a35ba06f1, + 0xbfc0e8462258e398, 0x3ff30e820772cdd0, + 0xc000ba88458d547e, 0xc00c93bcb8c69f90, + 0x4001a39f6c7643e9, 0xc003c1b43b69a820, + 0xc00106b0aa720a9e, 0xbff5cc61f6911580, + 0xc00accfda9d9603d, 0xc005449e855af5e0, + 0x400817166cb9792d, 0xc008a902958cb593, + 0x40161d7cbe46fc1d, 0x3ff55a5f6bfe0006, + 0xbf9ae1da86fa8c80, 0x400b49edc4518042, + 0xbffb8a2fcfcadc30, 0xbfde5dc07f5c6014, + 0x4002392461b0a8bf, 0xbfed03e79becd3a2, + 0xbff7e59c32a4957d, 0xc014d8ce63c8b9b9, + 0xc00ebe738a9c4dd2, 0xc003be1fdda3cb5f, + 0xbfd27154775f11e4, 0x3fe72e38b90471fb, + 0x4011aef90f22f7a1, 0x3ff8f0ba7c2297e8, + 0x3ff70e36382607ac, 0x400764e79d4b8c7a, + 0xc0135cc305394464, 0x3ff34f4ad1e359a6, + 0x40162e012d2560fc, 0x3fe2d404e3df57f0, + 0xbffbb60df26b3b74, 0x3fdd522251739e86, + 0x4004743bc4d1b741, 0x40015724171dcdaa, + 0x3fecf44eb4f88cc2, 0xc00fe9b69cdc008f, + 0xbffa685da43e0a47, 0x3ff9bfefcf8d0f51, + 0xc013d5103c5214a7, 0x3ff599ef7e0e9f7e, + 0x3ff05c80ddee9dae, 0xc015a4ab78ebeee3, + 0x3fdc6606c648bb18, 0x3ffb9ee32212dfb6, + 0xbfc6206969ed7ecc, 0x3fb7c1219adb655c, + 0x3fda0474a438a6bc, 0xbfc78ef9f1ef4f51, + 0x3fd0aa8cb9c490de, 0xbfe3b9da5fe07e5c, + 0x3fe62bf1827485af, 0x3fdebdc028d5ab23, + 0x3fc9b54e123e1690, 0x4005c652e742bf73, + 0x3ff3f3f354e256f7, 0xc0159c4dca2af7e0, + 0x3ff84fdf1775f58c, 0xbff4532fa5e95ad9, + 0xbfe17da59c706390, 0x3fcc8b5cae6b047c, + 0xbff41ef71f3e05b6, 0xbffabb9bc578981c, + 0x3ffd5ac519204c16, 0x3fe2ea154bf1854a, + 0x3fe8672fdc8bddf0, 0x4002d7265dc6cd95, + 0xc011d6e2f2e65f06, 0x3fbacfa2b52406c0, + 0x4012f44eaa812030, 0x3ffe96166e0cc4f4, + 0x3ff5f78fd9b17a0b, 0xc00054ad759f0415, + 0x3fe25ba48a61e29d, 0x40025e99f06f0802, + 0x3ff1e6e485f4145c, 0xbfdd1de7c661639c, + 0xbfd9fee72e440ea8, 0x3fd5de169236e694, + 0x3fdc247b43daac24, 0x4015ce752741daf9, + 0x3ff1a7458ce7f842, 0x401481855824fd7e, + 0x3ff18402c06d8624, 0x4007a3ba83fbe9f8, + 0xbfe03c69a7c1017e, 0x3ffaa18ac64deb7c, + 0x4004c2b17b42549f, 0x4009ee8a09c232e5, + 0xbffac4cfec866112, 0x3fe3be9c46fa04cc, + 0xc000266d6be99592, 0xc00066e23d5808e5, + 0xbfebfe1dca2058c4, 0x400711183ad3fdcc, + 0x4004a0116402fed8, 0x3ff30b137780e84a, + 0x3feb60d700932a29, 0x3fe36f299d5a9ae4, + 0xbffbb182d997cb76, 0xbffe767d92f91b6b, + 0xbfe223ee1b5c370c, 0xbfed2521b0f3ee7e, + 0x400e22dbeb02dca6, 0x3feea4fb5de53270, + 0x3febd24f4e1af311, 0x401cc57a0ac93ec5, + 0x40016bf7a288fdf3, 0xc00131e9d0d2952e, + 0x3fd56e8baa85f438, 0x3ff1dbc8bcdc8a8e, + 0xc000a8e3d5e9fad9, 0xc0061f9d00f4ebc8, + 0x40012a0c09c69ac1, 0x3ff12116ef38409e, + 0x3fed972d046713d0, 0x3ff8bf1585869105, + 0x40137f984efe2b5a, 0xc00e8c4503c8e043, + 0x40174dfaec9d1ac8, 0x3fe6c5ddc90eca44, + 0xbfc1004aba04d4ec, 0xbffae1e237dd4b3f, + 0xbfe1d0c7adfd387e, 0x3ff45e18dcfa9f7e, + 0xbfd2eef07a628834, 0xbfdb82d28179c60c, + 0xc000c051beba96c1, 0xc007232a07e07fb6, + 0x3fb70d46621848b0, 0xc007c787040cc266, + 0x3fe35b43c0d05349, 0xbff71322df012372, + 0xbff41ffa40911892, 0x4010e432741df9be, + 0x3fc7145b2b0a0728, 0x3fea7b18f0d8f6b7, + 0x3ff2d2d2941cad3d, 0x3ff98747f2edbbbf, + 0xc004266d8e19527c, 0xbfe2ea69184f8a52, + 0x3fb4c9adc85e7990, 0x3ff1020848df84f8, + 0xbfdbfbb2f20b7784, 0x3f9a8919c9331480, + 0xc002b4f28bdb22d1, 0x3fd02632915fa0d3, + 0xbfffb425daea7674, 0x3ffccc19ffd3b796, + 0x40113b7bb2a17657, 0xc0127943e747412c, + 0xbfff3ff08ab75df9, 0xc003a5ca0d5f5ab4, + 0x400d641199eb4c4b, 0x40002c45e3028670, + 0x3fe266d4ed8825a2, 0x3ff1d393f2dbf499, + 0x3ff8bf97abfebbfd, 0x3fc3aa168f50a2c8, + 0x3ff10b492ef3b1e0, 0xbff0b3aa0b9e1756, + 0xbff87cd2000607d1, 0x4000b03c8847210a, + 0x400bc137d6675f3a, 0x40015b26fdb80b00, + 0xbffd20c3a895074c, 0xbff84e57dd126c6e, + 0x3fe96d51d1d33eea, 0xbfffad00100c6518, + 0xbff90ad1cd6abb58, 0x3fdbc822eb5ed670, + 0xbfb4359d33d08150, 0x3fef06aaecef7500, + 0xc0007db91a6db16e, 0x3ff585cf9de02f91, + 0xbffbef746a0702ca, 0xbfda3d469af638ce, + 0x3fec9c76abd83bbf, 0xbfcdc4bd68e92288, + 0x3fff2008bfbb13b9, 0xbff8824908f0a68d, + 0x3ffc6b9d191d48c9, 0x3ffb19f96a85b7de, + 0xbff6c12dfc7246a6, 0xbfc99bb079656450, + 0xbff9e3e41d9acc3d, 0xbfd8836b052c07ce, + 0x3ff29747ec9c4ef8, 0xc0069003939737dc, + 0xbfee1ce1c2e9351a, 0x401ae0abcdf7be54, + 0xbff2b5fe5e0bd3d0, 0xc004625a307b10d6, + 0xbfe672d19720b169, 0x400122c872ba3f00, + 0x3fe47c9882e3ebcc, 0x3fec743d2e1182d8, + 0x3fa5775e066a9b70, 0xbffdb60064b9885c, + 0x3fc7b83265e457d6, 0xc00ad61a1ddd9c66, + 0x4005a52b09e3345a, 0x3ff500b116c4a0f2, + 0x3ff087dcb51411a2, 0x3ff00c544693f632, + 0xbfb4aeb198c65ab4, 0x40095cf7d7473f34, + 0x400d6a1359a24c44, 0xbff409e1a0d58214, + 0x3fc10e2ea696c3c0, 0xbfec50073c07b108, + 0xbff2e38396ffa53a, 0xc0003358e5ada1a2, + 0xbffbf9727c44aece, 0x400a9fa0ab8c4a2b, + 0x3ff7952b45fe2c0b, 0xc01065715fcad108, + 0xbf98a0da884815c0, 0xbfb7af35436aec30, + 0x3ffd9f4e99267f34, 0xbfdd8c44a6aff97c, + 0x4012000dc34e35ec, 0x3ff66023e33cd6c2, + 0xc0013d95f24c5124, 0xbfea1da001ee6600, + 0x3f8aabb634beed60, 0xc014b9dd5d671eca, + 0x3ff6d3f7c156e922, 0xc0168264883367e2, + 0x3fff2dd0262b8cbd, 0xc00e774dfe0fbdd0, + 0xc00acfffd876b8a2, 0xbff10ab36c99bc36, + 0x40085112583b3dc4, 0x40078d900860ea3e, + 0x3ff3c344b0f7d3df, 0xc0083138a095da73, + 0xbfd78ad2970a4c22, 0xc006186005aa98c2, + 0x3fc30ed45d88f780, 0x401b2bab06549d24, + 0x4003bcfc382f1e8a, 0xc004f828ad777d89, + 0xbff9ee77d8de7268, 0x3fd8d9b81f685ed8, + 0xc003b91717f7b88d, 0x3fea7d822e79b628, + 0x3ff5106e0d8851e8, 0xbffa1d098914b0c6, + 0x4000fc4626af96a3, 0x3ff01a85958e14fe, + 0xc0085b9c72ab93e2, 0xbfca7b479334bb68, + 0xc0077ed5bdd2944c, 0x3ffee69448422dae, + 0xc002600442d1b8d8, 0x3feda232e86eea4d, + 0x4007cf6670eb03d1, 0x3ff1ca1f297fc482, + 0x3fe4273c4fd8b8f0, 0x40112ed6531d0c39, + 0x3fed1cfd553c47b0, 0x3ff7e6ff12153890, + 0xc0003897641c65a5, 0xbfcb73f4d5aff044, + 0x3ff74cc5864491d8, 0xc00ad8c92808ef21, + 0xbff368a5d0eea315, 0x4008f50a758f61bc, + 0x3ffc6ae8c430b8dd, 0xbfcf00d9fa581d78, + 0xc0012c386c0dca9f, 0x3fe0b174cc71be94, + 0xc0102a974abd90aa, 0x3fdc17e5bb23998c, + 0xc012eadad5f3080a, 0x3fe9c8f00f99f572, + 0xc00ba6ed5841929c, 0xc0169bed26288c1c, + 0x40180c587c0cd14d, 0x3fcee57808c27fb0, + 0xc01230cfba3b9878, 0x3ff23db3011b146e, + 0xc0008ce19fb369ac, 0xc0028b8eae0f1ddf, + 0x400c3920b97d656e, 0x3ff213b542c9bd14, + 0xbfcaef406d6c64b8, 0xbff3fca7ed4fea29, + 0xbfc5f3dd89876ed0, 0x3fe02ddb01d79efb, + 0x3ff0e7571cf31d53, 0xbfbac0d36f1e9c7a, + 0x3ff2974ad98ff964, 0x3ff5579281b29d63, + 0xc001fb4ae4039425, 0xc0052bcd69c52e42, + 0x3fff2d542a60cbde, 0x3ffafac172855bdb, + 0x3fe7e28a43eac37c, 0xc009d67552c4c04e, + 0x3ff3b03ba16571c2, 0xbffd7392b427c6e4, + 0x3ffc1f9476a37c94, 0x3feba264a36c0e94, + 0xc00c861f7db45696, 0xc0090445fb24bd11, + 0x40126007958f74e4, 0x3ffc96e3dfae2702, + 0x3ff6a10a29e36963, 0xc0083c8d45da37f5, + 0x4012905ea4876b5f, 0x3fff59591e3cf4b8, + 0x3fef3b611d1e41e8, 0x3ffbaa1b26350318, + 0x40094df004c84cdc, 0x3fde3946294431cf, + 0xc003d84debc0cb92, 0x3ff3cffb02b28630, + 0xbffd508129f39c88, 0xbfe73f0fac871852, + 0xc00fb9a909f78526, 0x3faaafb0e30daa00, + 0x400b3743f9ef837f, 0xbfdf7f27485a40fe, + 0xc001fd61ff5a501d, 0x3fb82a8897a6bbe0, + 0xc005ef11836a3f3f, 0x3ff2d50b54648496, + 0x3fbb52a15fe77ad0, 0xc013317b56434fec, + 0xbffb1bd2988fb3fe, 0x3ff0bc78509ab8dc, + 0xc00115cf5ef59433, 0xbfd280c7bb5b2734, + 0x3ff8ab55cf50bb36, 0x3ff55daaa2a627c9, + 0xc00063f74eeaff37, 0x3fda515e9aee3b80, + 0x3fe5328912e1808e, 0xbffd21017f4ad217, + 0x3fd2954a1257d320, 0x400a94d87f1a15b5, + 0xbffe8fa0c5267060, 0x3fc0444714b294e8, + 0xbff784db955ac85e, 0xbffbd6d55042bd8c, + 0x3ffb7080ed494292, 0x3fe6ab569a5ba398, + 0xbfe684380b838232, 0xc008a634d29942be, + 0xbfedf21d9eece30d, 0x4008232a123daf2a, + 0xc00e6ece20b88460, 0x3fd2d5a53c15f140, + 0xc005101c036512ca, 0xbfd7b8464badae50, + 0xc00e00b6506ab40f, 0xc00088b52f2ff716, + 0xc0048816a21bda7a, 0x3fde7a064d854654, + 0xbfde2c7dba5a8150, 0x4017698ac4a32348, + 0x400bef8a2b20297a, 0x3febdbfdb23a54d2, + 0xc0008c11724fc6f2, 0xbfedd71e959e37f4, + 0xc008f7bfb0e04b30, 0xc00b1c54b908ddda, + 0x3fdafc2b9c0c1164, 0xc011faa7cabfd808, + 0xbff3d156a6147b88, 0xc006aecacf38ca14, + 0x400ae9161da16e74, 0xbfb1a66e5c061b78, + 0xbffc807c9addea38, 0x3fe8e73796d87942, + 0xc000af06ec14ebb2, 0x3fe21223d0dbeb9a, + 0x3fefa2db81d98ace, 0x3ff72b8611d00db8, + 0xbff30eeab734f781, 0xbff855c84454b1c8, + 0x3fefb090bbbcbbee, 0xc01f9808272a32ec, + 0xbfe06b97866eaeac, 0xc001dfdf165aebc0, + 0x3ff36f13f124871c, 0xbfe064bdcfe55940, + 0x4012e5144c2c8710, 0x3fe5cbda5a09298a, + 0xc00123c13e5c647e, 0xc0047afca5d54580, + 0xbff462435d6cb086, 0x3fd6461f4016a66c, + 0xc001308e4c12d5d6, 0x4001bf34e2dba742, + 0x4007e98e63b140b7, 0xc01194a0fa0a2454, + 0x3ffb6f69348794f4, 0x3ffff2437ff5dac8, + 0xc008d40e64a4d894, 0x3ff727f74d952bcc, + 0x3ffe1b1a9dc83e83, 0xbff32360d61721b3, + 0xbfd58d60d03f7e3c, 0xc010c6eb7b45ee3e, + 0xbffa382d59caeaf6, 0xbff594207a1353cc, + 0x4002612e68e4e48c, 0x3ff8ff6f8ce9480e, + 0x3ff92dadaae1d04c, 0xbffab6470c8a903f, + 0xbfe42a6db5ee42ac, 0x3fdd2cbad64ff060, + 0xc003df32dcc8ff60, 0x3fff17f94d3467a8, + 0x4010197c215b4605, 0xc01007ea595745a5, + 0x40118ec212b73b6c, 0x3fe611fe3582bf84, + 0xbff7115c188d374c, 0x4011583efdeb3584, + 0xbff21e5aa421ecbf, 0x3ff4327f47eb8796, + 0x3ff356790581a2ae, 0x400204fd20341630, + 0x3fcf0e3eb9e4acc0, 0x40092132a23bf990, + 0xbff61155a88cc240, 0x3fef33677c5cf0d0, + 0xc0036b416398afe5, 0x4005ebe1cf6ca735, + 0x3f7f5d79f8b1e780, 0x4006dd0f5d1da220, + 0x40011f73f0e3d0ba, 0x3ffefbe6e86a067a, + 0xbfd8a9279980ba74, 0x3fe2d8ddd8793f66, + 0x4007fecc7e4c9e64, 0xbfa494cc37a02950, + 0xc00fddd42ce18c42, 0xc0038512e681a3b6, + 0x3ff4d630f30203f7, 0xbfaad5331093de20, + 0xbfcd3ac899124e20, 0xc00b527b9dfa8220, + 0x4009b7ec844d4938, 0xc0142d0ec5095cac, + 0x3fa2972675ca0d00, 0x3ff00cd7211f8f06, + 0x400543939ad4a792, 0x4002597f9d4076f4, + 0x3ff756e60d4c754c, 0x3fe1cc2db873404a, + 0x40011f18e5cca4eb, 0xbfa4b1a1b0eba668, + 0x4002490fb4721c7a, 0xbfd41695e5b421d2, + 0x4005a8a489318c50, 0x3fc72184a33550c4, + 0x3ff4dac6889e5d63, 0x400692b2f81afae3, + 0xc012fbb20ab174f4, 0xc005ee87bb1138d8, + 0xbfd364c900278f1f, 0xbfee5f9374c42a1c, + 0x3f99fd3f98bffd30, 0x3ffc2df9c2a7bf87, + 0x3fc2bcfedae25fa2, 0xc00f808ace6289cb, + 0x3fe0fe2b097ad6ab, 0x3fc3a641222a55c0, + 0x400ce2c92a6bf2cb, 0x3fb2016c9332b6a0, + 0x4000ee9689694bc2, 0x3feb818be1bc5874, + 0xbfe3ca0f6b1a6e7b, 0xbfecdda9889309aa, + 0x3fdf7954c0f4fbe0, 0xc00a5bf096141e52, + 0x3ffcf82c10fb3c3a, 0xbfefca3b554a0506, + 0x400398da5cd7febb, 0x3ffe4375b4dd8984, + 0xbffec020cd95d6e6, 0x3fc43899c8bc10ec, + 0x3fb631ac13a03f90, 0x3ff2ac934f6cc16b, + 0x3fe7ca1aa194a0d1, 0x3ff29f65be398c68, + 0xbfd9039db4449e98, 0x4011131acd7dc2ce, + 0x4013e4745b788a1a, 0x3ff8c2b57468c7a6, + 0x400187ce39bf0c8e, 0xbffcea352844f773, + 0x4000a18b56ad43e4, 0x40054d972a5a9496, + 0x3fd7122c039c49c9, 0xbfd8fb71aa725884, + 0xbfc3394320d96b54, 0xc003353f72c4aefb, + 0xbff512eb23f2ae30, 0xc004978e2fce84f5, + 0xbff535af1b2536b2, 0x401381e1460982e7, + 0xc00f6f1feedbdf61, 0xbff861bd55aecfd9, + 0x400af04bcbdf21ee, 0x4000b433a60db523, + 0x4009c306096a13ce, 0x3ff6f2ebb72c8ae8, + 0x3fe0680150182acf, 0x3fe47859de59bd9c, + 0x400b67ad34f5bb0e, 0xbff48adf1993c4da, + 0xbff65afa9e047855, 0x3fe0b0f9d109024f, + 0xbfcb254efb962be8, 0xc00ff1b3592a8f84, + 0x40003519f03b0294, 0x3fec3d817aa69c62, + 0xc00aad25b92d8db8, 0x4007fcff04d423df, + 0x4011c9cc9aae1370, 0xc00313b464ed59c6, + 0xbfdf9ec6f1104888, 0xbfd6341a46aa05e8, + 0x3ffb110f41302846, 0x3fcb6541c263fb28, + 0x3ff4b81236836e90, 0x400ae3360346a727, + 0x3ff8e9bf65022d13, 0x400306781ffb54dc, + 0xc00ab1b71a6a8df0, 0x40099ac8c8a414a6, + 0x3fd96e6d28ed72de, 0x3ff107809d105122, + 0xbff19dc04f92d75e, 0x3fe4489855da2e7f, + 0x3ff57d188ef0fe22, 0x400c7561d720b761, + 0x3fe117dc992149ef, 0x3ffcdedef8db59e7, + 0x3ff7af922becbce6, 0x3ff1bb27a482979c, + 0xbfe77712a4d09350, 0xc0050b5ec8c9133d, + 0xbffaedb2135d4a7c, 0xbfd08c65880671a0, + 0xc00ae5a4bda7791f, 0xbfea67ec92242289, + 0xbff1fd2e4105a7e5, 0xbff3fe198ef1ef5a, + 0x3ff1e038010ae37c, 0xbffaf4b153277a1f, + 0x3fe4773bf90f054a, 0x3fb7ad3456de1c00, + 0x400977951435fcfc, 0xc013d8d7b2903132, + 0x3ff06a9047f172b0, 0x3fed8c94117fa6da, + 0x3ff34298e275f27c, 0x4002f74bf13a0f6c, + 0x400419b74c502463, 0x400a023ca3f1489f, + 0xc0018a5f5e2594bc, 0xbfff0869a5b00708, + 0x4010cba72bd1c384, 0xc0010ad2b60568e2, + 0x3ff15e588bce7ebd, 0xc0022fa9724ab04a, + 0xbff35ad8d7fe651e, 0x3fd26d99c223f896, + 0x4000e9200027e4a5, 0xbfdb0d0ebb27da38, + 0xbff38f7edfa481a8, 0xbfea8f7c28309596, + 0x4007038687085b94, 0x3ff8ddc6bf88d1cc, + 0xbfd88e8a802d33b4, 0x4012a538b66355a8, + 0xbffe0e32d0bc55fe, 0xbff3692135c7d7ce, + 0x3fd5f05db0dd2cb4, 0xbfdec772f7baa980, + 0x400f9091771e25dc, 0x3fe835192a50041c, + 0x40084b7e2dd80a86, 0x40049a7342a2e368, + 0xc01d48e9ad3e7156, 0x3ff54643dfa23339, + 0xbffafeab0df3b588, 0x3fea31ccfb2e4758, + 0x3f84bf9ef61315c0, 0x4009383586563804, + 0x40047da7365e8988, 0x3feabb388ada6fa0, + 0x3fe2f65595c35d96, 0xc002612ad4320c6b, + 0xbfd489be1e1be10c, 0x40092c4f25b37e0a, + 0xc00aace67c395bd8, 0x400b56ee80c9ad60, + 0x4016b36fa27b1b4a, 0xbfea5553c8dd47b8, + 0xbfd37e8bdeb038d6, 0xc00860962e7e0af6, + 0x40010a78cfa19a3e, 0xc0044a3acc357d52, + 0x3fe1eaf713d13651, 0x3ff5694cb38b30d6, + 0x3ff5bdcaeb6a47cc, 0xc010b442c7624d7e, + 0x3ffa1b3e54818cf8, 0xbff582983b52c5b0, + 0x3fe9b2532b49929c, 0xc00148e439112121, + 0x3ffdd6a78bc61bb3, 0x3ff8f5b1718f1029, + 0x3fb926dc3c2e3c70, 0x4010fc7308a39800, + 0x400b0de45916fc2d, 0xbfd987cfd618be1c, + 0xbfee3802eeb4bcf2, 0x3fdb7304b0898508, + 0x4002d7fb5bdbedc2, 0xc000420c869a6742, + 0x3fcec2d785bf4d80, 0xc00fd5ad1d967aba, + 0x401038c1ea420894, 0x3fc8e74c9927607c, + 0xbffb0eda8d3f1512, 0xbfea26617f503ca4, + 0xbfff3d9487b568ee, 0xc0015734908ca0ee, + 0x3ffb6c98430879ad, 0x3faedebb35073bc0, + 0xbff2e7aeed1741a7, 0x40044d646c71937b, + 0x40118a8078d17272, 0xbffd6d73065185cc, + 0x40048066c1cb92a0, 0x40017821b6b69386, + 0xc00427a8aef1874c, 0x3fd7d8edbd9f2c20, + 0x3ff5369b5b936a6d, 0xc00f9d997134a372, + 0x40042b9fa99e3d6f, 0xbfe78194e271a114, + 0x3fdefbb9e49a0640, 0x3ff6e34bbb8bbf19, + 0x3ff50d5031bd6f1f, 0xbfca849505bb2dd0, + 0xbffa7e38d009d4b2, 0x3fd64e2941c3e2fe, + 0xc00a67f868fb14a6, 0xc0122d9d17904a8c, + 0xc003dac5e6c1b284, 0x3fd84b8b350dfdd2, + 0xc004487fff564b25, 0xbff84e8c76f642b8, + 0x3ff7da166dd45654, 0xc004d6d458b02ebb, + 0x3fff81515363ec62, 0xbffdcc83dda6b049, + 0xbfeaa7014cfa97d6, 0x4000d605aca8bfea, + 0x3fffdeb28ce5c9fc, 0xbffbfd38f5564a79, + 0xc0027737e8ba9b82, 0x3ff36287d1a5cfbd, + 0x4009f4f4e662750b, 0x400cee79aefc20b8, + 0xbfd2d2b350ddf828, 0xc00b55e9b4501b7e, + 0xc004239ce7900386, 0x400d0e474dd63b5d, + 0xbfe2cc352dce381c, 0xc01213ca3c5cd8ae, + 0xc00432f721f1d28d, 0x3fe04c6d061c6a6e, + 0xbffb61974c560acb, 0x40080ea82e7e39c6, + 0x400b2d0afc4f537b, 0x3fe9c83283c6b9fa, + 0xc0029db027a5b891, 0xbfd64dcbd159da80, + 0xbff4c8a34e4c9332, 0x3fe5b3d26b3c2206, + 0x3ff4663021c653bb, 0x3ff19a911396f6eb, + 0x3fe280458a26b9b9, 0x40039e2205bd7e87, + 0x3ff1aea34b0e1d21, 0x3feeb895bf141df7, + 0x3fc1d5e6778034d0, 0xbff588e4a0acaa1c, + 0x3ff16c96ddbcbefe, 0xbfab9985ab1d8280, + 0xbfed499d2f3f1012, 0x3fd55af2eac0db24, + 0xc007c33255de1299, 0xbfb0a9efba7a68f0, + 0xbff7109b27e43f63, 0xc010cacc29e6d7ad, + 0x3ff9db21c3751b16, 0xbfd161d137503b0e, + 0xbfecd3eddf162470, 0x3ffc707c7f5afeda, + 0x3ff9118f5bf418f6, 0xc00c8a5702e09385, + 0x400a4f88a59c715f, 0x3ffac219274bb8a2, + 0xc000fd7c18b92640, 0x400874e7b3e9dac9, + 0x3f9795243a087b80, 0x3fd10f167c31cdb8, + 0xc0096bada1b8664c, 0xbff3274feacf3db9, + 0xbfbe7afe5c37fd90, 0x3ff27a354b00f076, + 0x3fd526ba8f41779e, 0x40006748be8679e6, + 0x400df03f153d89f4, 0xbff86c4976717344, + 0x3fcb2ab26d2f3cd8, 0x3ffa9f56ee83e32e, + 0xbfe41095e2c8a483, 0xbfdc5c8bda9bc0e6, + 0x3fd7949aa81cf294, 0xc00eb0b630a25b4b, + 0x3ff4bacdcf602e97, 0x3ff013ac191b3a95, + 0xc00b6d832ab65164, 0x3fe50ab1c449415c, + 0xc012002eab11af73, 0x4000d6cc0065b6d9, + 0xc00c11d78d6ddc51, 0xbfe48f44e7d5e614, + 0x4013ab054c100e28, 0xbff610da0d951168, + 0xbff56e0a207c8fdf, 0xc013f70cdc7ae14d, + 0xc00a8623248b29a3, 0x4010a3ce6ef58c16, + 0xc001429bc609ceb4, 0x3fa46576d5e9c000, + 0x400432ae89401f8e, 0x400f253e180f6a68, + 0x4005d10cc446f804, 0xc011c209e7afa220, + 0x4015a2c336c3883c, 0xbfe77b2324f5234e, + 0xbfdb093056fecd64, 0x3fee09235472962f, + 0xbffee82e67e7264b, 0xc01306d11bd11afc, + 0xbfd6764d47f47d78, 0xbfea2fbfb7cd2204, + 0xc005cd8a695904d3, 0xbfe0fadd24adfb4e, + 0x4003a0fb7b61eb22, 0x3ff5381d1b24c6ba, + 0x4008cfa5a206890b, 0x4002124495d32c06, + 0xbfef23b4715bbbea, 0x3ff2c5dff87490cf, + 0xc0098b3911ad6cbd, 0x3ff6c15b74babd5b, + 0x3ffe4f52dbd4b090, 0x4000c52a12727cf9, + 0x4010222e8844f60d, 0x400b7b46625663d0, + 0x3ff4d842437b4e40, 0x3ffd47d75b700d4d, + 0x3fe9de47a2f0144c, 0xbfad5d90cae9f450, + 0xbfc794a0b5ae177c, 0x400b434fcd16b574, + 0x4002d910697fbe05, 0x3fc6cd2aad6c95c0, + 0xbff653b7f425893b, 0x40065c4ce5b23e04, + 0x3fe165eca9e2007a, 0x3fe551a2112d6a94, + 0x4004377fb010481c, 0x3feffb9154ceae49, + 0x40034912b1f8750d, 0xbfa3b40bb4902a80, + 0xc00e296a0ad8b306, 0xbfb214f9239612fc, + 0xbff8183808fc2b42, 0x40020f2a21b1938b, + 0x3ffd0c855979fa46, 0x3fe0914cb8bc1e13, + 0xc003c6cc86421bda, 0x40068a743c2a96b4, + 0xbfd9a8207f95626c, 0x3ff536d74285d51f, + 0xbff0174c258b45a0, 0x400d0455e32238a2, + 0xc0066332b37b4778, 0x3ff8ccf238ed16e3, + 0xbffbb6b9da4dd9fc, 0x3ffb4161baddf6e8, + 0xc011108b07de9cdd, 0xbffe162a8baa2a3c, + 0xbfefc767d97f2720, 0xc00667604c24a2a4, + 0xbfc5b98f3a5d6cfc, 0x3febe81244418535, + 0x3ff9a0351016ded8, 0xbff2cdc0a89cb233, + 0x3fb05d6c75fd8340, 0xc001470bf937319e, + 0xbff05b7ba06b1ed1, 0x40069fbe9ae6a0d9, + 0xbfd31c31a8c9eea0, 0xbff1f05c54642df0, + 0x3ffd640bc91e9a40, 0xbfe01a220f847b76, + 0x40011d33fc953e4d, 0xc006b728ba50f61c, + 0xbfcbdb9165cdf050, 0xc00b76e6e8bd9b35, + 0x3fd3504e781737b5, 0xbfa57da595021500, + 0x3fbba373cfcde748, 0x3fc161679ec23d08, + 0x40099685e7884f73, 0xbff0511b0e37376f, + 0x3ff957c922e64eca, 0xc00b0eccf5550e76, + 0x40012b27d14e0612, 0xbfe195f1565dfd12, + 0xbfd07c4858d1c3e4, 0xc01703d8439beb20, + 0x3fc120bc789fc97c, 0x40163a4cdd756a59, + 0x40041966ec4e85b2, 0xbfcef9b7d74c55c8, + 0xc00066201c9316f4, 0x3ffe0c9b367d0c5c, + 0xc001eca93ce0cde1, 0xbff4eefd98e08fe0, + 0x3ff15007b8a25684, 0x3fdf0929db334f7a, + 0xbfe3a85bc63a426e, 0xbfa22ba2d5b86140, + 0x3ff04f509ecdec6e, 0xbff6a4ac85b975be, + 0xbfb2db941e55fbf4, 0x3ff9370c77daef5f, + 0x400a61421f2085ec, 0xc002dcf540616732, + 0xbfe27ef639e44f86, 0x4000b7964f966478, + 0x3fe140d4ae9ae504, 0xbffa16151655b1ae, + 0x4001527d74371a88, 0x40042d53ac71f647, + 0x400d59ad427039e4, 0x3fe5829266c04a0b, + 0xc0065bd580db9872, 0x3ff94de48d0b6057, + 0xc00e662b360eab3e, 0x3ff1e5968b67048b, + 0xbff0ce1970108413, 0x3fbbe6f7acc5ccc0, + 0x3fe47ab4e2a51104, 0xc0052efc21fd2370, + 0x3fde5ec025e3eea0, 0xbfde23a6a8db0250, + 0xc008e317a4e14d38, 0xbfe698cce2d5b4c6, + 0xc001136394b40631, 0x3fd0cfec37518482, + 0xc00211817c95deea, 0xc0018295b5b82580, + 0x3ffb9e7d30602d83, 0xc00237d4b9bd6f83, + 0xbffd8d2b5bbe08ce, 0x40067df0e9a8f2fc, + 0x3ff3273958941fea, 0xbff348c133067f30, + 0x3ff5777d11bb6568, 0x3fc1d79f293f1718, + 0x400b55be658f63e9, 0xbff7e64bbe550093, + 0x3fe6b09afbc82b2e, 0x3fc53613bd8c0810, + 0xbfcd31fa30e2ccb9, 0x3ff685a7550e58f9, + 0xc009287856df0297, 0x3fa0f262371c8220, + 0x3fee6fe6b8497b25, 0x3fbf066802d1d6d0, + 0xc00bff21476d3976, 0xbfe9e3e818066a87, + 0x4006eb8d9ccdf3f1, 0xbfd3a4f3f97ec88e, + 0x4013fb2dcf5f0f60, 0x3ffcdbe1dd1c6744, + 0x400d0b8356c5081e, 0x3ff11c53896d9a7a, + 0x3ffd467a09d9d9eb, 0xbfef6b73121f9520, + 0x3fede08bf4bbc214, 0x3ff8101f3a229997, + 0x400c58ee212f004c, 0x3ffb556e8125003a, + 0x4002a86611911d2e, 0x3fd0003e6cf1ea58, + 0x4000566e23ea4d23, 0x4000aa6a35ec0cc5, + 0x3ff8365c46ca206b, 0x3ff30b3d6488968c, + 0x400d0c59b58f9058, 0xbfd3803002b3b1a2, + 0xc011860f09815a8a, 0xbffb150f3cbd6314, + 0xc01093023c99a032, 0x40101c99650278a4, + 0x400661fde12c1ab4, 0xbfc4f144f07d8407, + 0x40026372d81227fb, 0xc00294c21316eeeb, + 0xbfeb16a191778050, 0xbfc3b15aafac931e, + 0x3ffddbf4872e5536, 0xc008c2e192304098, + 0xc011552a0c20b42c, 0x3fa6f5f8f86a7270, + 0x401e090415e0bade, 0xbff4607eb24e4e7e, + 0x4006e9aa969003ff, 0xc0007049c39f002c, + 0xbfad04bafbf355a0, 0x400118c34a14a0f8, + 0xbffc84d90adef51d, 0x3fd3b81c8c6a146b, + 0x3fe59fd5a7760a62, 0x4006a1237807911c, + 0x40105604da3ee595, 0xc008d5311cd9ed10, + 0x3f9b4fdbc95238c0, 0x3fe6c1ee285c9ed4, + 0xbfc9f5b60a9cad58, 0xbfeda541640b4548, + 0x3fe96ee06a17c964, 0xc00e5e7438de8d42, + 0xbfd45f7e0e0018fc, 0x3fe73772f0db9942, + 0x3ff2ec86aaf8384c, 0xbff2b4774898010e, + 0x3ff0f89a4dd79671, 0x40033cfcd114c26f, + 0x4002ade2dfd0cdfa, 0xc010e4da161c874a, + 0x3fc101dd8c78e7d0, 0xc000c78df5a74c19, + 0xc00d9fa2757635ac, 0xc00ad707f603dff8, + 0xc00a7b3896c8cb19, 0xc00c6a60c793320d, + 0x3ffc8b2660962289, 0xbfed0d418958cb56, + 0xbfeed460b2bf3e48, 0xc000d65ef745d4ae, + 0x3ff16182948936da, 0xbfe3ab1ae4f48044, + 0xc01196d22b203ac8, 0xbfeba21ef1d5bd30, + 0x3fffb84b9b28c100, 0xbff7aabc5fc3a20d, + 0x4009b25c8991d86b, 0x3ff2272a001c7d48, + 0xc012333cf3bb4a44, 0xbffbf4ed8ccf5efd, + 0xbff23078eabe1a7c, 0xbfb1c0e8ef291a10, + 0xc00eb3cc266b2bbe, 0xbfb142e288b133a0, + 0x3ff23da231c340c8, 0xbff7a66eec78b5b0, + 0xbfe8d739a40b4c27, 0x3fd86e4d662bd716, + 0x3feec745e63a177e, 0xbff4ddd8c6eece6f, + 0x3fcd299a4269d410, 0x4005b43bde8d3bee, + 0x3fe7375ea6d67737, 0x3ff2e6daf4eee34e, + 0xbf8934373c573cc0, 0xc0052dc67836d275, + 0x3fd6700790e18593, 0x401c0da74ec2623c, + 0x3fc4a8ccddeb1130, 0xbfe6c04f6d58461b, + 0xbfebe85f0e99ae1e, 0xbffee452886a0348, + 0xc0048ec26e46a947, 0xc0002b5d2cbcdd7e, + 0x4006505d21e35911, 0x3fffe109d0f28c5f, + 0x3fdd57f381d9193e, 0x4007dfa494915318, + 0xbfee814da823d3f0, 0x3fb35e702cacd248, + 0x4000734ff8bf32d6, 0xbff8cab4e9549c84, + 0xc0056ff1ad19a806, 0x3ff20fd02882c5bc, + 0xbfc872cdc116b7ac, 0x3ff056e0157bb1ac, + 0xbff1ce844c4b6199, 0xc00496f66757416e, + 0xbfb83f5c5fcc2e38, 0xbfd9aafe684b1598, + 0xbff8fd12893b27af, 0xbffc0a082f9a0aac, + 0x3ff92338b2b0a54d, 0xbffc514ad5190be3, + 0x3ffe9cd65d92831f, 0xbff8b83668fcb8c3, + 0xbfc03d281c2c51a5, 0x3fe546e10442cc6f, + 0x3fff93a039b67ca8, 0xbfd8c09e3db19244, + 0x400839a5bb0311f6, 0x3feffd6cc5c1369f, + 0xc007896d6689aa8b, 0xc001b423f5470b46, + 0xc00798a1966f5b10, 0xbfa4fe67ba068f40, + 0x4000c9c4e657e0bd, 0xbffb3f4d354af6ca, + 0xbff61c197c16abe8, 0x3ff392fac025b149, + 0xc00581b901a72ab1, 0x400d8827274a9363, + 0x3ff9b74bd7960935, 0xc016dbec4b44d78e, + 0xc013f41ba46f9621, 0xbfe0a4b82a2d6493, + 0xbffceca60d6ea93a, 0xc00434859193ab15, + 0x4007bd834cf39711, 0x3fff96f6dd8845cc, + 0xbfe3f0022ab88314, 0xbff684cbb3ebcf8c, + 0xbfde7b80685a2c9c, 0xbfe92b28f114b45c, + 0xc016767828a4d965, 0xbff54946d6b6656c, + 0x3fe3b74783275cf0, 0x4001e2a80564f1b5, + 0x3fec586e5cbb6ab6, 0x4004511646b6465a, + 0xbff0306133dfca64, 0x4000acd69eba4886, + 0x3ffd818adfd022a1, 0xbff22aa60f187a6a, + 0x3ffb6ab37b50e863, 0xbff1923049bf88c8, + 0x40010178fa15139c, 0xbfbbbcc1015fc7b4, + 0xbfeba19c4473ee1d, 0xbfd7cbbbed6da5a9, + 0x400721c51ff21a6e, 0x3fc8727d32c35580, + 0x3fe3b5de5a0ff2a2, 0x4001e0055895db72, + 0x3ff953286eb7e693, 0xbfff8006318aec5b, + 0xbffa62afa933c8b8, 0xbfd79878cb9d74f0, + 0x4003625494b85891, 0xc0098c5d4b28d247, + 0x400c1d522008c87c, 0xbff7dd5bafbde314, + 0xbff11e83df264c27, 0x3ff745bf6a320c0c, + 0xc002259ab3dbb5ee, 0xc000a4bfa7f13ad4, + 0xbfdc5fd54fe2a788, 0xc002e2b0780b43b0, + 0x3fec2d982e3c29bc, 0xc008491e36ee9769, + 0xc014a6ba6697e287, 0xbff44f6b6085a8ba, + 0xbfe5e137acdda462, 0xc00579966197700c, + 0xc00afc0981fffea8, 0xc0117989615baa2e, + 0xc00fa8f0fd6914e9, 0x400c7350f1534ac8, + 0x4013144613bd130e, 0x40044f73e1277a58, + 0x3ff1339964cb6efb, 0x3fd48b6fb13142ee, + 0x3fe83437fc29cade, 0xbfd77cadd6cfea94, + 0xbfd9ec37d8cae060, 0x40043f3f3c192f2b, + 0xbfb00b10cbd0dcc0, 0x3ff1854f8e97ccc5, + 0xbfc129a2648004b8, 0xbfd88d06956f5e28, + 0xbfe6469edbfb3084, 0x3fe8a74bb3f00e70, + 0xbfe659278e2e0b28, 0x400a92dbdc237a54, + 0x3fe6102868dfd1c5, 0xbff34b899f2d4514, + 0xc00308c58a55a3de, 0x401563001894db7a, + 0x400c6c4357240428, 0x400387d49255f5a2, + 0xbfe374a183d59a43, 0x4006d15585d128eb, + 0xc008a8cf5bfaba2d, 0x4003482f50677e96, + 0xc00531fe3fa43e82, 0x3ff6a389a7a02b98, + 0x4001d4aab36d53ae, 0xc01169dcb5c0310f, + 0xc00523d737e4620c, 0x40110833eb79bad0, + 0xc00bdc62dc84179c, 0xbffde044f7162cb6, + 0xbffa8675339ff7fb, 0xc005e07d2b8b2370, + 0x3fdcb9e820ca0330, 0x3fdbe3b3af209755, + 0x3fd98981cf7fdc0c, 0xbf8702c4599a9f60, + 0xbfb143c41443315a, 0xc01118087a49d4ad, + 0x400670f3dfeb08e5, 0xbff933e9503107eb, + 0x400751d958e301fa, 0xbff5a2f4fa2c1465, + 0xbffd2d118a30417e, 0x40086508303ca46f, + 0x400600f05218914a, 0x3fe19a1fdbce5888, + 0x3fbde463809fe658, 0xbfe25d7793705439, + 0x3ff61c9cc1d11774, 0xbfe7d064a927c91a, + 0x3fef5e20e84b301f, 0xc00e0538d8e43cc8, + 0x400d7f211cbc4cba, 0x3fbc9d27613cd746, + 0xbffa56d2e59e38fe, 0x3ff7367f4ceda442, + 0xbff3500f3de10ceb, 0xc004802d92079a54, + 0x3fe3eaf291351834, 0xbfd496262010cf9f, + 0x400cb410b7e66b09, 0x3fcb6a4804e40464, + 0x3ffdf89b172f0152, 0x4001d9f8e2c89962, + 0x400eafd90f0b272c, 0xbff25d1cece9fc70, + 0xbfd5963115cb3548, 0xbff4447691f4e7e6, + 0xbfc261cc1d161e40, 0xbfe0950408e26114, + 0xc00fe9b18e151e5a, 0x3fe9346a810f550e, + 0xbfc11baac1d41a9c, 0x4006657989076338, + 0xbfb32e34b53ac620, 0x40005408aeccfcee, + 0x400b9885edb9b041, 0xbfea3822a7ad822b, + 0xbff29256518b0c76, 0xc00913d108b88c76, + 0x3ff0c46e3662e9eb, 0xc0043de481250170, + 0xc0021ee5b85064de, 0x3fd534c69c34796c, + 0x3fd2ea75f1d84a7d, 0x400374168909c468, + 0x4003dcd5ab6f9653, 0xc00ed4b835b2fc89, + 0xc0010187ad3aa7b2, 0xbffb0fa414ced048, + 0x3ff58395d27c712b, 0xc006b549d72c2bde, + 0x3fd502b0a43b07d5, 0xbff0e057ac044266, + 0x40123d762575a99e, 0x4011f9b261e959ce, + 0xc004d33a5f481304, 0xc00adcff342bad21, + 0x3ff70e65bdee4aea, 0x400efd2abd09802a, + 0x3feb21cce8969b75, 0xbfefb8c61af73866, + 0xbfe58276e5705ff4, 0x4009a09365448dd0, + 0xbff550a08a81315c, 0x3ffb3e53f4042ecb, + 0xbff0cfc3c33ccbd5, 0x4010a5ef8cb3a4b6, + 0xc00417c262f72579, 0xbfed14cf371a9e9c, + 0x3ff7d1bf43c7fa00, 0xbff59b5ef83d85ae, + 0xc001d3e98ddb1ae3, 0x3ffab95ecc57c968, + 0xc01a0936793f9e66, 0x3ffefc0f68265be0, + 0x3fcd80e7300dcb20, 0x400b533e8c6b4d9b, + 0xbfe5538c81384f4c, 0x3ff39655a379322c, + 0xbfff26459e1d4f10, 0x3ffdf44c8ce9e542, + 0x3fe4e12d6878a0b3, 0x400741914c778a07, + 0x4008fe106c07abce, 0xbfc276827c20e510, + 0xbfe3ad6caa276046, 0xbff394a8cb2107ff, + 0xbff8c0f0e5489f06, 0xc016c872b1a26b32, + 0x4002f7b904de5d59, 0xbfff9acad6fe632b, + 0xc007507c9712cef0, 0xbfca874d590ed41c, + 0xc00ca691007d618e, 0xbfa1683e9a14c85c, + 0xbff243afd818a1f2, 0xc003e9d5ed831f95, + 0xc011171537a86e14, 0xbff68df6849fabeb, + 0xbff8a4a21496d608, 0xc0016cc0b28bc971, + 0xbfd2146b8a02da20, 0xc0033ebdca0a448c, + 0x3feee6f7c705fc58, 0x3fefc6bcfeeebd79, + 0xbfe2e911adfc9271, 0x3ff40fded65956ab, + 0xbfee583db6cd317c, 0xc00a6d9e66c9b03e, + 0xbff39676ef578216, 0xbfe1461fd4149bf3, + 0xc0103202846078bd, 0x3fe39dfd815e64f8, + 0x3ff6a900026ae30d, 0xc00917a5cc05f36a, + 0xc009fe74b5d8abef, 0xbfeb666c145fbb08, + 0x3fce86719a7a4641, 0xbfe09722f37856fe, + 0xbfffee5eac70ead0, 0x3ff2f5a453028c0f, + 0xc0030de93906339c, 0xc0031abcd7d3da06, + 0xbfb51b9f834a7ac8, 0xc00d1a2fd738e085, + 0x3ff2074cc0b75e94, 0xbffab004caea7310, + 0xbfd7cc6b9fad5f02, 0x3fff6fc4fde3ad86, + 0x4011da18d0b5fcf1, 0xc007eb8b749fce46, + 0x4011082d85876b2b, 0xc01314e85ab30c7a, + 0x3ff9061704b3d73e, 0xbff850e808cfa605, + 0x3fe69cf70beab831, 0xbfdf44d450ed7e98, + 0xc00682dca352b651, 0xbfda0ff71133860a, + 0x3fb358aa20ff0b60, 0x3ff318c58f762fe7, + 0xc00e5b783795204a, 0xbff6e7c68fa4599a, + 0xbfd81d75e29c1fbb, 0x40048870a02984ce, + 0x40009def10099b84, 0x400bfda7f5987d25, + 0x3fc6361a2dee0b50, 0xbfe21f5d2df7eca8, + 0x400da94f413a3c7c, 0x3fe28816857a3ce5, + 0x40054bbe1f605bec, 0xbff3639cf751b780, + 0x40008252fb4f5a51, 0xbfd2860f76260e28, + 0x401262adeddb3ae6, 0xbfe461cf1963e89a, + 0x3fdae4d4cdacadb5, 0x3fd00e095302d430, + 0x3ffc27e1198bfa9f, 0xbfc1bf1cfe0e38c4, + 0x40019165361a30ec, 0xbfd350970049d3ec, + 0x3fdc05eb20218904, 0x3fd3d7226c11e18f, + 0xbffb063c44abd6bd, 0xbfc5fab2deac17ee, + 0xc0008bc948fa8c8c, 0xbfef26440743db6d, + 0xbff3dc52cc2da682, 0x3ff2152d9a408b5a, + 0xbfe6acec994b2910, 0xbfff9542df3fe9ee, + 0x3fe4d856c517efac, 0xbffbb0ec270801fd, + 0x400b67e102d91e58, 0xbfce826bd81e21aa, + 0xbfbf71214a21f708, 0xc00a2c74fde1060d, + 0xbff6d097a0f4c001, 0xbfd47c73824e60aa, + 0x3ffb0c6697250484, 0x400caee9e887aee1, + 0xbfdc51a6386c0489, 0x40081803d2ebea84, + 0xc000c53ea3c4aeee, 0x4012d389bb96b63a, + 0x3fbf1cffd32f84c0, 0x40013ecdedf0ec86, + 0xbfef68a5180f81ca, 0xbff9aef1b9ae3e14, + 0x3fece99c0ed66ab7, 0xbff4727fcb6c723e, + 0xc0064f230b7fadc7, 0x40115d46a01d1d1b, + 0xbfdf9af9025b93c4, 0xbfc6acdade5eb527, + 0xbfd250321f9550bd, 0xbfe7cf0849df8d10, + 0xbfeaf1d751433864, 0x400293c579c9948e, + 0xbfe0c6ed6d26f95d, 0x3fe68e39a51a351a, + 0x3fe0b75863c7fd07, 0xbfcbe82d32f7b160, + 0xbff968f9fe49a27d, 0xbfea7bc4cd6b7ee0, + 0x3ffe642934201845, 0xbffefff65090975c, + 0xbff7cd4bec9ea8e6, 0x400ec1b5fa92f6e0, + 0x3ff2adbd350c02fb, 0x3fe125900a8a2eb2, + 0xc015fd0d531533c6, 0xbfd1f8d40f759440, + 0xbff78771440f70ba, 0x3ff6886d673b876a, + 0x3fdaaa1bd8f2d9c4, 0x3fe317cd609d2236, + 0x3fef5183538f2ad2, 0x3fdfc661ffa5c86a, + 0xc00bb4213cb2aa64, 0xc0057cb660f74d2b, + 0x401181e64d32aa73, 0x3ff93c7312e5652a, + 0xc00c8333f4cddd6e, 0x3fd40db30a9ca24f, + 0xbfb5ac5c833a231c, 0x3fe37c4a151fd5ff, + 0xbfeaba8c4ec94720, 0x3fe30090ea9c47ac, + 0xbff5bc778b6bad18, 0x3fb0343d3dd92230, + 0x400e2c66fe4d9e8f, 0x3fbcc0819ec16da0, + 0xc01060e1c44b6019, 0xbfea3d6342dba2e0, + 0xbfe8b4091a09f53e, 0xc006ab1bed0e7e09, + 0xbfdb0cc3874c73b0, 0xbff8c586a8cc48e6, + 0xbffa2904f3674811, 0x3ff1b2840999ed87, + 0x40030e442dfb3168, 0x3ff9c00ac02b064a, + 0x3fe8f24b8ad04eae, 0xc00cb646811d7ab4, + 0xbfee5ab8803eedb8, 0xbfc64be77bacba20, + 0xbfd311766fe6d144, 0x4004eaab83edbbba, + 0x3fedca8b7e4b5bd1, 0x3fe6f2d1c9548775, + 0xbfded7ecdf1ee6f5, 0xbff74532ae241b37, + 0x40040550cbdb6f8b, 0x3ff07168cefb432c, + 0xbfefd9ecf25ccb9c, 0x3fe2bf79f177087e, + 0xbfe947990d0c3380, 0xbfde70558c87326e, + 0xbffa2026f3be168a, 0x4001574ce77f8665, + 0x3fc917d341baa428, 0x3fe795c803953934, + 0x3ffc882fef25af36, 0x400123657217b7ce, + 0xbfe260f0df227469, 0xc010d5cb56d18c16, + 0xc0060b813742d34c, 0x4002a7204cb355ca, + 0x3fface88e040c1e4, 0x3fc0ae716fc79300, + 0xbff12fb604398e2b, 0x3fe2d4364ba70b07, + 0x400349717fe87d1e, 0xbfec210c550dfaf6, + 0x40016237af12db63, 0x4007fa7d7f3dd779, + 0x3feaf8fc0be582e2, 0x3fe6e48bb7714c36, + 0xbfeeb12048b9ea16, 0xc002bf191021dce8, + 0xbfe6e5abf386038c, 0xc003f6d17c0cf104, + 0x4004c5cda57c2f08, 0x3ffb2c9059b92476, + 0xbfd86edc5dbc35ae, 0x3ffaa1b6504535b3, + 0xbfdf8564837957bc, 0xc0031c0074679830, + 0xbff2747a7f961b8a, 0xbfd997af02d89380, + 0x40054ac1dd6c465a, 0x3fe2fb4c25538c3c, + 0x3ff32637441e7196, 0x400a131ceb77e34a, + 0x3fd2946d24f8e5ea, 0xbfb07c28ccaa38d0, + 0x400acbfdf015c2c4, 0x3ff59afe89a332e7, + 0x3febc5d5815ee6b7, 0x3fd5e4376cd6e1b1, + 0x3fee4b372034bc5f, 0x3ff845d2489f6cd4, + 0xc009dbd35f4b6e10, 0x40018c766be035a6, + 0xbfebabc24ec613cc, 0xbfdd692adff8b0ca, + 0xbfd376958783c050, 0xbfdf21ab654f184c, + 0xc00a1779ca7a784c, 0xbfe97f8a480b806b, + 0x3ffb651a24aee7c1, 0xbfe632d918bd75ae, + 0x3fbdc88956d5cbe0, 0xbfe9544683056c29, + 0x3fcdcdd293722c00, 0x3ff9dec168428182, + 0x3ff3e2668f188f02, 0x3fe17cdb36391976, + 0xbfe41f2bcfc974de, 0xc0061be40e90e898, + 0x400ce79058d8753a, 0x3fead7e828b89db2, + 0x400a49089605c3ec, 0x3f894e998a0b29a0, + 0x3fd61e47885c224f, 0xc0001df08db90250, + 0x3fd1678da0819153, 0x4001158cc88c1c26, + 0x3ff9862231fa10f6, 0x400512a45624747c, + 0x40000b4c451f81af, 0x400cfe56683a55fe, + 0xc00328bf58800cc0, 0x3fc44b75508876d4, + 0x3fe8e12b767bf846, 0xc004b50b0ca74570, + 0xbfef021a3d238a11, 0xbfda6c473b37681e, + 0xbfe7f8192c1734d4, 0xc00b1e8795c2b39a, + 0xbff202cc35ddd95c, 0xc010eab0301fe51c, + 0x3ff8b3e0fbb3402e, 0x3fea64d96e84e0cf, + 0x40006d26aa5152de, 0x3ff9f27b40e4562c, + 0x3fead5bae46e6d89, 0x3fdda64d05ec16e2, + 0xbfffb691a1546dc8, 0x3fce70ae5eba5740, + 0x40103be2f1ab432d, 0x3ffeb1cba91ae1b4, + 0x3fe4e429b2304cb8, 0x3ffd815fc946195e, + 0x3fdbc43c3a613d22, 0x3ff919ab8e2f75ba, + 0xbff05ce4e93e09b3, 0x4006106340cbfe31, + 0xbff990b8393fb212, 0xbff2c64dc37e3bce, + 0x4005c3988a2d7b25, 0xbfe29963a1e13b24, + 0xbff39fe61549bc4a, 0xc00255ed141952ab, + 0xbfc3533277b76968, 0x3fca9f0751c22168, + 0x3fe166a003fdb07a, 0x3ffb2bb883783180, + 0xbff1765fecd58cb2, 0xbfecd950adec0aaa, + 0xbff1796ac9fd28e3, 0xc00c66587924f43e, + 0xc009da5adae018a2, 0x3ffe285c18cb707b, + 0xbfd688daf05f29e0, 0x3fae0b8135289b60, + 0xbffb58a42c390c80, 0x3fbda521f733c380, + 0x40039f3d770621f4, 0xc008d744bb8b4fea, + 0xc0067180e6bf4b15, 0xbfe642e2584cbb69, + 0xc005de68da691e86, 0x3fe892fbc538a5f4, + 0x40110c75d78f8532, 0xbffa80d9016c83c5, + 0xc007944659ed5193, 0x3fed18e522bff161, + 0xc00d66999b09ced2, 0xbfac30c5e845c9c8, + 0xbff64ecd32e70824, 0x3fef186eacd43f5f, + 0x3ff393abbb497073, 0xbfe381cd7522eee6, + 0xbfcc0e0573c5e644, 0xc00cdde5834fd6e5, + 0xc00bea7af0a643cb, 0xbfe4a7ac250b956c, + 0xbffc6b3cf28a8904, 0xbff1ae1fe8f5ff5f, + 0xc01295a4525a1e39, 0x3ff4bd3663c8939b, + 0x3fd0bc4459e7eaba, 0x4004c5d70a81b88b, + 0xbffc89cd936f553f, 0xbfdbece0129c3d45, + 0xc014730d9d13813c, 0x3fd60e9520ecb691, + 0x3ff94d818e281f76, 0xbfd8dc941ffd92da, + 0x40143716fb00a61d, 0x400eb16ddc2ba212, + 0x3ffdbf5d5a26e784, 0x3fe1cb7d9f026045, + 0xbff0224af2e35ce6, 0x40075fc6e7f635c5, + 0xbfe0d488edc4a182, 0xc003e8b75e18104b, + 0x3ff3f20848e6b9a7, 0x4010fcb7f9fe3521, + 0x4007fdd456b9bd40, 0xbfddc2be13c39a40, + 0x400aef9c3a55acdb, 0x400d5825b4d9c8d2, + 0xbfe89b31aac912bb, 0xbfd3146a826ea02f, + 0xc00aa1145ee1213f, 0x3ffaec1589a3893a, + 0xbff174d3efc47b75, 0xbff5864c161898fb, + 0xbff08f5077485c28, 0x3fb5108a0ac6f3fa, + 0x3ff8b7ccf106b36c, 0xc00468599360eccd, + 0x3fe600e335c96318, 0xbfaf8fcb64d6a4a6, + 0xc003be6188e9ba8c, 0x4016f5de9957310d, + 0xbfe939dc0fb16d1d, 0xbfd5bdcfc1fdb4f8, + 0xbfe992ed22174a0d, 0xc0055f6af23d3380, + 0xbffc2a338cd02e4a, 0x3fc765fb697d00cf, + 0x400c2e3c039b041e, 0xbff752fcd9194d0b, + 0x4011de0eddb61e74, 0x3ffdfd4c04ed8345, + 0x3ff95d4b07225498, 0xc00576af6feef700, + 0x3ff3b3d892c979fb, 0xbfd68f4d3810430a, + 0xbfe36080c9af7dd4, 0xbfe2c1e0a37a392a, + 0x400794f61d0329d8, 0xbffbe68b41fdb5f6, + 0xbfcf4c6f7386db0c, 0x3fbf5a725c7e54e8, + 0xbff0db70614f4475, 0xc0178b494fcf6697, + 0x40122773f7fe5ad4, 0xc00f6492de81ac3b, + 0xc00657bddb2963ec, 0xbfeb4eb74e7da412, + 0xbfd396a87a3a989e, 0xc01346188367fa1c, + 0x400770762a6cb851, 0x3fb0c2026c097775, + 0x3fe9c62780512be9, 0xc006165e3e4500e2, + 0xc018f62fe44a1a84, 0x3ff521008a40975a, + 0x3fe864a8cc8c2e26, 0x3fd69f1cae4a9afe, + 0xbff0bfd371da2536, 0xbfef2989ec71bd86, + 0x4008e077413cb05e, 0xbff79e21ef268bc1, + 0x40065940a4038e60, 0x3ff7d3caeb6e5366, + 0xbff792fa8aae0eaa, 0xbfbdbbc9ab4d1420, + 0xc001ce703d5a670b, 0xbfe0161db0103c26, + 0xbff7be3c8a5041d0, 0x4005836994008a4d, + 0x3feb30e646434cc4, 0x400c9534fc2460a6, + 0xbfab44afeeae8fa0, 0xc0076243882388a2, + 0x400ca2f715c98670, 0xbfd4b9253f59aa0e, + 0xbfed4e5b2e75ca56, 0xbff825e6f419da02, + 0x400338a644ccdf20, 0x400073197e4a4a71, + 0x3ffb14c7a1c88d6f, 0xc0126367716c19cd, + 0xbfccfcdc86f57628, 0x3fd81661295040ce, + 0xc0134528c8599ee6, 0x3fc973a9c65a7440, + 0xc00312663afd71b6, 0x3fda18dc0e230470, + 0x3fe50bfd0b7522aa, 0x4003a445423dac5a, + 0x3feb0571682f9a84, 0xc00757da22f98514, + 0xbfe0770dd849774e, 0xbfd548cca01d5d34, + 0xc002d6cf848e7884, 0x3fee4425d1e9e142, + 0xbffa9854c1ce7e72, 0xbff368d36b0b8447, + 0x40101aa4ea471d99, 0xc006efe5fd1bf59c, + 0x3fd296ada2537eca, 0x3fee66b48c9f63c0, + 0xbfdba169ad9df868, 0x40037d1f3a77f8c8, + 0x4000fe09ce23e597, 0xc013a471c102561a, + 0xbff27b02f694a4c6, 0x3f8987cc78544b80, + 0xbffc71b1af25fb6d, 0xbffbc3a1097f88e7, + 0xc01065692fa519e5, 0xbfe3546b8550320a, + 0xc0130519534d0a76, 0xc00348e752523f98, + 0xbffa4109155abb26, 0xbfeae9672a1b6cca, + 0xbfe275f9ae169340, 0xbfd02613fb1f11b0, + 0xc00eed9c552f2e3a, 0x4003b6ca5a6f4344, + 0x3ff89b7e2ac008ce, 0x4001f7fb682804ee, + 0xc007992270240da5, 0xbff6e56236b741b0, + 0xbfe86acd04e9a6a0, 0xbfe1f9bee158d9d6, + 0x4005db2b0765c945, 0x400d40902d3a1404, + 0xc00be4b3a08cc430, 0x3ff3eb3fe6ebfb95, + 0x3f8c0b4ba145c440, 0x3fdcfba461329048, + 0x4008c3ad134926e2, 0x3ffde0fb93c71861, + 0xc00cce20b85b87d4, 0xc01192f2c3754691, + 0x40162700a3d12695, 0xbff60a2e74c7c60a, + 0x3fe12924d4537704, 0xc00380b7318f5c31, + 0xc00185f15dd78276, 0x3fde662a088c6231, + 0xc0154e5da924e7fa, 0x40062404356205ff, + 0x3fe22a838f664315, 0xbfffd66fbdc8dd8c, + 0xc0012b9556aaea6d, 0xbff2149918b97c3a, + 0x40020cfd6dcbd6f3, 0xbf90924a2b1a80a0, + 0x3fffc002d0bc09f1, 0xc00cc16858413a8e, + 0x3ff8c0e96f82f67f, 0xbfd2d650903cc3b8, + 0xbfe594b2301cc9ca, 0x3fdb650982c18b0e, + 0x3fdf0ddfee22e09a, 0x3fe83b289f154ccc, + 0x4006bec9f33a2372, 0xbfec28deed885edd, + 0x400255bbf47e2f32, 0x4001a6f77cc758d9, + 0x4011a9ade1ba5c4c, 0x3ff1b285d592b9ce, + 0xbfd976d9461480f8, 0x40026a03e8a80a2b, + 0xbfeb9ae8a62c1628, 0xc0042ba497961030, + 0x400a1e1ec3fb749c, 0xc007b1dd8c1bd81c, + 0x3fdf69ec1cd6c7d0, 0xc00a60ea23f1d1f8, + 0xbfdbbaea80808221, 0xbfe3e2ef964511c4, + 0xbfffd545b31f8ff3, 0xbfd40ed2831d61b8, + 0x3fa9d62a60ed18e0, 0x3fcce44bbbc5b720, + 0x3fd6ecf412352b33, 0x40133a155e0d9f19, + 0xbfd96cda2908537f, 0xbff8222607222104, + 0x3fca9ed4136c1a9e, 0xbff67d3896109d9e, + 0xbfe3650e54cb9141, 0xbfe46df2e31572a4, + 0x3ff63851515d8f29, 0xbff5cd1f6df05f0a, + 0x3fded032a11a679a, 0x3fe8fec59187f65c, + 0x40079775d3648d08, 0xc00004e3c2508b11, + 0x3fbad3234960a970, 0xc005d38c728f842b, + 0x40024e4f6622802b, 0xbff6ed1e5b3099de, + 0x3ff9dcb438a88efb, 0x4001de3316da9ca1, + 0xbff4804023c5f4c3, 0xbfbb4ce8d70c42d8, + 0x40157932dfc636f7, 0x400aa513ec109136, + 0xbff895a6e054219a, 0x40116709b02028a6, + 0x3ff27cde0285a5bb, 0xc00529e7e475d0ec, + 0x3ff0cfd59a68636c, 0xbfd4de8f422cb7ec, + 0xbff5cdc86f729b6f, 0xbfe545280baf1d00, + 0xbfc5667b647c2cfc, 0x3fde70754b7166a4, + 0xbffd23213fc4cc2d, 0x3fdac6d84ebd4bdc, + 0xc00037dcdf23d1e4, 0x3fe3bdbbb35fa0d6, + 0x3ffda0c897f7478c, 0x3ffd9272765c1f60, + 0xc000ef6660a67f9d, 0x3fe41149d4a012cd, + 0x3fbbfa36d0311688, 0x3fd971fb45a128c8, + 0xbffc0e54301ca178, 0xbfc466e06b9c3b5c, + 0x40101dc4b6539838, 0x3f9a2fb9237c9300, + 0xbfff70ae7561dffd, 0x40062eaec04b0330, + 0xbff062493dbd4a16, 0xbfe9e2e9fc972274, + 0xbff0c2f1d1353a75, 0x3ff37ec0b9dad7aa, + 0xbff5f21df474d2fa, 0x3ff963c19ef3ac8e, + 0xbff0c9a299b59c4a, 0x40062ae98e15fe55, + 0x3fe6c05b7158db1b, 0x3fce2e349e1bafe0, + 0xbfdf73379ab392b7, 0xbfe8f8199800aef0, + 0xc006ea15cd7c3bf0, 0xc0044c0543335b94, + 0xc009426c3b113728, 0x40138acb2b4b5542, + 0xbfefae6422a04786, 0xbffd664aa5f8c0b8, + 0x401572578e0119fc, 0xc015c9fff1fd8970, + 0x3ff4c58c1ae450de, 0xc011e1c6c1c37fc4, + 0x40188c35030cf893, 0x3ff08e414ac09e54, + 0xc005f40fa0fe6cc2, 0x40005bc36b7af086, + 0xc000c2f0bb28b5e8, 0xbf9582c18b3ef5c0, + 0xbfe4dd5dbac740ba, 0x3fded8977494343e, + 0x401899c4d8373c91, 0x3fe3961b8e1d16d0, + 0xbfddcff18593942c, 0xbfd94f6cb49b16fe, + 0x3ff94c7f7d2fcafd, 0xbfeb5aa3ab954a96, + 0x400f305418009b86, 0x3fd87c9cb097dd10, + 0xbfff71c434a4be2a, 0xc00c16b8f324e7f4, + 0xbfef8f9581a1d64c, 0x3ffffe6a4bcaace2, + 0x3ff6104048660eb0, 0x3fe8e527cd1bd8e6, + 0x3ff9e55709eaaf68, 0xbfee70b67e728906, + 0xbfc2a4f596906770, 0x3ff31963f8bac1a6, + 0x3fea5eee414344ce, 0xbff75eec27c3e769, + 0x3ff04b650ea8ab78, 0xc00766e08480813c, + 0xbfd5923f52c5e1a0, 0xbff73e9632fff544, + 0xbffeb78cbc37540e, 0xbff0b58b608b7039, + 0xc002b104d6f1f166, 0xbff9ff9d188bf663, + 0xbfe77408f7675f9a, 0x3fbff7f1a2bea280, + 0xc00a1bbd55e8e11b, 0xbfe8d7ab61cfabb4, + 0xc00ac1d4e3224ff8, 0xbfd5c1b0434f2afc, + 0xbfe953b0c56429c8, 0xc007edf16bc5917a, + 0x40089b63b77d7d5a, 0xc00c330ebfbf6ef2, + 0x3ff5fa9526cf1ade, 0xc00d2f2ca3710ec1, + 0x4005bcd15383c505, 0xbfe8ce6839939b08, + 0xbff504d98bf45846, 0xc004db3635026a69, + 0x3fe8dddcb3f389e4, 0x3fe46eef980cb636, + 0x3fd4d57fde904bc8, 0x400aaf073819eeb4, + 0x3ff7d86f1dc11d36, 0xbffc6bd77237cc00, + 0xbff538e36fa9c460, 0xbfdfef0aecc8f5a4, + 0x3fef15f84f583862, 0x4004b676172d2e5e, + 0xc0030f71fe691ade, 0x3ff16a76dede27c2, + 0x3fc1c491c9a93ed8, 0xbffad158907647e6, + 0x40018f17f0695fd1, 0xc001c35f6113ff43, + 0xc007334301602e64, 0x3ff90303114f93e3, + 0x3ff3d9601e39b676, 0xbff43c276ed4b72f, + 0x4006ad3af2bf55ba, 0x400f4738520d62a0, + 0xbfd18becbc8b8141, 0x400bd85bc8bdfa30, + 0xc0085a530dbb342a, 0x3ff8263c97044fe3, + 0xbfcaa41e025c8147, 0xbff935c5d1f789c2, + 0x4006e6e0a9294118, 0xc01306b3ca27fdbc, + 0xbfe0852e56d9ca8c, 0xc013fd5231bf231c, + 0xbf701365e3a9ff00, 0xbff0ed3d181c1b5d, + 0x3ffebd205e3ede39, 0xc00b4c88e7e1496e, + 0xbfe3ada08108d8d5, 0xbfd1d8b44724fb58, + 0xbfec33c722e24e7a, 0x4018cd5fdf80254c, + 0x3fe8456d6bca762c, 0x3faef25dd6abee48, + 0x4003ee7e7e97388e, 0xbfc519b8a09a2b38, + 0x3feb59a0649c28a8, 0x3fdb3c83d3db4090, + 0xc00d3969d20037d6, 0x3fef60df3d9b101d, + 0x3fed3ed6bc33ba90, 0xc006502776cd6f1a, + 0xbffec8f7bb2ec4be, 0x40080176387b50da, + 0xbff8ff28179a395d, 0x3fe7240118eec8cf, + 0x3ff153120f4fda28, 0x3ff442f2f13f7a25, + 0xbff6c31e743cdbd3, 0xbfeabc6235182acc, + 0x40117083ead04c84, 0xbffed49a9fe024b4, + 0x3fb9f001f007aaa0, 0x3ff4f5269608c6c9, + 0x3fe228d02ae45fb6, 0xc0003ab6e975ae24, + 0x3fffbe6768e89f32, 0x3fb3e6a621a5ef24, + 0xc0002bbe0bb43b19, 0xbff1c8d7fab1af38, + 0x3ff25ea00584c1ca, 0x3fe0fde5825d296b, + 0xbfef81be269a22d6, 0x3fe3a8472037bcf8, + 0xbff4d65b7b025806, 0x3ff4275ea0bc0c96, + 0xbfc7ba1b2ff76ed8, 0x3fed1bdf195a8c66, + 0x40108f1a03d5209c, 0x3fefd89ed53d8b47, + 0xc0015572ca1d4832, 0x400f4f4e61018b7a, + 0x3fe312f576fab893, 0xbff9959614eada14, + 0x3fe5ac92051563b9, 0x3fe1357084922bca, + 0x4003a08e9f696243, 0xbffb1d377261ea5c, + 0x4012f4ffeb6217d7, 0xbff24c045a001f56, + 0x3fe3432e9d905360, 0xbfca49cc028e5752, + 0xbfeaf59d06fa2a96, 0xbff8a07afa0404b1, + 0x3fd169b86a0c69f4, 0x400416fefd2ad3dd, + 0x3ff60777268c6d94, 0x3fd110e38158ba60, + 0xbfe1d7af853bc0e1, 0xbfc76882e37a6bd4, + 0xbfd071c478fe311a, 0xc0097a55c791e321, + 0xbffeaec4f2f7f9a2, 0x3fd0613beb107233, + 0xbff69f93c4e1fbb3, 0xc005b04e73682edd, + 0xbfecb1ed9da4c226, 0x4000abc8c51fe8aa, + 0xc005909875bf73c0, 0x3ff2b26a6283c929, + 0x40059ebc14ba1868, 0xbfe35d99edacaa7c, + 0xbfed138b25919242, 0x3fb973aed37dbbd6, + 0x3fea0e75db2cd3fe, 0xbffbb2906367358a, + 0x3fdc7aac73254d82, 0xc00240451a5b6a78, + 0xc00062dd84f3401b, 0x3ff4e5a338a68676, + 0x3ff1a1716a748ef2, 0x3fde02d7d7003294, + 0xbfdc24e18e4f03a8, 0x3ffd362a263ddb46, + 0xc00339661c617b62, 0xbff2923e8704a202, + 0xbff1a487432613fe, 0xbfeeadef178a2e07, + 0x4010ad56cd22f257, 0x3fe39681ac301a6c, + 0xbff125e06289b1e0, 0xc0025b920d64908c, + 0xbfeeeffa85d6c96c, 0x4007077560cc3fb0, + 0x4000837389848d61, 0xc00af2c6ca2cfe60, + 0x400c5c963bbe3797, 0x3ff28006a47c98c8, + 0x3ff98f470018f443, 0x40065410aa6b23e6, + 0xc00519b3ede40072, 0x3ffa5fa8a14f26c3, + 0x3ff4bf8823901302, 0x3fd30f699d079434, + 0x3fc1f23480c62918, 0xbff01e3636e7ffe0, + 0xbff90052d1c06283, 0xbfe46dcb2a2c5adc, + 0xbfca5a6974fbd7c0, 0xbfe2b3877b40c8f0, + 0x4001997e96209ee2, 0x400257e0b9745459, + 0xbff5a1037edcedee, 0xbfde39459f4cd654, + 0x3ff7994bc75149a6, 0x3fd8c41e9e21e720, + 0x400408cbdc980eae, 0xbfe9e114f4aa08c0, + 0xc00373639f31a013, 0xbff605da39b6c366, + 0xbfd2b415851a9750, 0xbfdfbe233b6941ae, + 0x3ff42a014b20cde8, 0x3fcd6ee6a21de190, + 0x4002bb61c9118dc4, 0xc0008394a82a65ba, + 0x4007eb8adbe10fdc, 0x3ff692102643690b, + 0xbfe9da9628e4cf41, 0x3fed5453eecc5ff0, + 0xbfd485b348c7ae8f, 0x3fc4a22ecce8e530, + 0x3fbef9657b08e660, 0x3fedbb677ac8b5c5, + 0xbfd18d2a3d7ba870, 0xbfe5e2c0fa5ca85f, + 0xbfd36a15a732f84c, 0xc009c5071d8b44c9, + 0x3fd6b3120f4a4894, 0xbff4e0460732c133, + 0x4006fbc28cf0a958, 0xc00328e11f3adbe4, + 0x400a59800b66b31c, 0xc01b1f41b85aee63, + 0xc00915796aef6f51, 0xbffa7fbfa5aaf074, + 0xc00385192420e099, 0x3fe00d3a4717df32, + 0xbfd01910f15bd7f8, 0x400ee48871306946, + 0x3fdb1f780e6f252e, 0x3fe2ae58a1f3d1fa, + 0x3ff1b341d9be0284, 0x3fe3040b346875f8, + 0x3fc59d36eea855c8, 0xc013665b915476a7, + 0xbff7074d8ea0de2b, 0x3ffe6d781e5f60ca, + 0x4007f7ab927c0e02, 0x3ffccaf6801908c4, + 0xbfe39887c9c82f29, 0x3ff54f7bdff47b3d, + 0xbfff05faf80a9516, 0x3ff9f150a6e2c280, + 0xbff2fb7f44413632, 0x3ff59c7e716fbd84, + 0x3fb3be8e98466f28, 0xbfd277c76f0a6f46, + 0x3fdf4b61d53787f8, 0xbff6f887b8508858, + 0x3fe55223624acb40, 0x3fe979a8dd83cf75, + 0xc00064011024d7f6, 0xbfffee3654e221fa, + 0xc01175c4a66d4f66, 0x4000710291915ab7, + 0xc01078c3f03c2782, 0xc00b12fe3279603a, + 0xc00e3d81f9df73e1, 0x4005f76add030a9a, + 0x400e637e78b6bb1c, 0x3fdfa2caed1f9a7e, + 0x3ff42925712aa692, 0xc00683aefcdafb0d, + 0x3fd324713b0d8f78, 0x3fcb5c222bd42578, + 0x40136c3973119be1, 0x401061e424a970c4, + 0xc00e923f0fc18096, 0xbff1c0dd464448f8, + 0x400393dc9123655f, 0x3ffc5d563cd0028d, + 0x40028e9a8f1093b5, 0x3ff5e53764371585, + 0x400121fce021755a, 0xbfed7504921205f3, + 0xbff7562da5ab92a0, 0x400a6e20d8634598, + 0x3ffe7bfc88801eee, 0x3fe49b1d317a4849, + 0x4005463c5df413da, 0xbfcfc69160be2df0, + 0x3ff21ede8863ec94, 0xc0088e55b6a7c9ab, + 0xc005bd17eb2bbcde, 0x40110d56ede632b8, + 0x3ffed60d32599384, 0xbfb016b489eac3c0, + 0xbff63f645d046bd9, 0x3ffe8ae10c1e3f0b, + 0xbffec1e51337e7e6, 0xc00440af36d741dc, + 0x40019e270aca6522, 0x400b131ee0dacf42, + 0xc004106356af7a00, 0xbffd1d58d13c7011, + 0x400cd9cc43b22274, 0x3ff312a90e6ec80f, + 0xbfd1f9791550762c, 0x3fe7419d872c8df0, + 0x3fd82c8b3268a898, 0x3fc386deaba2ff28, + 0xbfed34299c2687d2, 0x4003f78b10a8b064, + 0xbff2025027e424b6, 0xbff7b00d0cca005d, + 0x3ff7e418ce64436e, 0xc00ebe86992aa676, + 0xbfe76d6cbbc58267, 0x3ff69fc1f5a7c093, + 0xbffc4138758a75d3, 0xc011c99e3766ed3e, + 0xc0098de5cdaec202, 0x3ff42e5f53047e60, + 0xc0111f95a25ae1c2, 0x3ff67c04a628d4da, + 0x4009b8d3b353731c, 0x3ffe37163b2f90e8, + 0xc013fd3dc6f226a5, 0x4000d53fc7e1bd98, + 0xbff61bae351c9bb1, 0x3fe5dad1754511df, + 0xbfdf9824284ae89a, 0xc0124edeac3fb0c7, + 0xc005b124424c5777, 0x3ff9bde88d86c561, + 0x40002e564a570422, 0xc00c966d43cdf2d0, + 0x3fd9f469c0066bf4, 0xc010b857d374fd3d, + 0xbfdf623b1a099902, 0x3ff691ae934a399c, + 0x3feecb30c10076fa, 0xbfe6389673d33f29, + 0xbff6154af25f7a69, 0xbfeaf3d28ae90d31, + 0x3ffa1403eff03920, 0xbff0b99d50d9a736, + 0xc010498562ef4462, 0x3fed538b9314cbcc, + 0xbffa1015d3ba21e7, 0xc016162a608bca6d, + 0xbff87c148a36a2a6, 0xc00245cf3ceb6a95, + 0x4017f6916d074ab6, 0xc007a11cea35de0c, + 0x4012215a791da537, 0xbfe32e6c4bb9d65d, + 0x3fdfdab130432db4, 0x3fe68971cdceefe7, + 0xbffaae6df719f121, 0x3fcb5a5e30fa593c, + 0x40144f446b2b003e, 0x3fc39912daa0f310, + 0x4003d3540636c49d, 0x3febe1efd15c48c6, + 0xbfe69140269c82a6, 0xc00151bf49d6eb3b, + 0xbffd613dac38c7d3, 0x3ff4e01cf022892c, + 0x400c9ee42b084f29, 0x40107dc2e6ed0c9c, + 0x4002278b6281252a, 0x3fe2e14882110572, + 0x3ff3256637c08ce0, 0x4006a6ce0f82c460, + 0xc006d501a8497e5c, 0xc01c0c609cd512c3, + 0x3fe0f5cf8d276928, 0x3fe3a73ef049d146, + 0xbff28475f51d2f3c, 0xbfde6ded916722ad, + 0xbffd9546ace98fd4, 0x3feedb1c72d39bcf, + 0xc001917f5bd88321, 0xc01285002311d2b6, + 0xc00c716354ec9a05, 0x3fd786dc7c3f1234, + 0x3fd47e9e22ddfa1b, 0x40002e6d3ca0651c, + 0x400a9ae95d8b4ffe, 0x3fc55faf8bb27382, + 0xc00aa5147880e8b4, 0x4011bd4fc9ed4052, + 0x3ff58843c26351b1, 0xbfe8518d77eadd68, + 0x3ff1609154f78407, 0xbff6913b5f54f860, + 0xbfd2c4a96397dec8, 0x3ff959c37ea05e15, + 0xbffa38592f55d17a, 0x4003dadc182b617e, + 0x3fe8bcd13559a59c, 0x3feea3532695d38c, + 0x3ff4c9466fec853e, 0xbfe2d396950b732c, + 0xbff8860d470190c2, 0x40011e573374d0da, + 0xbff2990972e795e2, 0x3fd036be1bd200ac, + 0xbfd7cd008031be38, 0x3fd9712fc101ba57, + 0xc006d46756131aa8, 0x3ff43415d16fcbac, + 0xc0041b317c194862, 0xbfeb91457df540ee, + 0x3fd33a777ec32816, 0x3ff7553babcebcb5, + 0x40000a0fed1a2252, 0xbff816ad1a837ac4, + 0x401298eafa175606, 0xbfe8b473e24a467e, + 0x3fb9261ab5b09bc8, 0xbfc7660d6994413a, + 0x401118d3e5847ce4, 0xc0090c430f3a372e, + 0x3ff5f07b6d312c75, 0x3febde4fdab7e538, + 0x3ff0b273f8396427, 0xbffbd64bb2241d8a, + 0x40070caa0edb31d0, 0xbff5e816f8cfd0a8, + 0x3fc2499d1877575c, 0xbff5693724b5d569, + 0x3ffd6f7dc5ac312e, 0x4008fa83ffbcb500, + 0x4007c20b510456b9, 0x3fe0e5c9f2ebe841, + 0xc0037c020efb4a5b, 0xbffebb9ea85ae9dd, + 0xc00026c3e2c92a2d, 0xc006dc84929cbcfc, + 0xbfd024c6c3005cf8, 0xbf9ac5474b270700, + 0xbfea58f6396bcfe4, 0x400ad9fa7dbd2e8c, + 0xc0062f6b219a19f6, 0xc005481d21d8e46c, + 0xbff0671192284212, 0xbfc267273b5b249a, + 0x40014b89780d1630, 0x3ffbe5290da40ab5, + 0x400a388dc52a9f8d, 0x3ff42e53a5050910, + 0x3ff8cd988748ce8d, 0xbfe0cc9e3af81c8c, + 0x3fe2c423275438de, 0x3fac3b6b91c80420, + 0x3ff71ae398917144, 0xbff32f02347e0eac, + 0xbfec987646c8fb1f, 0x3ffc942fd8312e5c, + 0xbfea123ea597b682, 0xbff4499025ba4724, + 0xc009c057aac36d9b, 0x400882f227f06714, + 0xbfcdbe8b81f9b504, 0xbff9898509e6d35c, + 0x3fcf8fd4c15feea8, 0x3fe58e709bdb5f60, + 0xbfd6e1366b925838, 0xbfd3d99286ce2880, + 0x3ff46d06390e1231, 0xbfc4a27ed0369fd0, + 0xc004664a40157c64, 0xc018ca7b2096fffc, + 0x40063577219fc2bd, 0xbfe1342164dc3472, + 0xbff5e5bfd8052552, 0x3fe91ec8911f980c, + 0x3ff237d9d1078d66, 0x3fa4089d0b78fa00, + 0xbff815c1e08920c0, 0xbff7869752c82160, + 0x400da2d979639b32, 0x40038bc40e9e85e6, + 0xbfc7cb1a314f6970, 0xbffac1a8bd95794c, + 0xbfea304dc4e4053e, 0x3ff272a5184762df, + 0xc010a627c39e7b24, 0x400901a1ad440416, + 0x3ff25e8a8ba5fa2e, 0x3fdba83df9396868, + 0x3fe8a9ee51ca2c7a, 0xbfe31248f03da32a, + 0xc01693a905b0e395, 0x400212732977259a, + 0xbfb9607c920d5ac8, 0x3fb066e990661c00, + 0x3fc49dfa77141584, 0xc001eb8e5de7aaa4, + 0x3fee69ac37dd590a, 0x3ff540f69656c606, + 0x3ffb816d17ca302f, 0x4003c0cac3179d4c, + 0xbffa6c618e90df32, 0x3ff3723fcfd5c8c2, + 0xc01034d1a05cb02e, 0xbfd57f2e7a0d7e8a, + 0xc00d8df153a4cac2, 0xbfd4b75bde076b90, + 0x3ff9357f9e56e2ce, 0xbfd6760d35899208, + 0x40031288a7b3c35b, 0xc005fef479bbc106, + 0x400611225a14d1b8, 0x4003b1e63b978642, + 0xc0059114308f1c12, 0x3ff9b4b8ea433e4d, + 0x3ffb37f57e2ab6b4, 0x3fd53a9c88cd6da0, + 0x401a69dc173804b7, 0xc0000f1458a7b626, + 0x4009479786511876, 0x400cd963043d0875, + 0x3ff264a2637b43c2, 0x3fd09abaf330aca0, + 0x40123bc50f383b70, 0x3ff33c98fa23442f, + 0xc008a7998d514fb2, 0x40051f84c29d70ea, + 0xbfcc577fcffbdfd0, 0x4002cabe3a346654, + 0xbfe055e391e4d7c8, 0xc001130241dbdeb2, + 0xc011b48e4e3a3941, 0xbfd0660710be5cf4, + 0x40129cc12392126b, 0x40139511fc0c542e, + 0xbff2f34bc7bd3764, 0xbff262c269f81462, + 0x3feba3f01a663be4, 0xc006e195bf613e5b, + 0xbfe129a16799aa03, 0x400625f546868922, + 0x3ff82178b8e7f2d2, 0x3fe465b26e2bf87a, + 0x3fd596009384416e, 0x3ff734708a14c47e, + 0x3ff0e40b0ecbce61, 0x3ffeaa4d179203e5, + 0x3ffa9ded8044b87c, 0xbfe22c7182e5009c, + 0x3ff08827267e7d92, 0x3fef06740346dc4e, + 0x400eacccf8980afc, 0xbfc2418e6750d37c, + 0xc0070c5df10af412, 0xbfd2e6d71eddcbae, + 0xc0061da214ac5888, 0xc012027413c82d98, + 0x4019231ed2fc713d, 0xbff5148296d483fe, + 0x3ff052d8d9817612, 0x3ff1f448e2ca15c0, + 0x3fed08c2cf7eb780, 0xbff7e2c71ab7e886, + 0x400510d1a5dfd1e1, 0xbfe753aca6d69959, + 0xbfb1e14ae915d058, 0x400547c7c3dc301c, + 0x3ff93371365b2d06, 0xc00575309f19e417, + 0xbff5bb7d88a445dd, 0xbfced7aed8cdc403, + 0x3ff447c72bd077ac, 0x3fea4d671abf765e, + 0x4005414c074301ae, 0x3fec0f603a94d309, + 0xbff06764630b7294, 0x3fafbba36d7b4570, + 0x3fe28de89ad6c9f4, 0xc000feb1261220d1, + 0x400e553d7f3f91c8, 0x4000c3469ff8d73e, + 0xbff4523da2d4c9f0, 0xc000b36d4042cf39, + 0x3ff22fd5c204f206, 0x40042aa636d865d2, + 0xbfbe247387a57888, 0x3fc40c0d766ebac0, + 0x4004593b1995f982, 0x3fd7225f38993bd9, + 0x4001bae9583e7d22, 0x3ff19d4cb434a4a2, + 0x40075d3d91768e55, 0xc00318550fdd9744, + 0x3ff4bea9f8f13b83, 0xbff5a371cd96b32b, + 0xbfeff0defc2921c9, 0x40001659d6cd68a0, + 0xbffee1cb749d237e, 0xc005aec1e1cd840c, + 0x3feb3a7643cf10dc, 0x40048039d2220008, + 0x3ff9606ba45c09b2, 0x4012836d772febf8, + 0xbff3e4f8b9ce1a82, 0x4016878d200a350e, + 0xc000110e1fd4e6b1, 0x3ff68d969e259860, + 0xbfc0f6ee7ff844c8, 0xbfe0faa264458110, + 0xbff869ed50b54b18, 0xbfcc2a3f21dc0740, + 0xc008aab299cb852c, 0xc0049131fa0cef58, + 0x4009f9752bdb4d0a, 0x3ff08a271e962292, + 0x3feceacb574c0306, 0xbff26666155dc432, + 0x3ffaa8bef32be926, 0x3f95f7efe390a000, + 0xc00be9c757c7bb52, 0xbffea2d52c69c02c, + 0xc00294cba63c708c, 0x40083ca83a7a3a2c, + 0x3fe2c0c39b7863ae, 0x3fe064019990b9a9, + 0x400f14dd3dca7cb2, 0x3fb8dfe0c779f610, + 0x3ff2842376f76ec7, 0x401183e3b0a00051, + 0x3fe1b5ab51553b7c, 0xbff5e360f72a07ac, + 0x4004c2b5a1521a02, 0xbff3bd302fab9b12, + 0xc00ab90e421f5e62, 0xbfe9cdcf63072992, + 0xbff858c5710d1f11, 0xbff7618f2ae5a6f8, + 0x40047ff188a56895, 0x3fd1820e386637c8, + 0x4006c94fd620c5fc, 0xc005f942e16abc48, + 0x400b6b23ebc00af4, 0x3fc047735de75a18, + 0xc004df0b0577b47d, 0x3f48fb87c0f77000, + 0xbfe574e1f2d9774b, 0x400b6b2000e88ba4, + 0xbff92fd6e358cd00, 0xbfd98059b1f10912, + 0x3ffb03eae1b53f0f, 0x4010cb03425cd080, + 0x3fcae9aac1a26b94, 0x400a4f053b83c7da, + 0xbfec0899a2410522, 0xc0037d71aec18bad, + 0xbfc352ffded7bfe0, 0x3fe7b9a1d300a3ba, + 0x4002ce9cf6cfd8e2, 0xbfdf1fbca2987983, + 0xc00bc8f341a244c9, 0xbfe058c3db166394, + 0x3feda66d1eb4a8fd, 0x3fec7183be35ed5c, + 0x3fd5315149984ac1, 0xc01554e13d261639, + 0x3fe72afcc0070b87, 0x3fe0a1bd515276d8, + 0x400280ef3f6a9e90, 0xbffc78f8c4ba1b36, + 0x40020d05e4705830, 0x3ff92fcd5d844ec6, + 0x3ffabef6c6342d72, 0x3fc0bff2169b3068, + 0xc012982e68e88282, 0xc00d0f75d3d333ca, + 0x400b348d8c7fe4f2, 0xbfd93c452e6b63c4, + 0x3ff15d20b3fe706d, 0x3fe819aff4369757, + 0xc011c5ff31a9a1d1, 0x3fc9b119adc970b4, + 0x4001bba9541b5327, 0x3ff563f86f6d90b4, + 0xc00f5d568cf703ed, 0x3ff08162c76441ff, + 0xc00126e2554f512c, 0xbfbd3dda63f8c960, + 0xc001a39fb734224f, 0x3fd035d0b9d4b4c0, + 0x400791a1bbb53dd2, 0x4004c72acfc6904a, + 0x3ff255ad58e56fa6, 0xbfe811ed7d516ea8, + 0xbfd7d2a3b65b884c, 0x40002dc9e2f9227c, + 0x3fdc210029f8df68, 0x40036fc159a69fe0, + 0xbfdc61af489c6de9, 0x3ffc33dc02ad35f4, + 0xbfd366555c27858c, 0xbfe1bab240ab40ec, + 0xbffb934501bf09cd, 0xbfd116142dc03a74, + 0xc00e0441d4879f2e, 0xbfb46ef496472870, + 0xbffcac84c313d320, 0xc000ce9f6f79eaa0, + 0x4006cd9f013aa8e2, 0xbfec7d4613c2f2ee, + 0xbffc934ed3bab518, 0x3fc4958109a28d48, + 0xbfe6729781524f14, 0xbfe52a1380aecbad, + 0xbfd9d70776b4a0ea, 0x401383fbd0f7467d, + 0x3fd623aead1eae4a, 0xbfecfe3ab93e37fa, + 0xbfd8ef81b35bfe25, 0x3ff9ca9aa81e0b4a, + 0x3ffbeb92683fd8ae, 0x3ff4291e12f241e0, + 0x4010b7f9de7d9506, 0xbfdf4c35ec8bac04, + 0xbff826a51d67111e, 0x3fe91756f2530410, + 0x4015e927b3f0ba87, 0xbff677f630d4dbe5, + 0x3ff0c5f505e76718, 0xc0076b64284168a8, + 0x3ff20d06c3896228, 0x40021b26bbd67eac, + 0xbfe46ba8901057b0, 0xbff34e3b9341aef5, + 0x4000388ce014e178, 0xbfd90c0a7e92412c, + 0x4011427a8dfe949b, 0x4003f022b7351e8f, + 0xc0009b01f57b2708, 0x3fe95f01df64c11c, + 0xbfc21e88ae7e7500, 0xc0126e0ecbfa0dde, + 0x3ffe3e6c7a7793d6, 0xc006b922fbe6f357, + 0x4006a8c9a484de37, 0x3ff02fe730d4a195, + 0x400bf61bfb46a70a, 0x400818f1cdf0929e, + 0xbff93bf12bc9e45e, 0x3ff93605e867594e, + 0x3fd8809700cced94, 0xbffdc95bb46e9b3e, + 0xbff9582fa97896a2, 0xc0125ad1a78feeb6, + 0xc009c723eaa0e11d, 0xbffb62a5050ed19c, + 0xc0102062556f58e7, 0xc0157b758a983552, + 0x3fa679e8155ce980, 0xc00cfa1180bfad6a, + 0xc00484b5e4f413f9, 0x40034b94b14bf7cc, + 0x3fcd57646051c0e0, 0xbfe414e275ecfa20, + 0x4011b5bb61c6b4c4, 0x3fff3b1be79523a1, + 0xbfcc476f38077b30, 0xbfe097d305a20b36, + 0xbfdef32a9034c20a, 0x4004006482be7012, + 0x3fddb095f4af4082, 0xbfd0e9c1a960b729, + 0xc00dbbe77daf8773, 0xc0031456dc26383c, + 0xc00b5dfff09c39ac, 0x3fe43dd5ce56f6c4, + 0x40035ec2788831e8, 0xc002819f10ce2c4d, + 0xc008b6df398bf7dc, 0x3ff5996e397a0b8b, + 0x4010817a9f2b2b7c, 0x40156ff654e7f370, + 0xbfbea79394ca839c, 0x3fe87c2a16f0e1da, + 0x4013cc000f0b1d89, 0xbfeca985a6a30fec, + 0x400822101fde8103, 0xbff74e0596f72d35, + 0x4003499688667ca9, 0xc00368870235660c, + 0x3fda8cd3d565b070, 0xbff03d0a999f91b0, + 0xc013e8556a5ee6f9, 0xbfecc4b6e72b660a, + 0x3ff72893461d449e, 0xbfdf2cf08345c6a4, + 0x3ff800220c054ec8, 0x3fe94093bb8e215c, + 0xbff678fa9746f1e6, 0x4000166c3489e6f1, + 0x3fc709755dde54c8, 0x3fe36ccedba0e59f, + 0xbff035b7f8ea8395, 0xbffeca031c4d7031, + 0x3f8f459104f35100, 0x3fee77336aa21b7a, + 0x3fdf48b62da94ec0, 0xbfff36a16ad41bf7, + 0x3fe1dedc703e72fe, 0xbfe3fa8613710c1a, + 0xbff982c57c7e4a9e, 0xc008da1a7c8fcec1, + 0x4011fc33e6a6a2e6, 0xc0071960c5ab9ab0, + 0xbff0ac9f38235d0e, 0xc01834051d4ed687, + 0xbff2d73cff311536, 0x3feac7104a2ad216, + 0x3ff173501ac080f6, 0xc00639cda01dd088, + 0xc004cfcb0627f661, 0xbfd6398b090065a6, + 0xbff183662a798f7a, 0x3fed8680f250163a, + 0x3fe58a426a8a989e, 0x3fe5456bb52331ae, + 0xbff0f3fc27e0600f, 0xc001622dcba8f301, + 0xc000eef9a66515ba, 0x40052077f68ff53e, + 0x4007242ae9b25568, 0xc009b28528ca9e6f, + 0xbfdee94a6dadc1d0, 0xbf870db00cad4c00, + 0xc00719c60722bd46, 0x400e3287c6ffc3d6, + 0x3fe8bcfefe5aba58, 0xc0103706e77bc2cd, + 0xbfff8422722e67fc, 0xbfe2369c7b4c677b, + 0x400224b054eb3725, 0x3ffd92099aaf834b, + 0x4007b655d0aadf2c, 0xc000ed219fdc0a65, + 0x3ff400de55896315, 0xc002c65254dc51ae, + 0x3ff66c37815df49c, 0x3fff90916bc70990, + 0xc00e56bac7d69a10, 0xbfd4171b09c19c1a, + 0x400cdd1ede650d1a, 0xbfabebb026495b40, + 0xc00d8c390c002471, 0x4004aeff8f9fff7c, + 0x3ff08ec91b50efcf, 0xc0120dc1b740c890, + 0xbfe69442e598d79c, 0xc00486559e86a2a4, + 0xbff1ec83bdebbe43, 0xbff562f6e97c77bc, + 0x3fb144e095435b30, 0x400cf66e34e9295c, + 0x3ff6d1a30a02f074, 0xbffb1d167d37faa6, + 0x4000cbdcd4b12047, 0xbfdf62a85db39264, + 0xbfe342f67a0a0d0e, 0xbfd6207af8f1d608, + 0xbfd13c39d762aee6, 0xbfdf38f3d324e5ca, + 0x3fc40d54d3c4b470, 0xbfcc9b85c6cbdd90, + 0x3fea118833dcd14c, 0x3ff11e92c1f517d6, + 0xc0081a793cb7bca5, 0xbfc1591455b21bb4, + 0x3ff22ad7e401f432, 0xbfe8b75290be4a32, + 0xbfd0a20cd8ea2554, 0xbfe9d239d9a93e38, + 0xbfd82236d36fbe10, 0x3fe6232b72d00cde, + 0x3fc6a1818317df70, 0xc00273180e834c6e, + 0xbfe7363d51745ee8, 0x3fefa4647e66d852, + 0x3ff7dd4803c56316, 0x3ffbba64bcf774b8, + 0xbffb9d4c7d60ce1b, 0xc007589a4946fd62, + 0xbff608fc4c6406eb, 0x3fec0bb7435058fe, + 0x3ff083f049ef1c9a, 0x4008bd642fa23cb2, + 0xbf6fdf4032bbac00, 0x400c1ce1d0fdf05c, + 0xbffbc3ae8e7b7be8, 0x400b1cf5c807cfaa, + 0xbfe0cc4f2476d115, 0xbffd97bd4a2dfc60, + 0x3ff523d29395f27e, 0x40065d441f1be446, + 0xbffc3f45bf0748de, 0x40123e133682a37a, + 0xbfe2187218fa9329, 0xbffa55c2327a3084, + 0xbfeca086678a62fe, 0x3fe9c55c31a0ed59, + 0x400dfb69589916f3, 0x40000cd3817075fa, + 0x3ffad82f799ea148, 0x3fec3780b5999d92, + 0xc012166baddb16dc, 0x3ff85b2eb0308c72, + 0x3fe4854bbe26793a, 0xbfeed328817fe7ac, + 0x3ff22a743c9d1551, 0x400bb40c7c2b17db, + 0xc003d91e75a6d52b, 0x3ffe0678a886bcd3, + 0x4000b0f17c12f0ee, 0xbfe850db91876e67, + 0xbfef53f148ba6cda, 0x400558634d18dbbe, + 0xbfdbd0c044daf657, 0x3ff0786e33693df8, + 0xbffa6ab1565aa3ca, 0xc00432b8ba2952ac, + 0x4006f954c4048216, 0xc0165f118b3a78a8, + 0x3fe223059c6a0585, 0x4001787750c56f71, + 0xbfd7da7e875aefd4, 0xc00498f1863424e4, + 0x3ffb17e71052fae8, 0xbff0f8235e4656d2, + 0x400e68b4668cddb9, 0x3ffaea8cdca7edee, + 0xbff3f56d105089d2, 0x3fd6eb7a68356712, + 0x3fdef642c741f438, 0xc002a3b05e14cbe5, + 0xc012d6de173469d7, 0x3ff5ad5c4c85d462, + 0xc01a0c9f0290c1db, 0xbffcffc9562d6dce, + 0x3fda5e0645d13c53, 0x400f93b29e92a78b, + 0x3fec41c79f351f83, 0x3fe568fea588dd44, + 0x3ffb4d9e0e1455c7, 0x3fdaaf7136ab52a0, + 0xc002e7883a2b179c, 0xc0009af95ae4e4fd, + 0xc012455e2baddf71, 0x4002b0cab75ea766, + 0x3ff9904b5f41f1b3, 0x400ee8d1245b10bd, + 0xbff891a8735cdeef, 0xc00055b358a00bee, + 0x3f9280f634cace80, 0xc00cf40d96605081, + 0xc007e912d39e77da, 0xc0093f2c188bdc71, + 0xc0046f1f83f6a500, 0xc00a4ae019f1a79b, + 0xc012aa454bf6b2fe, 0xc00b5a15deda612f, + 0xc0012d091e9fa17b, 0x3ffc9b88c08d4938, + 0x4003009b8d0089b6, 0xbfed629938eba9fa, + 0xc00738a937551b0f, 0x3ff1bb3c5010e93d, + 0x4003d9ab8ddca7a3, 0xbff7bb146e227a70, + 0x400b7ab36ca7611c, 0x3fffb66531289157, + 0xbfd98cc5529993d2, 0x409666fc4e690dfc, + 0x400550afc0e1c366, 0x400573374f8098a8, + 0x3fe936c53999019a, 0x3ff254051b85d81b, + 0xbfd458326608f7c0, 0xbff4a26ae0e591fa, + 0x3ffd551af00e1877, 0xbffddc466964a790, + 0xbffda2e70d630f61, 0xbfffe94cd399bb6e, + 0x4008aa906d47492c, 0xc002257ffb637c85, + 0xc00d99efc725a34f, 0xbfe0438cc7b09246, + 0x400c5aaff1f80cee, 0x3ffadc25acd46e1f, + 0x3fea72727f83118c, 0xbfd07123d64db127, + 0x40101d431d07514f, 0x400cb78cbe096048, + 0x3fbcb9a4df218f50, 0xbfa5a653e63f3620, + 0xbff7929309a39fa8, 0xbff22c176ea42c8a, + 0xc005ba09292583ae, 0x4005712c1a5a8ff0, + 0xc00e7dd2c7e3f41b, 0x4006ee5df84ac04c, + 0xc007937ebb7bda5e, 0xbff17bcd912c4541, + 0x400c052d966802c8, 0xbffbaedf441fea2d, + 0x3ffd4470eaaae43e, 0xc002a1df25b75482, + 0xc0018f78c34b1714, 0x401495206b64d808, + 0x4009732cf5d0b000, 0x3feb35489a829977, + 0x3fd3f1c7fc46095e, 0x3feaccf9d0b2ea0e, + 0x3fc2ece985b5edc8, 0xbfd77d8178b6ea24, + 0xbffa3b14875b9370, 0x3ff871bb570c6e3e, + 0xc00bb3c8bb10e320, 0x4008e881bb90aeb4, + 0xbff448406fe92524, 0x40045df85b4fba1d, + 0x400cc5a3c3cd7972, 0xc00884cfe9a65037, + 0xbfabb9ec32f98870, 0x40056df5b3945be2, + 0xbff8d04c57cd09ce, 0xc00764dbbd9d4af3, + 0x4013260a439ae5b2, 0x3ff20fa077133907, + 0xc00619d09c4c35fa, 0x3fe26537089463bc, + 0x4013b1a3f5a496d5, 0xc01421f88b902107, + 0x3ff3a7eb6f54ba06, 0xbfcb4d31dbd89c7c, + 0xbff23777ce6798ba, 0x3f989e8efb2dd040, + 0x3ff59ce6aa1b48a2, 0xc00506340f3647e5, + 0xbfea912f675bd58c, 0x3fb793b64b023a00, + 0x3fdd127935614d5c, 0x3fee1c27619eb7e0, + 0x4013184c0bce04f0, 0xc0109c8006c9d97e, + 0x3fe5884438cffd44, 0xbfd467d8c3d1d818, + 0x4009b6469e5bd13c, 0xbff34c3fc82717ce, + 0x3fe11457b89b8a57, 0xc00b00c9a85fd9d8, + 0x400835e1683d7880, 0xc00436c664c99f96, + 0xc00588a41985d7d4, 0xbfd89904520ebb6e, + 0xbfca74f6e92b2678, 0x3ff1661411d2d32e, + 0xc000d737cfa1cbf4, 0x3ffa68d26d61241f, + 0xc00be4d858f4d56e, 0xbfe154fb65569296, + 0xc00532158d35b2f1, 0x3fe3a367c1608780, + 0xbfd1d9fba8269042, 0x3fdaa321021b5d97, + 0x3fd7243ef9a3c776, 0xc0126e8fd6a50bf0, + 0x3fde397ea33d8dff, 0xbfdd058b4474eda1, + 0x3fe1aab08893dbd9, 0xbff948128d34c8f9, + 0x3fe6defd9405ecfd, 0xbff5482cccc0238e, + 0xbff53669ecca7c85, 0x4002c3c5db03432c, + 0x3ff86ce6121d6a8d, 0x400a9429f8ac7f30, + 0x4008a411881bf5d3, 0xc01a9a48a7fbf70f, + 0xc0118de683b948db, 0x4009be6cc9e9b498, + 0xbfc5136198536c38, 0x3fe573656b7c54c5, + 0xc0031c131a05abf6, 0xc01846b5b0acee2c, + 0x40014093718a38e6, 0xc0043aa99dd182e2, + 0xbfdf3572887e45c8, 0x3fbd24d3526de1a6, + 0xbfd5953849d2f55f, 0xbfe496fa18f241ca, + 0x3fdbd2c539fc6d0e, 0xbfdfb3ff6a1ed55e, + 0xc00f70198b03008a, 0x400cc9a9a36be619, + 0xc0098417ab5d0dcc, 0x400c57fd58e3c49d, + 0x3fc1eae7b93daebc, 0xbff29c1d7bfdc8d5, + 0x3ff1eb335db63fe8, 0xbfe123a3d5a03304, + 0xbfeb24fd1a9f78e3, 0xbfd2a10a1ead0d40, + 0xbfe24c267570ea16, 0xbfed416ed66479c9, + 0xbfdfc19f4de1b9ae, 0xbfe1ccba51c07fa2, + 0xc003d0de740868aa, 0xc005ff5c629dfbe3, + 0x4005553c26a462f4, 0xbfc6cb638f9213f0, + 0x3fe0a94e4083809b, 0x400f9a41f1b0e53c, + 0x40018e4d24c46bca, 0x3fd8dfea0ab34c84, + 0xc008f2c5fbd4045c, 0xbff0cae02f3c4d3b, + 0xbff0bd4b32142b11, 0x3f7ae2f1cd533300, + 0xbfe890f6d667137c, 0xc005cbf028b0d96e, + 0xbff139ea6e9bb988, 0xbff5bc4610994146, + 0xbfe19cf02a65c8b6, 0xbff51fd330334030, + 0x3ff35fbec069d64b, 0xc0045b810908710f, + 0x3fdf0b9ab61ad690, 0x3fe7773086c5d103, + 0x3fbed0d0269b92e0, 0xbff13ad3d7578b70, + 0x3fefd15a4ed8c9c0, 0x3ff9618304ca0150, + 0xbff7c65a5f26ef35, 0xc01406275c86992d, + 0xc0038628583c537c, 0x4001c7b4ea2bbce5, + 0x3f7c5f7932e2d120, 0x4010ed2e98915bdb, + 0xc002db4b8b8dfb48, 0x4010f95d83c54e90, + 0x400e9c21fd068851, 0xbff9b5ae34685594, + 0x3f7cc4fd0e133900, 0xbfea478b6a20639a, + 0x400be5b601b2dc7c, 0xbff5c6ed2fb7c8fc, + 0x40084eb9db9770d4, 0x3ff08ac0a946cba8, + 0x3ffa8d84ee24d82a, 0xbfe29cdfbb5d398c, + 0x3fed49c82fca34f2, 0xbff8837811efb5ba, + 0x401056ab2a6fb5df, 0x3ff259e0f6bc9a3e, + 0xbff56771c04e887f, 0xbff7a1aa51c3c7b8, + 0x3fff03811c762f22, 0x40018d77fe08d807, + 0xbfe33a72878f26a4, 0x3fe69aa4ccc03800, + 0x3ffc192eaad0c952, 0x3fee531bdd3b1f5a, + 0xc00cb0459dd8f9f7, 0x3fbceaf46ca5e948, + 0xbfff12c6e1ec56aa, 0xbfd6006e9867481c, + 0x400a0be9a8ada04e, 0xbfa8bbe2af5a4260, + 0xbff1290a91c57810, 0x400c6e72d9b4c484, + 0xbff57f3cbe3bae75, 0xbffb2b0855dbf348, + 0xc0010bec1ae8910b, 0x3ffe07e39d2d9e11, + 0xbfe08aa7f2c7d32c, 0x4012119c7e4c2978, + 0xc007131f4ea2f594, 0x3ff4f58b4eac50e2, + 0x4005d0cdb0ad4ff5, 0xbff403d17469a819, + 0x3ff4a06986b780ea, 0xbff05bccaa8b86e3, + 0xc0007ba318be5d5e, 0xbff3dc756e20b7f6, + 0x3fe8d8989a47b4b4, 0xbf8d18357cb92d80, + 0x3fc3678ec639dd00, 0x4008468352313f91, + 0x4007b56a9fa3eabb, 0x3fc5964cefee3191, + 0xc015985cb0c254d4, 0xbffe1238be75feca, + 0xbff50367d0e83e25, 0x3ff6dbe91f31b8f8, + 0xbfeb300fc3f29f98, 0x3fde9fe9832c5a18, + 0xbfffe1b16d4d59f2, 0x3fdac14ea45007ac, + 0xc003d25d2c64268a, 0xc006b9843e43ee50, + 0x3ff148cf67c3c9ae, 0x4000564f5c0815d6, + 0xbff3dfc3a3c2eeee, 0xc00bf6f4ea3a5bcc, + 0x3ff44bacc539ba1e, 0x3fdff48449dd2b24, + 0xbfe33f59979dbd02, 0xc005b6e0e22b505e, + 0x3ffc4242356b01da, 0x401479c118977020, + 0x400177d9190dbe0d, 0x40158b128de79760, + 0x4004aa00b3daa800, 0x3ffa2f1bb8bc0e0e, + 0xc011659e08931045, 0x4009c459480b37ec, + 0xbfeeebe792dc5bb0, 0xc013d46a62ced144, + 0xbfde95ed168d8416, 0xc00f7479853a0935, + 0xbfae9c65235cb1a0, 0x3ffd26d15585cba0, + 0x40107654f588b34a, 0xc00290993b7e7507, + 0xc004090ed35a6f9a, 0x3fcba547823a6834, + 0x400b26fdf78b41ca, 0xbfeb1e5f4d24a3c0, + 0xbfb6d1661c50911c, 0xbff4b364b0ff58b1, + 0xbff9240e25a3d70a, 0xc0014af734b412f8, + 0xc000130607fb29a3, 0xbff3b124c7f517f5, + 0xc01b8188340bd88a, 0x3f58bba84976a000, + 0xc00221b93e151a12, 0xc0074400b067f8c2, + 0xc00f111e3548bc5d, 0x40018b19890e9ca7, + 0x3fec88dc8b79a7b6, 0xbff57080e228ade2, + 0x400361251a2e771a, 0xbfd03531a19abedf, + 0xbfecfab4b2b46c0c, 0xc005d073925cf1de, + 0xbfce09f0ade800f2, 0xbff55219d8f15855, + 0x3fb37ad79cd1c1d2, 0xbfe7f0b53852ff9a, + 0xbfdc899c4d0934eb, 0x3f7f800c0be58580, + 0x3fb414851fb9b226, 0x3ffe0725e7d062df, + 0x3fe1b4453d4f052c, 0xc01021db778f245a, + 0x3ffc84fbb353c37f, 0xbffc2eb750dc70b9, + 0x3fdd64d22a7c8bf4, 0x3fc54f96a16ed67a, + 0xc00bf8feff3a6fc6, 0x3feb3363da45b281, + 0x3fffcdf13670d9dd, 0x3ff00a4984e5b470, + 0x3fd0b9c210f6aee8, 0x3ff23106de28e12a, + 0x3fdf1e251e5541a4, 0xc00978205d6e0e98, + 0xc004deed6d42327b, 0x3ff74d1611d69194, + 0x40084f15e06df424, 0x400a1bcd3210c098, + 0x3fd67138ff4a95f0, 0xc003e4725b72f23c, + 0xbff9f08c10ba39cf, 0x40041a3309d1d3b2, + 0x4003bba9fc43e7de, 0x3fede6b11e4e072f, + 0xc01377854e5901bd, 0xbfe2c81b8735ae68, + 0x3ffb019ec54960c2, 0xbfe7deb707d169c8, + 0xbfd6a219d029fedc, 0xbff42262b9bf7cac, + 0xbffa1e26516ff03a, 0x3fb77da55f40b600, + 0xc011dad7604e8dde, 0x3ffe21d4c40813a2, + 0x3fe8290dd46e3f88, 0x4005e7027b1e8e78, + 0xbffa08c253c53852, 0x3fecfc8e1deef8ba, + 0x3ff1113b3d6f28bd, 0xbfed78e1f4f03caf, + 0x3ff8b2bf5bef5362, 0xbff72ec004e280ed, + 0xc00fcfb02d3cb355, 0xbfd3cd894f2dc668, + 0xc00d77fc49666c7f, 0x3ff37693ded78cc2, + 0x4009311f7674bfce, 0x40039f85e1086a34, + 0x3fc34f6f8a1c2e80, 0xbfd7eaaea12de1ba, + 0xbff9789c7becf072, 0xbffe887a4eadb5b7, + 0xc014534bc163588d, 0xbfcdc29343c74090, + 0x400bbd6c2db699ab, 0xbfe29c990c40c863, + 0x3ff689ae1ca2e136, 0x3ff9bac30f6bfe94, + 0xbff9fe6f41333834, 0x3fe313b4b8a903e4, + 0xc006246d32bd3300, 0x3f92719f6e48b5e0, + 0x4015c689afa7153e, 0xc015d49c23662d69, + 0x3fc45d1c3b7f0408, 0x40058fb7ec566b60, + 0x4019303cd1385f97, 0xc0006681b2cae47c, + 0xbf8f53e1a5344f00, 0x3ff3621bead582aa, + 0x3fef2d27b9768ccc, 0xbff0bfd3be35e287, + 0x3fe2574d1e9d4a88, 0x4016a609ca6f7eb0, + 0x400e769736e5a6ca, 0x40043526c48de0df, + 0xbff6b369418a3a94, 0xbfca783daada856d, + 0xbff7aaa87f7d2703, 0x3fef250e2961761d, + 0xbffba680bf4ec58e, 0x40053a10f1605e18, + 0x4009683546e19d9f, 0x3ff93f7227506d05, + 0xbfe5bb36fc0790da, 0xbfd4671182f9377c, + 0x3ff819fb4be7c7f5, 0x400978091eadace8, + 0x3fbb62a7922b5530, 0xbfe2edbfb6237cc6, + 0x4000df395fd904ef, 0xbff6cf418302d52f, + 0xbffb53ba2b05133b, 0x40082bab32be21fb, + 0x400678a8033fa27d, 0xbfcd6b7500058530, + 0x4009bd46bf9db1e8, 0x3fd30aca7faff16c, + 0x3fe7a650ca67c799, 0x400982ec50fc8f06, + 0xbfc0bdc090d37990, 0xc0073b35e6218234, + 0x4002e6a2dd03a3d7, 0x3fb0f5cb1330d920, + 0xbff24f7579883594, 0xbfef730b119f44b0, + 0x4005fc09c52e399b, 0xc010ff37241e0a0c, + 0xbff1ae232bbf5c72, 0xc015d4c9c515afc5, + 0x3ff481fcd679df2e, 0xc011d44e8dd3a1ac, + 0xc00212a436510d34, 0x400a77acb8d287a4, + 0x3fcbaec0442cd816, 0xbff6ec0f5926f6e0, + 0x3f8eac2323a07d40, 0xc00479861ca0d828, + 0x4010326ffc92f3cf, 0x3feed7ad85ca99fe, + 0x3ff8392d23c75fd2, 0xbffd53c402422a0e, + 0x40119202722355db, 0x3fa312037004d2a0, + 0x400ca15e2bd9506a, 0xbfebee742f526ca0, + 0xbfe4cac75f752dc9, 0x4011ea11fc63252a, + 0xc011a698c7017eec, 0x401508b11a5e5d26, + 0xbff8fdc81aecfa37, 0x3ff444da6bf24918, + 0x400d33ea9dff9509, 0x400bf57fd9e52ac7, + 0xbfe87cbd440f55e3, 0xbfe0cd8f0c7b85c8, + 0xbfe6c41ff26f087e, 0x400b39b65d52596e, + 0x400997bea42fd30e, 0x3ffe3cf45788545f, + 0x40006be728c073fb, 0x40007b7d28a4345c, + 0x3fb2852f2c3882d0, 0x400140c5e523c58d, + 0x3fd195df779dbf7a, 0xbff933b525a791da, + 0x40038f0662b551e8, 0x400a8070b70792c3, + 0x3feda6e4faec3e6c, 0xbff2f0d18e4d020f, + 0x3fd7b443d2542f9b, 0x4007402d62cd4f6e, + 0x3fe046c773e33004, 0x4002fb0b68224bce, + 0x3ff330c40bfe68b2, 0x3ff28e8617d6bcec, + 0xc011ebe00bfbcec7, 0xc006b132c443a132, + 0x400692e6f8e79098, 0xbfec30ce6142810c, + 0x3ff38e646f8f7892, 0xc011955e8e79c784, + 0x3fedb18ebc811da0, 0x3fe3417c23871f07, + 0x3feafa16f841b82d, 0xbfff4f1a62fd03a4, + 0x3ff356c19caa9a20, 0xc0037b613f8bccf4, + 0x3fff93c8887957e5, 0xbfbbda694204f400, + 0x4003ba1492b15d7c, 0x3fe52b3dc4356e51, + 0xc011005ad0dc664d, 0x3fe0212b9eda09bb, + 0x3fe5167e0f020625, 0x3ffb80ed925a72c4, + 0xc01005c05d1d0b13, 0xbffa4bec157f2196, + 0x40190fb61c0a891a, 0x400968c2f8f05262, + 0xc003a076e661816a, 0x3fd31e446e273854, + 0xc0013cec5ee05964, 0x3fe6c51f49cec7e1, + 0xbffd7b6ae8778ff0, 0xc014b3bc0d0b30a5, + 0x3ff63f5e87d5615b, 0x4000193d1fb76196, + 0xbfe4f3c5a1c004f4, 0xc003bfe233ca5ac6, + 0xc001e8a7333f2c27, 0x3fe1aec627e58a1e, + 0xbfed35151bfbd8d2, 0xc013201680b253bc, + 0x40047c38923c6c96, 0xbffbe91618d69410, + 0x40036b96c79f097f, 0x3feef3bfd1bdaa60, + 0x3fe88f0c7703ed40, 0xbff977170c027f72, + 0xbfef608990140867, 0xbfec2b9eae0e84fe, + 0xbff58bf147f8e88c, 0xbff222b592fa140a, + 0xbfe789abb79e96f7, 0x4004f8ee6cc24778, + 0xc00e2c7106d4078c, 0x40064fffd151a21d, + 0xbffac92d43dec51b, 0x3fc18c0d35e2da14, + 0x4001f14c5488d56d, 0x3fd740985c544d84, + 0x3feab3c9659add34, 0xbfbe134c322b8324, + 0x3fd78f9cfdf04fc0, 0x4006f82d6f7dbdff, + 0xc00977dadd9b9d42, 0xc0068236916c0751, + 0x3fd3cdf896778920, 0x3fa493e0dca71728, + 0xc0003b5fc7a5c122, 0xc003bfce5e95a834, + 0x3ffc7f283c7d67e6, 0x3fea412063235e82, + 0x3ff9ca42e65b1cf1, 0x3fd9aa588be0f768, + 0xbff9ae8959ec4bdc, 0x3ff97d1420539166, + 0xbff1c7829b4c93c4, 0x400240b37c6fb5ff, + 0x4004b79e51a595a3, 0xbfdb5c977a487148, + 0x3ffaefa185763942, 0x3ff106cf3c1f854f, + 0x400eaf82fd234439, 0x3ff46bdeb2871542, + 0x3ff4ec102724c0b9, 0xc00231e519c7881e, + 0xbfe087611a01c9af, 0xbfedd55f0ac04148, + 0xbfe4803b3bc897c1, 0x3ffb20c323e8a387, + 0xbfd770a5e9c78240, 0x3ff7252403f012b0, + 0x3fc4938e5a130668, 0xbff936ac93ac1e6a, + 0x3fde1c2098ac2f3d, 0xc00c3148bc606aa4, + 0x4003f0bd2fd383fd, 0xbfd3866604bc43cc, + 0x3fd72b36ee1d21e8, 0xbfcfb0d0800bf890, + 0x4006324d8db1c74f, 0xbfd47802cafba692, + 0xc00167c55cb8bcae, 0xc016c23ffa5e36ec, + 0x3ffe7c52b4c96895, 0x400def94814ce26c, + 0xbfcaa78e5cbc14d8, 0x4013780f5afbd624, + 0xbfe8a38d629fdc17, 0x3ff92a0b37f5613d, + 0x3fd905883aa23290, 0xc00aa963b9c03296, + 0x3fdcaa49bca7bdb7, 0xbfe3e296f1cfc916, + 0xbfd801f386cb3a32, 0xc004490f1f5716a0, + 0x40001cf9856eca7e, 0x3fc8587d2effd30e, + 0xbfe4b91bd9491623, 0x40008c771adcf1e2, + 0x40173b0f785ad371, 0x3ff0daa814ac093a, + 0xc0061f6c4cb9f7ae, 0x3ffdbd6850201b54, + 0xc006c98b5a7ca28d, 0xbfe47a91da0a6a60, + 0x40012c6a9330cbb2, 0xbfe26613be4f8684, + 0x3ff08f65bd8fdcb0, 0xc008ff6b6fe25a98, + 0x4011dfc706ab6ca1, 0x3fe39ed90603fbe6, + 0x3fe336e574526b8c, 0x3fd6dd2a8be2f030, + 0xbfea57a50834e2c7, 0xc0088d9cadb7026c, + 0xbfe6f06315fdae6f, 0x400117f1ebff2beb, + 0x3ff1790a89483d1c, 0x3ff2a9fc4e89449e, + 0xbfec244290b33c62, 0xc005a91d4379a564, + 0xc0011183d32b7efc, 0x401abb09f933328e, + 0x3fd39cc9f1b8792e, 0xbfe4dfbefd1bb404, + 0x4000ce23d281ca35, 0x3ff44d681affe7bf, + 0x4000f8e9160f1c7a, 0x4010fe5e7c8d8cb2, + 0x4009c45509cfac02, 0xbfb076b690f7a960, + 0xc002673d88463af9, 0xbff513de46e3090a, + 0xc00261c3805973ea, 0xc01031323380cdc1, + 0xc005de8ec83d327a, 0x40067e90be4f8218, + 0x3fff0968aa4d2a40, 0xc0017376823e94bf, + 0xbfea0809fee9bcce, 0xbfe867f16782fd8c, + 0x4005d1dd9005895f, 0x3fec76b43ff12934, + 0x3ff626b416718390, 0x3fd0af418b9ecb98, + 0xbff8f6287f0ea38b, 0x3fe018a779f1d676, + 0xc0097d513774a033, 0x40092a0d09935edf, + 0xbfd46c307f3164a6, 0x3ffef485a2a65c54, + 0x4016579e10ddff56, 0x4009fd2eb595abb5, + 0xbffdc448b04c4f32, 0x3ff60902652bd3ca, + 0x3ffe8e3c764fe5ba, 0x3fc216d97dc43e0c, + 0xbfee5e262fb17324, 0x3ffc38589806b67a, + 0xc004b67f90dda015, 0xc00537b34810980c, + 0xc006fe88e762e549, 0xbff9999e07f09ad0, + 0xbff0b571c0724e34, 0x3ff19f6a33e9ec0e, + 0x40058d77468cc3a4, 0xc00389526ea15af8, + 0x3ffee90c5ad62cca, 0xbff536cbe0a5115a, + 0x3ffa38f4cbdc14b3, 0x40095f2969854bc6, + 0xc0046f2dc0bd0382, 0xc00458dab80f25c0, + 0x40061bbd5a4d8596, 0xbff70cc2479f49e2, + 0x4007a1667fe85b34, 0x40045f309a6b3a58, + 0xbffe8e7ef6d30d96, 0xbfd66c3424c91a48, + 0xbff3e170b9920dfa, 0xbff78d259809f49a, + 0xc002c8d45443a9e4, 0x4002f22fb01403d2, + 0x3ffdcde0b670e6d6, 0x400cc1308628c501, + 0xc0021e3e48b4c7ca, 0x3ff2f93b1fea58f4, + 0xbfb28a920a2d08a0, 0x3ff7dc8e3f6cc125, + 0xc00843f6b0257273, 0x4003c32013775b7a, + 0x400201b912f3ad1e, 0xbffea688ee401936, + 0xbff8dbce09545863, 0x40097c6f08783dbf, + 0x4003a060a38049b4, 0xbff4347474e0ec60, + 0x4007ccf830591701, 0xbff37e039a5f74e8, + 0x3ffb9a7e441d1802, 0x4001f1115be2a4a9, + 0xbfef8863ff9024ff, 0xc010e1004fb842ae, + 0x3ff5ae4de3e2b813, 0x3ff59da19feb264b, + 0x400322292071a9ff, 0xbfe10da0de7e53b2, + 0xbfe96e8c3c15a36e, 0x3ff821e12db58a72, + 0xc0062c3f010eba98, 0xc00d56c856cb8259, + 0xc009758e8dea891f, 0x3ffbd54867e54b83, + 0x3fd89c6d21770745, 0x400d82f60e3b0c9d, + 0xc00330701b484f61, 0xbfc3fd8f89a734a8, + 0x3ff29004c19cd184, 0x400341617de4f342, + 0xbfd58f59a929eaf4, 0xbfe59dc98c8a7c8d, + 0x3fff6095dd3445f5, 0x401ee96eb814d92a, + 0xbff07144a2abfde8, 0xbfeeac6560b8417c, + 0xbffe33f444623c80, 0x40009ff8e6a602de, + 0x40163d953c222264, 0xbfdd9340e009f384, + 0x4001c8aa2ba011f0, 0x3fd0819b7551ac48, + 0x400c0effb7d6a36e, 0x3fb8728a5e09f870, + 0x3fc19c6c613a918c, 0xbfaf262221cb9c10, + 0xbffd8193e6883af0, 0xc0061118df054305, + 0xc00ab17e2493b2ec, 0x4012eecb31abc9aa, + 0xbfd52dd2615e0330, 0x3fdeceeff4be7d9e, + 0x3ff53e6914dfccea, 0x3fe598392ff6eda7, + 0x40041e75fe3e2aa5, 0x3fc010fb767013dc, + 0xbff0c8297b9359a0, 0x3fde0ada26a61534, + 0x4003f8f9ef70bf11, 0x400c541f45281597, + 0x3ffd0d1881ab2976, 0x4005cea6b3419d7c, + 0x40119630f6862175, 0xc00b46d88667cc08, + 0x4003029acf6addfe, 0x3fe9619e20df2c7c, + 0xbfa94b8c07ddedb0, 0xc00820cbb4579d49, + 0x3fdabc27587c088c, 0xc006a49ce0ad4dfe, + 0x3ffae273c57f048c, 0x3ff63953b5e855fb, + 0xbff10c129af08956, 0x3fb54b1c3b3fa6ac, + 0x3ff8319d3c6d57c9, 0xbfe8085ec9ecefe4, + 0xc0079283227c9798, 0xc0064230b96c399c, + 0xc0198ec309be8577, 0x3ff2a9eb23c64f14, + 0xbff71b3cbcf4669b, 0x400078a875173f7c, + 0xbfe383a5cb174134, 0xbfe6aed6c751cd48, + 0x3fdbcaddbd2f8ea8, 0xc00d32539ec13a73, + 0xc000a5394d33a3d7, 0xbffa5d4ec18397d4, + 0x3fd0fee8f1b7b4c8, 0xc0088339e2b3c37c, + 0xc0100d78dbe6637e, 0x4008395c2e2bf67e, + 0x3fc8ccdd187651b0, 0x4005fd42f4078faa, + 0x400b36b76e7dfa34, 0x3ff5f6e249c3f29f, + 0x3fcdcac60cad1790, 0x3ffc4d29c21d6911, + 0x3ff0eae66cea359e, 0xc013b17aef8cac2a, + 0x3fd317a555ad8a26, 0x3fce772556423cb8, + 0x3fe0d8d212aefc68, 0xbfe4b7cccaef3de4, + 0x3ff5b4707ac8228e, 0x3fce00506f6fa68c, + 0xbff19068f77d9b59, 0xc00cf68071a9171a, + 0xbfc23d659445d108, 0x3faedb326cc5f7a0, + 0xc0002020fb73e534, 0xc00d3578423da0b2, + 0x3fdb221270d7bd9b, 0x3fe423362c6fcc30, + 0xbffe7c802be2238c, 0xbff63c5c5b6aa372, + 0xbff0edc516762ea4, 0x3ffcc1d8eb33b4ff, + 0xc017ed474ca79642, 0xbff80f0409568355, + 0xbffc444eb038851a, 0x3fdb06e64b33d174, + 0x3fe36e3163c94072, 0xc012f2b75b31bdee, + 0xbfe12e99f7a24d5a, 0x3fd755b3a0198bb4, + 0x4000048c83ce0fcc, 0x3ffb4227761516b5, + 0x4004265eeb79d0ed, 0x3fffbcf716738ec9, + 0xc0120eb90d35b9ab, 0xc000074eeae92cbe, + 0xbff3e98d00fa1b68, 0xbfa0bde650f86aac, + 0xbfcb47949252ab2a, 0x4015c49db8827504, + 0x3ffa9890c9f62175, 0xc003b993d5b6c100, + 0x3fffde1207f87529, 0xc013c0780a55b0e1, + 0xbfed86f25664e7f8, 0x3fe06bb5598da22c, + 0x40012812c0e9b47f, 0xbfcc0b3ac63b1524, + 0x40166be21eb45a8a, 0x4009b22da86f4cc4, + 0xc0042b9a590f4418, 0xbfe8d3480e74c444, + 0xc00212d02b1341ee, 0xc0159b791361108a, + 0x3ffb33e4276a723a, 0x3fbfd9dd29a6cb80, + 0xbffe2e429b68ea62, 0x400903d0e026a0b0, + 0x3feba176805d1e50, 0x3fe8274b47efbe98, + 0x3ff7286d2b035b84, 0xbfde4971f8e32c0c, + 0xbff7171736a55591, 0x3fed97190d490b99, + 0x4002dfcb89315df5, 0x3feb3dc2cc9d85ab, + 0x4009e9306719d60e, 0x3fe5c801fbdbdff8, + 0xc003aa15ff451164, 0x401160ce4c626672, + 0x40005ffb43bff2f4, 0x3f8b360b41daaf00, + 0x3feaff65d42e9564, 0xbfe9699e868eec3a, + 0x40049fc023866e8c, 0x3fe3864f0bfde454, + 0x3fde0c5793572cf8, 0xbfc699f3ce90da88, + 0x3ff05f19348c3656, 0x4005db43ad2677cb, + 0x3fea10f153eb2998, 0x3fe8ad42aca27c69, + 0xbfeaf052a3645c27, 0xbffd3cd80fc8e31e, + 0x3ff1ce68f5c01cea, 0xc010f4149b44d2ea, + 0x3fe225c101eb28da, 0x3fe12e8554a737fe, + 0x4000114719323f85, 0x3faaea385332c580, + 0xc015f577bedecb9e, 0xbfd829cb3c5d71ba, + 0xc007306bf45e3f80, 0x3fd58a56a5972e14, + 0x3ffc7020595310d7, 0xbfe456dff3a41054, + 0xbfe30c8eaf0d5af3, 0xc00d9194df9c50b7, + 0x3fe9b1ed21dbfa84, 0x400478a404b8a100, + 0x3fe0bb801c63914f, 0xbfd3b1d66dfbab88, + 0x3ff2cb64c7d9f4ec, 0xbff4c2568725e41e, + 0x40051b9cce96c23f, 0xc000c72b188312aa, + 0xc010edd5011bcf47, 0x3ff3b2e5e33c3fda, + 0xc00d450a869d0a70, 0x4015228170af3d60, + 0xc00fc3c71c17e2bb, 0xc00043ce0b683a46, + 0x40079ab887fdcff9, 0x3ffa055798df968a, + 0xbfe1db78c6bab4dc, 0x4006949b17458cf2, + 0x3fe250b56bc398e0, 0x4011cc123fa12ce7, + 0xc000fd39fc5dc97a, 0x3fc3702bb5ebb1a8, + 0xbff39e51b0dc1ce8, 0xc001f65a1cb5d25c, + 0x400327cb80f12170, 0x3ff4d16152e8d04c, + 0x3fea34bd553109ac, 0xbff76eaec1d30e80, + 0x40109c9ef6dbbc82, 0x4010ba37865b4a70, + 0x3feb5058334ab81a, 0x3febf83ad1085cba, + 0x3ffc44e5c30cb8b0, 0x3ff7eab70e4f9ee8, + 0x4004bb18881628d2, 0xbfe9658d4b93c05c, + 0x4012e1ca141830b0, 0xbff878dee6a18cc4, + 0xc00e4e1b43b0f0c2, 0x3fe360753aba4106, + 0x40066b904417ebf2, 0xc011bfc1318c6270, + 0x3ff0e9407cec298a, 0xbfe385deec1a05ed, + 0xbffe529da585e46e, 0x3ff915415e729187, + 0x40023c4ccbb1ab68, 0xc0051aaa6e46bb3f, + 0xbfee3a33adfd0ced, 0xc0105003440680e6, + 0x3ff23b089049ae26, 0x40035177916454b6, + 0xbfdf634b9240049e, 0xbfc83229d525b7f8, + 0x400a69a9e4179e6f, 0xc001480187caa062, + 0xc009b59423ce0024, 0x4009c3fc48369197, + 0x3ffe2565b1b4a0cd, 0x40065d8c20baad94, + 0xbff365db800dcc40, 0xc00f7e8219ec3137, + 0x3f9bbdbbe757f300, 0xbff0a209987bb96e, + 0x3ff4c84f3aa56652, 0xbfbdc979f0097c4a, + 0x3feea58d31ab4c34, 0x3fe8c2a16e066c90, + 0x3fd1d84afa1b7843, 0x3faedab2aad624a0, + 0x3ff5af54e4434fe5, 0xbfe579f64a6e7f60, + 0x3ffaf8b5b708710e, 0xbfe7b2a3186cca48, + 0xbfe446e4523726e9, 0x400215ed0b75dd68, + 0xbff359f03a9b28a6, 0xbff7c45b05eabec1, + 0xbfe50361fef74a20, 0x40087070f667c19c, + 0xbffa20461ec9fa8f, 0xbfcc2fd912ab7519, + 0x3fe6e2f7b334ab94, 0xbfe1a4c6cd124dc8, + 0x3ff77b6e2a9aa2c0, 0xbf994115be505380, + 0xc00c6b4efaf9aa22, 0xbff2b3b79c79384f, + 0x4004567e89eca3e1, 0xbff8aa5e39e1d3ae, + 0x400e8ca96015e489, 0x3ffba46b83d2bc48, + 0xbff5d9c80f2f875e, 0x3fed53df049f08ae, + 0x3fcb00ffa480614c, 0xc014291f5bbe608c, + 0xbfef3f9f9d1d1c7a, 0x400910a39479e45c, + 0xbf99ac84c7b1f280, 0x3ff7c4c23d0eb582, + 0x400cf674724e6ed8, 0x4003f292e97430cc, + 0xc0096fe0c36f80f4, 0x40186b9536936d2d, + 0xc01766492f5ffb20, 0x40034bf331e255f4, + 0x3ff6e2573a53fef6, 0x400fb994d81b1517, + 0x3ffd9c58eae263ee, 0xc00bda162fd88f26, + 0x3feb800b892e6fae, 0x4012aa57abddfb2c, + 0xc0023ea534e38497, 0xbff8cc63f4cf0147, + 0xbf807f81773e5c00, 0xbff1a12849db76cc, + 0x3ff3ded438516462, 0xbffe27efb8be6b42, + 0x3ff7876ccc95e344, 0x40014001ddaea821, + 0xc006dfababf5b76e, 0x3fca5d032f39fea8, + 0xbff58715cd47055a, 0x4005ed5b03ae3f4b, + 0xbfe3825cc8b95926, 0xbfe3c2c55a4a2704, + 0x3ff381e5739ed4ad, 0xc00939ae765620b8, + 0x3f98c30659d83a20, 0xc00400f66cf10329, + 0xc016c63d97845bc2, 0xc015accdb1d0325a, + 0xbff1c8e948fca4ed, 0xc012d2e7f3cf92ce, + 0x400945c1aaedd73e, 0x4010ee7f3d5d5a32, + 0xbff51514d2fe847a, 0xc002309301d8e5bc, + 0xbfe30cac63aa5225, 0x400fb3dea14cab57, + 0xbffef20b7e8a414a, 0x3fe9d7251a122d33, + 0xbfeb22c0df75414c, 0x40020d07af281d6f, + 0x4009986f7eb6c3f4, 0x3fcb17390540ef96, + 0xbfd00ba7a0b26a48, 0xc00275fdd1d6095e, + 0x400269fdd91164ba, 0xbfc5749783f0ed08, + 0x3fd6ea6c34327b70, 0x40065c608db61b29, + 0xbffca36883cf9be3, 0xc01495b568ebedd1, + 0x3ff292fae6ddf4af, 0xbfdb6dc4802c5648, + 0xbff40c5ee71dc0cd, 0xc00f96d037fa9af6, + 0x3fe23e87be1114e2, 0xbfe32c00ac7424db, + 0x3ffee2b9f82ff11e, 0xbfe7cfd762db16d2, + 0x3fed6319624165c5, 0x3ff7990e8bf26d6c, + 0xc010fdbf5376bd34, 0xc001fa8b897ae7ce, + 0xbff4f24e69d31194, 0x400723c9478f1087, + 0x400bf0ccd7777922, 0x3fd47b881979e78c, + 0xbffd0dc71e50abf9, 0xbfb3cb5d1a81be36, + 0x3fb9c8fcff900a2c, 0xc00ccaf2bee083ee, + 0xbfe5feab65054ad0, 0xbfef8e8fdfc6f8a2, + 0xc00b0ed4b8440794, 0xc00b910f67a09807, + 0x3ffc7a4073ddee30, 0xc003424a8d478d6e, + 0x3ffc97b4c0741cca, 0xc00ca32f3104f360, + 0x40046255f53cf242, 0x401930a0be8be4fa }; static const uint64_t ref_cfft_noisy_4096[8192] = { - 0xc00ada05db8ecc9e, 0x0, - 0xc006a1903c67d7c0, 0x400b901cafc705ff, - 0xbfe0a84a0db6bb0a, 0xbff358360c005e2a, - 0x3ffaaa37eb686be0, 0xbfed04f1d3dc3e40, - 0xc007f1de29fb936a, 0xc004b423a087d05a, - 0xbff6a9923068a897, 0xbff97cb6c2ff438f, - 0xc00525ff8ec1db23, 0x3fd0972b464b1cb0, - 0xbfde019e83458ce8, 0xbfebe7e26cd694da, - 0x3ff86e96d1b9de20, 0xc0046f09757d79aa, - 0xc00e6eebb57f15b2, 0xbfd5b55fd0ad6388, - 0xbfebb919e5f42b89, 0xbfea1ed645854b97, - 0x40054f4cb2ee20c9, 0x400a2bbe9ca4d958, - 0x400b1b02c8987466, 0xc010d041c874d5a9, - 0x3ff1b79f361f42a2, 0x3fb391effef54f24, - 0xc012777ef521054c, 0x3fe6c66fd53ce579, - 0x3fd3c34c67c31f7c, 0x400b3fe39a93f251, - 0xc00221b8ef5e3a80, 0xbfe6a925742f8daa, - 0xbff21632dd8dc072, 0x3ff0c9c1680dde08, - 0x3fe3b946b6763084, 0x3ff4b1b25d3bab1e, - 0xbfea85301f7619e8, 0xc00583a260efce52, - 0x3fff4dc7c348efed, 0x40055b3b77c6dbd7, - 0x3feb224f45ba1831, 0x3fe6fdea5caa6e66, - 0x3fff6c00e2a1802b, 0xbfc4c7972061c060, - 0xbff25e4e5f33450c, 0xc0064d8f2552c9d0, - 0x40017c20d9f03d65, 0x4003147b7e83e8bc, - 0x400c91e76575ea28, 0xc01004442d8284e6, - 0x40101665cab474cc, 0x3fed88502f726abd, - 0xbfe884a035c45bf7, 0xbffeb3d5a846aeae, - 0x3ffd87cb94ce14e0, 0xc0023930d9fe687b, - 0x3ff31c54e4d50b70, 0xc0055b34833cb5f4, - 0xbfcbf94f28da5608, 0xbfd7d5d94a468aa8, - 0x3ff41266dd35052d, 0xbfee9e3eeae431fc, - 0x3fe73d56f1c24014, 0x3fff57c9050c920a, - 0xc0065017e8448b24, 0x4005f6cbb9364166, - 0x3ffee25a10af403d, 0x400acd2596a0f27d, - 0xbfe01d9588a4ed41, 0xc004b7dff1219644, - 0xbfe61c92debedc40, 0xbff348a8f2a93a54, - 0x3fd27b194896da7e, 0x3fc8fe622d479bc8, - 0x400714999595f500, 0xbffe854790399199, - 0x3fb55ef77f7fd3d0, 0x3fec4e2f1e343e65, - 0xc0003f5be65a8f14, 0x3ff8a137ce3f59e6, - 0xbfdb797fd2bd0758, 0x3fdb8a2049509f60, - 0x3fd494f85d2e6d44, 0xbffa477344657a73, - 0x3fea19eed58c1e50, 0xbfe89e1cfbe35b74, - 0xbfa2a94df0c65910, 0x400585f64e41fe1e, - 0xc005a649dc88b323, 0x3fd0aab8e0423d1a, - 0xc00af94cb8c9689d, 0xbfdaebd89dbabe17, - 0xc0055950a6325ce6, 0x4006cec1d22cebb7, - 0xbfd3bab104e637d8, 0x3fe5835efedfbe8a, - 0xbff47e73c5dc46e6, 0x3fb4450a300705c0, - 0x3ff22998a35366ea, 0x3ffa734923ecf650, - 0x3fc19fed702dd5f8, 0xbfe306ae2bed9906, - 0x400b06c87be07f50, 0x3ff01f8364d8b724, - 0x401212651ab79ec3, 0x3fd0046224943df8, - 0xc0064d092737435e, 0xbfc774991f1ed678, - 0xbff268558ce83e38, 0x3ff2bd8aa081be16, - 0xbfde12463e5da010, 0xbff21ad7a75c389c, - 0x3feadf7c1e850ea0, 0x3fe66e695ac5db34, - 0x3ffd016bf066f5ae, 0xc00da3e5faed69cb, - 0xc005f99b6a69bbda, 0x3fe34dc28d46f571, - 0xbfea6869a1d48996, 0x4000c3cc7e25e281, - 0xbff5400031be02ce, 0xbffb486bdb12a172, - 0x4000d40c65697d8d, 0xc002744d80601e3d, - 0xc0048296915c02ed, 0xbfcac6c6cde7bcac, - 0x400aa061c9c32347, 0xbfbf9ce6ed0ae780, - 0xbfec4f8a72f1d87f, 0xbff006f4f1cd0b5e, - 0xbffe21244ce7391c, 0x3fee739ed63f9048, - 0x4004cfcbd7bc2483, 0x4008886d979b7144, - 0xc018170930d5f952, 0xbff511d1e4b4b17e, - 0xbff91d1e890078da, 0x3fcefea70c7a8584, - 0x400e420acc04d88a, 0x3faef16261c18f80, - 0xc00cba2e8a70fe96, 0x3fd67f068ecd1f8e, - 0x3fe0c42b9df6d89e, 0xc0088ea854cff52e, - 0x3ff85340bc330f7e, 0x3fe4fe1d840ea18d, - 0x3fe49b3e9f492216, 0xbffb78e133ef69b6, - 0x400328a776b8bcf0, 0x400585b56f9d4583, - 0x3fc495cb241c762c, 0xc002a64793942d96, - 0x3fee1bf14e77405d, 0xbfeb376a4b1be886, - 0xc003fac79b59ba8d, 0xbfe0c8e461cbad5a, - 0xbfe7fe11567070ed, 0x4005e07f7f427c7e, - 0x3ff7a99774428809, 0x3ff566a6a6c62100, - 0x3ffac0a970d14d18, 0x4007dfd6cee7f4a1, - 0xc013d55fbf93efd7, 0xc0110c4fa3d35ac4, - 0x40091b09c1ed98c7, 0x4002c4c63a2b3c80, - 0xc00261dbaa3f608b, 0x4002d897d3334a1a, - 0x3feeb65ec522d858, 0x3fd933feda9bf323, - 0xbff464b7ef2538a3, 0xc0049cd89364dfef, - 0xbff76741785b883d, 0x3fe53278fb7a8564, - 0x3ff1675489940138, 0x3fc94df69b62adc8, - 0x3fb449e7dc53d400, 0x400e8b09e49fd89a, - 0x3feae7f2cb24d396, 0x40079acce85984bc, - 0xbfff3d57c3bc623f, 0x4015d4fb17677b12, - 0x400898a007850720, 0xbff60ce4a63304f1, - 0x3fca959d60f06e54, 0xbfff4bd0d58db406, - 0xc005bbd8950da918, 0x3ff906a905312300, - 0xbff32e34ef2e2a2a, 0x400051b65ca6bce3, - 0x3fc38adac9644470, 0xbff29f7d17b52112, - 0x3ffd429c8e81d2b6, 0x3ffd369d16b8dd95, - 0xc00119a6db0b9879, 0xbff99e0539a9fc0a, - 0xbfe0aca4d8a16be9, 0x3fca9ec8f24cf66c, - 0xc006f3c509a2bdec, 0xbfd3d360eba2a0a8, - 0xc00758b15fd94a26, 0x400176fa55cfe73d, - 0x3ff562fc2ead1296, 0x400139898086f3c4, - 0xc009d2ac85c7beea, 0x4008e8486d47d159, - 0xbfd0caa6d1553fc4, 0xbff219a0e58a4aad, - 0x3ffc798b080e9050, 0xc017b5af7f4add3a, - 0xc0074e15fc1070be, 0x401b7b0a8416904b, - 0xbffbaf1a18b82e6a, 0x3fdff6235a1c9ce4, - 0xc0039a2fef64c232, 0x3fe9043bf7584c38, - 0xc00e71e3ab1ac6f0, 0x4001f4377581ce3a, - 0x3ff710936ee41b0d, 0xc00b7dea643edb3d, - 0x4007d2f07d73c645, 0xbfc4a27fe8bef0c0, - 0xbfe1fa1ea69f0fda, 0x4000685dc1913f76, - 0x3fffe9970df9bfee, 0x4015e17bfcbee668, - 0xbffe163614251f30, 0x3fe5ae4a262c2e24, - 0xc001b7b377c6d93e, 0x400888d95736025d, - 0xc0023993c60fd50d, 0xbff0c52e01d1927c, - 0xc0043ad540cb7248, 0x4010234a1db10abc, - 0x3ffeaa29cdf081b8, 0xc00f4486fa56a8dd, - 0x3fe2dd6b39f9c9a3, 0xbfe271cb29968b4e, - 0xc00f5fb2f5d48b98, 0xbfe341d9d480ce76, - 0xbff46b2273b05c9c, 0x400d0ef40d5712f4, - 0xbfe01414a89a9360, 0x4002eb16781f0b68, - 0xbfc98c60e1083906, 0x3fdc21a362805e26, - 0x3fb60fcee2b74490, 0x3fee15fc32908ec9, - 0xbffca9bdc194953d, 0x40130444a0e411ae, - 0xbfe15b0776c90bef, 0x3fffc55346697a60, - 0xc0011c153e610280, 0xbfe8fc4737cce8e8, - 0x3fec46fbc7c6eebc, 0xc00f9739a51fcf96, - 0x3ff569391917becc, 0xbfb7551b1aa95cd0, - 0x3fb0ad66baca8910, 0xbff34c5a3c17239e, - 0x3fe54d28ed25edea, 0xc005b3ae78920628, - 0xc011707ca2566f17, 0x3fda6b9773609810, - 0x40089d0334444434, 0xc001a0efe9a27bd4, - 0xbff342a20a4d799d, 0x4004a12d79c04088, - 0xbff34ca3372619ec, 0xbff0254389815214, - 0x40134a206c381510, 0xc0044e2e5df3597a, - 0xbfe7366c6d947db6, 0x4003d4ee617a197f, - 0xc010da54ee8c093a, 0xc015d4fe86cc583e, - 0x400eb20c90427f2c, 0xbff57b14a1abe210, - 0x3fcde4882a539ba8, 0xc0057c7470cbd980, - 0xbff09d6290e6f2e0, 0xbff6615dd5248f79, - 0x3ff57c9cb36dc932, 0x3fc442e80ca3f540, - 0x4000b32ef97af6f0, 0xbfb25f1038a4e780, - 0xbfcdc89b7a4f3cc8, 0x3ff8b0be8f24f36c, - 0x3fef247f10d3fcca, 0x3fd3bb8d209db414, - 0x3fecac3b97363ef4, 0x3ff8d67b8283db02, - 0x3f97ab573a2d18c0, 0xbfec5d32e5a6bdf8, - 0x3fe5d2b2f1bfa6ef, 0xbfd53a709faa0b9a, - 0x3fed990e9cb274cc, 0xbffa600dfc18c752, - 0xbfc510d37533d5d6, 0x4003684d7743b029, - 0x400ee37288fea35e, 0xbff1573c40aa8ad1, - 0xbff2d521c0e6bcc8, 0x3fe095dd52a80473, - 0x3fe1154226cd1ef2, 0x3fc63ee85d50d846, - 0xc00c4f27dd02ee34, 0x4005190e75a6b92e, - 0xbfbd1f93907c2d68, 0x3fea293398d7c550, - 0x3fe71e5389b562b1, 0xbff8e28b06290f2e, - 0x400865cfcd9f1b62, 0xc00212e16f70eb9e, - 0xbff57ffa50a26448, 0xbff2ca1dfe7d7fc6, - 0xbff50e0efafba145, 0x3fff2c6f8d10873a, - 0x3ffed5cec9a041ec, 0x3fdfe59187d51e08, - 0x3ff1d7f9f4d073f0, 0xc00bf5a065c7da8a, - 0xbffff76994602c47, 0x3ffce79f21d1c274, - 0x4017d1d3c9da9270, 0xbfd68562fc8a6c58, - 0xbfc8d651586d1648, 0xbfe0c258e4918538, - 0xc003d58ffb8a1d51, 0xbff08ab2ccb9d808, - 0xbff43c68d741e69e, 0xbfe9ece15a072a72, - 0x3ff13622e83cd2e8, 0x4000d8acb828c44a, - 0x3ff4674b595e7500, 0xbff6330a65e82818, - 0xc00b45ed9535b8fa, 0x3f8513297e953480, - 0xbfa6716316c23300, 0x4009a57928524f01, - 0x3fa0c83f077dc440, 0xbfefe81d4bd171b7, - 0x3ff48df5f20e4394, 0xbffe7e7988b9879e, - 0x3fdbdaa3db77a5a5, 0xc00155408e75ff0a, - 0xc009df948c2274be, 0xc003e192ef6d3e88, - 0xbff45b4ab46f2964, 0x3feaca7eed9712ae, - 0xbffd9428d27106ba, 0x3ff6d995228a2901, - 0x3fe231cdee7967ff, 0xc001cdee2953eeba, - 0xbfbe24c7b4cd2c10, 0x401143970dc6155d, - 0x3ff155efa90a7bee, 0x3ffcb9eb52102dc2, - 0x400d229d295945b6, 0x400092dd570b3711, - 0xbff04b24605c7ba9, 0x3f68941b8e789800, - 0xbff4c85643a39e6c, 0x40165ff1ef852648, - 0x3ff8abb723b784d3, 0xc00b6bcfdfe28962, - 0x40035c1b6a2727d6, 0x4001381fd583d028, - 0xbfe31d221cb95190, 0xbfe74cb78cce5b57, - 0xbfcc20d4efcc83fc, 0x3fff6c1a3ddce4e0, - 0xbff97ff4b9268f0a, 0x3fa2cba1c9768b40, - 0x40075957b79a24d4, 0x400446d17f8a4eec, - 0x3ffa4d02df81028a, 0x40043cce6b000f28, - 0xc002536f9cb5e0dc, 0xbff13925d0cd1270, - 0xc0064c461c4ade8b, 0x4000be43b0968e42, - 0xc00a9b5e6a523c64, 0x400bd9eff45fc756, - 0x4008eae9b8d90e5a, 0xbfd65ee0a22ef8a4, - 0x3fd342d1a3b8569a, 0xbfff12182425dc00, - 0xc00dbc5bdd6456bb, 0x4001f27a8b39b6a2, - 0xbfe9186b45e8f3d6, 0xc004521f33a27d11, - 0xbf9f655f1f162650, 0x3fdc282df2c9cb30, - 0x3faf297a5d9aae80, 0xc005466054e3332c, - 0x4000914f865da3f9, 0xc0118920eb7f416c, - 0x3ff8315f8c838e4a, 0x4009900e232011ba, - 0x3ffa29fab7c953f3, 0x40060014b45f1bd6, - 0x3fed00903aef4bd6, 0x3fe6f77dc0efdda9, - 0x3ff582a7d9904ef2, 0x3fd97eaae0dfe14c, - 0xc00ad62dc706c3aa, 0xbfd425f4e9a51e22, - 0xbff42029dd34ef23, 0x3fdf2262b7e3429c, - 0xc0078e43a65d70ee, 0x3fff38a25b01b866, - 0xc0014dbd72faa607, 0x3ffa6d5dd1cb5037, - 0xbfff5909432fbc5f, 0x3fa50bc485c20aa0, - 0x3fe08586f78cd690, 0x40008cc2daf75915, - 0xbfd170821accdf74, 0xc00c0e45dd45aa04, - 0xc005416af26099fe, 0x3ff938d6c8bf60b2, - 0xc01312cd5fb42d1a, 0xbfc656614f41ff00, - 0x3fa90fc7514eb550, 0xbff6e62dbf0c6575, - 0x3fd17b981a1389e4, 0x3fef2229a5f9f970, - 0x40013e58b3ea190a, 0x4010cbaac646a557, - 0x3ff6d2535dc3167d, 0x3ff9a4d6e6186375, - 0x3fe246b844588a63, 0x3ff3d8d420f60150, - 0x3fe5c7293815dd1e, 0x3fb5cea3210e7560, - 0x3fca0b59bdc1f540, 0xc00e16016cab8bee, - 0x3fddab266bc783e8, 0x3fea0aa8eb683730, - 0x3ff3293bf5c19acc, 0x4009aae2a5d8d0c4, - 0xc00544aaff5bb365, 0xbff5cebde63e216a, - 0xbfdd08b14c046de0, 0xc000c0ed043fda46, - 0xc004da65d3cd012c, 0x3ffa20a00bd9db93, - 0x3fe4c929b2eb9786, 0x3ffe38a037126a64, - 0x3ffabee05eb778de, 0x3ffbb07717abc286, - 0x3fe19f115878b368, 0xbfe0cbc3e4e767f0, - 0x40037814ba734e68, 0x3f5893cede09e400, - 0xbfd6c12278680822, 0x3fe10ab582f6a86e, - 0x3fd75afe261531ec, 0xbffac2b9bdb6e850, - 0x3fea8ae38da8b634, 0x3fc718b86d2b6a8c, - 0xc000b8cc4eb47fab, 0x3fe02cbc8de8fdcb, - 0x3fb963dc507e7c40, 0x3ff50eed791014e1, - 0xc0033f727d14b9c2, 0x3ffdf4096c7dc9b4, - 0xbf856ad75baa9780, 0xbfe2fee6d2306987, - 0xc002ee0d305ae740, 0x3fff41491d5324b0, - 0xc006e7d0fe40bcf4, 0xbff3e45d04e0c9fa, - 0xbfce397a1d7a7070, 0xc00f89d780cf8563, - 0x3ffbde638a8f5c04, 0xc0053536ed13a03f, - 0x40086c69cb14220e, 0xbff27815d25eeacc, - 0x4014bd40ca6634fa, 0x3fd787f6cfbc6f90, - 0x400382861797880c, 0x3ffe5b28af20ef89, - 0x401174130a2e1de2, 0x40013886729a8572, - 0x3ff0edaec9868248, 0x3ff9d370f36cc2b2, - 0xc007837237b32ec2, 0xbffe2002c5ae3398, - 0x40007425bff897a7, 0x4002f50756c04e0e, - 0xbfd4fd21f182da54, 0x3fd5020125a919fb, - 0xc00a8f81204da6f0, 0x3ff208ffd2cd1836, - 0x3ff25e2994f87087, 0xc013e9fd65d749c6, - 0xbff5a91534307d1d, 0xbfda2e1d8e4a33e8, - 0x3fda205108265158, 0x3ff2cd7010816c02, - 0x400a3e90f776265d, 0x3ff96eba3e881bec, - 0xbffeeef5d0d7dbfa, 0xc005a2edefa883c5, - 0x4006072dd3d9f63d, 0xbfe1c2460698e39a, - 0x400987d6b33ec3d0, 0x3fe7cc75dd5a5ef4, - 0x3fe632d4fc7b3b08, 0xbff3edd26227f674, - 0x40115c4058d0a323, 0x3fed52e1fbb837f4, - 0x400f63ac68726f08, 0x3fefd9996bd00fae, - 0x400a5665149c3963, 0xc007851c3d1fe800, - 0x3fd5b17fbd2f8c4d, 0xc00ed0ebe9a8ef54, - 0x3ffaa8aaa94adcbf, 0x400db96b387fa904, - 0xbfe43d612952f199, 0x3ff5d80e7a93b2ce, - 0xbfdb4d8cced35dec, 0x40104b78a050e870, - 0xbff2d375fec62d4d, 0xc0001add489cccc4, - 0x3fee82b92a063f80, 0x3fdd832c97b91cb4, - 0x3fb083ecff18f5e0, 0x3ff9c4ab9f0b24cc, - 0xc01932bfae2afdb5, 0xbfd661a7705295ac, - 0xc00ee154a1a426e6, 0x3ff9fac2c1af3873, - 0x3ff61714630353fb, 0x3ff49774e2810cb2, - 0x400e2661b4ee0ef4, 0x400d7a05c44c1991, - 0x3ffefd038fb80c9d, 0x4003c86d9ae79a14, - 0x3fd13513fd36bed4, 0xbfe91f50fbd67c4c, - 0x3fe81560acbb8dd0, 0x3ff88265534a9965, - 0x3fb145ac2d7a4de8, 0x3fe619b06d4105c0, - 0x3fdafda65410474b, 0xc009810b27f2beb9, - 0xbff8fb97f14a95e0, 0x3ffa43301fa7ece0, - 0x3fff637e0f5f0d17, 0xbff3c87d638250c2, - 0xc00460210516627d, 0x400433f7f8497961, - 0xbfe5fa152ffd0ce0, 0x400edc4b4423e58c, - 0x3ff1210290983662, 0xbfd7b49413c6f5a0, - 0xbff8b9953841a651, 0x3fe6722805c4a958, - 0xbfc018e36fdad8b0, 0xbffbaecce77a2848, - 0xc010804a05b83229, 0xbfccbf74b51894f0, - 0x3fd3806540b6f458, 0xc007af8403ebebd0, - 0xc00fcea59ee8477f, 0x400c93e753151576, - 0xbff430f0ccc1b63e, 0xc00ca68d5afcaf67, - 0x3fffecdf1891c9c4, 0x3fbd45beecac7678, - 0x40089ffaf0d82916, 0x3ff671d6b7dbc453, - 0xbfe0c30c7e2e90c2, 0x3fdc4d968b068542, - 0x4003f6c32f3f4814, 0xc0074276711e5c9e, - 0xbfdeab590407deec, 0xbff8af4b853a05d9, - 0xc0146917bed300a3, 0xc00dbbd176e9b426, - 0x3ff1f9babd06bf1d, 0x3fdbec1c338d1e8f, - 0xbfc7953077b01bbc, 0x40007a9a6bf77c2e, - 0xc006e97e7627bb43, 0xbffe3d510570ec2b, - 0x3ff4dddb45053f63, 0xbfc98b6915cddf6c, - 0xbfd096c4106b0e2e, 0xbfe73620c85e73d8, - 0xbff083eba55bdfc8, 0x400badf35fccfd0c, - 0xbfb04ae53a485d60, 0xbfd617ec18109952, - 0x3fe53a8d8b54571b, 0xbfda281be61e6d3c, - 0x3ff3e2ac063a1485, 0xbff06ce0c929d07a, - 0x40019fbe5a27d97c, 0x3ff21806386e160f, - 0x3fd6ae4574fd3808, 0xc001f8f933b6f42e, - 0x3fee967c7b73628e, 0xbff25d86bd513d8e, - 0xc0045dbbf1118b1a, 0x3fed3801f7c2fcc7, - 0x3ff161c4429f0b7f, 0xbff771e24cf0181c, - 0x3ffb572488ec83e2, 0xbfcae67480d2e850, - 0xbff3f615b41eee31, 0xc00175b59029193a, - 0xbff672a9979abc06, 0x3ff8c2c1e4920a6c, - 0x4012970709eaf494, 0xbfcec7668947bd80, - 0x4006c6d541ea241e, 0x40019ef3ee33a74e, - 0xc00948fe4ac992f0, 0x3fee150ffd53fca7, - 0x4001aac6d88f5424, 0xc007d186e42e8e1a, - 0x400163c392fc2102, 0x400a5f7234e25064, - 0x3ffe067df256cd38, 0xbfd56d3807e8388c, - 0xc0132100c2fc1474, 0xbffebc43439a4b8e, - 0xc008c0a500d5d954, 0xbfde7256bc35bc60, - 0xbfd7334389913243, 0xc0023fd1402c8474, - 0xbff768bd50902f20, 0xbff19d2adb1e73bc, - 0x3ff75cb43afed7bc, 0xbfeb0e2b9b2b162a, - 0x3ff0193a2a1f8b1a, 0xc0165f4b53e5dadf, - 0x3ff5aeff64aeabb8, 0x40166cbef49a8288, - 0xc0068d8592e06dc4, 0x4001298279c76875, - 0xbfff314570f6e35a, 0x401c43f667cb5032, - 0xbff26eb1b435ae24, 0x3fef6e7bbeef97ae, - 0xc004a21e9c6228e6, 0xc002c061c8463c9a, - 0x3ff040048edb5b92, 0xbfefa80b38f76cc4, - 0xc003a3c08eaca314, 0x3fec10febc7b8d72, - 0xbff79413bd969c1c, 0xc0118ce764e98de0, - 0x3ff06d5854182de0, 0x400467c6bbe21984, - 0x3fbca838cbbbace0, 0xc00d437e15f5fed2, - 0x3fedf771399ae087, 0x3fecd890c79f3ee6, - 0x400eae9903517f21, 0xc0077de9b802e612, - 0xbfe59fcdeb84e92e, 0x3fc65ac63dd9d1a0, - 0xbffcf49f3acb8ed9, 0x3ff4aedc898f0a7c, - 0x3ffcae02e0a319c4, 0xbfeb319bd368c19d, - 0xbffb65945b7d0312, 0xc00f5218ef53607e, - 0xc00585ae0fda3589, 0x3ff196284dc0db6c, - 0xbfebf110d405b678, 0x3fb874eb51d93a50, - 0xc00461582c324158, 0x3ff55c5299765346, - 0xc005afd77186fb68, 0x4006569ef49e7db8, - 0xc01cc983103bef82, 0xc0168b87e27645e4, - 0x3ffcb3709c7442f7, 0xbfe1027889a40206, - 0xbfe7a1de064b875c, 0x400c9a00a486b9d3, - 0xbfd960fb093f9a78, 0x400579a8936af0bf, - 0xbfbc307a1c5c3220, 0xbff233628887f62e, - 0x4004fa4b8b8603e3, 0xbff5edc9af040e44, - 0xbff510985b91afbf, 0xc00d457b73ec156c, - 0x3ffa0fc5111db991, 0x4000cf717ee37f59, - 0x3ff5c8def951af18, 0x400443cfb41c5d4c, - 0xbfe2a7ece143ff56, 0xbfeebcbf1ba848d4, - 0x401512718f65c33e, 0xc003b142cd53da4e, - 0x3fea5264739d20ac, 0xbfe2483b01cedaea, - 0x4001837c36350450, 0xc009268290ff8f5a, - 0xc004ca7ae5e1a742, 0x3fcc8cd169be09b8, - 0xbfcc5d44b630610e, 0x3ff1b886a9994dd5, - 0x40045a21edd91474, 0xbff6114ef81a26f1, - 0x3fe4bb764baf912e, 0xbfc9f07caaca8bd0, - 0x3ff538d4c7c7cec9, 0xbff100ee79ec1538, - 0xbffa43d237aba7da, 0x3ff7104c2095e5be, - 0xbfae923612b4b590, 0xbff9c6951ff16003, - 0xbfddbf8fda2e7e92, 0xbff50cc80f81a666, - 0x40118f59528c76fa, 0x3fe56114f5027145, - 0xbfe2a6ee626bc0de, 0xbff4fb2300401558, - 0x4006f2769779ba21, 0xbfef90333dcaa032, - 0x3fe424baf72ba55c, 0xbfce7bae9c6821ac, - 0xbffb066a9371c228, 0xbff5aaad6bf45e36, - 0xbfe5fd7e4e9bac36, 0xbfe0a421afe8f70d, - 0xbff3cc3b9dbd025f, 0xbff2412e4903a508, - 0x3fe1de3a61f62d05, 0xc00dddf3c644cc06, - 0x3ff787b3659ee5ef, 0x3fe60ea0010adffc, - 0xbfee7aa68385a9fd, 0xc007e012500c9410, - 0xbffed74d9efdbaa3, 0xbfff8ffdadf187d6, - 0x3fef5647ed6da744, 0xbff77aee1cc0eda6, - 0x3ff216755b9667fc, 0x40019a9932435ef2, - 0xc01e0869e000ace0, 0xc0036538bf8f725c, - 0x3ff4cc0ccf104322, 0xbff11f4ccb29c6ca, - 0xc00b678d88a0b55a, 0x4004db708accaed2, - 0xc000b676501e6304, 0x3ff5cf09bc5899d0, - 0xc0099c610cf85cb6, 0x40112e1f53912812, - 0x400cb42b52eb98d9, 0x3fcdf0feba322610, - 0xbff27562e3422df0, 0xbfea4243310610f0, - 0xbfff077bdf40ec9a, 0xc00846065bc2281b, - 0xbfe02558c9d6d660, 0xbff04bafa49bbdde, - 0xc00816f72bf3cc44, 0x4000a40692ca09bb, - 0xc00b569b53235507, 0xc00ab2958d3717c3, - 0xc013d86639f5d05c, 0xc00f49f78e37a23a, - 0xbfe2d39ac8d9d81e, 0x3ffe58793b62e59e, - 0xbfa805c31bfb3a38, 0xc000c06786ed0bbe, - 0x3fe7126ce18bf2f0, 0x4002b621114be153, - 0x4002a7ba133df790, 0xbfe8464943a38764, - 0x4015304ce2378334, 0xc008fcc2a3ca0088, - 0xbfd500ced242f376, 0xbfd8f15678719d84, - 0xbfff2525854a84a8, 0x3ffc0cbfeb72382b, - 0xbfc30fac231e81e0, 0x40013392ffd3a754, - 0x400351a03f409254, 0xc00aee6729daa78a, - 0x4003d53f51f04be8, 0xc00f01110f270cb0, - 0x3ff2f5b15cc53d16, 0xbfb04e7a70b2a9d8, - 0x4005efe18d21816c, 0x400625e3ab091012, - 0x3ffc802d75a4a2df, 0x40131f5476797328, - 0xbfd745baac75daea, 0xc00faaeab7342ff4, - 0xbfd444a58350c632, 0xc01410f6a460f74f, - 0x3febfa5a2db11d18, 0x3ff5a917d9f69098, - 0x4000a410987099ad, 0xc01e15a0a5eb8024, - 0x40060450a350950d, 0xbfda759feea4ac60, - 0xc00aec64c1f04fb7, 0x3ffd1db85af74fc3, - 0xbff265f5cec8b314, 0xbfff1e74141b45fc, - 0xbff05c98c207de14, 0x3ff6ccf51a5416b8, - 0xc004f5fc71d49034, 0xc01305bcba58ae96, - 0x3fee543059b8e7e1, 0x4003babe8d4026d2, - 0x3fd4c18221cf2590, 0x3fb184d0c821e3c8, - 0xc0139d2bd1d00bee, 0x400078d228b9a0fb, - 0x400f1a732fd96704, 0x3fc0948f8908f650, - 0xbfe564270f4575b2, 0xbfd92e54a9eb2c20, - 0x3ff0a45992346476, 0x3fd0602474e0aadc, - 0xc00cca00ec70cf09, 0xc00570bc5b5e1ff8, - 0xbff986bfd16be2ad, 0xbff9842ee0869abd, - 0x400787b200071c21, 0x3ff3b1b1653f4654, - 0xbff39d96cb473947, 0xbfb5f6e2c39128e8, - 0x3fb20bcc6346a018, 0x3fce6f3ed18afab0, - 0xc003b554018fc64f, 0xc010f5902c34ed1a, - 0x3fda50f337e6df45, 0xc018bbac0b652bfe, - 0x4012da56652b134f, 0xbfc9301004fb9a50, - 0x401838f5395db66c, 0x3fcd791d54e40e9c, - 0xc0116885c305654c, 0xbffdbecea85b0802, - 0x401531cb819f042e, 0x40092585225d6b1a, - 0xbfe4748210e3ed6c, 0xbfe3c3a8260a6f16, - 0xbfa8f22d26cc88e0, 0xbfe76e454bc3e7e1, - 0xbfb56aa70c9cb6d8, 0x3fcbff6bb9050f1c, - 0xbfd9b05d07317034, 0xc00ece112f035cba, - 0x400713e860e403ac, 0x4010e7d6fd4fcf21, - 0x3fee0a0b1d551608, 0xbffd86272c649f78, - 0x400382b2f78fb892, 0x3fe3091f1975199b, - 0x3fe1ee78b1001fff, 0x3ffdab260a0093d0, - 0x4016b848363f8597, 0xbfd398041fb2b7e4, - 0xc007a88cddead8f8, 0xc003bfdb0e32966c, - 0x3ff149101ab58230, 0xc00b05da19002d10, - 0x3fd329e99c1c3112, 0x3ff21b7bd784e8f0, - 0x40004fd6014307b2, 0x3ff1e0e94d91e137, - 0x400ce896356c6e28, 0xbfe79db602068920, - 0xc0059386ee3e5176, 0x4001972d598050a0, - 0x4013ba52f2759e90, 0xbfef0e74b61b5d03, - 0xbff7172eb4c1b863, 0xbfd184e8f10e0a1c, - 0x400223bc4eced592, 0x3fe7abdd8bab8421, - 0x3fbb72ae501768e0, 0xbfa5a4668b08cec0, - 0x400ec7d9f4a58aeb, 0x3ff40bac22fc8bf8, - 0x4002163c1d0ba588, 0x4002932df46a1fe7, - 0x3ff7aa4c2dacdcc1, 0x3fd94ed03c7674be, - 0x3fd48ca43836cdd0, 0x4010569cd8519a50, - 0xc007daea678c94d3, 0xc017e2ec0b579ef3, - 0xbfd53edc8a4f9648, 0xbfb543949c284a34, - 0x4007520f20063036, 0xc00875738e1f4a5c, - 0x3feebcafcfac4c20, 0xc00c1e5827fcfc7f, - 0x40120eb2b60b84a4, 0x3fe80b62efd84862, - 0xbff756a5c9f56719, 0xbff67715be989c9c, - 0x401114e2729f5bcb, 0x4009edc52e62e88c, - 0x400220d1a7597094, 0xc011eab947799dc2, - 0x400f7f6b404d2e08, 0xbff3e3f4b43bc5a0, - 0xc005b1eb592e1166, 0x3fdf4ad0f5b304fc, - 0xbffae439faa4f375, 0xbff77cb39389f18e, - 0x3fc583a312b17098, 0x3ff729fdc6551fa3, - 0xc0048ca6c03d9645, 0xc016d788452946db, - 0xc003802135422f5b, 0xbff1c4414098ebf8, - 0x3fff4c3a7853b902, 0x3feebdd73fa3e81f, - 0xc00173c4d2b78842, 0xbfe436a5ab95ca7b, - 0xc00422748020565c, 0xbffc1838a8e58b3a, - 0x400303af85ac93b0, 0x3ff63e7557c84a27, - 0x400863c522b50148, 0x4006a89753df3572, - 0xc003fbe8eb5bf5f0, 0xbfd1fbd2532e25d4, - 0xc00eb310f6e863eb, 0xc0044f1ba8212c70, - 0x3ff3120df4787b36, 0x3ff3127edd538bc8, - 0x4000a14fe8853fcc, 0xbff3ad1cfeb98c4f, - 0xc00d7e5aa3bedf9d, 0x3fee11a637a7ac04, - 0xc00996b0110dafa0, 0x40018731c34539f0, - 0xbfea8228afc0b5bc, 0xc00187e6a2e8dfaf, - 0x4004ec28b5ee2fc0, 0x3ffd34531b00432a, - 0x3fccb82d0115ac70, 0x3fe9e2758aca3f09, - 0xbffe64d75ed937d6, 0xbffa28642743d319, - 0x3fc762b984bf8012, 0x3fe185f2bf5ce1c2, - 0xc003dc498b4236bc, 0x3fed0f5f6dc2eb91, - 0xbffa86fadf12eae5, 0x401033b0902e2ea5, - 0xc000940b3ce262e7, 0xbfef8e0581a87afc, - 0x3fe6442302706ff2, 0x3fd73bb4b02b2b58, - 0x400536bb4ef8d328, 0xbffd35bf733ee595, - 0xbff0f7442566040a, 0x3fe99dabb46a9f76, - 0xc0020f86fb73ca34, 0x3fe2331dab1ab146, - 0x3fee2fb7884d88c8, 0xbff6c09b6146855f, - 0x3ff245959d6eb99a, 0x4001019598c1528a, - 0xbffb18c878e34ce6, 0xbfd93d3082f97076, - 0xbffc09c8a9509318, 0xbff48980e18786ab, - 0x4004a26ef1ecc99d, 0xbfe6db287c73e4ca, - 0x3ff493be9fae43af, 0x3fe59cdb71a3a39b, - 0x40008c5cb7ee988f, 0x4004215e91b43522, - 0x3fdd2aa433b31102, 0xbfeed3813acdd236, - 0x4010ab0b641a2da9, 0x401082d1d7136abc, - 0xc0079faf6b004892, 0x3ffa91da96c45f1c, - 0xbfd677c74515b300, 0xbff6246c1e19771a, - 0xc002cb094baccc26, 0x3ff6fd4083265498, - 0xc004fb8dff907b06, 0x3fe0436e8ca190a8, - 0x400a3e5e2f08ed10, 0xbffb26a9b1206c94, - 0x400354f90c57b27b, 0xbfe3db3f1b5dd688, - 0xbff9ab71aa7d5225, 0xc0112fd495366a84, - 0xbfff21f27d4286d7, 0xbff0e6b1944b97e2, - 0xbfb30c5ea6ecfa80, 0xbfff0ae7344def08, - 0xc007d39597144be9, 0x40047f8aed5d8d35, - 0x3ff3ce0c8c5603b4, 0xc003824c5a0df242, - 0x3fd432b88e428efe, 0x3fb8cfa376b60700, - 0xbfeaf2e6e18c6466, 0xbff62e4cf62c5e40, - 0x3ff82c5cf1ea2ece, 0xbff7742baf0389a6, - 0xbf970620ebe336c0, 0x3ffccc15a301499f, - 0xbff667c113066c9c, 0xc0052da18cbbc66e, - 0xc01919eab419ae94, 0xc09661fb2a20188e, - 0xbfb7b3da970dd930, 0x40053a28139331ea, - 0xbff82c5c80063059, 0x4010d98778d5a7f4, - 0x4019ba2497b495d5, 0x3fde08d7b8f7c726, - 0x401490ab34dce535, 0x3fcf83a37414f884, - 0xbffb3aead398314c, 0x400d10274783c08d, - 0x3fcf578594d94b4c, 0xbff65e9d3bca9bbc, - 0x3ff8a424cabb2b08, 0xc001474b4a174436, - 0x3fd0116fa94e654c, 0xbfd7e41921cd13ec, - 0x3fb1609cc3621c60, 0xc002ebe086c20e82, - 0xc00d1e70a94247d7, 0xbfe0237564a10bcf, - 0xc00a951e599655a7, 0xbfe5bd69f9af866d, - 0xbfd6275bf0fddeee, 0x3ff30f79fbdcf4c1, - 0xc0105c9e3012824c, 0x3fe1401da0e60660, - 0xc010caa47d741ab4, 0x40156ece9d480f10, - 0x3fe39a7a5e10f233, 0xc00ecaea6c795df2, - 0x40009d6d1e11b09c, 0xbfe34baa62461281, - 0xbfbe48b3a52d5fa8, 0x3fefbba3fd1361c8, - 0xc00859f443c1c59a, 0xbfa9761e152e4120, - 0xbfd81e60032befe2, 0xc006630a4660c58d, - 0xbfe08370d1977846, 0xc003958a28460bb2, - 0xbfd81ad424841da0, 0x3fd488f5d214f0dc, - 0x3fd086d2dacdf680, 0x3ff8bcd59f0e44c2, - 0xbff6024fa203b872, 0xbfeae14d9e4bddd4, - 0xbfedcbb16b5913f5, 0xc010903859f42b2c, - 0xbfccb93a9fe517f6, 0x40047ef3d3b91fff, - 0xc0047e30072bad8b, 0x3fe0df4b86f92ebd, - 0xbfe1e809b11a6d4a, 0xbfcb20c12c6811cc, - 0x3ffb2f929ac4fb04, 0xbff255a7bd6918fa, - 0x4015a77c2f4de325, 0xbff1a480f359c40d, - 0xbfbdc13c66a27fa0, 0xbfe27e9866d049e7, - 0x3fee57bcf42efd6e, 0xbfe35b39c6833db8, - 0xc0058198b429af75, 0x3ff01bc5b5fe135f, - 0xbfb1ad5c032fa698, 0xc01a65bb4bc37df4, - 0x3ffce58e739df186, 0x3ff2db4a74840f6d, - 0x3fdbbaa2be458740, 0x3fb49c3a0a8529a0, - 0xbff8be7a0fb0669a, 0x401a33cbb284aa52, - 0x3ff9377be59688c6, 0xc0034eabd15c7517, - 0xc00542a0d64b4782, 0x3ffceab106dc55eb, - 0xbfe82379553e5a0a, 0x3feb1532cee7a29d, - 0x400cd9cf4a1af2ad, 0x3fffd43aede8f65a, - 0xbfe597d376ab2876, 0x3fc7c6b87f4ae758, - 0xc002dea269d9546c, 0xbfe9f329105eaece, - 0xc0064e0a31e58abe, 0x401139baecb97608, - 0x3fe464b0b4abf03f, 0x3ff52afafe8a3015, - 0xbfdaf48f04f9b0f0, 0x400087d2a23ec691, - 0xc0117dfb68c7ad5c, 0xbff40b0c968a12bf, - 0x3fe6ff0618bd5b40, 0x3fdb886301e9c6b8, - 0xbfce803889e6bd80, 0x400023e4a5a68245, - 0xbfe202b31792c968, 0xc015c45a1234bfca, - 0xbff7917477aa6421, 0xbfde8864be906086, - 0xbff0860213141d40, 0x40033ab3f37f2692, - 0xbff1dec04d653a33, 0x3ff4fa7e0464d7f9, - 0x3fffdb802a878e78, 0xbfe47e9f456718c6, - 0xbfd28bad68b3eb2c, 0xc00169b18a5f1f6c, - 0xc0064c20b4eb2917, 0x3ff310a69a4b9922, - 0xc00eacca18b1f93e, 0xc01cb3f76653546e, - 0x400ad23d0da8e9a2, 0xbfd2c0f24de2998d, - 0x3ff89ffa4c606de5, 0xc013d16b6713d48c, - 0xbfd939c35ece0f02, 0xbfd009e6eae38a90, - 0x3ffb78fd4fd05d1f, 0x3ff9a5b1fcb87afa, - 0xc00676d9d4808bb2, 0x3fd429bf434c12d8, - 0xc003c19b256268ed, 0xc002a68d84faa5ec, - 0xbff2e17d051a1f61, 0xbffe62cb769316b6, - 0x400b851b8e03a9a8, 0xbfc346f5e7517b98, - 0xbfb497e5d56a4c00, 0xbffab09d92be774a, - 0xbfa072afc3310780, 0xbfe82091616dac54, - 0xbff7808e0b27128e, 0xbff74924e2850aaa, - 0xbfab0ad357fe2a70, 0x401109b336d3cea9, - 0xc00102fbb3dc7ef0, 0xbff956897c2eb7dc, - 0xc0055a966aa89952, 0xc00c6ee47ac4be18, - 0x4002d3fb410b5312, 0xbff38d250906350c, - 0x3ff7b7f05fbe55fb, 0xbff196c9c60c0ac2, - 0x3ff0db4947efb29d, 0xbfe6761cd52536a7, - 0xbfd77e5414c6eca8, 0x40026f31f0e6b73a, - 0x400d2409afeee854, 0xc00a1fd2d4f45082, - 0xc005d134fd85d4d1, 0x3fe262c11105bd18, - 0xc005d93b595e0024, 0xc0011236c61cb786, - 0x400e0f87663b7e21, 0x4008cf46d487bbf0, - 0xc00c4dde13192e21, 0x3ff6767b9af4792c, - 0x40034659308c3b38, 0x3ffd1ec3d07f32e7, - 0xc002cc41cfd288f9, 0x3ffdedc47c776012, - 0xbff5120b37719834, 0x40016d7966af0ae1, - 0x3ffda61c26da16e4, 0xbff7a186901cfdc0, - 0x40139d9db6fdac2c, 0x3fbb8b29700adfe0, - 0xc00e44a8d51efb3e, 0xc0055ea42df96198, - 0xbff827c2531ad155, 0x3ff4a78f0ac8e48e, - 0x3ff4b9f2b0dd8a65, 0x4007054b9bda16ac, - 0x3fc3b04ab3783508, 0xbff52a7f41e5f02f, - 0x3ff1c6a5aa96a4fd, 0x3fe973270d2e9c3a, - 0x3fd0fd182bee47ed, 0x3fe3e5cdb5045f32, - 0xc00862979db84e4a, 0x3f98bf393e98c200, - 0x3ff8c2de9ee370b9, 0x3ff8271673eb44c2, - 0x4004c839c9b59ca0, 0x3fe2677715c07446, - 0x401049facb9376fd, 0x400472696ef65a7f, - 0x40051058768fe01e, 0xbfa0949a665c5160, - 0x3fecd42f7d72d704, 0x3fff1d50657b3db0, - 0xbff5931979854942, 0xbff82d32c1d9a8ce, - 0xbff762ca65a370c3, 0xc009906b61aa3420, - 0x3fcd5520740794dc, 0xc000c722821ff2f7, - 0x4001cd157737471a, 0xc00349a9a4593260, - 0x3ff6035956b1047a, 0x401c0feaf4116c78, - 0x3fcb0a024d0070a8, 0xc01119e8fbdb51b0, - 0xbfe7a0de9a1d8da3, 0x40081cfaa76d42b2, - 0x3fd62873dcf92058, 0xbfd4d6be6cd91b74, - 0x3fb1de3a0ec7c590, 0xc0019a58e285c3c8, - 0x3fe442a63321706e, 0x3ff1b1cd8eebe63a, - 0x400ae2e006e0ed53, 0xbfd4db7bcf74da48, - 0xbfe5e3c216dd74be, 0x3ffe33ab06c3ff02, - 0xbfeb159791d5b967, 0xbfe2e2ccbf12aa75, - 0x4000ec7d34d33ed2, 0x40008b0945c1b947, - 0x400203e9b78bc467, 0xbffcb56fe3a2c08c, - 0x3ffdae5f809541e2, 0xc00a2c80a270b938, - 0x3ffbc302f40718df, 0x3fcbc7fda98b0570, - 0xc0026dc4175ecb25, 0xbfc38aa9b087578c, - 0xbfe2506c6dd1c8ea, 0x3fe8e6ff003d8427, - 0x3fde3e87aff26c4e, 0x3ff89399cd17614b, - 0x3ff23ab1716c00de, 0x3ff796e7c92ca78e, - 0x3ffba046dbbd5e02, 0x3fdded7512b574a2, - 0xbff67ead6423be1c, 0x3fd6426624816890, - 0x400629f709693a12, 0xbff090966fd5eb91, - 0x400c2c8debe3e848, 0xbff20bce91e84d6c, - 0x3fe0dd613923414f, 0xbfd0084eccf2f88c, - 0x3fc35f6f869d79b0, 0x40085187d1c455d4, - 0x40136b17faa6bdea, 0xc0021c5152c0e684, - 0xc003983c809fc8de, 0x3ff044974ab72da3, - 0x4001d122743f6690, 0x3fe9fa395c0309a8, - 0x3ff6492eb5306836, 0xbfc8c5faa8a85a48, - 0x4011d0d17a60d1dc, 0x400733af9e920521, - 0x3ff3f775b6c55b84, 0xc00ba640aaa54f76, - 0xc004b30aa456d6a8, 0x4008ddbaf7325f48, - 0x3fcf4c74fd86f272, 0xbfb9f960496e2920, - 0x4000fd6b353199b4, 0xbfb175557d5b6b48, - 0x3ff425f7229d2291, 0x3fde659463802f58, - 0x4009aa5763466636, 0x3fefd99bc70170e7, - 0xbffc9c37b5485f00, 0xc005a107949e13ea, - 0x3fe3df4066f7a180, 0x3ff999e51e2ad412, - 0xc001b4e31d0d7bf3, 0xbfe2b19db127bf1e, - 0x3fe8a124903b90e2, 0x401106fef3776c67, - 0xbfe57a034c9a89a9, 0x3fe01f7b8461713d, - 0xbff06780104a54eb, 0x4007d167b60dfc48, - 0xc000003e90a48554, 0xbfe8064042af8670, - 0x3fc851e4c324b8e2, 0x40082894841b6891, - 0xc00b558d43462d83, 0xc0100665b20ccba2, - 0xc012078810f0c20c, 0xbfee77a1aae63f6c, - 0x4001ec4959cdaca9, 0xbff734c14c07d420, - 0x3fe05cd9a6bfa968, 0xbfefeb8270cf5a4a, - 0xbff163a6d9840083, 0x400167cd34058338, - 0x3ff222c585d0ff11, 0xbffc4c7f0aba4031, - 0x4006816af5793e83, 0x3ff12b11af621060, - 0x3fe8ed0d2b332722, 0x400d9c8ea07c709b, - 0xbfa2ef928de43010, 0xc00ac12608231380, - 0x3ffc090fdc2af9b4, 0x3ff7880703df86c3, - 0xbfe01defba4f7336, 0x3ff05d3026f424f5, - 0x40048649fbc7384a, 0xbff1674f4f1b3776, - 0xbffd29d1934c2836, 0x3ffb7bca61b26e47, - 0x3fceb132bd9a0188, 0xbfe494ac7c1faae2, - 0xc001ff86435e32dc, 0xbff38c9c835dbbdf, - 0x400e5333e19b73da, 0xc00028a91e073dc7, - 0xbff61eb000207da4, 0xbffd88c416ca5c8a, - 0x3fcd53bb45796168, 0xbff819a53b18f41a, - 0xbff8f3d896b202fc, 0xc00bd4dbeb24ae0f, - 0xbfdd2a8d07cc9290, 0x3ff31bd663bc4024, - 0x3ff2a6d52e5de21e, 0xbfc17c50d593a18c, - 0x3ff8e1082bd4eec8, 0x4007488e336b376f, - 0x3ff2e7edd59c407a, 0xbffff0db58eed508, - 0xc0106fd42fcc827a, 0xc0024e5b577d7cdd, - 0xc0035ced523a36fe, 0xbff2ab07901370d6, - 0x400389d1a6c0c9e6, 0x4004997ef046dc1c, - 0xbff06baea649da22, 0x3fe9ac27ae194326, - 0xbfe12943e71dca52, 0x400be39f077b3b3b, - 0xc003b0c63797eaf2, 0x3fe66d85213eea14, - 0x3ffb6b4b7b5f8662, 0xbfb5f6a357fe1d78, - 0xbfc3528018a72a58, 0xbff116e601cdd05e, - 0x3fe00521c881c440, 0xbfe3408dd4af7752, - 0xbfc6b4fc8ed199a4, 0x400032ec4d0679bd, - 0xbfc1786e3ff7200a, 0xc0129b88afd4dc34, - 0x400cae825b38cbd0, 0x40008ef9166f3be4, - 0xbfec2978ded053ff, 0x3ff5f6f82863f7a4, - 0x3fe05cc6f460117d, 0x3fb51f3bd06515b0, - 0xc0046e868990efe8, 0xbfdceb333ea1d29a, - 0xc0076cf12f1e68cb, 0xbfe2c34b8519a210, - 0xbffcb50e7e8f8c01, 0x3fcbf5fdc706c1a0, - 0x3fc45f2d18114ef0, 0x3fe8c8ad1ce0dc37, - 0x40006ef39be31b14, 0xbffad51c51265122, - 0x3fe71c7cc31b5885, 0xc0001905ddc14447, - 0xbffe5052573daea0, 0xc013f2c60f844754, - 0xbff81e47c076c8bb, 0x3ff2dcd7287dbf8e, - 0xc000956b26554096, 0xc00c71ee9672f8ed, - 0xbfd7908c5103e1c8, 0xbfc051f050628294, - 0xbff53daad39f0dce, 0xbfd5fd87d687d648, - 0x40029ede5f9fd71e, 0x3ffcb6dcd43567dd, - 0xc00c6d86e8e5476c, 0xbfe2ae3b5497778a, - 0xc0037db65d1feb7c, 0x40120fd8f227d99e, - 0xbffb16f24d5ab8b9, 0xbff7bcecb604aa06, - 0x3fdd769535bf5270, 0x4008141fd25555f4, - 0xbff1cf54a8a31038, 0xc0065e2df08a33e5, - 0x3fc21fd71e749f10, 0x3fe20d97e26ad5b6, - 0x40017d95204005b0, 0x3ff8798283ba3f70, - 0x3ff0dc4b3cf58776, 0xc00332abb5bbc0aa, - 0x4003a31242f72006, 0x3ffb65460cbe793a, - 0xbfe11a7148d8ed37, 0xbfe8daf1fab7f8de, - 0x3f91521dbd2c6a40, 0xbfedfba0fb51697e, - 0x40066ca5b97487b7, 0x40105a66d48c151b, - 0xc0003ba4ce933589, 0x40039a33e71ec4f2, - 0xc004c800baf37c3e, 0x3ff77d7601b82ede, - 0xbffa47eb41c1c664, 0xbfe96db2f0015bdd, - 0x4003b9fd6a831b2a, 0xbfe9b9e806dc857d, - 0x3fe02ff77a630db8, 0x400d2631dd40867c, - 0x3ffde0f3ee34fb70, 0x4011cfa450b31af0, - 0x3ff2ed1bd97005b4, 0xbfc435bb40752508, - 0x4014cdb110b0dc35, 0x3ff8ef22a3a604c4, - 0x40109c8d4501d043, 0x3fed1440b654189b, - 0x3fe809741b37e5a5, 0x4007c08e045732e8, - 0x3ff02f97b6472ab6, 0xc0010c45b112b6ca, - 0xbff58d5410203b48, 0x3ff50bc6c1fd426d, - 0x3ff28c9da84b3e75, 0xbfbff74feff8df00, - 0xc0093f4f00954098, 0xbff2a8e3ac86138e, - 0xbfe4573739f50802, 0xbfd770a40baff4e0, - 0x4011bb00c5a3ada3, 0x40041812136f5028, - 0x3ff5dd7f32b22c7c, 0x40009122b503cc47, - 0xbfea6c30a16fc568, 0x40079d4ea2291696, - 0xbfdd675b9b4bce4c, 0x3ffbe6ea427847f6, - 0x400ec1f1c1199dd6, 0x40155561010f0c6a, - 0x3ff05d8dbb4ca41e, 0x3fe2cae7208d5598, - 0xbff3ca4f18a87adc, 0xc009a5ef746e1610, - 0xc0084f3ee0b09ad4, 0xbffa53a954885afc, - 0xbfc64f7ba9d2d303, 0x3fe263f3a80ce87c, - 0xbff3ba65e84dd374, 0xc0056cef34109cd1, - 0xbff160930206399b, 0xbfcb0ceb39ab1eda, - 0xbfddc43fdb8a4bdb, 0xbfd9ba0a92def8d0, - 0x400f61357aab6e2d, 0xbffd148b8eda28ba, - 0xbfc13eae5158c790, 0x3fe73e3d4bc70c58, - 0x400a32bc1ce65e66, 0xc003cfdc88da7664, - 0xc008326b24711172, 0x3fddfd993e435c92, - 0xc00c7df25a3453b9, 0xc00093caade9c8fe, - 0x3fff859d62fce350, 0x40066969b7da1587, - 0x3fe2b0c65c819280, 0xbff96a72ace9ce30, - 0xbfd347d339ed92a6, 0xbff922a69b2da5a2, - 0x3ffe109bcc31c4ec, 0xc00318d488321273, - 0xc00864c1ca7c0d04, 0x3fe80d8a4ef7a6cb, - 0x3fc381de83efdf50, 0x3ff9ca8c2cc87338, - 0xbffd5f1aeaf83ffa, 0x3fed787a36c22e0a, - 0x3fba769aaddba3c0, 0xc00640592ad70d9c, - 0x3ffa2fa886423bb1, 0x3fea033888bd49c4, - 0x3febf3d60da11848, 0xbffa8c6e4fbeb1f4, - 0xbff15597b19d6561, 0x3ffb59361b101580, - 0x3ff9d2ef0108cdf4, 0xbfefcdc6924b8693, - 0xc00df08213f46557, 0x400253c2c748910d, - 0xc004f1aed3f8d04d, 0xc00d6909843837e0, - 0x3fe70957ab445cac, 0x3ff7302fc5847573, - 0x3ffbfa64cb76f90c, 0xbffd341fe862cde2, - 0x3ff8510f99466a51, 0xbff46b93b07783a2, - 0xc00050b31d10b3c2, 0xbff094cf003a1e1c, - 0x3fe1e172206b4660, 0x3ffd5228508a7106, - 0x40067cf1f1e32898, 0xbff20c2db7bbe9e0, - 0x3ff01c88ecbd92da, 0x3fe9986c033d0dc4, - 0x3ffd76e646b8e904, 0xbff26442755f3c7c, - 0xbff90d31621d4c97, 0xbfcd6325f712096c, - 0x3ffcc13efad69d68, 0x40126b4dfcc95c80, - 0x3ff61edb216983be, 0xbffc94300fb5ff1f, - 0xbffc518ffd956f45, 0xbfba8028bd407b24, - 0xc00bbcbd522e42d6, 0xbff1d91e6a45c0d0, - 0xbfe7366d31ad748d, 0xc009b0e83e882952, - 0xbfc3c40e42631390, 0xbff56923c41ba453, - 0x3fe012d2820b8d7e, 0x400c377b28141f3a, - 0x3fe6886f97866905, 0x3ff6ff944aecb9a0, - 0xbff6d1439c00d69e, 0xc000d573ff2986f4, - 0xbfe7fdca9b1d9227, 0xbff5d2374825b8ad, - 0xc004749e8f26675e, 0x3ffd040addb814c6, - 0xbfce533db6e46d78, 0x4008cc2fea798124, - 0x3fe5e11177a950de, 0x3fc43888d3c420fc, - 0x3fad890381f01d50, 0x3fe6483f245625dd, - 0x4002df53bbb167ab, 0x4010183d06f53280, - 0x3ff292ff1f4dc5b7, 0xc011af89e04072dd, - 0xbfe7777a04fce1cc, 0xbfef374ffa4e8180, - 0x3fe8408b5a20584c, 0xbfe544f6da169f20, - 0xbff7cbacc1a5f20d, 0xc0081cabd3e3a8ab, - 0xc00e401ba4b22f8e, 0x400393ca4841a415, - 0xbfe68eb361a0e1d2, 0xbfe2e9fdcb21eec4, - 0x4005aa2315311536, 0x3ff6091dbfaecae8, - 0x3fe5a298cbf9b09d, 0xc001771f570cec2f, - 0x3fe40ad11f8987fb, 0xbfd725a6f2f83c5c, - 0x400109590d366827, 0xc004e234cfeaa7b4, - 0x400624c4127e2c70, 0x3ff92c38cfd7e38b, - 0xc0096a4296ba3efa, 0x400f4fb316eea17d, - 0xbfa20a0540ff88b0, 0xc01071e0185378b6, - 0x3f90cc503bb7f7c0, 0x4005150f03aeab33, - 0x400aa0ad5b455b44, 0x40044f60d8c17254, - 0x40163a04f3fb7a15, 0x3ff279154929601a, - 0x4002eabd95a409ae, 0xc00b1a9a8acc9e50, - 0x400e444d02873ee5, 0x4004ef3fa8a9520e, - 0x3ff04c2f65466c5b, 0x3fb8468af544bc50, - 0xbfe29371d796c474, 0x3f982f1ee104d960, - 0xbff201568eef3b9a, 0x40059234d4568b2d, - 0xc00d1362d2836bcf, 0x3fedb77b61665264, - 0xbfa7357c61f0cc58, 0x3ffe8d08364f5a51, - 0x3ffa8cb61d105a7b, 0x3fc5ef1fa6617eb0, - 0xc0105d12c3834b7e, 0x3fbb9bfa747a0504, - 0xc014717763d3c931, 0x4001766a354d2524, - 0xbffc5e2b8146d2b4, 0xc01c3c94174b66b0, - 0xbffd0155e4e75781, 0xbfc25a63a9473fd0, - 0x40029acc4c9d14ac, 0x400473467551505d, - 0x4007622d4f90b93e, 0x3fef70344e3983a6, - 0xc00d374867a2a70e, 0xbff6985312de3a10, - 0x40056962d8b8d2e6, 0x3fe9266e16361337, - 0x3ff8c05964f04684, 0xbfcc3f2b4f61df1d, - 0xbffd75232d2965e1, 0x3fb5c1f68e182b18, - 0x40015a576d398ced, 0x3fd8ce21554ca7a0, - 0xbfe5a85f22b06424, 0xbfe3b72376efd6e1, - 0x40134180144d6c02, 0xc007ff42182d8a8a, - 0xbfbcd33903d5d85b, 0x3ff1c1c61d5254f2, - 0xbffe6dec3ff8f5ac, 0xbff5af7bc1021b37, - 0x4003a34f767816ef, 0xc006fbc531abc87e, - 0x3ff148cd39dbf03b, 0x40028360973ff25d, - 0x40045548cf3600a4, 0xbfc2fef7cae26788, - 0x3feefa591696c6f8, 0x3ffaf9d395094399, - 0x3fdff40c6e57e3a0, 0xc008ed42d152939c, - 0x3ff34a3a4d66292e, 0xbff4c2c2e3c3cf30, - 0x400475d3afc551f8, 0x400f7262c3296a0c, - 0xbfcd1b4e0f6e3618, 0x3ff52d506ce4eb33, - 0xbfe3df3f13b486bd, 0xbfee92f398e2d38b, - 0x3fefba223b6f5d29, 0x3fccc4afcce18186, - 0x3ffe0d3fb49f4f60, 0xbffa0a62d546d3a1, - 0xc00186ddabe9b36b, 0x400071aea6cda1b6, - 0xc00fb9159a2caf88, 0x401348211fe19ac7, - 0x3fe9e8a5b422d833, 0xbff366a1693577e5, - 0x3ff01cc9b3dc8d55, 0xbff88b2dd040f8d5, - 0x40004b98bd1ffa50, 0xc005cd6cde41b18c, - 0xc01507cc8527f928, 0x3ff33df3075d90b2, - 0xc0075d86ecbb6245, 0xbfe91ded5b1280c2, - 0xc006ee390b59d526, 0xbfa5c6d766d6e300, - 0x3fd885629256e440, 0xc010a5900cd45cce, - 0xbfe4d3fdfeba4d60, 0xbffb028eecee4771, - 0x4012225a6c04b88b, 0x3fc7998c227b265c, - 0xbfeaf8ece18e578a, 0xc00e0266aa03126e, - 0x3fdd95dd87de8efc, 0x3fe9aa7abdc85a96, - 0x3fe4723bafd0e942, 0x4008614bbe86a144, - 0xbff0b4b8a8421539, 0xbfdab82072934e50, - 0x3fd4032447ba21f4, 0x3ffba0ac4342a829, - 0xc000649b847b9dc6, 0x400aa10fd73fe227, - 0x3fe8f382020f5500, 0x3ffd525e02170529, - 0xbfca792efd966500, 0xbffdf35607f24dcc, - 0xbff9f1415f8ad3e6, 0xbfefb751292e98c0, - 0xbffb24ff332c2684, 0xc00ea66ab74581bb, - 0x3fd987f39a043990, 0x40065c43d0387570, - 0x3ff4fc644c2a96e3, 0x400a4bac0fdc4eff, - 0x3fffef98d342031b, 0x3fe3b21c72fb0f08, - 0xc007e37d9ea66601, 0x3ffd11aef9d2d184, - 0x3fe5f9f672c180d4, 0x40112178eab97f92, - 0xbfd44857435ab520, 0xbff7bd866c04ea8e, - 0x4001e31cab7299c7, 0xc014b361f0c44047, - 0xbff7a4db0540d58a, 0xbff769252e32d99c, - 0x400bf23939069f0d, 0x400f7290b638813c, - 0xbfe845857ddb72b9, 0x3fdd1e06230056ac, - 0x400203e989388e92, 0xc00b6a3b30e9fc2c, - 0xbfef656341f8205e, 0xc0015052ab685919, - 0x3f72600241071a00, 0x3fd27d97f9470ec0, - 0xbfe2ba91d19aae8a, 0x3ff99120b5c628a7, - 0x3fe43ad4f5e80810, 0xbffc6be1c57bb04a, - 0xbff85561f61447ee, 0x3ff36de1970d55d4, - 0x3fae209a319d1440, 0xbffa40862eeb06f9, - 0xc007877b9aaf9a34, 0xc0091deeeebaa83e, - 0xc0023d28f777d93f, 0x400aa7e206b9ee04, - 0x3ff2f745002df0ce, 0x40073d67565ed2b4, - 0x3fd7e2957ddda67c, 0xbfea027152e61c03, - 0xc00b8e96d5357cce, 0xbfc067e4555b746a, - 0xbfd8f1b4368093c8, 0xc0088d3b2d803f7a, - 0x4017675df9a0c918, 0x3ff2c72bb04f9203, - 0xc003be764c9fe73d, 0x3ff355cbbdd38497, - 0x400e1a0a4d7b8c0f, 0xbfff8fbe52a68ec8, - 0xbfe20030908b1592, 0x4007b67e4b0a093e, - 0x4008f0605bd46a6e, 0x3ff81dcc0a1e185c, - 0x3ffaf33f5024e0b8, 0x4007e314ea682b5c, - 0x401e3ca8f6833bdc, 0xc00b181e84f56727, - 0xbfccd416f179bfe0, 0xbff4500d27997241, - 0x3fdf9b806ed4cff8, 0xbffa528c85a9e216, - 0x3fea1b3d0f8acaae, 0x3ffe2baaa302496b, - 0xbff9793762c3d809, 0xc000f8c34878b95f, - 0x400848886e7b4af5, 0xbfd7b26180a2047c, - 0x3ff96a608ea89e86, 0x40026069677219d6, - 0xbfff6014e97859aa, 0x3fd16f0ad26ee1c4, - 0xbfe22aa307bd6eb8, 0xbff77ae080deb970, - 0xbff012098ce4ae94, 0xbfd054bbdfbe1c45, - 0x3fff449775e01654, 0x3ffa23d808125126, - 0x3ff957a085989495, 0x3ff2316d54a67084, - 0x3ff0978a15016d34, 0xc01267d7100c3d7c, - 0x3fb96df32a2417c8, 0x3ff97f6cfb435fb6, - 0x3ff7afd4ef8666e4, 0xbffd83b170e44bfd, - 0xc005892039e6fe8e, 0x4001a4a5eca54057, - 0x3fee1e4e5d9a06bc, 0x3fbb3f938a5ad110, - 0x4005da0fbb8d7228, 0x3ff700afe20c3fb6, - 0x40127b81fbe6fe79, 0x40001913b8f9fc83, - 0x3fd73ad2c860dfb0, 0x401284ff7e3545ef, - 0xbff576e892ce72b8, 0x3fc666811fe158a8, - 0xbfba13649181cec8, 0x3fe7407f7f5c832e, - 0x4011dbd8953a6654, 0xbff7e21f825683ad, - 0xbff1ef3328b94bb0, 0x3fdfee3862f912dd, - 0x40026a6f1058a503, 0xbfed91511e9d8af0, - 0xbffc153f0c30420e, 0xc00154b8db8a376f, - 0x4002e1d6c12f2c2f, 0xbfdc5c8b54c79728, - 0xbff1787a84478a28, 0xbfc4191ba49b2ab0, - 0xc007691c05f6465a, 0xbfcb455ff9323508, - 0x3fff6b68072ae8a9, 0x3ff285feb8c8a301, - 0xbfd77a40cf9bb578, 0xbfefcd8d9854e387, - 0x4000385b85b2e59e, 0x4007f6b672210bae, - 0xc002fbdc4a14be42, 0xbff678a2b772f12c, - 0xbff9e392cb6b4cfe, 0xbfe4b61716fb2fe8, - 0x4000cb592c6f6d2e, 0xbff5632432d20f6d, - 0x3fe3866075e2e2a0, 0xc006e194af86213f, - 0xc00afe4f830e1baa, 0xc007dc3368ba0fee, - 0xc010091ef26fa9b8, 0x400b614c6d1a7ebe, - 0xc000433ca4f8e3c4, 0x400d6a12e25c8fe1, - 0xbfe00678260aff84, 0x3fe62648ae3342b8, - 0x3fe5b88837f48936, 0xbff564457664fd12, - 0xbfd755fca92b911c, 0xbff7b860fd1b5576, - 0x3fff8e08f67f4022, 0x3fff181b0cafc88d, - 0xbfdd3d9367e105f4, 0x3ff35ff88f7e22da, - 0x3fff8579262002fa, 0x400b6bf6694075d9, - 0x400abc8c85789f45, 0xbff7d1f88d357478, - 0xc0114be3a6f53768, 0xbfed442305bd6ea8, - 0xbffba5c9159125c7, 0xc018c6c860b7d07a, - 0x400afda24dcfc7aa, 0xbfd68fc2ff4c9b50, - 0x40118102d4e86ef0, 0x400821a4cfac849a, - 0x3fa1941e074a9780, 0x400014cea4c92500, - 0x3ff69074b5c71c45, 0x4005fc29286e6cb6, - 0x3f8554bf50346000, 0xbfe28bc163123f33, - 0x4005f4d5f76a6d88, 0xbfe5ee0487aa437c, - 0xbfe29577e21bcd86, 0x3fd6a6ad64d47238, - 0xc007cc95eb28333c, 0xbfee3572096e6d78, - 0x3febf7da7a995a70, 0xbff7f30ebcbb7340, - 0x400fac93f627f3b3, 0xbfd997c2570d0604, - 0xc001d7650b986c7d, 0x3fe2ff8957cc3d0c, - 0x3ffcc1a63da7457e, 0xbfe439408273b6c7, - 0x3fdd560ddf5e6b90, 0xbfe8e0f9192be27e, - 0xbfe98c93b4319db8, 0xbff16afbe3f66052, - 0xbfea9acbeb60289c, 0xc0123b65225cea34, - 0x4002b351e995ac90, 0x400037b86763f615, - 0xbff260b8b40f526c, 0xbfe92c906731542c, - 0x3feebbf1eee59761, 0xc00075fb7ff1a7b8, - 0xbfc685f05a3b5b5c, 0xbfe82396674ce06c, - 0xc00b602e8f867184, 0x3ffa35ee78b63c48, - 0x3fd04223fcff6756, 0x400e0522a6bed3ea, - 0x400fc20b81dd46fe, 0x3fe2cd3e059b8248, - 0x3febaaa9b821b426, 0xc007f4fa0da3325b, - 0xbffb0eff52923a41, 0xc00a9e0f1f9fae31, - 0xc0012f9896f5c227, 0x3ff5ed5abf2bab76, - 0xc00d05f1b6e8ecb0, 0xc001baa770d64ea1, - 0x400df043fb2de9b2, 0x3fd8427bc4eb3de0, - 0xbfdcc093ff6ecfd8, 0xbfeed321f2a656ac, - 0x4016c6e31c5fec48, 0xbfe88a3bddce98a9, - 0xbff4fdd66d2c0067, 0xbfe1b1ac3c32ab58, - 0x3fcd020868d316e8, 0xbff6c4f3ff2af40f, - 0xc007a33126222c56, 0xbfe1b66d01165696, - 0x400d3b1775a8060e, 0xbff7cc2709ec3ad0, - 0xc00cef0ac7e5ab36, 0xc0011b53baaa2e59, - 0xc00ed0221ef5bc2a, 0x3fc835e650e06698, - 0xc0052da62290baae, 0x3ff94b4864dac0d0, - 0x3ffefab2dd9b9a7e, 0xbff0dee7227b6169, - 0xbff502f4a4efe1d1, 0xc002080d33c1c92a, - 0x3ff92e3d478845a7, 0x3f76087e998f4580, - 0xbfbae1e9d6dd9cb8, 0xc002c476bdaf87e4, - 0xbfeac539f8c4a2a6, 0xc0030992fe9f0a07, - 0x3ffc218a0cf98eaa, 0xc0096faacb761bf4, - 0x3fe6faca6b7c9d6a, 0x3ffad3c12dae3d18, - 0x4001c4bf2265defd, 0x401b1cb919f4341e, - 0x3ffaa3148a688060, 0x40005d048d30cdf1, - 0x3fdac2a1ccad6634, 0xbfe2876ce8c439c8, - 0xbfffdee37812df64, 0xbfffaf2431558a08, - 0x3feec4be66c894a4, 0xbfe02ad28fb5702a, - 0x3ff4f593a5c69248, 0xbff5771731d2aca7, - 0x3fd531fd7503ca70, 0x4002d36335166f6a, - 0xbfe9221701ab4814, 0xbff338a01938ab97, - 0xbfeef934507cbcad, 0x4014fe64d2b9c231, - 0xbfddb5b2277d67e0, 0x3fcfc9349ec82bd0, - 0x3ff5bc34515f181e, 0x3faba1fcb31934c0, - 0x3fd9735153bd0b84, 0x3fff416ef60fe20d, - 0xbffdd359f2acc9b0, 0x3fe95f917d33204e, - 0xbfdff51db7db9a70, 0x4004fbd8c0d39eae, - 0x3fe57433002dc2d0, 0x3fd83f37b9062b64, - 0x3ff5092fb1d9a589, 0xc004bfe652895938, - 0x3ffc4039c1a55309, 0xbff1940f36cfac94, - 0xbff14fe638890f40, 0xbffa7d8e69f6c392, - 0x3ff2c18c9da33b53, 0x3fc2f315925d341c, - 0xbffb28ce6a2e2384, 0x3ffed6ba01d0adc1, - 0xc007cc24b74ec56c, 0xc00576a9c8bb3b0f, - 0x4003d9c263e772bf, 0x4011afd26ae7762a, - 0xc0020b2539d008b6, 0x40068180538fdf24, - 0x3fec5a8099931478, 0xc011289cc564b5a0, - 0xbffbf22cf5843da6, 0xbff3398156b81cb2, - 0x3f788c4afe620800, 0xc000e42ad114c5ec, - 0x3ffd40a3f6cc2b5a, 0x3ff58e64e4c05dda, - 0x3fe78835eb9327c0, 0x400f802a53f15892, - 0xbffdc991022e3948, 0x4004724e2ccb40aa, - 0x401f13e197e2e0d5, 0x3fd365633749458c, - 0x3ff079502cf0b23f, 0x3fd948f29d525158, - 0xc00e182ecf6da4fc, 0xbffe83233bc2308a, - 0x400998092d69deaf, 0x3ffe46f3d1c8cd51, - 0x3fb7cd577c479040, 0x3ff2fee42b9c8776, - 0x3ff10a337b538f0f, 0x3ffa6ebeffc33a9b, - 0x3fe6ad47c3666e2c, 0xbfe297c3b25f886a, - 0x3fe6fddc420371b2, 0x3ffd6a37e5a6e704, - 0x3fe749474078d256, 0x3ffd25a3d2abe212, - 0xc006677d6b8a1942, 0xc007af660e661a43, - 0xbfde8cd71cbd7428, 0xc00e27badae73364, - 0xbfff4c294962ae7a, 0x4010b2013f690458, - 0xc0005045bdc376f6, 0xc0060eeb8cd51b15, - 0xc007fc0584c27049, 0x3fea8bf163fe9d7c, - 0x3fc28b6132a37f58, 0xbfe38f1f6c6382ce, - 0xc0055380a7bb29bb, 0xbff1095f301fda80, - 0xc0020c3a4285d6d9, 0xbfec5129c0f4b7d0, - 0xbffdb556521540bb, 0xc00e20fa73639cdf, - 0xc00dd50bc095a99e, 0x40057d6c5c840680, - 0xbfdb27f342ec0f4a, 0x3fb02f584ee85350, - 0xbff28f292e53cb06, 0x3fded120e237a026, - 0x3feb28894331876c, 0x3fd25b1a02157676, - 0x3fe743bcb12ef634, 0xbfe8233e46392f34, - 0xc006e0b578144686, 0xbff428ad07eb0309, - 0x3ff8b54a56794ce9, 0x400ac7348503ba42, - 0xbffefb57395bf7ee, 0xc005d444f3c240f0, - 0xbfe934ab14b1e1c2, 0xc0073b0171ab9a20, - 0x3fd363bc53c54b6c, 0xc0020a46ac47b25a, - 0xbffa9526347d5b98, 0xbfdfb3c48d72e73e, - 0x400a374261311ea6, 0xbfc0148d33ce9528, - 0x3fbf89023ec82c20, 0x4006cb2cc55b1e78, - 0x3ff61abc649b9fdf, 0x4000a945aad05356, - 0x4004346c7fbf8908, 0xc004d51e5ba0dbf5, - 0x3fe03eba079744fe, 0x3fdbfa3018e493b2, - 0xbfef09bff6da8ee6, 0xc00b34bc476abc8e, - 0x40007077730fa08b, 0xc000841bc7af8e69, - 0x3ff3bc0f983a0056, 0x4001dde601101813, - 0xc01403cbfcfb2112, 0x3ff03dde57d5d7e4, - 0x401281c37ee62718, 0xbff086c8248fc9c3, - 0xbfca7f7ef96fdb00, 0xbfe3a458257f73f7, - 0x4003a867bc3fbc59, 0xc0022a5f20875c28, - 0x3ff0732be35733ae, 0x3ff91ff2e9f8116c, - 0x401039dde8ebec28, 0x401be4168ff0c23f, - 0x3fcb47a1d642c218, 0x3fdd10ccb5df31fc, - 0xc000260679c878be, 0x3fffce7b6afcf99e, - 0x401324bdefb9fa6b, 0xc004bd7f74203d13, - 0xc0078fc291c8b2c3, 0xc007741db040dbaa, - 0xbfe99de69c170514, 0xbff3e65b519eee18, - 0x3ff370e5f5e98528, 0xbfc07e6f3910c4c0, - 0xc010c6e1259834d2, 0x3fcb534e0a530b80, - 0x4001d9f00aad31a5, 0xc00859235ecb9f58, - 0x40085d60c34e93b4, 0x3fbd9c16172d9620, - 0x4010f4785d04db50, 0x3fa0985dd8299d60, - 0x3f936bc91f4bfe20, 0xbfe304206cef3257, - 0x3fe22771e304cc3c, 0xc00e9afbaa037904, - 0xc00df53d237ee114, 0xbff51b0f9e0dfcba, - 0xc00ee785b67c8b95, 0x40193835ec5c2b61, - 0x3fdf62e5779b1c30, 0x3fc8679d6043e590, - 0xbfcba3d5986a6e18, 0xbff2232a4e839dbb, - 0xc00459d3e4bfe4ce, 0xbfbc83ffa0664870, - 0xc005ee489fea39c0, 0xbfc9574515fa2300, - 0xc00cb03d8b812375, 0x3ffaf22ef5381848, - 0xbffefe3cfeb55a00, 0x40027cc108693ef6, - 0x4006458f28dfcc02, 0x3ffbfb75fa02d8e0, - 0x3ff6c906ea0ce739, 0xc01068bed425610f, - 0x3fcc1e1224e1b5c8, 0x3ff87df794582ad2, - 0x3fc395bbf108ecd0, 0xbfed4b3cc3d91b62, - 0xbfface6628297b8b, 0xc004d14bc803d5d8, - 0xbfb6ed8048a6f2d0, 0x4009ac426150446d, - 0xbffd7948004f9e0b, 0x400026459c214abc, - 0x40020bf97fee8a69, 0x3fb7773478f4dc20, - 0xbfe2d1ffe7d2ff0e, 0x3ffe810ae590c8fd, - 0xbffca2178b8662a9, 0xc00d8e5fe05a4efa, - 0x3ff5b0ca1fd9e87e, 0xbfd9828a20a68d1a, - 0xbff641a1504fc86f, 0x3fdc516a3272f59a, - 0xc00343a9bfc20ee1, 0xbff8ea5137e1d1a0, - 0xc0107cfd3988959a, 0xbff2f98f5f9f96cc, - 0xc005b683d2b29b71, 0x4011c759ca69a95c, - 0x3f86450959fc0240, 0x4005b3a4049817e6, - 0xbfdb458018abe8f4, 0x400d2bcc81dd83f9, - 0xbff96496cf523bd6, 0x3fe8cf1a8a64f7bd, - 0x40090208e2a22042, 0x4000294dda7754ba, - 0xc011b6ba0d6e395a, 0xc00e1d537210068e, - 0x3fdb415b805ab4fc, 0xbff60600c90b9c78, - 0xbfc6577d5d6fa7d0, 0xbff95ead8c3379ea, - 0xc00587bb1644bee4, 0x3fc75d61fa049910, - 0x3ff94c31d8c6805c, 0x40040d2daa8cac5e, - 0xbff27e35c7bc5c4a, 0x3ff2a711a78842ae, - 0x3fe5c7fb03f309b4, 0x3ffe3d8063a08f7b, - 0xc00203156b393e1e, 0xbff53def958b4ed5, - 0xbfd86dd287fc455e, 0x3ff71ef1c49c9fe4, - 0xc00554f596c456fa, 0xbfe8a6211e2900f7, - 0x3feb90beb6260733, 0x3fcd83f11696288a, - 0xbff2a75bebddbccd, 0x4003ab48acb6f96f, - 0xbfd75c5926cd7756, 0x3ff7941f6fb35634, - 0x3ff39c54680fb9c4, 0xc00362e38727ff33, - 0xbff331ec56694808, 0xc0100c0ea9b6b7ab, - 0x3ffcd43697af1349, 0xbfe05917e3fc425c, - 0x3fd3e1acab215628, 0x40078c4e7799fba0, - 0xc00748d71e01c64f, 0xbfd47a6df7186522, - 0xbffe160e3022998e, 0xbfe04ebdf4251c46, - 0xbfeaa75d1ff7fc9e, 0x400015e416c51d82, - 0xbfee329760cbdae6, 0x3ff8be8c72b59a93, - 0xbffe341b4d750082, 0xbffbd72b4510de40, - 0xbff55b57f71ca6d0, 0x4000b31edbebd3b6, - 0x3fe45ef25d342c3c, 0xc0049bfe78065380, - 0xc003d211a74304f6, 0xc00591067fe04b77, - 0xc011e46ac7e225ab, 0x3ff9b31cb4df9f5b, - 0xbfca57cca8a81068, 0x401327e02fe0a126, - 0xbff1a49fccde9227, 0xbff518d21f4c9d3e, - 0xbff1f9527c417961, 0xbff4176327fb56f8, - 0x3feab19aaaff2642, 0xbfff3d81de3a342e, - 0x3ff78a15383edd2f, 0xbfe934e755956108, - 0x40008d7004bfac26, 0xc000284eaefeb6d7, - 0x3fe725f89674138a, 0xbff6f434de1a8a5c, - 0x400a6b694a42189e, 0x4008b6658150a931, - 0x3feb703b4198fb6a, 0x3f917c4d47349280, - 0x3ff847b57d737389, 0xc0031f71d9f9abec, - 0xbff71dc3c526d604, 0xbff16c9d43cbf8d6, - 0xc006968e527655d6, 0xbff2cb5f89e10b1b, - 0x3fc7b643a42eb2e0, 0x3ff735226c9067fc, - 0xc0184101b90b1a7c, 0x3ff4ef3a371f3d8a, - 0xc00172ff91bc06b2, 0x3ff08949d500b914, - 0x3ffebae8f91c649c, 0xbff30befb0e0705e, - 0xbff4a97511ad4a6f, 0xbff2a5a4ef3ac078, - 0xbfe8990fc59db175, 0x3ff0e85f6afd4737, - 0x3ff823a501828562, 0x40015d0d43cde7fe, - 0x3fe8410a43ebf24e, 0x4000aa1a1a3e2f54, - 0x3feeccdae0e9d3d6, 0x400fc21b1a41550e, - 0xbffbdea27221db2c, 0xbffe05d285130038, - 0xbfdf6e4890621070, 0x3ffc95d0d9549311, - 0xbfdb5eb5a0912dc8, 0x3ff73abf5102efa8, - 0xbfe3903c659dd8e1, 0x3fca6bd9842f1230, - 0x3fe4073d105b7422, 0x3ff0cef6863e0376, - 0xbfe10902081ed6a0, 0xbff2ea0b79d87752, - 0xbfee38599593b001, 0xbf9984bf868c3640, - 0x40058926f4d5e512, 0xc00401e7aff403c3, - 0x401b98f5dffbed9b, 0xbfabae75fa7c7c40, - 0xc0056cb69ce7b0ea, 0xc00ab95713331d52, - 0x3fefc300e685bfbb, 0xbff0299987f1972a, - 0x3ff6921f41980436, 0xc0001c9f340544f2, - 0xc0037ebb9b4a9c41, 0xbfef27f6e27e79c2, - 0x400f41f1dc702576, 0xbfed42406dca07df, - 0xbfe79838b05ec6ce, 0xbff18c19fa4c0295, - 0xc002858e4ddfeae6, 0x3fbc643d0e3c30a0, - 0xbfe0049b1ee8cd6e, 0xbffb1c3851fbff08, - 0xc009e726b7515f3a, 0x400b7d096a0fbb86, - 0xbfe560078b5246ad, 0xbfe77f410dab043c, - 0x3fd5ae078a6483da, 0x3fec41dfb6d73466, - 0x3ff36949da7ab247, 0x3ff5ca5b12f2e2ca, - 0x40132d4abb038b75, 0x4005042d1f7442ea, - 0xbfe372e2acf980e8, 0xbfb3c32d4a70c3d0, - 0x3fd2061cf1775f64, 0xbff6013dbf2ad297, - 0x3fc4662a33376290, 0x3fda88aeef6cecd2, - 0xbfe975366cb3e9ec, 0xbfc580c4ca6c70b0, - 0xbffe16811f9a44ad, 0xbff3d370899bd5c5, - 0xbff32fc29c9a0540, 0xc002edda96e451c3, - 0x40007260d48257a0, 0xbfe3fbc7ba9d528c, - 0xbfb8e2da64d82b60, 0xbff766a6497d3eb6, - 0x4006ef609c44f3bf, 0xbfc5406547e44c60, - 0x400035c47b9806c5, 0x4011953cc72b1528, - 0xc00b3fb30cda30d8, 0xbffbb158e21caffe, - 0xc010a6df89d9103c, 0xc009ad63fec2e732, - 0x4016f37bccb56d6c, 0xbfe3d96a321a687c, - 0xc011e058bb464180, 0x3fe0bd3edd774b64, - 0xbfef2b7005a5c48f, 0x4003d3b5245d2155, - 0xc00303e0f06b31c7, 0xc001f8e48ca347fe, - 0x40109d17ff9f8168, 0x3fe0a24e86a0f1c6, - 0xbfcd4f5c3eace370, 0x3fff7410fc227639, - 0x400bb4c2b4be802d, 0xc0005d70418367ff, - 0x3f407cd4dcc36c00, 0xbffd18464f324c72, - 0x3ff1c6d1921d7598, 0x3fb1f2cb0b10aea8, - 0x3fdaf7c3c3074cd6, 0x3fc36488aea7e620, - 0x3ff1cc34e55d471a, 0x3fff50419c3f104e, - 0x400f8e5afda708a8, 0xc004eb76a1220f49, - 0x400256cb16ac2fa9, 0xc005079e514a90b6, - 0x3ff67fa07d60b8c6, 0xc010b9abc8f45592, - 0xbfe54d506723c9c2, 0x40050e1d3abec080, - 0x3fece140a0dac398, 0x4004dd0d6db71dde, - 0x40109d6925a8e756, 0xbfe1e6c5856a7754, - 0x40128d90fa8395ae, 0x3fa1b795e7795cc0, - 0x3ffb6b0c55f4d6dc, 0x400525e5551eb692, - 0x40051522aeaaad5f, 0x3fe42bad28785484, - 0xbffe94e496022c73, 0xc01e85b7aa50fb12, - 0xbfd25400a421ba64, 0xbfe27b8a9be2ea6e, - 0xc01a4aa98a00f0f0, 0xc00baa2aad4690cd, - 0xbfdfd07b8c39f1bc, 0xc009490e9bb47856, - 0xbfffafa3ebfd66ae, 0x40111a21a0391b16, - 0xbfba7d0da9a83f88, 0xc00bf260c342b258, - 0xbfc1bad7837b84e4, 0xc00cd93f720d4ca5, - 0xc0038d86ad15e33c, 0x3ff0dadb78c5e2f2, - 0x3ff99742045f15fb, 0x3ffa6da21e33e87d, - 0x3fed19ed596af1f5, 0xbff8422e0416c978, - 0xbfdc58bc32f42310, 0xbfe9e310b67d93c4, - 0xc00b4be2bb8789d2, 0x40124814c3b39e58, - 0xc00f999c01d0eef6, 0xbfee74f2537efcdc, - 0x40171d13879cf17b, 0xbf69126af3754000, - 0x4006fd6b8a8dd765, 0x3fd99753d02c33a0, - 0x3fffd1affcbc5566, 0x3fde761ef5122fa4, - 0xc010b5b200999274, 0x400c06c2050c077a, - 0xc002b23cbeeea10e, 0x3fe838578b229304, - 0x40049b1b07fef22c, 0x4000c34f22edd953, - 0xbfefefbc08fe5ea0, 0x3fdfca826f016328, - 0x401204d32bfb490d, 0xbffe68620846ffb0, - 0xc0056d52e28c193f, 0x400ebef7aaf33c60, - 0x3fe5dd3ad999c67e, 0xbfeb5d883fa6a864, - 0x4016bae93896cb76, 0xbfee77c3aa55930c, - 0x40027d383d669870, 0x40107a42690d0f3b, - 0x3fbf1bcccff79d60, 0x3fea9cc7356bcaaa, - 0x3ffe11b90072109e, 0xbffc640832f30646, - 0x400179cd376d3e3f, 0x3ffb6c0d0fadfb24, - 0x400cdbf59ed30e55, 0xc00199082a4b14d8, - 0x3ffa68bff8afa685, 0xbff7c9159b4cdd29, - 0xbff1434998771d7f, 0xbff32d66947246e5, - 0xc000d2ee4b8cba1e, 0xc000e4d341e8c0f4, - 0xbfeb9c34080d64f8, 0x3ff27fa19b96d866, - 0xbff7f161bc758eff, 0xbfeb955c266392d8, - 0xc00d5f3644af70a9, 0xc00a5ec82641f96d, - 0xbfe08698706e1a3e, 0x3fcdddc7744400c8, - 0xbfc7ace2c632e6a6, 0x3fefb6da00a70b38, - 0x3ffc1a5b74c95312, 0xc002a445b11411b2, - 0x401270465ce6a3ca, 0x40038474cd7e2f83, - 0x400c7b7a7f66fafc, 0x40051b4ffbdff810, - 0xc00025c04d7bbea4, 0xbff54d7cfd3ad0b2, - 0x3fb69d3bce563e30, 0x3fd89d7b5e31a89c, - 0xbff2d2ed3f92a059, 0xbf8cce5e1bb60780, - 0x4000701b875bb364, 0x400122ae28cc8e2f, - 0xbfe2b99fe3ed5bd8, 0x4007a67fa5e0a51e, - 0x3fee36482992225b, 0xbfe0182ecf899dd8, - 0x401022dc652c9966, 0x3fffc28370dd773a, - 0x4009779683aa1581, 0xbf97642f8eeb0500, - 0x3fe66620319d0f30, 0x3ffd528fa49d01f2, - 0xbff13359ea66632f, 0xbff15e5d259dd0d3, - 0xc00fabd376ba7760, 0xbffdf1af849a294c, - 0x3fd7de0f8773f4a6, 0x3fbe3325b92364d0, - 0xbfe886560efb6350, 0xbff74699d9e554cc, - 0xc00da1398261e400, 0x4005bb9227543b1b, - 0xc0097ce33189bfa6, 0x3ff1d9889c6d47e4, - 0xbfa09981e8d95c00, 0x3fff481af71a9a5c, - 0x3ff237e03e299124, 0xc00c2f1db46ce5e4, - 0xbff55102f8e031ab, 0xbff06f285f8ce82b, - 0x400e1cbb56f9a4f6, 0x3ff04de816a39ee0, - 0x401008f5a5cc7ac0, 0x4002565c6b9a9045, - 0x3ff4cca8a48f75fd, 0xbfffce350ae245dc, - 0xbff871576c39af82, 0x3fee7a4f705e2900, - 0x3fd35a02a53ed400, 0x40053dc93b031feb, - 0x3ffb33d7a727b38c, 0x3fd3b5a8aea8c4fc, - 0xbff0aaeb52c4d9f6, 0xbfd794c487d27b98, - 0xbff6ebc32ebe8d4f, 0x3ff98a5c831ff57b, - 0xc0028604b69adef9, 0x3ffaa116d2b15c65, - 0xbff56245b2cfe37b, 0x4010ee61d3786822, - 0x4007315a0bdba7a0, 0xbff111ad1a69925b, - 0xbfe1edc6a22506a0, 0xbff2e56c2523241a, - 0x3fd06c0ef83c9880, 0x3f92d762437399c0, - 0x401863ee28b1960b, 0x3fe9735422517566, - 0xbfef0973b4181258, 0x400e588a16afa236, - 0xbfd52432a007a532, 0xc004cef0c703d725, - 0xbfe0b59432a25fad, 0xbff331a61c7c82ac, - 0xbfed77d31715cfbb, 0xbff50064a2486eac, - 0x3fee47d48fd10bb4, 0x3fd04df76fe6c721, - 0x3fb286bb053a4cb0, 0x3ffac99ddc0d4198, - 0xc0011c7069b4ead9, 0x40017d45f3a34f33, - 0xbfd24416ee7fa320, 0x3ff3814d9a2bf346, - 0xc0040c490784c9de, 0xbff58dd3ed65c13a, - 0xbfced56dc8e093fc, 0xbfe5053e572b4e6c, - 0x3ff7340fa2fb4d17, 0x3ff38b899fa74b1b, - 0x4001600bdc70c820, 0x40085350a730ab52, - 0x3fd188c7ca165774, 0x400e62f96795035c, - 0xbfd12c584f221e30, 0x3fed6bd5c1831e06, - 0x3ff4c7d058fd67f9, 0x3fb23ecf6baa19c0, - 0x3fc3d169ab12bb34, 0xbffc90ecb1147bfc, - 0xbfda8b520bf7f40e, 0xbfeb4d38db8d3406, - 0x40055026e7ca1bd9, 0xbffaa1d6116a0e0a, - 0xc000561882b4f706, 0x3ff3d5b1bbbd8211, - 0x3f43a951f44eb800, 0x3fe42d611bdc90c6, - 0xc0010b8c5a1cd710, 0xc015d5d83629f499, - 0xc00bc60837985e86, 0x3fbfd45139f85600, - 0x3fe71dcddd901dd3, 0xc00c74164bf07103, - 0xbfeb204f009f44ec, 0xc010a30c925d27a6, - 0xc0077bf3a12362fd, 0x3ffe7d2e9f5c5aaa, - 0x400f798149641af7, 0xbfa04c841d6b7b70, - 0x3ffd570da311030c, 0x3f7a0d2950357500, - 0x3fce352ba58f1018, 0xc0009241d45fe3d6, - 0x3fd1bd1d8494ad30, 0xbfd287594aadf95b, - 0xbff98cc71d8252ad, 0x3f3984bccb7f6000, - 0xc007a4b0aa23202c, 0x3fd7d46d7dc8a4ec, - 0x3fe3e7c0ccfb5d86, 0xbfea2de3e80b9bc2, - 0x40051465b338a38c, 0x3fefc08da6a25b26, - 0xbfd6afb92514df94, 0x3ff85f3320cf47df, - 0x4015f23f4687dbd5, 0x3ff80b165a6185aa, - 0xc000db153165b15c, 0xbfe40abc0ce396cb, - 0xbff567367a659284, 0xbff9edf9dc3bb1ce, - 0xbfbae89bf8077732, 0xbff134e099aebe75, - 0xc0065c3cb6bdab14, 0x3fca8b23a049ea68, - 0x3ffeaa86770479f2, 0xc000342834868adc, - 0x3fe2553c68be8466, 0xc00819dd0f4351d4, - 0xbfeee225060720d8, 0xbff868c3905eac94, - 0x4010dd3f346bd9d0, 0xbfe45436ea24b74a, - 0xbff7e616bc22eb42, 0xbff51ea2723f8aaa, - 0x4001f57922f19cfe, 0xbffa382e81a9e75c, - 0xbfe5703d91865f44, 0x401054a3a4117ddc, - 0xbffc6c1d682571cf, 0xbfe338565583e56a, - 0x3fed757b0d2e68d4, 0xbffe3b0bfc2865c8, - 0xbfde7bf394d503ce, 0xc00d0510ae87e1b5, - 0x3fc21ddaf4786568, 0xbfedae7fa37c6718, - 0x3ff88acd99961fd2, 0x400a5e1ea1be1c97, - 0x3fef428dc33a5de6, 0x400fdb4eb768ae5e, - 0x3fe6aade5f06c38c, 0x3ff890797795db7e, - 0xbfc16a8eec92a470, 0x4011afdde79ae650, - 0x400e5c31795557d4, 0xbfe73f98236ac098, - 0x3fe821185dd53d6c, 0x3ff34a793d20c3e8, - 0x4005eaa97c4830ce, 0xbfd557f4a95748e4, - 0x4004423311e2265a, 0x3ffcf1cfe82e95e0, - 0x3ff9710f3ab9db75, 0xbfff57e32353d6f2, - 0x3fd50a72b9e724aa, 0x40129124e7a024a6, - 0xc009e6392954aba4, 0x3fe8125a57d636b3, - 0x3ff758e775370cc0, 0x40044d1825620e93, - 0x3ffb3058e9353e61, 0x3fefda361c4bee54, - 0x3fe56c213988709a, 0x4005e92be9e56a10, - 0x400350f7ecd171ef, 0xbfd8a0a6e6e13810, - 0xbfd08608eb7ec77c, 0xbff27685eb92227b, - 0x3fbd570884c4bd70, 0xbfe2a3c6228cf968, - 0xc0041134bcc904ba, 0x4004396f90603e43, - 0xbff1fba016d6429c, 0x3ff7f84fb5c7033e, - 0xc0092b1ad03a07ea, 0xbfffb892f7805153, - 0xbff087be716081e3, 0xc00632d85318f5f0, - 0xbff57ca7a556ae29, 0x400dbfd63f369763, - 0xc0099c6e775b38d3, 0xc003f260d0c306cb, - 0x4000f0fa0f578b4e, 0xbff0e70e23105223, - 0x3ff052761367abe1, 0xbfdecc1f7b54510c, - 0xbfe9b9ca8dbe9e22, 0xc008f7ab0df21f7e, - 0xc0048045a7a0a38a, 0xbfe826bcbc5fb994, - 0xbfeafa7c96bc410f, 0x40094a28f77ee666, - 0xc011a73b4e9dd637, 0x3ff796e7f5cdcfdb, - 0xbff057b1d4448c54, 0x3fd78087768c83ec, - 0x40153d9416e1adde, 0x3fe32f70104405e0, - 0xbfe37399bb71835d, 0xbffba493ff981d6d, - 0xc00640879a49eae7, 0x400f4a7a7f68f1ab, - 0xbfaa9225b52f2340, 0xbff0da5fcc51edd0, - 0x3fb3135c26b32140, 0xbfe8810006414ee2, - 0xc0056eb6bdcdead5, 0xc00cf7db999bde39, - 0xc001d8f168f38c19, 0x3fca1faeee0b42b8, - 0x3fd58e2c33f1b9ac, 0x40117183f84f1401, - 0xbfe4ac6a1e7d05eb, 0x3ff6ea12832ba974, - 0xbff236c75388ffb6, 0x3ff962c41fee574e, - 0x3fc5ed72aa0bf2ba, 0xc002c1e5d8150d6a, - 0x3f81da0b3ff4b600, 0xbfd4db8ce60a7864, - 0xc0029485307d307a, 0xbff516bf4a41f134, - 0xbfeda4787ca86b90, 0x40012fedfe5a2e8f, - 0xc004fe6cc6034819, 0x3fe30f5270a9c24e, - 0xbff40e75386dda6b, 0xbfe8e7aff416f558, - 0xbfe35e3c939ee460, 0xbff7bd4dc5930c0c, - 0xbfe7d0e9a30ed827, 0x3fd51ceb87f8ab62, - 0xbfd4c327fcc93dfc, 0x4009246480cdaff3, - 0xbfd382fc8dac4e9a, 0x3fb1397854d66660, - 0xbffa86a56795e28d, 0xbfe6c480bacb396a, - 0xc00f313d7fbcc752, 0x400df779f8f9ea67, - 0xbffce2fafa1b235c, 0xc011cffcaa933650, - 0x3fdd1b34a0222754, 0xbffb1d24b5948396, - 0x3f7fca3df0ae1b00, 0x4007682732f2d10f, - 0x400787a2405660c6, 0xbff0d862abf7292a, - 0x3fd6ac4b47818ce7, 0xbff97382cfebeb58, - 0xbfe8b1bac6140d8c, 0xbfc47037bce94710, - 0x3fda96dd1ff2f100, 0xc00e559cd66eb350, - 0xc0098c04d35743d9, 0x3ff795608bd2be98, - 0xbff20eea9e8ec7b8, 0x3ff479d855b26366, - 0xbff7fb12839e339b, 0xc014ef6e70923d4a, - 0x3ff2f1c97e055e99, 0x3ffa4c5bc4992816, - 0x3ff2b8592286655a, 0xbfef51fe72a2d79c, - 0xbff5b5157954c070, 0x4001dd1f45321726, - 0xc0068026798a071d, 0x3fa611392c7f36c0, - 0xc00dd0df9d20459a, 0xbfd796ed7fa84a42, - 0xbff8734b072d7d48, 0x3fe080e9f4b63622, - 0x3fee9438b8f59d24, 0xc004c8cc8b305518, - 0xbfb689dee3c83638, 0x4001c1857ac542a8, - 0x3fe2fd48bab5138a, 0x400028ee50b5a79c, - 0xc0050b9cc16acbc7, 0xbfb6e56e88e75d90, - 0x3ff9653e3907558f, 0x3fed50cd3685dcb1, - 0xbff06850788444ba, 0xbff197f9984acba0, - 0xbfff487940d555ac, 0x3ff47a1e0d133718, - 0xc012a90ed8f70beb, 0xbffc6f1a6907426a, - 0xbfc379bc49e63a18, 0x4000653291346454, - 0xbfd80c1da303667f, 0xc00187ff2fe67619, - 0xc005440726bbddd9, 0x3ff20392587711c0, - 0x3fea477502a22986, 0x4008f382be4244d8, - 0x400f233aaecbd84d, 0xc0080e10999fc7d2, - 0x3ff6095ee03e8605, 0x4000016bbd8334b4, - 0x4010b32fcc60f530, 0x4011e6c605336aff, - 0xbfe1c3ccbfe7429c, 0x40016a9b4c1997e2, - 0x3ffa98798dde57ad, 0x40169fcec0f3298a, - 0x400be3c3943853c1, 0x3ffb03f6ec0e846a, - 0x3ffd3af208da0326, 0xc00315bbc933ad2f, - 0xc0034e9cf16c8a28, 0xbfe9a01445051834, - 0x4003c8b2d43aeb6b, 0x4006ab18c55ce4a8, - 0xc0071f4f877724f4, 0x3fddd4d1e011f630, - 0xbfe825f90e3ce048, 0xbff1af8dcb2ba466, - 0x3fec67a64e50ddbc, 0x3fe570bf89a3220f, - 0x40004ffc57da198e, 0xc010a7349a792407, - 0x3ff5915414f73f79, 0xbffcf8c5d97478fc, - 0x3fce3252ab4fd8d0, 0x4000a60d3476a931, - 0xc003e93af0d044b9, 0x3ff23942f5e538e6, - 0x3fd19b168a569d94, 0x4011b49c4391168d, - 0x3fa9e34b55579f80, 0xc0067b7b4f5b1963, - 0x3ffda4df9dcab512, 0xc0069eddc0a4c518, - 0xbfec1673be869286, 0xbfe77977d2a6614c, - 0xbf86350394ed4900, 0xc001bda467922fd4, - 0xc01385af8eeaa2b4, 0x3ff297e0beef6058, - 0xc007208eddd4a8c6, 0xbfe594c4761aef82, - 0x3ff1620f9cc0b31c, 0xbffda7d747a328a6, - 0xc009dd04526115fb, 0x3fe3f7e07b3b30af, - 0x3fd9665833824504, 0x3ff323ab51877023, - 0x40057ad38f84c8bd, 0x40062649b9de54ce, - 0x3feca54bc81c8927, 0x40019ca8229c0a7a, - 0x4016416e9f08eda6, 0xbff36990ad6ebc8e, - 0x3fe11856aa651ab4, 0x3ff33540c8ae46e1, - 0x400c85edfd3869e4, 0xbfdae110248e31a7, - 0x3fe81378f684c1c6, 0x3fe23f9ed24aa378, - 0x4006328090b9d464, 0x4002333fa5a5aa76, - 0xc00b4aa24aed85b1, 0xc0065518e1573ff2, - 0x3fe4903ae918a665, 0xbffcc6240e5f4014, - 0xbff96ba1de1eefc0, 0xc00a9936062d130f, - 0xbffc2110abd93340, 0xc00174a5792a89e8, - 0x40104bd88c2c9303, 0xbffe43daac6ac4d7, - 0x3ff40981b9895ee8, 0x4003148b63f6bafb, - 0x3ffe2a5e8306315f, 0xc00adeef63f2b01a, - 0x3ff09f442f96d0fa, 0xbfe6da989b22fbf5, - 0xc0006dd46b13d056, 0xbfe6b846ed3583e8, - 0x400189be7a3d2e16, 0xbfcaf04c59f2b768, - 0x3fff53136c33dc3f, 0x4011c3132d2095ac, - 0xc00649129688e980, 0x3fde445f2569ee38, - 0x3ff2d036d31e15ec, 0xbfe8dd14c7819133, - 0xbfe2c72c0f4fdd93, 0xbfb731816ff1c870, - 0xbfee56dfc7283d6c, 0x3fff43d8fd7dd203, - 0xbfffa6b76347fa3a, 0xbffa0af2d51ad34a, - 0x3ffce8624b7af6f7, 0xc0008b02f4444669, - 0xc0024a347e86aad5, 0x40065d28ed2ae23c, - 0x3ff354f0b3020d4c, 0xc000913b05ca0c17, - 0xbfd6cabe7d7bf168, 0xc00555719614eef6, - 0x4003516d1a78f62b, 0x3fed79d3a829df84, - 0xbfbb59fb50c9fc90, 0xc01159fcb37b72ae, - 0xbfbe605f4e375228, 0xbff508ad23e1e555, - 0xc01096feb060054f, 0xbffaa67d040a9c24, - 0xc0026f48b434bec8, 0xbffca86772c17a6b, - 0xbff4ec15feb6d4e1, 0x400a9f44f548e034, - 0xc002bf8a4f996f6e, 0x3ff35ce3f95643b9, - 0xbff9aa55af1671fe, 0x40044b8d35db394b, - 0x4002aee5a936f122, 0xc00671114acd58fc, - 0xbfe9d87d565432c6, 0x4004e761ecaeb9b6, - 0x3fec21e77f0601bb, 0x4008fb30aae622ad, - 0xc00ae90b7d2cb140, 0xbff4424f3366236a, - 0x3febf0eec91f32ec, 0x4003730ba21406b6, - 0xc0099fc8538b65bf, 0x400b7ab1060757b1, - 0xc0021a54d94c8eaf, 0xbfb653ac6b3bc020, - 0x3fee3817ad3a6bf6, 0x3fb9b126c86b76e0, - 0xbfd868bc907c8d60, 0x4002cb4b04452bd4, - 0x3fec6432c090cb4c, 0x3fe50475fa1d7dc4, - 0x400b05314332b5b4, 0x3fce09e86efc5ce8, - 0xc0096c63a3ec35e6, 0x40034fb36aebffd3, - 0x4000116a1364f987, 0xc00436948b9c521e, - 0x3fe67e29c48d5764, 0x400f61e0e055f00c, - 0x3fde9378431e51c0, 0x3fedf5be3104d4a8, - 0xbffd1a03bd26e307, 0x3fd426d17741785e, - 0x3fe2d7ad6d7847a7, 0xbff5042986354feb, - 0xbff397b95cc52106, 0x400d0a22c3259e3d, - 0xc00e235c8d9d0fc8, 0xc00383e2d6a2eeb1, - 0x3fe9fec01b017ea8, 0x3fcf68fbdb90d034, - 0x3fe4c1855eddd5ac, 0xc00b5323c8a1054c, - 0xbff346d970bd875b, 0xbfed660d66335664, - 0xc00645430162e7cf, 0xc001f0a608a7a885, - 0xc005c4f02cef4d01, 0x3ffdd50d4b336248, - 0x400556bc67bf6fc0, 0xbfe60b061b9f3dfd, - 0x3fd2bf53c48b48fa, 0xc007cf172cb6870e, - 0x3ffe2b2952e85fc1, 0x3fe84da28f77ff80, - 0x40118eeab284a0f2, 0xbfe982e510388b26, - 0xbfd291eeafe7b730, 0x3fef9b391cbb202c, - 0xc014f19d93ef83ca, 0xbff94e4a57564906, - 0x40034760e9182870, 0xc004e8b6b824bcb0, - 0x3ff345f066094660, 0x3ffe3bbc53993f33, - 0xbfd2446e61defd9e, 0x4004f0f029589c1c, - 0xc000e607ae23dcd1, 0xc011a5f545865853, - 0xbfd834b85a9afb48, 0x3fe253be4a03aab5, - 0x40147c7fadcf00db, 0x400f5b4ec03686bd, - 0x40086f6ad65bd1be, 0xbff830c7fcc08abf, - 0xc012610077e41eaa, 0xc0033b4b5ba2078b, - 0x3ff9003af5a456bf, 0x3fe621fdde738256, - 0x400182f59a6546d1, 0x3fffe7ba9b01be30, - 0x3fd9ec97cc10a20d, 0x4011b20d464ad092, - 0x40067932de90b8ee, 0x400c781154998282, - 0x3ffddeb93806ed9c, 0xc001f18c66aefd2a, - 0xc009be7aaa2c45a6, 0x4001dd90e0f3ebbf, - 0x400b98da7eb5d54c, 0xc0089ba06b296225, - 0xc012a72d33b5a0e0, 0x3ffda9eddd8ff535, - 0xbfb5fffbb9f04650, 0xbfe46b3c871e93d4, - 0x3fe49c97a2e6b94c, 0x4003041501a6038b, - 0x3fdae80531eb70ea, 0x3ffd5c1dfaf3a95a, - 0xbffcace9db85321d, 0xbfee1c05dd5bba24, - 0xc013afc050d7c082, 0xbff133e3679775d2, - 0x3ff7278a6769d6d1, 0x3fe0067411b62c50, - 0x3faafc20482933e0, 0xbfa00807e55485d0, - 0xbfee047c714f5df2, 0xc00028898cea4808, - 0x4011cf8bc01cb294, 0xc0040a628a369d47, - 0x3fb40fcc534915c0, 0xbfeef2299a467dfe, - 0x3ffb23cc4db70be3, 0xbfd2edc10d20e80a, - 0x3ff55f74083c2cae, 0x3ff706313e291142, - 0xbffdd95b8c03eb83, 0xbff0bf866422ded7, - 0xbff35fff8fe6693f, 0xbff0d2b6073f0900, - 0xbfc7989b67b392d8, 0xbfc38294fa56a358, - 0xbfe7707706a2ff8f, 0x3fa00c2362806178, - 0x3fe1c848f0a6be70, 0xbff249faf556ea3c, - 0x3fd0aa5f1f5a461e, 0x400b1ea04e964547, - 0xbfe4680ae09c9871, 0xc00907f935b020c7, - 0xbfa52fbf33fcc750, 0x40079ce4d1c3f091, - 0x3fe780e487567f14, 0x4002cf9883494678, - 0xbfe24abe0d1a7d0e, 0xc0062fe6a2dc7786, - 0x4016edd3c582a0db, 0x3fe012e4ddc3df22, - 0x3ff1fe13a3566c7a, 0xbffa451d72e90b1a, - 0xc00072a1dc681781, 0x3fec5b0087481eb0, - 0xbfe3e88b122e8288, 0xbff81f8a5ee78f56, - 0xbff4e80277a04e22, 0xbff1cec799999696, - 0xbff04a06ab33ae62, 0xbffe8801cde850f0, - 0x3fe94158f26a411a, 0x3ff949f8fb4cf3e9, - 0xc005e1291117affa, 0x3fce8142364b1ab0, - 0xbffad274d98d7cae, 0xc00c415906c178d3, - 0x4003fd4bb9b86ae0, 0xbfc84d74fc8b0cf0, - 0xbfe423b50e3c2b54, 0x3ff4768306c7a9c8, - 0x3fe00c854b33ceff, 0xbfdcbdb468ec8640, - 0xbfd5ac3b02d129d0, 0x3ff8666f83395b08, - 0xbfd26be1ee94fb60, 0x3fce5dbb5e22c64c, - 0x3ff0edaab568588b, 0x40041943faf05052, - 0xc0026b3d768f855c, 0x3fd0cffa30c6bda8, - 0xc009ae03265a07ec, 0x3fcf75ebb569b000, - 0x3fe15c4abe80e4ba, 0x3fe1d51954bc009c, - 0x3ffd4f5e436ee14e, 0x3fe1754c995cc696, - 0x400239c76513ee05, 0xc008f65634cbdb0d, - 0xc00409f1a5a6957c, 0xbfee85d67c14109e, - 0x3fff512b3db492f4, 0xc0128ad8b1399a8e, - 0x3ffad18d3691adac, 0x3ff40aaacefce8b0, - 0xbff4c501d99fcec5, 0xc0125ea28f2d790e, - 0xbfb33b3756153ec4, 0xbffc34be0d21b682, - 0xc00e793a396a2287, 0xc0061e9f049320ef, - 0x3fec3bac548bf545, 0xc01d34f4167fe8a6, - 0x3fee08595bc7f3f5, 0x400b6cfbb2640c39, - 0x400cf375883db8be, 0x3fde6eb4ec61e066, - 0xc0015bb7feec0928, 0x3fd48e1095c32910, - 0x3ff92cc5072fbe46, 0xc0072b03fe3870c7, - 0xc004a396b4dd31a9, 0x3fefb6d402994fe0, - 0x3ffcb602e30bdaf2, 0x3ffdb2d8d22eacfe, - 0x4000525f1bb5c540, 0xc013bcd16604b3e5, - 0xc0017b5ae20b238d, 0x3fcf856c3a77c0b0, - 0x3ff46701859a8054, 0x3fb9983f852354c0, - 0xbfee311faf1c641a, 0x3ff42c25d41a3119, - 0xc0154479f4f9dc0c, 0xc00da4d749cd5faa, - 0xc016a872d0000c88, 0x400130d178f48472, - 0x3fec4535aed08d6d, 0x3fc5fe5e6b4ce750, - 0xbfd5b0ec83e734c5, 0x3fd099bdfaee80bc, - 0x3ff59b67060d68e6, 0x3fec4bcd106b475c, - 0x400d20b5b52005c2, 0xc002b3932ddfb65d, - 0xc016923930b2f250, 0xc002089008357820, - 0xbff8f8daaa597e64, 0xc00301442950b870, - 0x400962a31d8e060e, 0xc010ec8f4496b536, - 0xc0012829cddba3b7, 0x4004ddab03455e9a, - 0xbfc09795726fbbc8, 0x4008992f5dc37087, - 0xc0037dd8a8c07251, 0x4000b46e64c391d3, - 0x3fc5106ae4f7c332, 0xbfd67aac69f2d736, - 0x3fde89fe46c054f2, 0x3ff389b08d8b4462, - 0xc013fec12ebe8ae4, 0x3f9a341100e54cb0, - 0x3fe0cd072973b232, 0xc00860ef93947bea, - 0x4007c392dceb99f8, 0xc0082c3df5f03e94, - 0x3ff50be95968a9c3, 0x3fe22a8ab7f38bad, - 0xc0072ec6b70b47ff, 0x3fde5c22d70148aa, - 0x3ff3a7188f9664c5, 0xbfd86af1b42735fc, - 0x4004d629daf82492, 0xbfb410e9f697fb58, - 0x3ffcf4d5e43fa605, 0x40046d3cf9dbaa8c, - 0xbff42db362c2c84b, 0x3fee61a90d14feae, - 0x400ec9cc543cfba3, 0xbff85970bbe9a09e, - 0x40041284ab1cbac8, 0x40001767998c98ad, - 0xbff6b8216a2477d0, 0x3ff8b8e3dd2702c9, - 0xbff3fcdf7ffa98ee, 0xbf65b37fcb19eb00, - 0xbffb338dc6813642, 0x4003256e35224c76, - 0xbfdf89d58933ffe4, 0xc019b8ed558181fa, - 0xbfeab7a1d49df785, 0xc000ed4765a110a8, - 0xbffa2ea7ec6938e4, 0x4001dbcda70118b4, - 0xc00b38061040a300, 0x3fbc3504e73a9258, - 0xbff17cef14a9f0ad, 0x4002f9508b20975b, - 0x3fe59251bc58a17c, 0xc0111cefe1f4250e, - 0xbfc6b977b05399d8, 0x400120d4cfc9b920, - 0xc0039b670d8fb3ed, 0xbfdcedbfae01e71c, - 0xc00199b577de8c25, 0xbff3b2b523817e33, - 0xbfe0cebaa5ad314e, 0xbfdb4b383d25992a, - 0xbff3bd79783fcaf8, 0x40194828cd241b5c, - 0xbff365dacd4dbb16, 0x40114cd3fe6454e2, - 0xc000f1e32db8ee08, 0xbff14eeaa9f8b026, - 0xbfff76f3537366ec, 0x401302c853288746, - 0x3fe5efbfc02e2e65, 0xc0097c8c7660cda8, - 0x3fc0fe9df36b6aac, 0x3fd43967c6f2a788, - 0x400a554416c6d926, 0xbfe76195942fff16, - 0x3fafd55fafe11c60, 0xbffe6b3064abee7a, - 0x400583f7155db6c8, 0xc014865c4a7437dd, - 0x4008540a1e4825b4, 0xbfcaa0dfe9843704, - 0xc007f0c1ed5da1dc, 0x3fbb0392e4dd8bd2, - 0xbfb947ddaad03e00, 0x3feab442a90090ca, - 0xc004c710138f91cb, 0xbfd98f13c5a962dc, - 0xbfe9fb5bed9a8e04, 0x3fb1e0c473a14638, - 0xbff03b512fc20e00, 0xc0032499c88fe685, - 0x3febaa40044d30fe, 0x3fc5bf1178ca8920, - 0xc00302e96fa1f92a, 0xc0057c1d2f7c6a5a, - 0x3ff8eafcfdc96117, 0xc0128e6421306a89, - 0xbff274c37327d46c, 0x3ff9e729efd0e1e4, - 0x3feaa7d7a532e4d5, 0x40076b881e6ce598, - 0xc0028d8f1dfae50a, 0x3fe5ac44dcb5b003, - 0xbfd83f036dcb71f2, 0x3fcae8a8973cb2dc, - 0xbff9ccb747e0ed8d, 0xc00e4ef6801f29c0, - 0xbffb6a5eca1d28c2, 0x400cba4b219be8aa, - 0x3fe36e2c8c88de0a, 0x3fde1ff632d8a956, - 0xbffa1c0a61704326, 0x3ff13eef433a3e8d, - 0xc00364f178e3f0c4, 0xbfba110ac40664fc, - 0xbfe148be195b47f8, 0xc00dd16939f0be8c, - 0xbfe23736292d9f1c, 0x40118df716bed3aa, - 0x3ffb6ad2ac82df24, 0xc001195bf0523284, - 0xc0080f73c4403ab8, 0x400249cabdc1122c, - 0xbfccc54732dd90d2, 0x3fc49bc5ca8213c0, - 0xbfecd1eca8ec1b34, 0x4008b088050c3a61, - 0xbfef7e5b5057787b, 0xbfff7a018f42f31e, - 0xc0091ce7db16014d, 0x3ffa2ed7466ac4d1, - 0x400b76e812e1bd6d, 0xc005491131477ce7, - 0x3fef61f37ba9cc71, 0x401308eb3886395c, - 0xc01663ac7671c48b, 0xc00ab96a4437f4bc, - 0xbfe2e079605a5344, 0x3ff25d3875779932, - 0xbff8cc996260aee3, 0xc013321718b33e00, - 0x3fdc291d7b521100, 0xc011423b29306886, - 0xbfc4096ebf9346c0, 0x3ff539e9313a1d3d, - 0xbffe699c88f687b7, 0xbfd029fb541c36e2, - 0x3fcd9708be56ebcc, 0x4001c2ae1c2dde5d, - 0x3ff62c406670d566, 0x3fe7449f8e1f48dc, - 0xbfa4d62d37e629e0, 0xc00350d8b4cc8fff, - 0x3fe3c86ed2d125f6, 0x3fc94a64dda20520, - 0xc006be87b07a59fd, 0xbff94b0d7f87751a, - 0x40020a69cc204e1e, 0x4005ada939cdd089, - 0x3fd6564a7f0b6c96, 0x4004728a3df749e7, - 0xc0119ac3220c869e, 0x4007903163130783, - 0x3ff02870cfefd876, 0x3fc42798a9680070, - 0x3feaa064afd59e28, 0x3ffb1fbbc5929818, - 0xbfc41077dc518094, 0xbfe8906ce6d2eca8, - 0xbff35e039745680a, 0x40118f831e46302c, - 0x3ffb36309d5b1041, 0x3fd5f083177d997d, - 0x3fd2ab0ad2b01dc4, 0xbfe47e0159400380, - 0xc008f7476e5cedf6, 0x3ff959f122a4ba7d, - 0xc0067f950e6c27e4, 0x400b668d290501c9, - 0xc00bd5bd64e016ab, 0x3fe65d9fc475847d, - 0x3ff491565515be56, 0xbfe1f151cccfbfe3, - 0xbff3a9399bc7b1ac, 0xbfb1c1ddf974e9b0, - 0xbfc84e8393021180, 0x4009256706da46e5, - 0x4012538e7282abf8, 0xbf76e570437e5200, - 0xbfe050541564a34a, 0x3ff2c87c83bb5bb8, - 0x3feb29fa3db71850, 0xbfff146c1b03e5fc, - 0x3ffdd1de4f387adf, 0xbffe6d8294dacf79, - 0x400fbeceef5cba50, 0xbfd5aa291de703b8, - 0xbfebd0cb888ad634, 0x3ff1a770f08a09b7, - 0xbff21e7722499bc3, 0xbfda57395b8ffd28, - 0xbfff4821ef83763c, 0x3ff45f428bb8b5f8, - 0x40106384bce3cfde, 0x3ff1c931f3dd315c, - 0xbfebc9891b0a8f54, 0xbff93bbf638f4c0c, - 0xc002f03291fc783d, 0xbfec6033971fa292, - 0xc0036179200b02c7, 0x40076f500e85cf6f, - 0xbfb0d97196343510, 0x3ff0e92fcc59a856, - 0x3ff6c18b3f567aaa, 0x3fe8a0e216346c9a, - 0x3ff66c65aaceb6e4, 0x3ff57860aa175c20, - 0xbff25edc931af12b, 0x3fcb1d3d6c46f848, - 0x400b582fced506f1, 0xbff4b81b3eb465ac, - 0x3fd3d43031513e3a, 0xbfe59cc945dabf1c, - 0xc002314f53d26aaa, 0x3fbf9076f290ffe0, - 0x3fd998c872137b28, 0xbfecbf6b2876bf54, - 0xbfef57df9e5dc4fa, 0x3fe5b22cb88318ea, - 0x4001a323e2ed38f3, 0x3fd680670b1daa98, - 0xc007a40cd69d4d5c, 0xbffe08e1f8ca1d51, - 0x3fbece5b4853efb0, 0x3ff3641d37ba565b, - 0xbfe1abbfd1574db3, 0xbff3e89706076fc3, - 0x3ff56662fe805cf4, 0xbffd58f471c68a6f, - 0xbff1b244646cd1c4, 0x3fd605623ef7b8dc, - 0x4005ee2488eb1c84, 0x40050e1a5a8ba00f, - 0xbffa1bd083056940, 0x400e263f7906ffc2, - 0xbff665c640da2386, 0x3ff4c757ee49a524, - 0x3ff8fea2164b84ae, 0x400a84b5c635d01d, - 0xc00183a045b087d6, 0x3ffdeac3e22299db, - 0xc00692730ffcecac, 0xbffd91a738022f38, - 0xbff99cc3a5b4418f, 0x3ff86326d01194e6, - 0x3fef9afdbf741db8, 0xbffe3534f6a3bf8f, - 0x400682e2bd76c47c, 0x4003686ed5f9cba9, - 0xc00669a76e76779b, 0x4010bf16ab24bee7, - 0x3fe00e7760e3c818, 0xbf987829f10dd1d0, - 0xbfe9b2f7366feb7c, 0x400976f96f8881f2, - 0xbfda757adffe6b73, 0xc012940b9b1ad368, - 0xc003b5e3c7c0e584, 0x3ff0accaba8fcdac, - 0xbfacbfc1818b8490, 0x3fde0fe045ae9828, - 0xbffb252b028fe596, 0xbfee88b92323ffae, - 0x3fe1075b45a83ee0, 0x3ff48ee9bdf4db8b, - 0x40052d33e4c78d2a, 0xbfe2626c97113a28, - 0x3fdf89930ee56f24, 0xc003dabe85a5733a, - 0x3fe2cda845cbbffb, 0xc0033282c7b229e2, - 0xbfebdbca4e587958, 0xbff18729b9f8e938, - 0x400088928017d537, 0xbff884c966c7b438, - 0x4005ad713fadda07, 0xbfefd096fd217412, - 0xbffb110f33f7759b, 0xc00055977cd98d5e, - 0xbff44cbf7e327921, 0xbfee0d8db5a2ba1e, - 0xbfef79b393d03366, 0x3ffabf91e4f6bec8, - 0x3ffec030e9bf8ff6, 0x3fd0d9b7384cd464, - 0x3ff760997c62de4f, 0x3ffbf85450aa0229, - 0x4008f9a1e3435704, 0x4004bfd001fd822b, - 0x3ff01306ac028922, 0x4004b1c0c0c360fc, - 0xc00e8fcdd72e3fd0, 0x4008063a70be00ea, - 0xbfea5a8876314a8e, 0xbfe8d9226d59060c, - 0x40016dad81f71192, 0x4003cb97f7c1e920, - 0xbfda8ed457dad20e, 0x3ff6db91f501ad3c, - 0xbfe1941aaf785c7f, 0xbfebc01597941714, - 0x4004b845ae564fad, 0x400c92c2b5a21b72, - 0xbfe1dd79a5a45698, 0xbfbc1da528a84008, - 0xbfc4f3a08d6a42d0, 0x3ffbf5b53787bfca, - 0x3fec3bd75946c8af, 0x3fed339bfc383b5f, - 0xbff34b76e61f1b92, 0xbff5525093f62c3c, - 0xc0154e70bb9ec914, 0xc004249941ba4098, - 0x4004a4aed0946070, 0xbfe5c75e332c7d4c, - 0xc0115df863daceaf, 0x3fe6112735d53bb4, - 0xbff0611d3fce968a, 0xbff7a383139ed7aa, - 0xc002fc9402d47b04, 0x3fee6408f7318e5c, - 0xbfe0593db251fc6c, 0x400adbd8973ae520, - 0xc00a5810d43fc065, 0xbfeabb403744d92d, - 0x3ff0a696527d0182, 0x400f9020244e4293, - 0xbfd3c98a3d896de8, 0x3feda7434bec4d2d, - 0x3ff900f913ffe67b, 0x3fe143a9f806eb3e, - 0x3ffdb62c951a4aaa, 0x400e0302e367ec62, - 0xbfed99d8063c9bd8, 0x4003bda9b5031ac9, - 0xc00835fd879fa8bc, 0x40032fc180f4f788, - 0xbffe4f50faa31f8b, 0x3fd0b163499cd958, - 0x3fea225d27dbe9a0, 0xc00df763a6a90d98, - 0xc00f7c69f700a15a, 0x400c60845cc01563, - 0xbfe7040b04710a9c, 0x4015ecd0082189e6, - 0xbfed54c6fd82978c, 0x4003ac35eb970723, - 0x3fd3833f929a6858, 0x3fecdf4b501516e8, - 0x40068b32b4b7ebca, 0x3fe98ab6e9649419, - 0x3ff1fb48ffaee7c7, 0xbfc90f0db4ea5780, - 0x400279bf1313b866, 0x3ff14b454b7c2bf8, - 0xbfedacbf4a1fa7ca, 0x4015398b7d45396c, - 0xc00228b9c9e19b12, 0xbfdfefff05fb0eb6, - 0xbffa67b8df715692, 0xbfa72ca34ee1a45c, - 0x4011366a03400771, 0x4008aa09979a35e4, - 0xc000262f5ea147d1, 0xc00f13e97ec767ee, - 0xbff9e1a8c2595672, 0x3fff98c86a9bba2b, - 0xbff57293fd9fe992, 0x3ff82a1ca3551734, - 0xbfe0392c1cdfb202, 0xc01562915231c797, - 0x401369e132b311e8, 0x3fc999a5f2b64d3c, - 0xc0039b47c41b4264, 0xbfed8282cc9695ce, - 0xbfb28c24c6aa7dd4, 0x3fedac5022e75ac8, - 0x400233812847934b, 0xbff57f839b84bb9a, - 0x4000dbb9b6979186, 0x3ffd6e40244957d3, - 0x40065e750bba813c, 0xbfdcd55c74a2e7cf, - 0x3fe5ca6c4852de10, 0x3fe4ef664d5d06f2, - 0x3fe721c51607411a, 0xc00442db2330ce83, - 0xbfe0ddecfdf292d8, 0xc003eba5ff8537ab, - 0x40189c3a6f38d874, 0xbfe8dcef0db7b460, - 0x4008f9bc1bcb3fe0, 0x3ffb94d7c3dcbd18, - 0xc000ee17ba50e8ec, 0x3f9db3c01d52e420, - 0x3ff090a8b20c7eb6, 0xbfb0aab43efb6e7c, - 0x3fe1aa5e8ee490a4, 0x400ed791f84eec92, - 0xc0079db1fca3e092, 0xbff5e26d9f5f9ef9, - 0x3ff44b7a764c3f3c, 0xc0128c7407bf4f2a, - 0xc0039f8336e79613, 0xbfff49ea600e46e4, - 0xbfe734590e568683, 0xbfa9b7f767e80f90, - 0xbff4c05590fec0fb, 0x3fd11d7e9df765fc, - 0xbff0737a00a6a794, 0x3ff2b258fe0cfe91, - 0x4007c52257452d75, 0xc00edd8f4686cf1c, - 0xc00156adc8a30c08, 0x400e3eb459c73ff5, - 0xc0024992cf90918c, 0x40144dd5006c26ca, - 0xbfed99af6a5b50b2, 0xc00b09d2f3c5a4d1, - 0xbfe699ba9dc6d86e, 0xc0093972cd5bce75, - 0xc002f2331d601f94, 0xc00074e87b11b071, - 0x3fb5c468b2031ec0, 0xc002f01954f2e250, - 0xc011a330acb295bf, 0xbffc2211402e705d, - 0x3fd22c430b23c558, 0xbff88f8bb3137eac, - 0xc00b3cd4dbf4351e, 0xc00239a13a1347b4, - 0x3fff3e6d4be41622, 0x40085b8c8af82748, - 0xbfffeb214fd71b36, 0x3fca709d46c66f20, - 0x40109ceddf5faf30, 0x3fe638c66c00e868, - 0xbfdfc2e53e979654, 0xbfef92a02f8ccdfc, - 0xbff0f12380ae376a, 0x3ff794a75b730204, - 0x401626507030330e, 0x3fcc45ec154c1f52, - 0x4000f3a16ff7d9e2, 0xbfe9ff55b754cf62, - 0xbfe87f55f57b2172, 0xc002db31a6f8d3e5, - 0x3fc193d82dfd0de0, 0xc00788478e8dac6c, - 0xbff99325796eed87, 0xbfd4b34f5faaa5fb, - 0xc0011b7d836cbd31, 0xc016bb121bff6bf7, - 0xc01b52934c2a2988, 0xbfe048cc172bb2c1, - 0x401166990e4be567, 0x40065c72f397e67a, - 0xbff24387778bd44f, 0xc005aa4053bc47be, - 0x3ffffd946354054c, 0xc00a88f161694cfa, - 0x4007e490b1e12def, 0xbffd8208120ac558, - 0x3ff370e35aaf2153, 0x3fe02bf5eac367fc, - 0xc0131f1c8713a18c, 0xbfe51ba2517a647e, - 0xbfa438fccdd695e0, 0xbff99f1a757be5c3, - 0x3ff01930101e54fc, 0xc0034e907d2388a4, - 0xc00007551d1cedc9, 0x3fe1e4ed709db0df, - 0xc0136d64af90aced, 0xbfefeba281b46e60, - 0x3fe4350d4bc50140, 0xbff6b8c19065d0a6, - 0x400228b61a8e97da, 0x40068f0e4edecba1, - 0x400d9a640e9f4c08, 0x3ff3ea33d85f10c8, - 0x40160ae771c3b0c8, 0xbff4f0b1398baa90, - 0xbff5a29be7181596, 0x400b294d470bde62, - 0xc00b668c745b95de, 0x3ff00d0383e4cf48, - 0xc002afb79d838ede, 0xbfe3b938ad95f080, - 0x3feecc23b7c3556d, 0x4003a639ccad5e7b, - 0x4010cdd25cbfa64f, 0xbff83e62b8268bcd, - 0x3fa2eaf9e4dd85e0, 0xbfd34cfa5f838acc, - 0x3fb66395657388b8, 0xbfee3672a58c34b2, - 0xc0016385e92806c0, 0xc005c375026f5fbd, - 0xc001c78f9c646112, 0x4001231f741614fc, - 0x3fdaa7c5c704ce14, 0xbffd9dfbec7abd4a, - 0xbff7aec436b03335, 0xbffb7a716ac6aeab, - 0xbfdeb052b4979e34, 0xc0081e86069f14fc, - 0xc00d37190c2c847c, 0x3fea04b9c6f062f0, - 0x4005622b42e72474, 0x40072c55df7bff7b, - 0xbff28da735dd6375, 0xc00625091ba53d62, - 0x401384651851050e, 0x3fe50c5727af09eb, - 0x40027a779664190c, 0x4000a610d362d5f3, - 0x400986a2ca113ef4, 0xc0033e3169bceab8, - 0xc011207c539ba020, 0xbff3cc405cde62fe, - 0xbff341efd043fb3a, 0x3fd653522e2496a0, - 0xbfed0bd8fdf385e6, 0xbfe934aaea87ecf9, - 0xbfed6d2be7138262, 0xc005ae9075c48b53, - 0xc004f3019c82da25, 0x401108e3667aeeb3, - 0xbffb9bcbfb565529, 0xbff64a4bd12bd898, - 0xbff7c9ce5aa4749d, 0x3fef5714d4c88e38, - 0x400045a952c6637d, 0xc00571e29ccc9972, - 0x3fd443a99e611424, 0x4012af84cd093326, - 0xbfc248d2c586c870, 0x3ff3c326c2347f3e, - 0xc00acee1557870cc, 0xbff605e2f26b5870, - 0x4004f74c9ba364d7, 0xbfec9595649f5efc, - 0x3f7b287b363ea200, 0xbff077e8ccbfad20, - 0xc00ab638541a6755, 0xbff5309bd768a702, - 0x3fc33d712465ccdc, 0x3ffe50ede2fb82fb, - 0x3fe409a17529a6e6, 0xc00234b5389828fa, - 0x40010842eb853ac9, 0x4004d7d3ed120353, - 0xbfe7668c3224d56f, 0x3ffade23a106d110, - 0xbff91e4130ed4e48, 0xc0017c11a8e52c4a, - 0x3fe778d1a2efae9a, 0xc003b567d3f2e346, - 0xc00e3b7b8ec5e946, 0xbfde70f1407e60ac, - 0xbff5f75c399cbce8, 0x3fc786e5a4622708, - 0xbfe95e8517e7eb6d, 0xbfe690438fc7fa02, - 0xbfd00ac144659934, 0x3fe5be7513044ed9, - 0xc00dc42e3be4803d, 0x3fddbaddaa13ad40, - 0x3fa16ffed7e30370, 0xc00426e5dfc6244a, - 0x400e7829f2258b91, 0xc01028d6a1d3a984, - 0x3fe5818239784930, 0x3fd384da675a7698, - 0xc001b02d5fd84c09, 0xbfde15980e684862, - 0x3fef30f84da2cd6d, 0xc001af6ee8a6fcbb, - 0xc018521fd133791a, 0x401014de2c47b194, - 0xc001870a1e8951b7, 0x3fd25b167711d98c, - 0xbfe0df9ce9aeb2dc, 0xbfff0bd40cb25ad7, - 0xbfee6826de7da3bd, 0xbfb025dffb3d0e90, - 0x4012b024c2a270c2, 0xbff536f031f732ef, - 0xbfc49fcb6c758800, 0x3ffa84c6150e27a8, - 0x3fbf271b4e5798c0, 0x3ffae0a6b014288e, - 0xbfcc7df549332504, 0xbfe4da80701597b8, - 0xbff928415b8d4070, 0x40023e5c501b6264, - 0x3fe2f6042f6eef86, 0x3ff8862182043f2c, - 0x3fec3ca4fec1e5f0, 0xc0115c1e5385f1e8, - 0xc002a9cc37996828, 0xbfd07c7c64c44a50, - 0x3febabf3b18f012c, 0x3ff7df77a3e7fd21, - 0x3fe07d9020dd908c, 0xbf80ba3423210100, - 0xc0032b57ef2810a7, 0xbfc5a714f2a965ae, - 0x400a6c81b232e68f, 0xbff82a351c51f603, - 0xbfc1b962bb2a8544, 0x3fef1f8c7001efab, - 0xc00b4227b003ca22, 0xbfe3f5146e1b82ee, - 0x4006f2a8efced862, 0xc004e1b32b9743cb, - 0x4012d7ea92e4b154, 0xbffc63c8b91b7e57, - 0x400809cd4c5d7733, 0xbff88ebf753c42df, - 0x3ff07fe94c50e5f0, 0xbfe9175e771b99d8, - 0xc0021c7c15679876, 0xbff16d0d4bc1c6ba, - 0xbffb1821ec4d047c, 0x4000749bcd3a2d80, - 0xbff737afe107f4cf, 0xc009daf0775320ec, - 0xc007f8ea2dbfca0d, 0x4012c4180d400f27, - 0x3ff57193ad2e37d8, 0xbffd80354636e485, - 0xbfefb90f7d624c30, 0xbfe44425c7ea98c0, - 0xbf84cb78d93e7380, 0xbfdc84de3b94527c, - 0x400845f9fd556bc8, 0x3fee2e8b88cbfb01, - 0x400958242d4996e5, 0xbfe3b83a809c59ed, - 0xbff190c2be4a71c1, 0xbfeea1a2a609874e, - 0xc00557ef76a26dec, 0x400e7ce78d9fe955, - 0x40014a2382ef4bf8, 0x4000374d2f480752, - 0xbff29e63df104a50, 0xbfed32d70b612abb, - 0x40123f695f4f30d6, 0x400b87e8a5913985, - 0xbfce60534b0a4834, 0xbfe870a869b85e38, - 0x3fffffe62b62c11d, 0x3ff395f631e588a6, - 0x3ff9708549126b3e, 0xbfbb39ab2f1788d8, - 0x3fe27f0a283831e0, 0xbfd818bfab35daf4, - 0x3feefe6a77742b43, 0xc00ce2a166e27a54, - 0xbfe3a356961dd8ce, 0xc000c28d0792f1b5, - 0x400c4b66681046fe, 0x400b33bb41877ed5, - 0x4008d0cf96d7c0f5, 0xbffd7ae45526ffde, - 0x3ff0d794105ace76, 0x4001a83256a238d6, - 0x40091775926f5462, 0x3ff76e9092a55b8c, - 0x40124a0b5df3b8d8, 0xbfef52e67a7bea42, - 0xbfe8a5d4717c1d20, 0xc00e18ef38f21e0d, - 0xc012123ac9e46ec2, 0xbfe70bc223264419, - 0x3fe43384d6d7041c, 0x40112b7be63434e7, - 0x3fc60b5c1a867848, 0x400010cdf9af31de, - 0xbfe2c4bc52a79fec, 0xbff2297ea0979e84, - 0xbffb82b506dea399, 0xc00486fba854e97f, - 0xc002da6c066e8c34, 0x3ff13c36dafe3e97, - 0x3fcf32a1a1af5924, 0x4001c27780d46105, - 0x3ff8ab0e0d91f3ac, 0x40106c32ce0c0b49, - 0xc0057a96a8e31ec4, 0x401a95f3011787e8, - 0x3ff8749a72d8bd85, 0xc0145e664a17322a, - 0xc008f2e4ec8ce1be, 0xc00b40bf3f6b2b68, - 0xc006765f0d462fd2, 0x400c443013f32e24, - 0x400305176a8e8a4a, 0x400d591849c3167c, - 0xc00e30d159a3bf66, 0xbff3c5cb51535610, - 0xbff7465927f57776, 0xc00f7adf88b967ba, - 0xbffd3f13230e5f41, 0xbfe70239541fa5e2, - 0xbfdd7e4f1e8a6cd8, 0x3ff8a08250b65c64, - 0xc0021bfb5c15d63a, 0x4000f6f7f3671c0a, - 0xbfd246b887dbcc2c, 0x3feaec18bf9d968b, - 0x4014f052ced95b6e, 0x400320f12e6e6252, - 0xc003bd582aac168a, 0xc005254e457d3554, - 0xc0031fca2c61cf84, 0x3ff0e696de8e230c, - 0x4000889358fe6224, 0x4008845deadfc1b0, - 0x401307efd1a1fb26, 0x3ffffcd5841e79cc, - 0x400e0dd48adddafe, 0xbffa40213df2a124, - 0x40099e5bd4243d2c, 0xc00aafe3b1187f83, - 0xbfe424d00bcf8930, 0x40058cc093250f10, - 0x40116af2458b780a, 0xbfef2b9c4141d6fd, - 0xbfd6f0bcc062f9bc, 0x4000ea59bb7e838a, - 0x4003c6da1e2c3cc3, 0x400e42a242c587e5, - 0xc0077162e3a8a091, 0x40127eafdfaa5638, - 0xbfd9652e99d016a4, 0x3ff9ec14705a2871, - 0xbfd09c2258953928, 0x401050dbc5fd7a13, - 0x3fd74b4e63ab76a4, 0xc00482bcdf828b19, - 0xbfed63e7535b0b79, 0xbffea5888cf8d0ad, - 0x3ff5641440ed704a, 0xc0026c2507dcbf2d, - 0xc014bdfeaf31ec56, 0xc0037eabd73aec4e, - 0xc0001a852f8dfe05, 0xbfe9fca33803de5f, - 0xc00059c396389153, 0x3feebadfe450d6b4, - 0xc0121ff3b98f190d, 0x3fc8c53a07d99a4c, - 0xbfeaff3fc5cf8db2, 0x4006c43bed7d4666, - 0xbfc2aa7a1f214790, 0x3ff1715351f6f74e, - 0xc0026c99aede8fa2, 0x4001783ac0c5f4b8, - 0xbffb60244d18e284, 0xc0098e5e81e8fac2, - 0x3feae9a6be6c2771, 0xc0009ea392c94908, - 0x4006c8552eaaab1c, 0x3fdf889b5ce69b41, - 0x40005021120036a1, 0xbfe1969ff2e67fe6, - 0x3ff9c2963bc1e24a, 0x3fdc43acb03199fc, - 0xbfedd366657ff898, 0x3fffeb5d31fa991e, - 0xbfda2a6d3c5a9598, 0xbff3772107aa368a, - 0xbfeefea7c4bc58f6, 0x400041b37070b7c5, - 0xbff22c965a3f9a01, 0xbffb24c3fc2396a8, - 0x3ffe91ab47dbac1e, 0x3ff3bf927c10bab9, - 0x40172967e3697102, 0xbfdca130ac65a972, - 0xc003d0f6b5e0a2e6, 0xc000037c339fd621, - 0xbff6ee892037eb02, 0xbff146ae9535b3e2, - 0x3ffdf1f6df06c9ad, 0x3fd2bd45f5fe1c71, - 0xc00843ded63269da, 0x400cb248cfe78f54, - 0xbffa252ec08346a5, 0xbfcfb63716cec8d0, - 0x400a7cbdb96c247a, 0xbff8cc6950ab8106, - 0x400c2abb115405e8, 0x40160cfaff8c05e1, - 0xc0048356c99334b9, 0x3ff89e776e95f2a2, - 0xbfb43fb7a2d060f4, 0x401060a732c528f1, - 0x40035d6cd41e3880, 0x3ffc0e47a2d944c8, - 0x3ff8b6d7ae57de96, 0xbfe1cc0384e04608, - 0xc0006550f714c1ef, 0xc003445f1af7f12b, - 0x3fe2c8deaa778642, 0x3fd404f46d4cf3e8, - 0x3fd334cbf2b512fe, 0xbff729d1c38d07b2, - 0xc00716e27dd31438, 0x3ff330a6a2c44182, - 0x3ff5b68e6f06e67a, 0x3fc2e401ab365018, - 0xc00c55f946320948, 0x3ff3f46f80f77bec, - 0x4003719cdd565f5c, 0xc002904c4dd2ee20, - 0xbfc8f44bc113ce84, 0xbff52c0a21c48b3c, - 0xc008388f9e90668c, 0x40063af1088b44c9, - 0x40146bcc3ac1bc12, 0x3fd4aacb696338f8, - 0xbfb4ce1b6169cfd0, 0x400b4fd44cacf7b9, - 0xbfe33fdd500dc46a, 0xbfcaf3f11be69da2, - 0x40012b190fccbf77, 0xc0103df2ca0d365e, - 0xbfbf7ad9e3fdbc70, 0x3fe5934ac29988ba, - 0x3ffba77275f00342, 0xbfe0e6d40165b972, - 0xbfbb40345cade1e0, 0x400285ae67bd001b, - 0xbfe9d46d2373e945, 0xbfa6ee04c472ce80, - 0xbff7818743d89177, 0xbfe801be4236495a, - 0x400c0b5a8636ce22, 0xbff5c11d4e1081e5, - 0x3fe773631cd60bab, 0x3fcd679afe241de0, - 0xbfc74c5f8a811727, 0xbfff61341f4bdaa9, - 0xbfeea5a1f89055c6, 0xbff53ea1f7bf9df4, - 0xbfd5e7a01a9324dc, 0xbffee57a05d96f2b, - 0x3ffae03a9c6bbbe0, 0xbff62516062bc42e, - 0x3fe3d8c69c943b28, 0x4007fa1974b1b3fe, - 0xc009ae6eb66f6736, 0x3feacd7210f618a0, - 0x3ff9041aff41e578, 0xbff5028edffcb8fe, - 0xbff4f6a6be1a5915, 0x40105b466f8932f7, - 0x4008973707590ff4, 0xbfe02ea11d6f462e, - 0x3fef07abdef22ae1, 0xbff8883c954883e6, - 0x3fea1f833ec5be94, 0xbfc217bc2da09058, - 0xc00ce314079aa5dd, 0xbfe2c2c394c75284, - 0x3ffdacc92fe6f1e1, 0x4002b9c6f42f81c6, - 0xc00bb92db9a5eca2, 0x401947296b1ff73a, - 0x3ff22e6e0965ce4e, 0x40007b242fb2ffda, - 0xbff0ba13da78bd39, 0x400e3df55c3bba30, - 0x3fd14dbed74e6794, 0x3ffa6b4d88060268, - 0x3fd234bb20c0c8f4, 0x4002b06ec1188d0c, - 0xc005a42e069a7241, 0xbfe96f14308b21dc, - 0x3feae8d525b77927, 0xc0079fb8c8ecf6f2, - 0xc00fd03ee8ab9a44, 0xbff192c976750ec7, - 0x3ffc74407bad6a0d, 0x400ad57cdff0d367, - 0x3fdcc51eb3766ddc, 0xbfe64ca8a9c94924, - 0x3fe675589db08958, 0x3ff537897c04879a, - 0x3fe72628b0d7bd2a, 0xbffe00fd964fd7dc, - 0xc0025b476ec324b3, 0x3fe6ffcf44948909, - 0xc002086e2818eb1c, 0xbfec5bf23b1f394e, - 0xbffdbc611d107c16, 0x3ff052dabfad0d0c, - 0x4004927f660b82ca, 0x400430244bddcd86, - 0xbfa44e9135dd8470, 0xbfc066c556b20c2c, - 0xbff0b9db1e13f298, 0x3fdc258a71c0d22d, - 0x3ff0a12fe8882148, 0xc002886b13ef9b54, - 0x3fee565c41581e13, 0x40008c0e7d66609a, - 0xbfea16d0e43adb3a, 0x3fd4354f3d1449fc, - 0xc0025f165b35bc7a, 0xc005eeea575d8576, - 0x3ff5779a77f5267b, 0xc0051a5c57e0d35a, - 0x401333c231460930, 0xc00875c1c6076045, - 0x3ff708b69ad3589c, 0xbfffacdfd90a053d, - 0xbfc1a84058aa4742, 0x3ff77577019fd9ae, - 0xc00874a34d184ba4, 0x3feae4e06944a787, - 0xbfc4ff8e31ccebd0, 0x40012418fd738bf8, - 0x4004c724c899fb5f, 0x4010f0537291d8af, - 0x3fb1f9a829c2a180, 0x3fffc0fb5776d904, - 0x3fe07c5851f88cf4, 0xbfc19b0fa493614e, - 0x3ffa6dd59f15d4dd, 0xc0187e76819bf17a, - 0x3ffdbeb9f7d25e3c, 0xbfd9d362a3d80dd8, - 0xbfeadad75da286bf, 0xbffcc8bee2a0f4b3, - 0x3fd70b16ec3fbf50, 0xbff824e4f8aa0d1b, - 0x400142cf34a34902, 0xbfed2d103cc25c46, - 0xc00db29ba1eb1527, 0xbfe4f3338db950ba, - 0xc0057b616ce6132f, 0xc009fdde5c1c8236, - 0xc0053303fd3f09fa, 0x3fd9b0037e655724, - 0xbfeea55f6079b426, 0xbff605b201f002bc, - 0x3fe6416ffa84ff2d, 0xc0144271e1832bab, - 0xc00786989b2e7b9a, 0x3ff515871cdbb7a7, - 0x3ff03ca89610e334, 0x3fdc0a5f6d815abc, - 0x40085bb07d074562, 0x0, - 0x3ff03ca89610e332, 0xbfdc0a5f6d815ab8, - 0xc00786989b2e7b98, 0xbff515871cdbb7b6, - 0x3fe6416ffa84ff13, 0x40144271e1832bac, - 0xbfeea55f6079b438, 0x3ff605b201f002b8, - 0xc0053303fd3f09f6, 0xbfd9b0037e65573c, - 0xc0057b616ce61331, 0x4009fdde5c1c8232, - 0xc00db29ba1eb152b, 0x3fe4f3338db950a2, - 0x400142cf34a34903, 0x3fed2d103cc25c40, - 0x3fd70b16ec3fbf40, 0x3ff824e4f8aa0d20, - 0xbfeadad75da286cf, 0x3ffcc8bee2a0f4b8, - 0x3ffdbeb9f7d25e45, 0x3fd9d362a3d80de0, - 0x3ffa6dd59f15d4d9, 0x40187e76819bf179, - 0x3fe07c5851f88ce7, 0x3fc19b0fa4936156, - 0x3fb1f9a829c2a180, 0xbfffc0fb5776d908, - 0x4004c724c899fb64, 0xc010f0537291d8b1, - 0xbfc4ff8e31ccebc8, 0xc0012418fd738bfa, - 0xc00874a34d184ba3, 0xbfeae4e06944a793, - 0xbfc1a84058aa472e, 0xbff77577019fd9ae, - 0x3ff708b69ad3589c, 0x3fffacdfd90a0538, - 0x401333c231460930, 0x400875c1c6076049, - 0x3ff5779a77f52674, 0x40051a5c57e0d35c, - 0xc0025f165b35bc7c, 0x4005eeea575d8574, - 0xbfea16d0e43adb3a, 0xbfd4354f3d1449f4, - 0x3fee565c41581e1c, 0xc0008c0e7d66609a, - 0x3ff0a12fe8882147, 0x4002886b13ef9b57, - 0xbff0b9db1e13f298, 0xbfdc258a71c0d226, - 0xbfa44e9135dd84b0, 0x3fc066c556b20c14, - 0x4004927f660b82cc, 0xc00430244bddcd85, - 0xbffdbc611d107c10, 0xbff052dabfad0d13, - 0xc002086e2818eb1c, 0x3fec5bf23b1f3938, - 0xc0025b476ec324b2, 0xbfe6ffcf44948914, - 0x3fe72628b0d7bd28, 0x3ffe00fd964fd7da, - 0x3fe675589db0895e, 0xbff537897c048798, - 0x3fdcc51eb3766dec, 0x3fe64ca8a9c94924, - 0x3ffc74407bad6a14, 0xc00ad57cdff0d364, - 0xc00fd03ee8ab9a48, 0x3ff192c976750ebc, - 0x3feae8d525b77927, 0x40079fb8c8ecf6f4, - 0xc005a42e069a7240, 0x3fe96f14308b21d6, - 0x3fd234bb20c0c904, 0xc002b06ec1188d0c, - 0x3fd14dbed74e6794, 0xbffa6b4d8806026c, - 0xbff0ba13da78bd34, 0xc00e3df55c3bba30, - 0x3ff22e6e0965ce59, 0xc0007b242fb2ffda, - 0xc00bb92db9a5ec9c, 0xc01947296b1ff73a, - 0x3ffdacc92fe6f1ea, 0xc002b9c6f42f81c2, - 0xc00ce314079aa5dd, 0x3fe2c2c394c7526b, - 0x3fea1f833ec5be94, 0x3fc217bc2da0905e, - 0x3fef07abdef22ad7, 0x3ff8883c954883ee, - 0x4008973707590ff6, 0x3fe02ea11d6f4634, - 0xbff4f6a6be1a590e, 0xc0105b466f8932f9, - 0x3ff9041aff41e57a, 0x3ff5028edffcb8fc, - 0xc009ae6eb66f6734, 0xbfeacd7210f618a8, - 0x3fe3d8c69c943b2c, 0xc007fa1974b1b400, - 0x3ffae03a9c6bbbe5, 0x3ff62516062bc42e, - 0xbfd5e7a01a9324e4, 0x3ffee57a05d96f29, - 0xbfeea5a1f89055c7, 0x3ff53ea1f7bf9df4, - 0xbfc74c5f8a811740, 0x3fff61341f4bdaa6, - 0x3fe773631cd60bac, 0xbfcd679afe241dea, - 0x400c0b5a8636ce23, 0x3ff5c11d4e1081f2, - 0xbff7818743d89170, 0x3fe801be42364953, - 0xbfe9d46d2373e942, 0x3fa6ee04c472ce40, - 0xbfbb40345cade168, 0xc00285ae67bd0019, - 0x3ffba77275f00342, 0x3fe0e6d40165b978, - 0xbfbf7ad9e3fdbc60, 0xbfe5934ac29988c3, - 0x40012b190fccbf73, 0x40103df2ca0d365e, - 0xbfe33fdd500dc475, 0x3fcaf3f11be69dc4, - 0xbfb4ce1b6169cf70, 0xc00b4fd44cacf7b8, - 0x40146bcc3ac1bc12, 0xbfd4aacb696338d4, - 0xc008388f9e906688, 0xc0063af1088b44c9, - 0xbfc8f44bc113ce94, 0x3ff52c0a21c48b3e, - 0x4003719cdd565f5a, 0x4002904c4dd2ee21, - 0xc00c55f94632094a, 0xbff3f46f80f77be6, - 0x3ff5b68e6f06e67b, 0xbfc2e401ab364fe8, - 0xc00716e27dd31437, 0xbff330a6a2c44188, - 0x3fd334cbf2b512d1, 0x3ff729d1c38d07b2, - 0x3fe2c8deaa778642, 0xbfd404f46d4cf3e8, - 0xc0006550f714c1ef, 0x4003445f1af7f128, - 0x3ff8b6d7ae57de92, 0x3fe1cc0384e0460c, - 0x40035d6cd41e3883, 0xbffc0e47a2d944c1, - 0xbfb43fb7a2d060b8, 0xc01060a732c528f2, - 0xc0048356c99334b8, 0xbff89e776e95f2aa, - 0x400c2abb115405f0, 0xc0160cfaff8c05e0, - 0x400a7cbdb96c247b, 0x3ff8cc6950ab8110, - 0xbffa252ec08346aa, 0x3fcfb63716cec898, - 0xc00843ded63269d5, 0xc00cb248cfe78f56, - 0x3ffdf1f6df06c9a8, 0xbfd2bd45f5fe1c61, - 0xbff6ee892037eb0d, 0x3ff146ae9535b3e2, - 0xc003d0f6b5e0a2e2, 0x4000037c339fd623, - 0x40172967e3697102, 0x3fdca130ac65a9a4, - 0x3ffe91ab47dbac29, 0xbff3bf927c10baad, - 0xbff22c965a3f99ff, 0x3ffb24c3fc2396a5, - 0xbfeefea7c4bc58ea, 0xc00041b37070b7c4, - 0xbfda2a6d3c5a959c, 0x3ff3772107aa3689, - 0xbfedd366657ff895, 0xbfffeb5d31fa991e, - 0x3ff9c2963bc1e249, 0xbfdc43acb03199f0, - 0x400050211200369f, 0x3fe1969ff2e67ffd, - 0x4006c8552eaaab1c, 0xbfdf889b5ce69b38, - 0x3feae9a6be6c2777, 0x40009ea392c94908, - 0xbffb60244d18e28c, 0x40098e5e81e8fac1, - 0xc0026c99aede8fa4, 0xc001783ac0c5f4b7, - 0xbfc2aa7a1f214758, 0xbff1715351f6f74d, - 0xbfeaff3fc5cf8da6, 0xc006c43bed7d4663, - 0xc0121ff3b98f190e, 0xbfc8c53a07d99a98, - 0xc00059c396389154, 0xbfeebadfe450d6c4, - 0xc0001a852f8dfe06, 0x3fe9fca33803de52, - 0xc014bdfeaf31ec5a, 0x40037eabd73aec49, - 0x3ff5641440ed704c, 0x40026c2507dcbf32, - 0xbfed63e7535b0b74, 0x3ffea5888cf8d0ad, - 0x3fd74b4e63ab769c, 0x400482bcdf828b17, - 0xbfd09c2258953900, 0xc01050dbc5fd7a15, - 0xbfd9652e99d01694, 0xbff9ec14705a287e, - 0xc0077162e3a8a08b, 0xc0127eafdfaa5639, - 0x4003c6da1e2c3cc4, 0xc00e42a242c587e2, - 0xbfd6f0bcc062f9a6, 0xc000ea59bb7e8389, - 0x40116af2458b780a, 0x3fef2b9c4141d71c, - 0xbfe424d00bcf8915, 0xc0058cc093250f13, - 0x40099e5bd4243d2b, 0x400aafe3b1187f88, - 0x400e0dd48adddafc, 0x3ffa40213df2a136, - 0x401307efd1a1fb26, 0xbffffcd5841e79ba, - 0x4000889358fe6226, 0xc008845deadfc1b0, - 0xc0031fca2c61cf84, 0xbff0e696de8e230d, - 0xc003bd582aac1689, 0x4005254e457d3550, - 0x4014f052ced95b6e, 0xc00320f12e6e624c, - 0xbfd246b887dbcc0d, 0xbfeaec18bf9d9699, - 0xc0021bfb5c15d638, 0xc000f6f7f3671c0f, - 0xbfdd7e4f1e8a6cbc, 0xbff8a08250b65c58, - 0xbffd3f13230e5f48, 0x3fe70239541fa5e1, - 0xbff7465927f5777c, 0x400f7adf88b967b6, - 0xc00e30d159a3bf65, 0x3ff3c5cb51535607, - 0x400305176a8e8a4f, 0xc00d591849c3167c, - 0xc006765f0d462fce, 0xc00c443013f32e27, - 0xc008f2e4ec8ce1c2, 0x400b40bf3f6b2b64, - 0x3ff8749a72d8bd78, 0x40145e664a173229, - 0xc0057a96a8e31ebc, 0xc01a95f3011787ea, - 0x3ff8ab0e0d91f3af, 0xc0106c32ce0c0b46, - 0x3fcf32a1a1af5950, 0xc001c27780d46104, - 0xc002da6c066e8c33, 0xbff13c36dafe3e97, - 0xbffb82b506dea39d, 0x400486fba854e981, - 0xbfe2c4bc52a79ffc, 0x3ff2297ea0979e80, - 0x3fc60b5c1a867860, 0xc00010cdf9af31e0, - 0x3fe43384d6d7042a, 0xc0112b7be63434e4, - 0xc012123ac9e46ec4, 0x3fe70bc2232643f2, - 0xbfe8a5d4717c1d2c, 0x400e18ef38f21e08, - 0x40124a0b5df3b8d6, 0x3fef52e67a7bea54, - 0x40091775926f5466, 0xbff76e9092a55b90, - 0x3ff0d794105ace7b, 0xc001a83256a238d4, - 0x4008d0cf96d7c0f3, 0x3ffd7ae45526ffe4, - 0x400c4b6668104702, 0xc00b33bb41877ed4, - 0xbfe3a356961dd8cd, 0x4000c28d0792f1b4, - 0x3feefe6a77742b28, 0x400ce2a166e27a53, - 0x3fe27f0a283831d8, 0x3fd818bfab35db08, - 0x3ff9708549126b3d, 0x3fbb39ab2f178950, - 0x3fffffe62b62c122, 0xbff395f631e588a0, - 0xbfce60534b0a4852, 0x3fe870a869b85e38, - 0x40123f695f4f30d6, 0xc00b87e8a5913980, - 0xbff29e63df104a54, 0x3fed32d70b612ab6, - 0x40014a2382ef4bfb, 0xc000374d2f48074d, - 0xc00557ef76a26de6, 0xc00e7ce78d9fe956, - 0xbff190c2be4a71c0, 0x3feea1a2a609874c, - 0x400958242d4996e4, 0x3fe3b83a809c59fd, - 0x400845f9fd556bc6, 0xbfee2e8b88cbfafc, - 0xbf84cb78d93e7600, 0x3fdc84de3b945274, - 0xbfefb90f7d624c3a, 0x3fe44425c7ea98c0, - 0x3ff57193ad2e37d2, 0x3ffd80354636e47c, - 0xc007f8ea2dbfca0c, 0xc012c4180d400f2b, - 0xbff737afe107f4da, 0x4009daf0775320ee, - 0xbffb1821ec4d047c, 0xc000749bcd3a2d80, - 0xc0021c7c1567987a, 0x3ff16d0d4bc1c6af, - 0x3ff07fe94c50e5ee, 0x3fe9175e771b99e0, - 0x400809cd4c5d7732, 0x3ff88ebf753c42e4, - 0x4012d7ea92e4b154, 0x3ffc63c8b91b7e6e, - 0x4006f2a8efced85d, 0x4004e1b32b9743d0, - 0xc00b4227b003ca22, 0x3fe3f5146e1b82d9, - 0xbfc1b962bb2a854e, 0xbfef1f8c7001efb6, - 0x400a6c81b232e68a, 0x3ff82a351c51f60e, - 0xc0032b57ef2810a6, 0x3fc5a714f2a9658a, - 0x3fe07d9020dd9094, 0x3f80ba342320ff00, - 0x3febabf3b18f012f, 0xbff7df77a3e7fd24, - 0xc002a9cc37996828, 0x3fd07c7c64c44a30, - 0x3fec3ca4fec1e5e4, 0x40115c1e5385f1ea, - 0x3fe2f6042f6eef9a, 0xbff8862182043f26, - 0xbff928415b8d406f, 0xc0023e5c501b6266, - 0xbfcc7df5493324e0, 0x3fe4da80701597bc, - 0x3fbf271b4e579870, 0xbffae0a6b0142889, - 0xbfc49fcb6c7587d0, 0xbffa84c6150e27ad, - 0x4012b024c2a270c0, 0x3ff536f031f732f8, - 0xbfee6826de7da3b7, 0x3fb025dffb3d0e60, - 0xbfe0df9ce9aeb2ef, 0x3fff0bd40cb25ad6, - 0xc001870a1e8951b8, 0xbfd25b167711d99c, - 0xc018521fd133791a, 0xc01014de2c47b198, - 0x3fef30f84da2cd63, 0x4001af6ee8a6fcbe, - 0xc001b02d5fd84c09, 0x3fde15980e684862, - 0x3fe581823978492e, 0xbfd384da675a7690, - 0x400e7829f2258b8e, 0x401028d6a1d3a986, - 0x3fa16ffed7e30270, 0x400426e5dfc6244e, - 0xc00dc42e3be4803d, 0xbfddbaddaa13ad7c, - 0xbfd00ac14465992b, 0xbfe5be7513044ee0, - 0xbfe95e8517e7eb76, 0x3fe690438fc7fa04, - 0xbff5f75c399cbcee, 0xbfc786e5a4622738, - 0xc00e3b7b8ec5e947, 0x3fde70f1407e6088, - 0x3fe778d1a2efae8c, 0x4003b567d3f2e348, - 0xbff91e4130ed4e4d, 0x40017c11a8e52c46, - 0xbfe7668c3224d562, 0xbffade23a106d114, - 0x40010842eb853aca, 0xc004d7d3ed120352, - 0x3fe409a17529a6de, 0x400234b5389828fc, - 0x3fc33d712465cd20, 0xbffe50ede2fb82f9, - 0xc00ab638541a6752, 0x3ff5309bd768a6fe, - 0x3f7b287b363ea200, 0x3ff077e8ccbfad1d, - 0x4004f74c9ba364d7, 0x3fec9595649f5f06, - 0xc00acee1557870cc, 0x3ff605e2f26b5868, - 0xbfc248d2c586c858, 0xbff3c326c2347f40, - 0x3fd443a99e61145c, 0xc012af84cd093326, - 0x400045a952c6637c, 0x400571e29ccc9974, - 0xbff7c9ce5aa47498, 0xbfef5714d4c88e4e, - 0xbffb9bcbfb56552b, 0x3ff64a4bd12bd88e, - 0xc004f3019c82da1e, 0xc01108e3667aeeb5, - 0xbfed6d2be7138262, 0x4005ae9075c48b52, - 0xbfed0bd8fdf385df, 0x3fe934aaea87ecf8, - 0xbff341efd043fb3d, 0xbfd653522e249694, - 0xc011207c539ba020, 0x3ff3cc405cde62f9, - 0x400986a2ca113ef4, 0x40033e3169bceab9, - 0x40027a7796641911, 0xc000a610d362d5ec, - 0x401384651851050c, 0xbfe50c5727af09d8, - 0xbff28da735dd637c, 0x400625091ba53d62, - 0x4005622b42e72474, 0xc0072c55df7bff7a, - 0xc00d37190c2c847a, 0xbfea04b9c6f06300, - 0xbfdeb052b4979e58, 0x40081e86069f14fb, - 0xbff7aec436b03338, 0x3ffb7a716ac6aea8, - 0x3fdaa7c5c704ce0c, 0x3ffd9dfbec7abd47, - 0xc001c78f9c646110, 0xc001231f741614fe, - 0xc0016385e92806c0, 0x4005c375026f5fba, - 0x3fb66395657388f4, 0x3fee3672a58c34a9, - 0x3fa2eaf9e4dd8640, 0x3fd34cfa5f838ade, - 0x4010cdd25cbfa64f, 0x3ff83e62b8268bd7, - 0x3feecc23b7c35580, 0xc003a639ccad5e7a, - 0xc002afb79d838ede, 0x3fe3b938ad95f077, - 0xc00b668c745b95de, 0xbff00d0383e4cf4c, - 0xbff5a29be7181591, 0xc00b294d470bde61, - 0x40160ae771c3b0c6, 0x3ff4f0b1398baaa2, - 0x400d9a640e9f4c0c, 0xbff3ea33d85f10c4, - 0x400228b61a8e97dc, 0xc0068f0e4edecba0, - 0x3fe4350d4bc50140, 0x3ff6b8c19065d0a2, - 0xc0136d64af90acec, 0x3fefeba281b46e3e, - 0xc00007551d1cedc5, 0xbfe1e4ed709db0e9, - 0x3ff01930101e54f8, 0x40034e907d2388a1, - 0xbfa438fccdd69680, 0x3ff99f1a757be5c4, - 0xc0131f1c8713a18c, 0x3fe51ba2517a6460, - 0x3ff370e35aaf2151, 0xbfe02bf5eac367ee, - 0x4007e490b1e12df0, 0x3ffd8208120ac560, - 0x3ffffd946354054b, 0x400a88f161694cfc, - 0xbff24387778bd457, 0x4005aa4053bc47bb, - 0x401166990e4be568, 0xc0065c72f397e673, - 0xc01b52934c2a2988, 0x3fe048cc172bb2a8, - 0xc0011b7d836cbd39, 0x4016bb121bff6bf8, - 0xbff99325796eed86, 0x3fd4b34f5faaa5c9, - 0x3fc193d82dfd0da8, 0x400788478e8dac6b, - 0xbfe87f55f57b2176, 0x4002db31a6f8d3e4, - 0x4000f3a16ff7d9e2, 0x3fe9ff55b754cf68, - 0x401626507030330e, 0xbfcc45ec154c1ee8, - 0xbff0f12380ae3772, 0xbff794a75b730207, - 0xbfdfc2e53e97965b, 0x3fef92a02f8ccdf2, - 0x40109ceddf5faf31, 0xbfe638c66c00e84e, - 0xbfffeb214fd71b36, 0xbfca709d46c66f50, - 0x3fff3e6d4be41627, 0xc0085b8c8af82747, - 0xc00b3cd4dbf43522, 0x400239a13a1347b2, - 0x3fd22c430b23c560, 0x3ff88f8bb3137ead, - 0xc011a330acb295be, 0x3ffc2211402e7052, - 0x3fb5c468b2031dc0, 0x4002f01954f2e250, - 0xc002f2331d601f96, 0x400074e87b11b070, - 0xbfe699ba9dc6d87e, 0x40093972cd5bce71, - 0xbfed99af6a5b50ae, 0x400b09d2f3c5a4cf, - 0xc0024992cf909186, 0xc0144dd5006c26cc, - 0xc00156adc8a30c06, 0xc00e3eb459c73ff5, - 0x4007c52257452d73, 0x400edd8f4686cf20, - 0xbff0737a00a6a78a, 0xbff2b258fe0cfe94, - 0xbff4c05590fec0f9, 0xbfd11d7e9df76620, - 0xbfe734590e568687, 0x3fa9b7f767e80e50, - 0xc0039f8336e79610, 0x3fff49ea600e46da, - 0x3ff44b7a764c3f32, 0x40128c7407bf4f2a, - 0xc0079db1fca3e094, 0x3ff5e26d9f5f9ef1, - 0x3fe1aa5e8ee490a8, 0xc00ed791f84eec94, - 0x3ff090a8b20c7eb5, 0x3fb0aab43efb6e34, - 0xc000ee17ba50e8eb, 0xbf9db3c01d52e500, - 0x4008f9bc1bcb3fe4, 0xbffb94d7c3dcbd14, - 0x40189c3a6f38d874, 0x3fe8dcef0db7b478, - 0xbfe0ddecfdf292ec, 0x4003eba5ff8537ac, - 0x3fe721c516074114, 0x400442db2330ce85, - 0x3fe5ca6c4852de17, 0xbfe4ef664d5d06e7, - 0x40065e750bba813e, 0x3fdcd55c74a2e7df, - 0x4000dbb9b6979188, 0xbffd6e40244957cc, - 0x400233812847934a, 0x3ff57f839b84bba0, - 0xbfb28c24c6aa7d90, 0xbfedac5022e75aca, - 0xc0039b47c41b4262, 0x3fed8282cc9695c8, - 0x401369e132b311e7, 0xbfc999a5f2b64cce, - 0xbfe0392c1cdfb21d, 0x401562915231c795, - 0xbff57293fd9fe992, 0xbff82a1ca3551739, - 0xbff9e1a8c259566b, 0xbfff98c86a9bba2e, - 0xc000262f5ea147d4, 0x400f13e97ec767ea, - 0x4011366a03400773, 0xc008aa09979a35e0, - 0xbffa67b8df715696, 0x3fa72ca34ee1a404, - 0xc00228b9c9e19b15, 0x3fdfefff05fb0e9c, - 0xbfedacbf4a1fa7b2, 0xc015398b7d45396c, - 0x400279bf1313b866, 0xbff14b454b7c2bfb, - 0x3ff1fb48ffaee7c2, 0x3fc90f0db4ea5798, - 0x40068b32b4b7ebca, 0xbfe98ab6e964940a, - 0x3fd3833f929a6874, 0xbfecdf4b501516e5, - 0xbfed54c6fd82978a, 0xc003ac35eb970725, - 0xbfe7040b04710a83, 0xc015ecd0082189e6, - 0xc00f7c69f700a158, 0xc00c60845cc01568, - 0x3fea225d27dbe98c, 0x400df763a6a90d98, - 0xbffe4f50faa31f86, 0xbfd0b163499cd974, - 0xc00835fd879fa8ba, 0xc0032fc180f4f786, - 0xbfed99d8063c9bce, 0xc003bda9b5031acd, - 0x3ffdb62c951a4ab8, 0xc00e0302e367ec62, - 0x3ff900f913ffe67b, 0xbfe143a9f806eb44, - 0xbfd3c98a3d896df6, 0xbfeda7434bec4d32, - 0x3ff0a696527d0191, 0xc00f9020244e4291, - 0xc00a5810d43fc06a, 0x3feabb403744d928, - 0xbfe0593db251fc54, 0xc00adbd8973ae520, - 0xc002fc9402d47b02, 0xbfee6408f7318e5b, - 0xbff0611d3fce968c, 0x3ff7a383139ed7a7, - 0xc0115df863daceae, 0xbfe6112735d53bc8, - 0x4004a4aed094606c, 0x3fe5c75e332c7d64, - 0xc0154e70bb9ec916, 0x4004249941ba4097, - 0xbff34b76e61f1b90, 0x3ff5525093f62c38, - 0x3fec3bd75946c8c0, 0xbfed339bfc383b58, - 0xbfc4f3a08d6a42a0, 0xbffbf5b53787bfcc, - 0xbfe1dd79a5a45696, 0x3fbc1da528a8404c, - 0x4004b845ae564fb4, 0xc00c92c2b5a21b70, - 0xbfe1941aaf785c75, 0x3febc01597941714, - 0xbfda8ed457dad1fa, 0xbff6db91f501ad3d, - 0x40016dad81f71195, 0xc003cb97f7c1e91e, - 0xbfea5a8876314a93, 0x3fe8d9226d59060c, - 0xc00e8fcdd72e3fcb, 0xc008063a70be00ee, - 0x3ff01306ac028927, 0xc004b1c0c0c360fc, - 0x4008f9a1e3435708, 0xc004bfd001fd822a, - 0x3ff760997c62de56, 0xbffbf85450aa0226, - 0x3ffec030e9bf8ff4, 0xbfd0d9b7384cd44c, - 0xbfef79b393d03361, 0xbffabf91e4f6becc, - 0xbff44cbf7e327924, 0x3fee0d8db5a2ba1e, - 0xbffb110f33f77598, 0x400055977cd98d5d, - 0x4005ad713fadda04, 0x3fefd096fd21741a, - 0x400088928017d533, 0x3ff884c966c7b434, - 0xbfebdbca4e587966, 0x3ff18729b9f8e937, - 0x3fe2cda845cbbff4, 0x40033282c7b229e3, - 0x3fdf89930ee56f08, 0x4003dabe85a5733d, - 0x40052d33e4c78d29, 0x3fe2626c97113a31, - 0x3fe1075b45a83edc, 0xbff48ee9bdf4db88, - 0xbffb252b028fe59f, 0x3fee88b92323ffae, - 0xbfacbfc1818b84e0, 0xbfde0fe045ae9816, - 0xc003b5e3c7c0e57d, 0xbff0accaba8fcdb5, - 0xbfda757adffe6bb8, 0x4012940b9b1ad366, - 0xbfe9b2f7366feb84, 0xc00976f96f8881f4, - 0x3fe00e7760e3c808, 0x3f987829f10dd280, - 0xc00669a76e767794, 0xc010bf16ab24bee9, - 0x400682e2bd76c47e, 0xc003686ed5f9cba4, - 0x3fef9afdbf741dbc, 0x3ffe3534f6a3bf93, - 0xbff99cc3a5b44190, 0xbff86326d01194ed, - 0xc00692730ffcecac, 0x3ffd91a738022f30, - 0xc00183a045b087d2, 0xbffdeac3e22299dc, - 0x3ff8fea2164b84ba, 0xc00a84b5c635d019, - 0xbff665c640da237c, 0xbff4c757ee49a529, - 0xbffa1bd083056938, 0xc00e263f7906ffc5, - 0x4005ee2488eb1c85, 0xc0050e1a5a8ba010, - 0xbff1b244646cd1bf, 0xbfd605623ef7b8d5, - 0x3ff56662fe805cf2, 0x3ffd58f471c68a73, - 0xbfe1abbfd1574dae, 0x3ff3e89706076fc2, - 0x3fbece5b4853ef60, 0xbff3641d37ba565a, - 0xc007a40cd69d4d62, 0x3ffe08e1f8ca1d4a, - 0x4001a323e2ed38ef, 0xbfd680670b1daab0, - 0xbfef57df9e5dc4ef, 0xbfe5b22cb88318f8, - 0x3fd998c872137b24, 0x3fecbf6b2876bf60, - 0xc002314f53d26aad, 0xbfbf9076f2910050, - 0x3fd3d43031513e14, 0x3fe59cc945dabf17, - 0x400b582fced506f3, 0x3ff4b81b3eb465ae, - 0xbff25edc931af12c, 0xbfcb1d3d6c46f858, - 0x3ff66c65aaceb6e8, 0xbff57860aa175c18, - 0x3ff6c18b3f567aac, 0xbfe8a0e216346c9c, - 0xbfb0d97196343480, 0xbff0e92fcc59a858, - 0xc0036179200b02c6, 0xc0076f500e85cf70, - 0xc002f03291fc783e, 0x3fec6033971fa294, - 0xbfebc9891b0a8f5c, 0x3ff93bbf638f4c09, - 0x40106384bce3cfdf, 0xbff1c931f3dd314d, - 0xbfff4821ef837634, 0xbff45f428bb8b602, - 0xbff21e7722499bbe, 0x3fda57395b8ffd26, - 0xbfebd0cb888ad62e, 0xbff1a770f08a09ba, - 0x400fbeceef5cba51, 0x3fd5aa291de703d0, - 0x3ffdd1de4f387ad2, 0x3ffe6d8294dacf74, - 0x3feb29fa3db71862, 0x3fff146c1b03e5fa, - 0xbfe050541564a34a, 0xbff2c87c83bb5bb6, - 0x4012538e7282abf8, 0x3f76e570437e5e00, - 0xbfc84e8393021138, 0xc009256706da46e5, - 0xbff3a9399bc7b1b0, 0x3fb1c1ddf974e990, - 0x3ff491565515be5a, 0x3fe1f151cccfbfe0, - 0xc00bd5bd64e016aa, 0xbfe65d9fc475848a, - 0xc0067f950e6c27e2, 0xc00b668d290501c8, - 0xc008f7476e5cedf6, 0xbff959f122a4ba8c, - 0x3fd2ab0ad2b01dac, 0x3fe47e015940037a, - 0x3ffb36309d5b1040, 0xbfd5f083177d9956, - 0xbff35e0397456800, 0xc0118f831e46302d, - 0xbfc41077dc518078, 0x3fe8906ce6d2ecb4, - 0x3feaa064afd59e27, 0xbffb1fbbc5929818, - 0x3ff02870cfefd876, 0xbfc42798a96800a0, - 0xc0119ac3220c869b, 0xc007903163130788, - 0x3fd6564a7f0b6ca8, 0xc004728a3df749e7, - 0x40020a69cc204e23, 0xc005ada939cdd08c, - 0xc006be87b07a5a01, 0x3ff94b0d7f877517, - 0x3fe3c86ed2d125f9, 0xbfc94a64dda20504, - 0xbfa4d62d37e62b00, 0x400350d8b4cc9002, - 0x3ff62c406670d564, 0xbfe7449f8e1f48dc, - 0x3fcd9708be56ec44, 0xc001c2ae1c2dde5a, - 0xbffe699c88f687b8, 0x3fd029fb541c36c6, - 0xbfc4096ebf9346b0, 0xbff539e9313a1d36, - 0x3fdc291d7b5210c0, 0x4011423b29306886, - 0xbff8cc996260aeeb, 0x4013321718b33e01, - 0xbfe2e079605a532c, 0xbff25d3875779937, - 0xc01663ac7671c48e, 0x400ab96a4437f4b4, - 0x3fef61f37ba9cc92, 0xc01308eb3886395d, - 0x400b76e812e1bd6b, 0x4005491131477cea, - 0xc0091ce7db160148, 0xbffa2ed7466ac4d8, - 0xbfef7e5b5057787f, 0x3fff7a018f42f31a, - 0xbfecd1eca8ec1b38, 0xc008b088050c3a5f, - 0xbfccc54732dd90c2, 0xbfc49bc5ca8213c0, - 0xc0080f73c4403aaf, 0xc00249cabdc1122b, - 0x3ffb6ad2ac82df1e, 0x4001195bf0523285, - 0xbfe23736292d9efe, 0xc0118df716bed3ac, - 0xbfe148be195b4804, 0x400dd16939f0be8e, - 0xc00364f178e3f0c8, 0x3fba110ac40664f0, - 0xbffa1c0a6170431d, 0xbff13eef433a3e8e, - 0x3fe36e2c8c88de1d, 0xbfde1ff632d8a952, - 0xbffb6a5eca1d28b7, 0xc00cba4b219be8ac, - 0xbff9ccb747e0ed93, 0x400e4ef6801f29c2, - 0xbfd83f036dcb71f0, 0xbfcae8a8973cb2f0, - 0xc0028d8f1dfae508, 0xbfe5ac44dcb5b001, - 0x3feaa7d7a532e4e1, 0xc0076b881e6ce594, - 0xbff274c37327d46c, 0xbff9e729efd0e1e9, - 0x3ff8eafcfdc96110, 0x40128e6421306a8a, - 0xc00302e96fa1f92d, 0x40057c1d2f7c6a56, - 0x3febaa40044d3103, 0xbfc5bf1178ca8942, - 0xbff03b512fc20e00, 0x40032499c88fe684, - 0xbfe9fb5bed9a8e0e, 0xbfb1e0c473a14624, - 0xc004c710138f91ce, 0x3fd98f13c5a962cc, - 0xbfb947ddaad03de0, 0xbfeab442a90090c7, - 0xc007f0c1ed5da1da, 0xbfbb0392e4dd8c1e, - 0x4008540a1e4825b6, 0x3fcaa0dfe984374c, - 0x400583f7155db6c1, 0x4014865c4a7437de, - 0x3fafd55fafe11c00, 0x3ffe6b3064abee82, - 0x400a554416c6d928, 0x3fe76195942fff34, - 0x3fc0fe9df36b6ab8, 0xbfd43967c6f2a78a, - 0x3fe5efbfc02e2e4a, 0x40097c8c7660cda4, - 0xbfff76f3537366ea, 0xc01302c853288747, - 0xc000f1e32db8ee08, 0x3ff14eeaa9f8b021, - 0xbff365dacd4dbb08, 0xc0114cd3fe6454e4, - 0xbff3bd79783fcaea, 0xc0194828cd241b5e, - 0xbfe0cebaa5ad315e, 0x3fdb4b383d259915, - 0xc00199b577de8c24, 0x3ff3b2b523817e30, - 0xc0039b670d8fb3ec, 0x3fdcedbfae01e6fc, - 0xbfc6b977b05399e0, 0xc00120d4cfc9b91e, - 0x3fe59251bc58a16e, 0x40111cefe1f4250e, - 0xbff17cef14a9f0a7, 0xc002f9508b20975a, - 0xc00b38061040a300, 0xbfbc3504e73a92d8, - 0xbffa2ea7ec6938e7, 0xc001dbcda70118b6, - 0xbfeab7a1d49df78c, 0x4000ed4765a110a6, - 0xbfdf89d58934001e, 0x4019b8ed558181fa, - 0xbffb338dc6813640, 0xc003256e35224c79, - 0xbff3fcdf7ffa98ea, 0x3f65b37fcb19e500, - 0xbff6b8216a2477c7, 0xbff8b8e3dd2702c4, - 0x40041284ab1cbacc, 0xc0001767998c98a7, - 0x400ec9cc543cfba2, 0x3ff85970bbe9a0ab, - 0xbff42db362c2c84b, 0xbfee61a90d14feb2, - 0x3ffcf4d5e43fa602, 0xc0046d3cf9dbaa84, - 0x4004d629daf82494, 0x3fb410e9f697fbd8, - 0x3ff3a7188f9664c4, 0x3fd86af1b42735f4, - 0xc0072ec6b70b47fd, 0xbfde5c22d70148b7, - 0x3ff50be95968a9c5, 0xbfe22a8ab7f38ba8, - 0x4007c392dceb99f7, 0x40082c3df5f03e9b, - 0x3fe0cd072973b220, 0x400860ef93947be9, - 0xc013fec12ebe8ae4, 0xbf9a341100e54fa0, - 0x3fde89fe46c05506, 0xbff389b08d8b446b, - 0x3fc5106ae4f7c372, 0x3fd67aac69f2d74d, - 0xc0037dd8a8c07250, 0xc000b46e64c391d4, - 0xbfc09795726fbb98, 0xc008992f5dc3708a, - 0xc0012829cddba3b7, 0xc004ddab03455e9b, - 0x400962a31d8e060a, 0x4010ec8f4496b538, - 0xbff8f8daaa597e69, 0x400301442950b86e, - 0xc016923930b2f252, 0x400208900835781e, - 0x400d20b5b52005c0, 0x4002b3932ddfb660, - 0x3ff59b67060d68e4, 0xbfec4bcd106b474e, - 0xbfd5b0ec83e734c2, 0xbfd099bdfaee80ac, - 0x3fec4535aed08d7c, 0xbfc5fe5e6b4ce74b, - 0xc016a872d0000c87, 0xc00130d178f48476, - 0xc0154479f4f9dc10, 0x400da4d749cd5fa6, - 0xbfee311faf1c640e, 0xbff42c25d41a3118, - 0x3ff46701859a805a, 0xbfb9983f85235440, - 0xc0017b5ae20b238c, 0xbfcf856c3a77c0b8, - 0x4000525f1bb5c53a, 0x4013bcd16604b3e4, - 0x3ffcb602e30bdaf0, 0xbffdb2d8d22eacfe, - 0xc004a396b4dd31a2, 0xbfefb6d402994ff5, - 0x3ff92cc5072fbe3b, 0x40072b03fe3870cc, - 0xc0015bb7feec092a, 0xbfd48e1095c32921, - 0x400cf375883db8c0, 0xbfde6eb4ec61e050, - 0x3fee08595bc7f409, 0xc00b6cfbb2640c38, - 0x3fec3bac548bf532, 0x401d34f4167fe8a8, - 0xc00e793a396a228a, 0x40061e9f049320ec, - 0xbfb33b3756153f10, 0x3ffc34be0d21b684, - 0xbff4c501d99fceca, 0x40125ea28f2d790e, - 0x3ffad18d3691adb4, 0xbff40aaacefce8b4, - 0x3fff512b3db492ec, 0x40128ad8b1399a8f, - 0xc00409f1a5a6957c, 0x3fee85d67c14109f, - 0x400239c76513ee05, 0x4008f65634cbdb11, - 0x3ffd4f5e436ee151, 0xbfe1754c995cc692, - 0x3fe15c4abe80e4bf, 0xbfe1d51954bc0090, - 0xc009ae03265a0828, 0xbfcf75ebb569b000, - 0xc0026b3d768f855c, 0xbfd0cffa30c6bdb0, - 0x3ff0edaab5685891, 0xc0041943faf05053, - 0xbfd26be1ee94fb50, 0xbfce5dbb5e22c650, - 0xbfd5ac3b02d129c0, 0xbff8666f83395b02, - 0x3fe00c854b33cef5, 0x3fdcbdb468ec8658, - 0xbfe423b50e3c2b5b, 0xbff4768306c7a9d4, - 0x4003fd4bb9b86ae0, 0x3fc84d74fc8b0d38, - 0xbffad274d98d7caf, 0x400c415906c178d2, - 0xc005e1291117affc, 0xbfce8142364b1af0, - 0x3fe94158f26a411c, 0xbff949f8fb4cf3e6, - 0xbff04a06ab33ae5e, 0x3ffe8801cde850ee, - 0xbff4e80277a04e1c, 0x3ff1cec799999691, - 0xbfe3e88b122e8286, 0x3ff81f8a5ee78f52, - 0xc00072a1dc681783, 0xbfec5b0087481ec0, - 0x3ff1fe13a3566c7c, 0x3ffa451d72e90b1b, - 0x4016edd3c582a0db, 0xbfe012e4ddc3df0d, - 0xbfe24abe0d1a7d17, 0x40062fe6a2dc7788, - 0x3fe780e487567f22, 0xc002cf9883494676, - 0xbfa52fbf33fcc750, 0xc0079ce4d1c3f093, - 0xbfe4680ae09c987a, 0x400907f935b020c6, - 0x3fd0aa5f1f5a4644, 0xc00b1ea04e964548, - 0x3fe1c848f0a6be70, 0x3ff249faf556ea46, - 0xbfe7707706a2ff8c, 0xbfa00c23628061e8, - 0xbfc7989b67b392dc, 0x3fc38294fa56a358, - 0xbff35fff8fe66941, 0x3ff0d2b6073f0906, - 0xbffdd95b8c03eb82, 0x3ff0bf866422ded8, - 0x3ff55f74083c2cb1, 0xbff706313e29113e, - 0x3ffb23cc4db70be4, 0x3fd2edc10d20e823, - 0x3fb40fcc53491580, 0x3feef2299a467df2, - 0x4011cf8bc01cb292, 0x40040a628a369d4a, - 0xbfee047c714f5e02, 0x400028898cea4806, - 0x3faafc20482933c0, 0x3fa00807e5548540, - 0x3ff7278a6769d6d4, 0xbfe0067411b62c50, - 0xc013afc050d7c082, 0x3ff133e3679775c3, - 0xbffcace9db853220, 0x3fee1c05dd5bba1c, - 0x3fdae80531eb7110, 0xbffd5c1dfaf3a958, - 0x3fe49c97a2e6b948, 0xc003041501a6038d, - 0xbfb5fffbb9f04610, 0x3fe46b3c871e93ca, - 0xc012a72d33b5a0e1, 0xbffda9eddd8ff53e, - 0x400b98da7eb5d549, 0x40089ba06b296225, - 0xc009be7aaa2c45a4, 0xc001dd90e0f3ebc8, - 0x3ffddeb93806ed99, 0x4001f18c66aefd30, - 0x40067932de90b8f2, 0xc00c78115499827c, - 0x3fd9ec97cc10a232, 0xc011b20d464ad093, - 0x400182f59a6546d5, 0xbfffe7ba9b01be2d, - 0x3ff9003af5a456c2, 0xbfe621fdde73824e, - 0xc012610077e41eac, 0x40033b4b5ba20785, - 0x40086f6ad65bd1bc, 0x3ff830c7fcc08ac0, - 0x40147c7fadcf00df, 0xc00f5b4ec03686b5, - 0xbfd834b85a9afb24, 0xbfe253be4a03aab9, - 0xc000e607ae23dcd6, 0x4011a5f545865852, - 0xbfd2446e61defd90, 0xc004f0f029589c1a, - 0x3ff345f06609466e, 0xbffe3bbc53993f35, - 0x40034760e918286c, 0x4004e8b6b824bcb2, - 0xc014f19d93ef83ca, 0x3ff94e4a575648f8, - 0xbfd291eeafe7b72c, 0xbfef9b391cbb202c, - 0x40118eeab284a0f1, 0x3fe982e510388b42, - 0x3ffe2b2952e85fc1, 0xbfe84da28f77ff70, - 0x3fd2bf53c48b48ee, 0x4007cf172cb6870c, - 0x400556bc67bf6fc0, 0x3fe60b061b9f3e04, - 0xc005c4f02cef4cfe, 0xbffdd50d4b336252, - 0xc00645430162e7cf, 0x4001f0a608a7a884, - 0xbff346d970bd875d, 0x3fed660d6633565c, - 0x3fe4c1855eddd5ae, 0x400b5323c8a1054a, - 0x3fe9fec01b017eb0, 0xbfcf68fbdb90d020, - 0xc00e235c8d9d0fca, 0x400383e2d6a2eeac, - 0xbff397b95cc520fa, 0xc00d0a22c3259e3b, - 0x3fe2d7ad6d7847ab, 0x3ff5042986354fef, - 0xbffd1a03bd26e309, 0xbfd426d177417868, - 0x3fde9378431e51cc, 0xbfedf5be3104d4b0, - 0x3fe67e29c48d577c, 0xc00f61e0e055f00c, - 0x4000116a1364f987, 0x400436948b9c521f, - 0xc0096c63a3ec35e4, 0xc0034fb36aebffd4, - 0x400b05314332b5b4, 0xbfce09e86efc5cb0, - 0x3fec6432c090cb56, 0xbfe50475fa1d7dba, - 0xbfd868bc907c8d60, 0xc002cb4b04452bd2, - 0x3fee3817ad3a6bf3, 0xbfb9b126c86b76c0, - 0xc0021a54d94c8eaf, 0x3fb653ac6b3bbfa0, - 0xc0099fc8538b65bb, 0xc00b7ab1060757b2, - 0x3febf0eec91f32f1, 0xc003730ba21406b4, - 0xc00ae90b7d2cb13f, 0x3ff4424f33662360, - 0x3fec21e77f0601d7, 0xc008fb30aae622a9, - 0xbfe9d87d565432c8, 0xc004e761ecaeb9b8, - 0x4002aee5a936f123, 0x400671114acd58ff, - 0xbff9aa55af1671f7, 0xc0044b8d35db3948, - 0xc002bf8a4f996f6d, 0xbff35ce3f95643c0, - 0xbff4ec15feb6d4db, 0xc00a9f44f548e036, - 0xc0026f48b434becc, 0x3ffca86772c17a6b, - 0xc01096feb060054f, 0x3ffaa67d040a9c15, - 0xbfbe605f4e37522b, 0x3ff508ad23e1e555, - 0xbfbb59fb50c9fd80, 0x401159fcb37b72b0, - 0x4003516d1a78f62a, 0xbfed79d3a829df73, - 0xbfd6cabe7d7bf160, 0x400555719614eef8, - 0x3ff354f0b3020d48, 0x4000913b05ca0c19, - 0xc0024a347e86aad0, 0xc0065d28ed2ae244, - 0x3ffce8624b7af6f2, 0x40008b02f444466c, - 0xbfffa6b76347fa3e, 0x3ffa0af2d51ad33e, - 0xbfee56dfc7283d62, 0xbfff43d8fd7dd1fc, - 0xbfe2c72c0f4fdd8d, 0x3fb731816ff1c860, - 0x3ff2d036d31e15eb, 0x3fe8dd14c7819134, - 0xc00649129688e97d, 0xbfde445f2569ee58, - 0x3fff53136c33dc45, 0xc011c3132d2095ac, - 0x400189be7a3d2e17, 0x3fcaf04c59f2b7b8, - 0xc0006dd46b13d057, 0x3fe6b846ed3583da, - 0x3ff09f442f96d0fd, 0x3fe6da989b22fc05, - 0x3ffe2a5e8306315d, 0x400adeef63f2b01f, - 0x3ff40981b9895eea, 0xc003148b63f6bafb, - 0x40104bd88c2c9303, 0x3ffe43daac6ac4e4, - 0xbffc2110abd93340, 0x400174a5792a89e7, - 0xbff96ba1de1eefd0, 0x400a9936062d130d, - 0x3fe4903ae918a65b, 0x3ffcc6240e5f4014, - 0xc00b4aa24aed85b7, 0x40065518e1573fee, - 0x4006328090b9d468, 0xc002333fa5a5aa77, - 0x3fe81378f684c1c8, 0xbfe23f9ed24aa37e, - 0x400c85edfd3869e8, 0x3fdae110248e31c2, - 0x3fe11856aa651abf, 0xbff33540c8ae46df, - 0x4016416e9f08eda6, 0x3ff36990ad6ebc96, - 0x3feca54bc81c8924, 0xc0019ca8229c0a78, - 0x40057ad38f84c8be, 0xc0062649b9de54cc, - 0x3fd966583382452c, 0xbff323ab5187701f, - 0xc009dd04526115fa, 0xbfe3f7e07b3b30ce, - 0x3ff1620f9cc0b310, 0x3ffda7d747a328a9, - 0xc007208eddd4a8c7, 0x3fe594c4761aef6e, - 0xc01385af8eeaa2b4, 0xbff297e0beef6064, - 0xbf86350394ed4780, 0x4001bda467922fd2, - 0xbfec1673be869299, 0x3fe77977d2a66138, - 0x3ffda4df9dcab50e, 0x40069eddc0a4c518, - 0x3fa9e34b55579f80, 0x40067b7b4f5b1963, - 0x3fd19b168a569dc1, 0xc011b49c4391168c, - 0xc003e93af0d044ba, 0xbff23942f5e538e8, - 0x3fce3252ab4fd8fe, 0xc000a60d3476a933, - 0x3ff5915414f73f79, 0x3ffcf8c5d97478fc, - 0x40004ffc57da198a, 0x4010a7349a79240a, - 0x3fec67a64e50ddb8, 0xbfe570bf89a3220d, - 0xbfe825f90e3ce044, 0x3ff1af8dcb2ba468, - 0xc0071f4f877724f4, 0xbfddd4d1e011f64e, - 0x4003c8b2d43aeb6f, 0xc006ab18c55ce4a6, - 0xc0034e9cf16c8a24, 0x3fe9a01445051828, - 0x3ffd3af208da0326, 0x400315bbc933ad32, - 0x400be3c3943853c2, 0xbffb03f6ec0e8464, - 0x3ffa98798dde57bc, 0xc0169fcec0f3298c, - 0xbfe1c3ccbfe74290, 0xc0016a9b4c1997e3, - 0x4010b32fcc60f532, 0xc011e6c605336afc, - 0x3ff6095ee03e8607, 0xc000016bbd8334b2, - 0x400f233aaecbd847, 0x40080e10999fc7da, - 0x3fea477502a2299a, 0xc008f382be4244d4, - 0xc005440726bbddda, 0xbff20392587711c0, - 0xbfd80c1da3036693, 0x400187ff2fe6761a, - 0xbfc379bc49e63a00, 0xc000653291346458, - 0xc012a90ed8f70bed, 0x3ffc6f1a69074262, - 0xbfff487940d555aa, 0xbff47a1e0d133719, - 0xbff06850788444be, 0x3ff197f9984acb99, - 0x3ff9653e3907558f, 0xbfed50cd3685dcb0, - 0xc0050b9cc16acbc6, 0x3fb6e56e88e75cc8, - 0x3fe2fd48bab5138c, 0xc00028ee50b5a796, - 0xbfb689dee3c83608, 0xc001c1857ac542aa, - 0x3fee9438b8f59d10, 0x4004c8cc8b30551a, - 0xbff8734b072d7d44, 0xbfe080e9f4b63633, - 0xc00dd0df9d20459a, 0x3fd796ed7fa84a18, - 0xc0068026798a071a, 0xbfa611392c7f3740, - 0xbff5b5157954c064, 0xc001dd1f45321723, - 0x3ff2b85922866554, 0x3fef51fe72a2d7a0, - 0x3ff2f1c97e055e9e, 0xbffa4c5bc4992816, - 0xbff7fb12839e33a6, 0x4014ef6e70923d48, - 0xbff20eea9e8ec7b2, 0xbff479d855b26368, - 0xc0098c04d35743db, 0xbff795608bd2bea3, - 0x3fda96dd1ff2f0ac, 0x400e559cd66eb355, - 0xbfe8b1bac6140d92, 0x3fc47037bce94718, - 0x3fd6ac4b47818ce2, 0x3ff97382cfebeb65, - 0x400787a2405660c4, 0x3ff0d862abf7293a, - 0x3f7fca3df0ae2500, 0xc007682732f2d111, - 0x3fdd1b34a0222742, 0x3ffb1d24b594839a, - 0xbffce2fafa1b236d, 0x4011cffcaa93364e, - 0xc00f313d7fbcc74c, 0xc00df779f8f9ea6c, - 0xbffa86a56795e28a, 0x3fe6c480bacb3963, - 0xbfd382fc8dac4e8f, 0xbfb1397854d66660, - 0xbfd4c327fcc93df0, 0xc009246480cdaff4, - 0xbfe7d0e9a30ed817, 0xbfd51ceb87f8ab78, - 0xbfe35e3c939ee459, 0x3ff7bd4dc5930c0b, - 0xbff40e75386dda6b, 0x3fe8e7aff416f55b, - 0xc004fe6cc6034817, 0xbfe30f5270a9c254, - 0xbfeda4787ca86b7e, 0xc0012fedfe5a2e92, - 0xc0029485307d3079, 0x3ff516bf4a41f130, - 0x3f81da0b3ff4b780, 0x3fd4db8ce60a7868, - 0x3fc5ed72aa0bf294, 0x4002c1e5d8150d6d, - 0xbff236c75388ffb4, 0xbff962c41fee574c, - 0xbfe4ac6a1e7d05ea, 0xbff6ea12832ba974, - 0x3fd58e2c33f1b9d8, 0xc0117183f84f1403, - 0xc001d8f168f38c19, 0xbfca1faeee0b42fc, - 0xc0056eb6bdcdeadd, 0x400cf7db999bde36, - 0x3fb3135c26b32120, 0x3fe8810006414eee, - 0xbfaa9225b52f2300, 0x3ff0da5fcc51edd2, - 0xc00640879a49eae2, 0xc00f4a7a7f68f1ac, - 0xbfe37399bb71835a, 0x3ffba493ff981d68, - 0x40153d9416e1addf, 0xbfe32f70104405b6, - 0xbff057b1d4448c50, 0xbfd78087768c83f8, - 0xc011a73b4e9dd636, 0xbff796e7f5cdcfe3, - 0xbfeafa7c96bc4103, 0xc0094a28f77ee668, - 0xc0048045a7a0a387, 0x3fe826bcbc5fb98a, - 0xbfe9b9ca8dbe9e1e, 0x4008f7ab0df21f81, - 0x3ff052761367abe6, 0x3fdecc1f7b545124, - 0x4000f0fa0f578b4a, 0x3ff0e70e23105225, - 0xc0099c6e775b38d9, 0x4003f260d0c306ca, - 0xbff57ca7a556ae1e, 0xc00dbfd63f369762, - 0xbff087be716081e1, 0x400632d85318f5ef, - 0xc0092b1ad03a07e8, 0x3fffb892f7805146, - 0xbff1fba016d64294, 0xbff7f84fb5c70342, - 0xc0041134bcc904b8, 0xc004396f90603e46, - 0x3fbd570884c4bda0, 0x3fe2a3c6228cf974, - 0xbfd08608eb7ec760, 0x3ff27685eb92227d, - 0x400350f7ecd171ee, 0x3fd8a0a6e6e13810, - 0x3fe56c21398870a2, 0xc005e92be9e56a10, - 0x3ffb3058e9353e5a, 0xbfefda361c4bee3a, - 0x3ff758e775370cc2, 0xc0044d1825620e92, - 0xc009e6392954aba2, 0xbfe8125a57d636be, - 0x3fd50a72b9e724cb, 0xc0129124e7a024a5, - 0x3ff9710f3ab9db6c, 0x3fff57e32353d6f6, - 0x4004423311e2265e, 0xbffcf1cfe82e95e6, - 0x4005eaa97c4830cd, 0x3fd557f4a95748f4, - 0x3fe821185dd53d78, 0xbff34a793d20c3e1, - 0x400e5c31795557d2, 0x3fe73f98236ac09e, - 0xbfc16a8eec92a3f8, 0xc011afdde79ae650, - 0x3fe6aade5f06c39e, 0xbff890797795db7a, - 0x3fef428dc33a5dfc, 0xc00fdb4eb768ae5e, - 0x3ff88acd99961fd8, 0xc00a5e1ea1be1c96, - 0x3fc21ddaf4786568, 0x3fedae7fa37c6720, - 0xbfde7bf394d503f2, 0x400d0510ae87e1b5, - 0x3fed757b0d2e68e0, 0x3ffe3b0bfc2865c6, - 0xbffc6c1d682571cb, 0x3fe338565583e566, - 0xbfe5703d91865f2a, 0xc01054a3a4117ddc, - 0x4001f57922f19cfb, 0x3ffa382e81a9e75c, - 0xbff7e616bc22eb44, 0x3ff51ea2723f8aa8, - 0x4010dd3f346bd9ce, 0x3fe45436ea24b762, - 0xbfeee225060720c6, 0x3ff868c3905eac9e, - 0x3fe2553c68be845c, 0x400819dd0f4351d6, - 0x3ffeaa86770479f4, 0x4000342834868adf, - 0xc0065c3cb6bdab15, 0xbfca8b23a049eaa4, - 0xbfbae89bf807776e, 0x3ff134e099aebe76, - 0xbff567367a659284, 0x3ff9edf9dc3bb1ca, - 0xc000db153165b15c, 0x3fe40abc0ce396c7, - 0x4015f23f4687dbd6, 0xbff80b165a618598, - 0xbfd6afb92514df80, 0xbff85f3320cf47e1, - 0x40051465b338a38c, 0xbfefc08da6a25b23, - 0x3fe3e7c0ccfb5d86, 0x3fea2de3e80b9bc6, - 0xc007a4b0aa23202e, 0xbfd7d46d7dc8a4e8, - 0xbff98cc71d8252a9, 0xbf3984bccb7fa000, - 0x3fd1bd1d8494ad2e, 0x3fd287594aadf956, - 0x3fce352ba58f0ff0, 0x40009241d45fe3d7, - 0x3ffd570da311030e, 0xbf7a0d2950357300, - 0x400f798149641af5, 0x3fa04c841d6b7c80, - 0xc0077bf3a12362fc, 0xbffe7d2e9f5c5aaa, - 0xbfeb204f009f44f2, 0x4010a30c925d27a6, - 0x3fe71dcddd901dd2, 0x400c74164bf07102, - 0xc00bc60837985e88, 0xbfbfd45139f85680, - 0xc0010b8c5a1cd718, 0x4015d5d83629f498, - 0x3f43a951f44ec000, 0xbfe42d611bdc90c4, - 0xc000561882b4f706, 0xbff3d5b1bbbd820a, - 0x40055026e7ca1bda, 0x3ffaa1d6116a0e16, - 0xbfda8b520bf7f410, 0x3feb4d38db8d3402, - 0x3fc3d169ab12bb4c, 0x3ffc90ecb1147bfb, - 0x3ff4c7d058fd67f9, 0xbfb23ecf6baa1944, - 0xbfd12c584f221e2c, 0xbfed6bd5c1831df8, - 0x3fd188c7ca16578e, 0xc00e62f96795035a, - 0x4001600bdc70c825, 0xc0085350a730ab50, - 0x3ff7340fa2fb4d15, 0xbff38b899fa74b17, - 0xbfced56dc8e093fc, 0x3fe5053e572b4e74, - 0xc0040c490784c9e2, 0x3ff58dd3ed65c133, - 0xbfd24416ee7fa312, 0xbff3814d9a2bf34b, - 0xc0011c7069b4ead8, 0xc0017d45f3a34f37, - 0x3fb286bb053a4d10, 0xbffac99ddc0d4191, - 0x3fee47d48fd10bbe, 0xbfd04df76fe6c722, - 0xbfed77d31715cfc5, 0x3ff50064a2486eae, - 0xbfe0b59432a25fb4, 0x3ff331a61c7c82a9, - 0xbfd52432a007a53c, 0x4004cef0c703d723, - 0xbfef0973b4181242, 0xc00e588a16afa236, - 0x401863ee28b1960c, 0xbfe9735422517556, - 0x3fd06c0ef83c9880, 0xbf92d76243739980, - 0xbfe1edc6a225069e, 0x3ff2e56c25232412, - 0x4007315a0bdba7a0, 0x3ff111ad1a699266, - 0xbff56245b2cfe374, 0xc010ee61d3786822, - 0xc0028604b69adef7, 0xbffaa116d2b15c6e, - 0xbff6ebc32ebe8d46, 0xbff98a5c831ff580, - 0xbff0aaeb52c4d9f2, 0x3fd794c487d27b8c, - 0x3ffb33d7a727b38c, 0xbfd3b5a8aea8c4ec, - 0x3fd35a02a53ed400, 0xc0053dc93b031feb, - 0xbff871576c39af7e, 0xbfee7a4f705e2906, - 0x3ff4cca8a48f75fb, 0x3fffce350ae245e6, - 0x401008f5a5cc7ac2, 0xc002565c6b9a9044, - 0x400e1cbb56f9a4f6, 0xbff04de816a39ed0, - 0xbff55102f8e031a9, 0x3ff06f285f8ce828, - 0x3ff237e03e29911e, 0x400c2f1db46ce5e2, - 0xbfa09981e8d95ba0, 0xbfff481af71a9a63, - 0xc0097ce33189bfa7, 0xbff1d9889c6d47ec, - 0xc00da1398261e3f9, 0xc005bb9227543b1f, - 0xbfe886560efb6354, 0x3ff74699d9e554ca, - 0x3fd7de0f8773f4a5, 0xbfbe3325b92364d0, - 0xc00fabd376ba7762, 0x3ffdf1af849a2946, - 0xbff13359ea666332, 0x3ff15e5d259dd0d4, - 0x3fe66620319d0f48, 0xbffd528fa49d01f0, - 0x4009779683aa1580, 0x3f97642f8eeb0880, - 0x401022dc652c9967, 0xbfffc28370dd7732, - 0x3fee36482992225e, 0x3fe0182ecf899dcc, - 0xbfe2b99fe3ed5bcc, 0xc007a67fa5e0a520, - 0x4000701b875bb366, 0xc00122ae28cc8e2e, - 0xbff2d2ed3f92a05b, 0x3f8cce5e1bb606c0, - 0x3fb69d3bce563e38, 0xbfd89d7b5e31a892, - 0xc00025c04d7bbea4, 0x3ff54d7cfd3ad0aa, - 0x400c7b7a7f66fafd, 0xc0051b4ffbdff80d, - 0x401270465ce6a3ca, 0xc0038474cd7e2f7c, - 0x3ffc1a5b74c9530f, 0x4002a445b11411b8, - 0xbfc7ace2c632e69a, 0xbfefb6da00a70b34, - 0xbfe08698706e1a3f, 0xbfcdddc7744400f8, - 0xc00d5f3644af70ad, 0x400a5ec82641f96a, - 0xbff7f161bc758f05, 0x3feb955c266392d1, - 0xbfeb9c34080d64f5, 0xbff27fa19b96d869, - 0xc000d2ee4b8cba1e, 0x4000e4d341e8c0f4, - 0xbff1434998771d80, 0x3ff32d66947246e4, - 0x3ffa68bff8afa684, 0x3ff7c9159b4cdd2c, - 0x400cdbf59ed30e54, 0x400199082a4b14dc, - 0x400179cd376d3e40, 0xbffb6c0d0fadfb21, - 0x3ffe11b90072109e, 0x3ffc640832f3064a, - 0x3fbf1bcccff79d68, 0xbfea9cc7356bcaa2, - 0x40027d383d669874, 0xc0107a42690d0f38, - 0x4016bae93896cb76, 0x3fee77c3aa559320, - 0x3fe5dd3ad999c672, 0x3feb5d883fa6a86a, - 0xc0056d52e28c193c, 0xc00ebef7aaf33c64, - 0x401204d32bfb490c, 0x3ffe68620846ffbd, - 0xbfefefbc08fe5e9a, 0xbfdfca826f016320, - 0x40049b1b07fef232, 0xc000c34f22edd94e, - 0xc002b23cbeeea10f, 0xbfe838578b229316, - 0xc010b5b200999273, 0xc00c06c2050c077e, - 0x3fffd1affcbc556a, 0xbfde761ef5122fa4, - 0x4006fd6b8a8dd766, 0xbfd99753d02c337c, - 0x40171d13879cf17d, 0x3f69126af3755900, - 0xc00f999c01d0eef6, 0x3fee74f2537efcda, - 0xc00b4be2bb8789d0, 0xc0124814c3b39e59, - 0xbfdc58bc32f42314, 0x3fe9e310b67d93ce, - 0x3fed19ed596af1e6, 0x3ff8422e0416c988, - 0x3ff99742045f15fe, 0xbffa6da21e33e871, - 0xc0038d86ad15e33a, 0xbff0dadb78c5e2ee, - 0xbfc1bad7837b8538, 0x400cd93f720d4ca6, - 0xbfba7d0da9a84040, 0x400bf260c342b25a, - 0xbfffafa3ebfd66a2, 0xc0111a21a0391b17, - 0xbfdfd07b8c39f1e0, 0x4009490e9bb4785b, - 0xc01a4aa98a00f0f1, 0x400baa2aad4690c8, - 0xbfd25400a421ba44, 0x3fe27b8a9be2ea5c, - 0xbffe94e496022c81, 0x401e85b7aa50fb13, - 0x40051522aeaaad5f, 0xbfe42bad28785478, - 0x3ffb6b0c55f4d6f2, 0xc00525e5551eb692, - 0x40128d90fa8395ae, 0xbfa1b795e7795bc0, - 0x40109d6925a8e757, 0x3fe1e6c5856a7768, - 0x3fece140a0dac390, 0xc004dd0d6db71dda, - 0xbfe54d506723c9b4, 0xc0050e1d3abec080, - 0x3ff67fa07d60b8ba, 0x4010b9abc8f45593, - 0x400256cb16ac2fa6, 0x4005079e514a90b6, - 0x400f8e5afda708a4, 0x4004eb76a1220f4b, - 0x3ff1cc34e55d4720, 0xbfff50419c3f104a, - 0x3fdaf7c3c3074ccc, 0xbfc36488aea7e658, - 0x3ff1c6d1921d7596, 0xbfb1f2cb0b10ae10, - 0x3f407cd4dcc35400, 0x3ffd18464f324c70, - 0x400bb4c2b4be802a, 0x40005d7041836804, - 0xbfcd4f5c3eace398, 0xbfff7410fc227635, - 0x40109d17ff9f816a, 0xbfe0a24e86a0f1a6, - 0xc00303e0f06b31ca, 0x4001f8e48ca347fc, - 0xbfef2b7005a5c48a, 0xc003d3b5245d2153, - 0xc011e058bb464182, 0xbfe0bd3edd774b82, - 0x4016f37bccb56d6c, 0x3fe3d96a321a689e, - 0xc010a6df89d9103c, 0x4009ad63fec2e72e, - 0xc00b3fb30cda30d9, 0x3ffbb158e21caffb, - 0x400035c47b9806cf, 0xc011953cc72b1528, - 0x4006ef609c44f3c0, 0x3fc5406547e44ca0, - 0xbfb8e2da64d82b70, 0x3ff766a6497d3eb6, - 0x40007260d482579d, 0x3fe3fbc7ba9d528e, - 0xbff32fc29c9a054e, 0x4002edda96e451c9, - 0xbffe16811f9a44b4, 0x3ff3d370899bd5bf, - 0xbfe975366cb3e9e4, 0x3fc580c4ca6c70ac, - 0x3fc4662a333762a6, 0xbfda88aeef6cecc4, - 0x3fd2061cf1775f5c, 0x3ff6013dbf2ad294, - 0xbfe372e2acf980e4, 0x3fb3c32d4a70c3f0, - 0x40132d4abb038b74, 0xc005042d1f7442e4, - 0x3ff36949da7ab244, 0xbff5ca5b12f2e2c5, - 0x3fd5ae078a6483e9, 0xbfec41dfb6d73467, - 0xbfe560078b5246b3, 0x3fe77f410dab0436, - 0xc009e726b7515f36, 0xc00b7d096a0fbb89, - 0xbfe0049b1ee8cd76, 0x3ffb1c3851fbff0e, - 0xc002858e4ddfeae5, 0xbfbc643d0e3c30e0, - 0xbfe79838b05ec6e3, 0x3ff18c19fa4c0292, - 0x400f41f1dc702576, 0x3fed42406dca07ea, - 0xc0037ebb9b4a9c42, 0x3fef27f6e27e79ac, - 0x3ff6921f4198042e, 0x40001c9f340544f4, - 0x3fefc300e685bfb1, 0x3ff0299987f1972e, - 0xc0056cb69ce7b0ee, 0x400ab95713331d51, - 0x401b98f5dffbed9b, 0x3fabae75fa7c7e80, - 0x40058926f4d5e50c, 0x400401e7aff403c6, - 0xbfee38599593b00b, 0x3f9984bf868c3540, - 0xbfe10902081ed6aa, 0x3ff2ea0b79d87753, - 0x3fe4073d105b7428, 0xbff0cef6863e0377, - 0xbfe3903c659dd8f3, 0xbfca6bd9842f1270, - 0xbfdb5eb5a0912dd0, 0xbff73abf5102efb1, - 0xbfdf6e489062107a, 0xbffc95d0d9549312, - 0xbffbdea27221db30, 0x3ffe05d285130032, - 0x3feeccdae0e9d3f2, 0xc00fc21b1a41550e, - 0x3fe8410a43ebf252, 0xc000aa1a1a3e2f55, - 0x3ff823a501828568, 0xc0015d0d43cde7fb, - 0xbfe8990fc59db179, 0xbff0e85f6afd4738, - 0xbff4a97511ad4a74, 0x3ff2a5a4ef3ac074, - 0x3ffebae8f91c649e, 0x3ff30befb0e0706c, - 0xc00172ff91bc06b2, 0xbff08949d500b91b, - 0xc0184101b90b1a7c, 0xbff4ef3a371f3d96, - 0x3fc7b643a42eb2f8, 0xbff735226c9067fb, - 0xc006968e527655d9, 0x3ff2cb5f89e10b0f, - 0xbff71dc3c526d60c, 0x3ff16c9d43cbf8d6, - 0x3ff847b57d737382, 0x40031f71d9f9abee, - 0x3feb703b4198fb6e, 0xbf917c4d47349120, - 0x400a6b694a4218a2, 0xc008b6658150a92f, - 0x3fe725f89674138c, 0x3ff6f434de1a8a63, - 0x40008d7004bfac22, 0x4000284eaefeb6d9, - 0x3ff78a15383edd2a, 0x3fe934e7559560fc, - 0x3feab19aaaff263c, 0x3fff3d81de3a342e, - 0xbff1f9527c417960, 0x3ff4176327fb56f8, - 0xbff1a49fccde922b, 0x3ff518d21f4c9d30, - 0xbfca57cca8a81008, 0xc01327e02fe0a125, - 0xc011e46ac7e225ac, 0xbff9b31cb4df9f6c, - 0xc003d211a74304f6, 0x400591067fe04b74, - 0x3fe45ef25d342c3a, 0x40049bfe78065382, - 0xbff55b57f71ca6d0, 0xc000b31edbebd3b9, - 0xbffe341b4d750087, 0x3ffbd72b4510de3e, - 0xbfee329760cbdae2, 0xbff8be8c72b59a9e, - 0xbfeaa75d1ff7fca2, 0xc00015e416c51d82, - 0xbffe160e30229992, 0x3fe04ebdf4251c51, - 0xc00748d71e01c651, 0x3fd47a6df71864ec, - 0x3fd3e1acab215646, 0xc0078c4e7799fba1, - 0x3ffcd43697af1342, 0x3fe05917e3fc4265, - 0xbff331ec5669480d, 0x40100c0ea9b6b7aa, - 0x3ff39c54680fb9bc, 0x400362e38727ff33, - 0xbfd75c5926cd7768, 0xbff7941f6fb35637, - 0xbff2a75bebddbccb, 0xc003ab48acb6f971, - 0x3feb90beb6260730, 0xbfcd83f116962880, - 0xc00554f596c456fc, 0x3fe8a6211e2900ea, - 0xbfd86dd287fc4546, 0xbff71ef1c49c9fe6, - 0xc00203156b393e24, 0x3ff53def958b4ed8, - 0x3fe5c7fb03f309bd, 0xbffe3d8063a08f7c, - 0xbff27e35c7bc5c4d, 0xbff2a711a78842b5, - 0x3ff94c31d8c6805b, 0xc0040d2daa8cac5f, - 0xc00587bb1644bee6, 0xbfc75d61fa049960, - 0xbfc6577d5d6fa7f0, 0x3ff95ead8c3379e6, - 0x3fdb415b805ab4f0, 0x3ff60600c90b9c7d, - 0xc011b6ba0d6e395b, 0x400e1d537210068c, - 0x40090208e2a22042, 0xc000294dda7754b5, - 0xbff96496cf523bda, 0xbfe8cf1a8a64f7cb, - 0xbfdb458018abe8d7, 0xc00d2bcc81dd83fa, - 0x3f86450959fc0000, 0xc005b3a4049817e4, - 0xc005b683d2b29b6e, 0xc011c759ca69a95d, - 0xc0107cfd3988959a, 0x3ff2f98f5f9f96c2, - 0xc00343a9bfc20ee6, 0x3ff8ea5137e1d1a1, - 0xbff641a1504fc86b, 0xbfdc516a3272f59c, - 0x3ff5b0ca1fd9e87c, 0x3fd9828a20a68d12, - 0xbffca2178b8662aa, 0x400d8e5fe05a4ef8, - 0xbfe2d1ffe7d2ff0a, 0xbffe810ae590c904, - 0x40020bf97fee8a6a, 0xbfb7773478f4dbf8, - 0xbffd7948004f9e0a, 0xc00026459c214ac0, - 0xbfb6ed8048a6f250, 0xc009ac4261504471, - 0xbfface6628297b90, 0x4004d14bc803d5d4, - 0x3fc395bbf108ecc2, 0x3fed4b3cc3d91b6c, - 0x3fcc1e1224e1b5d0, 0xbff87df794582ad2, - 0x3ff6c906ea0ce730, 0x401068bed425610e, - 0x4006458f28dfcc02, 0xbffbfb75fa02d8da, - 0xbffefe3cfeb559fe, 0xc0027cc108693ef8, - 0xc00cb03d8b812375, 0xbffaf22ef5381857, - 0xc005ee489fea39c2, 0x3fc9574515fa22e8, - 0xc00459d3e4bfe4ca, 0x3fbc83ffa0664830, - 0xbfcba3d5986a6e00, 0x3ff2232a4e839dc1, - 0x3fdf62e5779b1c3a, 0xbfc8679d6043e560, - 0xc00ee785b67c8b8c, 0xc0193835ec5c2b62, - 0xc00df53d237ee119, 0x3ff51b0f9e0dfcb3, - 0x3fe22771e304cc30, 0x400e9afbaa037906, - 0x3f936bc91f4bfda0, 0x3fe304206cef3256, - 0x4010f4785d04db50, 0xbfa0985dd8299b60, - 0x40085d60c34e93b6, 0xbfbd9c16172d9600, - 0x4001d9f00aad31a1, 0x400859235ecb9f5c, - 0xc010c6e1259834d3, 0xbfcb534e0a530bcc, - 0x3ff370e5f5e98526, 0x3fc07e6f3910c4d0, - 0xbfe99de69c17051e, 0x3ff3e65b519eee14, - 0xc0078fc291c8b2c6, 0x4007741db040dba8, - 0x401324bdefb9fa6c, 0x4004bd7f74203d17, - 0xc000260679c878bb, 0xbfffce7b6afcf9a7, - 0x3fcb47a1d642c1f0, 0xbfdd10ccb5df320c, - 0x401039dde8ebec2b, 0xc01be4168ff0c23c, - 0x3ff0732be35733aa, 0xbff91ff2e9f81168, - 0x4003a867bc3fbc58, 0x40022a5f20875c2a, - 0xbfca7f7ef96fdad4, 0x3fe3a458257f73f4, - 0x401281c37ee62717, 0x3ff086c8248fc9cc, - 0xc01403cbfcfb2111, 0xbff03dde57d5d7ef, - 0x3ff3bc0f983a005c, 0xc001dde601101814, - 0x40007077730fa08a, 0x4000841bc7af8e6b, - 0xbfef09bff6da8ee8, 0x400b34bc476abc8f, - 0x3fe03eba07974504, 0xbfdbfa3018e4939c, - 0x4004346c7fbf8906, 0x4004d51e5ba0dbf9, - 0x3ff61abc649b9fe7, 0xc000a945aad05354, - 0x3fbf89023ec82ce0, 0xc006cb2cc55b1e7a, - 0x400a374261311ea4, 0x3fc0148d33ce9534, - 0xbffa9526347d5b99, 0x3fdfb3c48d72e730, - 0x3fd363bc53c54b5c, 0x40020a46ac47b25b, - 0xbfe934ab14b1e1d4, 0x40073b0171ab9a20, - 0xbffefb57395bf7f2, 0x4005d444f3c240ed, - 0x3ff8b54a56794ce9, 0xc00ac7348503ba43, - 0xc006e0b578144685, 0x3ff428ad07eb0302, - 0x3fe743bcb12ef62e, 0x3fe8233e46392f3c, - 0x3feb288943318788, 0xbfd25b1a02157672, - 0xbff28f292e53cafe, 0xbfded120e237a028, - 0xbfdb27f342ec0f44, 0xbfb02f584ee853e0, - 0xc00dd50bc095a99e, 0xc0057d6c5c840680, - 0xbffdb556521540c8, 0x400e20fa73639cdc, - 0xc0020c3a4285d6de, 0x3fec5129c0f4b7d1, - 0xc0055380a7bb29be, 0x3ff1095f301fda7e, - 0x3fc28b6132a37f70, 0x3fe38f1f6c6382d2, - 0xc007fc0584c2704c, 0xbfea8bf163fe9d7a, - 0xc0005045bdc376f8, 0x40060eeb8cd51b12, - 0xbfff4c294962ae70, 0xc010b2013f690457, - 0xbfde8cd71cbd7464, 0x400e27badae73364, - 0xc006677d6b8a1944, 0x4007af660e661a3c, - 0x3fe749474078d268, 0xbffd25a3d2abe210, - 0x3fe6fddc420371b8, 0xbffd6a37e5a6e703, - 0x3fe6ad47c3666e24, 0x3fe297c3b25f8874, - 0x3ff10a337b538f13, 0xbffa6ebeffc33a98, - 0x3fb7cd577c4790c0, 0xbff2fee42b9c8776, - 0x400998092d69deb6, 0xbffe46f3d1c8cd4c, - 0xc00e182ecf6da4fe, 0x3ffe83233bc23084, - 0x3ff079502cf0b242, 0xbfd948f29d525168, - 0x401f13e197e2e0d6, 0xbfd3656337494538, - 0xbffdc991022e394a, 0xc004724e2ccb40aa, - 0x3fe78835eb9327c8, 0xc00f802a53f1588e, - 0x3ffd40a3f6cc2b5a, 0xbff58e64e4c05dd4, - 0x3f788c4afe61fe00, 0x4000e42ad114c5ee, - 0xbffbf22cf5843da6, 0x3ff3398156b81cae, - 0x3fec5a809993146c, 0x4011289cc564b5a1, - 0xc0020b2539d008b2, 0xc0068180538fdf26, - 0x4003d9c263e772c2, 0xc011afd26ae77628, - 0xc007cc24b74ec56d, 0x400576a9c8bb3b09, - 0xbffb28ce6a2e2382, 0xbffed6ba01d0adc4, - 0x3ff2c18c9da33b56, 0xbfc2f315925d340c, - 0xbff14fe638890f42, 0x3ffa7d8e69f6c392, - 0x3ffc4039c1a55309, 0x3ff1940f36cfac98, - 0x3ff5092fb1d9a583, 0x4004bfe652895938, - 0x3fe57433002dc2d2, 0xbfd83f37b9062b64, - 0xbfdff51db7db9a58, 0xc004fbd8c0d39eac, - 0xbffdd359f2acc9b4, 0xbfe95f917d332059, - 0x3fd9735153bd0b88, 0xbfff416ef60fe208, - 0x3ff5bc34515f1820, 0xbfaba1fcb31934c0, - 0xbfddb5b2277d67d8, 0xbfcfc9349ec82ba0, - 0xbfeef934507cbc8c, 0xc014fe64d2b9c232, - 0xbfe9221701ab481a, 0x3ff338a01938ab91, - 0x3fd531fd7503ca74, 0xc002d36335166f68, - 0x3ff4f593a5c69247, 0x3ff5771731d2acb0, - 0x3feec4be66c8949c, 0x3fe02ad28fb57028, - 0xbfffdee37812df68, 0x3fffaf2431558a05, - 0x3fdac2a1ccad664c, 0x3fe2876ce8c439c8, - 0x3ffaa3148a688067, 0xc0005d048d30cdea, - 0x4001c4bf2265df08, 0xc01b1cb919f4341e, - 0x3fe6faca6b7c9d6b, 0xbffad3c12dae3d17, - 0x3ffc218a0cf98ea3, 0x40096faacb761bf4, - 0xbfeac539f8c4a2b4, 0x40030992fe9f0a09, - 0xbfbae1e9d6dd9db0, 0x4002c476bdaf87e6, - 0x3ff92e3d478845a4, 0xbf76087e998f4400, - 0xbff502f4a4efe1d9, 0x4002080d33c1c928, - 0x3ffefab2dd9b9a7f, 0x3ff0dee7227b616b, - 0xc0052da62290baab, 0xbff94b4864dac0cc, - 0xc00ed0221ef5bc26, 0xbfc835e650e0670c, - 0xc00cef0ac7e5ab37, 0x40011b53baaa2e57, - 0x400d3b1775a8060b, 0x3ff7cc2709ec3ad4, - 0xc007a33126222c55, 0x3fe1b66d0116568c, - 0x3fcd020868d316ec, 0x3ff6c4f3ff2af410, - 0xbff4fdd66d2c005e, 0x3fe1b1ac3c32ab54, - 0x4016c6e31c5fec48, 0x3fe88a3bddce98c7, - 0xbfdcc093ff6ecfd0, 0x3feed321f2a656ae, - 0x400df043fb2de9b3, 0xbfd8427bc4eb3dd0, - 0xc00d05f1b6e8ecae, 0x4001baa770d64e9c, - 0xc0012f9896f5c225, 0xbff5ed5abf2bab72, - 0xbffb0eff52923a49, 0x400a9e0f1f9fae2d, - 0x3febaaa9b821b413, 0x4007f4fa0da3325e, - 0x400fc20b81dd46ff, 0xbfe2cd3e059b823b, - 0x3fd04223fcff6780, 0xc00e0522a6bed3e6, - 0xc00b602e8f867182, 0xbffa35ee78b63c4f, - 0xbfc685f05a3b5b74, 0x3fe82396674ce06c, - 0x3feebbf1eee59764, 0x400075fb7ff1a7b8, - 0xbff260b8b40f526a, 0x3fe92c9067315426, - 0x4002b351e995ac96, 0xc00037b86763f611, - 0xbfea9acbeb6028a3, 0x40123b65225cea34, - 0xbfe98c93b4319db7, 0x3ff16afbe3f6604e, - 0x3fdd560ddf5e6b80, 0x3fe8e0f9192be286, - 0x3ffcc1a63da74585, 0x3fe439408273b6e2, - 0xc001d7650b986c7a, 0xbfe2ff8957cc3d12, - 0x400fac93f627f3b3, 0x3fd997c2570d063e, - 0x3febf7da7a995a53, 0x3ff7f30ebcbb7341, - 0xc007cc95eb28333e, 0x3fee3572096e6d66, - 0xbfe29577e21bcd86, 0xbfd6a6ad64d47230, - 0x4005f4d5f76a6d87, 0x3fe5ee0487aa4388, - 0x3f8554bf50345dc0, 0x3fe28bc163123f22, - 0x3ff69074b5c71c48, 0xc005fc29286e6cb4, - 0x3fa1941e074a9780, 0xc00014cea4c92501, - 0x40118102d4e86ef1, 0xc00821a4cfac8492, - 0x400afda24dcfc7a8, 0x3fd68fc2ff4c9b78, - 0xbffba5c9159125d1, 0x4018c6c860b7d078, - 0xc0114be3a6f53768, 0x3fed442305bd6e91, - 0x400abc8c85789f44, 0x3ff7d1f88d35747e, - 0x3fff8579262002fb, 0xc00b6bf6694075d6, - 0xbfdd3d9367e10600, 0xbff35ff88f7e22da, - 0x3fff8e08f67f401d, 0xbfff181b0cafc88c, - 0xbfd755fca92b912c, 0x3ff7b860fd1b5576, - 0x3fe5b88837f4892a, 0x3ff564457664fd13, - 0xbfe00678260aff7e, 0xbfe62648ae3342c1, - 0xc000433ca4f8e3c3, 0xc00d6a12e25c8fe5, - 0xc010091ef26fa9b5, 0xc00b614c6d1a7ec0, - 0xc00afe4f830e1bb0, 0x4007dc3368ba0fea, - 0x3fe3866075e2e298, 0x4006e194af86213f, - 0x4000cb592c6f6d2e, 0x3ff5632432d20f70, - 0xbff9e392cb6b4cfc, 0x3fe4b61716fb2fe7, - 0xc002fbdc4a14be46, 0x3ff678a2b772f128, - 0x4000385b85b2e5a1, 0xc007f6b672210bac, - 0xbfd77a40cf9bb582, 0x3fefcd8d9854e386, - 0x3fff6b68072ae8b1, 0xbff285feb8c8a2ff, - 0xc007691c05f64658, 0x3fcb455ff93234d8, - 0xbff1787a84478a2c, 0x3fc4191ba49b2ac4, - 0x4002e1d6c12f2c2e, 0x3fdc5c8b54c7973c, - 0xbffc153f0c304216, 0x400154b8db8a376e, - 0x40026a6f1058a4fe, 0x3fed91511e9d8afc, - 0xbff1ef3328b94baf, 0xbfdfee3862f912ca, - 0x4011dbd8953a6653, 0x3ff7e21f825683ae, - 0xbfba13649181cf18, 0xbfe7407f7f5c8332, - 0xbff576e892ce72bc, 0xbfc666811fe158f0, - 0x3fd73ad2c860dfd0, 0xc01284ff7e3545ee, - 0x40127b81fbe6fe7b, 0xc0001913b8f9fc7a, - 0x4005da0fbb8d722c, 0xbff700afe20c3fae, - 0x3fee1e4e5d9a06c0, 0xbfbb3f938a5ad150, - 0xc005892039e6fe89, 0xc001a4a5eca54058, - 0x3ff7afd4ef8666db, 0x3ffd83b170e44c04, - 0x3fb96df32a24176c, 0xbff97f6cfb435fab, - 0x3ff0978a15016d24, 0x401267d7100c3d7e, - 0x3ff957a08598949b, 0xbff2316d54a67080, - 0x3fff449775e01658, 0xbffa23d808125123, - 0xbff012098ce4ae98, 0x3fd054bbdfbe1c51, - 0xbfe22aa307bd6ebf, 0x3ff77ae080deb96d, - 0xbfff6014e97859a9, 0xbfd16f0ad26ee1d0, - 0x3ff96a608ea89e89, 0xc0026069677219d8, - 0x400848886e7b4af6, 0x3fd7b26180a20484, - 0xbff9793762c3d811, 0x4000f8c34878b95e, - 0x3fea1b3d0f8acaba, 0xbffe2baaa3024968, - 0x3fdf9b806ed4cfe8, 0x3ffa528c85a9e218, - 0xbfccd416f179c018, 0x3ff4500d27997241, - 0x401e3ca8f6833bda, 0x400b181e84f5672b, - 0x3ffaf33f5024e0c0, 0xc007e314ea682b5d, - 0x4008f0605bd46a6c, 0xbff81dcc0a1e1852, - 0xbfe20030908b1578, 0xc007b67e4b0a0940, - 0x400e1a0a4d7b8c0d, 0x3fff8fbe52a68ece, - 0xc003be764c9fe73c, 0xbff355cbbdd38498, - 0x4017675df9a0c918, 0xbff2c72bb04f91f3, - 0xbfd8f1b4368093f0, 0x40088d3b2d803f7a, - 0xc00b8e96d5357ccf, 0x3fc067e4555b741e, - 0x3fd7e2957ddda676, 0x3fea027152e61c04, - 0x3ff2f745002df0d4, 0xc0073d67565ed2b4, - 0xc0023d28f777d938, 0xc00aa7e206b9ee0a, - 0xc007877b9aaf9a37, 0x40091deeeebaa83a, - 0x3fae209a319d1400, 0x3ffa40862eeb06fd, - 0xbff85561f61447f2, 0xbff36de1970d55d8, - 0x3fe43ad4f5e8080a, 0x3ffc6be1c57bb04c, - 0xbfe2ba91d19aae8d, 0xbff99120b5c628a2, - 0x3f72600241071e80, 0xbfd27d97f9470ee2, - 0xbfef656341f8205a, 0x40015052ab685919, - 0x400203e989388e8f, 0x400b6a3b30e9fc2e, - 0xbfe845857ddb72cc, 0xbfdd1e06230056a8, - 0x400bf23939069f0e, 0xc00f7290b638813a, - 0xbff7a4db0540d58a, 0x3ff769252e32d998, - 0x4001e31cab7299c3, 0x4014b361f0c44046, - 0xbfd44857435ab518, 0x3ff7bd866c04ea84, - 0x3fe5f9f672c180ec, 0xc0112178eab97f94, - 0xc007e37d9ea66601, 0xbffd11aef9d2d188, - 0x3fffef98d3420313, 0xbfe3b21c72fb0f10, - 0x3ff4fc644c2a96ef, 0xc00a4bac0fdc4efe, - 0x3fd987f39a0439a8, 0xc0065c43d0387571, - 0xbffb24ff332c268b, 0x400ea66ab74581b6, - 0xbff9f1415f8ad3e8, 0x3fefb751292e98ba, - 0xbfca792efd96652c, 0x3ffdf35607f24dd1, - 0x3fe8f382020f5501, 0xbffd525e02170522, - 0xc000649b847b9dc6, 0xc00aa10fd73fe22b, - 0x3fd4032447ba220c, 0xbffba0ac4342a827, - 0xbff0b4b8a842153c, 0x3fdab82072934e3a, - 0x3fe4723bafd0e958, 0xc008614bbe86a147, - 0x3fdd95dd87de8f10, 0xbfe9aa7abdc85a9c, - 0xbfeaf8ece18e5798, 0x400e0266aa031269, - 0x4012225a6c04b88d, 0xbfc7998c227b2610, - 0xbfe4d3fdfeba4d64, 0x3ffb028eecee4770, - 0x3fd885629256e41e, 0x4010a5900cd45ccf, - 0xc006ee390b59d51f, 0x3fa5c6d766d6e260, - 0xc0075d86ecbb6246, 0x3fe91ded5b1280b4, - 0xc01507cc8527f928, 0xbff33df3075d90ba, - 0x40004b98bd1ffa50, 0x4005cd6cde41b18e, - 0x3ff01cc9b3dc8d54, 0x3ff88b2dd040f8da, - 0x3fe9e8a5b422d82f, 0x3ff366a1693577e8, - 0xc00fb9159a2caf7e, 0xc01348211fe19aca, - 0xc00186ddabe9b369, 0xc00071aea6cda1b8, - 0x3ffe0d3fb49f4f65, 0x3ffa0a62d546d3a3, - 0x3fefba223b6f5d22, 0xbfccc4afcce1816a, - 0xbfe3df3f13b486bc, 0x3fee92f398e2d395, - 0xbfcd1b4e0f6e35f0, 0xbff52d506ce4eb36, - 0x400475d3afc551ff, 0xc00f7262c3296a08, - 0x3ff34a3a4d66292d, 0x3ff4c2c2e3c3cf33, - 0x3fdff40c6e57e374, 0x4008ed42d15293a0, - 0x3feefa591696c6f4, 0xbffaf9d395094397, - 0x40045548cf3600a7, 0x3fc2fef7cae267c0, - 0x3ff148cd39dbf043, 0xc0028360973ff25a, - 0x4003a34f767816ed, 0x4006fbc531abc883, - 0xbffe6dec3ff8f5ad, 0x3ff5af7bc1021b33, - 0xbfbcd33903d5d814, 0xbff1c1c61d5254f4, - 0x40134180144d6c00, 0x4007ff42182d8a8a, - 0xbfe5a85f22b0641e, 0x3fe3b72376efd6e1, - 0x40015a576d398cec, 0xbfd8ce21554ca794, - 0xbffd75232d2965e1, 0xbfb5c1f68e182b98, - 0x3ff8c05964f04687, 0x3fcc3f2b4f61df3f, - 0x40056962d8b8d2e6, 0xbfe9266e16361336, - 0xc00d374867a2a710, 0x3ff6985312de3a0a, - 0x4007622d4f90b93e, 0xbfef70344e3983a6, - 0x40029acc4c9d14ab, 0xc00473467551505d, - 0xbffd0155e4e75781, 0x3fc25a63a9473fb4, - 0xbffc5e2b8146d2be, 0x401c3c94174b66af, - 0xc014717763d3c930, 0xc001766a354d2525, - 0xc0105d12c3834b7c, 0xbfbb9bfa747a0630, - 0x3ffa8cb61d105a7b, 0xbfc5ef1fa6617e90, - 0xbfa7357c61f0cca0, 0xbffe8d08364f5a55, - 0xc00d1362d2836bcc, 0xbfedb77b6166526f, - 0xbff201568eef3b98, 0xc0059234d4568b2b, - 0xbfe29371d796c472, 0xbf982f1ee104d900, - 0x3ff04c2f65466c5e, 0xbfb8468af544bc60, - 0x400e444d02873eea, 0xc004ef3fa8a95208, - 0x4002eabd95a409a8, 0x400b1a9a8acc9e54, - 0x40163a04f3fb7a15, 0xbff2791549296010, - 0x400aa0ad5b455b43, 0xc0044f60d8c17253, - 0x3f90cc503bb7f840, 0xc005150f03aeab30, - 0xbfa20a0540ff8a40, 0x401071e0185378b5, - 0xc0096a4296ba3ef6, 0xc00f4fb316eea183, - 0x400624c4127e2c74, 0xbff92c38cfd7e385, - 0x400109590d366821, 0x4004e234cfeaa7b7, - 0x3fe40ad11f8987fa, 0x3fd725a6f2f83c4c, - 0x3fe5a298cbf9b095, 0x4001771f570cec2f, - 0x4005aa2315311532, 0xbff6091dbfaecae2, - 0xbfe68eb361a0e1cc, 0x3fe2e9fdcb21eec6, - 0xc00e401ba4b22f86, 0xc00393ca4841a419, - 0xbff7cbacc1a5f217, 0x40081cabd3e3a8a8, - 0x3fe8408b5a205850, 0x3fe544f6da169f24, - 0xbfe7777a04fce1d0, 0x3fef374ffa4e8182, - 0x3ff292ff1f4dc5a4, 0x4011af89e04072dd, - 0x4002df53bbb167b0, 0xc010183d06f5327f, - 0x3fad890381f01d30, 0xbfe6483f245625e0, - 0x3fe5e11177a950e0, 0xbfc43888d3c4210e, - 0xbfce533db6e46d68, 0xc008cc2fea798124, - 0xc004749e8f26675d, 0xbffd040addb814c6, - 0xbfe7fdca9b1d9226, 0x3ff5d2374825b8ae, - 0xbff6d1439c00d6a0, 0x4000d573ff2986f7, - 0x3fe6886f97866919, 0xbff6ff944aecb99e, - 0x3fe012d2820b8d82, 0xc00c377b28141f36, - 0xbfc3c40e42631398, 0x3ff56923c41ba44f, - 0xbfe7366d31ad7496, 0x4009b0e83e882950, - 0xc00bbcbd522e42d8, 0x3ff1d91e6a45c0cd, - 0xbffc518ffd956f47, 0x3fba8028bd407a90, - 0x3ff61edb216983bc, 0x3ffc94300fb5ff24, - 0x3ffcc13efad69d76, 0xc0126b4dfcc95c7e, - 0xbff90d31621d4c9e, 0x3fcd6325f7120960, - 0x3ffd76e646b8e8fc, 0x3ff26442755f3c7f, - 0x3ff01c88ecbd92db, 0xbfe9986c033d0dc4, - 0x40067cf1f1e32898, 0x3ff20c2db7bbe9ec, - 0x3fe1e172206b466a, 0xbffd5228508a7106, - 0xc00050b31d10b3c2, 0x3ff094cf003a1e1a, - 0x3ff8510f99466a50, 0x3ff46b93b07783a7, - 0x3ffbfa64cb76f906, 0x3ffd341fe862cde4, - 0x3fe70957ab445cb4, 0xbff7302fc584756e, - 0xc004f1aed3f8d052, 0x400d6909843837e0, - 0xc00df08213f46554, 0xc00253c2c7489110, - 0x3ff9d2ef0108cdf2, 0x3fefcdc6924b869e, - 0xbff15597b19d6559, 0xbffb59361b101580, - 0x3febf3d60da1184c, 0x3ffa8c6e4fbeb1f5, - 0x3ffa2fa886423baf, 0xbfea033888bd49b2, - 0x3fba769aaddba370, 0x400640592ad70d9c, - 0xbffd5f1aeaf83ff9, 0xbfed787a36c22e12, - 0x3fc381de83efdfa0, 0xbff9ca8c2cc87336, - 0xc00864c1ca7c0d04, 0xbfe80d8a4ef7a6d5, - 0x3ffe109bcc31c4e6, 0x400318d488321273, - 0xbfd347d339ed92b6, 0x3ff922a69b2da59f, - 0x3fe2b0c65c81927a, 0x3ff96a72ace9ce35, - 0x3fff859d62fce352, 0xc0066969b7da1584, - 0xc00c7df25a3453bc, 0x400093caade9c8f8, - 0xc008326b24711172, 0xbfddfd993e435cbe, - 0x400a32bc1ce65e64, 0x4003cfdc88da766a, - 0xbfc13eae5158c764, 0xbfe73e3d4bc70c5b, - 0x400f61357aab6e2c, 0x3ffd148b8eda28be, - 0xbfddc43fdb8a4bf5, 0x3fd9ba0a92def8d8, - 0xbff1609302063999, 0x3fcb0ceb39ab1ef8, - 0xbff3ba65e84dd376, 0x40056cef34109cd0, - 0xbfc64f7ba9d2d325, 0xbfe263f3a80ce874, - 0xc0084f3ee0b09ad4, 0x3ffa53a954885af4, - 0xbff3ca4f18a87ae2, 0x4009a5ef746e160f, - 0x3ff05d8dbb4ca41b, 0xbfe2cae7208d5598, - 0x400ec1f1c1199dd9, 0xc0155561010f0c68, - 0xbfdd675b9b4bce38, 0xbffbe6ea427847f2, - 0xbfea6c30a16fc560, 0xc0079d4ea2291697, - 0x3ff5dd7f32b22c80, 0xc0009122b503cc45, - 0x4011bb00c5a3ada3, 0xc0041812136f5026, - 0xbfe4573739f507fa, 0x3fd770a40baff4ea, - 0xc0093f4f0095409e, 0x3ff2a8e3ac86138a, - 0x3ff28c9da84b3e72, 0x3fbff74feff8df40, - 0xbff58d5410203b45, 0xbff50bc6c1fd426e, - 0x3ff02f97b6472ab8, 0x40010c45b112b6c9, - 0x3fe809741b37e5a6, 0xc007c08e045732e7, - 0x40109c8d4501d044, 0xbfed1440b6541898, - 0x4014cdb110b0dc36, 0xbff8ef22a3a604bc, - 0x3ff2ed1bd97005b3, 0x3fc435bb4075251a, - 0x3ffde0f3ee34fb7d, 0xc011cfa450b31aef, - 0x3fe02ff77a630dc0, 0xc00d2631dd40867d, - 0x4003b9fd6a831b29, 0x3fe9b9e806dc8585, - 0xbffa47eb41c1c664, 0x3fe96db2f0015be2, - 0xc004c800baf37c3c, 0xbff77d7601b82ee4, - 0xc0003ba4ce933586, 0xc0039a33e71ec4f1, - 0x40066ca5b97487bb, 0xc0105a66d48c1519, - 0x3f91521dbd2c6c00, 0x3fedfba0fb516971, - 0xbfe11a7148d8ed3c, 0x3fe8daf1fab7f8de, - 0x4003a31242f72006, 0xbffb65460cbe7937, - 0x3ff0dc4b3cf58772, 0x400332abb5bbc0ad, - 0x40017d95204005b3, 0xbff8798283ba3f6b, - 0x3fc21fd71e749f20, 0xbfe20d97e26ad5ae, - 0xbff1cf54a8a3103e, 0x40065e2df08a33e6, - 0x3fdd769535bf5270, 0xc008141fd25555f4, - 0xbffb16f24d5ab8bc, 0x3ff7bcecb604a9ff, - 0xc0037db65d1feb73, 0xc0120fd8f227d99e, - 0xc00c6d86e8e5476b, 0x3fe2ae3b54977782, - 0x40029ede5f9fd71e, 0xbffcb6dcd43567d9, - 0xbff53daad39f0dca, 0x3fd5fd87d687d658, - 0xbfd7908c5103e1c2, 0x3fc051f0506282b8, - 0xc000956b2655409a, 0x400c71ee9672f8ed, - 0xbff81e47c076c8ba, 0xbff2dcd7287dbf94, - 0xbffe5052573daeaa, 0x4013f2c60f844754, - 0x3fe71c7cc31b5874, 0x40001905ddc14446, - 0x40006ef39be31b12, 0x3ffad51c51265127, - 0x3fc45f2d18114ec8, 0xbfe8c8ad1ce0dc3f, - 0xbffcb50e7e8f8bfc, 0xbfcbf5fdc706c1b0, - 0xc0076cf12f1e68cd, 0x3fe2c34b8519a1fe, - 0xc0046e868990efe8, 0x3fdceb333ea1d28c, - 0x3fe05cc6f460117c, 0xbfb51f3bd06515c0, - 0xbfec2978ded05401, 0xbff5f6f82863f7a2, - 0x400cae825b38cbd4, 0xc0008ef9166f3bdd, - 0xbfc1786e3ff7201c, 0x40129b88afd4dc34, - 0xbfc6b4fc8ed199b8, 0xc00032ec4d0679c0, - 0x3fe00521c881c43a, 0x3fe3408dd4af7754, - 0xbfc3528018a72a7c, 0x3ff116e601cdd05e, - 0x3ffb6b4b7b5f8661, 0x3fb5f6a357fe1de0, - 0xc003b0c63797eaf4, 0xbfe66d85213eea24, - 0xbfe12943e71dca40, 0xc00be39f077b3b3d, - 0xbff06baea649da1c, 0xbfe9ac27ae194320, - 0x400389d1a6c0c9e7, 0xc004997ef046dc1d, - 0xc0035ced523a3702, 0x3ff2ab07901370cb, - 0xc0106fd42fcc827b, 0x40024e5b577d7cd9, - 0x3ff2e7edd59c4078, 0x3ffff0db58eed50e, - 0x3ff8e1082bd4eed5, 0xc007488e336b376f, - 0x3ff2a6d52e5de221, 0x3fc17c50d593a1ac, - 0xbfdd2a8d07cc9286, 0xbff31bd663bc4024, - 0xbff8f3d896b2030c, 0x400bd4dbeb24ae0e, - 0x3fcd53bb45796170, 0x3ff819a53b18f41e, - 0xbff61eb000207dac, 0x3ffd88c416ca5c86, - 0x400e5333e19b73d8, 0x400028a91e073dcc, - 0xc001ff86435e32df, 0x3ff38c9c835dbbe1, - 0x3fceb132bd9a0168, 0x3fe494ac7c1faade, - 0xbffd29d1934c2829, 0xbffb7bca61b26e48, - 0x40048649fbc7384d, 0x3ff1674f4f1b3779, - 0xbfe01defba4f7336, 0xbff05d3026f424fa, - 0x3ffc090fdc2af9b6, 0xbff7880703df86c4, - 0xbfa2ef928de430d0, 0x400ac12608231382, - 0x3fe8ed0d2b332730, 0xc00d9c8ea07c709b, - 0x4006816af5793e82, 0xbff12b11af621054, - 0x3ff222c585d0ff10, 0x3ffc4c7f0aba4036, - 0xbff163a6d984007a, 0xc00167cd34058338, - 0x3fe05cd9a6bfa966, 0x3fefeb8270cf5a58, - 0x4001ec4959cdaca7, 0x3ff734c14c07d42c, - 0xc012078810f0c20d, 0x3fee77a1aae63f56, - 0xc00b558d43462d89, 0x40100665b20ccba1, - 0x3fc851e4c324b8f8, 0xc0082894841b6896, - 0xc000003e90a48558, 0x3fe8064042af8670, - 0xbff06780104a54e6, 0xc007d167b60dfc4b, - 0xbfe57a034c9a89a0, 0xbfe01f7b8461713d, - 0x3fe8a124903b90fa, 0xc01106fef3776c68, - 0xc001b4e31d0d7bf1, 0x3fe2b19db127bf16, - 0x3fe3df4066f7a190, 0xbff999e51e2ad40c, - 0xbffc9c37b5485f02, 0x4005a107949e13e7, - 0x4009aa5763466635, 0xbfefd99bc70170d3, - 0x3ff425f7229d2291, 0xbfde659463802f4c, - 0x4000fd6b353199b0, 0x3fb175557d5b6c20, - 0x3fcf4c74fd86f258, 0x3fb9f960496e2980, - 0xc004b30aa456d6a5, 0xc008ddbaf7325f4f, - 0x3ff3f775b6c55b75, 0x400ba640aaa54f7a, - 0x4011d0d17a60d1dd, 0xc00733af9e92051f, - 0x3ff6492eb5306836, 0x3fc8c5faa8a85a68, - 0x4001d122743f6690, 0xbfe9fa395c030990, - 0xc003983c809fc8dd, 0xbff044974ab72da8, - 0x40136b17faa6bde8, 0x40021c5152c0e688, - 0x3fc35f6f869d79c8, 0xc0085187d1c455d4, - 0x3fe0dd6139234144, 0x3fd0084eccf2f888, - 0x400c2c8debe3e845, 0x3ff20bce91e84d76, - 0x400629f709693a14, 0x3ff090966fd5eb95, - 0xbff67ead6423be1e, 0xbfd6426624816890, - 0x3ffba046dbbd5e00, 0xbfdded7512b57474, - 0x3ff23ab1716c00e0, 0xbff796e7c92ca788, - 0x3fde3e87aff26c54, 0xbff89399cd17614b, - 0xbfe2506c6dd1c8e8, 0xbfe8e6ff003d8428, - 0xc0026dc4175ecb24, 0x3fc38aa9b0875778, - 0x3ffbc302f40718d8, 0xbfcbc7fda98b0518, - 0x3ffdae5f809541d2, 0x400a2c80a270b93a, - 0x400203e9b78bc463, 0x3ffcb56fe3a2c08e, - 0x4000ec7d34d33ed1, 0xc0008b0945c1b941, - 0xbfeb159791d5b967, 0x3fe2e2ccbf12aa71, - 0xbfe5e3c216dd74c0, 0xbffe33ab06c3ff09, - 0x400ae2e006e0ed58, 0x3fd4db7bcf74da58, - 0x3fe442a633217076, 0xbff1b1cd8eebe634, - 0x3fb1de3a0ec7c4d0, 0x40019a58e285c3c7, - 0x3fd62873dcf92060, 0x3fd4d6be6cd91b80, - 0xbfe7a0de9a1d8d9f, 0xc0081cfaa76d42b4, - 0x3fcb0a024d007068, 0x401119e8fbdb51b0, - 0x3ff6035956b10495, 0xc01c0feaf4116c78, - 0x4001cd1577374713, 0x400349a9a4593261, - 0x3fcd55207407949c, 0x4000c722821ff2f8, - 0xbff762ca65a370ce, 0x4009906b61aa3418, - 0xbff5931979854946, 0x3ff82d32c1d9a8ca, - 0x3fecd42f7d72d70e, 0xbfff1d50657b3db6, - 0x40051058768fe01b, 0x3fa0949a665c52c0, - 0x401049facb9376fd, 0xc00472696ef65a7d, - 0x4004c839c9b59ca1, 0xbfe2677715c07434, - 0x3ff8c2de9ee370c0, 0xbff8271673eb44c2, - 0xc00862979db84e4a, 0xbf98bf393e98c200, - 0x3fd0fd182bee47e6, 0xbfe3e5cdb5045f36, - 0x3ff1c6a5aa96a500, 0xbfe973270d2e9c28, - 0x3fc3b04ab3783508, 0x3ff52a7f41e5f02d, - 0x3ff4b9f2b0dd8a67, 0xc007054b9bda16ac, - 0xbff827c2531ad158, 0xbff4a78f0ac8e48f, - 0xc00e44a8d51efb45, 0x40055ea42df96197, - 0x40139d9db6fdac2a, 0xbfbb8b29700adf70, - 0x3ffda61c26da16dd, 0x3ff7a186901cfdc7, - 0xbff5120b3771982c, 0xc0016d7966af0ae3, - 0xc002cc41cfd288f4, 0xbffdedc47c776014, - 0x40034659308c3b3b, 0xbffd1ec3d07f32e4, - 0xc00c4dde13192e1d, 0xbff6767b9af47932, - 0x400e0f87663b7e21, 0xc008cf46d487bbeb, - 0xc005d93b595e0024, 0x40011236c61cb780, - 0xc005d134fd85d4d4, 0xbfe262c11105bd30, - 0x400d2409afeee851, 0x400a1fd2d4f45086, - 0xbfd77e5414c6ec94, 0xc0026f31f0e6b73a, - 0x3ff0db4947efb2a3, 0x3fe6761cd52536a9, - 0x3ff7b7f05fbe55f4, 0x3ff196c9c60c0ac3, - 0x4002d3fb410b530e, 0x3ff38d2509063514, - 0xc0055a966aa89953, 0x400c6ee47ac4be1c, - 0xc00102fbb3dc7ef1, 0x3ff956897c2eb7d8, - 0xbfab0ad357fe2a30, 0xc01109b336d3cea9, - 0xbff7808e0b271292, 0x3ff74924e2850aa6, - 0xbfa072afc3310720, 0x3fe82091616dac58, - 0xbfb497e5d56a4c60, 0x3ffab09d92be7752, - 0x400b851b8e03a9a9, 0x3fc346f5e7517bb8, - 0xbff2e17d051a1f61, 0x3ffe62cb769316ba, - 0xc003c19b256268f1, 0x4002a68d84faa5e9, - 0xc00676d9d4808baf, 0xbfd429bf434c12f8, - 0x3ffb78fd4fd05d1c, 0xbff9a5b1fcb87afa, - 0xbfd939c35ece0f22, 0x3fd009e6eae38a8c, - 0x3ff89ffa4c606dd9, 0x4013d16b6713d48c, - 0x400ad23d0da8e9a0, 0x3fd2c0f24de2999b, - 0xc00eacca18b1f946, 0x401cb3f76653546c, - 0xc0064c20b4eb2914, 0xbff310a69a4b9926, - 0xbfd28bad68b3eb58, 0x400169b18a5f1f68, - 0x3fffdb802a878e76, 0x3fe47e9f456718ce, - 0xbff1dec04d653a30, 0xbff4fa7e0464d7ff, - 0xbff0860213141d3a, 0xc0033ab3f37f2696, - 0xbff7917477aa6422, 0x3fde8864be906072, - 0xbfe202b31792c978, 0x4015c45a1234bfca, - 0xbfce803889e6bd58, 0xc00023e4a5a68246, - 0x3fe6ff0618bd5b3a, 0xbfdb886301e9c6aa, - 0xc0117dfb68c7ad5c, 0x3ff40b0c968a12b7, - 0xbfdaf48f04f9b0c8, 0xc00087d2a23ec694, - 0x3fe464b0b4abf042, 0xbff52afafe8a300e, - 0xc0064e0a31e58ab8, 0xc01139baecb97609, - 0xc002dea269d9546a, 0x3fe9f329105eaec6, - 0xbfe597d376ab2874, 0xbfc7c6b87f4ae730, - 0x400cd9cf4a1af2ae, 0xbfffd43aede8f656, - 0xbfe82379553e5a0c, 0xbfeb1532cee7a282, - 0xc00542a0d64b4780, 0xbffceab106dc55f2, - 0x3ff9377be59688c2, 0x40034eabd15c7519, - 0xbff8be7a0fb0668a, 0xc01a33cbb284aa52, - 0x3fdbbaa2be45873c, 0xbfb49c3a0a852960, - 0x3ffce58e739df18a, 0xbff2db4a74840f6a, - 0xbfb1ad5c032fa790, 0x401a65bb4bc37df3, - 0xc0058198b429af76, 0xbff01bc5b5fe1362, - 0x3fee57bcf42efd6a, 0x3fe35b39c6833db5, - 0xbfbdc13c66a27fe0, 0x3fe27e9866d049e4, - 0x4015a77c2f4de324, 0x3ff1a480f359c419, - 0x3ffb2f929ac4fb03, 0x3ff255a7bd691900, - 0xbfe1e809b11a6d50, 0x3fcb20c12c6811e8, - 0xc0047e30072bad8f, 0xbfe0df4b86f92eca, - 0xbfccb93a9fe51828, 0xc0047ef3d3b92001, - 0xbfedcbb16b591404, 0x4010903859f42b2b, - 0xbff6024fa203b87a, 0x3feae14d9e4bddca, - 0x3fd086d2dacdf66f, 0xbff8bcd59f0e44c0, - 0xbfd81ad424841daa, 0xbfd488f5d214f0f0, - 0xbfe08370d197784f, 0x4003958a28460bb1, - 0xbfd81e60032beff2, 0x4006630a4660c58f, - 0xc00859f443c1c599, 0x3fa9761e152e4060, - 0xbfbe48b3a52d602c, 0xbfefbba3fd1361ce, - 0x40009d6d1e11b0a0, 0x3fe34baa6246128a, - 0x3fe39a7a5e10f215, 0x400ecaea6c795df1, - 0xc010caa47d741ab2, 0xc0156ece9d480f12, - 0xc0105c9e3012824d, 0xbfe1401da0e60664, - 0xbfd6275bf0fddef8, 0xbff30f79fbdcf4be, - 0xc00a951e599655ab, 0x3fe5bd69f9af865f, - 0xc00d1e70a94247da, 0x3fe0237564a10bc6, - 0x3fb1609cc3621c10, 0x4002ebe086c20e82, - 0x3fd0116fa94e6554, 0x3fd7e41921cd13d8, - 0x3ff8a424cabb2b05, 0x4001474b4a174437, - 0x3fcf578594d94b20, 0x3ff65e9d3bca9bc0, - 0xbffb3aead3983144, 0xc00d10274783c08e, - 0x401490ab34dce537, 0xbfcf83a37414f81c, - 0x4019ba2497b495d4, 0xbfde08d7b8f7c6f4, - 0xbff82c5c8006304d, 0xc010d98778d5a7f6, - 0xbfb7b3da970dd900, 0xc0053a28139331eb, - 0xc01919eab419af76, 0x409661fb2a20188e, - 0xbff667c113066cab, 0x40052da18cbbc66b, - 0xbf970620ebe33400, 0xbffccc15a3014997, - 0x3ff82c5cf1ea2ec5, 0x3ff7742baf0389a6, - 0xbfeaf2e6e18c6475, 0x3ff62e4cf62c5e3d, - 0x3fd432b88e428f10, 0xbfb8cfa376b60780, - 0x3ff3ce0c8c5603ac, 0x4003824c5a0df244, - 0xc007d39597144be6, 0xc0047f8aed5d8d36, - 0xbfb30c5ea6ecfa84, 0x3fff0ae7344def04, - 0xbfff21f27d4286da, 0x3ff0e6b1944b97d8, - 0xbff9ab71aa7d522e, 0x40112fd495366a82, - 0x400354f90c57b279, 0x3fe3db3f1b5dd694, - 0x400a3e5e2f08ed0e, 0x3ffb26a9b1206c9c, - 0xc004fb8dff907b02, 0xbfe0436e8ca190b4, - 0xc002cb094baccc25, 0xbff6fd40832654a2, - 0xbfd677c74515b308, 0x3ff6246c1e19771a, - 0xc0079faf6b00488f, 0xbffa91da96c45f1e, - 0x4010ab0b641a2dac, 0xc01082d1d7136abb, - 0x3fdd2aa433b31110, 0x3feed3813acdd23e, - 0x40008c5cb7ee9892, 0xc004215e91b4351f, - 0x3ff493be9fae43ad, 0xbfe59cdb71a3a38e, - 0x4004a26ef1ecc99b, 0x3fe6db287c73e4e0, - 0xbffc09c8a950931a, 0x3ff48980e18786ac, - 0xbffb18c878e34ce6, 0x3fd93d3082f9706a, - 0x3ff245959d6eb9a3, 0xc001019598c15286, - 0x3fee2fb7884d88c4, 0x3ff6c09b61468566, - 0xc0020f86fb73ca32, 0xbfe2331dab1ab14c, - 0xbff0f7442566040c, 0xbfe99dabb46a9f6e, - 0x400536bb4ef8d326, 0x3ffd35bf733ee599, - 0x3fe6442302706fee, 0xbfd73bb4b02b2b58, - 0xc000940b3ce262e5, 0x3fef8e0581a87ae0, - 0xbffa86fadf12ead8, 0xc01033b0902e2ea6, - 0xc003dc498b4236bb, 0xbfed0f5f6dc2eb95, - 0x3fc762b984bf7ff2, 0xbfe185f2bf5ce1c1, - 0xbffe64d75ed937d6, 0x3ffa28642743d31a, - 0x3fccb82d0115ac80, 0xbfe9e2758aca3f0a, - 0x4004ec28b5ee2fbe, 0xbffd34531b004324, - 0xbfea8228afc0b5c6, 0x400187e6a2e8dfb0, - 0xc00996b0110daf9a, 0xc0018731c34539f5, - 0xc00d7e5aa3bedf9d, 0xbfee11a637a7ac0f, - 0x4000a14fe8853fcc, 0x3ff3ad1cfeb98c53, - 0x3ff3120df4787b3a, 0xbff3127edd538bca, - 0xc00eb310f6e863ee, 0x40044f1ba8212c6c, - 0xc003fbe8eb5bf5f0, 0x3fd1fbd2532e25c4, - 0x400863c522b50147, 0xc006a89753df3571, - 0x400303af85ac93b0, 0xbff63e7557c84a1c, - 0xc00422748020565a, 0x3ffc1838a8e58b39, - 0xc00173c4d2b78841, 0x3fe436a5ab95ca71, - 0x3fff4c3a7853b904, 0xbfeebdd73fa3e81a, - 0xc003802135422f5e, 0x3ff1c4414098ebf6, - 0xc0048ca6c03d964a, 0x4016d788452946da, - 0x3fc583a312b170bc, 0xbff729fdc6551fa4, - 0xbffae439faa4f37c, 0x3ff77cb39389f18e, - 0xc005b1eb592e1166, 0xbfdf4ad0f5b30502, - 0x400f7f6b404d2e09, 0x3ff3e3f4b43bc5a5, - 0x400220d1a7597092, 0x4011eab947799dc2, - 0x401114e2729f5bcd, 0xc009edc52e62e886, - 0xbff756a5c9f56718, 0x3ff67715be989c97, - 0x40120eb2b60b84a4, 0xbfe80b62efd8484b, - 0x3feebcafcfac4c19, 0x400c1e5827fcfc80, - 0x4007520f20063033, 0x400875738e1f4a5d, - 0xbfd53edc8a4f9662, 0x3fb543949c284a54, - 0xc007daea678c94da, 0x4017e2ec0b579ef2, - 0x3fd48ca43836cdfe, 0xc010569cd8519a52, - 0x3ff7aa4c2dacdcc4, 0xbfd94ed03c7674c0, - 0x4002163c1d0ba58a, 0xc002932df46a1fe4, - 0x400ec7d9f4a58aee, 0xbff40bac22fc8bf4, - 0x3fbb72ae501768c0, 0x3fa5a4668b08ce80, - 0x400223bc4eced590, 0xbfe7abdd8bab8417, - 0xbff7172eb4c1b863, 0x3fd184e8f10e0a1e, - 0x4013ba52f2759e8e, 0x3fef0e74b61b5d0e, - 0xc0059386ee3e5175, 0xc001972d598050a2, - 0x400ce896356c6e27, 0x3fe79db602068920, - 0x40004fd6014307b6, 0xbff1e0e94d91e12e, - 0x3fd329e99c1c310d, 0xbff21b7bd784e8ee, - 0x3ff149101ab5822e, 0x400b05da19002d0e, - 0xc007a88cddead8fc, 0x4003bfdb0e32966a, - 0x4016b848363f8597, 0x3fd398041fb2b80a, - 0x3fe1ee78b1002019, 0xbffdab260a0093d9, - 0x400382b2f78fb892, 0xbfe3091f19751985, - 0x3fee0a0b1d55160b, 0x3ffd86272c649f7a, - 0x400713e860e403b2, 0xc010e7d6fd4fcf20, - 0xbfd9b05d07317058, 0x400ece112f035cba, - 0xbfb56aa70c9cb690, 0xbfcbff6bb9050edc, - 0xbfa8f22d26cc89c0, 0x3fe76e454bc3e7e0, - 0xbfe4748210e3ed68, 0x3fe3c3a8260a6f0c, - 0x401531cb819f042d, 0xc0092585225d6b14, - 0xc0116885c305654e, 0x3ffdbecea85b07fe, - 0x401838f5395db66d, 0xbfcd791d54e40e48, - 0x4012da56652b1350, 0x3fc9301004fb9a90, - 0x3fda50f337e6def7, 0x4018bbac0b652bfe, - 0xc003b554018fc653, 0x4010f5902c34ed19, - 0x3fb20bcc6346a018, 0xbfce6f3ed18afab0, - 0xbff39d96cb473946, 0x3fb5f6e2c3912910, - 0x400787b200071c25, 0xbff3b1b1653f464a, - 0xbff986bfd16be2ac, 0x3ff9842ee0869abe, - 0xc00cca00ec70cf0a, 0x400570bc5b5e1ff4, - 0x3ff0a45992346476, 0xbfd0602474e0aada, - 0xbfe564270f4575ba, 0x3fd92e54a9eb2c38, - 0x400f1a732fd96706, 0xbfc0948f8908f640, - 0xc0139d2bd1d00bee, 0xc00078d228b9a0ff, - 0x3fd4c18221cf258c, 0xbfb184d0c821e338, - 0x3fee543059b8e7df, 0xc003babe8d4026d3, - 0xc004f5fc71d49035, 0x401305bcba58ae96, - 0xbff05c98c207de15, 0xbff6ccf51a5416ba, - 0xbff265f5cec8b31b, 0x3fff1e74141b45f0, - 0xc00aec64c1f04fb9, 0xbffd1db85af74fc4, - 0x40060450a350950a, 0x3fda759feea4ac88, - 0x4000a410987099a6, 0x401e15a0a5eb8024, - 0x3febfa5a2db11d24, 0xbff5a917d9f69096, - 0xbfd444a58350c637, 0x401410f6a460f74e, - 0xbfd745baac75db10, 0x400faaeab7342ff2, - 0x3ffc802d75a4a2ea, 0xc0131f5476797329, - 0x4005efe18d21816d, 0xc00625e3ab091011, - 0x3ff2f5b15cc53d11, 0x3fb04e7a70b2aa54, - 0x4003d53f51f04be8, 0x400f01110f270cb6, - 0x400351a03f40924e, 0x400aee6729daa78a, - 0xbfc30fac231e81c8, 0xc0013392ffd3a751, - 0xbfff2525854a84a6, 0xbffc0cbfeb723830, - 0xbfd500ced242f378, 0x3fd8f15678719d82, - 0x4015304ce2378331, 0x4008fcc2a3ca008a, - 0x4002a7ba133df790, 0x3fe8464943a3877c, - 0x3fe7126ce18bf2f4, 0xc002b621114be155, - 0xbfa805c31bfb3b58, 0x4000c06786ed0bc1, - 0xbfe2d39ac8d9d81a, 0xbffe58793b62e5a4, - 0xc013d86639f5d05e, 0x400f49f78e37a236, - 0xc00b569b53235506, 0x400ab2958d3717bf, - 0xc00816f72bf3cc41, 0xc000a40692ca09c2, - 0xbfe02558c9d6d654, 0x3ff04bafa49bbdde, - 0xbfff077bdf40eca8, 0x400846065bc2281a, - 0xbff27562e3422df2, 0x3fea4243310610ec, - 0x400cb42b52eb98d9, 0xbfcdf0feba3225b0, - 0xc0099c610cf85cb7, 0xc0112e1f53912815, - 0xc000b676501e6301, 0xbff5cf09bc5899d6, - 0xc00b678d88a0b55c, 0xc004db708accaed5, - 0x3ff4cc0ccf10431c, 0x3ff11f4ccb29c6ce, - 0xc01e0869e000ace1, 0x40036538bf8f7250, - 0x3ff216755b966801, 0xc0019a9932435eee, - 0x3fef5647ed6da74c, 0x3ff77aee1cc0edac, - 0xbffed74d9efdbaac, 0x3fff8ffdadf187cc, - 0xbfee7aa68385aa12, 0x4007e012500c940f, - 0x3ff787b3659ee5f4, 0xbfe60ea0010ae000, - 0x3fe1de3a61f62cf2, 0x400dddf3c644cc08, - 0xbff3cc3b9dbd026a, 0x3ff2412e4903a504, - 0xbfe5fd7e4e9bac36, 0x3fe0a421afe8f70e, - 0xbffb066a9371c231, 0x3ff5aaad6bf45e29, - 0x3fe424baf72ba561, 0x3fce7bae9c6821d8, - 0x4006f2769779ba1e, 0x3fef90333dcaa03e, - 0xbfe2a6ee626bc0e7, 0x3ff4fb2300401559, - 0x40118f59528c76fa, 0xbfe56114f502712f, - 0xbfddbf8fda2e7ea8, 0x3ff50cc80f81a664, - 0xbfae923612b4b630, 0x3ff9c6951ff15ffe, - 0xbffa43d237aba7d2, 0xbff7104c2095e5c6, - 0x3ff538d4c7c7cec4, 0x3ff100ee79ec1535, - 0x3fe4bb764baf9136, 0x3fc9f07caaca8c10, - 0x40045a21edd91470, 0x3ff6114ef81a26fc, - 0xbfcc5d44b6306152, 0xbff1b886a9994dd3, - 0xc004ca7ae5e1a744, 0xbfcc8cd169be09f0, - 0x4001837c36350449, 0x4009268290ff8f5a, - 0x3fea5264739d20ae, 0x3fe2483b01cedae2, - 0x401512718f65c33e, 0x4003b142cd53da50, - 0xbfe2a7ece143ff5e, 0x3feebcbf1ba848c8, - 0x3ff5c8def951af19, 0xc00443cfb41c5d4a, - 0x3ffa0fc5111db996, 0xc000cf717ee37f5b, - 0xbff510985b91afbe, 0x400d457b73ec156a, - 0x4004fa4b8b8603de, 0x3ff5edc9af040e51, - 0xbfbc307a1c5c3280, 0x3ff233628887f62c, - 0xbfd960fb093f9a5c, 0xc00579a8936af0c0, - 0xbfe7a1de064b8755, 0xc00c9a00a486b9d4, - 0x3ffcb3709c7442f6, 0x3fe1027889a4020d, - 0xc01cc983103bef84, 0x40168b87e27645e0, - 0xc005afd77186fb63, 0xc006569ef49e7dbc, - 0xc00461582c32415a, 0xbff55c529976534b, - 0xbfebf110d405b67e, 0xbfb874eb51d93a90, - 0xc00585ae0fda3586, 0xbff196284dc0db78, - 0xbffb65945b7d0316, 0x400f5218ef536082, - 0x3ffcae02e0a319c5, 0x3feb319bd368c1a6, - 0xbffcf49f3acb8ed8, 0xbff4aedc898f0a7e, - 0xbfe59fcdeb84e927, 0xbfc65ac63dd9d1a8, - 0x400eae9903517f20, 0x40077de9b802e616, - 0x3fedf771399ae096, 0xbfecd890c79f3eea, - 0x3fbca838cbbbacd0, 0x400d437e15f5fed4, - 0x3ff06d5854182dea, 0xc00467c6bbe21981, - 0xbff79413bd969c20, 0x40118ce764e98de0, - 0xc003a3c08eaca30d, 0xbfec10febc7b8d78, - 0x3ff040048edb5b8b, 0x3fefa80b38f76cc3, - 0xc004a21e9c6228e5, 0x4002c061c8463c95, - 0xbff26eb1b435ae1e, 0xbfef6e7bbeef97b5, - 0xbfff314570f6e354, 0xc01c43f667cb5033, - 0xc0068d8592e06dc0, 0xc001298279c76878, - 0x3ff5aeff64aeabca, 0xc0166cbef49a8288, - 0x3ff0193a2a1f8b13, 0x40165f4b53e5dae0, - 0x3ff75cb43afed7ba, 0x3feb0e2b9b2b162c, - 0xbff768bd50902f24, 0x3ff19d2adb1e73b8, - 0xbfd7334389913260, 0x40023fd1402c8474, - 0xc008c0a500d5d957, 0x3fde7256bc35bc32, - 0xc0132100c2fc1474, 0x3ffebc43439a4b82, - 0x3ffe067df256cd34, 0x3fd56d3807e83896, - 0x400163c392fc2106, 0xc00a5f7234e25064, - 0x4001aac6d88f5421, 0x4007d186e42e8e16, - 0xc00948fe4ac992ee, 0xbfee150ffd53fcab, - 0x4006c6d541ea2422, 0xc0019ef3ee33a74e, - 0x4012970709eaf494, 0x3fcec7668947bdd0, - 0xbff672a9979abc06, 0xbff8c2c1e4920a70, - 0xbff3f615b41eee3b, 0x400175b590291939, - 0x3ffb572488ec83e2, 0x3fcae67480d2e8d0, - 0x3ff161c4429f0b7a, 0x3ff771e24cf01826, - 0xc0045dbbf1118b15, 0xbfed3801f7c2fcda, - 0x3fee967c7b736290, 0x3ff25d86bd513d90, - 0x3fd6ae4574fd37ec, 0x4001f8f933b6f42f, - 0x40019fbe5a27d97a, 0xbff21806386e1604, - 0x3ff3e2ac063a1483, 0x3ff06ce0c929d07a, - 0x3fe53a8d8b545713, 0x3fda281be61e6d32, - 0xbfb04ae53a485de0, 0x3fd617ec18109952, - 0xbff083eba55bdfc4, 0xc00badf35fccfd0e, - 0xbfd096c4106b0e26, 0x3fe73620c85e73de, - 0x3ff4dddb45053f62, 0x3fc98b6915cddf88, - 0xc006e97e7627bb45, 0x3ffe3d510570ec28, - 0xbfc7953077b01ba8, 0xc0007a9a6bf77c2a, - 0x3ff1f9babd06bf1c, 0xbfdbec1c338d1eae, - 0xc0146917bed300a4, 0x400dbbd176e9b41e, - 0xbfdeab590407deff, 0x3ff8af4b853a05d8, - 0x4003f6c32f3f480d, 0x40074276711e5ca1, - 0xbfe0c30c7e2e90bf, 0xbfdc4d968b06856c, - 0x40089ffaf0d82914, 0xbff671d6b7dbc454, - 0x3fffecdf1891c9c0, 0xbfbd45beecac7650, - 0xbff430f0ccc1b64b, 0x400ca68d5afcaf63, - 0xc00fcea59ee8477c, 0xc00c93e75315157d, - 0x3fd3806540b6f438, 0x4007af8403ebebce, - 0xc010804a05b8322a, 0x3fccbf74b51894a0, - 0xbfc018e36fdad89c, 0x3ffbaecce77a2846, - 0xbff8b9953841a64c, 0xbfe6722805c4a956, - 0x3ff1210290983664, 0x3fd7b49413c6f59c, - 0xbfe5fa152ffd0cce, 0xc00edc4b4423e58c, - 0xc00460210516627a, 0xc00433f7f8497968, - 0x3fff637e0f5f0d22, 0x3ff3c87d638250c8, - 0xbff8fb97f14a95da, 0xbffa43301fa7ece8, - 0x3fdafda654104721, 0x4009810b27f2beba, - 0x3fb145ac2d7a4e58, 0xbfe619b06d4105c6, - 0x3fe81560acbb8dd4, 0xbff88265534a9964, - 0x3fd13513fd36bec4, 0x3fe91f50fbd67c4c, - 0x3ffefd038fb80ca3, 0xc003c86d9ae79a15, - 0x400e2661b4ee0ef8, 0xc00d7a05c44c1989, - 0x3ff6171463035401, 0xbff49774e2810cae, - 0xc00ee154a1a426e2, 0xbff9fac2c1af387b, - 0xc01932bfae2afdb7, 0x3fd661a77052955c, - 0x3fb083ecff18f540, 0xbff9c4ab9f0b24d1, - 0x3fee82b92a063f8e, 0xbfdd832c97b91cb8, - 0xbff2d375fec62d54, 0x40001add489cccc6, - 0xbfdb4d8cced35dce, 0xc0104b78a050e872, - 0xbfe43d612952f183, 0xbff5d80e7a93b2cf, - 0x3ffaa8aaa94adcc6, 0xc00db96b387fa8fc, - 0x3fd5b17fbd2f8c3c, 0x400ed0ebe9a8ef55, - 0x400a5665149c395f, 0x4007851c3d1fe802, - 0x400f63ac68726f0d, 0xbfefd9996bd00f9c, - 0x40115c4058d0a323, 0xbfed52e1fbb837da, - 0x3fe632d4fc7b3b06, 0x3ff3edd26227f674, - 0x400987d6b33ec3d0, 0xbfe7cc75dd5a5ee6, - 0x4006072dd3d9f63a, 0x3fe1c2460698e3b2, - 0xbffeeef5d0d7dbfa, 0x4005a2edefa883c2, - 0x400a3e90f776265d, 0xbff96eba3e881bee, - 0x3fda20510826517c, 0xbff2cd7010816bfe, - 0xbff5a91534307d21, 0x3fda2e1d8e4a33dc, - 0x3ff25e2994f8707c, 0x4013e9fd65d749c7, - 0xc00a8f81204da6ed, 0xbff208ffd2cd1844, - 0xbfd4fd21f182da54, 0xbfd5020125a91a08, - 0x40007425bff897ac, 0xc002f50756c04e0c, - 0xc007837237b32ec4, 0x3ffe2002c5ae3391, - 0x3ff0edaec9868248, 0xbff9d370f36cc2b8, - 0x401174130a2e1de2, 0xc0013886729a856c, - 0x400382861797880e, 0xbffe5b28af20ef82, - 0x4014bd40ca6634fa, 0xbfd787f6cfbc6f4e, - 0x40086c69cb14220a, 0x3ff27815d25eead2, - 0x3ffbde638a8f5bf4, 0x40053536ed13a040, - 0xbfce397a1d7a70d0, 0x400f89d780cf8564, - 0xc006e7d0fe40bcf1, 0x3ff3e45d04e0c9f0, - 0xc002ee0d305ae738, 0xbfff41491d5324b8, - 0xbf856ad75baa9600, 0x3fe2fee6d2306986, - 0xc0033f727d14b9c1, 0xbffdf4096c7dc9ba, - 0x3fb963dc507e7c40, 0xbff50eed791014df, - 0xc000b8cc4eb47fac, 0xbfe02cbc8de8fdd4, - 0x3fea8ae38da8b633, 0xbfc718b86d2b6a90, - 0x3fd75afe261531ce, 0x3ffac2b9bdb6e852, - 0xbfd6c1227868081c, 0xbfe10ab582f6a876, - 0x40037814ba734e6c, 0xbf5893cede09ea00, - 0x3fe19f115878b35a, 0x3fe0cbc3e4e767da, - 0x3ffabee05eb778dd, 0xbffbb07717abc27c, - 0x3fe4c929b2eb978e, 0xbffe38a037126a64, - 0xc004da65d3cd0128, 0xbffa20a00bd9db9a, - 0xbfdd08b14c046dfd, 0x4000c0ed043fda44, - 0xc00544aaff5bb369, 0x3ff5cebde63e2162, - 0x3ff3293bf5c19ace, 0xc009aae2a5d8d0c3, - 0x3fddab266bc783f4, 0xbfea0aa8eb683726, - 0x3fca0b59bdc1f4c0, 0x400e16016cab8bef, - 0x3fe5c7293815dd1b, 0xbfb5cea3210e75b0, - 0x3fe246b844588a62, 0xbff3d8d420f6014c, - 0x3ff6d2535dc31681, 0xbff9a4d6e6186376, - 0x40013e58b3ea190d, 0xc010cbaac646a555, - 0x3fd17b981a1389f4, 0xbfef2229a5f9f975, - 0x3fa90fc7514eb4a0, 0x3ff6e62dbf0c6574, - 0xc01312cd5fb42d1a, 0x3fc656614f41feb8, - 0xc005416af2609a00, 0xbff938d6c8bf60b6, - 0xbfd170821accdfa4, 0x400c0e45dd45aa07, - 0x3fe08586f78cd69a, 0xc0008cc2daf75915, - 0xbfff5909432fbc62, 0xbfa50bc485c20ac0, - 0xc0014dbd72faa607, 0xbffa6d5dd1cb503c, - 0xc0078e43a65d70ef, 0xbfff38a25b01b86e, - 0xbff42029dd34ef24, 0xbfdf2262b7e342bc, - 0xc00ad62dc706c3a8, 0x3fd425f4e9a51e1c, - 0x3ff582a7d9904ef6, 0xbfd97eaae0dfe138, - 0x3fed00903aef4bdb, 0xbfe6f77dc0efddac, - 0x3ffa29fab7c953fc, 0xc0060014b45f1bd4, - 0x3ff8315f8c838e53, 0xc009900e232011ba, - 0x4000914f865da3f2, 0x40118920eb7f416f, - 0x3faf297a5d9aade0, 0x4005466054e3332e, - 0xbf9f655f1f162720, 0xbfdc282df2c9cb14, - 0xbfe9186b45e8f3e6, 0x4004521f33a27d10, - 0xc00dbc5bdd6456b7, 0xc001f27a8b39b6a8, - 0x3fd342d1a3b8565a, 0x3fff12182425dc03, - 0x4008eae9b8d90e57, 0x3fd65ee0a22ef8bc, - 0xc00a9b5e6a523c62, 0xc00bd9eff45fc758, - 0xc0064c461c4ade89, 0xc000be43b0968e48, - 0xc002536f9cb5e0e0, 0x3ff13925d0cd126c, - 0x3ffa4d02df810288, 0xc0043cce6b000f26, - 0x40075957b79a24d3, 0xc00446d17f8a4ee8, - 0xbff97ff4b9268f14, 0xbfa2cba1c9768ae0, - 0xbfcc20d4efcc83e4, 0xbfff6c1a3ddce4df, - 0xbfe31d221cb951a4, 0x3fe74cb78cce5b56, - 0x40035c1b6a2727da, 0xc001381fd583d025, - 0x3ff8abb723b784ca, 0x400b6bcfdfe28961, - 0xbff4c85643a39e60, 0xc0165ff1ef85264a, - 0xbff04b24605c7ba8, 0xbf68941b8e789e00, - 0x400d229d295945ba, 0xc00092dd570b3713, - 0x3ff155efa90a7bec, 0xbffcb9eb52102dbe, - 0xbfbe24c7b4cd2bf0, 0xc01143970dc6155c, - 0x3fe231cdee7967f0, 0x4001cdee2953eeb8, - 0xbffd9428d27106b6, 0xbff6d995228a2904, - 0xbff45b4ab46f2962, 0xbfeaca7eed9712ac, - 0xc009df948c2274c3, 0x4003e192ef6d3e80, - 0x3fdbdaa3db77a59e, 0x400155408e75ff0d, - 0x3ff48df5f20e438f, 0x3ffe7e7988b987a7, - 0x3fa0c83f077dc3e0, 0x3fefe81d4bd171b4, - 0xbfa6716316c233c0, 0xc009a57928524f00, - 0xc00b45ed9535b8fb, 0xbf8513297e953880, - 0x3ff4674b595e74fc, 0x3ff6330a65e82818, - 0x3ff13622e83cd2ed, 0xc000d8acb828c448, - 0xbff43c68d741e69a, 0x3fe9ece15a072a80, - 0xc003d58ffb8a1d54, 0x3ff08ab2ccb9d7fc, - 0xbfc8d651586d1650, 0x3fe0c258e4918548, - 0x4017d1d3c9da926f, 0x3fd68562fc8a6ca4, - 0xbffff76994602c48, 0xbffce79f21d1c278, - 0x3ff1d7f9f4d073e9, 0x400bf5a065c7da8a, - 0x3ffed5cec9a041f0, 0xbfdfe59187d51e06, - 0xbff50e0efafba13e, 0xbfff2c6f8d10873e, - 0xbff57ffa50a2644b, 0x3ff2ca1dfe7d7fbf, - 0x400865cfcd9f1b5e, 0x400212e16f70eba1, - 0x3fe71e5389b562aa, 0x3ff8e28b06290f31, - 0xbfbd1f93907c2de0, 0xbfea293398d7c54d, - 0xc00c4f27dd02ee34, 0xc005190e75a6b935, - 0x3fe1154226cd1ef1, 0xbfc63ee85d50d866, - 0xbff2d521c0e6bcc7, 0xbfe095dd52a80477, - 0x400ee37288fea35d, 0x3ff1573c40aa8ad4, - 0xbfc510d37533d5ae, 0xc003684d7743b02a, - 0x3fed990e9cb274b3, 0x3ffa600dfc18c755, - 0x3fe5d2b2f1bfa6ee, 0x3fd53a709faa0b8e, - 0x3f97ab573a2d1740, 0x3fec5d32e5a6bdfc, - 0x3fecac3b97363f04, 0xbff8d67b8283db04, - 0x3fef247f10d3fcc0, 0xbfd3bb8d209db440, - 0xbfcdc89b7a4f3c70, 0xbff8b0be8f24f364, - 0x4000b32ef97af6f2, 0x3fb25f1038a4e770, - 0x3ff57c9cb36dc930, 0xbfc442e80ca3f4f0, - 0xbff09d6290e6f2e0, 0x3ff6615dd5248f74, - 0x3fcde4882a539b9a, 0x40057c7470cbd982, - 0x400eb20c90427f2a, 0x3ff57b14a1abe213, - 0xc010da54ee8c093e, 0x4015d4fe86cc583c, - 0xbfe7366c6d947dae, 0xc003d4ee617a1981, - 0x40134a206c38150f, 0x40044e2e5df35980, - 0xbff34ca3372619e6, 0x3ff0254389815214, - 0xbff342a20a4d7992, 0xc004a12d79c0408a, - 0x40089d0334444430, 0x4001a0efe9a27bd7, - 0xc011707ca2566f18, 0xbfda6b9773609828, - 0x3fe54d28ed25edda, 0x4005b3ae78920628, - 0x3fb0ad66baca88f0, 0x3ff34c5a3c17239d, - 0x3ff569391917bece, 0x3fb7551b1aa95cd0, - 0x3fec46fbc7c6eeb8, 0x400f9739a51fcf9c, - 0xc0011c153e610282, 0x3fe8fc4737cce8da, - 0xbfe15b0776c90bee, 0xbfffc55346697a63, - 0xbffca9bdc194952e, 0xc0130444a0e411b1, - 0x3fb60fcee2b74470, 0xbfee15fc32908eca, - 0xbfc98c60e1083918, 0xbfdc21a362805e3a, - 0xbfe01414a89a9350, 0xc002eb16781f0b6a, - 0xbff46b2273b05c99, 0xc00d0ef40d5712f6, - 0xc00f5fb2f5d48b98, 0x3fe341d9d480ce65, - 0x3fe2dd6b39f9c99e, 0x3fe271cb29968b42, - 0x3ffeaa29cdf081a8, 0x400f4486fa56a8e2, - 0xc0043ad540cb7242, 0xc010234a1db10abe, - 0xc0023993c60fd50c, 0x3ff0c52e01d19276, - 0xc001b7b377c6d93a, 0xc00888d957360262, - 0xbffe163614251f2f, 0xbfe5ae4a262c2e37, - 0x3fffe9970df9bff9, 0xc015e17bfcbee669, - 0xbfe1fa1ea69f0fd3, 0xc000685dc1913f75, - 0x4007d2f07d73c643, 0x3fc4a27fe8bef0c0, - 0x3ff710936ee41b05, 0x400b7dea643edb42, - 0xc00e71e3ab1ac6ef, 0xc001f4377581ce40, - 0xc0039a2fef64c234, 0xbfe9043bf7584c48, - 0xbffbaf1a18b82e6c, 0xbfdff6235a1c9d14, - 0xc0074e15fc1070b3, 0xc01b7b0a8416904c, - 0x3ffc798b080e903a, 0x4017b5af7f4add39, - 0xbfd0caa6d1553fd0, 0x3ff219a0e58a4aae, - 0xc009d2ac85c7bee9, 0xc008e8486d47d15f, - 0x3ff562fc2ead129d, 0xc00139898086f3c1, - 0xc00758b15fd94a24, 0xc00176fa55cfe73e, - 0xc006f3c509a2bdef, 0x3fd3d360eba2a089, - 0xbfe0aca4d8a16bd8, 0xbfca9ec8f24cf69c, - 0xc00119a6db0b987d, 0x3ff99e0539a9fc08, - 0x3ffd429c8e81d2ba, 0xbffd369d16b8dd8c, - 0x3fc38adac9644468, 0x3ff29f7d17b52113, - 0xbff32e34ef2e2a26, 0xc00051b65ca6bce8, - 0xc005bbd8950da913, 0xbff906a905312301, - 0x3fca959d60f06e30, 0x3fff4bd0d58db400, - 0x400898a00785071f, 0x3ff60ce4a63304f6, - 0xbfff3d57c3bc6233, 0xc015d4fb17677b12, - 0x3feae7f2cb24d3a6, 0xc0079acce85984b8, - 0x3fb449e7dc53d520, 0xc00e8b09e49fd89a, - 0x3ff1675489940138, 0xbfc94df69b62addc, - 0xbff76741785b883a, 0xbfe53278fb7a8570, - 0xbff464b7ef2538a6, 0x40049cd89364dfef, - 0x3feeb65ec522d85a, 0xbfd933feda9bf317, - 0xc00261dbaa3f6088, 0xc002d897d3334a1c, - 0x40091b09c1ed98ca, 0xc002c4c63a2b3c7b, - 0xc013d55fbf93efd9, 0x40110c4fa3d35ac0, - 0x3ffac0a970d14d27, 0xc007dfd6cee7f49e, - 0x3ff7a9977442880a, 0xbff566a6a6c620fa, - 0xbfe7fe11567070d8, 0xc005e07f7f427c82, - 0xc003fac79b59ba8c, 0x3fe0c8e461cbad4b, - 0x3fee1bf14e774064, 0x3feb376a4b1be882, - 0x3fc495cb241c7600, 0x4002a64793942d97, - 0x400328a776b8bcf4, 0xc00585b56f9d457f, - 0x3fe49b3e9f492218, 0x3ffb78e133ef69ba, - 0x3ff85340bc330f88, 0xbfe4fe1d840ea17c, - 0x3fe0c42b9df6d89f, 0x40088ea854cff530, - 0xc00cba2e8a70fe98, 0xbfd67f068ecd1fae, - 0x400e420acc04d88a, 0xbfaef16261c18e00, - 0xbff91d1e890078da, 0xbfcefea70c7a858c, - 0xc018170930d5f952, 0x3ff511d1e4b4b172, - 0x4004cfcbd7bc2486, 0xc008886d979b7140, - 0xbffe21244ce7391c, 0xbfee739ed63f9054, - 0xbfec4f8a72f1d88e, 0x3ff006f4f1cd0b5f, - 0x400aa061c9c32345, 0x3fbf9ce6ed0ae760, - 0xc0048296915c02ee, 0x3fcac6c6cde7bc78, - 0x4000d40c65697d8a, 0x4002744d80601e42, - 0xbff5400031be02d1, 0x3ffb486bdb12a179, - 0xbfea6869a1d48991, 0xc000c3cc7e25e284, - 0xc005f99b6a69bbd8, 0xbfe34dc28d46f586, - 0x3ffd016bf066f5ad, 0x400da3e5faed69cc, - 0x3feadf7c1e850ea5, 0xbfe66e695ac5db33, - 0xbfde12463e5da004, 0x3ff21ad7a75c3899, - 0xbff268558ce83e35, 0xbff2bd8aa081be1c, - 0xc0064d092737435e, 0x3fc774991f1ed668, - 0x401212651ab79ec2, 0xbfd0046224943dbe, - 0x400b06c87be07f52, 0xbff01f8364d8b71b, - 0x3fc19fed702dd608, 0x3fe306ae2bed9912, - 0x3ff22998a35366ec, 0xbffa734923ecf652, - 0xbff47e73c5dc46eb, 0xbfb4450a300705c0, - 0xbfd3bab104e637cc, 0xbfe5835efedfbe8a, - 0xc0055950a6325ce0, 0xc006cec1d22cebb7, - 0xc00af94cb8c9689d, 0x3fdaebd89dbabdec, - 0xc005a649dc88b323, 0xbfd0aab8e0423d40, - 0xbfa2a94df0c658e0, 0xc00585f64e41fe1e, - 0x3fea19eed58c1e48, 0x3fe89e1cfbe35b78, - 0x3fd494f85d2e6d47, 0x3ffa477344657a73, - 0xbfdb797fd2bd0737, 0xbfdb8a2049509f60, - 0xc0003f5be65a8f12, 0xbff8a137ce3f59ea, - 0x3fb55ef77f7fd430, 0xbfec4e2f1e343e66, - 0x400714999595f501, 0x3ffe8547903991a2, - 0x3fd27b194896da72, 0xbfc8fe622d479ba8, - 0xbfe61c92debedc3e, 0x3ff348a8f2a93a51, - 0xbfe01d9588a4ed3e, 0x4004b7dff1219645, - 0x3ffee25a10af4045, 0xc00acd2596a0f27f, - 0xc0065017e8448b20, 0xc005f6cbb9364165, - 0x3fe73d56f1c24016, 0xbfff57c9050c9206, - 0x3ff41266dd35052c, 0x3fee9e3eeae43211, - 0xbfcbf94f28da55e8, 0x3fd7d5d94a468aac, - 0x3ff31c54e4d50b6a, 0x40055b34833cb5f8, - 0x3ffd87cb94ce14db, 0x40023930d9fe687a, - 0xbfe884a035c45bff, 0x3ffeb3d5a846aeb0, - 0x40101665cab474cc, 0xbfed88502f726a9a, - 0x400c91e76575ea24, 0x401004442d8284e8, - 0x40017c20d9f03d66, 0xc003147b7e83e8ba, - 0xbff25e4e5f334512, 0x40064d8f2552c9d0, - 0x3fff6c00e2a18027, 0x3fc4c7972061c0a0, - 0x3feb224f45ba1822, 0xbfe6fdea5caa6e60, - 0x3fff4dc7c348effa, 0xc0055b3b77c6dbd3, - 0xbfea85301f761a00, 0x400583a260efce54, - 0x3fe3b946b6763090, 0xbff4b1b25d3bab1c, - 0xbff21632dd8dc070, 0xbff0c9c1680dde04, - 0xc00221b8ef5e3a81, 0x3fe6a925742f8da0, - 0x3fd3c34c67c31f88, 0xc00b3fe39a93f250, - 0xc012777ef521054e, 0xbfe6c66fd53ce588, - 0x3ff1b79f361f42a8, 0xbfb391effef54eed, - 0x400b1b02c8987460, 0x4010d041c874d5aa, - 0x40054f4cb2ee20d2, 0xc00a2bbe9ca4d954, - 0xbfebb919e5f42b99, 0x3fea1ed645854b92, - 0xc00e6eebb57f15b4, 0x3fd5b55fd0ad636c, - 0x3ff86e96d1b9de17, 0x40046f09757d79ae, - 0xbfde019e83458cf8, 0x3febe7e26cd694e2, - 0xc00525ff8ec1db21, 0xbfd0972b464b1cbc, - 0xbff6a9923068a899, 0x3ff97cb6c2ff438f, - 0xc007f1de29fb936c, 0x4004b423a087d056, - 0x3ffaaa37eb686be0, 0x3fed04f1d3dc3e48, - 0xbfe0a84a0db6bb12, 0x3ff358360c005e2f, - 0xc006a1903c67d7be, 0xc00b901cafc70602 + 0x4010785baf69d0c4, 0x0, + 0x40046255f53cf243, 0xc01930a0be8be4f8, + 0x3ffc97b4c0741cc0, 0x400ca32f3104f35e, + 0x3ffc7a4073ddee2d, 0x4003424a8d478d6b, + 0xc00b0ed4b8440794, 0x400b910f67a09806, + 0xbfe5feab65054ace, 0x3fef8e8fdfc6f8a1, + 0x3fb9c8fcff9009d8, 0x400ccaf2bee083ee, + 0xbffd0dc71e50abf6, 0x3fb3cb5d1a81bdf0, + 0x400bf0ccd7777920, 0xbfd47b881979e798, + 0xbff4f24e69d31196, 0xc00723c9478f1088, + 0xc010fdbf5376bd33, 0x4001fa8b897ae7cd, + 0x3fed6319624165bc, 0xbff7990e8bf26d6f, + 0x3ffee2b9f82ff11f, 0x3fe7cfd762db16d1, + 0x3fe23e87be1114ee, 0x3fe32c00ac7424d2, + 0xbff40c5ee71dc0d0, 0x400f96d037fa9af6, + 0x3ff292fae6ddf4ac, 0x3fdb6dc4802c563c, + 0xbffca36883cf9be4, 0x401495b568ebedd0, + 0x3fd6ea6c34327b84, 0xc0065c608db61b26, + 0x400269fdd91164b9, 0x3fc5749783f0ed04, + 0xbfd00ba7a0b26a38, 0x400275fdd1d6095e, + 0x4009986f7eb6c3f2, 0xbfcb17390540ef92, + 0xbfeb22c0df754146, 0xc0020d07af281d6f, + 0xbffef20b7e8a414a, 0xbfe9d7251a122d37, + 0xbfe30cac63aa522a, 0xc00fb3dea14cab55, + 0xbff51514d2fe847b, 0x4002309301d8e5bb, + 0x400945c1aaedd73e, 0xc010ee7f3d5d5a32, + 0xbff1c8e948fca4e8, 0x4012d2e7f3cf92ce, + 0xc016c63d97845bc2, 0x4015accdb1d0325a, + 0x3f98c30659d83ac0, 0x400400f66cf10328, + 0x3ff381e5739ed4af, 0x400939ae765620b9, + 0xbfe3825cc8b95919, 0x3fe3c2c55a4a2708, + 0xbff58715cd470558, 0xc005ed5b03ae3f4c, + 0xc006dfababf5b770, 0xbfca5d032f39fea8, + 0x3ff7876ccc95e341, 0xc0014001ddaea81e, + 0x3ff3ded438516464, 0x3ffe27efb8be6b3f, + 0xbf807f81773e5d80, 0x3ff1a12849db76ca, + 0xc0023ea534e38498, 0x3ff8cc63f4cf014a, + 0x3feb800b892e6fac, 0xc012aa57abddfb2c, + 0x3ffd9c58eae263ed, 0x400bda162fd88f26, + 0x3ff6e2573a53fef2, 0xc00fb994d81b1516, + 0xc01766492f5ffb20, 0xc0034bf331e255f2, + 0xc0096fe0c36f80f4, 0xc0186b9536936d2c, + 0x400cf674724e6ed6, 0xc003f292e97430cc, + 0xbf99ac84c7b1f480, 0xbff7c4c23d0eb581, + 0xbfef3f9f9d1d1c7d, 0xc00910a39479e459, + 0x3fcb00ffa4806150, 0x4014291f5bbe608d, + 0xbff5d9c80f2f8759, 0xbfed53df049f08b8, + 0x400e8ca96015e48a, 0xbffba46b83d2bc46, + 0x4004567e89eca3e2, 0x3ff8aa5e39e1d3ae, + 0xc00c6b4efaf9aa21, 0x3ff2b3b79c793850, + 0x3ff77b6e2a9aa2ba, 0x3f994115be505480, + 0x3fe6e2f7b334ab9c, 0x3fe1a4c6cd124dd1, + 0xbffa20461ec9fa8a, 0x3fcc2fd912ab7538, + 0xbfe50361fef74a1c, 0xc0087070f667c19b, + 0xbff359f03a9b28a8, 0x3ff7c45b05eabebb, + 0xbfe446e4523726e2, 0xc00215ed0b75dd68, + 0x3ffaf8b5b7087110, 0x3fe7b2a3186cca4a, + 0x3ff5af54e4434fe3, 0x3fe579f64a6e7f69, + 0x3fd1d84afa1b7839, 0xbfaedab2aad624e0, + 0x3feea58d31ab4c32, 0xbfe8c2a16e066c8e, + 0x3ff4c84f3aa56650, 0x3fbdc979f0097c00, + 0x3f9bbdbbe757f280, 0x3ff0a209987bb96f, + 0xbff365db800dcc40, 0x400f7e8219ec3138, + 0x3ffe2565b1b4a0cd, 0xc0065d8c20baad94, + 0xc009b59423ce0024, 0xc009c3fc48369198, + 0x400a69a9e4179e6f, 0x4001480187caa05f, + 0xbfdf634b924004ae, 0x3fc83229d525b820, + 0x3ff23b089049ae26, 0xc0035177916454b4, + 0xbfee3a33adfd0cef, 0x40105003440680e6, + 0x40023c4ccbb1ab68, 0x40051aaa6e46bb3f, + 0xbffe529da585e474, 0xbff915415e729184, + 0x3ff0e9407cec298b, 0x3fe385deec1a05e8, + 0x40066b904417ebf1, 0x4011bfc1318c6270, + 0xc00e4e1b43b0f0c3, 0xbfe360753aba410b, + 0x4012e1ca141830af, 0x3ff878dee6a18cc7, + 0x4004bb18881628d1, 0x3fe9658d4b93c05e, + 0x3ffc44e5c30cb8af, 0xbff7eab70e4f9eeb, + 0x3feb5058334ab814, 0xbfebf83ad1085cb8, + 0x40109c9ef6dbbc83, 0xc010ba37865b4a70, + 0x3fea34bd553109a0, 0x3ff76eaec1d30e80, + 0x400327cb80f12172, 0xbff4d16152e8d04a, + 0xbff39e51b0dc1ce4, 0x4001f65a1cb5d25a, + 0xc000fd39fc5dc97c, 0xbfc3702bb5ebb1ac, + 0x3fe250b56bc398db, 0xc011cc123fa12ce7, + 0xbfe1db78c6bab4e3, 0xc006949b17458cf1, + 0x40079ab887fdcff9, 0xbffa055798df968a, + 0xc00fc3c71c17e2b9, 0x400043ce0b683a45, + 0xc00d450a869d0a6e, 0xc015228170af3d60, + 0xc010edd5011bcf46, 0xbff3b2e5e33c3fd7, + 0x40051b9cce96c240, 0x4000c72b188312ad, + 0x3ff2cb64c7d9f4ec, 0x3ff4c2568725e41f, + 0x3fe0bb801c63914b, 0x3fd3b1d66dfbab84, + 0x3fe9b1ed21dbfa84, 0xc00478a404b8a100, + 0xbfe30c8eaf0d5af9, 0x400d9194df9c50b7, + 0x3ffc7020595310da, 0x3fe456dff3a41057, + 0xc007306bf45e3f80, 0xbfd58a56a5972e08, + 0xc015f577bedecb9e, 0x3fd829cb3c5d71c6, + 0x4000114719323f84, 0xbfaaea385332c540, + 0x3fe225c101eb28da, 0xbfe12e8554a737fe, + 0x3ff1ce68f5c01ce8, 0x4010f4149b44d2ea, + 0xbfeaf052a3645c20, 0x3ffd3cd80fc8e31e, + 0x3fea10f153eb2998, 0xbfe8ad42aca27c5e, + 0x3ff05f19348c3653, 0xc005db43ad2677cb, + 0x3fde0c5793572d08, 0x3fc699f3ce90da98, + 0x40049fc023866e8c, 0xbfe3864f0bfde450, + 0x3feaff65d42e9560, 0x3fe9699e868eec3a, + 0x40005ffb43bff2f4, 0xbf8b360b41dab180, + 0xc003aa15ff451165, 0xc01160ce4c626671, + 0x4009e9306719d612, 0xbfe5c801fbdbdffc, + 0x4002dfcb89315df6, 0xbfeb3dc2cc9d85ac, + 0xbff7171736a5558f, 0xbfed97190d490b9c, + 0x3ff7286d2b035b7f, 0x3fde4971f8e32c18, + 0x3feba176805d1e54, 0xbfe8274b47efbe9c, + 0xbffe2e429b68ea64, 0xc00903d0e026a0b2, + 0x3ffb33e4276a7239, 0xbfbfd9dd29a6cba0, + 0xc00212d02b1341ee, 0x40159b791361108a, + 0xc0042b9a590f4419, 0x3fe8d3480e74c448, + 0x40166be21eb45a8a, 0xc009b22da86f4cc3, + 0x40012812c0e9b480, 0x3fcc0b3ac63b1514, + 0xbfed86f25664e7fc, 0xbfe06bb5598da22c, + 0x3fffde1207f8752a, 0x4013c0780a55b0e2, + 0x3ffa9890c9f62176, 0x4003b993d5b6c102, + 0xbfcb47949252ab16, 0xc015c49db8827504, + 0xbff3e98d00fa1b6c, 0x3fa0bde650f86b08, + 0xc0120eb90d35b9aa, 0x4000074eeae92cbd, + 0x4004265eeb79d0ee, 0xbfffbcf716738ec8, + 0x4000048c83ce0fce, 0xbffb4227761516b4, + 0xbfe12e99f7a24d64, 0xbfd755b3a0198bb6, + 0x3fe36e3163c94072, 0x4012f2b75b31bdee, + 0xbffc444eb038851a, 0xbfdb06e64b33d174, + 0xc017ed474ca79642, 0x3ff80f0409568354, + 0xbff0edc516762ea6, 0xbffcc1d8eb33b502, + 0xbffe7c802be22388, 0x3ff63c5c5b6aa374, + 0x3fdb221270d7bd97, 0xbfe423362c6fcc2c, + 0xc0002020fb73e532, 0x400d3578423da0b0, + 0xbfc23d659445d0fa, 0xbfaedb326cc5f7a0, + 0xbff19068f77d9b5c, 0x400cf68071a91718, + 0x3ff5b4707ac8228b, 0xbfce00506f6fa674, + 0x3fe0d8d212aefc72, 0x3fe4b7cccaef3de2, + 0x3fd317a555ad8a2a, 0xbfce772556423cc0, + 0x3ff0eae66cea359c, 0x4013b17aef8cac29, + 0x3fcdcac60cad17c0, 0xbffc4d29c21d6910, + 0x400b36b76e7dfa35, 0xbff5f6e249c3f29e, + 0x3fc8ccdd187651a0, 0xc005fd42f4078fa5, + 0xc0100d78dbe6637e, 0xc008395c2e2bf67a, + 0x3fd0fee8f1b7b4ca, 0x40088339e2b3c37c, + 0xc000a5394d33a3d5, 0x3ffa5d4ec18397d7, + 0x3fdbcaddbd2f8ea4, 0x400d32539ec13a6f, + 0xbfe383a5cb174128, 0x3fe6aed6c751cd4c, + 0xbff71b3cbcf4669a, 0xc00078a875173f7a, + 0xc0198ec309be8577, 0xbff2a9eb23c64f18, + 0xc0079283227c9796, 0x40064230b96c399a, + 0x3ff8319d3c6d57ca, 0x3fe8085ec9ecefe4, + 0xbff10c129af08956, 0xbfb54b1c3b3fa700, + 0x3ffae273c57f0488, 0xbff63953b5e855fa, + 0x3fdabc27587c0878, 0x4006a49ce0ad4dfc, + 0xbfa94b8c07ddede0, 0x400820cbb4579d47, + 0x4003029acf6addfc, 0xbfe9619e20df2c72, + 0x40119630f6862175, 0x400b46d88667cc09, + 0x3ffd0d1881ab2976, 0xc005cea6b3419d7e, + 0x4003f8f9ef70bf11, 0xc00c541f45281595, + 0xbff0c8297b9359a4, 0xbfde0ada26a61539, + 0x40041e75fe3e2aa6, 0xbfc010fb767013f1, + 0x3ff53e6914dfcce6, 0xbfe598392ff6edac, + 0xbfd52dd2615e0336, 0xbfdeceeff4be7d99, + 0xc00ab17e2493b2eb, 0xc012eecb31abc9a8, + 0xbffd8193e6883af1, 0x40061118df0542ff, + 0x3fc19c6c613a91cc, 0x3faf262221cb9c40, + 0x400c0effb7d6a36e, 0xbfb8728a5e09f878, + 0x4001c8aa2ba011ef, 0xbfd0819b7551ac42, + 0x40163d953c222264, 0x3fdd9340e009f37d, + 0xbffe33f444623c80, 0xc0009ff8e6a602dd, + 0xbff07144a2abfde7, 0x3feeac6560b8417c, + 0x3fff6095dd3445fa, 0xc01ee96eb814d927, + 0xbfd58f59a929eaf8, 0x3fe59dc98c8a7c8d, + 0x3ff29004c19cd184, 0xc00341617de4f342, + 0xc00330701b484f60, 0x3fc3fd8f89a734a0, + 0x3fd89c6d21770738, 0xc00d82f60e3b0c9e, + 0xc009758e8dea8922, 0xbffbd54867e54b7c, + 0xc0062c3f010eba98, 0x400d56c856cb8258, + 0xbfe96e8c3c15a36d, 0xbff821e12db58a70, + 0x400322292071aa00, 0x3fe10da0de7e53b1, + 0x3ff5ae4de3e2b810, 0xbff59da19feb2652, + 0xbfef8863ff902504, 0x4010e1004fb842ae, + 0x3ffb9a7e441d1800, 0xc001f1115be2a4a9, + 0x4007ccf8305916ff, 0x3ff37e039a5f74e8, + 0x4003a060a38049b4, 0x3ff4347474e0ec5e, + 0xbff8dbce09545864, 0xc0097c6f08783dc1, + 0x400201b912f3ad1d, 0x3ffea688ee401931, + 0xc00843f6b0257273, 0xc003c32013775b7c, + 0xbfb28a920a2d0890, 0xbff7dc8e3f6cc11e, + 0xc0021e3e48b4c7c8, 0xbff2f93b1fea58ec, + 0x3ffdcde0b670e6d6, 0xc00cc1308628c502, + 0xc002c8d45443a9e3, 0xc002f22fb01403d4, + 0xbff3e170b9920df6, 0x3ff78d259809f498, + 0xbffe8e7ef6d30d96, 0x3fd66c3424c91a4c, + 0x4007a1667fe85b35, 0xc0045f309a6b3a58, + 0x40061bbd5a4d8594, 0x3ff70cc2479f49de, + 0xc0046f2dc0bd0380, 0x400458dab80f25bf, + 0x3ffa38f4cbdc14b0, 0xc0095f2969854bc6, + 0x3ffee90c5ad62cc9, 0x3ff536cbe0a5115a, + 0x40058d77468cc3a2, 0x400389526ea15af8, + 0xbff0b571c0724e36, 0xbff19f6a33e9ec0c, + 0xc006fe88e762e548, 0x3ff9999e07f09acc, + 0xc004b67f90dda016, 0x400537b34810980d, + 0xbfee5e262fb17324, 0xbffc38589806b676, + 0x3ffe8e3c764fe5bb, 0xbfc216d97dc43e04, + 0xbffdc448b04c4f35, 0xbff60902652bd3cd, + 0x4016579e10ddff56, 0xc009fd2eb595abb4, + 0xbfd46c307f3164b4, 0xbffef485a2a65c50, + 0xc0097d513774a032, 0xc0092a0d09935edf, + 0xbff8f6287f0ea386, 0xbfe018a779f1d670, + 0x3ff626b41671838c, 0xbfd0af418b9ecb9e, + 0x4005d1dd90058960, 0xbfec76b43ff1292c, + 0xbfea0809fee9bcda, 0x3fe867f16782fd92, + 0x3fff0968aa4d2a42, 0x40017376823e94c0, + 0xc005de8ec83d327a, 0xc0067e90be4f821a, + 0xc00261c3805973ec, 0x401031323380cdc2, + 0xc002673d88463af8, 0x3ff513de46e30908, + 0x4009c45509cfac04, 0x3fb076b690f7a940, + 0x4000f8e9160f1c7a, 0xc010fe5e7c8d8cb2, + 0x4000ce23d281ca36, 0xbff44d681affe7c0, + 0x3fd39cc9f1b87938, 0x3fe4dfbefd1bb401, + 0xc0011183d32b7efb, 0xc01abb09f933328d, + 0xbfec244290b33c62, 0x4005a91d4379a564, + 0x3ff1790a89483d1c, 0xbff2a9fc4e89449b, + 0xbfe6f06315fdae6d, 0xc00117f1ebff2bec, + 0xbfea57a50834e2c3, 0x40088d9cadb7026a, + 0x3fe336e574526b8a, 0xbfd6dd2a8be2f024, + 0x4011dfc706ab6ca2, 0xbfe39ed90603fbe4, + 0x3ff08f65bd8fdcb0, 0x4008ff6b6fe25a97, + 0x40012c6a9330cbb2, 0x3fe26613be4f8689, + 0xc006c98b5a7ca28c, 0x3fe47a91da0a6a5e, + 0xc0061f6c4cb9f7ae, 0xbffdbd6850201b50, + 0x40173b0f785ad372, 0xbff0daa814ac093a, + 0xbfe4b91bd949162b, 0xc0008c771adcf1e2, + 0x40001cf9856eca7b, 0xbfc8587d2effd2ee, + 0xbfd801f386cb3a3a, 0x4004490f1f5716a4, + 0x3fdcaa49bca7bdb5, 0x3fe3e296f1cfc920, + 0x3fd905883aa2328c, 0x400aa963b9c03297, + 0xbfe8a38d629fdc14, 0xbff92a0b37f5613e, + 0xbfcaa78e5cbc14aa, 0xc013780f5afbd624, + 0x3ffe7c52b4c96894, 0xc00def94814ce26c, + 0xc00167c55cb8bcac, 0x4016c23ffa5e36ec, + 0x4006324d8db1c74c, 0x3fd47802cafba692, + 0x3fd72b36ee1d21f2, 0x3fcfb0d0800bf890, + 0x4003f0bd2fd383fa, 0x3fd3866604bc43c8, + 0x3fde1c2098ac2f4c, 0x400c3148bc606aa6, + 0x3fc4938e5a130660, 0x3ff936ac93ac1e6b, + 0xbfd770a5e9c78240, 0xbff7252403f012b4, + 0xbfe4803b3bc897be, 0xbffb20c323e8a38a, + 0xbfe087611a01c9ac, 0x3fedd55f0ac0414c, + 0x3ff4ec102724c0bc, 0x400231e519c78820, + 0x400eaf82fd23443a, 0xbff46bdeb2871544, + 0x3ffaefa185763943, 0xbff106cf3c1f854e, + 0x4004b79e51a595a4, 0x3fdb5c977a48714c, + 0xbff1c7829b4c93c3, 0xc00240b37c6fb5ff, + 0xbff9ae8959ec4bdc, 0xbff97d1420539168, + 0x3ff9ca42e65b1cee, 0xbfd9aa588be0f758, + 0x3ffc7f283c7d67e7, 0xbfea412063235e88, + 0xc0003b5fc7a5c122, 0x4003bfce5e95a833, + 0x3fd3cdf896778908, 0xbfa493e0dca716b8, + 0xc00977dadd9b9d42, 0x40068236916c074f, + 0x3fd78f9cfdf04fc6, 0xc006f82d6f7dbdff, + 0x3feab3c9659add30, 0x3fbe134c322b82e8, + 0x4001f14c5488d56c, 0xbfd740985c544d80, + 0xbffac92d43dec51a, 0xbfc18c0d35e2da24, + 0xc00e2c7106d4078b, 0xc0064fffd151a21b, + 0xbfe789abb79e96fe, 0xc004f8ee6cc24775, + 0xbff58bf147f8e88c, 0x3ff222b592fa140e, + 0xbfef608990140868, 0x3fec2b9eae0e84f5, + 0x3fe88f0c7703ed49, 0x3ff977170c027f6e, + 0x40036b96c79f097e, 0xbfeef3bfd1bdaa66, + 0x40047c38923c6c96, 0x3ffbe91618d6940b, + 0xbfed35151bfbd8d4, 0x4013201680b253bc, + 0xc001e8a7333f2c28, 0xbfe1aec627e58a20, + 0xbfe4f3c5a1c004f4, 0x4003bfe233ca5ac6, + 0x3ff63f5e87d5615c, 0xc000193d1fb76193, + 0xbffd7b6ae8778ff0, 0x4014b3bc0d0b30a6, + 0xc0013cec5ee05967, 0xbfe6c51f49cec7e3, + 0xc003a076e661816c, 0xbfd31e446e273858, + 0x40190fb61c0a8919, 0xc00968c2f8f0525e, + 0xc01005c05d1d0b13, 0x3ffa4bec157f2193, + 0x3fe5167e0f020628, 0xbffb80ed925a72be, + 0xc011005ad0dc664d, 0xbfe0212b9eda09c1, + 0x4003ba1492b15d7a, 0xbfe52b3dc4356e4e, + 0x3fff93c8887957e6, 0x3fbbda694204f410, + 0x3ff356c19caa9a1e, 0x40037b613f8bccf6, + 0x3feafa16f841b82c, 0x3fff4f1a62fd03a1, + 0x3fedb18ebc811d9f, 0xbfe3417c23871f04, + 0x3ff38e646f8f788e, 0x4011955e8e79c784, + 0x400692e6f8e79098, 0x3fec30ce6142811c, + 0xc011ebe00bfbcec6, 0x4006b132c443a135, + 0x3ff330c40bfe68ad, 0xbff28e8617d6bcee, + 0x3fe046c773e33008, 0xc002fb0b68224bce, + 0x3fd7b443d2542f9c, 0xc007402d62cd4f6c, + 0x3feda6e4faec3e66, 0x3ff2f0d18e4d0210, + 0x40038f0662b551e6, 0xc00a8070b70792c4, + 0x3fd195df779dbf90, 0x3ff933b525a791d7, + 0x3fb2852f2c3882d0, 0xc00140c5e523c58e, + 0x40006be728c073fb, 0xc0007b7d28a4345d, + 0x400997bea42fd30b, 0xbffe3cf457885460, + 0xbfe6c41ff26f0884, 0xc00b39b65d52596d, + 0xbfe87cbd440f55ec, 0x3fe0cd8f0c7b85c0, + 0x400d33ea9dff9509, 0xc00bf57fd9e52ac6, + 0xbff8fdc81aecfa36, 0xbff444da6bf2491a, + 0xc011a698c7017eea, 0xc01508b11a5e5d24, + 0xbfe4cac75f752dc9, 0xc011ea11fc632528, + 0x400ca15e2bd95068, 0x3febee742f526ca2, + 0x40119202722355db, 0xbfa312037004d2c0, + 0x3ff8392d23c75fd0, 0x3ffd53c402422a0d, + 0x4010326ffc92f3ce, 0xbfeed7ad85ca9a00, + 0x3f8eac2323a07cc0, 0x400479861ca0d828, + 0x3fcbaec0442cd816, 0x3ff6ec0f5926f6db, + 0xc00212a436510d33, 0xc00a77acb8d287a2, + 0x3ff481fcd679df28, 0x4011d44e8dd3a1ac, + 0xbff1ae232bbf5c74, 0x4015d4c9c515afc5, + 0x4005fc09c52e3999, 0x4010ff37241e0a0c, + 0xbff24f7579883592, 0x3fef730b119f44ba, + 0x4002e6a2dd03a3d6, 0xbfb0f5cb1330d8e0, + 0xbfc0bdc090d37998, 0x40073b35e6218234, + 0x3fe7a650ca67c79a, 0xc00982ec50fc8f07, + 0x4009bd46bf9db1e8, 0xbfd30aca7faff17c, + 0x400678a8033fa27e, 0x3fcd6b7500058550, + 0xbffb53ba2b05133c, 0xc0082bab32be21fc, + 0x4000df395fd904f0, 0x3ff6cf418302d532, + 0x3fbb62a7922b5540, 0x3fe2edbfb6237cca, + 0x3ff819fb4be7c7f8, 0xc00978091eadace8, + 0xbfe5bb36fc0790d8, 0x3fd4671182f9377a, + 0x4009683546e19da2, 0xbff93f7227506d0c, + 0xbffba680bf4ec58d, 0xc0053a10f1605e19, + 0xbff7aaa87f7d2702, 0xbfef250e29617619, + 0xbff6b369418a3a90, 0x3fca783daada8588, + 0x400e769736e5a6cc, 0xc0043526c48de0de, + 0x3fe2574d1e9d4a86, 0xc016a609ca6f7eb0, + 0x3fef2d27b9768cd1, 0x3ff0bfd3be35e284, + 0xbf8f53e1a5344e80, 0xbff3621bead582ab, + 0x4019303cd1385f96, 0x40006681b2cae479, + 0x3fc45d1c3b7f03ec, 0xc0058fb7ec566b5e, + 0x4015c689afa7153e, 0x4015d49c23662d69, + 0xc006246d32bd3302, 0xbf92719f6e48b6c0, + 0xbff9fe6f41333835, 0xbfe313b4b8a903ee, + 0x3ff689ae1ca2e136, 0xbff9bac30f6bfe90, + 0x400bbd6c2db699a8, 0x3fe29c990c40c860, + 0xc014534bc163588d, 0x3fcdc29343c74068, + 0xbff9789c7becf076, 0x3ffe887a4eadb5be, + 0x3fc34f6f8a1c2e98, 0x3fd7eaaea12de1ca, + 0x4009311f7674bfd2, 0xc0039f85e1086a32, + 0xc00d77fc49666c7c, 0xbff37693ded78cc2, + 0xc00fcfb02d3cb358, 0x3fd3cd894f2dc660, + 0x3ff8b2bf5bef5361, 0x3ff72ec004e280ee, + 0x3ff1113b3d6f28bc, 0x3fed78e1f4f03cb2, + 0xbffa08c253c53852, 0xbfecfc8e1deef8c0, + 0x3fe8290dd46e3f80, 0xc005e7027b1e8e7a, + 0xc011dad7604e8de0, 0xbffe21d4c40813a2, + 0xbffa1e26516ff036, 0xbfb77da55f40b630, + 0xbfd6a219d029fee4, 0x3ff42262b9bf7cb0, + 0x3ffb019ec54960bf, 0x3fe7deb707d169be, + 0xc01377854e5901bc, 0x3fe2c81b8735ae63, + 0x4003bba9fc43e7da, 0xbfede6b11e4e0730, + 0xbff9f08c10ba39cd, 0xc0041a3309d1d3b2, + 0x3fd67138ff4a9608, 0x4003e4725b72f23c, + 0x40084f15e06df424, 0xc00a1bcd3210c098, + 0xc004deed6d42327a, 0xbff74d1611d69194, + 0x3fdf1e251e5541a0, 0x400978205d6e0e9a, + 0x3fd0b9c210f6aee6, 0xbff23106de28e127, + 0x3fffcdf13670d9de, 0xbff00a4984e5b472, + 0xc00bf8feff3a6fc6, 0xbfeb3363da45b27b, + 0x3fdd64d22a7c8bf0, 0xbfc54f96a16ed66c, + 0x3ffc84fbb353c381, 0x3ffc2eb750dc70ba, + 0x3fe1b4453d4f0530, 0x401021db778f2459, + 0x3fb414851fb9b24c, 0xbffe0725e7d062e2, + 0xbfdc899c4d0934e5, 0xbf7f800c0be58700, + 0x3fb37ad79cd1c214, 0x3fe7f0b53852ffa4, + 0xbfce09f0ade800e0, 0x3ff55219d8f15854, + 0xbfecfab4b2b46c0c, 0x4005d073925cf1e0, + 0x400361251a2e771a, 0x3fd03531a19abee0, + 0x3fec88dc8b79a7b5, 0x3ff57080e228ade1, + 0xc00f111e3548bc60, 0xc0018b19890e9ca8, + 0xc00221b93e151a13, 0x40074400b067f8c2, + 0xc01b8188340bd888, 0xbf58bba849769800, + 0xc000130607fb29a3, 0x3ff3b124c7f517f4, + 0xbff9240e25a3d70b, 0x40014af734b412f8, + 0xbfb6d1661c509128, 0x3ff4b364b0ff58b0, + 0x400b26fdf78b41c9, 0x3feb1e5f4d24a3c0, + 0xc004090ed35a6f98, 0xbfcba547823a681c, + 0x40107654f588b349, 0x400290993b7e7507, + 0xbfae9c65235cb160, 0xbffd26d15585cba0, + 0xbfde95ed168d8421, 0x400f7479853a0936, + 0xbfeeebe792dc5baf, 0x4013d46a62ced142, + 0xc011659e08931046, 0xc009c459480b37eb, + 0x4004aa00b3daa7fd, 0xbffa2f1bb8bc0e04, + 0x400177d9190dbe0b, 0xc0158b128de79760, + 0x3ffc4242356b01dc, 0xc01479c11897701e, + 0xbfe33f59979dbcf8, 0x4005b6e0e22b505e, + 0x3ff44bacc539ba1e, 0xbfdff48449dd2b28, + 0xbff3dfc3a3c2eeeb, 0x400bf6f4ea3a5bcb, + 0x3ff148cf67c3c9ab, 0xc000564f5c0815d7, + 0xc003d25d2c64268c, 0x4006b9843e43ee50, + 0xbfffe1b16d4d59f1, 0xbfdac14ea450079c, + 0xbfeb300fc3f29f96, 0xbfde9fe9832c5a08, + 0xbff50367d0e83e25, 0xbff6dbe91f31b8f8, + 0xc015985cb0c254d4, 0x3ffe1238be75fece, + 0x4007b56a9fa3eabb, 0xbfc5964cefee3178, + 0x3fc3678ec639dd24, 0xc008468352313f91, + 0x3fe8d8989a47b4b2, 0x3f8d18357cb92e80, + 0xc0007ba318be5d5e, 0x3ff3dc756e20b7f8, + 0x3ff4a06986b780ec, 0x3ff05bccaa8b86e6, + 0x4005d0cdb0ad4ff5, 0x3ff403d17469a816, + 0xc007131f4ea2f593, 0xbff4f58b4eac50e2, + 0xbfe08aa7f2c7d321, 0xc012119c7e4c2977, + 0xc0010bec1ae8910b, 0xbffe07e39d2d9e12, + 0xbff57f3cbe3bae74, 0x3ffb2b0855dbf34a, + 0xbff1290a91c57810, 0xc00c6e72d9b4c486, + 0x400a0be9a8ada04d, 0x3fa8bbe2af5a4250, + 0xbfff12c6e1ec56a9, 0x3fd6006e98674822, + 0xc00cb0459dd8f9f6, 0xbfbceaf46ca5e970, + 0x3ffc192eaad0c955, 0xbfee531bdd3b1f58, + 0xbfe33a72878f26a0, 0xbfe69aa4ccc03804, + 0x3fff03811c762f1e, 0xc0018d77fe08d808, + 0xbff56771c04e887c, 0x3ff7a1aa51c3c7b9, + 0x401056ab2a6fb5e0, 0xbff259e0f6bc9a36, + 0x3fed49c82fca34f6, 0x3ff8837811efb5ba, + 0x3ffa8d84ee24d82e, 0x3fe29cdfbb5d3988, + 0x40084eb9db9770d6, 0xbff08ac0a946cba6, + 0x400be5b601b2dc79, 0x3ff5c6ed2fb7c8fe, + 0x3f7cc4fd0e133800, 0x3fea478b6a2063a4, + 0x400e9c21fd068850, 0x3ff9b5ae34685593, + 0xc002db4b8b8dfb4a, 0xc010f95d83c54e90, + 0x3f7c5f7932e2cd00, 0xc010ed2e98915bda, + 0xc0038628583c537b, 0xc001c7b4ea2bbce5, + 0xbff7c65a5f26ef33, 0x401406275c86992c, + 0x3fefd15a4ed8c9c0, 0xbff9618304ca014e, + 0x3fbed0d0269b92c0, 0x3ff13ad3d7578b71, + 0x3fdf0b9ab61ad670, 0xbfe7773086c5d10a, + 0x3ff35fbec069d644, 0x40045b810908710f, + 0xbfe19cf02a65c8b3, 0x3ff51fd330334033, + 0xbff139ea6e9bb98b, 0x3ff5bc4610994144, + 0xbfe890f6d6671380, 0x4005cbf028b0d971, + 0xbff0bd4b32142b0c, 0xbf7ae2f1cd533000, + 0xc008f2c5fbd4045c, 0x3ff0cae02f3c4d40, + 0x40018e4d24c46bca, 0xbfd8dfea0ab34c98, + 0x3fe0a94e408380a7, 0xc00f9a41f1b0e53c, + 0x4005553c26a462f6, 0x3fc6cb638f9213d8, + 0xc003d0de740868aa, 0x4005ff5c629dfbe3, + 0xbfdfc19f4de1b9a8, 0x3fe1ccba51c07fa0, + 0xbfe24c267570ea10, 0x3fed416ed66479c0, + 0xbfeb24fd1a9f78e8, 0x3fd2a10a1ead0d30, + 0x3ff1eb335db63fe7, 0x3fe123a3d5a03306, + 0x3fc1eae7b93daea8, 0x3ff29c1d7bfdc8d2, + 0xc0098417ab5d0dcd, 0xc00c57fd58e3c49c, + 0xc00f70198b03008a, 0xc00cc9a9a36be61b, + 0x3fdbd2c539fc6d0c, 0x3fdfb3ff6a1ed558, + 0xbfd5953849d2f570, 0x3fe496fa18f241d0, + 0xbfdf3572887e45b8, 0xbfbd24d3526de1e8, + 0x40014093718a38e6, 0x40043aa99dd182e1, + 0xc0031c131a05abf5, 0x401846b5b0acee2d, + 0xbfc5136198536c50, 0xbfe573656b7c54c4, + 0xc0118de683b948dc, 0xc009be6cc9e9b497, + 0x4008a411881bf5d2, 0x401a9a48a7fbf70f, + 0x3ff86ce6121d6a90, 0xc00a9429f8ac7f2e, + 0xbff53669ecca7c85, 0xc002c3c5db03432d, + 0x3fe6defd9405ecee, 0x3ff5482cccc0238c, + 0x3fe1aab08893dbdc, 0x3ff948128d34c8fa, + 0x3fde397ea33d8df8, 0x3fdd058b4474ed94, + 0x3fd7243ef9a3c77b, 0x40126e8fd6a50bf2, + 0xbfd1d9fba826903a, 0xbfdaa321021b5d92, + 0xc00532158d35b2f2, 0xbfe3a367c160877e, + 0xc00be4d858f4d56c, 0x3fe154fb6556929b, + 0xc000d737cfa1cbf7, 0xbffa68d26d61241a, + 0xbfca74f6e92b265c, 0xbff1661411d2d332, + 0xc00588a41985d7d5, 0x3fd89904520ebb7c, + 0x400835e1683d7880, 0x400436c664c99f96, + 0x3fe11457b89b8a57, 0x400b00c9a85fd9d6, + 0x4009b6469e5bd13a, 0x3ff34c3fc82717cf, + 0x3fe5884438cffd4c, 0x3fd467d8c3d1d810, + 0x4013184c0bce04ee, 0x40109c8006c9d97c, + 0x3fdd127935614d50, 0xbfee1c27619eb7d4, + 0xbfea912f675bd586, 0xbfb793b64b0239e0, + 0x3ff59ce6aa1b48a4, 0x400506340f3647e8, + 0xbff23777ce6798bb, 0xbf989e8efb2dd100, + 0x3ff3a7eb6f54ba06, 0x3fcb4d31dbd89c78, + 0x4013b1a3f5a496d6, 0x401421f88b902107, + 0xc00619d09c4c35fb, 0xbfe26537089463be, + 0x4013260a439ae5b2, 0xbff20fa07713390b, + 0xbff8d04c57cd09d2, 0x400764dbbd9d4af3, + 0xbfabb9ec32f98820, 0xc0056df5b3945be2, + 0x400cc5a3c3cd796f, 0x400884cfe9a65036, + 0xbff448406fe92526, 0xc0045df85b4fba1e, + 0xc00bb3c8bb10e31e, 0xc008e881bb90aeb6, + 0xbffa3b14875b936a, 0xbff871bb570c6e3d, + 0x3fc2ece985b5edd8, 0x3fd77d8178b6ea24, + 0x3fd3f1c7fc46096e, 0xbfeaccf9d0b2ea11, + 0x4009732cf5d0affe, 0xbfeb35489a82996c, + 0xc0018f78c34b1716, 0xc01495206b64d808, + 0x3ffd4470eaaae442, 0x4002a1df25b75481, + 0x400c052d966802c6, 0x3ffbaedf441fea2e, + 0xc007937ebb7bda5d, 0x3ff17bcd912c4542, + 0xc00e7dd2c7e3f41a, 0xc006ee5df84ac04e, + 0xc005ba09292583ae, 0xc005712c1a5a8fef, + 0xbff7929309a39fa8, 0x3ff22c176ea42c88, + 0x3fbcb9a4df218ed0, 0x3fa5a653e63f35d0, + 0x40101d431d075150, 0xc00cb78cbe096045, + 0x3fea72727f831183, 0x3fd07123d64db12e, + 0x400c5aaff1f80cee, 0xbffadc25acd46e1e, + 0xc00d99efc725a350, 0x3fe0438cc7b09240, + 0x4008aa906d47492a, 0x4002257ffb637c81, + 0xbffda2e70d630f64, 0x3fffe94cd399bb6e, + 0x3ffd551af00e1876, 0x3ffddc466964a790, + 0xbfd458326608f7b8, 0x3ff4a26ae0e591f8, + 0x3fe936c5399901a2, 0xbff254051b85d81c, + 0x400550afc0e1c365, 0xc00573374f8098a8, + 0xbfd98cc5529993d2, 0xc09666fc4e690dfc, + 0x400b7ab36ca7611a, 0xbfffb66531289158, + 0x4003d9ab8ddca7a2, 0x3ff7bb146e227a6d, + 0xc00738a937551b0d, 0xbff1bb3c5010e938, + 0x4003009b8d0089b6, 0x3fed629938eba9ff, + 0xc0012d091e9fa17b, 0xbffc9b88c08d493a, + 0xc012aa454bf6b2fc, 0x400b5a15deda612d, + 0xc0046f1f83f6a501, 0x400a4ae019f1a79a, + 0xc007e912d39e77da, 0x40093f2c188bdc71, + 0x3f9280f634cace80, 0x400cf40d96605080, + 0xbff891a8735cdeef, 0x400055b358a00bf0, + 0x3ff9904b5f41f1b2, 0xc00ee8d1245b10be, + 0xc012455e2baddf72, 0xc002b0cab75ea767, + 0xc002e7883a2b179e, 0x40009af95ae4e4fc, + 0x3ffb4d9e0e1455cc, 0xbfdaaf7136ab52ac, + 0x3fec41c79f351f88, 0xbfe568fea588dd41, + 0x3fda5e0645d13c5e, 0xc00f93b29e92a78c, + 0xc01a0c9f0290c1dc, 0x3ffcffc9562d6dd4, + 0xc012d6de173469d7, 0xbff5ad5c4c85d460, + 0x3fdef642c741f449, 0x4002a3b05e14cbe9, + 0xbff3f56d105089d1, 0xbfd6eb7a68356712, + 0x400e68b4668cddb9, 0xbffaea8cdca7edee, + 0x3ffb17e71052faec, 0x3ff0f8235e4656d0, + 0xbfd7da7e875aefca, 0x400498f1863424e3, + 0x3fe223059c6a058b, 0xc001787750c56f71, + 0x4006f954c4048214, 0x40165f118b3a78a6, + 0xbffa6ab1565aa3c7, 0x400432b8ba2952ac, + 0xbfdbd0c044daf663, 0xbff0786e33693df8, + 0xbfef53f148ba6cd9, 0xc00558634d18dbbe, + 0x4000b0f17c12f0ee, 0x3fe850db91876e6d, + 0xc003d91e75a6d52b, 0xbffe0678a886bcda, + 0x3ff22a743c9d1556, 0xc00bb40c7c2b17da, + 0x3fe4854bbe267939, 0x3feed328817fe7ad, + 0xc012166baddb16db, 0xbff85b2eb0308c6f, + 0x3ffad82f799ea148, 0xbfec3780b5999d99, + 0x400dfb69589916f2, 0xc0000cd3817075fb, + 0xbfeca086678a6300, 0xbfe9c55c31a0ed61, + 0xbfe2187218fa9320, 0x3ffa55c2327a3083, + 0xbffc3f45bf0748e0, 0xc0123e133682a379, + 0x3ff523d29395f27e, 0xc0065d441f1be445, + 0xbfe0cc4f2476d110, 0x3ffd97bd4a2dfc62, + 0xbffbc3ae8e7b7bea, 0xc00b1cf5c807cfaa, + 0xbf6fdf4032bbac00, 0xc00c1ce1d0fdf05e, + 0x3ff083f049ef1c9e, 0xc008bd642fa23cb0, + 0xbff608fc4c6406e5, 0xbfec0bb7435058fa, + 0xbffb9d4c7d60ce1f, 0x4007589a4946fd61, + 0x3ff7dd4803c56312, 0xbffbba64bcf774b4, + 0xbfe7363d51745eed, 0xbfefa4647e66d856, + 0x3fc6a1818317df78, 0x400273180e834c6c, + 0xbfd82236d36fbe18, 0xbfe6232b72d00ce0, + 0xbfd0a20cd8ea2564, 0x3fe9d239d9a93e31, + 0x3ff22ad7e401f42f, 0x3fe8b75290be4a34, + 0xc0081a793cb7bca5, 0x3fc1591455b21b94, + 0x3fea118833dcd13e, 0xbff11e92c1f517d9, + 0x3fc40d54d3c4b428, 0x3fcc9b85c6cbdd88, + 0xbfd13c39d762aedd, 0x3fdf38f3d324e5d0, + 0xbfe342f67a0a0d08, 0x3fd6207af8f1d60a, + 0x4000cbdcd4b12048, 0x3fdf62a85db39260, + 0x3ff6d1a30a02f073, 0x3ffb1d167d37faa8, + 0x3fb144e095435b30, 0xc00cf66e34e9295c, + 0xbff1ec83bdebbe45, 0x3ff562f6e97c77bd, + 0xbfe69442e598d797, 0x400486559e86a2a4, + 0x3ff08ec91b50efce, 0x40120dc1b740c892, + 0xc00d8c390c002472, 0xc004aeff8f9fff7a, + 0x400cdd1ede650d1a, 0x3fabebb026495b60, + 0xc00e56bac7d69a13, 0x3fd4171b09c19c16, + 0x3ff66c37815df4a0, 0xbfff90916bc7098d, + 0x3ff400de55896315, 0x4002c65254dc51ad, + 0x4007b655d0aadf2f, 0x4000ed219fdc0a64, + 0x400224b054eb3727, 0xbffd92099aaf834c, + 0xbfff8422722e6800, 0x3fe2369c7b4c677a, + 0x3fe8bcfefe5aba5c, 0x40103706e77bc2cd, + 0xc00719c60722bd48, 0xc00e3287c6ffc3d5, + 0xbfdee94a6dadc1cc, 0x3f870db00cad4d80, + 0x4007242ae9b25567, 0x4009b28528ca9e72, + 0xc000eef9a66515bd, 0xc0052077f68ff53e, + 0xbff0f3fc27e06013, 0x4001622dcba8f302, + 0x3fe58a426a8a98a4, 0xbfe5456bb52331ab, + 0xbff183662a798f7c, 0xbfed8680f250163f, + 0xc004cfcb0627f662, 0x3fd6398b090065b8, + 0x3ff173501ac080f7, 0x400639cda01dd086, + 0xbff2d73cff311538, 0xbfeac7104a2ad206, + 0xbff0ac9f38235d11, 0x401834051d4ed688, + 0x4011fc33e6a6a2e6, 0x40071960c5ab9aaf, + 0xbff982c57c7e4a9d, 0x4008da1a7c8fcec3, + 0x3fe1dedc703e7302, 0x3fe3fa8613710c13, + 0x3fdf48b62da94eb4, 0x3fff36a16ad41bf6, + 0x3f8f459104f35100, 0xbfee77336aa21b79, + 0xbff035b7f8ea8392, 0x3ffeca031c4d7031, + 0x3fc709755dde54a8, 0xbfe36ccedba0e5a2, + 0xbff678fa9746f1e4, 0xc000166c3489e6f1, + 0x3ff800220c054ec8, 0xbfe94093bb8e215a, + 0x3ff72893461d449e, 0x3fdf2cf08345c6a0, + 0xc013e8556a5ee6fa, 0x3fecc4b6e72b6603, + 0x3fda8cd3d565b080, 0x3ff03d0a999f91b0, + 0x4003499688667ca9, 0x400368870235660e, + 0x400822101fde8102, 0x3ff74e0596f72d35, + 0x4013cc000f0b1d8a, 0x3feca985a6a30fea, + 0xbfbea79394ca83a0, 0xbfe87c2a16f0e1dc, + 0x4010817a9f2b2b7d, 0xc0156ff654e7f370, + 0xc008b6df398bf7da, 0xbff5996e397a0b8a, + 0x40035ec2788831ea, 0x4002819f10ce2c4f, + 0xc00b5dfff09c39ad, 0xbfe43dd5ce56f6c6, + 0xc00dbbe77daf8770, 0x40031456dc26383c, + 0x3fddb095f4af408d, 0x3fd0e9c1a960b72e, + 0xbfdef32a9034c20c, 0xc004006482be7011, + 0xbfcc476f38077b38, 0x3fe097d305a20b38, + 0x4011b5bb61c6b4c4, 0xbfff3b1be795239d, + 0x3fcd57646051c0d0, 0x3fe414e275ecfa1a, + 0xc00484b5e4f413f9, 0xc0034b94b14bf7cb, + 0x3fa679e8155ce920, 0x400cfa1180bfad6a, + 0xc0102062556f58e8, 0x40157b758a983552, + 0xc009c723eaa0e11d, 0x3ffb62a5050ed19c, + 0xbff9582fa97896a4, 0x40125ad1a78feeb6, + 0x3fd8809700cced8e, 0x3ffdc95bb46e9b3f, + 0xbff93bf12bc9e45e, 0xbff93605e8675950, + 0x400bf61bfb46a70c, 0xc00818f1cdf0929e, + 0x4006a8c9a484de39, 0xbff02fe730d4a199, + 0x3ffe3e6c7a7793dc, 0x4006b922fbe6f359, + 0xbfc21e88ae7e7514, 0x40126e0ecbfa0ddf, + 0xc0009b01f57b270a, 0xbfe95f01df64c11f, + 0x4011427a8dfe949c, 0xc003f022b7351e8e, + 0x4000388ce014e17b, 0x3fd90c0a7e924124, + 0xbfe46ba8901057bb, 0x3ff34e3b9341aefa, + 0x3ff20d06c3896226, 0xc0021b26bbd67eab, + 0x3ff0c5f505e7671b, 0x40076b64284168a8, + 0x4015e927b3f0ba8a, 0x3ff677f630d4dbe4, + 0xbff826a51d67111d, 0xbfe91756f2530415, + 0x4010b7f9de7d9506, 0x3fdf4c35ec8bac04, + 0x3ffbeb92683fd8ae, 0xbff4291e12f241e1, + 0xbfd8ef81b35bfe26, 0xbff9ca9aa81e0b50, + 0x3fd623aead1eae6c, 0x3fecfe3ab93e37fb, + 0xbfd9d70776b4a0f0, 0xc01383fbd0f7467d, + 0xbfe6729781524f0f, 0x3fe52a1380aecbb5, + 0xbffc934ed3bab51a, 0xbfc4958109a28d6c, + 0x4006cd9f013aa8e0, 0x3fec7d4613c2f2e0, + 0xbffcac84c313d31e, 0x4000ce9f6f79ea9f, + 0xc00e0441d4879f2a, 0x3fb46ef496472830, + 0xbffb934501bf09cd, 0x3fd116142dc03a6c, + 0xbfd366555c27859c, 0x3fe1bab240ab40ea, + 0xbfdc61af489c6de2, 0xbffc33dc02ad35f2, + 0x3fdc210029f8df62, 0xc0036fc159a69fe0, + 0xbfd7d2a3b65b8864, 0xc0002dc9e2f9227a, + 0x3ff255ad58e56fa6, 0x3fe811ed7d516eae, + 0x400791a1bbb53dd2, 0xc004c72acfc6904b, + 0xc001a39fb734224f, 0xbfd035d0b9d4b4c2, + 0xc00126e2554f512b, 0x3fbd3dda63f8c980, + 0xc00f5d568cf703eb, 0xbff08162c76441fe, + 0x4001bba9541b5326, 0xbff563f86f6d90b8, + 0xc011c5ff31a9a1d3, 0xbfc9b119adc970b3, + 0x3ff15d20b3fe7070, 0xbfe819aff4369754, + 0x400b348d8c7fe4f3, 0x3fd93c452e6b63b2, + 0xc012982e68e88282, 0x400d0f75d3d333ca, + 0x3ffabef6c6342d6d, 0xbfc0bff2169b3082, + 0x40020d05e4705830, 0xbff92fcd5d844ec4, + 0x400280ef3f6a9e8f, 0x3ffc78f8c4ba1b33, + 0x3fe72afcc0070b86, 0xbfe0a1bd515276da, + 0x3fd5315149984ac6, 0x401554e13d26163a, + 0x3feda66d1eb4a8f6, 0xbfec7183be35ed54, + 0xc00bc8f341a244c8, 0x3fe058c3db166390, + 0x4002ce9cf6cfd8e4, 0x3fdf1fbca2987987, + 0xbfc352ffded7bfdc, 0xbfe7b9a1d300a3bc, + 0xbfec0899a2410528, 0x40037d71aec18bb0, + 0x3fcae9aac1a26b99, 0xc00a4f053b83c7dc, + 0x3ffb03eae1b53f0d, 0xc010cb03425cd07e, + 0xbff92fd6e358ccfc, 0x3fd98059b1f10918, + 0xbfe574e1f2d9774c, 0xc00b6b2000e88ba3, + 0xc004df0b0577b47a, 0xbf48fb87c0f76400, + 0x400b6b23ebc00af4, 0xbfc047735de75a34, + 0x4006c94fd620c5fc, 0x4005f942e16abc48, + 0x40047ff188a56897, 0xbfd1820e386637d0, + 0xbff858c5710d1f12, 0x3ff7618f2ae5a6f6, + 0xc00ab90e421f5e5e, 0x3fe9cdcf63072999, + 0x4004c2b5a1521a00, 0x3ff3bd302fab9b0d, + 0x3fe1b5ab51553b7e, 0x3ff5e360f72a07ac, + 0x3ff2842376f76eca, 0xc01183e3b0a00053, + 0x400f14dd3dca7cb3, 0xbfb8dfe0c779f610, + 0x3fe2c0c39b7863b6, 0xbfe064019990b9a7, + 0xc00294cba63c708e, 0xc0083ca83a7a3a2e, + 0xc00be9c757c7bb54, 0x3ffea2d52c69c02a, + 0x3ffaa8bef32be925, 0xbf95f7efe390a000, + 0x3feceacb574c0308, 0x3ff26666155dc438, + 0x4009f9752bdb4d09, 0xbff08a271e962294, + 0xc008aab299cb852c, 0x40049131fa0cef56, + 0xbff869ed50b54b18, 0x3fcc2a3f21dc0744, + 0xbfc0f6ee7ff844d8, 0x3fe0faa264458114, + 0xc000110e1fd4e6b2, 0xbff68d969e259862, + 0xbff3e4f8b9ce1a82, 0xc016878d200a350e, + 0x3ff9606ba45c09ae, 0xc012836d772febf9, + 0x3feb3a7643cf10e4, 0xc0048039d2220008, + 0xbffee1cb749d237b, 0x4005aec1e1cd840a, + 0xbfeff0defc2921c8, 0xc0001659d6cd68a3, + 0x3ff4bea9f8f13b85, 0x3ff5a371cd96b32c, + 0x40075d3d91768e56, 0x400318550fdd9744, + 0x4001bae9583e7d22, 0xbff19d4cb434a4a1, + 0x4004593b1995f984, 0xbfd7225f38993bd5, + 0xbfbe247387a57886, 0xbfc40c0d766ebae0, + 0x3ff22fd5c204f202, 0xc0042aa636d865d0, + 0xbff4523da2d4c9f0, 0x4000b36d4042cf38, + 0x400e553d7f3f91c7, 0xc000c3469ff8d73f, + 0x3fe28de89ad6c9f2, 0x4000feb1261220d0, + 0xbff06764630b728e, 0xbfafbba36d7b4570, + 0x4005414c074301ac, 0xbfec0f603a94d304, + 0x3ff447c72bd077ac, 0xbfea4d671abf7662, + 0xbff5bb7d88a445dc, 0x3fced7aed8cdc403, + 0x3ff93371365b2d02, 0x400575309f19e415, + 0xbfb1e14ae915d050, 0xc00547c7c3dc301e, + 0x400510d1a5dfd1e3, 0x3fe753aca6d69954, + 0x3fed08c2cf7eb784, 0x3ff7e2c71ab7e888, + 0x3ff052d8d981760a, 0xbff1f448e2ca15c2, + 0x4019231ed2fc713c, 0x3ff5148296d48404, + 0xc0061da214ac5886, 0x4012027413c82d98, + 0xc0070c5df10af412, 0x3fd2e6d71eddcbab, + 0x400eacccf8980afe, 0x3fc2418e6750d366, + 0x3ff08827267e7d94, 0xbfef06740346dc4e, + 0x3ffa9ded8044b880, 0x3fe22c7182e5009f, + 0x3ff0e40b0ecbce62, 0xbffeaa4d179203e6, + 0x3fd5960093844178, 0xbff734708a14c47d, + 0x3ff82178b8e7f2d5, 0xbfe465b26e2bf87a, + 0xbfe129a16799aa09, 0xc00625f546868924, + 0x3feba3f01a663be2, 0x4006e195bf613e58, + 0xbff2f34bc7bd3762, 0x3ff262c269f81466, + 0x40129cc12392126a, 0xc0139511fc0c542d, + 0xc011b48e4e3a3940, 0x3fd0660710be5ce8, + 0xbfe055e391e4d7c6, 0x4001130241dbdeb2, + 0xbfcc577fcffbdff0, 0xc002cabe3a346656, + 0xc008a7998d514fb4, 0xc0051f84c29d70e9, + 0x40123bc50f383b70, 0xbff33c98fa23442c, + 0x3ff264a2637b43c1, 0xbfd09abaf330ac8c, + 0x4009479786511875, 0xc00cd963043d0874, + 0x401a69dc173804b7, 0x40000f1458a7b627, + 0x3ffb37f57e2ab6b9, 0xbfd53a9c88cd6db8, + 0xc0059114308f1c11, 0xbff9b4b8ea433e4c, + 0x400611225a14d1bc, 0xc003b1e63b978641, + 0x40031288a7b3c359, 0x4005fef479bbc106, + 0x3ff9357f9e56e2d0, 0x3fd6760d35899218, + 0xc00d8df153a4cac3, 0x3fd4b75bde076b90, + 0xc01034d1a05cb02e, 0x3fd57f2e7a0d7e81, + 0xbffa6c618e90df34, 0xbff3723fcfd5c8c8, + 0x3ffb816d17ca3036, 0xc003c0cac3179d4b, + 0x3fee69ac37dd590e, 0xbff540f69656c605, + 0x3fc49dfa7714159a, 0x4001eb8e5de7aaa6, + 0xbfb9607c920d5ad8, 0xbfb066e990661be0, + 0xc01693a905b0e396, 0xc002127329772598, + 0x3fe8a9ee51ca2c80, 0x3fe31248f03da32f, + 0x3ff25e8a8ba5fa31, 0xbfdba83df939686c, + 0xc010a627c39e7b24, 0xc00901a1ad440415, + 0xbfea304dc4e40540, 0xbff272a5184762df, + 0xbfc7cb1a314f696c, 0x3ffac1a8bd95794c, + 0x400da2d979639b32, 0xc0038bc40e9e85e6, + 0xbff815c1e08920c4, 0x3ff7869752c82160, + 0x3ff237d9d1078d66, 0xbfa4089d0b78f9c0, + 0xbff5e5bfd8052552, 0xbfe91ec8911f9808, + 0x40063577219fc2bf, 0x3fe1342164dc3477, + 0xc004664a40157c66, 0x4018ca7b2096fffd, + 0x3ff46d06390e1231, 0x3fc4a27ed0369fe0, + 0xbfd6e1366b925838, 0x3fd3d99286ce2880, + 0x3fcf8fd4c15fee8f, 0xbfe58e709bdb5f56, + 0xbfcdbe8b81f9b4fc, 0x3ff9898509e6d35b, + 0xc009c057aac36d9a, 0xc00882f227f06716, + 0xbfea123ea597b67b, 0x3ff4499025ba4726, + 0xbfec987646c8fb1f, 0xbffc942fd8312e5c, + 0x3ff71ae398917142, 0x3ff32f02347e0ea8, + 0x3fe2c423275438e8, 0xbfac3b6b91c80400, + 0x3ff8cd988748ce8d, 0x3fe0cc9e3af81c90, + 0x400a388dc52a9f8d, 0xbff42e53a505090f, + 0x40014b89780d1631, 0xbffbe5290da40ab4, + 0xbff0671192284210, 0x3fc267273b5b24ac, + 0xc0062f6b219a19f7, 0x4005481d21d8e46c, + 0xbfea58f6396bcfe6, 0xc00ad9fa7dbd2e8d, + 0xbfd024c6c3005ced, 0x3f9ac5474b270680, + 0xc00026c3e2c92a2e, 0x4006dc84929cbcfd, + 0xc0037c020efb4a59, 0x3ffebb9ea85ae9dc, + 0x4007c20b510456b8, 0xbfe0e5c9f2ebe839, + 0x3ffd6f7dc5ac3128, 0xc008fa83ffbcb4fc, + 0x3fc2499d18775770, 0x3ff5693724b5d569, + 0x40070caa0edb31d4, 0x3ff5e816f8cfd0a5, + 0x3ff0b273f8396429, 0x3ffbd64bb2241d85, + 0x3ff5f07b6d312c75, 0xbfebde4fdab7e52f, + 0x401118d3e5847ce4, 0x40090c430f3a372e, + 0x3fb9261ab5b09ba0, 0x3fc7660d69944156, + 0x401298eafa175606, 0x3fe8b473e24a467e, + 0x40000a0fed1a2252, 0x3ff816ad1a837ac8, + 0x3fd33a777ec3280a, 0xbff7553babcebcb6, + 0xc0041b317c194862, 0x3feb91457df540eb, + 0xc006d46756131aa8, 0xbff43415d16fcbab, + 0xbfd7cd008031be44, 0xbfd9712fc101ba53, + 0xbff2990972e795e0, 0xbfd036be1bd200b8, + 0xbff8860d470190c3, 0xc0011e573374d0db, + 0x3ff4c9466fec853a, 0x3fe2d396950b7324, + 0x3fe8bcd13559a598, 0xbfeea3532695d38a, + 0xbffa38592f55d17a, 0xc003dadc182b617e, + 0xbfd2c4a96397ded0, 0xbff959c37ea05e14, + 0x3ff1609154f78409, 0x3ff6913b5f54f860, + 0x3ff58843c26351b4, 0x3fe8518d77eadd6c, + 0xc00aa5147880e8b7, 0xc011bd4fc9ed4053, + 0x400a9ae95d8b4ffe, 0xbfc55faf8bb273a1, + 0x3fd47e9e22ddfa15, 0xc0002e6d3ca0651f, + 0xc00c716354ec9a05, 0xbfd786dc7c3f1228, + 0xc001917f5bd88321, 0x401285002311d2b6, + 0xbffd9546ace98fd2, 0xbfeedb1c72d39bd8, + 0xbff28475f51d2f3f, 0x3fde6ded916722c8, + 0x3fe0f5cf8d27692e, 0xbfe3a73ef049d147, + 0xc006d501a8497e5d, 0x401c0c609cd512c4, + 0x3ff3256637c08cdf, 0xc006a6ce0f82c460, + 0x4002278b6281252b, 0xbfe2e14882110576, + 0x400c9ee42b084f29, 0xc0107dc2e6ed0c9c, + 0xbffd613dac38c7d5, 0xbff4e01cf022892b, + 0xbfe69140269c82a6, 0x400151bf49d6eb3c, + 0x4003d3540636c49e, 0xbfebe1efd15c48c5, + 0x40144f446b2b003d, 0xbfc39912daa0f320, + 0xbffaae6df719f124, 0xbfcb5a5e30fa596e, + 0x3fdfdab130432db7, 0xbfe68971cdceefeb, + 0x4012215a791da537, 0x3fe32e6c4bb9d65c, + 0x4017f6916d074ab7, 0x4007a11cea35de0c, + 0xbff87c148a36a2aa, 0x400245cf3ceb6a95, + 0xbffa1015d3ba21e9, 0x4016162a608bca6c, + 0xc010498562ef4461, 0xbfed538b9314cbcc, + 0x3ffa1403eff03924, 0x3ff0b99d50d9a73a, + 0xbff6154af25f7a6b, 0x3feaf3d28ae90d2e, + 0x3feecb30c10076f8, 0x3fe6389673d33f28, + 0xbfdf623b1a099907, 0xbff691ae934a3997, + 0x3fd9f469c0066bf4, 0x4010b857d374fd3d, + 0x40002e564a570422, 0x400c966d43cdf2ce, + 0xc005b124424c5776, 0xbff9bde88d86c55e, + 0xbfdf9824284ae89b, 0x40124edeac3fb0c8, + 0xbff61bae351c9bb4, 0xbfe5dad1754511dd, + 0xc013fd3dc6f226a6, 0xc000d53fc7e1bd9a, + 0x4009b8d3b353731c, 0xbffe37163b2f90e6, + 0xc0111f95a25ae1c2, 0xbff67c04a628d4de, + 0xc0098de5cdaec200, 0xbff42e5f53047e5d, + 0xbffc4138758a75d6, 0x4011c99e3766ed3f, + 0xbfe76d6cbbc58267, 0xbff69fc1f5a7c096, + 0x3ff7e418ce644369, 0x400ebe86992aa676, + 0xbff2025027e424b8, 0x3ff7b00d0cca005e, + 0xbfed34299c2687da, 0xc003f78b10a8b063, + 0x3fd82c8b3268a894, 0xbfc386deaba2ff26, + 0xbfd1f97915507618, 0xbfe7419d872c8de4, + 0x400cd9cc43b22272, 0xbff312a90e6ec812, + 0xc004106356af7a04, 0x3ffd1d58d13c7013, + 0x40019e270aca6521, 0xc00b131ee0dacf40, + 0xbffec1e51337e7e7, 0x400440af36d741dd, + 0xbff63f645d046bd6, 0xbffe8ae10c1e3f07, + 0x3ffed60d32599383, 0x3fb016b489eac3f0, + 0xc005bd17eb2bbcde, 0xc0110d56ede632b9, + 0x3ff21ede8863ec98, 0x40088e55b6a7c9af, + 0x4005463c5df413dd, 0x3fcfc69160be2e00, + 0x3ffe7bfc88801eee, 0xbfe49b1d317a484a, + 0xbff7562da5ab92a1, 0xc00a6e20d8634598, + 0x400121fce0217559, 0x3fed7504921205f2, + 0x40028e9a8f1093b4, 0xbff5e53764371588, + 0x400393dc9123655e, 0xbffc5d563cd0028c, + 0xc00e923f0fc18095, 0x3ff1c0dd464448f8, + 0x40136c3973119be2, 0xc01061e424a970c5, + 0x3fd324713b0d8f80, 0xbfcb5c222bd4257c, + 0x3ff42925712aa693, 0x400683aefcdafb0c, + 0x400e637e78b6bb1d, 0xbfdfa2caed1f9a66, + 0xc00e3d81f9df73e0, 0xc005f76add030a9d, + 0xc01078c3f03c2782, 0x400b12fe3279603a, + 0xc01175c4a66d4f65, 0xc000710291915ab4, + 0xc00064011024d7f6, 0x3fffee3654e221f9, + 0x3fe55223624acb36, 0xbfe979a8dd83cf7a, + 0x3fdf4b61d53787e9, 0x3ff6f887b8508858, + 0x3fb3be8e98466f55, 0x3fd277c76f0a6f3c, + 0xbff2fb7f44413632, 0xbff59c7e716fbd87, + 0xbfff05faf80a9515, 0xbff9f150a6e2c284, + 0xbfe39887c9c82f1f, 0xbff54f7bdff47b40, + 0x4007f7ab927c0e00, 0xbffccaf6801908c5, + 0xbff7074d8ea0de2a, 0xbffe6d781e5f60ca, + 0x3fc59d36eea855de, 0x4013665b915476a7, + 0x3ff1b341d9be0284, 0xbfe3040b346875f6, + 0x3fdb1f780e6f2526, 0xbfe2ae58a1f3d1f7, + 0xbfd01910f15bd7f4, 0xc00ee48871306948, + 0xc00385192420e098, 0xbfe00d3a4717df31, + 0xc00915796aef6f52, 0x3ffa7fbfa5aaf074, + 0x400a59800b66b31e, 0x401b1f41b85aee63, + 0x4006fbc28cf0a958, 0x400328e11f3adbe5, + 0x3fd6b3120f4a488e, 0x3ff4e0460732c136, + 0xbfd36a15a732f847, 0x4009c5071d8b44c9, + 0xbfd18d2a3d7ba862, 0x3fe5e2c0fa5ca861, + 0x3fbef9657b08e6a0, 0xbfedbb677ac8b5c8, + 0xbfd485b348c7ae92, 0xbfc4a22ecce8e540, + 0xbfe9da9628e4cf3e, 0xbfed5453eecc5fea, + 0x4007eb8adbe10fde, 0xbff692102643690c, + 0x4002bb61c9118dc5, 0x40008394a82a65ba, + 0x3ff42a014b20cde7, 0xbfcd6ee6a21de178, + 0xbfd2b415851a975c, 0x3fdfbe233b6941bc, + 0xc00373639f31a014, 0x3ff605da39b6c367, + 0x400408cbdc980eac, 0x3fe9e114f4aa08c8, + 0x3ff7994bc75149a1, 0xbfd8c41e9e21e71c, + 0xbff5a1037edcedee, 0x3fde39459f4cd642, + 0x4001997e96209ee4, 0xc00257e0b9745458, + 0xbfca5a6974fbd7c0, 0x3fe2b3877b40c8f2, + 0xbff90052d1c06282, 0x3fe46dcb2a2c5add, + 0x3fc1f23480c62930, 0x3ff01e3636e7ffdc, + 0x3ff4bf8823901302, 0xbfd30f699d07942a, + 0xc00519b3ede40072, 0xbffa5fa8a14f26c5, + 0x3ff98f470018f442, 0xc0065410aa6b23e5, + 0x400c5c963bbe3797, 0xbff28006a47c98cc, + 0x4000837389848d63, 0x400af2c6ca2cfe60, + 0xbfeeeffa85d6c96e, 0xc007077560cc3fb0, + 0xbff125e06289b1e0, 0x40025b920d64908b, + 0x4010ad56cd22f257, 0xbfe39681ac301a70, + 0xbff1a48743261400, 0x3feeadef178a2e0c, + 0xc00339661c617b5f, 0x3ff2923e8704a200, + 0xbfdc24e18e4f03a0, 0xbffd362a263ddb48, + 0x3ff1a1716a748ef0, 0xbfde02d7d70032a2, + 0xc00062dd84f34017, 0xbff4e5a338a68672, + 0x3fdc7aac73254d91, 0x400240451a5b6a79, + 0x3fea0e75db2cd402, 0x3ffbb2906367358d, + 0xbfed138b2591923e, 0xbfb973aed37dbc08, + 0x40059ebc14ba1869, 0x3fe35d99edacaa7a, + 0xc005909875bf73bf, 0xbff2b26a6283c927, + 0xbfecb1ed9da4c224, 0xc000abc8c51fe8aa, + 0xbff69f93c4e1fbb1, 0x4005b04e73682edc, + 0xbffeaec4f2f7f9a0, 0xbfd0613beb107246, + 0xbfd071c478fe3118, 0x40097a55c791e323, + 0xbfe1d7af853bc0e4, 0x3fc76882e37a6bd2, + 0x3ff60777268c6d93, 0xbfd110e38158ba60, + 0x3fd169b86a0c6a06, 0xc00416fefd2ad3dd, + 0xbfeaf59d06fa2a93, 0x3ff8a07afa0404af, + 0x3fe3432e9d905363, 0x3fca49cc028e5759, + 0x4012f4ffeb6217d7, 0x3ff24c045a001f55, + 0x4003a08e9f696244, 0x3ffb1d377261ea5b, + 0x3fe5ac92051563b7, 0xbfe1357084922bc8, + 0x3fe312f576fab892, 0x3ff9959614eada14, + 0xc0015572ca1d4831, 0xc00f4f4e61018b7a, + 0x40108f1a03d5209c, 0xbfefd89ed53d8b43, + 0xbfc7ba1b2ff76ee4, 0xbfed1bdf195a8c63, + 0xbff4d65b7b025807, 0xbff4275ea0bc0c98, + 0xbfef81be269a22da, 0xbfe3a8472037bcfc, + 0x3ff25ea00584c1c8, 0xbfe0fde5825d2964, + 0xc0002bbe0bb43b18, 0x3ff1c8d7fab1af34, + 0x3fffbe6768e89f2e, 0xbfb3e6a621a5ef1d, + 0x3fe228d02ae45faf, 0x40003ab6e975ae24, + 0x3fb9f001f007aae0, 0xbff4f5269608c6c4, + 0x40117083ead04c83, 0x3ffed49a9fe024b4, + 0xbff6c31e743cdbd2, 0x3feabc6235182ace, + 0x3ff153120f4fda2c, 0xbff442f2f13f7a1b, + 0xbff8ff28179a395c, 0xbfe7240118eec8cb, + 0xbffec8f7bb2ec4be, 0xc0080176387b50dc, + 0x3fed3ed6bc33ba90, 0x4006502776cd6f18, + 0xc00d3969d20037d6, 0xbfef60df3d9b101b, + 0x3feb59a0649c28a8, 0xbfdb3c83d3db408c, + 0x4003ee7e7e97388e, 0x3fc519b8a09a2b38, + 0x3fe8456d6bca762a, 0xbfaef25dd6abee90, + 0xbfec33c722e24e7c, 0xc018cd5fdf80254a, + 0xbfe3ada08108d8d6, 0x3fd1d8b44724fb58, + 0x3ffebd205e3ede37, 0x400b4c88e7e1496e, + 0xbf701365e3a9fbc0, 0x3ff0ed3d181c1b5c, + 0xbfe0852e56d9ca90, 0x4013fd5231bf231d, + 0x4006e6e0a929411a, 0x401306b3ca27fdbd, + 0xbfcaa41e025c8140, 0x3ff935c5d1f789c0, + 0xc0085a530dbb342b, 0xbff8263c97044fe4, + 0xbfd18becbc8b8144, 0xc00bd85bc8bdfa2e, + 0x4006ad3af2bf55bc, 0xc00f4738520d62a2, + 0x3ff3d9601e39b678, 0x3ff43c276ed4b72f, + 0xc007334301602e66, 0xbff90303114f93e5, + 0x40018f17f0695fd1, 0x4001c35f6113ff45, + 0x3fc1c491c9a93ee0, 0x3ffad158907647e4, + 0xc0030f71fe691adf, 0xbff16a76dede27c2, + 0x3fef15f84f583863, 0xc004b676172d2e5e, + 0xbff538e36fa9c461, 0x3fdfef0aecc8f5ac, + 0x3ff7d86f1dc11d38, 0x3ffc6bd77237cc05, + 0x3fd4d57fde904bd0, 0xc00aaf073819eeb6, + 0x3fe8dddcb3f389dc, 0xbfe46eef980cb63a, + 0xbff504d98bf45847, 0x4004db3635026a68, + 0x4005bcd15383c508, 0x3fe8ce6839939b0b, + 0x3ff5fa9526cf1ae0, 0x400d2f2ca3710ebe, + 0x40089b63b77d7d5b, 0x400c330ebfbf6ef0, + 0xbfe953b0c56429c6, 0x4007edf16bc5917e, + 0xc00ac1d4e3224ff9, 0x3fd5c1b0434f2af4, + 0xc00a1bbd55e8e11c, 0x3fe8d7ab61cfabba, + 0xbfe77408f7675f9f, 0xbfbff7f1a2bea290, + 0xc002b104d6f1f166, 0x3ff9ff9d188bf65f, + 0xbffeb78cbc375410, 0x3ff0b58b608b7039, + 0xbfd5923f52c5e1b0, 0x3ff73e9632fff540, + 0x3ff04b650ea8ab7f, 0x400766e084808139, + 0x3fea5eee414344d3, 0x3ff75eec27c3e76c, + 0xbfc2a4f596906730, 0xbff31963f8bac19e, + 0x3ff9e55709eaaf68, 0x3fee70b67e728908, + 0x3ff6104048660eb2, 0xbfe8e527cd1bd8eb, + 0xbfef8f9581a1d648, 0xbffffe6a4bcaace8, + 0xbfff71c434a4be2f, 0x400c16b8f324e7f4, + 0x400f305418009b88, 0xbfd87c9cb097dd18, + 0x3ff94c7f7d2fcb01, 0x3feb5aa3ab954a99, + 0xbfddcff185939426, 0x3fd94f6cb49b16f7, + 0x401899c4d8373c8f, 0xbfe3961b8e1d16d3, + 0xbfe4dd5dbac740ba, 0xbfded89774943452, + 0xc000c2f0bb28b5e9, 0x3f9582c18b3ef520, + 0xc005f40fa0fe6cc3, 0xc0005bc36b7af087, + 0x40188c35030cf893, 0xbff08e414ac09e55, + 0x3ff4c58c1ae450e0, 0x4011e1c6c1c37fc3, + 0x401572578e0119fd, 0x4015c9fff1fd896e, + 0xbfefae6422a04780, 0x3ffd664aa5f8c0bc, + 0xc009426c3b113726, 0xc0138acb2b4b5540, + 0xc006ea15cd7c3bf0, 0x40044c0543335b94, + 0xbfdf73379ab392ab, 0x3fe8f8199800aee8, + 0x3fe6c05b7158db18, 0xbfce2e349e1bafe4, + 0xbff0c9a299b59c45, 0xc0062ae98e15fe55, + 0xbff5f21df474d2fc, 0xbff963c19ef3ac8c, + 0xbff0c2f1d1353a77, 0xbff37ec0b9dad7a8, + 0xbff062493dbd4a16, 0x3fe9e2e9fc972268, + 0xbfff70ae7561e000, 0xc0062eaec04b0331, + 0x40101dc4b6539839, 0xbf9a2fb9237c9280, + 0xbffc0e54301ca17a, 0x3fc466e06b9c3b30, + 0x3fbbfa36d03116a0, 0xbfd971fb45a128be, + 0xc000ef6660a67f9c, 0xbfe41149d4a012cf, + 0x3ffda0c897f7478f, 0xbffd9272765c1f61, + 0xc00037dcdf23d1e3, 0xbfe3bdbbb35fa0d2, + 0xbffd23213fc4cc33, 0xbfdac6d84ebd4bdc, + 0xbfc5667b647c2cc2, 0xbfde70754b71669c, + 0xbff5cdc86f729b6f, 0x3fe545280baf1d00, + 0x3ff0cfd59a68636a, 0x3fd4de8f422cb7f4, + 0x3ff27cde0285a5b9, 0x400529e7e475d0ea, + 0xbff895a6e054219a, 0xc0116709b02028a5, + 0x40157932dfc636f6, 0xc00aa513ec109136, + 0xbff4804023c5f4c4, 0x3fbb4ce8d70c42c8, + 0x3ff9dcb438a88efe, 0xc001de3316da9ca1, + 0x40024e4f6622802c, 0x3ff6ed1e5b3099dc, + 0x3fbad3234960a960, 0x4005d38c728f842c, + 0x40079775d3648d06, 0x400004e3c2508b10, + 0x3fded032a11a6790, 0xbfe8fec59187f65c, + 0x3ff63851515d8f2b, 0x3ff5cd1f6df05f08, + 0xbfe3650e54cb9145, 0x3fe46df2e315729c, + 0x3fca9ed4136c1a9c, 0x3ff67d3896109d9e, + 0xbfd96cda29085382, 0x3ff8222607222104, + 0x3fd6ecf412352b31, 0xc0133a155e0d9f18, + 0x3fa9d62a60ed1900, 0xbfcce44bbbc5b720, + 0xbfffd545b31f8ff1, 0x3fd40ed2831d61b8, + 0xbfdbbaea80808224, 0x3fe3e2ef964511c0, + 0x3fdf69ec1cd6c7b8, 0x400a60ea23f1d1f9, + 0x400a1e1ec3fb749b, 0x4007b1dd8c1bd81c, + 0xbfeb9ae8a62c1628, 0x40042ba497961030, + 0xbfd976d9461480dc, 0xc0026a03e8a80a2a, + 0x4011a9ade1ba5c4a, 0xbff1b285d592b9cf, + 0x400255bbf47e2f32, 0xc001a6f77cc758d6, + 0x4006bec9f33a2372, 0x3fec28deed885ee2, + 0x3fdf0ddfee22e094, 0xbfe83b289f154ccb, + 0xbfe594b2301cc9ca, 0xbfdb650982c18b14, + 0x3ff8c0e96f82f67b, 0x3fd2d650903cc3c0, + 0x3fffc002d0bc09f2, 0x400cc16858413a8c, + 0x40020cfd6dcbd6f3, 0x3f90924a2b1a80a0, + 0xc0012b9556aaea6d, 0x3ff2149918b97c39, + 0x3fe22a838f664310, 0x3fffd66fbdc8dd8b, + 0xc0154e5da924e7fa, 0xc0062404356205fe, + 0xc00185f15dd78274, 0xbfde662a088c6214, + 0x3fe12924d4537700, 0x400380b7318f5c34, + 0x40162700a3d12695, 0x3ff60a2e74c7c608, + 0xc00cce20b85b87d3, 0x401192f2c3754690, + 0x4008c3ad134926e2, 0xbffde0fb93c71861, + 0x3f8c0b4ba145c380, 0xbfdcfba461329040, + 0xc00be4b3a08cc42d, 0xbff3eb3fe6ebfb8e, + 0x4005db2b0765c946, 0xc00d40902d3a1406, + 0xbfe86acd04e9a6a0, 0x3fe1f9bee158d9ce, + 0xc007992270240da6, 0x3ff6e56236b741ac, + 0x3ff89b7e2ac008ce, 0xc001f7fb682804ef, + 0xc00eed9c552f2e39, 0xc003b6ca5a6f4344, + 0xbfe275f9ae16933f, 0x3fd02613fb1f1198, + 0xbffa4109155abb22, 0x3feae9672a1b6cc6, + 0xc0130519534d0a76, 0x400348e752523f9a, + 0xc01065692fa519e4, 0x3fe3546b85503207, + 0xbffc71b1af25fb6a, 0x3ffbc3a1097f88df, + 0xbff27b02f694a4c7, 0xbf8987cc78544a00, + 0x4000fe09ce23e598, 0x4013a471c102561a, + 0xbfdba169ad9df87c, 0xc0037d1f3a77f8c5, + 0x3fd296ada2537eda, 0xbfee66b48c9f63bd, + 0x40101aa4ea471d98, 0x4006efe5fd1bf59a, + 0xbffa9854c1ce7e70, 0x3ff368d36b0b8447, + 0xc002d6cf848e7882, 0xbfee4425d1e9e140, + 0xbfe0770dd849774a, 0x3fd548cca01d5d34, + 0x3feb0571682f9a7a, 0x400757da22f98514, + 0x3fe50bfd0b7522a4, 0xc003a445423dac59, + 0xc00312663afd71b4, 0xbfda18dc0e230468, + 0xc0134528c8599ee8, 0xbfc973a9c65a7440, + 0xbfccfcdc86f57628, 0xbfd81661295040dc, + 0x3ffb14c7a1c88d6d, 0x40126367716c19cd, + 0x400338a644ccdf20, 0xc00073197e4a4a71, + 0xbfed4e5b2e75ca58, 0x3ff825e6f419d9fa, + 0x400ca2f715c9866d, 0x3fd4b9253f59aa19, + 0xbfab44afeeae9000, 0x40076243882388a0, + 0x3feb30e646434cc8, 0xc00c9534fc2460a6, + 0xbff7be3c8a5041d4, 0xc005836994008a4d, + 0xc001ce703d5a670a, 0x3fe0161db0103c22, + 0xbff792fa8aae0eae, 0x3fbdbbc9ab4d1410, + 0x40065940a4038e62, 0xbff7d3caeb6e5364, + 0x4008e077413cb05e, 0x3ff79e21ef268bc1, + 0xbff0bfd371da2539, 0x3fef2989ec71bd82, + 0x3fe864a8cc8c2e2c, 0xbfd69f1cae4a9b00, + 0xc018f62fe44a1a84, 0xbff521008a409759, + 0x3fe9c62780512be6, 0x4006165e3e4500e2, + 0x400770762a6cb84f, 0xbfb0c2026c09775c, + 0xbfd396a87a3a9898, 0x401346188367fa1d, + 0xc00657bddb2963eb, 0x3feb4eb74e7da409, + 0x40122773f7fe5ad3, 0x400f6492de81ac3a, + 0xbff0db70614f447a, 0x40178b494fcf6698, + 0xbfcf4c6f7386daf8, 0xbfbf5a725c7e5510, + 0x400794f61d0329d8, 0x3ffbe68b41fdb5f4, + 0xbfe36080c9af7dda, 0x3fe2c1e0a37a3920, + 0x3ff3b3d892c979fc, 0x3fd68f4d38104320, + 0x3ff95d4b0722549a, 0x400576af6feef700, + 0x4011de0eddb61e74, 0xbffdfd4c04ed8346, + 0x400c2e3c039b041e, 0x3ff752fcd9194d0a, + 0xbffc2a338cd02e48, 0xbfc765fb697d00ce, + 0xbfe992ed22174a0c, 0x40055f6af23d3380, + 0xbfe939dc0fb16d1e, 0x3fd5bdcfc1fdb4f8, + 0xc003be6188e9ba8e, 0xc016f5de9957310d, + 0x3fe600e335c9631d, 0x3faf8fcb64d6a510, + 0x3ff8b7ccf106b36e, 0x400468599360eccd, + 0xbff08f5077485c24, 0xbfb5108a0ac6f474, + 0xbff174d3efc47b73, 0x3ff5864c161898fa, + 0xc00aa1145ee1213e, 0xbffaec1589a38940, + 0xbfe89b31aac912c0, 0x3fd3146a826ea034, + 0x400aef9c3a55acdc, 0xc00d5825b4d9c8d1, + 0x4007fdd456b9bd3e, 0x3fddc2be13c39a46, + 0x3ff3f20848e6b9a5, 0xc010fcb7f9fe3522, + 0xbfe0d488edc4a17f, 0x4003e8b75e18104a, + 0xbff0224af2e35ce4, 0xc0075fc6e7f635c5, + 0x3ffdbf5d5a26e78a, 0xbfe1cb7d9f026042, + 0x40143716fb00a61c, 0xc00eb16ddc2ba211, + 0x3ff94d818e281f78, 0x3fd8dc941ffd92d6, + 0xc014730d9d13813c, 0xbfd60e9520ecb68e, + 0xbffc89cd936f553d, 0x3fdbece0129c3d48, + 0x3fd0bc4459e7eac1, 0xc004c5d70a81b888, + 0xc01295a4525a1e3a, 0xbff4bd3663c8939c, + 0xbffc6b3cf28a8900, 0x3ff1ae1fe8f5ff60, + 0xc00bea7af0a643c9, 0x3fe4a7ac250b9567, + 0xbfcc0e0573c5e628, 0x400cdde5834fd6e6, + 0x3ff393abbb497077, 0x3fe381cd7522eee6, + 0xbff64ecd32e70822, 0xbfef186eacd43f62, + 0xc00d66999b09ced4, 0x3fac30c5e845c990, + 0xc007944659ed5194, 0xbfed18e522bff15e, + 0x40110c75d78f8532, 0x3ffa80d9016c83c8, + 0xc005de68da691e86, 0xbfe892fbc538a5ec, + 0xc0067180e6bf4b15, 0x3fe642e2584cbb6e, + 0x40039f3d770621f4, 0x4008d744bb8b4fe8, + 0xbffb58a42c390c80, 0xbfbda521f733c380, + 0xbfd688daf05f29d8, 0xbfae0b8135289b40, + 0xc009da5adae018a2, 0xbffe285c18cb7078, + 0xbff1796ac9fd28e4, 0x400c66587924f43f, + 0xbff1765fecd58cb0, 0x3fecd950adec0aac, + 0x3fe166a003fdb07c, 0xbffb2bb88378317f, + 0xbfc3533277b7697c, 0xbfca9f0751c22160, + 0xbff39fe61549bc48, 0x400255ed141952ab, + 0x4005c3988a2d7b21, 0x3fe29963a1e13b2d, + 0xbff990b8393fb211, 0x3ff2c64dc37e3bca, + 0xbff05ce4e93e09af, 0xc006106340cbfe33, + 0x3fdbc43c3a613d2c, 0xbff919ab8e2f75b7, + 0x3fe4e429b2304cb6, 0xbffd815fc946195f, + 0x40103be2f1ab432c, 0xbffeb1cba91ae1b4, + 0xbfffb691a1546dca, 0xbfce70ae5eba5750, + 0x3fead5bae46e6d8c, 0xbfdda64d05ec16e8, + 0x40006d26aa5152df, 0xbff9f27b40e4562c, + 0x3ff8b3e0fbb3402a, 0xbfea64d96e84e0ca, + 0xbff202cc35ddd958, 0x4010eab0301fe51c, + 0xbfe7f8192c1734ce, 0x400b1e8795c2b39a, + 0xbfef021a3d238a12, 0x3fda6c473b37681e, + 0x3fe8e12b767bf842, 0x4004b50b0ca7456e, + 0xc00328bf58800cbe, 0xbfc44b75508876d8, + 0x40000b4c451f81ac, 0xc00cfe56683a55fc, + 0x3ff9862231fa10fa, 0xc00512a45624747a, + 0x3fd1678da0819142, 0xc001158cc88c1c25, + 0x3fd61e47885c224c, 0x40001df08db9024e, + 0x400a49089605c3ec, 0xbf894e998a0b2940, + 0x400ce79058d8753a, 0xbfead7e828b89dac, + 0xbfe41f2bcfc974dc, 0x40061be40e90e899, + 0x3ff3e2668f188efe, 0xbfe17cdb36391978, + 0x3fcdcdd293722bf0, 0xbff9dec168428180, + 0x3fbdc88956d5cc30, 0x3fe9544683056c25, + 0x3ffb651a24aee7be, 0x3fe632d918bd75a8, + 0xc00a1779ca7a784b, 0x3fe97f8a480b8076, + 0xbfd376958783c050, 0x3fdf21ab654f1840, + 0xbfebabc24ec613c8, 0x3fdd692adff8b0cc, + 0xc009dbd35f4b6e0f, 0xc0018c766be035a5, + 0x3fee4b372034bc54, 0xbff845d2489f6cd5, + 0x3febc5d5815ee6bc, 0xbfd5e4376cd6e1ba, + 0x400acbfdf015c2c0, 0xbff59afe89a332e7, + 0x3fd2946d24f8e5f8, 0x3fb07c28ccaa38b8, + 0x3ff32637441e7199, 0xc00a131ceb77e349, + 0x40054ac1dd6c465b, 0xbfe2fb4c25538c34, + 0xbff2747a7f961b8c, 0x3fd997af02d89388, + 0xbfdf8564837957b0, 0x40031c0074679830, + 0xbfd86edc5dbc35c4, 0xbffaa1b6504535b1, + 0x4004c5cda57c2f07, 0xbffb2c9059b92478, + 0xbfe6e5abf386038a, 0x4003f6d17c0cf102, + 0xbfeeb12048b9ea1a, 0x4002bf191021dcea, + 0x3feaf8fc0be582e8, 0xbfe6e48bb7714c3c, + 0x40016237af12db64, 0xc007fa7d7f3dd77a, + 0x400349717fe87d1d, 0x3fec210c550dfb00, + 0xbff12fb604398e29, 0xbfe2d4364ba70b0a, + 0x3fface88e040c1e8, 0xbfc0ae716fc79300, + 0xc0060b813742d34d, 0xc002a7204cb355ce, + 0xbfe260f0df22746b, 0x4010d5cb56d18c15, + 0x3ffc882fef25af35, 0xc00123657217b7ce, + 0x3fc917d341baa438, 0xbfe795c803953934, + 0xbffa2026f3be168c, 0xc001574ce77f8663, + 0xbfe947990d0c3380, 0x3fde70558c873270, + 0xbfefd9ecf25ccba0, 0xbfe2bf79f1770870, + 0x40040550cbdb6f8c, 0xbff07168cefb432c, + 0xbfded7ecdf1ee6ea, 0x3ff74532ae241b34, + 0x3fedca8b7e4b5bd5, 0xbfe6f2d1c9548776, + 0xbfd311766fe6d150, 0xc004eaab83edbbbc, + 0xbfee5ab8803eedc2, 0x3fc64be77bacba20, + 0x3fe8f24b8ad04ea7, 0x400cb646811d7ab6, + 0x40030e442dfb3168, 0xbff9c00ac02b064a, + 0xbffa2904f3674813, 0xbff1b2840999ed84, + 0xbfdb0cc3874c73c0, 0x3ff8c586a8cc48e6, + 0xbfe8b4091a09f548, 0x4006ab1bed0e7e0b, + 0xc01060e1c44b601a, 0x3fea3d6342dba2d8, + 0x400e2c66fe4d9e8f, 0xbfbcc0819ec16da0, + 0xbff5bc778b6bad16, 0xbfb0343d3dd92280, + 0xbfeaba8c4ec9472a, 0xbfe30090ea9c47ab, + 0xbfb5ac5c833a22f0, 0xbfe37c4a151fd603, + 0xc00c8333f4cddd6c, 0xbfd40db30a9ca24a, + 0x401181e64d32aa74, 0xbff93c7312e5652b, + 0xc00bb4213cb2aa63, 0x40057cb660f74d26, + 0x3fef5183538f2ad0, 0xbfdfc661ffa5c868, + 0x3fdaaa1bd8f2d9d4, 0xbfe317cd609d2237, + 0xbff78771440f70ba, 0xbff6886d673b8768, + 0xc015fd0d531533c6, 0x3fd1f8d40f75943d, + 0x3ff2adbd350c02f8, 0xbfe125900a8a2eb0, + 0xbff7cd4bec9ea8ec, 0xc00ec1b5fa92f6de, + 0x3ffe642934201840, 0x3ffefff650909755, + 0xbff968f9fe49a278, 0x3fea7bc4cd6b7ede, + 0x3fe0b75863c7fd04, 0x3fcbe82d32f7b15c, + 0xbfe0c6ed6d26f954, 0xbfe68e39a51a3514, + 0xbfeaf1d751433864, 0xc00293c579c9948e, + 0xbfd250321f9550b3, 0x3fe7cf0849df8d13, + 0xbfdf9af9025b93c0, 0x3fc6acdade5eb512, + 0xc0064f230b7fadc8, 0xc0115d46a01d1d1a, + 0x3fece99c0ed66ab6, 0x3ff4727fcb6c723c, + 0xbfef68a5180f81ca, 0x3ff9aef1b9ae3e16, + 0x3fbf1cffd32f8500, 0xc0013ecdedf0ec88, + 0xc000c53ea3c4aeef, 0xc012d389bb96b639, + 0xbfdc51a6386c048c, 0xc0081803d2ebea83, + 0x3ffb0c6697250484, 0xc00caee9e887aee1, + 0xbff6d097a0f4c002, 0x3fd47c73824e60ac, + 0xbfbf71214a21f728, 0x400a2c74fde1060e, + 0x400b67e102d91e5b, 0x3fce826bd81e21b6, + 0x3fe4d856c517efaa, 0x3ffbb0ec27080202, + 0xbfe6acec994b290c, 0x3fff9542df3fe9ed, + 0xbff3dc52cc2da680, 0xbff2152d9a408b55, + 0xc0008bc948fa8c8c, 0x3fef26440743db65, + 0xbffb063c44abd6c1, 0x3fc5fab2deac1800, + 0x3fdc05eb2021890a, 0xbfd3d7226c11e195, + 0x40019165361a30f0, 0x3fd350970049d3f4, + 0x3ffc27e1198bfa9f, 0x3fc1bf1cfe0e3890, + 0x3fdae4d4cdacadac, 0xbfd00e095302d426, + 0x401262adeddb3ae7, 0x3fe461cf1963e898, + 0x40008252fb4f5a50, 0x3fd2860f76260e24, + 0x40054bbe1f605beb, 0x3ff3639cf751b783, + 0x400da94f413a3c7b, 0xbfe28816857a3ced, + 0x3fc6361a2dee0b50, 0x3fe21f5d2df7eca6, + 0x40009def10099b83, 0xc00bfda7f5987d24, + 0xbfd81d75e29c1fc8, 0xc0048870a02984d2, + 0xc00e5b783795204b, 0x3ff6e7c68fa45994, + 0x3fb358aa20ff0b40, 0xbff318c58f762fe3, + 0xc00682dca352b64f, 0x3fda0ff711338611, + 0x3fe69cf70beab82a, 0x3fdf44d450ed7e9c, + 0x3ff9061704b3d73e, 0x3ff850e808cfa60e, + 0x4011082d85876b2b, 0x401314e85ab30c7a, + 0x4011da18d0b5fcf0, 0x4007eb8b749fce46, + 0xbfd7cc6b9fad5ef8, 0xbfff6fc4fde3ad86, + 0x3ff2074cc0b75e95, 0x3ffab004caea7310, + 0xbfb51b9f834a7a90, 0x400d1a2fd738e086, + 0xc0030de93906339d, 0x40031abcd7d3da06, + 0xbfffee5eac70ead2, 0xbff2f5a453028c0c, + 0x3fce86719a7a4648, 0x3fe09722f37856fe, + 0xc009fe74b5d8abef, 0x3feb666c145fbb08, + 0x3ff6a900026ae30f, 0x400917a5cc05f369, + 0xc0103202846078be, 0xbfe39dfd815e6504, + 0xbff39676ef578216, 0x3fe1461fd4149bf6, + 0xbfee583db6cd3174, 0x400a6d9e66c9b03f, + 0xbfe2e911adfc926f, 0xbff40fded65956ac, + 0x3feee6f7c705fc5f, 0xbfefc6bcfeeebd78, + 0xbfd2146b8a02da20, 0x40033ebdca0a448e, + 0xbff8a4a21496d606, 0x40016cc0b28bc970, + 0xc011171537a86e14, 0x3ff68df6849fabeb, + 0xbff243afd818a1f8, 0x4003e9d5ed831f96, + 0xc00ca691007d618d, 0x3fa1683e9a14c8c0, + 0xc007507c9712cef0, 0x3fca874d590ed410, + 0x4002f7b904de5d5a, 0x3fff9acad6fe632f, + 0xbff8c0f0e5489f06, 0x4016c872b1a26b32, + 0xbfe3ad6caa276047, 0x3ff394a8cb2107fc, + 0x4008fe106c07abce, 0x3fc276827c20e53c, + 0x3fe4e12d6878a0b2, 0xc00741914c778a08, + 0xbfff26459e1d4f0e, 0xbffdf44c8ce9e53e, + 0xbfe5538c81384f4c, 0xbff39655a3793226, + 0x3fcd80e7300dcaf8, 0xc00b533e8c6b4d9e, + 0xc01a0936793f9e64, 0xbffefc0f68265bde, + 0xc001d3e98ddb1ae5, 0xbffab95ecc57c970, + 0x3ff7d1bf43c7fa04, 0x3ff59b5ef83d85b0, + 0xc00417c262f7257a, 0x3fed14cf371a9e9e, + 0xbff0cfc3c33ccbd4, 0xc010a5ef8cb3a4b4, + 0xbff550a08a813158, 0xbffb3e53f4042eca, + 0xbfe58276e5705ff2, 0xc009a09365448dcf, + 0x3feb21cce8969b79, 0x3fefb8c61af73864, + 0x3ff70e65bdee4ae9, 0xc00efd2abd098028, + 0xc004d33a5f481304, 0x400adcff342bad22, + 0x40123d762575a99e, 0xc011f9b261e959ce, + 0x3fd502b0a43b07df, 0x3ff0e057ac044266, + 0x3ff58395d27c712d, 0x4006b549d72c2bdc, + 0xc0010187ad3aa7b4, 0x3ffb0fa414ced042, + 0x4003dcd5ab6f9654, 0x400ed4b835b2fc89, + 0x3fd2ea75f1d84a80, 0xc00374168909c467, + 0xc0021ee5b85064df, 0xbfd534c69c347964, + 0x3ff0c46e3662e9e6, 0x40043de481250172, + 0xbff29256518b0c7c, 0x400913d108b88c75, + 0x400b9885edb9b042, 0x3fea3822a7ad822e, + 0xbfb32e34b53ac660, 0xc0005408aeccfcef, + 0xbfc11baac1d41aac, 0xc006657989076336, + 0xc00fe9b18e151e5a, 0xbfe9346a810f5511, + 0xbfc261cc1d161e40, 0x3fe0950408e26113, + 0xbfd5963115cb3554, 0x3ff4447691f4e7e1, + 0x400eafd90f0b272e, 0x3ff25d1cece9fc72, + 0x3ffdf89b172f0152, 0xc001d9f8e2c89962, + 0x400cb410b7e66b08, 0xbfcb6a4804e40470, + 0x3fe3eaf291351834, 0x3fd496262010cf96, + 0xbff3500f3de10ce8, 0x4004802d92079a54, + 0xbffa56d2e59e38fc, 0xbff7367f4ceda442, + 0x400d7f211cbc4cb8, 0xbfbc9d27613cd726, + 0x3fef5e20e84b3019, 0x400e0538d8e43cc6, + 0x3ff61c9cc1d11777, 0x3fe7d064a927c923, + 0x3fbde463809fe610, 0x3fe25d779370542b, + 0x400600f052189149, 0xbfe19a1fdbce5885, + 0xbffd2d118a304179, 0xc0086508303ca470, + 0x400751d958e301f8, 0x3ff5a2f4fa2c1466, + 0x400670f3dfeb08e5, 0x3ff933e9503107ed, + 0xbfb143c414433168, 0x401118087a49d4ac, + 0x3fd98981cf7fdc00, 0x3f8702c4599aa220, + 0x3fdcb9e820ca0334, 0xbfdbe3b3af209755, + 0xbffa8675339ff7fa, 0x4005e07d2b8b236e, + 0xc00bdc62dc84179a, 0x3ffde044f7162cb5, + 0xc00523d737e4620d, 0xc0110833eb79bad0, + 0x4001d4aab36d53b1, 0x401169dcb5c03110, + 0xc00531fe3fa43e83, 0xbff6a389a7a02b96, + 0xc008a8cf5bfaba2f, 0xc003482f50677e96, + 0xbfe374a183d59a35, 0xc006d15585d128e8, + 0x400c6c4357240429, 0xc00387d49255f5a2, + 0xc00308c58a55a3de, 0xc01563001894db7b, + 0x3fe6102868dfd1c4, 0x3ff34b899f2d4515, + 0xbfe659278e2e0b2e, 0xc00a92dbdc237a52, + 0xbfe6469edbfb307e, 0xbfe8a74bb3f00e6c, + 0xbfc129a2648004ae, 0x3fd88d06956f5e26, + 0xbfb00b10cbd0dce8, 0xbff1854f8e97ccc5, + 0xbfd9ec37d8cae054, 0xc0043f3f3c192f2e, + 0x3fe83437fc29cada, 0x3fd77cadd6cfea9c, + 0x3ff1339964cb6efa, 0xbfd48b6fb13142f6, + 0x4013144613bd130d, 0xc0044f73e1277a5a, + 0xc00fa8f0fd6914e6, 0xc00c7350f1534ac7, + 0xc00afc0981fffea7, 0x40117989615baa2d, + 0xbfe5e137acdda46a, 0x4005799661977009, + 0xc014a6ba6697e287, 0x3ff44f6b6085a8b7, + 0x3fec2d982e3c29c2, 0x4008491e36ee9768, + 0xbfdc5fd54fe2a778, 0x4002e2b0780b43af, + 0xc002259ab3dbb5f0, 0x4000a4bfa7f13ad4, + 0xbff11e83df264c24, 0xbff745bf6a320c0d, + 0x400c1d522008c87f, 0x3ff7dd5bafbde318, + 0x4003625494b8588f, 0x40098c5d4b28d248, + 0xbffa62afa933c8ba, 0x3fd79878cb9d74f2, + 0x3ff953286eb7e693, 0x3fff8006318aec56, + 0x3fe3b5de5a0ff2a3, 0xc001e0055895db74, + 0x400721c51ff21a70, 0xbfc8727d32c35590, + 0xbfeba19c4473ee20, 0x3fd7cbbbed6da5a8, + 0x40010178fa15139e, 0x3fbbbcc1015fc7bc, + 0x3ffb6ab37b50e85a, 0x3ff1923049bf88c7, + 0x3ffd818adfd022a4, 0x3ff22aa60f187a66, + 0xbff0306133dfca64, 0xc000acd69eba4886, + 0x3fec586e5cbb6ab1, 0xc004511646b64659, + 0x3fe3b74783275cee, 0xc001e2a80564f1b5, + 0xc016767828a4d965, 0x3ff54946d6b6656e, + 0xbfde7b80685a2c98, 0x3fe92b28f114b45e, + 0xbfe3f0022ab8830c, 0x3ff684cbb3ebcf8f, + 0x4007bd834cf3970e, 0xbfff96f6dd8845cd, + 0xbffceca60d6ea935, 0x400434859193ab18, + 0xc013f41ba46f961f, 0x3fe0a4b82a2d649b, + 0x3ff9b74bd7960936, 0x4016dbec4b44d78e, + 0xc00581b901a72aaf, 0xc00d8827274a9366, + 0xbff61c197c16abe4, 0xbff392fac025b147, + 0x4000c9c4e657e0bf, 0x3ffb3f4d354af6ca, + 0xc00798a1966f5b12, 0x3fa4fe67ba068f80, + 0xc007896d6689aa87, 0x4001b423f5470b47, + 0x400839a5bb0311f4, 0xbfeffd6cc5c136a2, + 0x3fff93a039b67ca6, 0x3fd8c09e3db19240, + 0xbfc03d281c2c51a2, 0xbfe546e10442cc74, + 0x3ffe9cd65d928319, 0x3ff8b83668fcb8c2, + 0x3ff92338b2b0a54b, 0x3ffc514ad5190be3, + 0xbff8fd12893b27b3, 0x3ffc0a082f9a0aad, + 0xbfb83f5c5fcc2e60, 0x3fd9aafe684b15a4, + 0xbff1ce844c4b619a, 0x400496f66757416e, + 0xbfc872cdc116b79c, 0xbff056e0157bb1ad, + 0xc0056ff1ad19a805, 0xbff20fd02882c5c0, + 0x4000734ff8bf32d6, 0x3ff8cab4e9549c84, + 0xbfee814da823d3ed, 0xbfb35e702cacd234, + 0x3fdd57f381d91933, 0xc007dfa494915317, + 0x4006505d21e35911, 0xbfffe109d0f28c5c, + 0xc0048ec26e46a947, 0x40002b5d2cbcdd7e, + 0xbfebe85f0e99ae18, 0x3ffee452886a0348, + 0x3fc4a8ccddeb1120, 0x3fe6c04f6d584616, + 0x3fd6700790e1858e, 0xc01c0da74ec2623c, + 0xbf8934373c573ac0, 0x40052dc67836d274, + 0x3fe7375ea6d6772c, 0xbff2e6daf4eee353, + 0x3fcd299a4269d40c, 0xc005b43bde8d3bee, + 0x3feec745e63a1788, 0x3ff4ddd8c6eece6e, + 0xbfe8d739a40b4c26, 0xbfd86e4d662bd710, + 0x3ff23da231c340ce, 0x3ff7a66eec78b5b0, + 0xc00eb3cc266b2bbd, 0x3fb142e288b133a0, + 0xbff23078eabe1a76, 0x3fb1c0e8ef291a10, + 0xc012333cf3bb4a43, 0x3ffbf4ed8ccf5ef8, + 0x4009b25c8991d869, 0xbff2272a001c7d4a, + 0x3fffb84b9b28c0ff, 0x3ff7aabc5fc3a208, + 0xc01196d22b203ac8, 0x3feba21ef1d5bd2e, + 0x3ff16182948936de, 0x3fe3ab1ae4f48045, + 0xbfeed460b2bf3e48, 0x4000d65ef745d4ad, + 0x3ffc8b2660962286, 0x3fed0d418958cb50, + 0xc00a7b3896c8cb19, 0x400c6a60c793320c, + 0xc00d9fa2757635aa, 0x400ad707f603dff6, + 0x3fc101dd8c78e7f0, 0x4000c78df5a74c18, + 0x4002ade2dfd0cdf7, 0x4010e4da161c874a, + 0x3ff0f89a4dd79670, 0xc0033cfcd114c270, + 0x3ff2ec86aaf8384e, 0x3ff2b4774898010f, + 0xbfd45f7e0e0018e8, 0xbfe73772f0db9948, + 0x3fe96ee06a17c958, 0x400e5e7438de8d43, + 0xbfc9f5b60a9cad48, 0x3feda541640b4545, + 0x3f9b4fdbc95238c0, 0xbfe6c1ee285c9ed6, + 0x40105604da3ee594, 0x4008d5311cd9ed10, + 0x3fe59fd5a7760a60, 0xc006a1237807911a, + 0xbffc84d90adef51d, 0xbfd3b81c8c6a147d, + 0xbfad04bafbf355c0, 0xc00118c34a14a0f6, + 0x4006e9aa969003ff, 0x40007049c39f002c, + 0x401e090415e0badd, 0x3ff4607eb24e4e80, + 0xc011552a0c20b42b, 0xbfa6f5f8f86a72a8, + 0x3ffddbf4872e5536, 0x4008c2e192304098, + 0xbfeb16a191778048, 0x3fc3b15aafac932c, + 0x40026372d81227fa, 0x400294c21316eee9, + 0x400661fde12c1ab4, 0x3fc4f144f07d83e4, + 0xc01093023c99a033, 0xc0101c99650278a4, + 0xc011860f09815a8a, 0x3ffb150f3cbd630f, + 0x400d0c59b58f9058, 0x3fd3803002b3b19c, + 0x3ff8365c46ca2069, 0xbff30b3d6488968f, + 0x4000566e23ea4d23, 0xc000aa6a35ec0cc5, + 0x4002a86611911d30, 0xbfd0003e6cf1ea4c, + 0x400c58ee212f004b, 0xbffb556e8125003c, + 0x3fede08bf4bbc214, 0xbff8101f3a229995, + 0x3ffd467a09d9d9ec, 0x3fef6b73121f9522, + 0x400d0b8356c5081f, 0xbff11c53896d9a7a, + 0x4013fb2dcf5f0f60, 0xbffcdbe1dd1c673f, + 0x4006eb8d9ccdf3ee, 0x3fd3a4f3f97ec88c, + 0xc00bff21476d3974, 0x3fe9e3e818066a83, + 0x3fee6fe6b8497b1e, 0xbfbf066802d1d6b0, + 0xc009287856df0294, 0xbfa0f262371c8240, + 0xbfcd31fa30e2ccb8, 0xbff685a7550e58fb, + 0x3fe6b09afbc82b26, 0xbfc53613bd8c07f8, + 0x400b55be658f63e8, 0x3ff7e64bbe550090, + 0x3ff5777d11bb6568, 0xbfc1d79f293f1734, + 0x3ff3273958941fee, 0x3ff348c133067f33, + 0xbffd8d2b5bbe08cc, 0xc0067df0e9a8f2fd, + 0x3ffb9e7d30602d83, 0x400237d4b9bd6f82, + 0xc00211817c95dee8, 0x40018295b5b82580, + 0xc001136394b40630, 0xbfd0cfec3751849c, + 0xc008e317a4e14d3a, 0x3fe698cce2d5b4c4, + 0x3fde5ec025e3ee88, 0x3fde23a6a8db0244, + 0x3fe47ab4e2a5110a, 0x40052efc21fd236d, + 0xbff0ce197010840e, 0xbfbbe6f7acc5cc90, + 0xc00e662b360eab3a, 0xbff1e5968b67048e, + 0xc0065bd580db9874, 0xbff94de48d0b6054, + 0x400d59ad427039e4, 0xbfe5829266c04a0b, + 0x4001527d74371a89, 0xc0042d53ac71f64a, + 0x3fe140d4ae9ae50a, 0x3ffa16151655b1ab, + 0xbfe27ef639e44f8b, 0xc000b7964f966477, + 0x400a61421f2085ed, 0x4002dcf540616732, + 0xbfb2db941e55fc20, 0xbff9370c77daef60, + 0x3ff04f509ecdec6e, 0x3ff6a4ac85b975be, + 0xbfe3a85bc63a426f, 0x3fa22ba2d5b86160, + 0x3ff15007b8a25685, 0xbfdf0929db334f91, + 0xc001eca93ce0cdde, 0x3ff4eefd98e08fe1, + 0xc00066201c9316f3, 0xbffe0c9b367d0c5c, + 0x40041966ec4e85b2, 0x3fcef9b7d74c55be, + 0x3fc120bc789fc96c, 0xc0163a4cdd756a59, + 0xbfd07c4858d1c3f4, 0x401703d8439beb21, + 0x40012b27d14e0610, 0x3fe195f1565dfd0e, + 0x3ff957c922e64ec6, 0x400b0eccf5550e76, + 0x40099685e7884f73, 0x3ff0511b0e373770, + 0x3fbba373cfcde738, 0xbfc161679ec23d08, + 0x3fd3504e781737b2, 0x3fa57da595021530, + 0xbfcbdb9165cdf03c, 0x400b76e6e8bd9b36, + 0x40011d33fc953e4e, 0x4006b728ba50f61e, + 0x3ffd640bc91e9a40, 0x3fe01a220f847b79, + 0xbfd31c31a8c9eeac, 0x3ff1f05c54642df4, + 0xbff05b7ba06b1ece, 0xc0069fbe9ae6a0d8, + 0x3fb05d6c75fd8370, 0x4001470bf93731a2, + 0x3ff9a0351016ded6, 0x3ff2cdc0a89cb234, + 0xbfc5b98f3a5d6cf8, 0xbfebe8124441853a, + 0xbfefc767d97f271a, 0x400667604c24a2a3, + 0xc011108b07de9cdd, 0x3ffe162a8baa2a39, + 0xbffbb6b9da4dd9fa, 0xbffb4161baddf6e0, + 0xc0066332b37b4778, 0xbff8ccf238ed16e3, + 0xbff0174c258b45a1, 0xc00d0455e32238a0, + 0xbfd9a8207f95626a, 0xbff536d74285d51c, + 0xc003c6cc86421bda, 0xc0068a743c2a96b5, + 0x3ffd0c855979fa44, 0xbfe0914cb8bc1e13, + 0xbff8183808fc2b40, 0xc0020f2a21b1938c, + 0xc00e296a0ad8b308, 0x3fb214f923961318, + 0x40034912b1f8750d, 0x3fa3b40bb4902a80, + 0x4004377fb010481d, 0xbfeffb9154ceae49, + 0x3fe165eca9e20080, 0xbfe551a2112d6a9d, + 0xbff653b7f4258934, 0xc0065c4ce5b23e01, + 0x4002d910697fbe02, 0xbfc6cd2aad6c9590, + 0xbfc794a0b5ae1772, 0xc00b434fcd16b573, + 0x3fe9de47a2f01453, 0x3fad5d90cae9f438, + 0x3ff4d842437b4e3d, 0xbffd47d75b700d4c, + 0x4010222e8844f60d, 0xc00b7b46625663d3, + 0x3ffe4f52dbd4b090, 0xc000c52a12727cfa, + 0xc0098b3911ad6cbe, 0xbff6c15b74babd5a, + 0xbfef23b4715bbbea, 0xbff2c5dff87490cf, + 0x4008cfa5a2068909, 0xc002124495d32c0b, + 0x4003a0fb7b61eb20, 0xbff5381d1b24c6ba, + 0xc005cd8a695904d4, 0x3fe0fadd24adfb54, + 0xbfd6764d47f47d80, 0x3fea2fbfb7cd220c, + 0xbffee82e67e7264a, 0x401306d11bd11afe, + 0xbfdb093056fecd7c, 0xbfee092354729632, + 0x4015a2c336c3883a, 0x3fe77b2324f5234e, + 0x4005d10cc446f801, 0x4011c209e7afa220, + 0x400432ae89401f8e, 0xc00f253e180f6a68, + 0xc001429bc609ceb4, 0xbfa46576d5e9c000, + 0xc00a8623248b29a2, 0xc010a3ce6ef58c16, + 0xbff56e0a207c8fe1, 0x4013f70cdc7ae14d, + 0x4013ab054c100e29, 0x3ff610da0d951166, + 0xc00c11d78d6ddc52, 0x3fe48f44e7d5e61d, + 0xc012002eab11af74, 0xc000d6cc0065b6db, + 0xc00b6d832ab65162, 0xbfe50ab1c449415c, + 0x3ff4bacdcf602e96, 0xbff013ac191b3a90, + 0x3fd7949aa81cf29c, 0x400eb0b630a25b4a, + 0xbfe41095e2c8a47e, 0x3fdc5c8bda9bc0d7, + 0x3fcb2ab26d2f3cb8, 0xbffa9f56ee83e331, + 0x400df03f153d89f6, 0x3ff86c4976717343, + 0x3fd526ba8f4177a4, 0xc0006748be8679e7, + 0xbfbe7afe5c37fd70, 0xbff27a354b00f072, + 0xc0096bada1b8664b, 0x3ff3274feacf3db9, + 0x3f9795243a087c40, 0xbfd10f167c31cdaf, + 0xc000fd7c18b92642, 0xc00874e7b3e9daca, + 0x400a4f88a59c715f, 0xbffac219274bb8a0, + 0x3ff9118f5bf418f7, 0x400c8a5702e09384, + 0xbfecd3eddf162480, 0xbffc707c7f5afed8, + 0x3ff9db21c3751b14, 0x3fd161d137503b0c, + 0xbff7109b27e43f65, 0x4010cacc29e6d7ad, + 0xc007c33255de1298, 0x3fb0a9efba7a6918, + 0xbfed499d2f3f100a, 0xbfd55af2eac0db34, + 0x3ff16c96ddbcbefe, 0x3fab9985ab1d8240, + 0x3fc1d5e6778034b8, 0x3ff588e4a0acaa1e, + 0x3ff1aea34b0e1d22, 0xbfeeb895bf141df6, + 0x3fe280458a26b9bb, 0xc0039e2205bd7e87, + 0x3ff4663021c653be, 0xbff19a911396f6e5, + 0xbff4c8a34e4c9334, 0xbfe5b3d26b3c2208, + 0xc0029db027a5b894, 0x3fd64dcbd159da90, + 0x400b2d0afc4f5379, 0xbfe9c83283c6b9f9, + 0xbffb61974c560aca, 0xc0080ea82e7e39c6, + 0xc00432f721f1d28e, 0xbfe04c6d061c6a68, + 0xbfe2cc352dce3814, 0x401213ca3c5cd8af, + 0xc004239ce7900386, 0xc00d0e474dd63b5e, + 0xbfd2d2b350ddf820, 0x400b55e9b4501b7f, + 0x4009f4f4e662750b, 0xc00cee79aefc20b9, + 0xc0027737e8ba9b86, 0xbff36287d1a5cfb6, + 0x3fffdeb28ce5c9f6, 0x3ffbfd38f5564a74, + 0xbfeaa7014cfa97d2, 0xc000d605aca8bfea, + 0x3fff81515363ec61, 0x3ffdcc83dda6b04c, + 0x3ff7da166dd4564f, 0x4004d6d458b02ebc, + 0xc004487fff564b28, 0x3ff84e8c76f642b5, + 0xc003dac5e6c1b286, 0xbfd84b8b350dfdd4, + 0xc00a67f868fb14a3, 0x40122d9d17904a8d, + 0xbffa7e38d009d4b6, 0xbfd64e2941c3e313, + 0x3ff50d5031bd6f22, 0x3fca849505bb2e10, + 0x3fdefbb9e49a063f, 0xbff6e34bbb8bbf17, + 0x40042b9fa99e3d6e, 0x3fe78194e271a116, + 0x3ff5369b5b936a6e, 0x400f9d997134a371, + 0xc00427a8aef1874a, 0xbfd7d8edbd9f2c24, + 0x40048066c1cb929c, 0xc0017821b6b69388, + 0x40118a8078d17271, 0x3ffd6d73065185d4, + 0xbff2e7aeed1741a3, 0xc0044d646c71937c, + 0x3ffb6c98430879a9, 0xbfaedebb35073c30, + 0xbfff3d9487b568f4, 0x40015734908ca0ec, + 0xbffb0eda8d3f1510, 0x3fea26617f503ca4, + 0x401038c1ea420896, 0xbfc8e74c99276063, + 0x3fcec2d785bf4d66, 0x400fd5ad1d967abc, + 0x4002d7fb5bdbedc2, 0x4000420c869a6742, + 0xbfee3802eeb4bcee, 0xbfdb7304b08984f8, + 0x400b0de45916fc2c, 0x3fd987cfd618be08, + 0x3fb926dc3c2e3c59, 0xc010fc7308a397ff, + 0x3ffdd6a78bc61bb2, 0xbff8f5b1718f102a, + 0x3fe9b2532b4992a3, 0x400148e439112121, + 0x3ffa1b3e54818cf5, 0x3ff582983b52c5b0, + 0x3ff5bdcaeb6a47cc, 0x4010b442c7624d7f, + 0x3fe1eaf713d13658, 0xbff5694cb38b30da, + 0x40010a78cfa19a3c, 0x40044a3acc357d51, + 0xbfd37e8bdeb038dc, 0x400860962e7e0af4, + 0x4016b36fa27b1b4b, 0x3fea5553c8dd47c2, + 0xc00aace67c395bd8, 0xc00b56ee80c9ad5e, + 0xbfd489be1e1be103, 0xc0092c4f25b37e0c, + 0x3fe2f65595c35d9a, 0x4002612ad4320c6c, + 0x40047da7365e8986, 0xbfeabb388ada6fa4, + 0x3f84bf9ef6131680, 0xc009383586563806, + 0xbffafeab0df3b58f, 0xbfea31ccfb2e4764, + 0xc01d48e9ad3e7156, 0xbff54643dfa2333c, + 0x40084b7e2dd80a87, 0xc0049a7342a2e36a, + 0x400f9091771e25dc, 0xbfe835192a500420, + 0x3fd5f05db0dd2c94, 0x3fdec772f7baa960, + 0xbffe0e32d0bc55f8, 0x3ff3692135c7d7d0, + 0xbfd88e8a802d33c4, 0xc012a538b66355a7, + 0x4007038687085b92, 0xbff8ddc6bf88d1cd, + 0xbff38f7edfa481aa, 0x3fea8f7c283095a4, + 0x4000e9200027e4a4, 0x3fdb0d0ebb27da28, + 0xbff35ad8d7fe6523, 0xbfd26d99c223f8a2, + 0x3ff15e588bce7ebc, 0x40022fa9724ab04c, + 0x4010cba72bd1c384, 0x40010ad2b60568e6, + 0xc0018a5f5e2594bc, 0x3fff0869a5b0070c, + 0x400419b74c502462, 0xc00a023ca3f148a1, + 0x3ff34298e275f27f, 0xc002f74bf13a0f6c, + 0x3ff06a9047f172b6, 0xbfed8c94117fa6df, + 0x400977951435fcfa, 0x4013d8d7b2903132, + 0x3fe4773bf90f0544, 0xbfb7ad3456de1c00, + 0x3ff1e038010ae37a, 0x3ffaf4b153277a20, + 0xbff1fd2e4105a7e4, 0x3ff3fe198ef1ef5b, + 0xc00ae5a4bda7791e, 0x3fea67ec92242282, + 0xbffaedb2135d4a7a, 0x3fd08c6588067194, + 0xbfe77712a4d09352, 0x40050b5ec8c91340, + 0x3ff7af922becbce4, 0xbff1bb27a482979f, + 0x3fe117dc992149f6, 0xbffcdedef8db59e5, + 0x3ff57d188ef0fe23, 0xc00c7561d720b75f, + 0xbff19dc04f92d762, 0xbfe4489855da2e7a, + 0x3fd96e6d28ed72df, 0xbff107809d105121, + 0xc00ab1b71a6a8df0, 0xc0099ac8c8a414a7, + 0x3ff8e9bf65022d14, 0xc00306781ffb54e0, + 0x3ff4b81236836e8e, 0xc00ae3360346a727, + 0x3ffb110f41302846, 0xbfcb6541c263fb51, + 0xbfdf9ec6f1104888, 0x3fd6341a46aa05f0, + 0x4011c9cc9aae1371, 0x400313b464ed59c8, + 0xc00aad25b92d8db8, 0xc007fcff04d423e2, + 0x40003519f03b0293, 0xbfec3d817aa69c66, + 0xbfcb254efb962c00, 0x400ff1b3592a8f86, + 0xbff65afa9e04785c, 0xbfe0b0f9d109024b, + 0x400b67ad34f5bb0f, 0x3ff48adf1993c4dd, + 0x3fe0680150182ac7, 0xbfe47859de59bd9e, + 0x4009c306096a13cc, 0xbff6f2ebb72c8aec, + 0x400af04bcbdf21ef, 0xc000b433a60db523, + 0xc00f6f1feedbdf65, 0x3ff861bd55aecfd9, + 0xbff535af1b2536b3, 0xc01381e1460982e8, + 0xbff512eb23f2ae30, 0x4004978e2fce84f6, + 0xbfc3394320d96b3e, 0x4003353f72c4aefb, + 0x3fd7122c039c49ce, 0x3fd8fb71aa725888, + 0x4000a18b56ad43e2, 0xc0054d972a5a9496, + 0x400187ce39bf0c8f, 0x3ffcea352844f772, + 0x4013e4745b788a1a, 0xbff8c2b57468c7a4, + 0xbfd9039db4449ea4, 0xc011131acd7dc2ce, + 0x3fe7ca1aa194a0d0, 0xbff29f65be398c65, + 0x3fb631ac13a03fb8, 0xbff2ac934f6cc16b, + 0xbffec020cd95d6ea, 0xbfc43899c8bc10e8, + 0x400398da5cd7febd, 0xbffe4375b4dd8982, + 0x3ffcf82c10fb3c38, 0x3fefca3b554a050d, + 0x3fdf7954c0f4fbd8, 0x400a5bf096141e51, + 0xbfe3ca0f6b1a6e82, 0x3fecdda9889309b0, + 0x4000ee9689694bc0, 0xbfeb818be1bc587c, + 0x400ce2c92a6bf2c9, 0xbfb2016c9332b690, + 0x3fe0fe2b097ad6ac, 0xbfc3a641222a55b8, + 0x3fc2bcfedae25f8b, 0x400f808ace6289cc, + 0x3f99fd3f98bffde0, 0xbffc2df9c2a7bf86, + 0xbfd364c900278f0a, 0x3fee5f9374c42a22, + 0xc012fbb20ab174f4, 0x4005ee87bb1138d7, + 0x3ff4dac6889e5d5d, 0xc00692b2f81afae0, + 0x4005a8a489318c4e, 0xbfc72184a33550da, + 0x4002490fb4721c78, 0x3fd41695e5b421c6, + 0x40011f18e5cca4ec, 0x3fa4b1a1b0eba668, + 0x3ff756e60d4c754e, 0xbfe1cc2db873404b, + 0x400543939ad4a794, 0xc002597f9d4076f4, + 0x3fa2972675ca0c40, 0xbff00cd7211f8f04, + 0x4009b7ec844d4938, 0x40142d0ec5095cac, + 0xbfcd3ac899124e20, 0x400b527b9dfa8220, + 0x3ff4d630f30203f3, 0x3faad5331093de00, + 0xc00fddd42ce18c42, 0x40038512e681a3b7, + 0x4007fecc7e4c9e66, 0x3fa494cc37a02978, + 0xbfd8a9279980ba60, 0xbfe2d8ddd8793f66, + 0x40011f73f0e3d0ba, 0xbffefbe6e86a067e, + 0x3f7f5d79f8b1e680, 0xc006dd0f5d1da222, + 0xc0036b416398afe6, 0xc005ebe1cf6ca735, + 0xbff61155a88cc242, 0xbfef33677c5cf0ca, + 0x3fcf0e3eb9e4acc4, 0xc0092132a23bf990, + 0x3ff356790581a2b1, 0xc00204fd20341630, + 0xbff21e5aa421ecbe, 0xbff4327f47eb879b, + 0xbff7115c188d374a, 0xc011583efdeb3584, + 0x40118ec212b73b6d, 0xbfe611fe3582bf8c, + 0x4010197c215b4604, 0x401007ea595745a4, + 0xc003df32dcc8ff60, 0xbfff17f94d3467ae, + 0xbfe42a6db5ee42a3, 0xbfdd2cbad64ff064, + 0x3ff92dadaae1d04f, 0x3ffab6470c8a903c, + 0x4002612e68e4e48f, 0xbff8ff6f8ce94810, + 0xbffa382d59caeaf6, 0x3ff594207a1353cc, + 0xbfd58d60d03f7e3e, 0x4010c6eb7b45ee3e, + 0x3ffe1b1a9dc83e89, 0x3ff32360d61721b2, + 0xc008d40e64a4d893, 0xbff727f74d952bc8, + 0x3ffb6f69348794f2, 0xbffff2437ff5dacb, + 0x4007e98e63b140b6, 0x401194a0fa0a2455, + 0xc001308e4c12d5d7, 0xc001bf34e2dba740, + 0xbff462435d6cb086, 0xbfd6461f4016a66d, + 0xc00123c13e5c647e, 0x40047afca5d54580, + 0x4012e5144c2c870f, 0xbfe5cbda5a092988, + 0x3ff36f13f124871e, 0x3fe064bdcfe55941, + 0xbfe06b97866eaeb0, 0x4001dfdf165aebc1, + 0x3fefb090bbbcbbf8, 0x401f9808272a32ec, + 0xbff30eeab734f782, 0x3ff855c84454b1c7, + 0x3fefa2db81d98acc, 0xbff72b8611d00dbb, + 0xc000af06ec14ebb2, 0xbfe21223d0dbeb96, + 0xbffc807c9addea38, 0xbfe8e73796d87946, + 0x400ae9161da16e77, 0x3fb1a66e5c061ba0, + 0xbff3d156a6147b89, 0x4006aecacf38ca15, + 0x3fdafc2b9c0c1180, 0x4011faa7cabfd808, + 0xc008f7bfb0e04b30, 0x400b1c54b908ddda, + 0xc0008c11724fc6f3, 0x3fedd71e959e37f6, + 0x400bef8a2b20297a, 0xbfebdbfdb23a54d2, + 0xbfde2c7dba5a8150, 0xc017698ac4a32346, + 0xc0048816a21bda7a, 0xbfde7a064d854651, + 0xc00e00b6506ab40d, 0x400088b52f2ff715, + 0xc005101c036512cc, 0x3fd7b8464badae50, + 0xc00e6ece20b88461, 0xbfd2d5a53c15f148, + 0xbfedf21d9eece309, 0xc008232a123daf2a, + 0xbfe684380b838234, 0x4008a634d29942be, + 0x3ffb7080ed494294, 0xbfe6ab569a5ba392, + 0xbff784db955ac85c, 0x3ffbd6d55042bd8f, + 0xbffe8fa0c526705e, 0xbfc0444714b294e8, + 0x3fd2954a1257d320, 0xc00a94d87f1a15b6, + 0x3fe5328912e18088, 0x3ffd21017f4ad21c, + 0xc00063f74eeaff39, 0xbfda515e9aee3b88, + 0x3ff8ab55cf50bb36, 0xbff55daaa2a627ca, + 0xc00115cf5ef59435, 0x3fd280c7bb5b2727, + 0xbffb1bd2988fb3fe, 0xbff0bc78509ab8e2, + 0x3fbb52a15fe77b08, 0x4013317b56434feb, + 0xc005ef11836a3f3c, 0xbff2d50b54648498, + 0xc001fd61ff5a501c, 0xbfb82a8897a6bbc0, + 0x400b3743f9ef837f, 0x3fdf7f27485a4100, + 0xc00fb9a909f78524, 0xbfaaafb0e30da9c0, + 0xbffd508129f39c88, 0x3fe73f0fac871850, + 0xc003d84debc0cb90, 0xbff3cffb02b28632, + 0x40094df004c84cdf, 0xbfde3946294431d9, + 0x3fef3b611d1e41da, 0xbffbaa1b2635031d, + 0x4012905ea4876b60, 0xbfff59591e3cf4bd, + 0x3ff6a10a29e36962, 0x40083c8d45da37f6, + 0x40126007958f74e5, 0xbffc96e3dfae26fc, + 0xc00c861f7db45694, 0x40090445fb24bd11, + 0x3ffc1f9476a37c92, 0xbfeba264a36c0e9a, + 0x3ff3b03ba16571c2, 0x3ffd7392b427c6e2, + 0x3fe7e28a43eac37b, 0x4009d67552c4c04e, + 0x3fff2d542a60cbde, 0xbffafac172855bd8, + 0xc001fb4ae4039426, 0x40052bcd69c52e42, + 0x3ff2974ad98ff962, 0xbff5579281b29d64, + 0x3ff0e7571cf31d54, 0x3fbac0d36f1e9c5e, + 0xbfc5f3dd89876ebc, 0xbfe02ddb01d79f04, + 0xbfcaef406d6c6498, 0x3ff3fca7ed4fea2c, + 0x400c3920b97d656d, 0xbff213b542c9bd14, + 0xc0008ce19fb369ac, 0x40028b8eae0f1de0, + 0xc01230cfba3b9878, 0xbff23db3011b1468, + 0x40180c587c0cd14e, 0xbfcee57808c27fc0, + 0xc00ba6ed5841929e, 0x40169bed26288c1d, + 0xc012eadad5f3080a, 0xbfe9c8f00f99f573, + 0xc0102a974abd90aa, 0xbfdc17e5bb23998d, + 0xc0012c386c0dcaa0, 0xbfe0b174cc71be80, + 0x3ffc6ae8c430b8df, 0x3fcf00d9fa581d8c, + 0xbff368a5d0eea316, 0xc008f50a758f61bc, + 0x3ff74cc5864491dc, 0x400ad8c92808ef23, + 0xc0003897641c65a6, 0x3fcb73f4d5aff038, + 0x3fed1cfd553c47ab, 0xbff7e6ff12153890, + 0x3fe4273c4fd8b8eb, 0xc0112ed6531d0c3a, + 0x4007cf6670eb03d2, 0xbff1ca1f297fc486, + 0xc002600442d1b8d7, 0xbfeda232e86eea4d, + 0xc0077ed5bdd2944b, 0xbffee69448422daf, + 0xc0085b9c72ab93e3, 0x3fca7b479334bb6a, + 0x4000fc4626af96a2, 0xbff01a85958e1502, + 0x3ff5106e0d8851e5, 0x3ffa1d098914b0ca, + 0xc003b91717f7b890, 0xbfea7d822e79b628, + 0xbff9ee77d8de7268, 0xbfd8d9b81f685edc, + 0x4003bcfc382f1e8b, 0x4004f828ad777d88, + 0x3fc30ed45d88f788, 0xc01b2bab06549d26, + 0xbfd78ad2970a4c18, 0x4006186005aa98c1, + 0x3ff3c344b0f7d3e0, 0x40083138a095da73, + 0x40085112583b3dc5, 0xc0078d900860ea3e, + 0xc00acfffd876b89f, 0x3ff10ab36c99bc37, + 0x3fff2dd0262b8cc2, 0x400e774dfe0fbdd3, + 0x3ff6d3f7c156e927, 0x40168264883367e2, + 0x3f8aabb634beed40, 0x4014b9dd5d671eca, + 0xc0013d95f24c5125, 0x3fea1da001ee65fe, + 0x4012000dc34e35ea, 0xbff66023e33cd6c0, + 0x3ffd9f4e99267f35, 0x3fdd8c44a6aff98a, + 0xbf98a0da884816d0, 0x3fb7af35436aec40, + 0x3ff7952b45fe2c0c, 0x401065715fcad107, + 0xbffbf9727c44aed0, 0xc00a9fa0ab8c4a2f, + 0xbff2e38396ffa53c, 0x40003358e5ada1a1, + 0x3fc10e2ea696c390, 0x3fec50073c07b108, + 0x400d6a1359a24c42, 0x3ff409e1a0d58218, + 0xbfb4aeb198c65a87, 0xc0095cf7d7473f35, + 0x3ff087dcb51411a2, 0xbff00c544693f631, + 0x4005a52b09e3345a, 0xbff500b116c4a0f3, + 0x3fc7b83265e457c2, 0x400ad61a1ddd9c64, + 0x3fa5775e066a9b8c, 0x3ffdb60064b98858, + 0x3fe47c9882e3ebd3, 0xbfec743d2e1182de, + 0xbfe672d19720b16d, 0xc00122c872ba3efe, + 0xbff2b5fe5e0bd3d8, 0x4004625a307b10d7, + 0xbfee1ce1c2e9351a, 0xc01ae0abcdf7be55, + 0x3ff29747ec9c4ef6, 0x40069003939737dd, + 0xbff9e3e41d9acc3e, 0x3fd8836b052c07cc, + 0xbff6c12dfc7246a4, 0x3fc99bb079656448, + 0x3ffc6b9d191d48c8, 0xbffb19f96a85b7e1, + 0x3fff2008bfbb13b6, 0x3ff8824908f0a68b, + 0x3fec9c76abd83bb7, 0x3fcdc4bd68e92278, + 0xbffbef746a0702c8, 0x3fda3d469af638c2, + 0xc0007db91a6db171, 0xbff585cf9de02f90, + 0xbfb4359d33d08174, 0xbfef06aaecef7501, + 0xbff90ad1cd6abb5a, 0xbfdbc822eb5ed668, + 0x3fe96d51d1d33ee5, 0x3fffad00100c6520, + 0xbffd20c3a8950754, 0x3ff84e57dd126c6d, + 0x400bc137d6675f3a, 0xc0015b26fdb80b03, + 0xbff87cd2000607d4, 0xc000b03c8847210b, + 0x3ff10b492ef3b1e2, 0x3ff0b3aa0b9e175a, + 0x3ff8bf97abfebc01, 0xbfc3aa168f50a2d8, + 0x3fe266d4ed8825a4, 0xbff1d393f2dbf49c, + 0x400d641199eb4c4c, 0xc0002c45e3028671, + 0xbfff3ff08ab75df5, 0x4003a5ca0d5f5ab4, + 0x40113b7bb2a17658, 0x40127943e747412c, + 0xbfffb425daea7674, 0xbffccc19ffd3b796, + 0xc002b4f28bdb22d0, 0xbfd02632915fa0ed, + 0xbfdbfbb2f20b7798, 0xbf9a8919c9331380, + 0x3fb4c9adc85e79ba, 0xbff1020848df84f4, + 0xc004266d8e19527c, 0x3fe2ea69184f8a50, + 0x3ff2d2d2941cad3a, 0xbff98747f2edbbbe, + 0x3fc7145b2b0a0730, 0xbfea7b18f0d8f6b5, + 0xbff41ffa40911892, 0xc010e432741df9be, + 0x3fe35b43c0d05348, 0x3ff71322df012375, + 0x3fb70d4662184900, 0x4007c787040cc264, + 0xc000c051beba96c4, 0x4007232a07e07fb6, + 0xbfd2eef07a628830, 0x3fdb82d28179c614, + 0xbfe1d0c7adfd387c, 0xbff45e18dcfa9f7c, + 0xbfc1004aba04d4f0, 0x3ffae1e237dd4b3f, + 0x40174dfaec9d1ac9, 0xbfe6c5ddc90eca34, + 0x40137f984efe2b5a, 0x400e8c4503c8e041, + 0x3fed972d046713d4, 0xbff8bf1585869108, + 0x40012a0c09c69ac1, 0xbff12116ef38409e, + 0xc000a8e3d5e9fad9, 0x40061f9d00f4ebc7, + 0x3fd56e8baa85f42c, 0xbff1dbc8bcdc8a87, + 0x40016bf7a288fdf3, 0x400131e9d0d2952f, + 0x3febd24f4e1af312, 0xc01cc57a0ac93ec7, + 0x400e22dbeb02dca7, 0xbfeea4fb5de5327e, + 0xbfe223ee1b5c3710, 0x3fed2521b0f3ee73, + 0xbffbb182d997cb76, 0x3ffe767d92f91b6c, + 0x3feb60d700932a26, 0xbfe36f299d5a9ae0, + 0x4004a0116402fed8, 0xbff30b137780e846, + 0xbfebfe1dca2058cc, 0xc00711183ad3fdce, + 0xc000266d6be99595, 0x400066e23d5808e5, + 0xbffac4cfec866110, 0xbfe3be9c46fa04d4, + 0x4004c2b17b42549e, 0xc009ee8a09c232e6, + 0xbfe03c69a7c10188, 0xbffaa18ac64deb79, + 0x3ff18402c06d8623, 0xc007a3ba83fbe9f9, + 0x3ff1a7458ce7f842, 0xc01481855824fd7f, + 0x3fdc247b43daac38, 0xc015ce752741dafb, + 0xbfd9fee72e440ea5, 0xbfd5de169236e698, + 0x3ff1e6e485f4145c, 0x3fdd1de7c6616392, + 0x3fe25ba48a61e2a0, 0xc0025e99f06f0802, + 0x3ff5f78fd9b17a11, 0x400054ad759f0416, + 0x4012f44eaa812032, 0xbffe96166e0cc4f8, + 0xc011d6e2f2e65f06, 0xbfbacfa2b52406e0, + 0x3fe8672fdc8bddf4, 0xc002d7265dc6cd96, + 0x3ffd5ac519204c16, 0xbfe2ea154bf18550, + 0xbff41ef71f3e05b7, 0x3ffabb9bc578981c, + 0xbfe17da59c706396, 0xbfcc8b5cae6b0478, + 0x3ff84fdf1775f58a, 0x3ff4532fa5e95ada, + 0x3ff3f3f354e256fc, 0x40159c4dca2af7e2, + 0x3fc9b54e123e1678, 0xc005c652e742bf74, + 0x3fe62bf1827485ac, 0xbfdebdc028d5ab26, + 0x3fd0aa8cb9c490e2, 0x3fe3b9da5fe07e67, + 0x3fda0474a438a6b8, 0x3fc78ef9f1ef4f60, + 0xbfc6206969ed7ebc, 0xbfb7c1219adb6580, + 0x3fdc6606c648bb18, 0xbffb9ee32212dfba, + 0x3ff05c80ddee9dae, 0x4015a4ab78ebeee2, + 0xc013d5103c5214a7, 0xbff599ef7e0e9f81, + 0xbffa685da43e0a48, 0xbff9bfefcf8d0f54, + 0x3fecf44eb4f88cb9, 0x400fe9b69cdc0093, + 0x4004743bc4d1b740, 0xc0015724171dcdae, + 0xbffbb60df26b3b78, 0xbfdd522251739e84, + 0x40162e012d2560fc, 0xbfe2d404e3df57f6, + 0xc0135cc305394465, 0xbff34f4ad1e359a8, + 0x3ff70e36382607ac, 0xc00764e79d4b8c78, + 0x4011aef90f22f7a1, 0xbff8f0ba7c2297e2, + 0xbfd27154775f11ec, 0xbfe72e38b90471fb, + 0xc00ebe738a9c4dd5, 0x4003be1fdda3cb5e, + 0xbff7e59c32a4957e, 0x4014d8ce63c8b9ba, + 0x4002392461b0a8bd, 0x3fed03e79becd3a8, + 0xbffb8a2fcfcadc31, 0x3fde5dc07f5c6014, + 0xbf9ae1da86fa8c80, 0xc00b49edc4518044, + 0x40161d7cbe46fc1c, 0xbff55a5f6bfe0005, + 0x400817166cb9792e, 0x4008a902958cb592, + 0xc00accfda9d9603d, 0x4005449e855af5e1, + 0xc00106b0aa720a9f, 0x3ff5cc61f6911584, + 0x4001a39f6c7643e9, 0x4003c1b43b69a81e, + 0xc000ba88458d547c, 0x400c93bcb8c69f8f, + 0xbfc0e8462258e3a0, 0xbff30e820772cdd6, + 0xbfd1c9c42d1862bb, 0xbffa5d1a35ba06f4, + 0xbfda58bf1681d4b4, 0xc0014f3dc46091fa, + 0xbfc6028177a2dafc, 0xbfddd7dd8a1c81e4, + 0x3fdc759ad7ef6369, 0xc009c02d327ace0b, + 0x3ffcc2cfe9e77a86, 0xbfeb8f8f3b1011a1, + 0x3f64c2ddfc6ae000, 0xbfdeac4984e851a4, + 0x3ffd0d0c7163f1a2, 0xc011922e9c9b626b, + 0x3fff4fa43c1ed984, 0x40039b6b0c283d8e, + 0x4004a29d8155c8d4, 0xc003d86282319baf, + 0xbff0fc698afa92c3, 0x3fea730775403b42, + 0xbff322d7ecde04ac, 0xbffdb3271127f433, + 0xbff5bdc94e53e4b2, 0xc009e01fb8c1df20, + 0xc0112880188d4c43, 0xc0103fa4b4ddf6f8, + 0xc00614043c617bc2, 0xbfdc9f98523a4f12, + 0x3fdca28eb924556d, 0xbf964eb0dd83e980, + 0xc008bb578971abec, 0xc00db7e2df2d039c, + 0x400109cd38e1d52b, 0xc004d6d9febac514, + 0xc00a4ddfdc2c8daa, 0x40138163f0c14e94, + 0x4013e7937b787e9e, 0x3fd91e81af059298, + 0xbff4c2d2d7ab5156, 0x3fed18d170fb6fd8, + 0x40059d90b2e50e1a, 0xbff454080b627a66, + 0x3fe89e6b06797230, 0x3ff72f0da790d1de, + 0xbff80e013718044a, 0x400cdd31b4259d67, + 0x3fe33977c053dcdd, 0xc01138569c820d9b, + 0xc0082cbe1b9a2d5a, 0x401228790cde1e59, + 0xbfe7a762e3992877, 0xbfeca50aa0a99b7a, + 0xbfe361f5bfef8522, 0xbff91856995cc490, + 0xc005ed5a45536f55, 0xbfeb970fb9ef33b7, + 0x400ae92fb6c6fca2, 0xc00e50440f505350, + 0xc00e23db28c3fb66, 0x3fe15dbbe1459d0c, + 0x400332a918a961ea, 0x4007172a011e83b4, + 0xc00168ac9e537e93, 0x40006d476d1c4c84, + 0xbfe21a1b9c4e710a, 0x3ffe22c4b352c8b0, + 0xc01159146f7fa9aa, 0xbfe2644ebbf6f82a, + 0x3fa547e832f459e0, 0xbffb65f16a1c7bde, + 0x400a9267df658892, 0xbfe4a5e0a08a57d9, + 0x4006225ce6412d2c, 0x4002069e80a86c6d, + 0x400066a0c5ae6327, 0x40055947eef50395, + 0x4001cc1bc111cab6, 0xbf765a841d4d3a40, + 0x400f0a0c17448c4f, 0xbff1f143bada4612, + 0xbf83f11b135c2b00, 0x4000d46d9a698814, + 0xbffc06de096f2d08, 0xc00491ffbe379d54, + 0xbff4323e157605f9, 0xbff385bc0175dfab, + 0xbfe3864f624e604b, 0xbfdd24ff0971f398, + 0xc010bf6329e9ea1c, 0x3ff3ea5aacd2485b, + 0x3fd78051364f4c0e, 0x40087c0ac34de271, + 0xc00738f361a7b06a, 0x3ff741611b1c6e9a, + 0x3ff3ff582231621c, 0xc0092919f10a2a0e, + 0xbff2cff778a1fa0d, 0xbff85f2baffdf776, + 0x3ff748ab728ab6fc, 0x3fed6e2a011ffd60, + 0xc0010c8eaf733bc7, 0x4004b8415f46044c, + 0x4001e8f340b46627, 0x3ffc668ac735ef26, + 0xbfea72509358be5c, 0xc0008db86fbbe492, + 0xbff963cbd990ffdc, 0x4003ffb6c1eb6d44, + 0xbfec34691fedd7a6, 0xbff37c918c7a29f5, + 0xc002c1d08ea60de4, 0x3fe69b6bc5d375ed, + 0xc001ef5f783c8334, 0xbfed80b689aebba9, + 0xbfc02ff7186e5092, 0x3fd8881b6d61dc26, + 0xbff16abc70a1e684, 0xbff80b2af98d0c1d, + 0xc00a75c1d108a00a, 0x3febdfa2aee9803a, + 0x3fe9d05e5f2a6a2c, 0xbff709e3f64c3e28, + 0x3fe2fe36a9961b17, 0x4003c8d638f0f602, + 0xc002a21fd09bc41e, 0xbff05bfe880c6b8c, + 0xc009d9aef29ca638, 0xbff6098ef407f362, + 0x3ff455350cb3cccf, 0xbffd69a2a56e9dd7, + 0xc00397d50fdf8952, 0x3fbbd8e952377008, + 0xbfe834d355e8130b, 0x3fe3d1001a719226, + 0xbff3bd20644671fb, 0xbffac520c3c33d62, + 0x3fff5a9ce4892384, 0xbffee81b810e864e, + 0x3fcd96d629b7e0f4, 0xbff522d47b0f4c71, + 0xbff9bb7ea1db3b6c, 0x3ffdb50635ba8373, + 0xc002db767b60912d, 0x3ff16f7629c4335f, + 0xc007db577facafc8, 0xbfd9ede441c7fa90, + 0xc006a2557b24f32c, 0x3fd7f726c4540e24, + 0xbff8b724d0d5be80, 0xc00f77d6336143ab, + 0xc010ceaf17b5ac21, 0x400156acf7423776, + 0xc004771aab0da654, 0x3fd6d7a08a22d962, + 0x400428b00097dea5, 0x40041dcab8d5f777, + 0x3fd6f6c74665cded, 0x400542f1a13aabe0, + 0xbfdab2b62f3df97f, 0xbfd0b00393945578, + 0xc010b5fdced6021a, 0xc011aead2f8f5099, + 0x4000f02c9ef737fd, 0x3ffef8a5266a3a5b, + 0x3fea432d1e7183eb, 0x4002421f0b8253aa, + 0xc007eec44241512b, 0x3fe89bee22e7acf0, + 0xbff6666b60241797, 0xbfe21a8f560eb766, + 0xbfa1eff8a66bdae8, 0xc003f84677cc6f2b, + 0xbff5c98ba4eb35f2, 0xc00a8c9c1fe615af, + 0xbfc38d2fe1cfb348, 0x3fe5d0087ce64856, + 0x3fde90827e8ee9d8, 0x400e9f39e40257e5, + 0x400163cd19a48bf3, 0x4011093e4e9e452e, + 0x400003575b420bac, 0x3fbc1ebc61062f30, + 0xbfdec3d856a7415e, 0xbfd3f264ac677b00, + 0xc006658871610df8, 0x3ff4644baab83448, + 0xc009c13848003d06, 0x4000ea838d4b8ce5, + 0xbffbc459b0e0908c, 0xc001b1e9542db4f2, + 0xbfa0a20728b66680, 0xc00456f2978b2042, + 0x3fe61232adb244bc, 0x4016683ebbb77756, + 0xbff7318ad3c9f8a6, 0xc00033a716dbde37, + 0xbfd80b12cdc92418, 0xc00f2acc9d2a7c12, + 0x3fd78e5c6e92ebdc, 0xbfd6e82aba485198, + 0x3ffa63ecd6d2f18c, 0xbff685ca58c2a66d, + 0xc006306b4c0ee4e2, 0x3fe624c41e25446a, + 0xbf7130af20144680, 0x4014969831f8b544, + 0x3f82a930bec88ec0, 0x3fee0b47a9bae784, + 0xbff89d2694104374, 0xbffb30843fb17667, + 0xbfce9eeb2a890cbc, 0x3ffcae15dfd643cb, + 0xc002e1a0049620ca, 0xc007764e6e1c508e, + 0xbff996248f3a5549, 0xbffef961bbb52819, + 0x3fe700914d5cfecf, 0xc0071bc06501d569, + 0x3fb7a49032035120, 0xbfb6a80d17ba3e20, + 0x3fdec8445d6763f8, 0x3ff26ed482775026, + 0xbfb54633098eac10, 0x3ff12cc5c06386bf, + 0x3ff1d8cd0f3e7e82, 0x401267493ab17bf2, + 0xbfed46cda8e2f191, 0xbffa34652d9ac6ae, + 0x3ff3457e86bfea12, 0xbffd770450eedcd8, + 0x3ffa8a3d3bc8556a, 0x4003f9c2ea4b9f41, + 0x400710b79da7f77c, 0xbfc904144584ab22, + 0x3fee16b72c96b290, 0x3ffa7c11ecceb7f9, + 0x400eb339ebfb468e, 0xbff5c54ad1bc9aa1, + 0x3fe473eee7fc0d84, 0x3ff5e07f84c04356, + 0x3fc2c1acad4356b8, 0x3fd6bc128b22e300, + 0xbfe01bacbc167562, 0x3ff12a6f2a1f537c, + 0x3fd986d3622d7e7b, 0xc00c50787285311a, + 0xc004f1f51f73423c, 0x3ff71ba417a732e0, + 0x40122786dca50e16, 0x3fd0ec54547ffd2c, + 0x3fe2374eb842acd3, 0x3ff93e9875890b4a, + 0x40091e337f0bfefd, 0x400238959d3a0b02, + 0x40084c45c68ef61c, 0xc00da19ae38a00ab, + 0x400857c63fdc68dc, 0x400d7d8e6defd238, + 0xbfea47a7272a233e, 0xbfd5b30a9eb32612, + 0x3ff11ad20491e8d8, 0x4001f537205f8220, + 0xc00b93ab6f0b6836, 0xbfdcf4e31713b377, + 0xbfcfbf4373d299e0, 0xbff13b81a18c5d5a, + 0xc004ff036f144a38, 0xbfe67b3c366e5cfb, + 0xbfe63a341ec61e6c, 0xc0033440ed56fe14, + 0x3faa21cd5f9f8ee0, 0xbff8318ae9230a96, + 0xbfc92a9604168f78, 0x0, + 0x3faa21cd5f9f8f40, 0x3ff8318ae9230a98, + 0xbfe63a341ec61e64, 0x40033440ed56fe14, + 0xc004ff036f144a3a, 0x3fe67b3c366e5d00, + 0xbfcfbf4373d299e0, 0x3ff13b81a18c5d58, + 0xc00b93ab6f0b6836, 0x3fdcf4e31713b372, + 0x3ff11ad20491e8dc, 0xc001f537205f821e, + 0xbfea47a7272a233d, 0x3fd5b30a9eb3260c, + 0x400857c63fdc68dc, 0xc00d7d8e6defd239, + 0x40084c45c68ef61d, 0x400da19ae38a00ac, + 0x40091e337f0bfefc, 0xc00238959d3a0b03, + 0x3fe2374eb842acdc, 0xbff93e9875890b47, + 0x40122786dca50e15, 0xbfd0ec54547ffd3a, + 0xc004f1f51f73423e, 0xbff71ba417a732e3, + 0x3fd986d3622d7e82, 0x400c50787285311a, + 0xbfe01bacbc167565, 0xbff12a6f2a1f537d, + 0x3fc2c1acad4356bc, 0xbfd6bc128b22e300, + 0x3fe473eee7fc0d8e, 0xbff5e07f84c04351, + 0x400eb339ebfb468d, 0x3ff5c54ad1bc9aa4, + 0x3fee16b72c96b28c, 0xbffa7c11ecceb7f9, + 0x400710b79da7f77c, 0x3fc904144584ab16, + 0x3ffa8a3d3bc8556d, 0xc003f9c2ea4b9f43, + 0x3ff3457e86bfea14, 0x3ffd770450eedcd8, + 0xbfed46cda8e2f19a, 0x3ffa34652d9ac6ae, + 0x3ff1d8cd0f3e7e81, 0xc01267493ab17bf2, + 0xbfb54633098eac40, 0xbff12cc5c06386bf, + 0x3fdec8445d6763f8, 0xbff26ed482775022, + 0x3fb7a49032035100, 0x3fb6a80d17ba3e80, + 0x3fe700914d5cfec6, 0x40071bc06501d56a, + 0xbff996248f3a5549, 0x3ffef961bbb52816, + 0xc002e1a0049620ca, 0x4007764e6e1c508c, + 0xbfce9eeb2a890cb0, 0xbffcae15dfd643cd, + 0xbff89d2694104375, 0x3ffb30843fb17667, + 0x3f82a930bec88b80, 0xbfee0b47a9bae78a, + 0xbf7130af20144a00, 0xc014969831f8b544, + 0xc006306b4c0ee4de, 0xbfe624c41e254463, + 0x3ffa63ecd6d2f18c, 0x3ff685ca58c2a66e, + 0x3fd78e5c6e92ebd8, 0x3fd6e82aba4851a8, + 0xbfd80b12cdc92404, 0x400f2acc9d2a7c10, + 0xbff7318ad3c9f8aa, 0x400033a716dbde34, + 0x3fe61232adb244bc, 0xc016683ebbb77755, + 0xbfa0a20728b666e0, 0x400456f2978b2040, + 0xbffbc459b0e0908b, 0x4001b1e9542db4f0, + 0xc009c13848003d09, 0xc000ea838d4b8ce4, + 0xc006658871610df7, 0xbff4644baab83446, + 0xbfdec3d856a74148, 0x3fd3f264ac677b00, + 0x400003575b420bac, 0xbfbc1ebc61062f10, + 0x400163cd19a48bf4, 0xc011093e4e9e452e, + 0x3fde90827e8ee9d0, 0xc00e9f39e40257e5, + 0xbfc38d2fe1cfb350, 0xbfe5d0087ce64859, + 0xbff5c98ba4eb35ee, 0x400a8c9c1fe615ae, + 0xbfa1eff8a66bdae8, 0x4003f84677cc6f2c, + 0xbff6666b60241796, 0x3fe21a8f560eb76e, + 0xc007eec44241512b, 0xbfe89bee22e7acec, + 0x3fea432d1e7183e7, 0xc002421f0b8253a8, + 0x4000f02c9ef737fa, 0xbffef8a5266a3a59, + 0xc010b5fdced6021a, 0x4011aead2f8f5098, + 0xbfdab2b62f3df984, 0x3fd0b0039394556a, + 0x3fd6f6c74665cded, 0xc00542f1a13aabe2, + 0x400428b00097dea6, 0xc0041dcab8d5f776, + 0xc004771aab0da654, 0xbfd6d7a08a22d96c, + 0xc010ceaf17b5ac20, 0xc00156acf7423778, + 0xbff8b724d0d5be84, 0x400f77d6336143ac, + 0xc006a2557b24f32a, 0xbfd7f726c4540e2c, + 0xc007db577facafc8, 0x3fd9ede441c7fa94, + 0xc002db767b60912d, 0xbff16f7629c4335c, + 0xbff9bb7ea1db3b68, 0xbffdb50635ba836c, + 0x3fcd96d629b7e104, 0x3ff522d47b0f4c73, + 0x3fff5a9ce4892382, 0x3ffee81b810e864e, + 0xbff3bd20644671f8, 0x3ffac520c3c33d61, + 0xbfe834d355e81308, 0xbfe3d1001a719220, + 0xc00397d50fdf8952, 0xbfbbd8e952377040, + 0x3ff455350cb3ccd2, 0x3ffd69a2a56e9dd6, + 0xc009d9aef29ca639, 0x3ff6098ef407f362, + 0xc002a21fd09bc41a, 0x3ff05bfe880c6b8b, + 0x3fe2fe36a9961b1b, 0xc003c8d638f0f600, + 0x3fe9d05e5f2a6a2e, 0x3ff709e3f64c3e29, + 0xc00a75c1d108a00b, 0xbfebdfa2aee98038, + 0xbff16abc70a1e689, 0x3ff80b2af98d0c22, + 0xbfc02ff7186e50a0, 0xbfd8881b6d61dc1a, + 0xc001ef5f783c8334, 0x3fed80b689aebbac, + 0xc002c1d08ea60de4, 0xbfe69b6bc5d375ea, + 0xbfec34691fedd7a6, 0x3ff37c918c7a29f8, + 0xbff963cbd990ffda, 0xc003ffb6c1eb6d48, + 0xbfea72509358be5b, 0x40008db86fbbe491, + 0x4001e8f340b46627, 0xbffc668ac735ef26, + 0xc0010c8eaf733bc7, 0xc004b8415f46044b, + 0x3ff748ab728ab6fb, 0xbfed6e2a011ffd64, + 0xbff2cff778a1fa0e, 0x3ff85f2baffdf779, + 0x3ff3ff5822316221, 0x40092919f10a2a0f, + 0xc00738f361a7b06a, 0xbff741611b1c6e99, + 0x3fd78051364f4c13, 0xc0087c0ac34de270, + 0xc010bf6329e9ea1c, 0xbff3ea5aacd2485f, + 0xbfe3864f624e6047, 0x3fdd24ff0971f398, + 0xbff4323e157605fa, 0x3ff385bc0175dfac, + 0xbffc06de096f2d08, 0x400491ffbe379d51, + 0xbf83f11b135c2700, 0xc000d46d9a698815, + 0x400f0a0c17448c50, 0x3ff1f143bada4612, + 0x4001cc1bc111cab6, 0x3f765a841d4d3500, + 0x400066a0c5ae6329, 0xc0055947eef50397, + 0x4006225ce6412d2a, 0xc002069e80a86c6f, + 0x400a9267df658892, 0x3fe4a5e0a08a57d6, + 0x3fa547e832f45a20, 0x3ffb65f16a1c7bda, + 0xc01159146f7fa9aa, 0x3fe2644ebbf6f826, + 0xbfe21a1b9c4e7108, 0xbffe22c4b352c8b4, + 0xc00168ac9e537e93, 0xc0006d476d1c4c84, + 0x400332a918a961ea, 0xc007172a011e83b2, + 0xc00e23db28c3fb69, 0xbfe15dbbe1459d0e, + 0x400ae92fb6c6fca4, 0x400e50440f50534f, + 0xc005ed5a45536f56, 0x3feb970fb9ef33ae, + 0xbfe361f5bfef8526, 0x3ff91856995cc488, + 0xbfe7a762e399287a, 0x3feca50aa0a99b78, + 0xc0082cbe1b9a2d59, 0xc01228790cde1e58, + 0x3fe33977c053dcdc, 0x401138569c820d9b, + 0xbff80e013718044f, 0xc00cdd31b4259d65, + 0x3fe89e6b0679722a, 0xbff72f0da790d1e0, + 0x40059d90b2e50e1b, 0x3ff454080b627a66, + 0xbff4c2d2d7ab5158, 0xbfed18d170fb6fd4, + 0x4013e7937b787e9f, 0xbfd91e81af05928e, + 0xc00a4ddfdc2c8da7, 0xc0138163f0c14e94, + 0x400109cd38e1d52b, 0x4004d6d9febac514, + 0xc008bb578971abef, 0x400db7e2df2d039a, + 0x3fdca28eb9245567, 0x3f964eb0dd83eb80, + 0xc00614043c617bc2, 0x3fdc9f98523a4f07, + 0xc0112880188d4c42, 0x40103fa4b4ddf6f8, + 0xbff5bdc94e53e4b1, 0x4009e01fb8c1df1e, + 0xbff322d7ecde04b0, 0x3ffdb3271127f438, + 0xbff0fc698afa92c2, 0xbfea730775403b43, + 0x4004a29d8155c8d4, 0x4003d86282319baf, + 0x3fff4fa43c1ed984, 0xc0039b6b0c283d8c, + 0x3ffd0d0c7163f1a4, 0x4011922e9c9b626b, + 0x3f64c2ddfc6ae400, 0x3fdeac4984e851a6, + 0x3ffcc2cfe9e77a84, 0x3feb8f8f3b1011a0, + 0x3fdc759ad7ef6365, 0x4009c02d327ace09, + 0xbfc6028177a2dae8, 0x3fddd7dd8a1c81e0, + 0xbfda58bf1681d4bf, 0x40014f3dc46091fa, + 0xbfd1c9c42d1862bb, 0x3ffa5d1a35ba06f1, + 0xbfc0e8462258e398, 0x3ff30e820772cdd0, + 0xc000ba88458d547e, 0xc00c93bcb8c69f90, + 0x4001a39f6c7643e9, 0xc003c1b43b69a820, + 0xc00106b0aa720a9e, 0xbff5cc61f6911580, + 0xc00accfda9d9603d, 0xc005449e855af5e0, + 0x400817166cb9792d, 0xc008a902958cb593, + 0x40161d7cbe46fc1d, 0x3ff55a5f6bfe0006, + 0xbf9ae1da86fa8c80, 0x400b49edc4518042, + 0xbffb8a2fcfcadc30, 0xbfde5dc07f5c6014, + 0x4002392461b0a8bf, 0xbfed03e79becd3a2, + 0xbff7e59c32a4957d, 0xc014d8ce63c8b9b9, + 0xc00ebe738a9c4dd2, 0xc003be1fdda3cb5f, + 0xbfd27154775f11e4, 0x3fe72e38b90471fb, + 0x4011aef90f22f7a1, 0x3ff8f0ba7c2297e8, + 0x3ff70e36382607ac, 0x400764e79d4b8c7a, + 0xc0135cc305394464, 0x3ff34f4ad1e359a6, + 0x40162e012d2560fc, 0x3fe2d404e3df57f0, + 0xbffbb60df26b3b74, 0x3fdd522251739e86, + 0x4004743bc4d1b741, 0x40015724171dcdaa, + 0x3fecf44eb4f88cc2, 0xc00fe9b69cdc008f, + 0xbffa685da43e0a47, 0x3ff9bfefcf8d0f51, + 0xc013d5103c5214a7, 0x3ff599ef7e0e9f7e, + 0x3ff05c80ddee9dae, 0xc015a4ab78ebeee3, + 0x3fdc6606c648bb18, 0x3ffb9ee32212dfb6, + 0xbfc6206969ed7ecc, 0x3fb7c1219adb655c, + 0x3fda0474a438a6bc, 0xbfc78ef9f1ef4f51, + 0x3fd0aa8cb9c490de, 0xbfe3b9da5fe07e5c, + 0x3fe62bf1827485af, 0x3fdebdc028d5ab23, + 0x3fc9b54e123e1690, 0x4005c652e742bf73, + 0x3ff3f3f354e256f7, 0xc0159c4dca2af7e0, + 0x3ff84fdf1775f58c, 0xbff4532fa5e95ad9, + 0xbfe17da59c706390, 0x3fcc8b5cae6b047c, + 0xbff41ef71f3e05b6, 0xbffabb9bc578981c, + 0x3ffd5ac519204c16, 0x3fe2ea154bf1854a, + 0x3fe8672fdc8bddf0, 0x4002d7265dc6cd95, + 0xc011d6e2f2e65f06, 0x3fbacfa2b52406c0, + 0x4012f44eaa812030, 0x3ffe96166e0cc4f4, + 0x3ff5f78fd9b17a0b, 0xc00054ad759f0415, + 0x3fe25ba48a61e29d, 0x40025e99f06f0802, + 0x3ff1e6e485f4145c, 0xbfdd1de7c661639c, + 0xbfd9fee72e440ea8, 0x3fd5de169236e694, + 0x3fdc247b43daac24, 0x4015ce752741daf9, + 0x3ff1a7458ce7f842, 0x401481855824fd7e, + 0x3ff18402c06d8624, 0x4007a3ba83fbe9f8, + 0xbfe03c69a7c1017e, 0x3ffaa18ac64deb7c, + 0x4004c2b17b42549f, 0x4009ee8a09c232e5, + 0xbffac4cfec866112, 0x3fe3be9c46fa04cc, + 0xc000266d6be99592, 0xc00066e23d5808e5, + 0xbfebfe1dca2058c4, 0x400711183ad3fdcc, + 0x4004a0116402fed8, 0x3ff30b137780e84a, + 0x3feb60d700932a29, 0x3fe36f299d5a9ae4, + 0xbffbb182d997cb76, 0xbffe767d92f91b6b, + 0xbfe223ee1b5c370c, 0xbfed2521b0f3ee7e, + 0x400e22dbeb02dca6, 0x3feea4fb5de53270, + 0x3febd24f4e1af311, 0x401cc57a0ac93ec5, + 0x40016bf7a288fdf3, 0xc00131e9d0d2952e, + 0x3fd56e8baa85f438, 0x3ff1dbc8bcdc8a8e, + 0xc000a8e3d5e9fad9, 0xc0061f9d00f4ebc8, + 0x40012a0c09c69ac1, 0x3ff12116ef38409e, + 0x3fed972d046713d0, 0x3ff8bf1585869105, + 0x40137f984efe2b5a, 0xc00e8c4503c8e043, + 0x40174dfaec9d1ac8, 0x3fe6c5ddc90eca44, + 0xbfc1004aba04d4ec, 0xbffae1e237dd4b3f, + 0xbfe1d0c7adfd387e, 0x3ff45e18dcfa9f7e, + 0xbfd2eef07a628834, 0xbfdb82d28179c60c, + 0xc000c051beba96c1, 0xc007232a07e07fb6, + 0x3fb70d46621848b0, 0xc007c787040cc266, + 0x3fe35b43c0d05349, 0xbff71322df012372, + 0xbff41ffa40911892, 0x4010e432741df9be, + 0x3fc7145b2b0a0728, 0x3fea7b18f0d8f6b7, + 0x3ff2d2d2941cad3d, 0x3ff98747f2edbbbf, + 0xc004266d8e19527c, 0xbfe2ea69184f8a52, + 0x3fb4c9adc85e7990, 0x3ff1020848df84f8, + 0xbfdbfbb2f20b7784, 0x3f9a8919c9331480, + 0xc002b4f28bdb22d1, 0x3fd02632915fa0d3, + 0xbfffb425daea7674, 0x3ffccc19ffd3b796, + 0x40113b7bb2a17657, 0xc0127943e747412c, + 0xbfff3ff08ab75df9, 0xc003a5ca0d5f5ab4, + 0x400d641199eb4c4b, 0x40002c45e3028670, + 0x3fe266d4ed8825a2, 0x3ff1d393f2dbf499, + 0x3ff8bf97abfebbfd, 0x3fc3aa168f50a2c8, + 0x3ff10b492ef3b1e0, 0xbff0b3aa0b9e1756, + 0xbff87cd2000607d1, 0x4000b03c8847210a, + 0x400bc137d6675f3a, 0x40015b26fdb80b00, + 0xbffd20c3a895074c, 0xbff84e57dd126c6e, + 0x3fe96d51d1d33eea, 0xbfffad00100c6518, + 0xbff90ad1cd6abb58, 0x3fdbc822eb5ed670, + 0xbfb4359d33d08150, 0x3fef06aaecef7500, + 0xc0007db91a6db16e, 0x3ff585cf9de02f91, + 0xbffbef746a0702ca, 0xbfda3d469af638ce, + 0x3fec9c76abd83bbf, 0xbfcdc4bd68e92288, + 0x3fff2008bfbb13b9, 0xbff8824908f0a68d, + 0x3ffc6b9d191d48c9, 0x3ffb19f96a85b7de, + 0xbff6c12dfc7246a6, 0xbfc99bb079656450, + 0xbff9e3e41d9acc3d, 0xbfd8836b052c07ce, + 0x3ff29747ec9c4ef8, 0xc0069003939737dc, + 0xbfee1ce1c2e9351a, 0x401ae0abcdf7be54, + 0xbff2b5fe5e0bd3d0, 0xc004625a307b10d6, + 0xbfe672d19720b169, 0x400122c872ba3f00, + 0x3fe47c9882e3ebcc, 0x3fec743d2e1182d8, + 0x3fa5775e066a9b70, 0xbffdb60064b9885c, + 0x3fc7b83265e457d6, 0xc00ad61a1ddd9c66, + 0x4005a52b09e3345a, 0x3ff500b116c4a0f2, + 0x3ff087dcb51411a2, 0x3ff00c544693f632, + 0xbfb4aeb198c65ab4, 0x40095cf7d7473f34, + 0x400d6a1359a24c44, 0xbff409e1a0d58214, + 0x3fc10e2ea696c3c0, 0xbfec50073c07b108, + 0xbff2e38396ffa53a, 0xc0003358e5ada1a2, + 0xbffbf9727c44aece, 0x400a9fa0ab8c4a2b, + 0x3ff7952b45fe2c0b, 0xc01065715fcad108, + 0xbf98a0da884815c0, 0xbfb7af35436aec30, + 0x3ffd9f4e99267f34, 0xbfdd8c44a6aff97c, + 0x4012000dc34e35ec, 0x3ff66023e33cd6c2, + 0xc0013d95f24c5124, 0xbfea1da001ee6600, + 0x3f8aabb634beed60, 0xc014b9dd5d671eca, + 0x3ff6d3f7c156e922, 0xc0168264883367e2, + 0x3fff2dd0262b8cbd, 0xc00e774dfe0fbdd0, + 0xc00acfffd876b8a2, 0xbff10ab36c99bc36, + 0x40085112583b3dc4, 0x40078d900860ea3e, + 0x3ff3c344b0f7d3df, 0xc0083138a095da73, + 0xbfd78ad2970a4c22, 0xc006186005aa98c2, + 0x3fc30ed45d88f780, 0x401b2bab06549d24, + 0x4003bcfc382f1e8a, 0xc004f828ad777d89, + 0xbff9ee77d8de7268, 0x3fd8d9b81f685ed8, + 0xc003b91717f7b88d, 0x3fea7d822e79b628, + 0x3ff5106e0d8851e8, 0xbffa1d098914b0c6, + 0x4000fc4626af96a3, 0x3ff01a85958e14fe, + 0xc0085b9c72ab93e2, 0xbfca7b479334bb68, + 0xc0077ed5bdd2944c, 0x3ffee69448422dae, + 0xc002600442d1b8d8, 0x3feda232e86eea4d, + 0x4007cf6670eb03d1, 0x3ff1ca1f297fc482, + 0x3fe4273c4fd8b8f0, 0x40112ed6531d0c39, + 0x3fed1cfd553c47b0, 0x3ff7e6ff12153890, + 0xc0003897641c65a5, 0xbfcb73f4d5aff044, + 0x3ff74cc5864491d8, 0xc00ad8c92808ef21, + 0xbff368a5d0eea315, 0x4008f50a758f61bc, + 0x3ffc6ae8c430b8dd, 0xbfcf00d9fa581d78, + 0xc0012c386c0dca9f, 0x3fe0b174cc71be94, + 0xc0102a974abd90aa, 0x3fdc17e5bb23998c, + 0xc012eadad5f3080a, 0x3fe9c8f00f99f572, + 0xc00ba6ed5841929c, 0xc0169bed26288c1c, + 0x40180c587c0cd14d, 0x3fcee57808c27fb0, + 0xc01230cfba3b9878, 0x3ff23db3011b146e, + 0xc0008ce19fb369ac, 0xc0028b8eae0f1ddf, + 0x400c3920b97d656e, 0x3ff213b542c9bd14, + 0xbfcaef406d6c64b8, 0xbff3fca7ed4fea29, + 0xbfc5f3dd89876ed0, 0x3fe02ddb01d79efb, + 0x3ff0e7571cf31d53, 0xbfbac0d36f1e9c7a, + 0x3ff2974ad98ff964, 0x3ff5579281b29d63, + 0xc001fb4ae4039425, 0xc0052bcd69c52e42, + 0x3fff2d542a60cbde, 0x3ffafac172855bdb, + 0x3fe7e28a43eac37c, 0xc009d67552c4c04e, + 0x3ff3b03ba16571c2, 0xbffd7392b427c6e4, + 0x3ffc1f9476a37c94, 0x3feba264a36c0e94, + 0xc00c861f7db45696, 0xc0090445fb24bd11, + 0x40126007958f74e4, 0x3ffc96e3dfae2702, + 0x3ff6a10a29e36963, 0xc0083c8d45da37f5, + 0x4012905ea4876b5f, 0x3fff59591e3cf4b8, + 0x3fef3b611d1e41e8, 0x3ffbaa1b26350318, + 0x40094df004c84cdc, 0x3fde3946294431cf, + 0xc003d84debc0cb92, 0x3ff3cffb02b28630, + 0xbffd508129f39c88, 0xbfe73f0fac871852, + 0xc00fb9a909f78526, 0x3faaafb0e30daa00, + 0x400b3743f9ef837f, 0xbfdf7f27485a40fe, + 0xc001fd61ff5a501d, 0x3fb82a8897a6bbe0, + 0xc005ef11836a3f3f, 0x3ff2d50b54648496, + 0x3fbb52a15fe77ad0, 0xc013317b56434fec, + 0xbffb1bd2988fb3fe, 0x3ff0bc78509ab8dc, + 0xc00115cf5ef59433, 0xbfd280c7bb5b2734, + 0x3ff8ab55cf50bb36, 0x3ff55daaa2a627c9, + 0xc00063f74eeaff37, 0x3fda515e9aee3b80, + 0x3fe5328912e1808e, 0xbffd21017f4ad217, + 0x3fd2954a1257d320, 0x400a94d87f1a15b5, + 0xbffe8fa0c5267060, 0x3fc0444714b294e8, + 0xbff784db955ac85e, 0xbffbd6d55042bd8c, + 0x3ffb7080ed494292, 0x3fe6ab569a5ba398, + 0xbfe684380b838232, 0xc008a634d29942be, + 0xbfedf21d9eece30d, 0x4008232a123daf2a, + 0xc00e6ece20b88460, 0x3fd2d5a53c15f140, + 0xc005101c036512ca, 0xbfd7b8464badae50, + 0xc00e00b6506ab40f, 0xc00088b52f2ff716, + 0xc0048816a21bda7a, 0x3fde7a064d854654, + 0xbfde2c7dba5a8150, 0x4017698ac4a32348, + 0x400bef8a2b20297a, 0x3febdbfdb23a54d2, + 0xc0008c11724fc6f2, 0xbfedd71e959e37f4, + 0xc008f7bfb0e04b30, 0xc00b1c54b908ddda, + 0x3fdafc2b9c0c1164, 0xc011faa7cabfd808, + 0xbff3d156a6147b88, 0xc006aecacf38ca14, + 0x400ae9161da16e74, 0xbfb1a66e5c061b78, + 0xbffc807c9addea38, 0x3fe8e73796d87942, + 0xc000af06ec14ebb2, 0x3fe21223d0dbeb9a, + 0x3fefa2db81d98ace, 0x3ff72b8611d00db8, + 0xbff30eeab734f781, 0xbff855c84454b1c8, + 0x3fefb090bbbcbbee, 0xc01f9808272a32ec, + 0xbfe06b97866eaeac, 0xc001dfdf165aebc0, + 0x3ff36f13f124871c, 0xbfe064bdcfe55940, + 0x4012e5144c2c8710, 0x3fe5cbda5a09298a, + 0xc00123c13e5c647e, 0xc0047afca5d54580, + 0xbff462435d6cb086, 0x3fd6461f4016a66c, + 0xc001308e4c12d5d6, 0x4001bf34e2dba742, + 0x4007e98e63b140b7, 0xc01194a0fa0a2454, + 0x3ffb6f69348794f4, 0x3ffff2437ff5dac8, + 0xc008d40e64a4d894, 0x3ff727f74d952bcc, + 0x3ffe1b1a9dc83e83, 0xbff32360d61721b3, + 0xbfd58d60d03f7e3c, 0xc010c6eb7b45ee3e, + 0xbffa382d59caeaf6, 0xbff594207a1353cc, + 0x4002612e68e4e48c, 0x3ff8ff6f8ce9480e, + 0x3ff92dadaae1d04c, 0xbffab6470c8a903f, + 0xbfe42a6db5ee42ac, 0x3fdd2cbad64ff060, + 0xc003df32dcc8ff60, 0x3fff17f94d3467a8, + 0x4010197c215b4605, 0xc01007ea595745a5, + 0x40118ec212b73b6c, 0x3fe611fe3582bf84, + 0xbff7115c188d374c, 0x4011583efdeb3584, + 0xbff21e5aa421ecbf, 0x3ff4327f47eb8796, + 0x3ff356790581a2ae, 0x400204fd20341630, + 0x3fcf0e3eb9e4acc0, 0x40092132a23bf990, + 0xbff61155a88cc240, 0x3fef33677c5cf0d0, + 0xc0036b416398afe5, 0x4005ebe1cf6ca735, + 0x3f7f5d79f8b1e780, 0x4006dd0f5d1da220, + 0x40011f73f0e3d0ba, 0x3ffefbe6e86a067a, + 0xbfd8a9279980ba74, 0x3fe2d8ddd8793f66, + 0x4007fecc7e4c9e64, 0xbfa494cc37a02950, + 0xc00fddd42ce18c42, 0xc0038512e681a3b6, + 0x3ff4d630f30203f7, 0xbfaad5331093de20, + 0xbfcd3ac899124e20, 0xc00b527b9dfa8220, + 0x4009b7ec844d4938, 0xc0142d0ec5095cac, + 0x3fa2972675ca0d00, 0x3ff00cd7211f8f06, + 0x400543939ad4a792, 0x4002597f9d4076f4, + 0x3ff756e60d4c754c, 0x3fe1cc2db873404a, + 0x40011f18e5cca4eb, 0xbfa4b1a1b0eba668, + 0x4002490fb4721c7a, 0xbfd41695e5b421d2, + 0x4005a8a489318c50, 0x3fc72184a33550c4, + 0x3ff4dac6889e5d63, 0x400692b2f81afae3, + 0xc012fbb20ab174f4, 0xc005ee87bb1138d8, + 0xbfd364c900278f1f, 0xbfee5f9374c42a1c, + 0x3f99fd3f98bffd30, 0x3ffc2df9c2a7bf87, + 0x3fc2bcfedae25fa2, 0xc00f808ace6289cb, + 0x3fe0fe2b097ad6ab, 0x3fc3a641222a55c0, + 0x400ce2c92a6bf2cb, 0x3fb2016c9332b6a0, + 0x4000ee9689694bc2, 0x3feb818be1bc5874, + 0xbfe3ca0f6b1a6e7b, 0xbfecdda9889309aa, + 0x3fdf7954c0f4fbe0, 0xc00a5bf096141e52, + 0x3ffcf82c10fb3c3a, 0xbfefca3b554a0506, + 0x400398da5cd7febb, 0x3ffe4375b4dd8984, + 0xbffec020cd95d6e6, 0x3fc43899c8bc10ec, + 0x3fb631ac13a03f90, 0x3ff2ac934f6cc16b, + 0x3fe7ca1aa194a0d1, 0x3ff29f65be398c68, + 0xbfd9039db4449e98, 0x4011131acd7dc2ce, + 0x4013e4745b788a1a, 0x3ff8c2b57468c7a6, + 0x400187ce39bf0c8e, 0xbffcea352844f773, + 0x4000a18b56ad43e4, 0x40054d972a5a9496, + 0x3fd7122c039c49c9, 0xbfd8fb71aa725884, + 0xbfc3394320d96b54, 0xc003353f72c4aefb, + 0xbff512eb23f2ae30, 0xc004978e2fce84f5, + 0xbff535af1b2536b2, 0x401381e1460982e7, + 0xc00f6f1feedbdf61, 0xbff861bd55aecfd9, + 0x400af04bcbdf21ee, 0x4000b433a60db523, + 0x4009c306096a13ce, 0x3ff6f2ebb72c8ae8, + 0x3fe0680150182acf, 0x3fe47859de59bd9c, + 0x400b67ad34f5bb0e, 0xbff48adf1993c4da, + 0xbff65afa9e047855, 0x3fe0b0f9d109024f, + 0xbfcb254efb962be8, 0xc00ff1b3592a8f84, + 0x40003519f03b0294, 0x3fec3d817aa69c62, + 0xc00aad25b92d8db8, 0x4007fcff04d423df, + 0x4011c9cc9aae1370, 0xc00313b464ed59c6, + 0xbfdf9ec6f1104888, 0xbfd6341a46aa05e8, + 0x3ffb110f41302846, 0x3fcb6541c263fb28, + 0x3ff4b81236836e90, 0x400ae3360346a727, + 0x3ff8e9bf65022d13, 0x400306781ffb54dc, + 0xc00ab1b71a6a8df0, 0x40099ac8c8a414a6, + 0x3fd96e6d28ed72de, 0x3ff107809d105122, + 0xbff19dc04f92d75e, 0x3fe4489855da2e7f, + 0x3ff57d188ef0fe22, 0x400c7561d720b761, + 0x3fe117dc992149ef, 0x3ffcdedef8db59e7, + 0x3ff7af922becbce6, 0x3ff1bb27a482979c, + 0xbfe77712a4d09350, 0xc0050b5ec8c9133d, + 0xbffaedb2135d4a7c, 0xbfd08c65880671a0, + 0xc00ae5a4bda7791f, 0xbfea67ec92242289, + 0xbff1fd2e4105a7e5, 0xbff3fe198ef1ef5a, + 0x3ff1e038010ae37c, 0xbffaf4b153277a1f, + 0x3fe4773bf90f054a, 0x3fb7ad3456de1c00, + 0x400977951435fcfc, 0xc013d8d7b2903132, + 0x3ff06a9047f172b0, 0x3fed8c94117fa6da, + 0x3ff34298e275f27c, 0x4002f74bf13a0f6c, + 0x400419b74c502463, 0x400a023ca3f1489f, + 0xc0018a5f5e2594bc, 0xbfff0869a5b00708, + 0x4010cba72bd1c384, 0xc0010ad2b60568e2, + 0x3ff15e588bce7ebd, 0xc0022fa9724ab04a, + 0xbff35ad8d7fe651e, 0x3fd26d99c223f896, + 0x4000e9200027e4a5, 0xbfdb0d0ebb27da38, + 0xbff38f7edfa481a8, 0xbfea8f7c28309596, + 0x4007038687085b94, 0x3ff8ddc6bf88d1cc, + 0xbfd88e8a802d33b4, 0x4012a538b66355a8, + 0xbffe0e32d0bc55fe, 0xbff3692135c7d7ce, + 0x3fd5f05db0dd2cb4, 0xbfdec772f7baa980, + 0x400f9091771e25dc, 0x3fe835192a50041c, + 0x40084b7e2dd80a86, 0x40049a7342a2e368, + 0xc01d48e9ad3e7156, 0x3ff54643dfa23339, + 0xbffafeab0df3b588, 0x3fea31ccfb2e4758, + 0x3f84bf9ef61315c0, 0x4009383586563804, + 0x40047da7365e8988, 0x3feabb388ada6fa0, + 0x3fe2f65595c35d96, 0xc002612ad4320c6b, + 0xbfd489be1e1be10c, 0x40092c4f25b37e0a, + 0xc00aace67c395bd8, 0x400b56ee80c9ad60, + 0x4016b36fa27b1b4a, 0xbfea5553c8dd47b8, + 0xbfd37e8bdeb038d6, 0xc00860962e7e0af6, + 0x40010a78cfa19a3e, 0xc0044a3acc357d52, + 0x3fe1eaf713d13651, 0x3ff5694cb38b30d6, + 0x3ff5bdcaeb6a47cc, 0xc010b442c7624d7e, + 0x3ffa1b3e54818cf8, 0xbff582983b52c5b0, + 0x3fe9b2532b49929c, 0xc00148e439112121, + 0x3ffdd6a78bc61bb3, 0x3ff8f5b1718f1029, + 0x3fb926dc3c2e3c70, 0x4010fc7308a39800, + 0x400b0de45916fc2d, 0xbfd987cfd618be1c, + 0xbfee3802eeb4bcf2, 0x3fdb7304b0898508, + 0x4002d7fb5bdbedc2, 0xc000420c869a6742, + 0x3fcec2d785bf4d80, 0xc00fd5ad1d967aba, + 0x401038c1ea420894, 0x3fc8e74c9927607c, + 0xbffb0eda8d3f1512, 0xbfea26617f503ca4, + 0xbfff3d9487b568ee, 0xc0015734908ca0ee, + 0x3ffb6c98430879ad, 0x3faedebb35073bc0, + 0xbff2e7aeed1741a7, 0x40044d646c71937b, + 0x40118a8078d17272, 0xbffd6d73065185cc, + 0x40048066c1cb92a0, 0x40017821b6b69386, + 0xc00427a8aef1874c, 0x3fd7d8edbd9f2c20, + 0x3ff5369b5b936a6d, 0xc00f9d997134a372, + 0x40042b9fa99e3d6f, 0xbfe78194e271a114, + 0x3fdefbb9e49a0640, 0x3ff6e34bbb8bbf19, + 0x3ff50d5031bd6f1f, 0xbfca849505bb2dd0, + 0xbffa7e38d009d4b2, 0x3fd64e2941c3e2fe, + 0xc00a67f868fb14a6, 0xc0122d9d17904a8c, + 0xc003dac5e6c1b284, 0x3fd84b8b350dfdd2, + 0xc004487fff564b25, 0xbff84e8c76f642b8, + 0x3ff7da166dd45654, 0xc004d6d458b02ebb, + 0x3fff81515363ec62, 0xbffdcc83dda6b049, + 0xbfeaa7014cfa97d6, 0x4000d605aca8bfea, + 0x3fffdeb28ce5c9fc, 0xbffbfd38f5564a79, + 0xc0027737e8ba9b82, 0x3ff36287d1a5cfbd, + 0x4009f4f4e662750b, 0x400cee79aefc20b8, + 0xbfd2d2b350ddf828, 0xc00b55e9b4501b7e, + 0xc004239ce7900386, 0x400d0e474dd63b5d, + 0xbfe2cc352dce381c, 0xc01213ca3c5cd8ae, + 0xc00432f721f1d28d, 0x3fe04c6d061c6a6e, + 0xbffb61974c560acb, 0x40080ea82e7e39c6, + 0x400b2d0afc4f537b, 0x3fe9c83283c6b9fa, + 0xc0029db027a5b891, 0xbfd64dcbd159da80, + 0xbff4c8a34e4c9332, 0x3fe5b3d26b3c2206, + 0x3ff4663021c653bb, 0x3ff19a911396f6eb, + 0x3fe280458a26b9b9, 0x40039e2205bd7e87, + 0x3ff1aea34b0e1d21, 0x3feeb895bf141df7, + 0x3fc1d5e6778034d0, 0xbff588e4a0acaa1c, + 0x3ff16c96ddbcbefe, 0xbfab9985ab1d8280, + 0xbfed499d2f3f1012, 0x3fd55af2eac0db24, + 0xc007c33255de1299, 0xbfb0a9efba7a68f0, + 0xbff7109b27e43f63, 0xc010cacc29e6d7ad, + 0x3ff9db21c3751b16, 0xbfd161d137503b0e, + 0xbfecd3eddf162470, 0x3ffc707c7f5afeda, + 0x3ff9118f5bf418f6, 0xc00c8a5702e09385, + 0x400a4f88a59c715f, 0x3ffac219274bb8a2, + 0xc000fd7c18b92640, 0x400874e7b3e9dac9, + 0x3f9795243a087b80, 0x3fd10f167c31cdb8, + 0xc0096bada1b8664c, 0xbff3274feacf3db9, + 0xbfbe7afe5c37fd90, 0x3ff27a354b00f076, + 0x3fd526ba8f41779e, 0x40006748be8679e6, + 0x400df03f153d89f4, 0xbff86c4976717344, + 0x3fcb2ab26d2f3cd8, 0x3ffa9f56ee83e32e, + 0xbfe41095e2c8a483, 0xbfdc5c8bda9bc0e6, + 0x3fd7949aa81cf294, 0xc00eb0b630a25b4b, + 0x3ff4bacdcf602e97, 0x3ff013ac191b3a95, + 0xc00b6d832ab65164, 0x3fe50ab1c449415c, + 0xc012002eab11af73, 0x4000d6cc0065b6d9, + 0xc00c11d78d6ddc51, 0xbfe48f44e7d5e614, + 0x4013ab054c100e28, 0xbff610da0d951168, + 0xbff56e0a207c8fdf, 0xc013f70cdc7ae14d, + 0xc00a8623248b29a3, 0x4010a3ce6ef58c16, + 0xc001429bc609ceb4, 0x3fa46576d5e9c000, + 0x400432ae89401f8e, 0x400f253e180f6a68, + 0x4005d10cc446f804, 0xc011c209e7afa220, + 0x4015a2c336c3883c, 0xbfe77b2324f5234e, + 0xbfdb093056fecd64, 0x3fee09235472962f, + 0xbffee82e67e7264b, 0xc01306d11bd11afc, + 0xbfd6764d47f47d78, 0xbfea2fbfb7cd2204, + 0xc005cd8a695904d3, 0xbfe0fadd24adfb4e, + 0x4003a0fb7b61eb22, 0x3ff5381d1b24c6ba, + 0x4008cfa5a206890b, 0x4002124495d32c06, + 0xbfef23b4715bbbea, 0x3ff2c5dff87490cf, + 0xc0098b3911ad6cbd, 0x3ff6c15b74babd5b, + 0x3ffe4f52dbd4b090, 0x4000c52a12727cf9, + 0x4010222e8844f60d, 0x400b7b46625663d0, + 0x3ff4d842437b4e40, 0x3ffd47d75b700d4d, + 0x3fe9de47a2f0144c, 0xbfad5d90cae9f450, + 0xbfc794a0b5ae177c, 0x400b434fcd16b574, + 0x4002d910697fbe05, 0x3fc6cd2aad6c95c0, + 0xbff653b7f425893b, 0x40065c4ce5b23e04, + 0x3fe165eca9e2007a, 0x3fe551a2112d6a94, + 0x4004377fb010481c, 0x3feffb9154ceae49, + 0x40034912b1f8750d, 0xbfa3b40bb4902a80, + 0xc00e296a0ad8b306, 0xbfb214f9239612fc, + 0xbff8183808fc2b42, 0x40020f2a21b1938b, + 0x3ffd0c855979fa46, 0x3fe0914cb8bc1e13, + 0xc003c6cc86421bda, 0x40068a743c2a96b4, + 0xbfd9a8207f95626c, 0x3ff536d74285d51f, + 0xbff0174c258b45a0, 0x400d0455e32238a2, + 0xc0066332b37b4778, 0x3ff8ccf238ed16e3, + 0xbffbb6b9da4dd9fc, 0x3ffb4161baddf6e8, + 0xc011108b07de9cdd, 0xbffe162a8baa2a3c, + 0xbfefc767d97f2720, 0xc00667604c24a2a4, + 0xbfc5b98f3a5d6cfc, 0x3febe81244418535, + 0x3ff9a0351016ded8, 0xbff2cdc0a89cb233, + 0x3fb05d6c75fd8340, 0xc001470bf937319e, + 0xbff05b7ba06b1ed1, 0x40069fbe9ae6a0d9, + 0xbfd31c31a8c9eea0, 0xbff1f05c54642df0, + 0x3ffd640bc91e9a40, 0xbfe01a220f847b76, + 0x40011d33fc953e4d, 0xc006b728ba50f61c, + 0xbfcbdb9165cdf050, 0xc00b76e6e8bd9b35, + 0x3fd3504e781737b5, 0xbfa57da595021500, + 0x3fbba373cfcde748, 0x3fc161679ec23d08, + 0x40099685e7884f73, 0xbff0511b0e37376f, + 0x3ff957c922e64eca, 0xc00b0eccf5550e76, + 0x40012b27d14e0612, 0xbfe195f1565dfd12, + 0xbfd07c4858d1c3e4, 0xc01703d8439beb20, + 0x3fc120bc789fc97c, 0x40163a4cdd756a59, + 0x40041966ec4e85b2, 0xbfcef9b7d74c55c8, + 0xc00066201c9316f4, 0x3ffe0c9b367d0c5c, + 0xc001eca93ce0cde1, 0xbff4eefd98e08fe0, + 0x3ff15007b8a25684, 0x3fdf0929db334f7a, + 0xbfe3a85bc63a426e, 0xbfa22ba2d5b86140, + 0x3ff04f509ecdec6e, 0xbff6a4ac85b975be, + 0xbfb2db941e55fbf4, 0x3ff9370c77daef5f, + 0x400a61421f2085ec, 0xc002dcf540616732, + 0xbfe27ef639e44f86, 0x4000b7964f966478, + 0x3fe140d4ae9ae504, 0xbffa16151655b1ae, + 0x4001527d74371a88, 0x40042d53ac71f647, + 0x400d59ad427039e4, 0x3fe5829266c04a0b, + 0xc0065bd580db9872, 0x3ff94de48d0b6057, + 0xc00e662b360eab3e, 0x3ff1e5968b67048b, + 0xbff0ce1970108413, 0x3fbbe6f7acc5ccc0, + 0x3fe47ab4e2a51104, 0xc0052efc21fd2370, + 0x3fde5ec025e3eea0, 0xbfde23a6a8db0250, + 0xc008e317a4e14d38, 0xbfe698cce2d5b4c6, + 0xc001136394b40631, 0x3fd0cfec37518482, + 0xc00211817c95deea, 0xc0018295b5b82580, + 0x3ffb9e7d30602d83, 0xc00237d4b9bd6f83, + 0xbffd8d2b5bbe08ce, 0x40067df0e9a8f2fc, + 0x3ff3273958941fea, 0xbff348c133067f30, + 0x3ff5777d11bb6568, 0x3fc1d79f293f1718, + 0x400b55be658f63e9, 0xbff7e64bbe550093, + 0x3fe6b09afbc82b2e, 0x3fc53613bd8c0810, + 0xbfcd31fa30e2ccb9, 0x3ff685a7550e58f9, + 0xc009287856df0297, 0x3fa0f262371c8220, + 0x3fee6fe6b8497b25, 0x3fbf066802d1d6d0, + 0xc00bff21476d3976, 0xbfe9e3e818066a87, + 0x4006eb8d9ccdf3f1, 0xbfd3a4f3f97ec88e, + 0x4013fb2dcf5f0f60, 0x3ffcdbe1dd1c6744, + 0x400d0b8356c5081e, 0x3ff11c53896d9a7a, + 0x3ffd467a09d9d9eb, 0xbfef6b73121f9520, + 0x3fede08bf4bbc214, 0x3ff8101f3a229997, + 0x400c58ee212f004c, 0x3ffb556e8125003a, + 0x4002a86611911d2e, 0x3fd0003e6cf1ea58, + 0x4000566e23ea4d23, 0x4000aa6a35ec0cc5, + 0x3ff8365c46ca206b, 0x3ff30b3d6488968c, + 0x400d0c59b58f9058, 0xbfd3803002b3b1a2, + 0xc011860f09815a8a, 0xbffb150f3cbd6314, + 0xc01093023c99a032, 0x40101c99650278a4, + 0x400661fde12c1ab4, 0xbfc4f144f07d8407, + 0x40026372d81227fb, 0xc00294c21316eeeb, + 0xbfeb16a191778050, 0xbfc3b15aafac931e, + 0x3ffddbf4872e5536, 0xc008c2e192304098, + 0xc011552a0c20b42c, 0x3fa6f5f8f86a7270, + 0x401e090415e0bade, 0xbff4607eb24e4e7e, + 0x4006e9aa969003ff, 0xc0007049c39f002c, + 0xbfad04bafbf355a0, 0x400118c34a14a0f8, + 0xbffc84d90adef51d, 0x3fd3b81c8c6a146b, + 0x3fe59fd5a7760a62, 0x4006a1237807911c, + 0x40105604da3ee595, 0xc008d5311cd9ed10, + 0x3f9b4fdbc95238c0, 0x3fe6c1ee285c9ed4, + 0xbfc9f5b60a9cad58, 0xbfeda541640b4548, + 0x3fe96ee06a17c964, 0xc00e5e7438de8d42, + 0xbfd45f7e0e0018fc, 0x3fe73772f0db9942, + 0x3ff2ec86aaf8384c, 0xbff2b4774898010e, + 0x3ff0f89a4dd79671, 0x40033cfcd114c26f, + 0x4002ade2dfd0cdfa, 0xc010e4da161c874a, + 0x3fc101dd8c78e7d0, 0xc000c78df5a74c19, + 0xc00d9fa2757635ac, 0xc00ad707f603dff8, + 0xc00a7b3896c8cb19, 0xc00c6a60c793320d, + 0x3ffc8b2660962289, 0xbfed0d418958cb56, + 0xbfeed460b2bf3e48, 0xc000d65ef745d4ae, + 0x3ff16182948936da, 0xbfe3ab1ae4f48044, + 0xc01196d22b203ac8, 0xbfeba21ef1d5bd30, + 0x3fffb84b9b28c100, 0xbff7aabc5fc3a20d, + 0x4009b25c8991d86b, 0x3ff2272a001c7d48, + 0xc012333cf3bb4a44, 0xbffbf4ed8ccf5efd, + 0xbff23078eabe1a7c, 0xbfb1c0e8ef291a10, + 0xc00eb3cc266b2bbe, 0xbfb142e288b133a0, + 0x3ff23da231c340c8, 0xbff7a66eec78b5b0, + 0xbfe8d739a40b4c27, 0x3fd86e4d662bd716, + 0x3feec745e63a177e, 0xbff4ddd8c6eece6f, + 0x3fcd299a4269d410, 0x4005b43bde8d3bee, + 0x3fe7375ea6d67737, 0x3ff2e6daf4eee34e, + 0xbf8934373c573cc0, 0xc0052dc67836d275, + 0x3fd6700790e18593, 0x401c0da74ec2623c, + 0x3fc4a8ccddeb1130, 0xbfe6c04f6d58461b, + 0xbfebe85f0e99ae1e, 0xbffee452886a0348, + 0xc0048ec26e46a947, 0xc0002b5d2cbcdd7e, + 0x4006505d21e35911, 0x3fffe109d0f28c5f, + 0x3fdd57f381d9193e, 0x4007dfa494915318, + 0xbfee814da823d3f0, 0x3fb35e702cacd248, + 0x4000734ff8bf32d6, 0xbff8cab4e9549c84, + 0xc0056ff1ad19a806, 0x3ff20fd02882c5bc, + 0xbfc872cdc116b7ac, 0x3ff056e0157bb1ac, + 0xbff1ce844c4b6199, 0xc00496f66757416e, + 0xbfb83f5c5fcc2e38, 0xbfd9aafe684b1598, + 0xbff8fd12893b27af, 0xbffc0a082f9a0aac, + 0x3ff92338b2b0a54d, 0xbffc514ad5190be3, + 0x3ffe9cd65d92831f, 0xbff8b83668fcb8c3, + 0xbfc03d281c2c51a5, 0x3fe546e10442cc6f, + 0x3fff93a039b67ca8, 0xbfd8c09e3db19244, + 0x400839a5bb0311f6, 0x3feffd6cc5c1369f, + 0xc007896d6689aa8b, 0xc001b423f5470b46, + 0xc00798a1966f5b10, 0xbfa4fe67ba068f40, + 0x4000c9c4e657e0bd, 0xbffb3f4d354af6ca, + 0xbff61c197c16abe8, 0x3ff392fac025b149, + 0xc00581b901a72ab1, 0x400d8827274a9363, + 0x3ff9b74bd7960935, 0xc016dbec4b44d78e, + 0xc013f41ba46f9621, 0xbfe0a4b82a2d6493, + 0xbffceca60d6ea93a, 0xc00434859193ab15, + 0x4007bd834cf39711, 0x3fff96f6dd8845cc, + 0xbfe3f0022ab88314, 0xbff684cbb3ebcf8c, + 0xbfde7b80685a2c9c, 0xbfe92b28f114b45c, + 0xc016767828a4d965, 0xbff54946d6b6656c, + 0x3fe3b74783275cf0, 0x4001e2a80564f1b5, + 0x3fec586e5cbb6ab6, 0x4004511646b6465a, + 0xbff0306133dfca64, 0x4000acd69eba4886, + 0x3ffd818adfd022a1, 0xbff22aa60f187a6a, + 0x3ffb6ab37b50e863, 0xbff1923049bf88c8, + 0x40010178fa15139c, 0xbfbbbcc1015fc7b4, + 0xbfeba19c4473ee1d, 0xbfd7cbbbed6da5a9, + 0x400721c51ff21a6e, 0x3fc8727d32c35580, + 0x3fe3b5de5a0ff2a2, 0x4001e0055895db72, + 0x3ff953286eb7e693, 0xbfff8006318aec5b, + 0xbffa62afa933c8b8, 0xbfd79878cb9d74f0, + 0x4003625494b85891, 0xc0098c5d4b28d247, + 0x400c1d522008c87c, 0xbff7dd5bafbde314, + 0xbff11e83df264c27, 0x3ff745bf6a320c0c, + 0xc002259ab3dbb5ee, 0xc000a4bfa7f13ad4, + 0xbfdc5fd54fe2a788, 0xc002e2b0780b43b0, + 0x3fec2d982e3c29bc, 0xc008491e36ee9769, + 0xc014a6ba6697e287, 0xbff44f6b6085a8ba, + 0xbfe5e137acdda462, 0xc00579966197700c, + 0xc00afc0981fffea8, 0xc0117989615baa2e, + 0xc00fa8f0fd6914e9, 0x400c7350f1534ac8, + 0x4013144613bd130e, 0x40044f73e1277a58, + 0x3ff1339964cb6efb, 0x3fd48b6fb13142ee, + 0x3fe83437fc29cade, 0xbfd77cadd6cfea94, + 0xbfd9ec37d8cae060, 0x40043f3f3c192f2b, + 0xbfb00b10cbd0dcc0, 0x3ff1854f8e97ccc5, + 0xbfc129a2648004b8, 0xbfd88d06956f5e28, + 0xbfe6469edbfb3084, 0x3fe8a74bb3f00e70, + 0xbfe659278e2e0b28, 0x400a92dbdc237a54, + 0x3fe6102868dfd1c5, 0xbff34b899f2d4514, + 0xc00308c58a55a3de, 0x401563001894db7a, + 0x400c6c4357240428, 0x400387d49255f5a2, + 0xbfe374a183d59a43, 0x4006d15585d128eb, + 0xc008a8cf5bfaba2d, 0x4003482f50677e96, + 0xc00531fe3fa43e82, 0x3ff6a389a7a02b98, + 0x4001d4aab36d53ae, 0xc01169dcb5c0310f, + 0xc00523d737e4620c, 0x40110833eb79bad0, + 0xc00bdc62dc84179c, 0xbffde044f7162cb6, + 0xbffa8675339ff7fb, 0xc005e07d2b8b2370, + 0x3fdcb9e820ca0330, 0x3fdbe3b3af209755, + 0x3fd98981cf7fdc0c, 0xbf8702c4599a9f60, + 0xbfb143c41443315a, 0xc01118087a49d4ad, + 0x400670f3dfeb08e5, 0xbff933e9503107eb, + 0x400751d958e301fa, 0xbff5a2f4fa2c1465, + 0xbffd2d118a30417e, 0x40086508303ca46f, + 0x400600f05218914a, 0x3fe19a1fdbce5888, + 0x3fbde463809fe658, 0xbfe25d7793705439, + 0x3ff61c9cc1d11774, 0xbfe7d064a927c91a, + 0x3fef5e20e84b301f, 0xc00e0538d8e43cc8, + 0x400d7f211cbc4cba, 0x3fbc9d27613cd746, + 0xbffa56d2e59e38fe, 0x3ff7367f4ceda442, + 0xbff3500f3de10ceb, 0xc004802d92079a54, + 0x3fe3eaf291351834, 0xbfd496262010cf9f, + 0x400cb410b7e66b09, 0x3fcb6a4804e40464, + 0x3ffdf89b172f0152, 0x4001d9f8e2c89962, + 0x400eafd90f0b272c, 0xbff25d1cece9fc70, + 0xbfd5963115cb3548, 0xbff4447691f4e7e6, + 0xbfc261cc1d161e40, 0xbfe0950408e26114, + 0xc00fe9b18e151e5a, 0x3fe9346a810f550e, + 0xbfc11baac1d41a9c, 0x4006657989076338, + 0xbfb32e34b53ac620, 0x40005408aeccfcee, + 0x400b9885edb9b041, 0xbfea3822a7ad822b, + 0xbff29256518b0c76, 0xc00913d108b88c76, + 0x3ff0c46e3662e9eb, 0xc0043de481250170, + 0xc0021ee5b85064de, 0x3fd534c69c34796c, + 0x3fd2ea75f1d84a7d, 0x400374168909c468, + 0x4003dcd5ab6f9653, 0xc00ed4b835b2fc89, + 0xc0010187ad3aa7b2, 0xbffb0fa414ced048, + 0x3ff58395d27c712b, 0xc006b549d72c2bde, + 0x3fd502b0a43b07d5, 0xbff0e057ac044266, + 0x40123d762575a99e, 0x4011f9b261e959ce, + 0xc004d33a5f481304, 0xc00adcff342bad21, + 0x3ff70e65bdee4aea, 0x400efd2abd09802a, + 0x3feb21cce8969b75, 0xbfefb8c61af73866, + 0xbfe58276e5705ff4, 0x4009a09365448dd0, + 0xbff550a08a81315c, 0x3ffb3e53f4042ecb, + 0xbff0cfc3c33ccbd5, 0x4010a5ef8cb3a4b6, + 0xc00417c262f72579, 0xbfed14cf371a9e9c, + 0x3ff7d1bf43c7fa00, 0xbff59b5ef83d85ae, + 0xc001d3e98ddb1ae3, 0x3ffab95ecc57c968, + 0xc01a0936793f9e66, 0x3ffefc0f68265be0, + 0x3fcd80e7300dcb20, 0x400b533e8c6b4d9b, + 0xbfe5538c81384f4c, 0x3ff39655a379322c, + 0xbfff26459e1d4f10, 0x3ffdf44c8ce9e542, + 0x3fe4e12d6878a0b3, 0x400741914c778a07, + 0x4008fe106c07abce, 0xbfc276827c20e510, + 0xbfe3ad6caa276046, 0xbff394a8cb2107ff, + 0xbff8c0f0e5489f06, 0xc016c872b1a26b32, + 0x4002f7b904de5d59, 0xbfff9acad6fe632b, + 0xc007507c9712cef0, 0xbfca874d590ed41c, + 0xc00ca691007d618e, 0xbfa1683e9a14c85c, + 0xbff243afd818a1f2, 0xc003e9d5ed831f95, + 0xc011171537a86e14, 0xbff68df6849fabeb, + 0xbff8a4a21496d608, 0xc0016cc0b28bc971, + 0xbfd2146b8a02da20, 0xc0033ebdca0a448c, + 0x3feee6f7c705fc58, 0x3fefc6bcfeeebd79, + 0xbfe2e911adfc9271, 0x3ff40fded65956ab, + 0xbfee583db6cd317c, 0xc00a6d9e66c9b03e, + 0xbff39676ef578216, 0xbfe1461fd4149bf3, + 0xc0103202846078bd, 0x3fe39dfd815e64f8, + 0x3ff6a900026ae30d, 0xc00917a5cc05f36a, + 0xc009fe74b5d8abef, 0xbfeb666c145fbb08, + 0x3fce86719a7a4641, 0xbfe09722f37856fe, + 0xbfffee5eac70ead0, 0x3ff2f5a453028c0f, + 0xc0030de93906339c, 0xc0031abcd7d3da06, + 0xbfb51b9f834a7ac8, 0xc00d1a2fd738e085, + 0x3ff2074cc0b75e94, 0xbffab004caea7310, + 0xbfd7cc6b9fad5f02, 0x3fff6fc4fde3ad86, + 0x4011da18d0b5fcf1, 0xc007eb8b749fce46, + 0x4011082d85876b2b, 0xc01314e85ab30c7a, + 0x3ff9061704b3d73e, 0xbff850e808cfa605, + 0x3fe69cf70beab831, 0xbfdf44d450ed7e98, + 0xc00682dca352b651, 0xbfda0ff71133860a, + 0x3fb358aa20ff0b60, 0x3ff318c58f762fe7, + 0xc00e5b783795204a, 0xbff6e7c68fa4599a, + 0xbfd81d75e29c1fbb, 0x40048870a02984ce, + 0x40009def10099b84, 0x400bfda7f5987d25, + 0x3fc6361a2dee0b50, 0xbfe21f5d2df7eca8, + 0x400da94f413a3c7c, 0x3fe28816857a3ce5, + 0x40054bbe1f605bec, 0xbff3639cf751b780, + 0x40008252fb4f5a51, 0xbfd2860f76260e28, + 0x401262adeddb3ae6, 0xbfe461cf1963e89a, + 0x3fdae4d4cdacadb5, 0x3fd00e095302d430, + 0x3ffc27e1198bfa9f, 0xbfc1bf1cfe0e38c4, + 0x40019165361a30ec, 0xbfd350970049d3ec, + 0x3fdc05eb20218904, 0x3fd3d7226c11e18f, + 0xbffb063c44abd6bd, 0xbfc5fab2deac17ee, + 0xc0008bc948fa8c8c, 0xbfef26440743db6d, + 0xbff3dc52cc2da682, 0x3ff2152d9a408b5a, + 0xbfe6acec994b2910, 0xbfff9542df3fe9ee, + 0x3fe4d856c517efac, 0xbffbb0ec270801fd, + 0x400b67e102d91e58, 0xbfce826bd81e21aa, + 0xbfbf71214a21f708, 0xc00a2c74fde1060d, + 0xbff6d097a0f4c001, 0xbfd47c73824e60aa, + 0x3ffb0c6697250484, 0x400caee9e887aee1, + 0xbfdc51a6386c0489, 0x40081803d2ebea84, + 0xc000c53ea3c4aeee, 0x4012d389bb96b63a, + 0x3fbf1cffd32f84c0, 0x40013ecdedf0ec86, + 0xbfef68a5180f81ca, 0xbff9aef1b9ae3e14, + 0x3fece99c0ed66ab7, 0xbff4727fcb6c723e, + 0xc0064f230b7fadc7, 0x40115d46a01d1d1b, + 0xbfdf9af9025b93c4, 0xbfc6acdade5eb527, + 0xbfd250321f9550bd, 0xbfe7cf0849df8d10, + 0xbfeaf1d751433864, 0x400293c579c9948e, + 0xbfe0c6ed6d26f95d, 0x3fe68e39a51a351a, + 0x3fe0b75863c7fd07, 0xbfcbe82d32f7b160, + 0xbff968f9fe49a27d, 0xbfea7bc4cd6b7ee0, + 0x3ffe642934201845, 0xbffefff65090975c, + 0xbff7cd4bec9ea8e6, 0x400ec1b5fa92f6e0, + 0x3ff2adbd350c02fb, 0x3fe125900a8a2eb2, + 0xc015fd0d531533c6, 0xbfd1f8d40f759440, + 0xbff78771440f70ba, 0x3ff6886d673b876a, + 0x3fdaaa1bd8f2d9c4, 0x3fe317cd609d2236, + 0x3fef5183538f2ad2, 0x3fdfc661ffa5c86a, + 0xc00bb4213cb2aa64, 0xc0057cb660f74d2b, + 0x401181e64d32aa73, 0x3ff93c7312e5652a, + 0xc00c8333f4cddd6e, 0x3fd40db30a9ca24f, + 0xbfb5ac5c833a231c, 0x3fe37c4a151fd5ff, + 0xbfeaba8c4ec94720, 0x3fe30090ea9c47ac, + 0xbff5bc778b6bad18, 0x3fb0343d3dd92230, + 0x400e2c66fe4d9e8f, 0x3fbcc0819ec16da0, + 0xc01060e1c44b6019, 0xbfea3d6342dba2e0, + 0xbfe8b4091a09f53e, 0xc006ab1bed0e7e09, + 0xbfdb0cc3874c73b0, 0xbff8c586a8cc48e6, + 0xbffa2904f3674811, 0x3ff1b2840999ed87, + 0x40030e442dfb3168, 0x3ff9c00ac02b064a, + 0x3fe8f24b8ad04eae, 0xc00cb646811d7ab4, + 0xbfee5ab8803eedb8, 0xbfc64be77bacba20, + 0xbfd311766fe6d144, 0x4004eaab83edbbba, + 0x3fedca8b7e4b5bd1, 0x3fe6f2d1c9548775, + 0xbfded7ecdf1ee6f5, 0xbff74532ae241b37, + 0x40040550cbdb6f8b, 0x3ff07168cefb432c, + 0xbfefd9ecf25ccb9c, 0x3fe2bf79f177087e, + 0xbfe947990d0c3380, 0xbfde70558c87326e, + 0xbffa2026f3be168a, 0x4001574ce77f8665, + 0x3fc917d341baa428, 0x3fe795c803953934, + 0x3ffc882fef25af36, 0x400123657217b7ce, + 0xbfe260f0df227469, 0xc010d5cb56d18c16, + 0xc0060b813742d34c, 0x4002a7204cb355ca, + 0x3fface88e040c1e4, 0x3fc0ae716fc79300, + 0xbff12fb604398e2b, 0x3fe2d4364ba70b07, + 0x400349717fe87d1e, 0xbfec210c550dfaf6, + 0x40016237af12db63, 0x4007fa7d7f3dd779, + 0x3feaf8fc0be582e2, 0x3fe6e48bb7714c36, + 0xbfeeb12048b9ea16, 0xc002bf191021dce8, + 0xbfe6e5abf386038c, 0xc003f6d17c0cf104, + 0x4004c5cda57c2f08, 0x3ffb2c9059b92476, + 0xbfd86edc5dbc35ae, 0x3ffaa1b6504535b3, + 0xbfdf8564837957bc, 0xc0031c0074679830, + 0xbff2747a7f961b8a, 0xbfd997af02d89380, + 0x40054ac1dd6c465a, 0x3fe2fb4c25538c3c, + 0x3ff32637441e7196, 0x400a131ceb77e34a, + 0x3fd2946d24f8e5ea, 0xbfb07c28ccaa38d0, + 0x400acbfdf015c2c4, 0x3ff59afe89a332e7, + 0x3febc5d5815ee6b7, 0x3fd5e4376cd6e1b1, + 0x3fee4b372034bc5f, 0x3ff845d2489f6cd4, + 0xc009dbd35f4b6e10, 0x40018c766be035a6, + 0xbfebabc24ec613cc, 0xbfdd692adff8b0ca, + 0xbfd376958783c050, 0xbfdf21ab654f184c, + 0xc00a1779ca7a784c, 0xbfe97f8a480b806b, + 0x3ffb651a24aee7c1, 0xbfe632d918bd75ae, + 0x3fbdc88956d5cbe0, 0xbfe9544683056c29, + 0x3fcdcdd293722c00, 0x3ff9dec168428182, + 0x3ff3e2668f188f02, 0x3fe17cdb36391976, + 0xbfe41f2bcfc974de, 0xc0061be40e90e898, + 0x400ce79058d8753a, 0x3fead7e828b89db2, + 0x400a49089605c3ec, 0x3f894e998a0b29a0, + 0x3fd61e47885c224f, 0xc0001df08db90250, + 0x3fd1678da0819153, 0x4001158cc88c1c26, + 0x3ff9862231fa10f6, 0x400512a45624747c, + 0x40000b4c451f81af, 0x400cfe56683a55fe, + 0xc00328bf58800cc0, 0x3fc44b75508876d4, + 0x3fe8e12b767bf846, 0xc004b50b0ca74570, + 0xbfef021a3d238a11, 0xbfda6c473b37681e, + 0xbfe7f8192c1734d4, 0xc00b1e8795c2b39a, + 0xbff202cc35ddd95c, 0xc010eab0301fe51c, + 0x3ff8b3e0fbb3402e, 0x3fea64d96e84e0cf, + 0x40006d26aa5152de, 0x3ff9f27b40e4562c, + 0x3fead5bae46e6d89, 0x3fdda64d05ec16e2, + 0xbfffb691a1546dc8, 0x3fce70ae5eba5740, + 0x40103be2f1ab432d, 0x3ffeb1cba91ae1b4, + 0x3fe4e429b2304cb8, 0x3ffd815fc946195e, + 0x3fdbc43c3a613d22, 0x3ff919ab8e2f75ba, + 0xbff05ce4e93e09b3, 0x4006106340cbfe31, + 0xbff990b8393fb212, 0xbff2c64dc37e3bce, + 0x4005c3988a2d7b25, 0xbfe29963a1e13b24, + 0xbff39fe61549bc4a, 0xc00255ed141952ab, + 0xbfc3533277b76968, 0x3fca9f0751c22168, + 0x3fe166a003fdb07a, 0x3ffb2bb883783180, + 0xbff1765fecd58cb2, 0xbfecd950adec0aaa, + 0xbff1796ac9fd28e3, 0xc00c66587924f43e, + 0xc009da5adae018a2, 0x3ffe285c18cb707b, + 0xbfd688daf05f29e0, 0x3fae0b8135289b60, + 0xbffb58a42c390c80, 0x3fbda521f733c380, + 0x40039f3d770621f4, 0xc008d744bb8b4fea, + 0xc0067180e6bf4b15, 0xbfe642e2584cbb69, + 0xc005de68da691e86, 0x3fe892fbc538a5f4, + 0x40110c75d78f8532, 0xbffa80d9016c83c5, + 0xc007944659ed5193, 0x3fed18e522bff161, + 0xc00d66999b09ced2, 0xbfac30c5e845c9c8, + 0xbff64ecd32e70824, 0x3fef186eacd43f5f, + 0x3ff393abbb497073, 0xbfe381cd7522eee6, + 0xbfcc0e0573c5e644, 0xc00cdde5834fd6e5, + 0xc00bea7af0a643cb, 0xbfe4a7ac250b956c, + 0xbffc6b3cf28a8904, 0xbff1ae1fe8f5ff5f, + 0xc01295a4525a1e39, 0x3ff4bd3663c8939b, + 0x3fd0bc4459e7eaba, 0x4004c5d70a81b88b, + 0xbffc89cd936f553f, 0xbfdbece0129c3d45, + 0xc014730d9d13813c, 0x3fd60e9520ecb691, + 0x3ff94d818e281f76, 0xbfd8dc941ffd92da, + 0x40143716fb00a61d, 0x400eb16ddc2ba212, + 0x3ffdbf5d5a26e784, 0x3fe1cb7d9f026045, + 0xbff0224af2e35ce6, 0x40075fc6e7f635c5, + 0xbfe0d488edc4a182, 0xc003e8b75e18104b, + 0x3ff3f20848e6b9a7, 0x4010fcb7f9fe3521, + 0x4007fdd456b9bd40, 0xbfddc2be13c39a40, + 0x400aef9c3a55acdb, 0x400d5825b4d9c8d2, + 0xbfe89b31aac912bb, 0xbfd3146a826ea02f, + 0xc00aa1145ee1213f, 0x3ffaec1589a3893a, + 0xbff174d3efc47b75, 0xbff5864c161898fb, + 0xbff08f5077485c28, 0x3fb5108a0ac6f3fa, + 0x3ff8b7ccf106b36c, 0xc00468599360eccd, + 0x3fe600e335c96318, 0xbfaf8fcb64d6a4a6, + 0xc003be6188e9ba8c, 0x4016f5de9957310d, + 0xbfe939dc0fb16d1d, 0xbfd5bdcfc1fdb4f8, + 0xbfe992ed22174a0d, 0xc0055f6af23d3380, + 0xbffc2a338cd02e4a, 0x3fc765fb697d00cf, + 0x400c2e3c039b041e, 0xbff752fcd9194d0b, + 0x4011de0eddb61e74, 0x3ffdfd4c04ed8345, + 0x3ff95d4b07225498, 0xc00576af6feef700, + 0x3ff3b3d892c979fb, 0xbfd68f4d3810430a, + 0xbfe36080c9af7dd4, 0xbfe2c1e0a37a392a, + 0x400794f61d0329d8, 0xbffbe68b41fdb5f6, + 0xbfcf4c6f7386db0c, 0x3fbf5a725c7e54e8, + 0xbff0db70614f4475, 0xc0178b494fcf6697, + 0x40122773f7fe5ad4, 0xc00f6492de81ac3b, + 0xc00657bddb2963ec, 0xbfeb4eb74e7da412, + 0xbfd396a87a3a989e, 0xc01346188367fa1c, + 0x400770762a6cb851, 0x3fb0c2026c097775, + 0x3fe9c62780512be9, 0xc006165e3e4500e2, + 0xc018f62fe44a1a84, 0x3ff521008a40975a, + 0x3fe864a8cc8c2e26, 0x3fd69f1cae4a9afe, + 0xbff0bfd371da2536, 0xbfef2989ec71bd86, + 0x4008e077413cb05e, 0xbff79e21ef268bc1, + 0x40065940a4038e60, 0x3ff7d3caeb6e5366, + 0xbff792fa8aae0eaa, 0xbfbdbbc9ab4d1420, + 0xc001ce703d5a670b, 0xbfe0161db0103c26, + 0xbff7be3c8a5041d0, 0x4005836994008a4d, + 0x3feb30e646434cc4, 0x400c9534fc2460a6, + 0xbfab44afeeae8fa0, 0xc0076243882388a2, + 0x400ca2f715c98670, 0xbfd4b9253f59aa0e, + 0xbfed4e5b2e75ca56, 0xbff825e6f419da02, + 0x400338a644ccdf20, 0x400073197e4a4a71, + 0x3ffb14c7a1c88d6f, 0xc0126367716c19cd, + 0xbfccfcdc86f57628, 0x3fd81661295040ce, + 0xc0134528c8599ee6, 0x3fc973a9c65a7440, + 0xc00312663afd71b6, 0x3fda18dc0e230470, + 0x3fe50bfd0b7522aa, 0x4003a445423dac5a, + 0x3feb0571682f9a84, 0xc00757da22f98514, + 0xbfe0770dd849774e, 0xbfd548cca01d5d34, + 0xc002d6cf848e7884, 0x3fee4425d1e9e142, + 0xbffa9854c1ce7e72, 0xbff368d36b0b8447, + 0x40101aa4ea471d99, 0xc006efe5fd1bf59c, + 0x3fd296ada2537eca, 0x3fee66b48c9f63c0, + 0xbfdba169ad9df868, 0x40037d1f3a77f8c8, + 0x4000fe09ce23e597, 0xc013a471c102561a, + 0xbff27b02f694a4c6, 0x3f8987cc78544b80, + 0xbffc71b1af25fb6d, 0xbffbc3a1097f88e7, + 0xc01065692fa519e5, 0xbfe3546b8550320a, + 0xc0130519534d0a76, 0xc00348e752523f98, + 0xbffa4109155abb26, 0xbfeae9672a1b6cca, + 0xbfe275f9ae169340, 0xbfd02613fb1f11b0, + 0xc00eed9c552f2e3a, 0x4003b6ca5a6f4344, + 0x3ff89b7e2ac008ce, 0x4001f7fb682804ee, + 0xc007992270240da5, 0xbff6e56236b741b0, + 0xbfe86acd04e9a6a0, 0xbfe1f9bee158d9d6, + 0x4005db2b0765c945, 0x400d40902d3a1404, + 0xc00be4b3a08cc430, 0x3ff3eb3fe6ebfb95, + 0x3f8c0b4ba145c440, 0x3fdcfba461329048, + 0x4008c3ad134926e2, 0x3ffde0fb93c71861, + 0xc00cce20b85b87d4, 0xc01192f2c3754691, + 0x40162700a3d12695, 0xbff60a2e74c7c60a, + 0x3fe12924d4537704, 0xc00380b7318f5c31, + 0xc00185f15dd78276, 0x3fde662a088c6231, + 0xc0154e5da924e7fa, 0x40062404356205ff, + 0x3fe22a838f664315, 0xbfffd66fbdc8dd8c, + 0xc0012b9556aaea6d, 0xbff2149918b97c3a, + 0x40020cfd6dcbd6f3, 0xbf90924a2b1a80a0, + 0x3fffc002d0bc09f1, 0xc00cc16858413a8e, + 0x3ff8c0e96f82f67f, 0xbfd2d650903cc3b8, + 0xbfe594b2301cc9ca, 0x3fdb650982c18b0e, + 0x3fdf0ddfee22e09a, 0x3fe83b289f154ccc, + 0x4006bec9f33a2372, 0xbfec28deed885edd, + 0x400255bbf47e2f32, 0x4001a6f77cc758d9, + 0x4011a9ade1ba5c4c, 0x3ff1b285d592b9ce, + 0xbfd976d9461480f8, 0x40026a03e8a80a2b, + 0xbfeb9ae8a62c1628, 0xc0042ba497961030, + 0x400a1e1ec3fb749c, 0xc007b1dd8c1bd81c, + 0x3fdf69ec1cd6c7d0, 0xc00a60ea23f1d1f8, + 0xbfdbbaea80808221, 0xbfe3e2ef964511c4, + 0xbfffd545b31f8ff3, 0xbfd40ed2831d61b8, + 0x3fa9d62a60ed18e0, 0x3fcce44bbbc5b720, + 0x3fd6ecf412352b33, 0x40133a155e0d9f19, + 0xbfd96cda2908537f, 0xbff8222607222104, + 0x3fca9ed4136c1a9e, 0xbff67d3896109d9e, + 0xbfe3650e54cb9141, 0xbfe46df2e31572a4, + 0x3ff63851515d8f29, 0xbff5cd1f6df05f0a, + 0x3fded032a11a679a, 0x3fe8fec59187f65c, + 0x40079775d3648d08, 0xc00004e3c2508b11, + 0x3fbad3234960a970, 0xc005d38c728f842b, + 0x40024e4f6622802b, 0xbff6ed1e5b3099de, + 0x3ff9dcb438a88efb, 0x4001de3316da9ca1, + 0xbff4804023c5f4c3, 0xbfbb4ce8d70c42d8, + 0x40157932dfc636f7, 0x400aa513ec109136, + 0xbff895a6e054219a, 0x40116709b02028a6, + 0x3ff27cde0285a5bb, 0xc00529e7e475d0ec, + 0x3ff0cfd59a68636c, 0xbfd4de8f422cb7ec, + 0xbff5cdc86f729b6f, 0xbfe545280baf1d00, + 0xbfc5667b647c2cfc, 0x3fde70754b7166a4, + 0xbffd23213fc4cc2d, 0x3fdac6d84ebd4bdc, + 0xc00037dcdf23d1e4, 0x3fe3bdbbb35fa0d6, + 0x3ffda0c897f7478c, 0x3ffd9272765c1f60, + 0xc000ef6660a67f9d, 0x3fe41149d4a012cd, + 0x3fbbfa36d0311688, 0x3fd971fb45a128c8, + 0xbffc0e54301ca178, 0xbfc466e06b9c3b5c, + 0x40101dc4b6539838, 0x3f9a2fb9237c9300, + 0xbfff70ae7561dffd, 0x40062eaec04b0330, + 0xbff062493dbd4a16, 0xbfe9e2e9fc972274, + 0xbff0c2f1d1353a75, 0x3ff37ec0b9dad7aa, + 0xbff5f21df474d2fa, 0x3ff963c19ef3ac8e, + 0xbff0c9a299b59c4a, 0x40062ae98e15fe55, + 0x3fe6c05b7158db1b, 0x3fce2e349e1bafe0, + 0xbfdf73379ab392b7, 0xbfe8f8199800aef0, + 0xc006ea15cd7c3bf0, 0xc0044c0543335b94, + 0xc009426c3b113728, 0x40138acb2b4b5542, + 0xbfefae6422a04786, 0xbffd664aa5f8c0b8, + 0x401572578e0119fc, 0xc015c9fff1fd8970, + 0x3ff4c58c1ae450de, 0xc011e1c6c1c37fc4, + 0x40188c35030cf893, 0x3ff08e414ac09e54, + 0xc005f40fa0fe6cc2, 0x40005bc36b7af086, + 0xc000c2f0bb28b5e8, 0xbf9582c18b3ef5c0, + 0xbfe4dd5dbac740ba, 0x3fded8977494343e, + 0x401899c4d8373c91, 0x3fe3961b8e1d16d0, + 0xbfddcff18593942c, 0xbfd94f6cb49b16fe, + 0x3ff94c7f7d2fcafd, 0xbfeb5aa3ab954a96, + 0x400f305418009b86, 0x3fd87c9cb097dd10, + 0xbfff71c434a4be2a, 0xc00c16b8f324e7f4, + 0xbfef8f9581a1d64c, 0x3ffffe6a4bcaace2, + 0x3ff6104048660eb0, 0x3fe8e527cd1bd8e6, + 0x3ff9e55709eaaf68, 0xbfee70b67e728906, + 0xbfc2a4f596906770, 0x3ff31963f8bac1a6, + 0x3fea5eee414344ce, 0xbff75eec27c3e769, + 0x3ff04b650ea8ab78, 0xc00766e08480813c, + 0xbfd5923f52c5e1a0, 0xbff73e9632fff544, + 0xbffeb78cbc37540e, 0xbff0b58b608b7039, + 0xc002b104d6f1f166, 0xbff9ff9d188bf663, + 0xbfe77408f7675f9a, 0x3fbff7f1a2bea280, + 0xc00a1bbd55e8e11b, 0xbfe8d7ab61cfabb4, + 0xc00ac1d4e3224ff8, 0xbfd5c1b0434f2afc, + 0xbfe953b0c56429c8, 0xc007edf16bc5917a, + 0x40089b63b77d7d5a, 0xc00c330ebfbf6ef2, + 0x3ff5fa9526cf1ade, 0xc00d2f2ca3710ec1, + 0x4005bcd15383c505, 0xbfe8ce6839939b08, + 0xbff504d98bf45846, 0xc004db3635026a69, + 0x3fe8dddcb3f389e4, 0x3fe46eef980cb636, + 0x3fd4d57fde904bc8, 0x400aaf073819eeb4, + 0x3ff7d86f1dc11d36, 0xbffc6bd77237cc00, + 0xbff538e36fa9c460, 0xbfdfef0aecc8f5a4, + 0x3fef15f84f583862, 0x4004b676172d2e5e, + 0xc0030f71fe691ade, 0x3ff16a76dede27c2, + 0x3fc1c491c9a93ed8, 0xbffad158907647e6, + 0x40018f17f0695fd1, 0xc001c35f6113ff43, + 0xc007334301602e64, 0x3ff90303114f93e3, + 0x3ff3d9601e39b676, 0xbff43c276ed4b72f, + 0x4006ad3af2bf55ba, 0x400f4738520d62a0, + 0xbfd18becbc8b8141, 0x400bd85bc8bdfa30, + 0xc0085a530dbb342a, 0x3ff8263c97044fe3, + 0xbfcaa41e025c8147, 0xbff935c5d1f789c2, + 0x4006e6e0a9294118, 0xc01306b3ca27fdbc, + 0xbfe0852e56d9ca8c, 0xc013fd5231bf231c, + 0xbf701365e3a9ff00, 0xbff0ed3d181c1b5d, + 0x3ffebd205e3ede39, 0xc00b4c88e7e1496e, + 0xbfe3ada08108d8d5, 0xbfd1d8b44724fb58, + 0xbfec33c722e24e7a, 0x4018cd5fdf80254c, + 0x3fe8456d6bca762c, 0x3faef25dd6abee48, + 0x4003ee7e7e97388e, 0xbfc519b8a09a2b38, + 0x3feb59a0649c28a8, 0x3fdb3c83d3db4090, + 0xc00d3969d20037d6, 0x3fef60df3d9b101d, + 0x3fed3ed6bc33ba90, 0xc006502776cd6f1a, + 0xbffec8f7bb2ec4be, 0x40080176387b50da, + 0xbff8ff28179a395d, 0x3fe7240118eec8cf, + 0x3ff153120f4fda28, 0x3ff442f2f13f7a25, + 0xbff6c31e743cdbd3, 0xbfeabc6235182acc, + 0x40117083ead04c84, 0xbffed49a9fe024b4, + 0x3fb9f001f007aaa0, 0x3ff4f5269608c6c9, + 0x3fe228d02ae45fb6, 0xc0003ab6e975ae24, + 0x3fffbe6768e89f32, 0x3fb3e6a621a5ef24, + 0xc0002bbe0bb43b19, 0xbff1c8d7fab1af38, + 0x3ff25ea00584c1ca, 0x3fe0fde5825d296b, + 0xbfef81be269a22d6, 0x3fe3a8472037bcf8, + 0xbff4d65b7b025806, 0x3ff4275ea0bc0c96, + 0xbfc7ba1b2ff76ed8, 0x3fed1bdf195a8c66, + 0x40108f1a03d5209c, 0x3fefd89ed53d8b47, + 0xc0015572ca1d4832, 0x400f4f4e61018b7a, + 0x3fe312f576fab893, 0xbff9959614eada14, + 0x3fe5ac92051563b9, 0x3fe1357084922bca, + 0x4003a08e9f696243, 0xbffb1d377261ea5c, + 0x4012f4ffeb6217d7, 0xbff24c045a001f56, + 0x3fe3432e9d905360, 0xbfca49cc028e5752, + 0xbfeaf59d06fa2a96, 0xbff8a07afa0404b1, + 0x3fd169b86a0c69f4, 0x400416fefd2ad3dd, + 0x3ff60777268c6d94, 0x3fd110e38158ba60, + 0xbfe1d7af853bc0e1, 0xbfc76882e37a6bd4, + 0xbfd071c478fe311a, 0xc0097a55c791e321, + 0xbffeaec4f2f7f9a2, 0x3fd0613beb107233, + 0xbff69f93c4e1fbb3, 0xc005b04e73682edd, + 0xbfecb1ed9da4c226, 0x4000abc8c51fe8aa, + 0xc005909875bf73c0, 0x3ff2b26a6283c929, + 0x40059ebc14ba1868, 0xbfe35d99edacaa7c, + 0xbfed138b25919242, 0x3fb973aed37dbbd6, + 0x3fea0e75db2cd3fe, 0xbffbb2906367358a, + 0x3fdc7aac73254d82, 0xc00240451a5b6a78, + 0xc00062dd84f3401b, 0x3ff4e5a338a68676, + 0x3ff1a1716a748ef2, 0x3fde02d7d7003294, + 0xbfdc24e18e4f03a8, 0x3ffd362a263ddb46, + 0xc00339661c617b62, 0xbff2923e8704a202, + 0xbff1a487432613fe, 0xbfeeadef178a2e07, + 0x4010ad56cd22f257, 0x3fe39681ac301a6c, + 0xbff125e06289b1e0, 0xc0025b920d64908c, + 0xbfeeeffa85d6c96c, 0x4007077560cc3fb0, + 0x4000837389848d61, 0xc00af2c6ca2cfe60, + 0x400c5c963bbe3797, 0x3ff28006a47c98c8, + 0x3ff98f470018f443, 0x40065410aa6b23e6, + 0xc00519b3ede40072, 0x3ffa5fa8a14f26c3, + 0x3ff4bf8823901302, 0x3fd30f699d079434, + 0x3fc1f23480c62918, 0xbff01e3636e7ffe0, + 0xbff90052d1c06283, 0xbfe46dcb2a2c5adc, + 0xbfca5a6974fbd7c0, 0xbfe2b3877b40c8f0, + 0x4001997e96209ee2, 0x400257e0b9745459, + 0xbff5a1037edcedee, 0xbfde39459f4cd654, + 0x3ff7994bc75149a6, 0x3fd8c41e9e21e720, + 0x400408cbdc980eae, 0xbfe9e114f4aa08c0, + 0xc00373639f31a013, 0xbff605da39b6c366, + 0xbfd2b415851a9750, 0xbfdfbe233b6941ae, + 0x3ff42a014b20cde8, 0x3fcd6ee6a21de190, + 0x4002bb61c9118dc4, 0xc0008394a82a65ba, + 0x4007eb8adbe10fdc, 0x3ff692102643690b, + 0xbfe9da9628e4cf41, 0x3fed5453eecc5ff0, + 0xbfd485b348c7ae8f, 0x3fc4a22ecce8e530, + 0x3fbef9657b08e660, 0x3fedbb677ac8b5c5, + 0xbfd18d2a3d7ba870, 0xbfe5e2c0fa5ca85f, + 0xbfd36a15a732f84c, 0xc009c5071d8b44c9, + 0x3fd6b3120f4a4894, 0xbff4e0460732c133, + 0x4006fbc28cf0a958, 0xc00328e11f3adbe4, + 0x400a59800b66b31c, 0xc01b1f41b85aee63, + 0xc00915796aef6f51, 0xbffa7fbfa5aaf074, + 0xc00385192420e099, 0x3fe00d3a4717df32, + 0xbfd01910f15bd7f8, 0x400ee48871306946, + 0x3fdb1f780e6f252e, 0x3fe2ae58a1f3d1fa, + 0x3ff1b341d9be0284, 0x3fe3040b346875f8, + 0x3fc59d36eea855c8, 0xc013665b915476a7, + 0xbff7074d8ea0de2b, 0x3ffe6d781e5f60ca, + 0x4007f7ab927c0e02, 0x3ffccaf6801908c4, + 0xbfe39887c9c82f29, 0x3ff54f7bdff47b3d, + 0xbfff05faf80a9516, 0x3ff9f150a6e2c280, + 0xbff2fb7f44413632, 0x3ff59c7e716fbd84, + 0x3fb3be8e98466f28, 0xbfd277c76f0a6f46, + 0x3fdf4b61d53787f8, 0xbff6f887b8508858, + 0x3fe55223624acb40, 0x3fe979a8dd83cf75, + 0xc00064011024d7f6, 0xbfffee3654e221fa, + 0xc01175c4a66d4f66, 0x4000710291915ab7, + 0xc01078c3f03c2782, 0xc00b12fe3279603a, + 0xc00e3d81f9df73e1, 0x4005f76add030a9a, + 0x400e637e78b6bb1c, 0x3fdfa2caed1f9a7e, + 0x3ff42925712aa692, 0xc00683aefcdafb0d, + 0x3fd324713b0d8f78, 0x3fcb5c222bd42578, + 0x40136c3973119be1, 0x401061e424a970c4, + 0xc00e923f0fc18096, 0xbff1c0dd464448f8, + 0x400393dc9123655f, 0x3ffc5d563cd0028d, + 0x40028e9a8f1093b5, 0x3ff5e53764371585, + 0x400121fce021755a, 0xbfed7504921205f3, + 0xbff7562da5ab92a0, 0x400a6e20d8634598, + 0x3ffe7bfc88801eee, 0x3fe49b1d317a4849, + 0x4005463c5df413da, 0xbfcfc69160be2df0, + 0x3ff21ede8863ec94, 0xc0088e55b6a7c9ab, + 0xc005bd17eb2bbcde, 0x40110d56ede632b8, + 0x3ffed60d32599384, 0xbfb016b489eac3c0, + 0xbff63f645d046bd9, 0x3ffe8ae10c1e3f0b, + 0xbffec1e51337e7e6, 0xc00440af36d741dc, + 0x40019e270aca6522, 0x400b131ee0dacf42, + 0xc004106356af7a00, 0xbffd1d58d13c7011, + 0x400cd9cc43b22274, 0x3ff312a90e6ec80f, + 0xbfd1f9791550762c, 0x3fe7419d872c8df0, + 0x3fd82c8b3268a898, 0x3fc386deaba2ff28, + 0xbfed34299c2687d2, 0x4003f78b10a8b064, + 0xbff2025027e424b6, 0xbff7b00d0cca005d, + 0x3ff7e418ce64436e, 0xc00ebe86992aa676, + 0xbfe76d6cbbc58267, 0x3ff69fc1f5a7c093, + 0xbffc4138758a75d3, 0xc011c99e3766ed3e, + 0xc0098de5cdaec202, 0x3ff42e5f53047e60, + 0xc0111f95a25ae1c2, 0x3ff67c04a628d4da, + 0x4009b8d3b353731c, 0x3ffe37163b2f90e8, + 0xc013fd3dc6f226a5, 0x4000d53fc7e1bd98, + 0xbff61bae351c9bb1, 0x3fe5dad1754511df, + 0xbfdf9824284ae89a, 0xc0124edeac3fb0c7, + 0xc005b124424c5777, 0x3ff9bde88d86c561, + 0x40002e564a570422, 0xc00c966d43cdf2d0, + 0x3fd9f469c0066bf4, 0xc010b857d374fd3d, + 0xbfdf623b1a099902, 0x3ff691ae934a399c, + 0x3feecb30c10076fa, 0xbfe6389673d33f29, + 0xbff6154af25f7a69, 0xbfeaf3d28ae90d31, + 0x3ffa1403eff03920, 0xbff0b99d50d9a736, + 0xc010498562ef4462, 0x3fed538b9314cbcc, + 0xbffa1015d3ba21e7, 0xc016162a608bca6d, + 0xbff87c148a36a2a6, 0xc00245cf3ceb6a95, + 0x4017f6916d074ab6, 0xc007a11cea35de0c, + 0x4012215a791da537, 0xbfe32e6c4bb9d65d, + 0x3fdfdab130432db4, 0x3fe68971cdceefe7, + 0xbffaae6df719f121, 0x3fcb5a5e30fa593c, + 0x40144f446b2b003e, 0x3fc39912daa0f310, + 0x4003d3540636c49d, 0x3febe1efd15c48c6, + 0xbfe69140269c82a6, 0xc00151bf49d6eb3b, + 0xbffd613dac38c7d3, 0x3ff4e01cf022892c, + 0x400c9ee42b084f29, 0x40107dc2e6ed0c9c, + 0x4002278b6281252a, 0x3fe2e14882110572, + 0x3ff3256637c08ce0, 0x4006a6ce0f82c460, + 0xc006d501a8497e5c, 0xc01c0c609cd512c3, + 0x3fe0f5cf8d276928, 0x3fe3a73ef049d146, + 0xbff28475f51d2f3c, 0xbfde6ded916722ad, + 0xbffd9546ace98fd4, 0x3feedb1c72d39bcf, + 0xc001917f5bd88321, 0xc01285002311d2b6, + 0xc00c716354ec9a05, 0x3fd786dc7c3f1234, + 0x3fd47e9e22ddfa1b, 0x40002e6d3ca0651c, + 0x400a9ae95d8b4ffe, 0x3fc55faf8bb27382, + 0xc00aa5147880e8b4, 0x4011bd4fc9ed4052, + 0x3ff58843c26351b1, 0xbfe8518d77eadd68, + 0x3ff1609154f78407, 0xbff6913b5f54f860, + 0xbfd2c4a96397dec8, 0x3ff959c37ea05e15, + 0xbffa38592f55d17a, 0x4003dadc182b617e, + 0x3fe8bcd13559a59c, 0x3feea3532695d38c, + 0x3ff4c9466fec853e, 0xbfe2d396950b732c, + 0xbff8860d470190c2, 0x40011e573374d0da, + 0xbff2990972e795e2, 0x3fd036be1bd200ac, + 0xbfd7cd008031be38, 0x3fd9712fc101ba57, + 0xc006d46756131aa8, 0x3ff43415d16fcbac, + 0xc0041b317c194862, 0xbfeb91457df540ee, + 0x3fd33a777ec32816, 0x3ff7553babcebcb5, + 0x40000a0fed1a2252, 0xbff816ad1a837ac4, + 0x401298eafa175606, 0xbfe8b473e24a467e, + 0x3fb9261ab5b09bc8, 0xbfc7660d6994413a, + 0x401118d3e5847ce4, 0xc0090c430f3a372e, + 0x3ff5f07b6d312c75, 0x3febde4fdab7e538, + 0x3ff0b273f8396427, 0xbffbd64bb2241d8a, + 0x40070caa0edb31d0, 0xbff5e816f8cfd0a8, + 0x3fc2499d1877575c, 0xbff5693724b5d569, + 0x3ffd6f7dc5ac312e, 0x4008fa83ffbcb500, + 0x4007c20b510456b9, 0x3fe0e5c9f2ebe841, + 0xc0037c020efb4a5b, 0xbffebb9ea85ae9dd, + 0xc00026c3e2c92a2d, 0xc006dc84929cbcfc, + 0xbfd024c6c3005cf8, 0xbf9ac5474b270700, + 0xbfea58f6396bcfe4, 0x400ad9fa7dbd2e8c, + 0xc0062f6b219a19f6, 0xc005481d21d8e46c, + 0xbff0671192284212, 0xbfc267273b5b249a, + 0x40014b89780d1630, 0x3ffbe5290da40ab5, + 0x400a388dc52a9f8d, 0x3ff42e53a5050910, + 0x3ff8cd988748ce8d, 0xbfe0cc9e3af81c8c, + 0x3fe2c423275438de, 0x3fac3b6b91c80420, + 0x3ff71ae398917144, 0xbff32f02347e0eac, + 0xbfec987646c8fb1f, 0x3ffc942fd8312e5c, + 0xbfea123ea597b682, 0xbff4499025ba4724, + 0xc009c057aac36d9b, 0x400882f227f06714, + 0xbfcdbe8b81f9b504, 0xbff9898509e6d35c, + 0x3fcf8fd4c15feea8, 0x3fe58e709bdb5f60, + 0xbfd6e1366b925838, 0xbfd3d99286ce2880, + 0x3ff46d06390e1231, 0xbfc4a27ed0369fd0, + 0xc004664a40157c64, 0xc018ca7b2096fffc, + 0x40063577219fc2bd, 0xbfe1342164dc3472, + 0xbff5e5bfd8052552, 0x3fe91ec8911f980c, + 0x3ff237d9d1078d66, 0x3fa4089d0b78fa00, + 0xbff815c1e08920c0, 0xbff7869752c82160, + 0x400da2d979639b32, 0x40038bc40e9e85e6, + 0xbfc7cb1a314f6970, 0xbffac1a8bd95794c, + 0xbfea304dc4e4053e, 0x3ff272a5184762df, + 0xc010a627c39e7b24, 0x400901a1ad440416, + 0x3ff25e8a8ba5fa2e, 0x3fdba83df9396868, + 0x3fe8a9ee51ca2c7a, 0xbfe31248f03da32a, + 0xc01693a905b0e395, 0x400212732977259a, + 0xbfb9607c920d5ac8, 0x3fb066e990661c00, + 0x3fc49dfa77141584, 0xc001eb8e5de7aaa4, + 0x3fee69ac37dd590a, 0x3ff540f69656c606, + 0x3ffb816d17ca302f, 0x4003c0cac3179d4c, + 0xbffa6c618e90df32, 0x3ff3723fcfd5c8c2, + 0xc01034d1a05cb02e, 0xbfd57f2e7a0d7e8a, + 0xc00d8df153a4cac2, 0xbfd4b75bde076b90, + 0x3ff9357f9e56e2ce, 0xbfd6760d35899208, + 0x40031288a7b3c35b, 0xc005fef479bbc106, + 0x400611225a14d1b8, 0x4003b1e63b978642, + 0xc0059114308f1c12, 0x3ff9b4b8ea433e4d, + 0x3ffb37f57e2ab6b4, 0x3fd53a9c88cd6da0, + 0x401a69dc173804b7, 0xc0000f1458a7b626, + 0x4009479786511876, 0x400cd963043d0875, + 0x3ff264a2637b43c2, 0x3fd09abaf330aca0, + 0x40123bc50f383b70, 0x3ff33c98fa23442f, + 0xc008a7998d514fb2, 0x40051f84c29d70ea, + 0xbfcc577fcffbdfd0, 0x4002cabe3a346654, + 0xbfe055e391e4d7c8, 0xc001130241dbdeb2, + 0xc011b48e4e3a3941, 0xbfd0660710be5cf4, + 0x40129cc12392126b, 0x40139511fc0c542e, + 0xbff2f34bc7bd3764, 0xbff262c269f81462, + 0x3feba3f01a663be4, 0xc006e195bf613e5b, + 0xbfe129a16799aa03, 0x400625f546868922, + 0x3ff82178b8e7f2d2, 0x3fe465b26e2bf87a, + 0x3fd596009384416e, 0x3ff734708a14c47e, + 0x3ff0e40b0ecbce61, 0x3ffeaa4d179203e5, + 0x3ffa9ded8044b87c, 0xbfe22c7182e5009c, + 0x3ff08827267e7d92, 0x3fef06740346dc4e, + 0x400eacccf8980afc, 0xbfc2418e6750d37c, + 0xc0070c5df10af412, 0xbfd2e6d71eddcbae, + 0xc0061da214ac5888, 0xc012027413c82d98, + 0x4019231ed2fc713d, 0xbff5148296d483fe, + 0x3ff052d8d9817612, 0x3ff1f448e2ca15c0, + 0x3fed08c2cf7eb780, 0xbff7e2c71ab7e886, + 0x400510d1a5dfd1e1, 0xbfe753aca6d69959, + 0xbfb1e14ae915d058, 0x400547c7c3dc301c, + 0x3ff93371365b2d06, 0xc00575309f19e417, + 0xbff5bb7d88a445dd, 0xbfced7aed8cdc403, + 0x3ff447c72bd077ac, 0x3fea4d671abf765e, + 0x4005414c074301ae, 0x3fec0f603a94d309, + 0xbff06764630b7294, 0x3fafbba36d7b4570, + 0x3fe28de89ad6c9f4, 0xc000feb1261220d1, + 0x400e553d7f3f91c8, 0x4000c3469ff8d73e, + 0xbff4523da2d4c9f0, 0xc000b36d4042cf39, + 0x3ff22fd5c204f206, 0x40042aa636d865d2, + 0xbfbe247387a57888, 0x3fc40c0d766ebac0, + 0x4004593b1995f982, 0x3fd7225f38993bd9, + 0x4001bae9583e7d22, 0x3ff19d4cb434a4a2, + 0x40075d3d91768e55, 0xc00318550fdd9744, + 0x3ff4bea9f8f13b83, 0xbff5a371cd96b32b, + 0xbfeff0defc2921c9, 0x40001659d6cd68a0, + 0xbffee1cb749d237e, 0xc005aec1e1cd840c, + 0x3feb3a7643cf10dc, 0x40048039d2220008, + 0x3ff9606ba45c09b2, 0x4012836d772febf8, + 0xbff3e4f8b9ce1a82, 0x4016878d200a350e, + 0xc000110e1fd4e6b1, 0x3ff68d969e259860, + 0xbfc0f6ee7ff844c8, 0xbfe0faa264458110, + 0xbff869ed50b54b18, 0xbfcc2a3f21dc0740, + 0xc008aab299cb852c, 0xc0049131fa0cef58, + 0x4009f9752bdb4d0a, 0x3ff08a271e962292, + 0x3feceacb574c0306, 0xbff26666155dc432, + 0x3ffaa8bef32be926, 0x3f95f7efe390a000, + 0xc00be9c757c7bb52, 0xbffea2d52c69c02c, + 0xc00294cba63c708c, 0x40083ca83a7a3a2c, + 0x3fe2c0c39b7863ae, 0x3fe064019990b9a9, + 0x400f14dd3dca7cb2, 0x3fb8dfe0c779f610, + 0x3ff2842376f76ec7, 0x401183e3b0a00051, + 0x3fe1b5ab51553b7c, 0xbff5e360f72a07ac, + 0x4004c2b5a1521a02, 0xbff3bd302fab9b12, + 0xc00ab90e421f5e62, 0xbfe9cdcf63072992, + 0xbff858c5710d1f11, 0xbff7618f2ae5a6f8, + 0x40047ff188a56895, 0x3fd1820e386637c8, + 0x4006c94fd620c5fc, 0xc005f942e16abc48, + 0x400b6b23ebc00af4, 0x3fc047735de75a18, + 0xc004df0b0577b47d, 0x3f48fb87c0f77000, + 0xbfe574e1f2d9774b, 0x400b6b2000e88ba4, + 0xbff92fd6e358cd00, 0xbfd98059b1f10912, + 0x3ffb03eae1b53f0f, 0x4010cb03425cd080, + 0x3fcae9aac1a26b94, 0x400a4f053b83c7da, + 0xbfec0899a2410522, 0xc0037d71aec18bad, + 0xbfc352ffded7bfe0, 0x3fe7b9a1d300a3ba, + 0x4002ce9cf6cfd8e2, 0xbfdf1fbca2987983, + 0xc00bc8f341a244c9, 0xbfe058c3db166394, + 0x3feda66d1eb4a8fd, 0x3fec7183be35ed5c, + 0x3fd5315149984ac1, 0xc01554e13d261639, + 0x3fe72afcc0070b87, 0x3fe0a1bd515276d8, + 0x400280ef3f6a9e90, 0xbffc78f8c4ba1b36, + 0x40020d05e4705830, 0x3ff92fcd5d844ec6, + 0x3ffabef6c6342d72, 0x3fc0bff2169b3068, + 0xc012982e68e88282, 0xc00d0f75d3d333ca, + 0x400b348d8c7fe4f2, 0xbfd93c452e6b63c4, + 0x3ff15d20b3fe706d, 0x3fe819aff4369757, + 0xc011c5ff31a9a1d1, 0x3fc9b119adc970b4, + 0x4001bba9541b5327, 0x3ff563f86f6d90b4, + 0xc00f5d568cf703ed, 0x3ff08162c76441ff, + 0xc00126e2554f512c, 0xbfbd3dda63f8c960, + 0xc001a39fb734224f, 0x3fd035d0b9d4b4c0, + 0x400791a1bbb53dd2, 0x4004c72acfc6904a, + 0x3ff255ad58e56fa6, 0xbfe811ed7d516ea8, + 0xbfd7d2a3b65b884c, 0x40002dc9e2f9227c, + 0x3fdc210029f8df68, 0x40036fc159a69fe0, + 0xbfdc61af489c6de9, 0x3ffc33dc02ad35f4, + 0xbfd366555c27858c, 0xbfe1bab240ab40ec, + 0xbffb934501bf09cd, 0xbfd116142dc03a74, + 0xc00e0441d4879f2e, 0xbfb46ef496472870, + 0xbffcac84c313d320, 0xc000ce9f6f79eaa0, + 0x4006cd9f013aa8e2, 0xbfec7d4613c2f2ee, + 0xbffc934ed3bab518, 0x3fc4958109a28d48, + 0xbfe6729781524f14, 0xbfe52a1380aecbad, + 0xbfd9d70776b4a0ea, 0x401383fbd0f7467d, + 0x3fd623aead1eae4a, 0xbfecfe3ab93e37fa, + 0xbfd8ef81b35bfe25, 0x3ff9ca9aa81e0b4a, + 0x3ffbeb92683fd8ae, 0x3ff4291e12f241e0, + 0x4010b7f9de7d9506, 0xbfdf4c35ec8bac04, + 0xbff826a51d67111e, 0x3fe91756f2530410, + 0x4015e927b3f0ba87, 0xbff677f630d4dbe5, + 0x3ff0c5f505e76718, 0xc0076b64284168a8, + 0x3ff20d06c3896228, 0x40021b26bbd67eac, + 0xbfe46ba8901057b0, 0xbff34e3b9341aef5, + 0x4000388ce014e178, 0xbfd90c0a7e92412c, + 0x4011427a8dfe949b, 0x4003f022b7351e8f, + 0xc0009b01f57b2708, 0x3fe95f01df64c11c, + 0xbfc21e88ae7e7500, 0xc0126e0ecbfa0dde, + 0x3ffe3e6c7a7793d6, 0xc006b922fbe6f357, + 0x4006a8c9a484de37, 0x3ff02fe730d4a195, + 0x400bf61bfb46a70a, 0x400818f1cdf0929e, + 0xbff93bf12bc9e45e, 0x3ff93605e867594e, + 0x3fd8809700cced94, 0xbffdc95bb46e9b3e, + 0xbff9582fa97896a2, 0xc0125ad1a78feeb6, + 0xc009c723eaa0e11d, 0xbffb62a5050ed19c, + 0xc0102062556f58e7, 0xc0157b758a983552, + 0x3fa679e8155ce980, 0xc00cfa1180bfad6a, + 0xc00484b5e4f413f9, 0x40034b94b14bf7cc, + 0x3fcd57646051c0e0, 0xbfe414e275ecfa20, + 0x4011b5bb61c6b4c4, 0x3fff3b1be79523a1, + 0xbfcc476f38077b30, 0xbfe097d305a20b36, + 0xbfdef32a9034c20a, 0x4004006482be7012, + 0x3fddb095f4af4082, 0xbfd0e9c1a960b729, + 0xc00dbbe77daf8773, 0xc0031456dc26383c, + 0xc00b5dfff09c39ac, 0x3fe43dd5ce56f6c4, + 0x40035ec2788831e8, 0xc002819f10ce2c4d, + 0xc008b6df398bf7dc, 0x3ff5996e397a0b8b, + 0x4010817a9f2b2b7c, 0x40156ff654e7f370, + 0xbfbea79394ca839c, 0x3fe87c2a16f0e1da, + 0x4013cc000f0b1d89, 0xbfeca985a6a30fec, + 0x400822101fde8103, 0xbff74e0596f72d35, + 0x4003499688667ca9, 0xc00368870235660c, + 0x3fda8cd3d565b070, 0xbff03d0a999f91b0, + 0xc013e8556a5ee6f9, 0xbfecc4b6e72b660a, + 0x3ff72893461d449e, 0xbfdf2cf08345c6a4, + 0x3ff800220c054ec8, 0x3fe94093bb8e215c, + 0xbff678fa9746f1e6, 0x4000166c3489e6f1, + 0x3fc709755dde54c8, 0x3fe36ccedba0e59f, + 0xbff035b7f8ea8395, 0xbffeca031c4d7031, + 0x3f8f459104f35100, 0x3fee77336aa21b7a, + 0x3fdf48b62da94ec0, 0xbfff36a16ad41bf7, + 0x3fe1dedc703e72fe, 0xbfe3fa8613710c1a, + 0xbff982c57c7e4a9e, 0xc008da1a7c8fcec1, + 0x4011fc33e6a6a2e6, 0xc0071960c5ab9ab0, + 0xbff0ac9f38235d0e, 0xc01834051d4ed687, + 0xbff2d73cff311536, 0x3feac7104a2ad216, + 0x3ff173501ac080f6, 0xc00639cda01dd088, + 0xc004cfcb0627f661, 0xbfd6398b090065a6, + 0xbff183662a798f7a, 0x3fed8680f250163a, + 0x3fe58a426a8a989e, 0x3fe5456bb52331ae, + 0xbff0f3fc27e0600f, 0xc001622dcba8f301, + 0xc000eef9a66515ba, 0x40052077f68ff53e, + 0x4007242ae9b25568, 0xc009b28528ca9e6f, + 0xbfdee94a6dadc1d0, 0xbf870db00cad4c00, + 0xc00719c60722bd46, 0x400e3287c6ffc3d6, + 0x3fe8bcfefe5aba58, 0xc0103706e77bc2cd, + 0xbfff8422722e67fc, 0xbfe2369c7b4c677b, + 0x400224b054eb3725, 0x3ffd92099aaf834b, + 0x4007b655d0aadf2c, 0xc000ed219fdc0a65, + 0x3ff400de55896315, 0xc002c65254dc51ae, + 0x3ff66c37815df49c, 0x3fff90916bc70990, + 0xc00e56bac7d69a10, 0xbfd4171b09c19c1a, + 0x400cdd1ede650d1a, 0xbfabebb026495b40, + 0xc00d8c390c002471, 0x4004aeff8f9fff7c, + 0x3ff08ec91b50efcf, 0xc0120dc1b740c890, + 0xbfe69442e598d79c, 0xc00486559e86a2a4, + 0xbff1ec83bdebbe43, 0xbff562f6e97c77bc, + 0x3fb144e095435b30, 0x400cf66e34e9295c, + 0x3ff6d1a30a02f074, 0xbffb1d167d37faa6, + 0x4000cbdcd4b12047, 0xbfdf62a85db39264, + 0xbfe342f67a0a0d0e, 0xbfd6207af8f1d608, + 0xbfd13c39d762aee6, 0xbfdf38f3d324e5ca, + 0x3fc40d54d3c4b470, 0xbfcc9b85c6cbdd90, + 0x3fea118833dcd14c, 0x3ff11e92c1f517d6, + 0xc0081a793cb7bca5, 0xbfc1591455b21bb4, + 0x3ff22ad7e401f432, 0xbfe8b75290be4a32, + 0xbfd0a20cd8ea2554, 0xbfe9d239d9a93e38, + 0xbfd82236d36fbe10, 0x3fe6232b72d00cde, + 0x3fc6a1818317df70, 0xc00273180e834c6e, + 0xbfe7363d51745ee8, 0x3fefa4647e66d852, + 0x3ff7dd4803c56316, 0x3ffbba64bcf774b8, + 0xbffb9d4c7d60ce1b, 0xc007589a4946fd62, + 0xbff608fc4c6406eb, 0x3fec0bb7435058fe, + 0x3ff083f049ef1c9a, 0x4008bd642fa23cb2, + 0xbf6fdf4032bbac00, 0x400c1ce1d0fdf05c, + 0xbffbc3ae8e7b7be8, 0x400b1cf5c807cfaa, + 0xbfe0cc4f2476d115, 0xbffd97bd4a2dfc60, + 0x3ff523d29395f27e, 0x40065d441f1be446, + 0xbffc3f45bf0748de, 0x40123e133682a37a, + 0xbfe2187218fa9329, 0xbffa55c2327a3084, + 0xbfeca086678a62fe, 0x3fe9c55c31a0ed59, + 0x400dfb69589916f3, 0x40000cd3817075fa, + 0x3ffad82f799ea148, 0x3fec3780b5999d92, + 0xc012166baddb16dc, 0x3ff85b2eb0308c72, + 0x3fe4854bbe26793a, 0xbfeed328817fe7ac, + 0x3ff22a743c9d1551, 0x400bb40c7c2b17db, + 0xc003d91e75a6d52b, 0x3ffe0678a886bcd3, + 0x4000b0f17c12f0ee, 0xbfe850db91876e67, + 0xbfef53f148ba6cda, 0x400558634d18dbbe, + 0xbfdbd0c044daf657, 0x3ff0786e33693df8, + 0xbffa6ab1565aa3ca, 0xc00432b8ba2952ac, + 0x4006f954c4048216, 0xc0165f118b3a78a8, + 0x3fe223059c6a0585, 0x4001787750c56f71, + 0xbfd7da7e875aefd4, 0xc00498f1863424e4, + 0x3ffb17e71052fae8, 0xbff0f8235e4656d2, + 0x400e68b4668cddb9, 0x3ffaea8cdca7edee, + 0xbff3f56d105089d2, 0x3fd6eb7a68356712, + 0x3fdef642c741f438, 0xc002a3b05e14cbe5, + 0xc012d6de173469d7, 0x3ff5ad5c4c85d462, + 0xc01a0c9f0290c1db, 0xbffcffc9562d6dce, + 0x3fda5e0645d13c53, 0x400f93b29e92a78b, + 0x3fec41c79f351f83, 0x3fe568fea588dd44, + 0x3ffb4d9e0e1455c7, 0x3fdaaf7136ab52a0, + 0xc002e7883a2b179c, 0xc0009af95ae4e4fd, + 0xc012455e2baddf71, 0x4002b0cab75ea766, + 0x3ff9904b5f41f1b3, 0x400ee8d1245b10bd, + 0xbff891a8735cdeef, 0xc00055b358a00bee, + 0x3f9280f634cace80, 0xc00cf40d96605081, + 0xc007e912d39e77da, 0xc0093f2c188bdc71, + 0xc0046f1f83f6a500, 0xc00a4ae019f1a79b, + 0xc012aa454bf6b2fe, 0xc00b5a15deda612f, + 0xc0012d091e9fa17b, 0x3ffc9b88c08d4938, + 0x4003009b8d0089b6, 0xbfed629938eba9fa, + 0xc00738a937551b0f, 0x3ff1bb3c5010e93d, + 0x4003d9ab8ddca7a3, 0xbff7bb146e227a70, + 0x400b7ab36ca7611c, 0x3fffb66531289157, + 0xbfd98cc5529993d2, 0x409666fc4e690dfc, + 0x400550afc0e1c366, 0x400573374f8098a8, + 0x3fe936c53999019a, 0x3ff254051b85d81b, + 0xbfd458326608f7c0, 0xbff4a26ae0e591fa, + 0x3ffd551af00e1877, 0xbffddc466964a790, + 0xbffda2e70d630f61, 0xbfffe94cd399bb6e, + 0x4008aa906d47492c, 0xc002257ffb637c85, + 0xc00d99efc725a34f, 0xbfe0438cc7b09246, + 0x400c5aaff1f80cee, 0x3ffadc25acd46e1f, + 0x3fea72727f83118c, 0xbfd07123d64db127, + 0x40101d431d07514f, 0x400cb78cbe096048, + 0x3fbcb9a4df218f50, 0xbfa5a653e63f3620, + 0xbff7929309a39fa8, 0xbff22c176ea42c8a, + 0xc005ba09292583ae, 0x4005712c1a5a8ff0, + 0xc00e7dd2c7e3f41b, 0x4006ee5df84ac04c, + 0xc007937ebb7bda5e, 0xbff17bcd912c4541, + 0x400c052d966802c8, 0xbffbaedf441fea2d, + 0x3ffd4470eaaae43e, 0xc002a1df25b75482, + 0xc0018f78c34b1714, 0x401495206b64d808, + 0x4009732cf5d0b000, 0x3feb35489a829977, + 0x3fd3f1c7fc46095e, 0x3feaccf9d0b2ea0e, + 0x3fc2ece985b5edc8, 0xbfd77d8178b6ea24, + 0xbffa3b14875b9370, 0x3ff871bb570c6e3e, + 0xc00bb3c8bb10e320, 0x4008e881bb90aeb4, + 0xbff448406fe92524, 0x40045df85b4fba1d, + 0x400cc5a3c3cd7972, 0xc00884cfe9a65037, + 0xbfabb9ec32f98870, 0x40056df5b3945be2, + 0xbff8d04c57cd09ce, 0xc00764dbbd9d4af3, + 0x4013260a439ae5b2, 0x3ff20fa077133907, + 0xc00619d09c4c35fa, 0x3fe26537089463bc, + 0x4013b1a3f5a496d5, 0xc01421f88b902107, + 0x3ff3a7eb6f54ba06, 0xbfcb4d31dbd89c7c, + 0xbff23777ce6798ba, 0x3f989e8efb2dd040, + 0x3ff59ce6aa1b48a2, 0xc00506340f3647e5, + 0xbfea912f675bd58c, 0x3fb793b64b023a00, + 0x3fdd127935614d5c, 0x3fee1c27619eb7e0, + 0x4013184c0bce04f0, 0xc0109c8006c9d97e, + 0x3fe5884438cffd44, 0xbfd467d8c3d1d818, + 0x4009b6469e5bd13c, 0xbff34c3fc82717ce, + 0x3fe11457b89b8a57, 0xc00b00c9a85fd9d8, + 0x400835e1683d7880, 0xc00436c664c99f96, + 0xc00588a41985d7d4, 0xbfd89904520ebb6e, + 0xbfca74f6e92b2678, 0x3ff1661411d2d32e, + 0xc000d737cfa1cbf4, 0x3ffa68d26d61241f, + 0xc00be4d858f4d56e, 0xbfe154fb65569296, + 0xc00532158d35b2f1, 0x3fe3a367c1608780, + 0xbfd1d9fba8269042, 0x3fdaa321021b5d97, + 0x3fd7243ef9a3c776, 0xc0126e8fd6a50bf0, + 0x3fde397ea33d8dff, 0xbfdd058b4474eda1, + 0x3fe1aab08893dbd9, 0xbff948128d34c8f9, + 0x3fe6defd9405ecfd, 0xbff5482cccc0238e, + 0xbff53669ecca7c85, 0x4002c3c5db03432c, + 0x3ff86ce6121d6a8d, 0x400a9429f8ac7f30, + 0x4008a411881bf5d3, 0xc01a9a48a7fbf70f, + 0xc0118de683b948db, 0x4009be6cc9e9b498, + 0xbfc5136198536c38, 0x3fe573656b7c54c5, + 0xc0031c131a05abf6, 0xc01846b5b0acee2c, + 0x40014093718a38e6, 0xc0043aa99dd182e2, + 0xbfdf3572887e45c8, 0x3fbd24d3526de1a6, + 0xbfd5953849d2f55f, 0xbfe496fa18f241ca, + 0x3fdbd2c539fc6d0e, 0xbfdfb3ff6a1ed55e, + 0xc00f70198b03008a, 0x400cc9a9a36be619, + 0xc0098417ab5d0dcc, 0x400c57fd58e3c49d, + 0x3fc1eae7b93daebc, 0xbff29c1d7bfdc8d5, + 0x3ff1eb335db63fe8, 0xbfe123a3d5a03304, + 0xbfeb24fd1a9f78e3, 0xbfd2a10a1ead0d40, + 0xbfe24c267570ea16, 0xbfed416ed66479c9, + 0xbfdfc19f4de1b9ae, 0xbfe1ccba51c07fa2, + 0xc003d0de740868aa, 0xc005ff5c629dfbe3, + 0x4005553c26a462f4, 0xbfc6cb638f9213f0, + 0x3fe0a94e4083809b, 0x400f9a41f1b0e53c, + 0x40018e4d24c46bca, 0x3fd8dfea0ab34c84, + 0xc008f2c5fbd4045c, 0xbff0cae02f3c4d3b, + 0xbff0bd4b32142b11, 0x3f7ae2f1cd533300, + 0xbfe890f6d667137c, 0xc005cbf028b0d96e, + 0xbff139ea6e9bb988, 0xbff5bc4610994146, + 0xbfe19cf02a65c8b6, 0xbff51fd330334030, + 0x3ff35fbec069d64b, 0xc0045b810908710f, + 0x3fdf0b9ab61ad690, 0x3fe7773086c5d103, + 0x3fbed0d0269b92e0, 0xbff13ad3d7578b70, + 0x3fefd15a4ed8c9c0, 0x3ff9618304ca0150, + 0xbff7c65a5f26ef35, 0xc01406275c86992d, + 0xc0038628583c537c, 0x4001c7b4ea2bbce5, + 0x3f7c5f7932e2d120, 0x4010ed2e98915bdb, + 0xc002db4b8b8dfb48, 0x4010f95d83c54e90, + 0x400e9c21fd068851, 0xbff9b5ae34685594, + 0x3f7cc4fd0e133900, 0xbfea478b6a20639a, + 0x400be5b601b2dc7c, 0xbff5c6ed2fb7c8fc, + 0x40084eb9db9770d4, 0x3ff08ac0a946cba8, + 0x3ffa8d84ee24d82a, 0xbfe29cdfbb5d398c, + 0x3fed49c82fca34f2, 0xbff8837811efb5ba, + 0x401056ab2a6fb5df, 0x3ff259e0f6bc9a3e, + 0xbff56771c04e887f, 0xbff7a1aa51c3c7b8, + 0x3fff03811c762f22, 0x40018d77fe08d807, + 0xbfe33a72878f26a4, 0x3fe69aa4ccc03800, + 0x3ffc192eaad0c952, 0x3fee531bdd3b1f5a, + 0xc00cb0459dd8f9f7, 0x3fbceaf46ca5e948, + 0xbfff12c6e1ec56aa, 0xbfd6006e9867481c, + 0x400a0be9a8ada04e, 0xbfa8bbe2af5a4260, + 0xbff1290a91c57810, 0x400c6e72d9b4c484, + 0xbff57f3cbe3bae75, 0xbffb2b0855dbf348, + 0xc0010bec1ae8910b, 0x3ffe07e39d2d9e11, + 0xbfe08aa7f2c7d32c, 0x4012119c7e4c2978, + 0xc007131f4ea2f594, 0x3ff4f58b4eac50e2, + 0x4005d0cdb0ad4ff5, 0xbff403d17469a819, + 0x3ff4a06986b780ea, 0xbff05bccaa8b86e3, + 0xc0007ba318be5d5e, 0xbff3dc756e20b7f6, + 0x3fe8d8989a47b4b4, 0xbf8d18357cb92d80, + 0x3fc3678ec639dd00, 0x4008468352313f91, + 0x4007b56a9fa3eabb, 0x3fc5964cefee3191, + 0xc015985cb0c254d4, 0xbffe1238be75feca, + 0xbff50367d0e83e25, 0x3ff6dbe91f31b8f8, + 0xbfeb300fc3f29f98, 0x3fde9fe9832c5a18, + 0xbfffe1b16d4d59f2, 0x3fdac14ea45007ac, + 0xc003d25d2c64268a, 0xc006b9843e43ee50, + 0x3ff148cf67c3c9ae, 0x4000564f5c0815d6, + 0xbff3dfc3a3c2eeee, 0xc00bf6f4ea3a5bcc, + 0x3ff44bacc539ba1e, 0x3fdff48449dd2b24, + 0xbfe33f59979dbd02, 0xc005b6e0e22b505e, + 0x3ffc4242356b01da, 0x401479c118977020, + 0x400177d9190dbe0d, 0x40158b128de79760, + 0x4004aa00b3daa800, 0x3ffa2f1bb8bc0e0e, + 0xc011659e08931045, 0x4009c459480b37ec, + 0xbfeeebe792dc5bb0, 0xc013d46a62ced144, + 0xbfde95ed168d8416, 0xc00f7479853a0935, + 0xbfae9c65235cb1a0, 0x3ffd26d15585cba0, + 0x40107654f588b34a, 0xc00290993b7e7507, + 0xc004090ed35a6f9a, 0x3fcba547823a6834, + 0x400b26fdf78b41ca, 0xbfeb1e5f4d24a3c0, + 0xbfb6d1661c50911c, 0xbff4b364b0ff58b1, + 0xbff9240e25a3d70a, 0xc0014af734b412f8, + 0xc000130607fb29a3, 0xbff3b124c7f517f5, + 0xc01b8188340bd88a, 0x3f58bba84976a000, + 0xc00221b93e151a12, 0xc0074400b067f8c2, + 0xc00f111e3548bc5d, 0x40018b19890e9ca7, + 0x3fec88dc8b79a7b6, 0xbff57080e228ade2, + 0x400361251a2e771a, 0xbfd03531a19abedf, + 0xbfecfab4b2b46c0c, 0xc005d073925cf1de, + 0xbfce09f0ade800f2, 0xbff55219d8f15855, + 0x3fb37ad79cd1c1d2, 0xbfe7f0b53852ff9a, + 0xbfdc899c4d0934eb, 0x3f7f800c0be58580, + 0x3fb414851fb9b226, 0x3ffe0725e7d062df, + 0x3fe1b4453d4f052c, 0xc01021db778f245a, + 0x3ffc84fbb353c37f, 0xbffc2eb750dc70b9, + 0x3fdd64d22a7c8bf4, 0x3fc54f96a16ed67a, + 0xc00bf8feff3a6fc6, 0x3feb3363da45b281, + 0x3fffcdf13670d9dd, 0x3ff00a4984e5b470, + 0x3fd0b9c210f6aee8, 0x3ff23106de28e12a, + 0x3fdf1e251e5541a4, 0xc00978205d6e0e98, + 0xc004deed6d42327b, 0x3ff74d1611d69194, + 0x40084f15e06df424, 0x400a1bcd3210c098, + 0x3fd67138ff4a95f0, 0xc003e4725b72f23c, + 0xbff9f08c10ba39cf, 0x40041a3309d1d3b2, + 0x4003bba9fc43e7de, 0x3fede6b11e4e072f, + 0xc01377854e5901bd, 0xbfe2c81b8735ae68, + 0x3ffb019ec54960c2, 0xbfe7deb707d169c8, + 0xbfd6a219d029fedc, 0xbff42262b9bf7cac, + 0xbffa1e26516ff03a, 0x3fb77da55f40b600, + 0xc011dad7604e8dde, 0x3ffe21d4c40813a2, + 0x3fe8290dd46e3f88, 0x4005e7027b1e8e78, + 0xbffa08c253c53852, 0x3fecfc8e1deef8ba, + 0x3ff1113b3d6f28bd, 0xbfed78e1f4f03caf, + 0x3ff8b2bf5bef5362, 0xbff72ec004e280ed, + 0xc00fcfb02d3cb355, 0xbfd3cd894f2dc668, + 0xc00d77fc49666c7f, 0x3ff37693ded78cc2, + 0x4009311f7674bfce, 0x40039f85e1086a34, + 0x3fc34f6f8a1c2e80, 0xbfd7eaaea12de1ba, + 0xbff9789c7becf072, 0xbffe887a4eadb5b7, + 0xc014534bc163588d, 0xbfcdc29343c74090, + 0x400bbd6c2db699ab, 0xbfe29c990c40c863, + 0x3ff689ae1ca2e136, 0x3ff9bac30f6bfe94, + 0xbff9fe6f41333834, 0x3fe313b4b8a903e4, + 0xc006246d32bd3300, 0x3f92719f6e48b5e0, + 0x4015c689afa7153e, 0xc015d49c23662d69, + 0x3fc45d1c3b7f0408, 0x40058fb7ec566b60, + 0x4019303cd1385f97, 0xc0006681b2cae47c, + 0xbf8f53e1a5344f00, 0x3ff3621bead582aa, + 0x3fef2d27b9768ccc, 0xbff0bfd3be35e287, + 0x3fe2574d1e9d4a88, 0x4016a609ca6f7eb0, + 0x400e769736e5a6ca, 0x40043526c48de0df, + 0xbff6b369418a3a94, 0xbfca783daada856d, + 0xbff7aaa87f7d2703, 0x3fef250e2961761d, + 0xbffba680bf4ec58e, 0x40053a10f1605e18, + 0x4009683546e19d9f, 0x3ff93f7227506d05, + 0xbfe5bb36fc0790da, 0xbfd4671182f9377c, + 0x3ff819fb4be7c7f5, 0x400978091eadace8, + 0x3fbb62a7922b5530, 0xbfe2edbfb6237cc6, + 0x4000df395fd904ef, 0xbff6cf418302d52f, + 0xbffb53ba2b05133b, 0x40082bab32be21fb, + 0x400678a8033fa27d, 0xbfcd6b7500058530, + 0x4009bd46bf9db1e8, 0x3fd30aca7faff16c, + 0x3fe7a650ca67c799, 0x400982ec50fc8f06, + 0xbfc0bdc090d37990, 0xc0073b35e6218234, + 0x4002e6a2dd03a3d7, 0x3fb0f5cb1330d920, + 0xbff24f7579883594, 0xbfef730b119f44b0, + 0x4005fc09c52e399b, 0xc010ff37241e0a0c, + 0xbff1ae232bbf5c72, 0xc015d4c9c515afc5, + 0x3ff481fcd679df2e, 0xc011d44e8dd3a1ac, + 0xc00212a436510d34, 0x400a77acb8d287a4, + 0x3fcbaec0442cd816, 0xbff6ec0f5926f6e0, + 0x3f8eac2323a07d40, 0xc00479861ca0d828, + 0x4010326ffc92f3cf, 0x3feed7ad85ca99fe, + 0x3ff8392d23c75fd2, 0xbffd53c402422a0e, + 0x40119202722355db, 0x3fa312037004d2a0, + 0x400ca15e2bd9506a, 0xbfebee742f526ca0, + 0xbfe4cac75f752dc9, 0x4011ea11fc63252a, + 0xc011a698c7017eec, 0x401508b11a5e5d26, + 0xbff8fdc81aecfa37, 0x3ff444da6bf24918, + 0x400d33ea9dff9509, 0x400bf57fd9e52ac7, + 0xbfe87cbd440f55e3, 0xbfe0cd8f0c7b85c8, + 0xbfe6c41ff26f087e, 0x400b39b65d52596e, + 0x400997bea42fd30e, 0x3ffe3cf45788545f, + 0x40006be728c073fb, 0x40007b7d28a4345c, + 0x3fb2852f2c3882d0, 0x400140c5e523c58d, + 0x3fd195df779dbf7a, 0xbff933b525a791da, + 0x40038f0662b551e8, 0x400a8070b70792c3, + 0x3feda6e4faec3e6c, 0xbff2f0d18e4d020f, + 0x3fd7b443d2542f9b, 0x4007402d62cd4f6e, + 0x3fe046c773e33004, 0x4002fb0b68224bce, + 0x3ff330c40bfe68b2, 0x3ff28e8617d6bcec, + 0xc011ebe00bfbcec7, 0xc006b132c443a132, + 0x400692e6f8e79098, 0xbfec30ce6142810c, + 0x3ff38e646f8f7892, 0xc011955e8e79c784, + 0x3fedb18ebc811da0, 0x3fe3417c23871f07, + 0x3feafa16f841b82d, 0xbfff4f1a62fd03a4, + 0x3ff356c19caa9a20, 0xc0037b613f8bccf4, + 0x3fff93c8887957e5, 0xbfbbda694204f400, + 0x4003ba1492b15d7c, 0x3fe52b3dc4356e51, + 0xc011005ad0dc664d, 0x3fe0212b9eda09bb, + 0x3fe5167e0f020625, 0x3ffb80ed925a72c4, + 0xc01005c05d1d0b13, 0xbffa4bec157f2196, + 0x40190fb61c0a891a, 0x400968c2f8f05262, + 0xc003a076e661816a, 0x3fd31e446e273854, + 0xc0013cec5ee05964, 0x3fe6c51f49cec7e1, + 0xbffd7b6ae8778ff0, 0xc014b3bc0d0b30a5, + 0x3ff63f5e87d5615b, 0x4000193d1fb76196, + 0xbfe4f3c5a1c004f4, 0xc003bfe233ca5ac6, + 0xc001e8a7333f2c27, 0x3fe1aec627e58a1e, + 0xbfed35151bfbd8d2, 0xc013201680b253bc, + 0x40047c38923c6c96, 0xbffbe91618d69410, + 0x40036b96c79f097f, 0x3feef3bfd1bdaa60, + 0x3fe88f0c7703ed40, 0xbff977170c027f72, + 0xbfef608990140867, 0xbfec2b9eae0e84fe, + 0xbff58bf147f8e88c, 0xbff222b592fa140a, + 0xbfe789abb79e96f7, 0x4004f8ee6cc24778, + 0xc00e2c7106d4078c, 0x40064fffd151a21d, + 0xbffac92d43dec51b, 0x3fc18c0d35e2da14, + 0x4001f14c5488d56d, 0x3fd740985c544d84, + 0x3feab3c9659add34, 0xbfbe134c322b8324, + 0x3fd78f9cfdf04fc0, 0x4006f82d6f7dbdff, + 0xc00977dadd9b9d42, 0xc0068236916c0751, + 0x3fd3cdf896778920, 0x3fa493e0dca71728, + 0xc0003b5fc7a5c122, 0xc003bfce5e95a834, + 0x3ffc7f283c7d67e6, 0x3fea412063235e82, + 0x3ff9ca42e65b1cf1, 0x3fd9aa588be0f768, + 0xbff9ae8959ec4bdc, 0x3ff97d1420539166, + 0xbff1c7829b4c93c4, 0x400240b37c6fb5ff, + 0x4004b79e51a595a3, 0xbfdb5c977a487148, + 0x3ffaefa185763942, 0x3ff106cf3c1f854f, + 0x400eaf82fd234439, 0x3ff46bdeb2871542, + 0x3ff4ec102724c0b9, 0xc00231e519c7881e, + 0xbfe087611a01c9af, 0xbfedd55f0ac04148, + 0xbfe4803b3bc897c1, 0x3ffb20c323e8a387, + 0xbfd770a5e9c78240, 0x3ff7252403f012b0, + 0x3fc4938e5a130668, 0xbff936ac93ac1e6a, + 0x3fde1c2098ac2f3d, 0xc00c3148bc606aa4, + 0x4003f0bd2fd383fd, 0xbfd3866604bc43cc, + 0x3fd72b36ee1d21e8, 0xbfcfb0d0800bf890, + 0x4006324d8db1c74f, 0xbfd47802cafba692, + 0xc00167c55cb8bcae, 0xc016c23ffa5e36ec, + 0x3ffe7c52b4c96895, 0x400def94814ce26c, + 0xbfcaa78e5cbc14d8, 0x4013780f5afbd624, + 0xbfe8a38d629fdc17, 0x3ff92a0b37f5613d, + 0x3fd905883aa23290, 0xc00aa963b9c03296, + 0x3fdcaa49bca7bdb7, 0xbfe3e296f1cfc916, + 0xbfd801f386cb3a32, 0xc004490f1f5716a0, + 0x40001cf9856eca7e, 0x3fc8587d2effd30e, + 0xbfe4b91bd9491623, 0x40008c771adcf1e2, + 0x40173b0f785ad371, 0x3ff0daa814ac093a, + 0xc0061f6c4cb9f7ae, 0x3ffdbd6850201b54, + 0xc006c98b5a7ca28d, 0xbfe47a91da0a6a60, + 0x40012c6a9330cbb2, 0xbfe26613be4f8684, + 0x3ff08f65bd8fdcb0, 0xc008ff6b6fe25a98, + 0x4011dfc706ab6ca1, 0x3fe39ed90603fbe6, + 0x3fe336e574526b8c, 0x3fd6dd2a8be2f030, + 0xbfea57a50834e2c7, 0xc0088d9cadb7026c, + 0xbfe6f06315fdae6f, 0x400117f1ebff2beb, + 0x3ff1790a89483d1c, 0x3ff2a9fc4e89449e, + 0xbfec244290b33c62, 0xc005a91d4379a564, + 0xc0011183d32b7efc, 0x401abb09f933328e, + 0x3fd39cc9f1b8792e, 0xbfe4dfbefd1bb404, + 0x4000ce23d281ca35, 0x3ff44d681affe7bf, + 0x4000f8e9160f1c7a, 0x4010fe5e7c8d8cb2, + 0x4009c45509cfac02, 0xbfb076b690f7a960, + 0xc002673d88463af9, 0xbff513de46e3090a, + 0xc00261c3805973ea, 0xc01031323380cdc1, + 0xc005de8ec83d327a, 0x40067e90be4f8218, + 0x3fff0968aa4d2a40, 0xc0017376823e94bf, + 0xbfea0809fee9bcce, 0xbfe867f16782fd8c, + 0x4005d1dd9005895f, 0x3fec76b43ff12934, + 0x3ff626b416718390, 0x3fd0af418b9ecb98, + 0xbff8f6287f0ea38b, 0x3fe018a779f1d676, + 0xc0097d513774a033, 0x40092a0d09935edf, + 0xbfd46c307f3164a6, 0x3ffef485a2a65c54, + 0x4016579e10ddff56, 0x4009fd2eb595abb5, + 0xbffdc448b04c4f32, 0x3ff60902652bd3ca, + 0x3ffe8e3c764fe5ba, 0x3fc216d97dc43e0c, + 0xbfee5e262fb17324, 0x3ffc38589806b67a, + 0xc004b67f90dda015, 0xc00537b34810980c, + 0xc006fe88e762e549, 0xbff9999e07f09ad0, + 0xbff0b571c0724e34, 0x3ff19f6a33e9ec0e, + 0x40058d77468cc3a4, 0xc00389526ea15af8, + 0x3ffee90c5ad62cca, 0xbff536cbe0a5115a, + 0x3ffa38f4cbdc14b3, 0x40095f2969854bc6, + 0xc0046f2dc0bd0382, 0xc00458dab80f25c0, + 0x40061bbd5a4d8596, 0xbff70cc2479f49e2, + 0x4007a1667fe85b34, 0x40045f309a6b3a58, + 0xbffe8e7ef6d30d96, 0xbfd66c3424c91a48, + 0xbff3e170b9920dfa, 0xbff78d259809f49a, + 0xc002c8d45443a9e4, 0x4002f22fb01403d2, + 0x3ffdcde0b670e6d6, 0x400cc1308628c501, + 0xc0021e3e48b4c7ca, 0x3ff2f93b1fea58f4, + 0xbfb28a920a2d08a0, 0x3ff7dc8e3f6cc125, + 0xc00843f6b0257273, 0x4003c32013775b7a, + 0x400201b912f3ad1e, 0xbffea688ee401936, + 0xbff8dbce09545863, 0x40097c6f08783dbf, + 0x4003a060a38049b4, 0xbff4347474e0ec60, + 0x4007ccf830591701, 0xbff37e039a5f74e8, + 0x3ffb9a7e441d1802, 0x4001f1115be2a4a9, + 0xbfef8863ff9024ff, 0xc010e1004fb842ae, + 0x3ff5ae4de3e2b813, 0x3ff59da19feb264b, + 0x400322292071a9ff, 0xbfe10da0de7e53b2, + 0xbfe96e8c3c15a36e, 0x3ff821e12db58a72, + 0xc0062c3f010eba98, 0xc00d56c856cb8259, + 0xc009758e8dea891f, 0x3ffbd54867e54b83, + 0x3fd89c6d21770745, 0x400d82f60e3b0c9d, + 0xc00330701b484f61, 0xbfc3fd8f89a734a8, + 0x3ff29004c19cd184, 0x400341617de4f342, + 0xbfd58f59a929eaf4, 0xbfe59dc98c8a7c8d, + 0x3fff6095dd3445f5, 0x401ee96eb814d92a, + 0xbff07144a2abfde8, 0xbfeeac6560b8417c, + 0xbffe33f444623c80, 0x40009ff8e6a602de, + 0x40163d953c222264, 0xbfdd9340e009f384, + 0x4001c8aa2ba011f0, 0x3fd0819b7551ac48, + 0x400c0effb7d6a36e, 0x3fb8728a5e09f870, + 0x3fc19c6c613a918c, 0xbfaf262221cb9c10, + 0xbffd8193e6883af0, 0xc0061118df054305, + 0xc00ab17e2493b2ec, 0x4012eecb31abc9aa, + 0xbfd52dd2615e0330, 0x3fdeceeff4be7d9e, + 0x3ff53e6914dfccea, 0x3fe598392ff6eda7, + 0x40041e75fe3e2aa5, 0x3fc010fb767013dc, + 0xbff0c8297b9359a0, 0x3fde0ada26a61534, + 0x4003f8f9ef70bf11, 0x400c541f45281597, + 0x3ffd0d1881ab2976, 0x4005cea6b3419d7c, + 0x40119630f6862175, 0xc00b46d88667cc08, + 0x4003029acf6addfe, 0x3fe9619e20df2c7c, + 0xbfa94b8c07ddedb0, 0xc00820cbb4579d49, + 0x3fdabc27587c088c, 0xc006a49ce0ad4dfe, + 0x3ffae273c57f048c, 0x3ff63953b5e855fb, + 0xbff10c129af08956, 0x3fb54b1c3b3fa6ac, + 0x3ff8319d3c6d57c9, 0xbfe8085ec9ecefe4, + 0xc0079283227c9798, 0xc0064230b96c399c, + 0xc0198ec309be8577, 0x3ff2a9eb23c64f14, + 0xbff71b3cbcf4669b, 0x400078a875173f7c, + 0xbfe383a5cb174134, 0xbfe6aed6c751cd48, + 0x3fdbcaddbd2f8ea8, 0xc00d32539ec13a73, + 0xc000a5394d33a3d7, 0xbffa5d4ec18397d4, + 0x3fd0fee8f1b7b4c8, 0xc0088339e2b3c37c, + 0xc0100d78dbe6637e, 0x4008395c2e2bf67e, + 0x3fc8ccdd187651b0, 0x4005fd42f4078faa, + 0x400b36b76e7dfa34, 0x3ff5f6e249c3f29f, + 0x3fcdcac60cad1790, 0x3ffc4d29c21d6911, + 0x3ff0eae66cea359e, 0xc013b17aef8cac2a, + 0x3fd317a555ad8a26, 0x3fce772556423cb8, + 0x3fe0d8d212aefc68, 0xbfe4b7cccaef3de4, + 0x3ff5b4707ac8228e, 0x3fce00506f6fa68c, + 0xbff19068f77d9b59, 0xc00cf68071a9171a, + 0xbfc23d659445d108, 0x3faedb326cc5f7a0, + 0xc0002020fb73e534, 0xc00d3578423da0b2, + 0x3fdb221270d7bd9b, 0x3fe423362c6fcc30, + 0xbffe7c802be2238c, 0xbff63c5c5b6aa372, + 0xbff0edc516762ea4, 0x3ffcc1d8eb33b4ff, + 0xc017ed474ca79642, 0xbff80f0409568355, + 0xbffc444eb038851a, 0x3fdb06e64b33d174, + 0x3fe36e3163c94072, 0xc012f2b75b31bdee, + 0xbfe12e99f7a24d5a, 0x3fd755b3a0198bb4, + 0x4000048c83ce0fcc, 0x3ffb4227761516b5, + 0x4004265eeb79d0ed, 0x3fffbcf716738ec9, + 0xc0120eb90d35b9ab, 0xc000074eeae92cbe, + 0xbff3e98d00fa1b68, 0xbfa0bde650f86aac, + 0xbfcb47949252ab2a, 0x4015c49db8827504, + 0x3ffa9890c9f62175, 0xc003b993d5b6c100, + 0x3fffde1207f87529, 0xc013c0780a55b0e1, + 0xbfed86f25664e7f8, 0x3fe06bb5598da22c, + 0x40012812c0e9b47f, 0xbfcc0b3ac63b1524, + 0x40166be21eb45a8a, 0x4009b22da86f4cc4, + 0xc0042b9a590f4418, 0xbfe8d3480e74c444, + 0xc00212d02b1341ee, 0xc0159b791361108a, + 0x3ffb33e4276a723a, 0x3fbfd9dd29a6cb80, + 0xbffe2e429b68ea62, 0x400903d0e026a0b0, + 0x3feba176805d1e50, 0x3fe8274b47efbe98, + 0x3ff7286d2b035b84, 0xbfde4971f8e32c0c, + 0xbff7171736a55591, 0x3fed97190d490b99, + 0x4002dfcb89315df5, 0x3feb3dc2cc9d85ab, + 0x4009e9306719d60e, 0x3fe5c801fbdbdff8, + 0xc003aa15ff451164, 0x401160ce4c626672, + 0x40005ffb43bff2f4, 0x3f8b360b41daaf00, + 0x3feaff65d42e9564, 0xbfe9699e868eec3a, + 0x40049fc023866e8c, 0x3fe3864f0bfde454, + 0x3fde0c5793572cf8, 0xbfc699f3ce90da88, + 0x3ff05f19348c3656, 0x4005db43ad2677cb, + 0x3fea10f153eb2998, 0x3fe8ad42aca27c69, + 0xbfeaf052a3645c27, 0xbffd3cd80fc8e31e, + 0x3ff1ce68f5c01cea, 0xc010f4149b44d2ea, + 0x3fe225c101eb28da, 0x3fe12e8554a737fe, + 0x4000114719323f85, 0x3faaea385332c580, + 0xc015f577bedecb9e, 0xbfd829cb3c5d71ba, + 0xc007306bf45e3f80, 0x3fd58a56a5972e14, + 0x3ffc7020595310d7, 0xbfe456dff3a41054, + 0xbfe30c8eaf0d5af3, 0xc00d9194df9c50b7, + 0x3fe9b1ed21dbfa84, 0x400478a404b8a100, + 0x3fe0bb801c63914f, 0xbfd3b1d66dfbab88, + 0x3ff2cb64c7d9f4ec, 0xbff4c2568725e41e, + 0x40051b9cce96c23f, 0xc000c72b188312aa, + 0xc010edd5011bcf47, 0x3ff3b2e5e33c3fda, + 0xc00d450a869d0a70, 0x4015228170af3d60, + 0xc00fc3c71c17e2bb, 0xc00043ce0b683a46, + 0x40079ab887fdcff9, 0x3ffa055798df968a, + 0xbfe1db78c6bab4dc, 0x4006949b17458cf2, + 0x3fe250b56bc398e0, 0x4011cc123fa12ce7, + 0xc000fd39fc5dc97a, 0x3fc3702bb5ebb1a8, + 0xbff39e51b0dc1ce8, 0xc001f65a1cb5d25c, + 0x400327cb80f12170, 0x3ff4d16152e8d04c, + 0x3fea34bd553109ac, 0xbff76eaec1d30e80, + 0x40109c9ef6dbbc82, 0x4010ba37865b4a70, + 0x3feb5058334ab81a, 0x3febf83ad1085cba, + 0x3ffc44e5c30cb8b0, 0x3ff7eab70e4f9ee8, + 0x4004bb18881628d2, 0xbfe9658d4b93c05c, + 0x4012e1ca141830b0, 0xbff878dee6a18cc4, + 0xc00e4e1b43b0f0c2, 0x3fe360753aba4106, + 0x40066b904417ebf2, 0xc011bfc1318c6270, + 0x3ff0e9407cec298a, 0xbfe385deec1a05ed, + 0xbffe529da585e46e, 0x3ff915415e729187, + 0x40023c4ccbb1ab68, 0xc0051aaa6e46bb3f, + 0xbfee3a33adfd0ced, 0xc0105003440680e6, + 0x3ff23b089049ae26, 0x40035177916454b6, + 0xbfdf634b9240049e, 0xbfc83229d525b7f8, + 0x400a69a9e4179e6f, 0xc001480187caa062, + 0xc009b59423ce0024, 0x4009c3fc48369197, + 0x3ffe2565b1b4a0cd, 0x40065d8c20baad94, + 0xbff365db800dcc40, 0xc00f7e8219ec3137, + 0x3f9bbdbbe757f300, 0xbff0a209987bb96e, + 0x3ff4c84f3aa56652, 0xbfbdc979f0097c4a, + 0x3feea58d31ab4c34, 0x3fe8c2a16e066c90, + 0x3fd1d84afa1b7843, 0x3faedab2aad624a0, + 0x3ff5af54e4434fe5, 0xbfe579f64a6e7f60, + 0x3ffaf8b5b708710e, 0xbfe7b2a3186cca48, + 0xbfe446e4523726e9, 0x400215ed0b75dd68, + 0xbff359f03a9b28a6, 0xbff7c45b05eabec1, + 0xbfe50361fef74a20, 0x40087070f667c19c, + 0xbffa20461ec9fa8f, 0xbfcc2fd912ab7519, + 0x3fe6e2f7b334ab94, 0xbfe1a4c6cd124dc8, + 0x3ff77b6e2a9aa2c0, 0xbf994115be505380, + 0xc00c6b4efaf9aa22, 0xbff2b3b79c79384f, + 0x4004567e89eca3e1, 0xbff8aa5e39e1d3ae, + 0x400e8ca96015e489, 0x3ffba46b83d2bc48, + 0xbff5d9c80f2f875e, 0x3fed53df049f08ae, + 0x3fcb00ffa480614c, 0xc014291f5bbe608c, + 0xbfef3f9f9d1d1c7a, 0x400910a39479e45c, + 0xbf99ac84c7b1f280, 0x3ff7c4c23d0eb582, + 0x400cf674724e6ed8, 0x4003f292e97430cc, + 0xc0096fe0c36f80f4, 0x40186b9536936d2d, + 0xc01766492f5ffb20, 0x40034bf331e255f4, + 0x3ff6e2573a53fef6, 0x400fb994d81b1517, + 0x3ffd9c58eae263ee, 0xc00bda162fd88f26, + 0x3feb800b892e6fae, 0x4012aa57abddfb2c, + 0xc0023ea534e38497, 0xbff8cc63f4cf0147, + 0xbf807f81773e5c00, 0xbff1a12849db76cc, + 0x3ff3ded438516462, 0xbffe27efb8be6b42, + 0x3ff7876ccc95e344, 0x40014001ddaea821, + 0xc006dfababf5b76e, 0x3fca5d032f39fea8, + 0xbff58715cd47055a, 0x4005ed5b03ae3f4b, + 0xbfe3825cc8b95926, 0xbfe3c2c55a4a2704, + 0x3ff381e5739ed4ad, 0xc00939ae765620b8, + 0x3f98c30659d83a20, 0xc00400f66cf10329, + 0xc016c63d97845bc2, 0xc015accdb1d0325a, + 0xbff1c8e948fca4ed, 0xc012d2e7f3cf92ce, + 0x400945c1aaedd73e, 0x4010ee7f3d5d5a32, + 0xbff51514d2fe847a, 0xc002309301d8e5bc, + 0xbfe30cac63aa5225, 0x400fb3dea14cab57, + 0xbffef20b7e8a414a, 0x3fe9d7251a122d33, + 0xbfeb22c0df75414c, 0x40020d07af281d6f, + 0x4009986f7eb6c3f4, 0x3fcb17390540ef96, + 0xbfd00ba7a0b26a48, 0xc00275fdd1d6095e, + 0x400269fdd91164ba, 0xbfc5749783f0ed08, + 0x3fd6ea6c34327b70, 0x40065c608db61b29, + 0xbffca36883cf9be3, 0xc01495b568ebedd1, + 0x3ff292fae6ddf4af, 0xbfdb6dc4802c5648, + 0xbff40c5ee71dc0cd, 0xc00f96d037fa9af6, + 0x3fe23e87be1114e2, 0xbfe32c00ac7424db, + 0x3ffee2b9f82ff11e, 0xbfe7cfd762db16d2, + 0x3fed6319624165c5, 0x3ff7990e8bf26d6c, + 0xc010fdbf5376bd34, 0xc001fa8b897ae7ce, + 0xbff4f24e69d31194, 0x400723c9478f1087, + 0x400bf0ccd7777922, 0x3fd47b881979e78c, + 0xbffd0dc71e50abf9, 0xbfb3cb5d1a81be36, + 0x3fb9c8fcff900a2c, 0xc00ccaf2bee083ee, + 0xbfe5feab65054ad0, 0xbfef8e8fdfc6f8a2, + 0xc00b0ed4b8440794, 0xc00b910f67a09807, + 0x3ffc7a4073ddee30, 0xc003424a8d478d6e, + 0x3ffc97b4c0741cca, 0xc00ca32f3104f360, + 0x40046255f53cf242, 0x401930a0be8be4fa }; static const uint64_t in_cfft_step_16[32] = { @@ -24628,40 +24628,40 @@ static const uint64_t in_cfft_step_16[32] = { static const uint64_t in_cifft_step_16[32] = { 0x401ccccccccccccd, 0x0, - 0xbfecccccccccccce, 0x4012193232087380, + 0xbfeccccccccccccd, 0x4012193232087380, 0x0, 0x0, - 0xbfecccccccccccce, 0x3ff58d16655168be, + 0xbfeccccccccccccd, 0x3ff58d16655168c0, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fe33e58f33f2d65, + 0xbfeccccccccccccd, 0x3fe33e58f33f2d66, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fc6ea2a16b312d0, + 0xbfeccccccccccccd, 0x3fc6ea2a16b312d0, 0x0, 0x0, - 0xbfecccccccccccce, 0xbfc6ea2a16b312d0, + 0xbfeccccccccccccd, 0xbfc6ea2a16b312d0, 0x0, 0x0, - 0xbfecccccccccccce, 0xbfe33e58f33f2d67, + 0xbfeccccccccccccd, 0xbfe33e58f33f2d6a, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbff58d16655168be, + 0xbfeccccccccccccd, 0xbff58d16655168be, 0x0, 0x0, - 0xbfecccccccccccca, 0xc012193232087380 + 0xbfeccccccccccccd, 0xc012193232087380 }; static const uint64_t ref_cfft_step_16[32] = { 0x401ccccccccccccd, 0x0, - 0xbfecccccccccccce, 0x4012193232087380, + 0xbfeccccccccccccd, 0x4012193232087380, 0x0, 0x0, - 0xbfecccccccccccce, 0x3ff58d16655168be, + 0xbfeccccccccccccd, 0x3ff58d16655168c0, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fe33e58f33f2d65, + 0xbfeccccccccccccd, 0x3fe33e58f33f2d66, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fc6ea2a16b312d0, + 0xbfeccccccccccccd, 0x3fc6ea2a16b312d0, 0x0, 0x0, - 0xbfecccccccccccce, 0xbfc6ea2a16b312d0, + 0xbfeccccccccccccd, 0xbfc6ea2a16b312d0, 0x0, 0x0, - 0xbfecccccccccccce, 0xbfe33e58f33f2d67, + 0xbfeccccccccccccd, 0xbfe33e58f33f2d6a, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbff58d16655168be, + 0xbfeccccccccccccd, 0xbff58d16655168be, 0x0, 0x0, - 0xbfecccccccccccca, 0xc012193232087380 + 0xbfeccccccccccccd, 0xc012193232087380 }; static const uint64_t in_cfft_step_32[64] = { @@ -24701,72 +24701,72 @@ static const uint64_t in_cfft_step_32[64] = { static const uint64_t in_cifft_step_32[64] = { 0x402ccccccccccccd, 0x0, - 0xbfecccccccccccd2, 0x40224694b6d1e46c, + 0xbfeccccccccccccc, 0x40224694b6d1e46b, 0x0, 0x0, - 0xbfecccccccccccd0, 0x4007bc3751b89a62, + 0xbfecccccccccccca, 0x4007bc3751b89a60, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3ffaf0c4f1b61206, + 0xbfeccccccccccccf, 0x3ffaf0c4f1b61204, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3ff18be432937075, + 0xbfecccccccccccca, 0x3ff18be432937072, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fe7a2b359cd5779, + 0xbfecccccccccccd2, 0x3fe7a2b359cd577c, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fdec9aff9db926e, + 0xbfeccccccccccccd, 0x3fdec9aff9db9276, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fd1790763398d14, + 0xbfecccccccccccce, 0x3fd1790763398d10, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fb6b14264b87580, + 0xbfeccccccccccccc, 0x3fb6b14264b87580, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfb6b14264b875c0, + 0xbfeccccccccccccc, 0xbfb6b14264b87580, 0x0, 0x0, 0xbfecccccccccccce, 0xbfd1790763398d10, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbfdec9aff9db9280, + 0xbfeccccccccccccd, 0xbfdec9aff9db9276, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfe7a2b359cd5782, + 0xbfecccccccccccd2, 0xbfe7a2b359cd577c, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbff18be432937070, + 0xbfecccccccccccca, 0xbff18be432937072, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbffaf0c4f1b61204, + 0xbfeccccccccccccf, 0xbffaf0c4f1b61204, 0x0, 0x0, - 0xbfecccccccccccc7, 0xc007bc3751b89a60, + 0xbfecccccccccccca, 0xc007bc3751b89a60, 0x0, 0x0, - 0xbfecccccccccccc0, 0xc0224694b6d1e46b + 0xbfeccccccccccccc, 0xc0224694b6d1e46b }; static const uint64_t ref_cfft_step_32[64] = { 0x402ccccccccccccd, 0x0, - 0xbfecccccccccccd2, 0x40224694b6d1e46c, + 0xbfeccccccccccccc, 0x40224694b6d1e46b, 0x0, 0x0, - 0xbfecccccccccccd0, 0x4007bc3751b89a62, + 0xbfecccccccccccca, 0x4007bc3751b89a60, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3ffaf0c4f1b61206, + 0xbfeccccccccccccf, 0x3ffaf0c4f1b61204, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3ff18be432937075, + 0xbfecccccccccccca, 0x3ff18be432937072, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fe7a2b359cd5779, + 0xbfecccccccccccd2, 0x3fe7a2b359cd577c, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fdec9aff9db926e, + 0xbfeccccccccccccd, 0x3fdec9aff9db9276, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fd1790763398d14, + 0xbfecccccccccccce, 0x3fd1790763398d10, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fb6b14264b87580, + 0xbfeccccccccccccc, 0x3fb6b14264b87580, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfb6b14264b875c0, + 0xbfeccccccccccccc, 0xbfb6b14264b87580, 0x0, 0x0, 0xbfecccccccccccce, 0xbfd1790763398d10, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbfdec9aff9db9280, + 0xbfeccccccccccccd, 0xbfdec9aff9db9276, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfe7a2b359cd5782, + 0xbfecccccccccccd2, 0xbfe7a2b359cd577c, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbff18be432937070, + 0xbfecccccccccccca, 0xbff18be432937072, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbffaf0c4f1b61204, + 0xbfeccccccccccccf, 0xbffaf0c4f1b61204, 0x0, 0x0, - 0xbfecccccccccccc7, 0xc007bc3751b89a60, + 0xbfecccccccccccca, 0xc007bc3751b89a60, 0x0, 0x0, - 0xbfecccccccccccc0, 0xc0224694b6d1e46b + 0xbfeccccccccccccc, 0xc0224694b6d1e46b }; static const uint64_t in_cfft_step_64[128] = { @@ -24838,136 +24838,136 @@ static const uint64_t in_cfft_step_64[128] = { static const uint64_t in_cifft_step_64[128] = { 0x403ccccccccccccd, 0x0, - 0xbfecccccccccccd4, 0x403251e65569b233, + 0xbfeccccccccccccb, 0x403251e65569b233, 0x0, 0x0, - 0xbfecccccccccccd2, 0x401844ec2b5fac28, + 0xbfecccccccccccc6, 0x401844ec2b5fac27, 0x0, 0x0, - 0xbfecccccccccccd3, 0x400cbe7785552992, + 0xbfecccccccccccd1, 0x400cbe7785552992, 0x0, 0x0, - 0xbfecccccccccccd0, 0x40041f661e754926, + 0xbfecccccccccccc8, 0x40041f661e754927, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3ffe723ce98fc58d, + 0xbfeccccccccccccc, 0x3ffe723ce98fc58a, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3ff80663076302d6, + 0xbfeccccccccccccc, 0x3ff80663076302d4, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3ff36a88f5ef7ae7, + 0xbfeccccccccccccc, 0x3ff36a88f5ef7ae6, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fefc6a199472fb2, + 0xbfeccccccccccccf, 0x3fefc6a199472fb2, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fea1a5100191248, + 0xbfeccccccccccccc, 0x3fea1a5100191251, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fe55c0a88a568ba, + 0xbfecccccccccccce, 0x3fe55c0a88a568bc, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fe1431614ea7329, + 0xbfecccccccccccce, 0x3fe1431614ea7331, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fdb3e263f09b848, + 0xbfecccccccccccd2, 0x3fdb3e263f09b83c, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fd49c0f5f0ec59c, + 0xbfecccccccccccc6, 0x3fd49c0f5f0ec5ac, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fccdb2939f178d8, + 0xbfeccccccccccccf, 0x3fccdb2939f178e8, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fc1169b34e238d0, + 0xbfeccccccccccccd, 0x3fc1169b34e238f0, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fa6a33d2f9b8f00, + 0xbfeccccccccccccc, 0x3fa6a33d2f9b9000, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfa6a33d2f9b9000, + 0xbfeccccccccccccd, 0xbfa6a33d2f9b9000, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfc1169b34e238d0, + 0xbfecccccccccccce, 0xbfc1169b34e238e0, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfccdb2939f178d8, + 0xbfeccccccccccccd, 0xbfccdb2939f178e0, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfd49c0f5f0ec5bc, + 0xbfeccccccccccccc, 0xbfd49c0f5f0ec5a8, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfdb3e263f09b844, + 0xbfecccccccccccd8, 0xbfdb3e263f09b838, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbfe1431614ea7331, + 0xbfecccccccccccce, 0xbfe1431614ea7331, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfe55c0a88a568be, + 0xbfecccccccccccd0, 0xbfe55c0a88a568bd, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfea1a5100191242, + 0xbfecccccccccccc9, 0xbfea1a5100191252, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfefc6a199472fa8, + 0xbfeccccccccccccc, 0xbfefc6a199472fb1, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbff36a88f5ef7ae9, + 0xbfecccccccccccce, 0xbff36a88f5ef7ae6, 0x0, 0x0, 0xbfeccccccccccccc, 0xbff80663076302d4, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbffe723ce98fc588, + 0xbfecccccccccccd2, 0xbffe723ce98fc58b, 0x0, 0x0, - 0xbfecccccccccccc9, 0xc0041f661e754926, + 0xbfecccccccccccce, 0xc0041f661e754928, 0x0, 0x0, - 0xbfeccccccccccccd, 0xc00cbe7785552994, + 0xbfeccccccccccccf, 0xc00cbe7785552992, 0x0, 0x0, - 0xbfecccccccccccc8, 0xc01844ec2b5fac26, + 0xbfecccccccccccc7, 0xc01844ec2b5fac28, 0x0, 0x0, - 0xbfecccccccccccac, 0xc03251e65569b234 + 0xbfeccccccccccccc, 0xc03251e65569b233 }; static const uint64_t ref_cfft_step_64[128] = { 0x403ccccccccccccd, 0x0, - 0xbfecccccccccccd4, 0x403251e65569b233, + 0xbfeccccccccccccb, 0x403251e65569b233, 0x0, 0x0, - 0xbfecccccccccccd2, 0x401844ec2b5fac28, + 0xbfecccccccccccc6, 0x401844ec2b5fac27, 0x0, 0x0, - 0xbfecccccccccccd3, 0x400cbe7785552992, + 0xbfecccccccccccd1, 0x400cbe7785552992, 0x0, 0x0, - 0xbfecccccccccccd0, 0x40041f661e754926, + 0xbfecccccccccccc8, 0x40041f661e754927, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3ffe723ce98fc58d, + 0xbfeccccccccccccc, 0x3ffe723ce98fc58a, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3ff80663076302d6, + 0xbfeccccccccccccc, 0x3ff80663076302d4, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3ff36a88f5ef7ae7, + 0xbfeccccccccccccc, 0x3ff36a88f5ef7ae6, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fefc6a199472fb2, + 0xbfeccccccccccccf, 0x3fefc6a199472fb2, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fea1a5100191248, + 0xbfeccccccccccccc, 0x3fea1a5100191251, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fe55c0a88a568ba, + 0xbfecccccccccccce, 0x3fe55c0a88a568bc, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fe1431614ea7329, + 0xbfecccccccccccce, 0x3fe1431614ea7331, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fdb3e263f09b848, + 0xbfecccccccccccd2, 0x3fdb3e263f09b83c, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fd49c0f5f0ec59c, + 0xbfecccccccccccc6, 0x3fd49c0f5f0ec5ac, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fccdb2939f178d8, + 0xbfeccccccccccccf, 0x3fccdb2939f178e8, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fc1169b34e238d0, + 0xbfeccccccccccccd, 0x3fc1169b34e238f0, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fa6a33d2f9b8f00, + 0xbfeccccccccccccc, 0x3fa6a33d2f9b9000, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfa6a33d2f9b9000, + 0xbfeccccccccccccd, 0xbfa6a33d2f9b9000, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfc1169b34e238d0, + 0xbfecccccccccccce, 0xbfc1169b34e238e0, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfccdb2939f178d8, + 0xbfeccccccccccccd, 0xbfccdb2939f178e0, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfd49c0f5f0ec5bc, + 0xbfeccccccccccccc, 0xbfd49c0f5f0ec5a8, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfdb3e263f09b844, + 0xbfecccccccccccd8, 0xbfdb3e263f09b838, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbfe1431614ea7331, + 0xbfecccccccccccce, 0xbfe1431614ea7331, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfe55c0a88a568be, + 0xbfecccccccccccd0, 0xbfe55c0a88a568bd, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfea1a5100191242, + 0xbfecccccccccccc9, 0xbfea1a5100191252, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfefc6a199472fa8, + 0xbfeccccccccccccc, 0xbfefc6a199472fb1, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbff36a88f5ef7ae9, + 0xbfecccccccccccce, 0xbff36a88f5ef7ae6, 0x0, 0x0, 0xbfeccccccccccccc, 0xbff80663076302d4, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbffe723ce98fc588, + 0xbfecccccccccccd2, 0xbffe723ce98fc58b, 0x0, 0x0, - 0xbfecccccccccccc9, 0xc0041f661e754926, + 0xbfecccccccccccce, 0xc0041f661e754928, 0x0, 0x0, - 0xbfeccccccccccccd, 0xc00cbe7785552994, + 0xbfeccccccccccccf, 0xc00cbe7785552992, 0x0, 0x0, - 0xbfecccccccccccc8, 0xc01844ec2b5fac26, + 0xbfecccccccccccc7, 0xc01844ec2b5fac28, 0x0, 0x0, - 0xbfecccccccccccac, 0xc03251e65569b234 + 0xbfeccccccccccccc, 0xc03251e65569b233 }; static const uint64_t in_cfft_step_128[256] = { @@ -25103,264 +25103,264 @@ static const uint64_t in_cfft_step_128[256] = { static const uint64_t in_cifft_step_128[256] = { 0x404ccccccccccccd, 0x0, - 0xbfeccccccccccce0, 0x404254ba4d4dccca, + 0xbfeccccccccccccd, 0x404254ba4d4dccca, 0x0, 0x0, - 0xbfecccccccccccd6, 0x402866e9c69d778d, + 0xbfecccccccccccca, 0x402866e9c69d778c, 0x0, 0x0, - 0xbfecccccccccccda, 0x401d3022a95b27ca, + 0xbfeccccccccccccd, 0x401d3022a95b27ca, 0x0, 0x0, - 0xbfecccccccccccde, 0x4014bf4fc9bb14bc, + 0xbfecccccccccccc4, 0x4014bf4fc9bb14b9, 0x0, 0x0, - 0xbfecccccccccccd6, 0x401008123832cdbc, + 0xbfeccccccccccccd, 0x401008123832cdbc, 0x0, 0x0, - 0xbfecccccccccccd3, 0x400a04780e45d71c, + 0xbfeccccccccccccc, 0x400a04780e45d71d, 0x0, 0x0, - 0xbfecccccccccccd5, 0x4005cb722f4c178b, + 0xbfeccccccccccccd, 0x4005cb722f4c178b, 0x0, 0x0, - 0xbfecccccccccccda, 0x4002aa50fa649f4a, + 0xbfecccccccccccbf, 0x4002aa50fa649f45, 0x0, 0x0, - 0xbfeccccccccccccf, 0x40003e314c63f4cd, + 0xbfeccccccccccccd, 0x40003e314c63f4d1, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3ffc9b9e74f48760, + 0xbfeccccccccccccf, 0x3ffc9b9e74f4875f, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3ff96b67f3ac7610, + 0xbfeccccccccccccd, 0x3ff96b67f3ac760f, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3ff6bd76358b76c6, + 0xbfeccccccccccccb, 0x3ff6bd76358b76c6, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3ff472492bef49cd, + 0xbfeccccccccccccd, 0x3ff472492bef49d1, 0x0, 0x0, - 0xbfecccccccccccd9, 0x3ff273af5fdf55b7, + 0xbfecccccccccccc9, 0x3ff273af5fdf55bd, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3ff0b18fe45133f2, + 0xbfeccccccccccccd, 0x3ff0b18fe45133e4, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fee3fe4ddc206a0, + 0xbfecccccccccccc4, 0x3fee3fe4ddc20688, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3feb6b7d37ce94c0, + 0xbfeccccccccccccd, 0x3feb6b7d37ce94c5, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fe8d7d22e314b7c, + 0xbfeccccccccccccc, 0x3fe8d7d22e314b76, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fe679ca22c5ef00, + 0xbfeccccccccccccd, 0x3fe679ca22c5ef02, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fe44882f8cfcdf0, + 0xbfecccccccccccc9, 0x3fe44882f8cfcdea, 0x0, 0x0, - 0xbfecccccccccccd9, 0x3fe23cc62c0d3535, + 0xbfeccccccccccccd, 0x3fe23cc62c0d353d, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3fe050a3bd8405b9, + 0xbfecccccccccccce, 0x3fe050a3bd8405b4, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fdcfe4fb13c7a82, + 0xbfeccccccccccccd, 0x3fdcfe4fb13c7aa0, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fd9884662bb5d1e, + 0xbfecccccccccccd3, 0x3fd9884662bb5d62, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fd638016e083b76, + 0xbfeccccccccccccd, 0x3fd638016e083b6a, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fd30749cae4e540, + 0xbfeccccccccccccf, 0x3fd30749cae4e54c, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fcfe1506e2d4490, + 0xbfeccccccccccccd, 0x3fcfe1506e2d4488, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fc9de786d5d5ec8, + 0xbfecccccccccccce, 0x3fc9de786d5d5ed8, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fc3fd3568b97280, + 0xbfeccccccccccccd, 0x3fc3fd3568b97230, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fbc6ac9017f8e00, + 0xbfecccccccccccd0, 0x3fbc6ac9017f8d60, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3fb0fecd9ee5b280, + 0xbfeccccccccccccd, 0x3fb0fecd9ee5b300, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3f969fbf20d4b800, + 0xbfecccccccccccd2, 0x3f969fbf20d4b800, 0x0, 0x0, - 0xbfecccccccccccce, 0xbf969fbf20d4b400, + 0xbfeccccccccccccd, 0xbf969fbf20d4bc00, 0x0, 0x0, - 0xbfecccccccccccce, 0xbfb0fecd9ee5b280, + 0xbfecccccccccccce, 0xbfb0fecd9ee5b300, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfbc6ac9017f8dc0, + 0xbfeccccccccccccd, 0xbfbc6ac9017f8da0, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfc3fd3568b97230, + 0xbfecccccccccccce, 0xbfc3fd3568b97260, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbfc9de786d5d5ec0, + 0xbfeccccccccccccd, 0xbfc9de786d5d5ec8, 0x0, 0x0, - 0xbfeccccccccccccf, 0xbfcfe1506e2d44b8, + 0xbfecccccccccccce, 0xbfcfe1506e2d44b0, 0x0, 0x0, 0xbfeccccccccccccd, 0xbfd30749cae4e528, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfd638016e083b72, + 0xbfeccccccccccccf, 0xbfd638016e083b6a, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfd9884662bb5d72, + 0xbfeccccccccccccd, 0xbfd9884662bb5d46, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfdcfe4fb13c7a90, + 0xbfeccccccccccccd, 0xbfdcfe4fb13c7a84, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfe050a3bd8405c8, + 0xbfeccccccccccccd, 0xbfe050a3bd8405ba, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbfe23cc62c0d3558, + 0xbfeccccccccccccf, 0xbfe23cc62c0d3547, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfe44882f8cfcdf6, + 0xbfeccccccccccccd, 0xbfe44882f8cfcdf6, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbfe679ca22c5ef0e, + 0xbfecccccccccccd1, 0xbfe679ca22c5ef0a, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbfe8d7d22e314b74, + 0xbfeccccccccccccd, 0xbfe8d7d22e314b71, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfeb6b7d37ce94c0, + 0xbfecccccccccccc4, 0xbfeb6b7d37ce94c8, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbfee3fe4ddc206a0, + 0xbfeccccccccccccd, 0xbfee3fe4ddc206a5, 0x0, 0x0, - 0xbfecccccccccccce, 0xbff0b18fe45133ee, + 0xbfeccccccccccccc, 0xbff0b18fe45133ef, 0x0, 0x0, - 0xbfecccccccccccbc, 0xbff273af5fdf55b4, + 0xbfeccccccccccccd, 0xbff273af5fdf55b9, 0x0, 0x0, - 0xbfecccccccccccce, 0xbff472492bef49cc, + 0xbfecccccccccccd5, 0xbff472492bef49cb, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbff6bd76358b76c0, + 0xbfeccccccccccccd, 0xbff6bd76358b76bc, 0x0, 0x0, - 0xbfeccccccccccccf, 0xbff96b67f3ac760e, + 0xbfeccccccccccccc, 0xbff96b67f3ac760e, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbffc9b9e74f4875a, + 0xbfeccccccccccccd, 0xbffc9b9e74f4875c, 0x0, 0x0, - 0xbfecccccccccccd1, 0xc0003e314c63f4cf, + 0xbfecccccccccccdb, 0xc0003e314c63f4cc, 0x0, 0x0, - 0xbfecccccccccccce, 0xc002aa50fa649f45, + 0xbfeccccccccccccd, 0xc002aa50fa649f46, 0x0, 0x0, - 0xbfecccccccccccca, 0xc005cb722f4c178e, + 0xbfeccccccccccccd, 0xc005cb722f4c178a, 0x0, 0x0, - 0xbfeccccccccccccc, 0xc00a04780e45d71f, + 0xbfeccccccccccccd, 0xc00a04780e45d720, 0x0, 0x0, - 0xbfecccccccccccd4, 0xc01008123832cdbe, + 0xbfecccccccccccd0, 0xc01008123832cdbc, 0x0, 0x0, - 0xbfecccccccccccbe, 0xc014bf4fc9bb14b8, + 0xbfeccccccccccccd, 0xc014bf4fc9bb14ba, 0x0, 0x0, - 0xbfecccccccccccc3, 0xc01d3022a95b27c8, + 0xbfecccccccccccca, 0xc01d3022a95b27ca, 0x0, 0x0, - 0xbfecccccccccccb1, 0xc02866e9c69d778c, + 0xbfeccccccccccccd, 0xc02866e9c69d778c, 0x0, 0x0, - 0xbfeccccccccccc80, 0xc04254ba4d4dccc9 + 0xbfecccccccccccd2, 0xc04254ba4d4dccca }; static const uint64_t ref_cfft_step_128[256] = { 0x404ccccccccccccd, 0x0, - 0xbfeccccccccccce0, 0x404254ba4d4dccca, + 0xbfeccccccccccccd, 0x404254ba4d4dccca, 0x0, 0x0, - 0xbfecccccccccccd6, 0x402866e9c69d778d, + 0xbfecccccccccccca, 0x402866e9c69d778c, 0x0, 0x0, - 0xbfecccccccccccda, 0x401d3022a95b27ca, + 0xbfeccccccccccccd, 0x401d3022a95b27ca, 0x0, 0x0, - 0xbfecccccccccccde, 0x4014bf4fc9bb14bc, + 0xbfecccccccccccc4, 0x4014bf4fc9bb14b9, 0x0, 0x0, - 0xbfecccccccccccd6, 0x401008123832cdbc, + 0xbfeccccccccccccd, 0x401008123832cdbc, 0x0, 0x0, - 0xbfecccccccccccd3, 0x400a04780e45d71c, + 0xbfeccccccccccccc, 0x400a04780e45d71d, 0x0, 0x0, - 0xbfecccccccccccd5, 0x4005cb722f4c178b, + 0xbfeccccccccccccd, 0x4005cb722f4c178b, 0x0, 0x0, - 0xbfecccccccccccda, 0x4002aa50fa649f4a, + 0xbfecccccccccccbf, 0x4002aa50fa649f45, 0x0, 0x0, - 0xbfeccccccccccccf, 0x40003e314c63f4cd, + 0xbfeccccccccccccd, 0x40003e314c63f4d1, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3ffc9b9e74f48760, + 0xbfeccccccccccccf, 0x3ffc9b9e74f4875f, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3ff96b67f3ac7610, + 0xbfeccccccccccccd, 0x3ff96b67f3ac760f, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3ff6bd76358b76c6, + 0xbfeccccccccccccb, 0x3ff6bd76358b76c6, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3ff472492bef49cd, + 0xbfeccccccccccccd, 0x3ff472492bef49d1, 0x0, 0x0, - 0xbfecccccccccccd9, 0x3ff273af5fdf55b7, + 0xbfecccccccccccc9, 0x3ff273af5fdf55bd, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3ff0b18fe45133f2, + 0xbfeccccccccccccd, 0x3ff0b18fe45133e4, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fee3fe4ddc206a0, + 0xbfecccccccccccc4, 0x3fee3fe4ddc20688, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3feb6b7d37ce94c0, + 0xbfeccccccccccccd, 0x3feb6b7d37ce94c5, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fe8d7d22e314b7c, + 0xbfeccccccccccccc, 0x3fe8d7d22e314b76, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fe679ca22c5ef00, + 0xbfeccccccccccccd, 0x3fe679ca22c5ef02, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fe44882f8cfcdf0, + 0xbfecccccccccccc9, 0x3fe44882f8cfcdea, 0x0, 0x0, - 0xbfecccccccccccd9, 0x3fe23cc62c0d3535, + 0xbfeccccccccccccd, 0x3fe23cc62c0d353d, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3fe050a3bd8405b9, + 0xbfecccccccccccce, 0x3fe050a3bd8405b4, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fdcfe4fb13c7a82, + 0xbfeccccccccccccd, 0x3fdcfe4fb13c7aa0, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fd9884662bb5d1e, + 0xbfecccccccccccd3, 0x3fd9884662bb5d62, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fd638016e083b76, + 0xbfeccccccccccccd, 0x3fd638016e083b6a, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fd30749cae4e540, + 0xbfeccccccccccccf, 0x3fd30749cae4e54c, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fcfe1506e2d4490, + 0xbfeccccccccccccd, 0x3fcfe1506e2d4488, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fc9de786d5d5ec8, + 0xbfecccccccccccce, 0x3fc9de786d5d5ed8, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fc3fd3568b97280, + 0xbfeccccccccccccd, 0x3fc3fd3568b97230, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fbc6ac9017f8e00, + 0xbfecccccccccccd0, 0x3fbc6ac9017f8d60, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3fb0fecd9ee5b280, + 0xbfeccccccccccccd, 0x3fb0fecd9ee5b300, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3f969fbf20d4b800, + 0xbfecccccccccccd2, 0x3f969fbf20d4b800, 0x0, 0x0, - 0xbfecccccccccccce, 0xbf969fbf20d4b400, + 0xbfeccccccccccccd, 0xbf969fbf20d4bc00, 0x0, 0x0, - 0xbfecccccccccccce, 0xbfb0fecd9ee5b280, + 0xbfecccccccccccce, 0xbfb0fecd9ee5b300, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfbc6ac9017f8dc0, + 0xbfeccccccccccccd, 0xbfbc6ac9017f8da0, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfc3fd3568b97230, + 0xbfecccccccccccce, 0xbfc3fd3568b97260, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbfc9de786d5d5ec0, + 0xbfeccccccccccccd, 0xbfc9de786d5d5ec8, 0x0, 0x0, - 0xbfeccccccccccccf, 0xbfcfe1506e2d44b8, + 0xbfecccccccccccce, 0xbfcfe1506e2d44b0, 0x0, 0x0, 0xbfeccccccccccccd, 0xbfd30749cae4e528, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfd638016e083b72, + 0xbfeccccccccccccf, 0xbfd638016e083b6a, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfd9884662bb5d72, + 0xbfeccccccccccccd, 0xbfd9884662bb5d46, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfdcfe4fb13c7a90, + 0xbfeccccccccccccd, 0xbfdcfe4fb13c7a84, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfe050a3bd8405c8, + 0xbfeccccccccccccd, 0xbfe050a3bd8405ba, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbfe23cc62c0d3558, + 0xbfeccccccccccccf, 0xbfe23cc62c0d3547, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfe44882f8cfcdf6, + 0xbfeccccccccccccd, 0xbfe44882f8cfcdf6, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbfe679ca22c5ef0e, + 0xbfecccccccccccd1, 0xbfe679ca22c5ef0a, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbfe8d7d22e314b74, + 0xbfeccccccccccccd, 0xbfe8d7d22e314b71, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfeb6b7d37ce94c0, + 0xbfecccccccccccc4, 0xbfeb6b7d37ce94c8, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbfee3fe4ddc206a0, + 0xbfeccccccccccccd, 0xbfee3fe4ddc206a5, 0x0, 0x0, - 0xbfecccccccccccce, 0xbff0b18fe45133ee, + 0xbfeccccccccccccc, 0xbff0b18fe45133ef, 0x0, 0x0, - 0xbfecccccccccccbc, 0xbff273af5fdf55b4, + 0xbfeccccccccccccd, 0xbff273af5fdf55b9, 0x0, 0x0, - 0xbfecccccccccccce, 0xbff472492bef49cc, + 0xbfecccccccccccd5, 0xbff472492bef49cb, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbff6bd76358b76c0, + 0xbfeccccccccccccd, 0xbff6bd76358b76bc, 0x0, 0x0, - 0xbfeccccccccccccf, 0xbff96b67f3ac760e, + 0xbfeccccccccccccc, 0xbff96b67f3ac760e, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbffc9b9e74f4875a, + 0xbfeccccccccccccd, 0xbffc9b9e74f4875c, 0x0, 0x0, - 0xbfecccccccccccd1, 0xc0003e314c63f4cf, + 0xbfecccccccccccdb, 0xc0003e314c63f4cc, 0x0, 0x0, - 0xbfecccccccccccce, 0xc002aa50fa649f45, + 0xbfeccccccccccccd, 0xc002aa50fa649f46, 0x0, 0x0, - 0xbfecccccccccccca, 0xc005cb722f4c178e, + 0xbfeccccccccccccd, 0xc005cb722f4c178a, 0x0, 0x0, - 0xbfeccccccccccccc, 0xc00a04780e45d71f, + 0xbfeccccccccccccd, 0xc00a04780e45d720, 0x0, 0x0, - 0xbfecccccccccccd4, 0xc01008123832cdbe, + 0xbfecccccccccccd0, 0xc01008123832cdbc, 0x0, 0x0, - 0xbfecccccccccccbe, 0xc014bf4fc9bb14b8, + 0xbfeccccccccccccd, 0xc014bf4fc9bb14ba, 0x0, 0x0, - 0xbfecccccccccccc3, 0xc01d3022a95b27c8, + 0xbfecccccccccccca, 0xc01d3022a95b27ca, 0x0, 0x0, - 0xbfecccccccccccb1, 0xc02866e9c69d778c, + 0xbfeccccccccccccd, 0xc02866e9c69d778c, 0x0, 0x0, - 0xbfeccccccccccc80, 0xc04254ba4d4dccc9 + 0xbfecccccccccccd2, 0xc04254ba4d4dccca }; static const uint64_t in_cfft_step_256[512] = { @@ -25624,520 +25624,520 @@ static const uint64_t in_cfft_step_256[512] = { static const uint64_t in_cifft_step_256[512] = { 0x405ccccccccccccd, 0x0, - 0xbfeccccccccccce0, 0x4052556f444c538a, + 0xbfecccccccccccca, 0x4052556f444c538a, 0x0, 0x0, - 0xbfeccccccccccce1, 0x40386f6639ecffb8, + 0xbfecccccccccccb3, 0x40386f6639ecffb6, 0x0, 0x0, - 0xbfecccccccccccd3, 0x402d4c71fd1460af, + 0xbfecccccccccccd7, 0x402d4c71fd1460af, 0x0, 0x0, - 0xbfecccccccccccdc, 0x4024e6fe4f285982, + 0xbfecccccccccccd4, 0x4024e6fe4f285982, 0x0, 0x0, - 0xbfecccccccccccd8, 0x40203b2c44fd1a24, + 0xbfeccccccccccccf, 0x40203b2c44fd1a24, 0x0, 0x0, - 0xbfecccccccccccdc, 0x401a81a322d4ff2e, + 0xbfecccccccccccc6, 0x401a81a322d4ff2c, 0x0, 0x0, - 0xbfecccccccccccd7, 0x40165fbb942eb8f3, + 0xbfecccccccccccd1, 0x40165fbb942eb8f4, 0x0, 0x0, - 0xbfecccccccccccee, 0x401355e79ffbb104, + 0xbfecccccccccccd0, 0x401355e79ffbb0ff, 0x0, 0x0, - 0xbfecccccccccccd4, 0x4011014bfa560d2a, + 0xbfecccccccccccc8, 0x4011014bfa560d2a, 0x0, 0x0, - 0xbfecccccccccccd8, 0x400e5159adcb89e8, + 0xbfeccccccccccccb, 0x400e5159adcb89eb, 0x0, 0x0, - 0xbfecccccccccccca, 0x400b5137b880c652, + 0xbfecccccccccccce, 0x400b5137b880c652, 0x0, 0x0, - 0xbfeccccccccccccf, 0x4008d3fad768aefc, + 0xbfecccccccccccc6, 0x4008d3fad768aef9, 0x0, 0x0, - 0xbfecccccccccccc8, 0x4006ba35789a9a02, + 0xbfecccccccccccc8, 0x4006ba35789a9a03, 0x0, 0x0, - 0xbfecccccccccccc4, 0x4004edc99aa463d0, + 0xbfeccccccccccccb, 0x4004edc99aa463d0, 0x0, 0x0, - 0xbfecccccccccccd1, 0x40035eb2dfdfdf44, + 0xbfecccccccccccc8, 0x40035eb2dfdfdf48, 0x0, 0x0, - 0xbfecccccccccccf7, 0x4002010ecbb5f916, + 0xbfecccccccccccd0, 0x4002010ecbb5f916, 0x0, 0x0, - 0xbfeccccccccccccf, 0x4000cbdc2f4a60fc, + 0xbfecccccccccccda, 0x4000cbdc2f4a60f6, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3fff7050fec91ede, + 0xbfecccccccccccca, 0x3fff7050fec91eda, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3ffd8102fa1da67b, + 0xbfecccccccccccd0, 0x3ffd8102fa1da670, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3ffbc1255464e0b9, + 0xbfecccccccccccbf, 0x3ffbc1255464e0ba, 0x0, 0x0, - 0xbfecccccccccccca, 0x3ffa29bf2b66d23c, + 0xbfeccccccccccccb, 0x3ffa29bf2b66d238, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3ff8b5233638a610, + 0xbfeccccccccccccb, 0x3ff8b5233638a614, 0x0, 0x0, - 0xbfecccccccccccca, 0x3ff75ea6114c1dfd, + 0xbfecccccccccccd2, 0x3ff75ea6114c1dfe, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3ff622675b951998, + 0xbfecccccccccccce, 0x3ff622675b95197f, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3ff4fd284472249f, + 0xbfecccccccccccca, 0x3ff4fd284472249e, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3ff3ec2bd9ce6eab, + 0xbfeccccccccccccb, 0x3ff3ec2bd9ce6eb2, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3ff2ed1e8317f200, + 0xbfecccccccccccd2, 0x3ff2ed1e8317f202, 0x0, 0x0, - 0xbfecccccccccccd3, 0x3ff1fe02d5773624, + 0xbfeccccccccccccd, 0x3ff1fe02d5773622, 0x0, 0x0, - 0xbfecccccccccccd3, 0x3ff11d2270f55b1b, + 0xbfecccccccccccd6, 0x3ff11d2270f55b1c, 0x0, 0x0, - 0xbfeccccccccccce1, 0x3ff04901f171b52e, + 0xbfecccccccccccca, 0x3ff04901f171b532, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fef00ae7d262624, + 0xbfecccccccccccc7, 0x3fef00ae7d262608, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3fed8403679a1b50, + 0xbfeccccccccccd14, 0x3fed8403679a1b7c, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3fec1a07758cd00f, + 0xbfeccccccccccccd, 0x3fec1a07758cd02d, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3feac0fb156cb964, + 0xbfecccccccccccce, 0x3feac0fb156cb96c, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fe97751a28386f0, + 0xbfecccccccccccce, 0x3fe97751a28386f3, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fe83baa2d8dfd0e, + 0xbfecccccccccccbc, 0x3fe83baa2d8dfd18, 0x0, 0x0, - 0xbfecccccccccccda, 0x3fe70cc9743fbcde, + 0xbfecccccccccccd2, 0x3fe70cc9743fbcd3, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fe5e994cf1941ae, + 0xbfecccccccccccca, 0x3fe5e994cf1941b4, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fe4d10de8b7f83a, + 0xbfeccccccccccccb, 0x3fe4d10de8b7f82d, 0x0, 0x0, - 0xbfecccccccccccb2, 0x3fe3c24f1adc0dea, + 0xbfecccccccccccd5, 0x3fe3c24f1adc0dc4, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fe2bc88546ed5c0, + 0xbfecccccccccccd8, 0x3fe2bc88546ed5ca, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3fe1befc715bc16c, + 0xbfeccccccccccccf, 0x3fe1befc715bc17c, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fe0c8fef169409d, + 0xbfeccccccccccccc, 0x3fe0c8fef16940af, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3fdfb3e3fd667410, + 0xbfecccccccccccd4, 0x3fdfb3e3fd6673ea, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fdde2896e544b16, + 0xbfecccccccccccc6, 0x3fdde2896e544b20, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fdc1ce35d5eddb4, + 0xbfeccccccccccccf, 0x3fdc1ce35d5eddc8, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3fda61fb425f4da8, + 0xbfecccccccccccd1, 0x3fda61fb425f4db0, 0x0, 0x0, - 0xbfecccccccccccd3, 0x3fd8b0ec9b18b514, + 0xbfecccccccccccb0, 0x3fd8b0ec9b18b4e0, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fd708e2e6a7ade8, + 0xbfecccccccccccd8, 0x3fd708e2e6a7adc2, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fd56917dc755ab0, + 0xbfecccccccccccd2, 0x3fd56917dc755ac0, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fd3d0d1d62870b4, + 0xbfecccccccccccd0, 0x3fd3d0d1d62870a8, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fd23f62655a8190, + 0xbfeccccccccccccd, 0x3fd23f62655a81a0, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3fd0b4250ee9c1a4, + 0xbfecccccccccccdb, 0x3fd0b4250ee9c1c8, 0x0, 0x0, - 0xbfecccccccccccbf, 0x3fce5cfc4d450420, + 0xbfecccccccccccd1, 0x3fce5cfc4d450450, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fcb5bb38d7028b8, + 0xbfecccccccccccce, 0x3fcb5bb38d7028e0, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3fc86355be430b70, + 0xbfecccccccccccc4, 0x3fc86355be430b40, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3fc572d4b2e23710, + 0xbfecccccccccccbb, 0x3fc572d4b2e23710, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fc2892c9c542cc0, + 0xbfecccccccccccd0, 0x3fc2892c9c542cd0, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fbf4ac523ca03a0, + 0xbfecccccccccccd1, 0x3fbf4ac523ca0380, 0x0, 0x0, - 0xbfecccccccccccc5, 0x3fb98d06652633c0, + 0xbfecccccccccccc4, 0x3fb98d0665263380, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fb3d742b6a264c0, + 0xbfeccccccccccccb, 0x3fb3d742b6a264c0, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3fac4f53b938e500, + 0xbfeccccccccccccd, 0x3fac4f53b938e580, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fa0f8e69f105400, + 0xbfeccccccccccccf, 0x3fa0f8e69f105500, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3f869edfd0d7f000, + 0xbfecccccccccccc8, 0x3f869edfd0d80000, 0x0, 0x0, - 0xbfecccccccccccce, 0xbf869edfd0d80000, + 0xbfecccccccccccc4, 0xbf869edfd0d80000, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbfa0f8e69f105400, + 0xbfecccccccccccc9, 0xbfa0f8e69f105500, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbfac4f53b938e600, + 0xbfeccccccccccccd, 0xbfac4f53b938e500, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfb3d742b6a26480, + 0xbfecccccccccccc8, 0xbfb3d742b6a26440, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfb98d0665263400, + 0xbfecccccccccccd1, 0xbfb98d06652633c0, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfbf4ac523ca0300, + 0xbfecccccccccccca, 0xbfbf4ac523ca03a0, 0x0, 0x0, - 0xbfecccccccccccd7, 0xbfc2892c9c542ce0, + 0xbfeccccccccccccd, 0xbfc2892c9c542d00, 0x0, 0x0, - 0xbfecccccccccccee, 0xbfc572d4b2e237b0, + 0xbfecccccccccccce, 0xbfc572d4b2e236e0, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbfc86355be430b50, + 0xbfeccccccccccce8, 0xbfc86355be430b50, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbfcb5bb38d702880, + 0xbfecccccccccccd3, 0xbfcb5bb38d7028d0, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfce5cfc4d450480, + 0xbfecccccccccccce, 0xbfce5cfc4d450438, 0x0, 0x0, - 0xbfeccccccccccce1, 0xbfd0b4250ee9c1d0, + 0xbfecccccccccccd6, 0xbfd0b4250ee9c1c8, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfd23f62655a81d0, + 0xbfecccccccccccbc, 0xbfd23f62655a81b8, 0x0, 0x0, - 0xbfeccccccccccce0, 0xbfd3d0d1d62870a0, + 0xbfeccccccccccccb, 0xbfd3d0d1d628709c, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbfd56917dc755ac4, + 0xbfeccccccccccccc, 0xbfd56917dc755ab4, 0x0, 0x0, - 0xbfecccccccccccdd, 0xbfd708e2e6a7ae64, + 0xbfecccccccccccc0, 0xbfd708e2e6a7ade0, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfd8b0ec9b18b530, + 0xbfecccccccccccc2, 0xbfd8b0ec9b18b51e, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbfda61fb425f4d96, + 0xbfecccccccccccca, 0xbfda61fb425f4da0, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfdc1ce35d5edde4, + 0xbfeccccccccccccc, 0xbfdc1ce35d5eddc8, 0x0, 0x0, - 0xbfecccccccccccbb, 0xbfdde2896e544b3c, + 0xbfecccccccccccd7, 0xbfdde2896e544b1e, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfdfb3e3fd6673ee, + 0xbfeccccccccccce1, 0xbfdfb3e3fd6673e0, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfe0c8fef16940a9, + 0xbfecccccccccccd1, 0xbfe0c8fef16940b1, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfe1befc715bc176, + 0xbfecccccccccccd2, 0xbfe1befc715bc177, 0x0, 0x0, - 0xbfecccccccccccb3, 0xbfe2bc88546ed5cb, + 0xbfecccccccccccca, 0xbfe2bc88546ed5d6, 0x0, 0x0, - 0xbfeccccccccccccf, 0xbfe3c24f1adc0dc6, + 0xbfecccccccccccbe, 0xbfe3c24f1adc0ddc, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbfe4d10de8b7f82a, + 0xbfecccccccccccd3, 0xbfe4d10de8b7f82c, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfe5e994cf1941b7, + 0xbfecccccccccccd2, 0xbfe5e994cf1941b9, 0x0, 0x0, - 0xbfeccccccccccce3, 0xbfe70cc9743fbcb8, + 0xbfeccccccccccce5, 0xbfe70cc9743fbcd7, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfe83baa2d8dfd16, + 0xbfecccccccccccc6, 0xbfe83baa2d8dfd11, 0x0, 0x0, - 0xbfeccccccccccce1, 0xbfe97751a28386fc, + 0xbfecccccccccccca, 0xbfe97751a28386f5, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbfeac0fb156cb964, + 0xbfecccccccccccc7, 0xbfeac0fb156cb978, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfec1a07758cd050, + 0xbfeccccccccccc94, 0xbfec1a07758ccffc, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfed8403679a1b8f, + 0xbfeccccccccccccd, 0xbfed8403679a1b6d, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfef00ae7d262614, + 0xbfecccccccccccce, 0xbfef00ae7d26261c, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbff04901f171b530, + 0xbfecccccccccccce, 0xbff04901f171b532, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbff11d2270f55b1f, + 0xbfecccccccccccc4, 0xbff11d2270f55b1c, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbff1fe02d577361d, + 0xbfecccccccccccc2, 0xbff1fe02d577361e, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbff2ed1e8317f207, + 0xbfecccccccccccd2, 0xbff2ed1e8317f202, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbff3ec2bd9ce6eb1, + 0xbfeccccccccccccb, 0xbff3ec2bd9ce6eae, 0x0, 0x0, - 0xbfecccccccccccba, 0xbff4fd28447224a7, + 0xbfecccccccccccd1, 0xbff4fd284472249e, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbff622675b95198c, + 0xbfecccccccccccd0, 0xbff622675b951983, 0x0, 0x0, - 0xbfeccccccccccccf, 0xbff75ea6114c1e02, + 0xbfeccccccccccccb, 0xbff75ea6114c1e02, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbff8b5233638a612, + 0xbfecccccccccccc8, 0xbff8b5233638a612, 0x0, 0x0, - 0xbfecccccccccccca, 0xbffa29bf2b66d240, + 0xbfecccccccccccd4, 0xbffa29bf2b66d240, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbffbc1255464e0ba, + 0xbfecccccccccccd6, 0xbffbc1255464e0c0, 0x0, 0x0, - 0xbfecccccccccccdb, 0xbffd8102fa1da679, + 0xbfecccccccccccd3, 0xbffd8102fa1da676, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfff7050fec91eda, + 0xbfeccccccccccccf, 0xbfff7050fec91ed6, 0x0, 0x0, - 0xbfecccccccccccb9, 0xc000cbdc2f4a60fc, + 0xbfecccccccccccf0, 0xc000cbdc2f4a60f6, 0x0, 0x0, - 0xbfeccccccccccccd, 0xc002010ecbb5f913, + 0xbfecccccccccccc4, 0xc002010ecbb5f91b, 0x0, 0x0, - 0xbfecccccccccccbd, 0xc0035eb2dfdfdf46, + 0xbfecccccccccccd2, 0xc0035eb2dfdfdf49, 0x0, 0x0, - 0xbfecccccccccccc7, 0xc004edc99aa463ce, + 0xbfeccccccccccccc, 0xc004edc99aa463d0, 0x0, 0x0, - 0xbfeccccccccccccc, 0xc006ba35789a9a05, + 0xbfecccccccccccc9, 0xc006ba35789a9a02, 0x0, 0x0, - 0xbfeccccccccccccd, 0xc008d3fad768aef6, + 0xbfeccccccccccccd, 0xc008d3fad768aef9, 0x0, 0x0, - 0xbfecccccccccccc9, 0xc00b5137b880c650, + 0xbfeccccccccccccf, 0xc00b5137b880c653, 0x0, 0x0, - 0xbfeccccccccccccc, 0xc00e5159adcb89ea, + 0xbfecccccccccccca, 0xc00e5159adcb89ec, 0x0, 0x0, - 0xbfecccccccccccdf, 0xc011014bfa560d2a, + 0xbfecccccccccccd0, 0xc011014bfa560d28, 0x0, 0x0, - 0xbfecccccccccccbf, 0xc01355e79ffbb0fc, + 0xbfecccccccccccd5, 0xc01355e79ffbb0fe, 0x0, 0x0, - 0xbfecccccccccccbc, 0xc0165fbb942eb8f4, + 0xbfecccccccccccca, 0xc0165fbb942eb8f4, 0x0, 0x0, - 0xbfeccccccccccccd, 0xc01a81a322d4ff2c, + 0xbfecccccccccccc3, 0xc01a81a322d4ff2c, 0x0, 0x0, - 0xbfecccccccccccb9, 0xc0203b2c44fd1a24, + 0xbfecccccccccccce, 0xc0203b2c44fd1a23, 0x0, 0x0, - 0xbfecccccccccccb9, 0xc024e6fe4f285982, + 0xbfecccccccccccc1, 0xc024e6fe4f285982, 0x0, 0x0, - 0xbfeccccccccccca1, 0xc02d4c71fd1460af, + 0xbfecccccccccccdf, 0xc02d4c71fd1460ae, 0x0, 0x0, - 0xbfeccccccccccc9c, 0xc0386f6639ecffb6, + 0xbfecccccccccccbf, 0xc0386f6639ecffb6, 0x0, 0x0, - 0xbfeccccccccccc1c, 0xc052556f444c538a + 0xbfecccccccccccc0, 0xc052556f444c538a }; static const uint64_t ref_cfft_step_256[512] = { 0x405ccccccccccccd, 0x0, - 0xbfeccccccccccce0, 0x4052556f444c538a, + 0xbfecccccccccccca, 0x4052556f444c538a, 0x0, 0x0, - 0xbfeccccccccccce1, 0x40386f6639ecffb8, + 0xbfecccccccccccb3, 0x40386f6639ecffb6, 0x0, 0x0, - 0xbfecccccccccccd3, 0x402d4c71fd1460af, + 0xbfecccccccccccd7, 0x402d4c71fd1460af, 0x0, 0x0, - 0xbfecccccccccccdc, 0x4024e6fe4f285982, + 0xbfecccccccccccd4, 0x4024e6fe4f285982, 0x0, 0x0, - 0xbfecccccccccccd8, 0x40203b2c44fd1a24, + 0xbfeccccccccccccf, 0x40203b2c44fd1a24, 0x0, 0x0, - 0xbfecccccccccccdc, 0x401a81a322d4ff2e, + 0xbfecccccccccccc6, 0x401a81a322d4ff2c, 0x0, 0x0, - 0xbfecccccccccccd7, 0x40165fbb942eb8f3, + 0xbfecccccccccccd1, 0x40165fbb942eb8f4, 0x0, 0x0, - 0xbfecccccccccccee, 0x401355e79ffbb104, + 0xbfecccccccccccd0, 0x401355e79ffbb0ff, 0x0, 0x0, - 0xbfecccccccccccd4, 0x4011014bfa560d2a, + 0xbfecccccccccccc8, 0x4011014bfa560d2a, 0x0, 0x0, - 0xbfecccccccccccd8, 0x400e5159adcb89e8, + 0xbfeccccccccccccb, 0x400e5159adcb89eb, 0x0, 0x0, - 0xbfecccccccccccca, 0x400b5137b880c652, + 0xbfecccccccccccce, 0x400b5137b880c652, 0x0, 0x0, - 0xbfeccccccccccccf, 0x4008d3fad768aefc, + 0xbfecccccccccccc6, 0x4008d3fad768aef9, 0x0, 0x0, - 0xbfecccccccccccc8, 0x4006ba35789a9a02, + 0xbfecccccccccccc8, 0x4006ba35789a9a03, 0x0, 0x0, - 0xbfecccccccccccc4, 0x4004edc99aa463d0, + 0xbfeccccccccccccb, 0x4004edc99aa463d0, 0x0, 0x0, - 0xbfecccccccccccd1, 0x40035eb2dfdfdf44, + 0xbfecccccccccccc8, 0x40035eb2dfdfdf48, 0x0, 0x0, - 0xbfecccccccccccf7, 0x4002010ecbb5f916, + 0xbfecccccccccccd0, 0x4002010ecbb5f916, 0x0, 0x0, - 0xbfeccccccccccccf, 0x4000cbdc2f4a60fc, + 0xbfecccccccccccda, 0x4000cbdc2f4a60f6, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3fff7050fec91ede, + 0xbfecccccccccccca, 0x3fff7050fec91eda, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3ffd8102fa1da67b, + 0xbfecccccccccccd0, 0x3ffd8102fa1da670, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3ffbc1255464e0b9, + 0xbfecccccccccccbf, 0x3ffbc1255464e0ba, 0x0, 0x0, - 0xbfecccccccccccca, 0x3ffa29bf2b66d23c, + 0xbfeccccccccccccb, 0x3ffa29bf2b66d238, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3ff8b5233638a610, + 0xbfeccccccccccccb, 0x3ff8b5233638a614, 0x0, 0x0, - 0xbfecccccccccccca, 0x3ff75ea6114c1dfd, + 0xbfecccccccccccd2, 0x3ff75ea6114c1dfe, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3ff622675b951998, + 0xbfecccccccccccce, 0x3ff622675b95197f, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3ff4fd284472249f, + 0xbfecccccccccccca, 0x3ff4fd284472249e, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3ff3ec2bd9ce6eab, + 0xbfeccccccccccccb, 0x3ff3ec2bd9ce6eb2, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3ff2ed1e8317f200, + 0xbfecccccccccccd2, 0x3ff2ed1e8317f202, 0x0, 0x0, - 0xbfecccccccccccd3, 0x3ff1fe02d5773624, + 0xbfeccccccccccccd, 0x3ff1fe02d5773622, 0x0, 0x0, - 0xbfecccccccccccd3, 0x3ff11d2270f55b1b, + 0xbfecccccccccccd6, 0x3ff11d2270f55b1c, 0x0, 0x0, - 0xbfeccccccccccce1, 0x3ff04901f171b52e, + 0xbfecccccccccccca, 0x3ff04901f171b532, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fef00ae7d262624, + 0xbfecccccccccccc7, 0x3fef00ae7d262608, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3fed8403679a1b50, + 0xbfeccccccccccd14, 0x3fed8403679a1b7c, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3fec1a07758cd00f, + 0xbfeccccccccccccd, 0x3fec1a07758cd02d, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3feac0fb156cb964, + 0xbfecccccccccccce, 0x3feac0fb156cb96c, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fe97751a28386f0, + 0xbfecccccccccccce, 0x3fe97751a28386f3, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fe83baa2d8dfd0e, + 0xbfecccccccccccbc, 0x3fe83baa2d8dfd18, 0x0, 0x0, - 0xbfecccccccccccda, 0x3fe70cc9743fbcde, + 0xbfecccccccccccd2, 0x3fe70cc9743fbcd3, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fe5e994cf1941ae, + 0xbfecccccccccccca, 0x3fe5e994cf1941b4, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fe4d10de8b7f83a, + 0xbfeccccccccccccb, 0x3fe4d10de8b7f82d, 0x0, 0x0, - 0xbfecccccccccccb2, 0x3fe3c24f1adc0dea, + 0xbfecccccccccccd5, 0x3fe3c24f1adc0dc4, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fe2bc88546ed5c0, + 0xbfecccccccccccd8, 0x3fe2bc88546ed5ca, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3fe1befc715bc16c, + 0xbfeccccccccccccf, 0x3fe1befc715bc17c, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fe0c8fef169409d, + 0xbfeccccccccccccc, 0x3fe0c8fef16940af, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3fdfb3e3fd667410, + 0xbfecccccccccccd4, 0x3fdfb3e3fd6673ea, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fdde2896e544b16, + 0xbfecccccccccccc6, 0x3fdde2896e544b20, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fdc1ce35d5eddb4, + 0xbfeccccccccccccf, 0x3fdc1ce35d5eddc8, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3fda61fb425f4da8, + 0xbfecccccccccccd1, 0x3fda61fb425f4db0, 0x0, 0x0, - 0xbfecccccccccccd3, 0x3fd8b0ec9b18b514, + 0xbfecccccccccccb0, 0x3fd8b0ec9b18b4e0, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fd708e2e6a7ade8, + 0xbfecccccccccccd8, 0x3fd708e2e6a7adc2, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fd56917dc755ab0, + 0xbfecccccccccccd2, 0x3fd56917dc755ac0, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fd3d0d1d62870b4, + 0xbfecccccccccccd0, 0x3fd3d0d1d62870a8, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fd23f62655a8190, + 0xbfeccccccccccccd, 0x3fd23f62655a81a0, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3fd0b4250ee9c1a4, + 0xbfecccccccccccdb, 0x3fd0b4250ee9c1c8, 0x0, 0x0, - 0xbfecccccccccccbf, 0x3fce5cfc4d450420, + 0xbfecccccccccccd1, 0x3fce5cfc4d450450, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fcb5bb38d7028b8, + 0xbfecccccccccccce, 0x3fcb5bb38d7028e0, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3fc86355be430b70, + 0xbfecccccccccccc4, 0x3fc86355be430b40, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3fc572d4b2e23710, + 0xbfecccccccccccbb, 0x3fc572d4b2e23710, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fc2892c9c542cc0, + 0xbfecccccccccccd0, 0x3fc2892c9c542cd0, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fbf4ac523ca03a0, + 0xbfecccccccccccd1, 0x3fbf4ac523ca0380, 0x0, 0x0, - 0xbfecccccccccccc5, 0x3fb98d06652633c0, + 0xbfecccccccccccc4, 0x3fb98d0665263380, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fb3d742b6a264c0, + 0xbfeccccccccccccb, 0x3fb3d742b6a264c0, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3fac4f53b938e500, + 0xbfeccccccccccccd, 0x3fac4f53b938e580, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fa0f8e69f105400, + 0xbfeccccccccccccf, 0x3fa0f8e69f105500, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3f869edfd0d7f000, + 0xbfecccccccccccc8, 0x3f869edfd0d80000, 0x0, 0x0, - 0xbfecccccccccccce, 0xbf869edfd0d80000, + 0xbfecccccccccccc4, 0xbf869edfd0d80000, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbfa0f8e69f105400, + 0xbfecccccccccccc9, 0xbfa0f8e69f105500, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbfac4f53b938e600, + 0xbfeccccccccccccd, 0xbfac4f53b938e500, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfb3d742b6a26480, + 0xbfecccccccccccc8, 0xbfb3d742b6a26440, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfb98d0665263400, + 0xbfecccccccccccd1, 0xbfb98d06652633c0, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfbf4ac523ca0300, + 0xbfecccccccccccca, 0xbfbf4ac523ca03a0, 0x0, 0x0, - 0xbfecccccccccccd7, 0xbfc2892c9c542ce0, + 0xbfeccccccccccccd, 0xbfc2892c9c542d00, 0x0, 0x0, - 0xbfecccccccccccee, 0xbfc572d4b2e237b0, + 0xbfecccccccccccce, 0xbfc572d4b2e236e0, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbfc86355be430b50, + 0xbfeccccccccccce8, 0xbfc86355be430b50, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbfcb5bb38d702880, + 0xbfecccccccccccd3, 0xbfcb5bb38d7028d0, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfce5cfc4d450480, + 0xbfecccccccccccce, 0xbfce5cfc4d450438, 0x0, 0x0, - 0xbfeccccccccccce1, 0xbfd0b4250ee9c1d0, + 0xbfecccccccccccd6, 0xbfd0b4250ee9c1c8, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfd23f62655a81d0, + 0xbfecccccccccccbc, 0xbfd23f62655a81b8, 0x0, 0x0, - 0xbfeccccccccccce0, 0xbfd3d0d1d62870a0, + 0xbfeccccccccccccb, 0xbfd3d0d1d628709c, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbfd56917dc755ac4, + 0xbfeccccccccccccc, 0xbfd56917dc755ab4, 0x0, 0x0, - 0xbfecccccccccccdd, 0xbfd708e2e6a7ae64, + 0xbfecccccccccccc0, 0xbfd708e2e6a7ade0, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfd8b0ec9b18b530, + 0xbfecccccccccccc2, 0xbfd8b0ec9b18b51e, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbfda61fb425f4d96, + 0xbfecccccccccccca, 0xbfda61fb425f4da0, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfdc1ce35d5edde4, + 0xbfeccccccccccccc, 0xbfdc1ce35d5eddc8, 0x0, 0x0, - 0xbfecccccccccccbb, 0xbfdde2896e544b3c, + 0xbfecccccccccccd7, 0xbfdde2896e544b1e, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfdfb3e3fd6673ee, + 0xbfeccccccccccce1, 0xbfdfb3e3fd6673e0, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfe0c8fef16940a9, + 0xbfecccccccccccd1, 0xbfe0c8fef16940b1, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfe1befc715bc176, + 0xbfecccccccccccd2, 0xbfe1befc715bc177, 0x0, 0x0, - 0xbfecccccccccccb3, 0xbfe2bc88546ed5cb, + 0xbfecccccccccccca, 0xbfe2bc88546ed5d6, 0x0, 0x0, - 0xbfeccccccccccccf, 0xbfe3c24f1adc0dc6, + 0xbfecccccccccccbe, 0xbfe3c24f1adc0ddc, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbfe4d10de8b7f82a, + 0xbfecccccccccccd3, 0xbfe4d10de8b7f82c, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfe5e994cf1941b7, + 0xbfecccccccccccd2, 0xbfe5e994cf1941b9, 0x0, 0x0, - 0xbfeccccccccccce3, 0xbfe70cc9743fbcb8, + 0xbfeccccccccccce5, 0xbfe70cc9743fbcd7, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfe83baa2d8dfd16, + 0xbfecccccccccccc6, 0xbfe83baa2d8dfd11, 0x0, 0x0, - 0xbfeccccccccccce1, 0xbfe97751a28386fc, + 0xbfecccccccccccca, 0xbfe97751a28386f5, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbfeac0fb156cb964, + 0xbfecccccccccccc7, 0xbfeac0fb156cb978, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfec1a07758cd050, + 0xbfeccccccccccc94, 0xbfec1a07758ccffc, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfed8403679a1b8f, + 0xbfeccccccccccccd, 0xbfed8403679a1b6d, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfef00ae7d262614, + 0xbfecccccccccccce, 0xbfef00ae7d26261c, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbff04901f171b530, + 0xbfecccccccccccce, 0xbff04901f171b532, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbff11d2270f55b1f, + 0xbfecccccccccccc4, 0xbff11d2270f55b1c, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbff1fe02d577361d, + 0xbfecccccccccccc2, 0xbff1fe02d577361e, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbff2ed1e8317f207, + 0xbfecccccccccccd2, 0xbff2ed1e8317f202, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbff3ec2bd9ce6eb1, + 0xbfeccccccccccccb, 0xbff3ec2bd9ce6eae, 0x0, 0x0, - 0xbfecccccccccccba, 0xbff4fd28447224a7, + 0xbfecccccccccccd1, 0xbff4fd284472249e, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbff622675b95198c, + 0xbfecccccccccccd0, 0xbff622675b951983, 0x0, 0x0, - 0xbfeccccccccccccf, 0xbff75ea6114c1e02, + 0xbfeccccccccccccb, 0xbff75ea6114c1e02, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbff8b5233638a612, + 0xbfecccccccccccc8, 0xbff8b5233638a612, 0x0, 0x0, - 0xbfecccccccccccca, 0xbffa29bf2b66d240, + 0xbfecccccccccccd4, 0xbffa29bf2b66d240, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbffbc1255464e0ba, + 0xbfecccccccccccd6, 0xbffbc1255464e0c0, 0x0, 0x0, - 0xbfecccccccccccdb, 0xbffd8102fa1da679, + 0xbfecccccccccccd3, 0xbffd8102fa1da676, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfff7050fec91eda, + 0xbfeccccccccccccf, 0xbfff7050fec91ed6, 0x0, 0x0, - 0xbfecccccccccccb9, 0xc000cbdc2f4a60fc, + 0xbfecccccccccccf0, 0xc000cbdc2f4a60f6, 0x0, 0x0, - 0xbfeccccccccccccd, 0xc002010ecbb5f913, + 0xbfecccccccccccc4, 0xc002010ecbb5f91b, 0x0, 0x0, - 0xbfecccccccccccbd, 0xc0035eb2dfdfdf46, + 0xbfecccccccccccd2, 0xc0035eb2dfdfdf49, 0x0, 0x0, - 0xbfecccccccccccc7, 0xc004edc99aa463ce, + 0xbfeccccccccccccc, 0xc004edc99aa463d0, 0x0, 0x0, - 0xbfeccccccccccccc, 0xc006ba35789a9a05, + 0xbfecccccccccccc9, 0xc006ba35789a9a02, 0x0, 0x0, - 0xbfeccccccccccccd, 0xc008d3fad768aef6, + 0xbfeccccccccccccd, 0xc008d3fad768aef9, 0x0, 0x0, - 0xbfecccccccccccc9, 0xc00b5137b880c650, + 0xbfeccccccccccccf, 0xc00b5137b880c653, 0x0, 0x0, - 0xbfeccccccccccccc, 0xc00e5159adcb89ea, + 0xbfecccccccccccca, 0xc00e5159adcb89ec, 0x0, 0x0, - 0xbfecccccccccccdf, 0xc011014bfa560d2a, + 0xbfecccccccccccd0, 0xc011014bfa560d28, 0x0, 0x0, - 0xbfecccccccccccbf, 0xc01355e79ffbb0fc, + 0xbfecccccccccccd5, 0xc01355e79ffbb0fe, 0x0, 0x0, - 0xbfecccccccccccbc, 0xc0165fbb942eb8f4, + 0xbfecccccccccccca, 0xc0165fbb942eb8f4, 0x0, 0x0, - 0xbfeccccccccccccd, 0xc01a81a322d4ff2c, + 0xbfecccccccccccc3, 0xc01a81a322d4ff2c, 0x0, 0x0, - 0xbfecccccccccccb9, 0xc0203b2c44fd1a24, + 0xbfecccccccccccce, 0xc0203b2c44fd1a23, 0x0, 0x0, - 0xbfecccccccccccb9, 0xc024e6fe4f285982, + 0xbfecccccccccccc1, 0xc024e6fe4f285982, 0x0, 0x0, - 0xbfeccccccccccca1, 0xc02d4c71fd1460af, + 0xbfecccccccccccdf, 0xc02d4c71fd1460ae, 0x0, 0x0, - 0xbfeccccccccccc9c, 0xc0386f6639ecffb6, + 0xbfecccccccccccbf, 0xc0386f6639ecffb6, 0x0, 0x0, - 0xbfeccccccccccc1c, 0xc052556f444c538a + 0xbfecccccccccccc0, 0xc052556f444c538a }; static const uint64_t in_cfft_step_512[1024] = { @@ -26657,1032 +26657,1032 @@ static const uint64_t in_cfft_step_512[1024] = { static const uint64_t in_cifft_step_512[1024] = { 0x406ccccccccccccd, 0x0, - 0xbfeccccccccccd23, 0x4062559c819c53b0, + 0xbfecccccccccccdc, 0x4062559c819c53b0, 0x0, 0x0, - 0xbfecccccccccccf0, 0x4048718527a17790, + 0xbfeccccccccccc9e, 0x4048718527a1778f, 0x0, 0x0, - 0xbfecccccccccccf1, 0x403d53841d299f96, + 0xbfeccccccccccce7, 0x403d53841d299f97, 0x0, 0x0, - 0xbfecccccccccccfc, 0x4034f0e53fa19837, + 0xbfeccccccccccccb, 0x4034f0e53fa19836, 0x0, 0x0, - 0xbfeccccccccccce9, 0x403047e8c9b183ee, + 0xbfecccccccccccd7, 0x403047e8c9b183ee, 0x0, 0x0, - 0xbfecccccccccccdb, 0x402aa0c94d1aa2ac, + 0xbfecccccccccccc0, 0x402aa0c94d1aa2ac, 0x0, 0x0, - 0xbfecccccccccccdc, 0x40268491490c1ed4, + 0xbfecccccccccccd5, 0x40268491490c1ed4, 0x0, 0x0, - 0xbfecccccccccccf0, 0x4023806fbb4028f2, + 0xbfecccccccccccdc, 0x4023806fbb4028ee, 0x0, 0x0, - 0xbfeccccccccccce4, 0x40213189cac93698, + 0xbfecccccccccccd6, 0x40213189cac93699, 0x0, 0x0, - 0xbfecccccccccccd9, 0x401ebd483ea04e06, + 0xbfecccccccccccca, 0x401ebd483ea04e06, 0x0, 0x0, - 0xbfecccccccccccd8, 0x401bc8a1a932b522, + 0xbfecccccccccccd7, 0x401bc8a1a932b51c, 0x0, 0x0, - 0xbfeccccccccccccb, 0x401956e984ec49ac, + 0xbfecccccccccccb4, 0x401956e984ec49a8, 0x0, 0x0, - 0xbfecccccccccccc7, 0x401748b32fe05150, + 0xbfecccccccccccd0, 0x401748b32fe05150, 0x0, 0x0, - 0xbfeccccccccccce0, 0x401587e19bdecd0e, + 0xbfecccccccccccca, 0x401587e19bdecd0e, 0x0, 0x0, - 0xbfeccccccccccce1, 0x40140471621c330d, + 0xbfecccccccccccc8, 0x40140471621c330c, 0x0, 0x0, - 0xbfeccccccccccd10, 0x4012b28100c95436, + 0xbfecccccccccccbf, 0x4012b28100c9542f, 0x0, 0x0, - 0xbfecccccccccccbf, 0x4011891048168074, + 0xbfecccccccccccdc, 0x4011891048168070, 0x0, 0x0, - 0xbfecccccccccccca, 0x4010812db07702e0, + 0xbfecccccccccccc8, 0x4010812db07702df, 0x0, 0x0, - 0xbfecccccccccccd1, 0x400f2ad0073bcf4f, + 0xbfecccccccccccd5, 0x400f2ad0073bcf4e, 0x0, 0x0, - 0xbfecccccccccccd7, 0x400d82d7a2f6c002, + 0xbfecccccccccccc6, 0x400d82d7a2f6c007, 0x0, 0x0, - 0xbfecccccccccccee, 0x400c037b797b57fb, + 0xbfeccccccccccccc, 0x400c037b797b57fa, 0x0, 0x0, - 0xbfecccccccccccc8, 0x400aa71075cc7f0f, + 0xbfecccccccccccc1, 0x400aa71075cc7f13, 0x0, 0x0, - 0xbfecccccccccccd9, 0x400968ed757ea686, + 0xbfecccccccccccc8, 0x400968ed757ea68e, 0x0, 0x0, - 0xbfecccccccccccbe, 0x4008453466c2d14c, + 0xbfecccccccccccbb, 0x4008453466c2d14f, 0x0, 0x0, - 0xbfecccccccccccbf, 0x400738a8d73f3dee, + 0xbfecccccccccccbc, 0x400738a8d73f3de6, 0x0, 0x0, - 0xbfecccccccccccdc, 0x40064090432cec7f, + 0xbfecccccccccccd0, 0x40064090432cec7a, 0x0, 0x0, - 0xbfecccccccccccd0, 0x40055a999155b144, + 0xbfecccccccccccd2, 0x40055a999155b144, 0x0, 0x0, - 0xbfeccccccccccc9e, 0x400484c9e8613778, + 0xbfecccccccccccde, 0x400484c9e8613775, 0x0, 0x0, - 0xbfecccccccccccd7, 0x4003bd6d8d1eae9a, + 0xbfecccccccccccdf, 0x4003bd6d8d1eae93, 0x0, 0x0, - 0xbfeccccccccccccf, 0x4003030bd4ad8a05, + 0xbfecccccccccccc8, 0x4003030bd4ad8a04, 0x0, 0x0, - 0xbfecccccccccccc8, 0x4002545d75b2a3e3, + 0xbfecccccccccccc4, 0x4002545d75b2a3da, 0x0, 0x0, - 0xbfeccccccccccce5, 0x4001b044b1b3711e, + 0xbfecccccccccccfc, 0x4001b044b1b37110, 0x0, 0x0, - 0xbfeccccccccccccc, 0x400115c6f0e5b666, + 0xbfecccccccccccc7, 0x400115c6f0e5b668, 0x0, 0x0, - 0xbfecccccccccccd6, 0x40008407830b2572, + 0xbfecccccccccccc9, 0x40008407830b2571, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3ffff48693c6e289, + 0xbfecccccccccccd8, 0x3ffff48693c6e288, 0x0, 0x0, - 0xbfecccccccccccfe, 0x3ffeef9a3e4b2e8b, + 0xbfecccccccccccbd, 0x3ffeef9a3e4b2e74, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3ffdf815a412f9bf, + 0xbfecccccccccccc6, 0x3ffdf815a412f9b7, 0x0, 0x0, - 0xbfecccccccccccca, 0x3ffd0ce5402e49b5, + 0xbfeccccccccccccc, 0x3ffd0ce5402e49b6, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3ffc2d1225a37296, + 0xbfecccccccccccd7, 0x3ffc2d1225a37298, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3ffb57be60bd7a1c, + 0xbfecccccccccccf1, 0x3ffb57be60bd7a14, 0x0, 0x0, - 0xbfecccccccccccbd, 0x3ffa8c21e1a31948, + 0xbfeccccccccccce4, 0x3ffa8c21e1a31950, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3ff9c987d90e53d5, + 0xbfecccccccccccce, 0x3ff9c987d90e53d6, 0x0, 0x0, - 0xbfeccccccccccce4, 0x3ff90f4c745878c0, + 0xbfecccccccccccc8, 0x3ff90f4c745878c8, 0x0, 0x0, - 0xbfecccccccccccde, 0x3ff85cdae983606c, + 0xbfecccccccccccd5, 0x3ff85cdae9836074, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3ff7b1abc6aabb0b, + 0xbfecccccccccccb2, 0x3ff7b1abc6aabb06, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3ff70d437a7ea211, + 0xbfecccccccccccc7, 0x3ff70d437a7ea21b, 0x0, 0x0, - 0xbfecccccccccccc0, 0x3ff66f310d3159ed, + 0xbfecccccccccccd7, 0x3ff66f310d3159de, 0x0, 0x0, - 0xbfecccccccccccdd, 0x3ff5d70d02b46476, + 0xbfecccccccccccc5, 0x3ff5d70d02b46477, 0x0, 0x0, - 0xbfecccccccccccdf, 0x3ff54478604e88a6, + 0xbfecccccccccccd3, 0x3ff54478604e8893, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3ff4b71bd08b1d49, + 0xbfecccccccccccc7, 0x3ff4b71bd08b1d5b, 0x0, 0x0, - 0xbfecccccccccccb7, 0x3ff42ea6e14da40b, + 0xbfecccccccccccd1, 0x3ff42ea6e14da401, 0x0, 0x0, - 0xbfeccccccccccce1, 0x3ff3aacf587c0677, + 0xbfecccccccccccc1, 0x3ff3aacf587c066a, 0x0, 0x0, - 0xbfecccccccccccda, 0x3ff32b509c3c6a2c, + 0xbfecccccccccccdd, 0x3ff32b509c3c6a3a, 0x0, 0x0, - 0xbfecccccccccccde, 0x3ff2afeb2c36d7fe, + 0xbfecccccccccccda, 0x3ff2afeb2c36d804, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3ff2386429ab36c5, + 0xbfecccccccccccca, 0x3ff2386429ab36cb, 0x0, 0x0, - 0xbfeccccccccccced, 0x3ff1c484ec7cbfb3, + 0xbfecccccccccccd4, 0x3ff1c484ec7cbfba, 0x0, 0x0, - 0xbfecccccccccccc0, 0x3ff1541aa397ddc6, + 0xbfecccccccccccb4, 0x3ff1541aa397ddc2, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3ff0e6f5ff509b7e, + 0xbfecccccccccccd0, 0x3ff0e6f5ff509b7e, 0x0, 0x0, - 0xbfeccccccccccce4, 0x3ff07ceae4882552, + 0xbfecccccccccccd0, 0x3ff07ceae488255d, 0x0, 0x0, - 0xbfeccccccccccd04, 0x3ff015d02790f961, + 0xbfeccccccccccccb, 0x3ff015d02790f960, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3fef62fe9bd8a592, + 0xbfecccccccccccc7, 0x3fef62fe9bd8a57d, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3fee9fa8ac326ee4, + 0xbfecccccccccccd1, 0x3fee9fa8ac326ee1, 0x0, 0x0, - 0xbfecccccccccccb1, 0x3fede15b098e3678, + 0xbfecccccccccccc6, 0x3fede15b098e3688, 0x0, 0x0, - 0xbfeccccccccccd40, 0x3fed27d66da7f080, + 0xbfecccccccccccbc, 0x3fed27d66da7f077, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fec72df6f213080, + 0xbfecccccccccccca, 0x3fec72df6f213080, 0x0, 0x0, - 0xbfecccccccccccbb, 0x3febc23e35ac2bfa, + 0xbfecccccccccccde, 0x3febc23e35ac2bfe, 0x0, 0x0, - 0xbfecccccccccccca, 0x3feb15be350b522d, + 0xbfecccccccccccc9, 0x3feb15be350b522a, 0x0, 0x0, - 0xbfeccccccccccce2, 0x3fea6d2dee300c4e, + 0xbfecccccccccccc4, 0x3fea6d2dee300c65, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fe9c85eb5d865cc, + 0xbfecccccccccccdc, 0x3fe9c85eb5d865e3, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3fe92724801dc9c0, + 0xbfecccccccccccca, 0x3fe92724801dc9d4, 0x0, 0x0, - 0xbfecccccccccccde, 0x3fe88955b077206a, + 0xbfecccccccccccd4, 0x3fe88955b077208e, 0x0, 0x0, - 0xbfecccccccccccc0, 0x3fe7eecaedbe9ff4, + 0xbfecccccccccccd8, 0x3fe7eecaedbea01e, 0x0, 0x0, - 0xbfecccccccccccb4, 0x3fe7575ef9d7f9b8, + 0xbfecccccccccccec, 0x3fe7575ef9d7f9c8, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fe6c2ee8c9e5937, + 0xbfecccccccccccd0, 0x3fe6c2ee8c9e5926, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fe6315831cb2dde, + 0xbfecccccccccccd3, 0x3fe6315831cb2de9, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fe5a27c298f1289, + 0xbfeccccccccccccb, 0x3fe5a27c298f12a4, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fe5163c4b9d8b39, + 0xbfecccccccccccc2, 0x3fe5163c4b9d8b24, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fe48c7bec72d757, + 0xbfeccccccccccccb, 0x3fe48c7bec72d761, 0x0, 0x0, - 0xbfecccccccccccd3, 0x3fe4051fc4a0e004, + 0xbfecccccccccccd4, 0x3fe4051fc4a0dff0, 0x0, 0x0, - 0xbfeccccccccccc88, 0x3fe3800dd9f56378, + 0xbfeccccccccccca1, 0x3fe3800dd9f56378, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fe2fd2d6a501424, + 0xbfecccccccccccbe, 0x3fe2fd2d6a501408, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fe27c66d8036626, + 0xbfecccccccccccca, 0x3fe27c66d803661f, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fe1fda3979e6664, + 0xbfecccccccccccca, 0x3fe1fda3979e666e, 0x0, 0x0, - 0xbfecccccccccccc0, 0x3fe180ce1f012adc, + 0xbfecccccccccccd3, 0x3fe180ce1f012aea, 0x0, 0x0, - 0xbfecccccccccccd3, 0x3fe105d1d5a04ced, + 0xbfeccccccccccce5, 0x3fe105d1d5a04d04, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fe08c9b05de702d, + 0xbfecccccccccccce, 0x3fe08c9b05de7035, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3fe01516cf6524c5, + 0xbfecccccccccccd2, 0x3fe01516cf6524a9, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fdf3e6634d10e5a, + 0xbfecccccccccccd3, 0x3fdf3e6634d10dfc, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fde55bd1785b13e, + 0xbfecccccccccccc5, 0x3fde55bd1785b116, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fdd7010f3ade98c, + 0xbfeccccccccccccf, 0x3fdd7010f3ade998, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fdc8d41c4541ff8, + 0xbfeccccccccccccf, 0x3fdc8d41c454200a, 0x0, 0x0, - 0xbfeccccccccccce4, 0x3fdbad30bf4cf3a4, + 0xbfeccccccccccce6, 0x3fdbad30bf4cf3a6, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3fdacfc042f4c598, + 0xbfeccccccccccccf, 0x3fdacfc042f4c58a, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fd9f4d3c50d6e9a, + 0xbfecccccccccccc8, 0x3fd9f4d3c50d6e6e, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fd91c4fc2a645a4, + 0xbfecccccccccccc8, 0x3fd91c4fc2a645d4, 0x0, 0x0, - 0xbfecccccccccccde, 0x3fd84619b0fa7380, + 0xbfecccccccccccbc, 0x3fd84619b0fa7300, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3fd77217ef331aa0, + 0xbfeccccccccccccf, 0x3fd77217ef331abe, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fd6a031b8fc86b2, + 0xbfeccccccccccccb, 0x3fd6a031b8fc86a6, 0x0, 0x0, - 0xbfecccccccccccbe, 0x3fd5d04f19dea6a4, + 0xbfecccccccccccc8, 0x3fd5d04f19dea690, 0x0, 0x0, - 0xbfecccccccccccde, 0x3fd50258e14a9b7c, + 0xbfecccccccccccca, 0x3fd50258e14a9be4, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fd4363897500ab4, + 0xbfeccccccccccccc, 0x3fd4363897500aac, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fd36bd871edfa18, + 0xbfecccccccccccc7, 0x3fd36bd871edfa18, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fd2a3234af3ee58, + 0xbfecccccccccccd3, 0x3fd2a3234af3ee58, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3fd1dc049668c9c0, + 0xbfecccccccccccdc, 0x3fd1dc049668ca2c, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3fd11668596dbe40, + 0xbfecccccccccccb8, 0x3fd11668596dbe54, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fd0523b2194448c, + 0xbfeccccccccccccb, 0x3fd0523b21944478, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fcf1ed3f93d8fa0, + 0xbfecccccccccccc8, 0x3fcf1ed3f93d8fd8, 0x0, 0x0, - 0xbfeccccccccccc9a, 0x3fcd9bc4e1485b80, + 0xbfecccccccccccd3, 0x3fcd9bc4e1485c00, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fcc1b24e91df498, + 0xbfecccccccccccc7, 0x3fcc1b24e91df4c8, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fca9cd0d1e28d70, + 0xbfecccccccccccd3, 0x3fca9cd0d1e28d90, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fc920a6224e6e10, + 0xbfecccccccccccd3, 0x3fc920a6224e6e40, 0x0, 0x0, - 0xbfecccccccccccde, 0x3fc7a6831983eee0, + 0xbfecccccccccccd8, 0x3fc7a6831983ef70, 0x0, 0x0, - 0xbfeccccccccccca8, 0x3fc62e46a26b6370, + 0xbfecccccccccccbe, 0x3fc62e46a26b6300, 0x0, 0x0, - 0xbfecccccccccccde, 0x3fc4b7d0478a7880, + 0xbfecccccccccccc2, 0x3fc4b7d0478a7850, 0x0, 0x0, - 0xbfecccccccccccbe, 0x3fc34300274d2810, + 0xbfecccccccccccd1, 0x3fc34300274d27b0, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fc1cfb6e8b6e930, + 0xbfeccccccccccccc, 0x3fc1cfb6e8b6e9c0, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fc05dd5b07355e0, + 0xbfecccccccccccd0, 0x3fc05dd5b07355f0, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3fbdda7c2c7bb2a0, + 0xbfecccccccccccc7, 0x3fbdda7c2c7bb2c0, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fbafba435310720, + 0xbfecccccccccccd1, 0x3fbafba435310740, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fb81ee83994b780, + 0xbfeccccccccccccd, 0x3fb81ee83994b8c0, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fb5440da23bf900, + 0xbfeccccccccccce3, 0x3fb5440da23bf800, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fb26ada6eb2f000, + 0xbfecccccccccccc4, 0x3fb26ada6eb2f040, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3faf262a45a37f80, + 0xbfecccccccccccce, 0x3faf262a45a37f80, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fa9790968d39400, + 0xbfecccccccccccbf, 0x3fa9790968d39300, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3fa3cde0f27d6600, + 0xbfeccccccccccccf, 0x3fa3cde0f27d6700, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3f9c488054fba000, + 0xbfecccccccccccd2, 0x3f9c488054fba200, 0x0, 0x0, - 0xbfecccccccccccd9, 0x3f90f76da3bec800, + 0xbfecccccccccccdf, 0x3f90f76da3becc00, 0x0, 0x0, - 0xbfeccccccccccd20, 0x3f769ea800130000, + 0xbfeccccccccccd37, 0x3f769ea800134000, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbf769ea800134000, + 0xbfeccccccccccccc, 0xbf769ea800134000, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbf90f76da3bec000, + 0xbfecccccccccccce, 0xbf90f76da3bec800, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbf9c488054fb9e00, + 0xbfeccccccccccccb, 0xbf9c488054fb9c00, 0x0, 0x0, - 0xbfecccccccccccb8, 0xbfa3cde0f27d6400, + 0xbfecccccccccccd5, 0xbfa3cde0f27d6500, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbfa9790968d39400, + 0xbfecccccccccccd5, 0xbfa9790968d39400, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfaf262a45a38080, + 0xbfecccccccccccd4, 0xbfaf262a45a38000, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfb26ada6eb2f040, + 0xbfeccccccccccccb, 0xbfb26ada6eb2f080, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfb5440da23bf7c0, + 0xbfeccccccccccccc, 0xbfb5440da23bf800, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfb81ee83994b7c0, + 0xbfecccccccccccb6, 0xbfb81ee83994b780, 0x0, 0x0, - 0xbfecccccccccccd7, 0xbfbafba435310700, + 0xbfecccccccccccce, 0xbfbafba4353106e0, 0x0, 0x0, - 0xbfecccccccccccbc, 0xbfbdda7c2c7bb2e0, + 0xbfecccccccccccd3, 0xbfbdda7c2c7bb2c0, 0x0, 0x0, - 0xbfecccccccccccbd, 0xbfc05dd5b0735540, + 0xbfecccccccccccd6, 0xbfc05dd5b0735590, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbfc1cfb6e8b6e970, + 0xbfecccccccccccc8, 0xbfc1cfb6e8b6e970, 0x0, 0x0, - 0xbfecccccccccccde, 0xbfc34300274d27f0, + 0xbfeccccccccccccc, 0xbfc34300274d27c0, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbfc4b7d0478a7820, + 0xbfecccccccccccd0, 0xbfc4b7d0478a78b0, 0x0, 0x0, - 0xbfeccccccccccce0, 0xbfc62e46a26b6480, + 0xbfecccccccccccbf, 0xbfc62e46a26b63c0, 0x0, 0x0, - 0xbfecccccccccccf9, 0xbfc7a6831983eed0, + 0xbfecccccccccccd4, 0xbfc7a6831983ef40, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfc920a6224e6e80, + 0xbfecccccccccccd8, 0xbfc920a6224e6e60, 0x0, 0x0, - 0xbfecccccccccccdf, 0xbfca9cd0d1e28d90, + 0xbfeccccccccccccf, 0xbfca9cd0d1e28d98, 0x0, 0x0, - 0xbfecccccccccccc1, 0xbfcc1b24e91df400, + 0xbfeccccccccccccc, 0xbfcc1b24e91df480, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfcd9bc4e1485c70, + 0xbfecccccccccccce, 0xbfcd9bc4e1485c48, 0x0, 0x0, - 0xbfecccccccccccbc, 0xbfcf1ed3f93d8fd0, + 0xbfeccccccccccccd, 0xbfcf1ed3f93d8ff0, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbfd0523b21944484, + 0xbfecccccccccccd4, 0xbfd0523b21944480, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfd11668596dbeb0, + 0xbfecccccccccccc9, 0xbfd11668596dbe78, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfd1dc049668ca4c, + 0xbfecccccccccccce, 0xbfd1dc049668ca40, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfd2a3234af3ee40, + 0xbfeccccccccccccc, 0xbfd2a3234af3ee54, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbfd36bd871edfa18, + 0xbfecccccccccccca, 0xbfd36bd871edfa00, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfd4363897500ac8, + 0xbfecccccccccccd2, 0xbfd4363897500a98, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfd50258e14a9bbc, + 0xbfecccccccccccc7, 0xbfd50258e14a9bb8, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbfd5d04f19dea698, + 0xbfecccccccccccd0, 0xbfd5d04f19dea690, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfd6a031b8fc86b8, + 0xbfecccccccccccd4, 0xbfd6a031b8fc869c, 0x0, 0x0, - 0xbfeccccccccccce9, 0xbfd77217ef331b3c, + 0xbfecccccccccccdc, 0xbfd77217ef331a40, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfd84619b0fa725c, + 0xbfeccccccccccccf, 0xbfd84619b0fa7276, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfd91c4fc2a645f2, + 0xbfeccccccccccccb, 0xbfd91c4fc2a645ce, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfd9f4d3c50d6e5c, + 0xbfecccccccccccd2, 0xbfd9f4d3c50d6e68, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbfdacfc042f4c574, + 0xbfecccccccccccd7, 0xbfdacfc042f4c590, 0x0, 0x0, - 0xbfecccccccccccde, 0xbfdbad30bf4cf3a4, + 0xbfecccccccccccd8, 0xbfdbad30bf4cf39c, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfdc8d41c454202c, + 0xbfecccccccccccd0, 0xbfdc8d41c4542000, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbfdd7010f3ade9b8, + 0xbfecccccccccccc9, 0xbfdd7010f3ade9a6, 0x0, 0x0, - 0xbfecccccccccccaf, 0xbfde55bd1785b10e, + 0xbfecccccccccccb7, 0xbfde55bd1785b136, 0x0, 0x0, - 0xbfeccccccccccccf, 0xbfdf3e6634d10e32, + 0xbfecccccccccccce, 0xbfdf3e6634d10e1e, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbfe01516cf6524b2, + 0xbfecccccccccccd2, 0xbfe01516cf6524b8, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfe08c9b05de7038, + 0xbfecccccccccccd0, 0xbfe08c9b05de7033, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbfe105d1d5a04d10, + 0xbfecccccccccccd7, 0xbfe105d1d5a04d05, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfe180ce1f012af2, + 0xbfecccccccccccce, 0xbfe180ce1f012af3, 0x0, 0x0, - 0xbfecccccccccccba, 0xbfe1fda3979e6672, + 0xbfecccccccccccd1, 0xbfe1fda3979e666e, 0x0, 0x0, - 0xbfecccccccccccb4, 0xbfe27c66d8036632, + 0xbfecccccccccccd3, 0xbfe27c66d8036612, 0x0, 0x0, - 0xbfeccccccccccca5, 0xbfe2fd2d6a5013eb, + 0xbfeccccccccccce3, 0xbfe2fd2d6a50140a, 0x0, 0x0, - 0xbfeccccccccccccf, 0xbfe3800dd9f56340, + 0xbfecccccccccccd5, 0xbfe3800dd9f56366, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfe4051fc4a0dfce, + 0xbfecccccccccccd1, 0xbfe4051fc4a0dff6, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfe48c7bec72d74e, + 0xbfeccccccccccccf, 0xbfe48c7bec72d75e, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfe5163c4b9d8b1a, + 0xbfeccccccccccccd, 0xbfe5163c4b9d8b38, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbfe5a27c298f12a0, + 0xbfecccccccccccd7, 0xbfe5a27c298f12a3, 0x0, 0x0, - 0xbfecccccccccccce, 0xbfe6315831cb2de5, + 0xbfecccccccccccd0, 0xbfe6315831cb2de8, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfe6c2ee8c9e5922, + 0xbfecccccccccccd0, 0xbfe6c2ee8c9e5926, 0x0, 0x0, - 0xbfecccccccccccdd, 0xbfe7575ef9d7f98e, + 0xbfecccccccccccbe, 0xbfe7575ef9d7f9d4, 0x0, 0x0, - 0xbfecccccccccccf0, 0xbfe7eecaedbea025, + 0xbfecccccccccccc4, 0xbfe7eecaedbe9ffc, 0x0, 0x0, - 0xbfecccccccccccd4, 0xbfe88955b077209c, + 0xbfecccccccccccca, 0xbfe88955b077208d, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfe92724801dc9e4, + 0xbfecccccccccccca, 0xbfe92724801dc9d2, 0x0, 0x0, - 0xbfeccccccccccce4, 0xbfe9c85eb5d865e2, + 0xbfecccccccccccbb, 0xbfe9c85eb5d865df, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfea6d2dee300c52, + 0xbfeccccccccccccd, 0xbfea6d2dee300c5d, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbfeb15be350b5224, + 0xbfecccccccccccc5, 0xbfeb15be350b5231, 0x0, 0x0, - 0xbfecccccccccccf1, 0xbfebc23e35ac2c18, + 0xbfecccccccccccc6, 0xbfebc23e35ac2be8, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbfec72df6f213000, + 0xbfecccccccccccbc, 0xbfec72df6f213077, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfed27d66da7f080, + 0xbfecccccccccccca, 0xbfed27d66da7f080, 0x0, 0x0, - 0xbfecccccccccccdb, 0xbfede15b098e369a, + 0xbfecccccccccccbe, 0xbfede15b098e369e, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfee9fa8ac326ecd, + 0xbfecccccccccccd9, 0xbfee9fa8ac326eda, 0x0, 0x0, - 0xbfeccccccccccce2, 0xbfef62fe9bd8a56e, + 0xbfecccccccccccd4, 0xbfef62fe9bd8a585, 0x0, 0x0, - 0xbfecccccccccccce, 0xbff015d02790f966, + 0xbfeccccccccccccc, 0xbff015d02790f962, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbff07ceae4882558, + 0xbfecccccccccccca, 0xbff07ceae488255a, 0x0, 0x0, - 0xbfecccccccccccce, 0xbff0e6f5ff509b81, + 0xbfecccccccccccc4, 0xbff0e6f5ff509b7f, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbff1541aa397ddc2, + 0xbfecccccccccccc0, 0xbff1541aa397ddcf, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbff1c484ec7cbfbc, + 0xbfeccccccccccce4, 0xbff1c484ec7cbfb8, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbff2386429ab36c4, + 0xbfecccccccccccd0, 0xbff2386429ab36c7, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbff2afeb2c36d807, + 0xbfeccccccccccccb, 0xbff2afeb2c36d800, 0x0, 0x0, - 0xbfecccccccccccca, 0xbff32b509c3c6a34, + 0xbfeccccccccccce3, 0xbff32b509c3c6a32, 0x0, 0x0, - 0xbfecccccccccccb8, 0xbff3aacf587c0676, + 0xbfecccccccccccca, 0xbff3aacf587c0672, 0x0, 0x0, - 0xbfecccccccccccd7, 0xbff42ea6e14da406, + 0xbfeccccccccccccf, 0xbff42ea6e14da400, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbff4b71bd08b1d6a, + 0xbfecccccccccccc4, 0xbff4b71bd08b1d54, 0x0, 0x0, - 0xbfeccccccccccca8, 0xbff54478604e88c4, + 0xbfecccccccccccb9, 0xbff54478604e889c, 0x0, 0x0, - 0xbfecccccccccccac, 0xbff5d70d02b46486, + 0xbfecccccccccccbe, 0xbff5d70d02b46494, 0x0, 0x0, - 0xbfecccccccccccd4, 0xbff66f310d3159cb, + 0xbfecccccccccccce, 0xbff66f310d3159de, 0x0, 0x0, - 0xbfecccccccccccce, 0xbff70d437a7ea21e, + 0xbfecccccccccccc6, 0xbff70d437a7ea21d, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbff7b1abc6aabb12, + 0xbfecccccccccccdb, 0xbff7b1abc6aabb07, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbff85cdae9836074, + 0xbfeccccccccccce9, 0xbff85cdae9836076, 0x0, 0x0, - 0xbfecccccccccccca, 0xbff90f4c745878c8, + 0xbfecccccccccccd0, 0xbff90f4c745878cc, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbff9c987d90e53ce, + 0xbfecccccccccccd2, 0xbff9c987d90e53d2, 0x0, 0x0, - 0xbfecccccccccccda, 0xbffa8c21e1a31964, + 0xbfecccccccccccb9, 0xbffa8c21e1a31951, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbffb57be60bd7a20, + 0xbfecccccccccccb5, 0xbffb57be60bd7a1e, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbffc2d1225a37291, + 0xbfeccccccccccccd, 0xbffc2d1225a37298, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbffd0ce5402e49b8, + 0xbfeccccccccccccd, 0xbffd0ce5402e49b2, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbffdf815a412f9c3, + 0xbfecccccccccccea, 0xbffdf815a412f9bc, 0x0, 0x0, - 0xbfecccccccccccce, 0xbffeef9a3e4b2e6a, + 0xbfecccccccccccc7, 0xbffeef9a3e4b2e7a, 0x0, 0x0, - 0xbfecccccccccccd4, 0xbffff48693c6e28a, + 0xbfecccccccccccd0, 0xbffff48693c6e290, 0x0, 0x0, - 0xbfeccccccccccccb, 0xc0008407830b2570, + 0xbfecccccccccccd0, 0xc0008407830b2572, 0x0, 0x0, - 0xbfeccccccccccc94, 0xc00115c6f0e5b667, + 0xbfeccccccccccc9c, 0xc00115c6f0e5b668, 0x0, 0x0, - 0xbfeccccccccccccb, 0xc001b044b1b3710f, + 0xbfecccccccccccc7, 0xc001b044b1b37111, 0x0, 0x0, - 0xbfecccccccccccb8, 0xc002545d75b2a3da, + 0xbfecccccccccccc9, 0xc002545d75b2a3dc, 0x0, 0x0, - 0xbfecccccccccccdc, 0xc003030bd4ad8a06, + 0xbfecccccccccccc2, 0xc003030bd4ad8a05, 0x0, 0x0, - 0xbfeccccccccccca4, 0xc003bd6d8d1eae92, + 0xbfecccccccccccba, 0xc003bd6d8d1eae98, 0x0, 0x0, - 0xbfecccccccccccdc, 0xc00484c9e8613772, + 0xbfecccccccccccb2, 0xc00484c9e8613776, 0x0, 0x0, - 0xbfecccccccccccd4, 0xc0055a999155b146, + 0xbfecccccccccccd5, 0xc0055a999155b146, 0x0, 0x0, - 0xbfecccccccccccbd, 0xc0064090432cec73, + 0xbfecccccccccccc5, 0xc0064090432cec7b, 0x0, 0x0, - 0xbfecccccccccccfe, 0xc00738a8d73f3dde, + 0xbfecccccccccccb4, 0xc00738a8d73f3de6, 0x0, 0x0, - 0xbfecccccccccccd1, 0xc008453466c2d15e, + 0xbfecccccccccccda, 0xc008453466c2d14c, 0x0, 0x0, - 0xbfecccccccccccb7, 0xc00968ed757ea698, + 0xbfeccccccccccccd, 0xc00968ed757ea68c, 0x0, 0x0, - 0xbfecccccccccccc1, 0xc00aa71075cc7f14, + 0xbfecccccccccccd0, 0xc00aa71075cc7f12, 0x0, 0x0, - 0xbfeccccccccccccc, 0xc00c037b797b5802, + 0xbfecccccccccccd9, 0xc00c037b797b5800, 0x0, 0x0, - 0xbfeccccccccccca8, 0xc00d82d7a2f6c008, + 0xbfecccccccccccdd, 0xc00d82d7a2f6c00a, 0x0, 0x0, - 0xbfecccccccccccc8, 0xc00f2ad0073bcf51, + 0xbfecccccccccccd5, 0xc00f2ad0073bcf4f, 0x0, 0x0, - 0xbfecccccccccccdc, 0xc010812db07702e0, + 0xbfecccccccccccd3, 0xc010812db07702df, 0x0, 0x0, - 0xbfeccccccccccd40, 0xc011891048168077, + 0xbfeccccccccccd08, 0xc011891048168072, 0x0, 0x0, - 0xbfecccccccccccde, 0xc012b28100c9542e, + 0xbfecccccccccccc6, 0xc012b28100c95432, 0x0, 0x0, - 0xbfecccccccccccca, 0xc0140471621c330a, + 0xbfecccccccccccde, 0xc0140471621c330a, 0x0, 0x0, - 0xbfecccccccccccb8, 0xc01587e19bdecd0e, + 0xbfecccccccccccc3, 0xc01587e19bdecd0e, 0x0, 0x0, - 0xbfecccccccccccba, 0xc01748b32fe05150, + 0xbfecccccccccccb6, 0xc01748b32fe05150, 0x0, 0x0, - 0xbfecccccccccccca, 0xc01956e984ec49a6, + 0xbfecccccccccccc4, 0xc01956e984ec49a8, 0x0, 0x0, - 0xbfecccccccccccc3, 0xc01bc8a1a932b51c, + 0xbfecccccccccccd3, 0xc01bc8a1a932b51d, 0x0, 0x0, - 0xbfecccccccccccc8, 0xc01ebd483ea04e04, + 0xbfecccccccccccc5, 0xc01ebd483ea04e07, 0x0, 0x0, - 0xbfecccccccccccaf, 0xc0213189cac9369b, + 0xbfecccccccccccd9, 0xc0213189cac93698, 0x0, 0x0, - 0xbfecccccccccccb3, 0xc023806fbb4028ee, + 0xbfecccccccccccc1, 0xc023806fbb4028ec, 0x0, 0x0, - 0xbfecccccccccccb2, 0xc0268491490c1ed4, + 0xbfecccccccccccda, 0xc0268491490c1ed4, 0x0, 0x0, - 0xbfeccccccccccca8, 0xc02aa0c94d1aa2aa, + 0xbfecccccccccccb8, 0xc02aa0c94d1aa2ac, 0x0, 0x0, - 0xbfeccccccccccc9a, 0xc03047e8c9b183ef, + 0xbfeccccccccccccb, 0xc03047e8c9b183ee, 0x0, 0x0, - 0xbfeccccccccccc88, 0xc034f0e53fa19835, + 0xbfecccccccccccb9, 0xc034f0e53fa19834, 0x0, 0x0, - 0xbfeccccccccccc8f, 0xc03d53841d299f96, + 0xbfeccccccccccce8, 0xc03d53841d299f96, 0x0, 0x0, - 0xbfeccccccccccc49, 0xc048718527a1778f, + 0xbfeccccccccccc85, 0xc048718527a17790, 0x0, 0x0, - 0xbfeccccccccccae0, 0xc062559c819c53b0 + 0xbfeccccccccccc81, 0xc062559c819c53b0 }; static const uint64_t ref_cfft_step_512[1024] = { 0x406ccccccccccccd, 0x0, - 0xbfeccccccccccd23, 0x4062559c819c53b0, + 0xbfecccccccccccdc, 0x4062559c819c53b0, 0x0, 0x0, - 0xbfecccccccccccf0, 0x4048718527a17790, + 0xbfeccccccccccc9e, 0x4048718527a1778f, 0x0, 0x0, - 0xbfecccccccccccf1, 0x403d53841d299f96, + 0xbfeccccccccccce7, 0x403d53841d299f97, 0x0, 0x0, - 0xbfecccccccccccfc, 0x4034f0e53fa19837, + 0xbfeccccccccccccb, 0x4034f0e53fa19836, 0x0, 0x0, - 0xbfeccccccccccce9, 0x403047e8c9b183ee, + 0xbfecccccccccccd7, 0x403047e8c9b183ee, 0x0, 0x0, - 0xbfecccccccccccdb, 0x402aa0c94d1aa2ac, + 0xbfecccccccccccc0, 0x402aa0c94d1aa2ac, 0x0, 0x0, - 0xbfecccccccccccdc, 0x40268491490c1ed4, + 0xbfecccccccccccd5, 0x40268491490c1ed4, 0x0, 0x0, - 0xbfecccccccccccf0, 0x4023806fbb4028f2, + 0xbfecccccccccccdc, 0x4023806fbb4028ee, 0x0, 0x0, - 0xbfeccccccccccce4, 0x40213189cac93698, + 0xbfecccccccccccd6, 0x40213189cac93699, 0x0, 0x0, - 0xbfecccccccccccd9, 0x401ebd483ea04e06, + 0xbfecccccccccccca, 0x401ebd483ea04e06, 0x0, 0x0, - 0xbfecccccccccccd8, 0x401bc8a1a932b522, + 0xbfecccccccccccd7, 0x401bc8a1a932b51c, 0x0, 0x0, - 0xbfeccccccccccccb, 0x401956e984ec49ac, + 0xbfecccccccccccb4, 0x401956e984ec49a8, 0x0, 0x0, - 0xbfecccccccccccc7, 0x401748b32fe05150, + 0xbfecccccccccccd0, 0x401748b32fe05150, 0x0, 0x0, - 0xbfeccccccccccce0, 0x401587e19bdecd0e, + 0xbfecccccccccccca, 0x401587e19bdecd0e, 0x0, 0x0, - 0xbfeccccccccccce1, 0x40140471621c330d, + 0xbfecccccccccccc8, 0x40140471621c330c, 0x0, 0x0, - 0xbfeccccccccccd10, 0x4012b28100c95436, + 0xbfecccccccccccbf, 0x4012b28100c9542f, 0x0, 0x0, - 0xbfecccccccccccbf, 0x4011891048168074, + 0xbfecccccccccccdc, 0x4011891048168070, 0x0, 0x0, - 0xbfecccccccccccca, 0x4010812db07702e0, + 0xbfecccccccccccc8, 0x4010812db07702df, 0x0, 0x0, - 0xbfecccccccccccd1, 0x400f2ad0073bcf4f, + 0xbfecccccccccccd5, 0x400f2ad0073bcf4e, 0x0, 0x0, - 0xbfecccccccccccd7, 0x400d82d7a2f6c002, + 0xbfecccccccccccc6, 0x400d82d7a2f6c007, 0x0, 0x0, - 0xbfecccccccccccee, 0x400c037b797b57fb, + 0xbfeccccccccccccc, 0x400c037b797b57fa, 0x0, 0x0, - 0xbfecccccccccccc8, 0x400aa71075cc7f0f, + 0xbfecccccccccccc1, 0x400aa71075cc7f13, 0x0, 0x0, - 0xbfecccccccccccd9, 0x400968ed757ea686, + 0xbfecccccccccccc8, 0x400968ed757ea68e, 0x0, 0x0, - 0xbfecccccccccccbe, 0x4008453466c2d14c, + 0xbfecccccccccccbb, 0x4008453466c2d14f, 0x0, 0x0, - 0xbfecccccccccccbf, 0x400738a8d73f3dee, + 0xbfecccccccccccbc, 0x400738a8d73f3de6, 0x0, 0x0, - 0xbfecccccccccccdc, 0x40064090432cec7f, + 0xbfecccccccccccd0, 0x40064090432cec7a, 0x0, 0x0, - 0xbfecccccccccccd0, 0x40055a999155b144, + 0xbfecccccccccccd2, 0x40055a999155b144, 0x0, 0x0, - 0xbfeccccccccccc9e, 0x400484c9e8613778, + 0xbfecccccccccccde, 0x400484c9e8613775, 0x0, 0x0, - 0xbfecccccccccccd7, 0x4003bd6d8d1eae9a, + 0xbfecccccccccccdf, 0x4003bd6d8d1eae93, 0x0, 0x0, - 0xbfeccccccccccccf, 0x4003030bd4ad8a05, + 0xbfecccccccccccc8, 0x4003030bd4ad8a04, 0x0, 0x0, - 0xbfecccccccccccc8, 0x4002545d75b2a3e3, + 0xbfecccccccccccc4, 0x4002545d75b2a3da, 0x0, 0x0, - 0xbfeccccccccccce5, 0x4001b044b1b3711e, + 0xbfecccccccccccfc, 0x4001b044b1b37110, 0x0, 0x0, - 0xbfeccccccccccccc, 0x400115c6f0e5b666, + 0xbfecccccccccccc7, 0x400115c6f0e5b668, 0x0, 0x0, - 0xbfecccccccccccd6, 0x40008407830b2572, + 0xbfecccccccccccc9, 0x40008407830b2571, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3ffff48693c6e289, + 0xbfecccccccccccd8, 0x3ffff48693c6e288, 0x0, 0x0, - 0xbfecccccccccccfe, 0x3ffeef9a3e4b2e8b, + 0xbfecccccccccccbd, 0x3ffeef9a3e4b2e74, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3ffdf815a412f9bf, + 0xbfecccccccccccc6, 0x3ffdf815a412f9b7, 0x0, 0x0, - 0xbfecccccccccccca, 0x3ffd0ce5402e49b5, + 0xbfeccccccccccccc, 0x3ffd0ce5402e49b6, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3ffc2d1225a37296, + 0xbfecccccccccccd7, 0x3ffc2d1225a37298, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3ffb57be60bd7a1c, + 0xbfecccccccccccf1, 0x3ffb57be60bd7a14, 0x0, 0x0, - 0xbfecccccccccccbd, 0x3ffa8c21e1a31948, + 0xbfeccccccccccce4, 0x3ffa8c21e1a31950, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3ff9c987d90e53d5, + 0xbfecccccccccccce, 0x3ff9c987d90e53d6, 0x0, 0x0, - 0xbfeccccccccccce4, 0x3ff90f4c745878c0, + 0xbfecccccccccccc8, 0x3ff90f4c745878c8, 0x0, 0x0, - 0xbfecccccccccccde, 0x3ff85cdae983606c, + 0xbfecccccccccccd5, 0x3ff85cdae9836074, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3ff7b1abc6aabb0b, + 0xbfecccccccccccb2, 0x3ff7b1abc6aabb06, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3ff70d437a7ea211, + 0xbfecccccccccccc7, 0x3ff70d437a7ea21b, 0x0, 0x0, - 0xbfecccccccccccc0, 0x3ff66f310d3159ed, + 0xbfecccccccccccd7, 0x3ff66f310d3159de, 0x0, 0x0, - 0xbfecccccccccccdd, 0x3ff5d70d02b46476, + 0xbfecccccccccccc5, 0x3ff5d70d02b46477, 0x0, 0x0, - 0xbfecccccccccccdf, 0x3ff54478604e88a6, + 0xbfecccccccccccd3, 0x3ff54478604e8893, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3ff4b71bd08b1d49, + 0xbfecccccccccccc7, 0x3ff4b71bd08b1d5b, 0x0, 0x0, - 0xbfecccccccccccb7, 0x3ff42ea6e14da40b, + 0xbfecccccccccccd1, 0x3ff42ea6e14da401, 0x0, 0x0, - 0xbfeccccccccccce1, 0x3ff3aacf587c0677, + 0xbfecccccccccccc1, 0x3ff3aacf587c066a, 0x0, 0x0, - 0xbfecccccccccccda, 0x3ff32b509c3c6a2c, + 0xbfecccccccccccdd, 0x3ff32b509c3c6a3a, 0x0, 0x0, - 0xbfecccccccccccde, 0x3ff2afeb2c36d7fe, + 0xbfecccccccccccda, 0x3ff2afeb2c36d804, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3ff2386429ab36c5, + 0xbfecccccccccccca, 0x3ff2386429ab36cb, 0x0, 0x0, - 0xbfeccccccccccced, 0x3ff1c484ec7cbfb3, + 0xbfecccccccccccd4, 0x3ff1c484ec7cbfba, 0x0, 0x0, - 0xbfecccccccccccc0, 0x3ff1541aa397ddc6, + 0xbfecccccccccccb4, 0x3ff1541aa397ddc2, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3ff0e6f5ff509b7e, + 0xbfecccccccccccd0, 0x3ff0e6f5ff509b7e, 0x0, 0x0, - 0xbfeccccccccccce4, 0x3ff07ceae4882552, + 0xbfecccccccccccd0, 0x3ff07ceae488255d, 0x0, 0x0, - 0xbfeccccccccccd04, 0x3ff015d02790f961, + 0xbfeccccccccccccb, 0x3ff015d02790f960, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3fef62fe9bd8a592, + 0xbfecccccccccccc7, 0x3fef62fe9bd8a57d, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3fee9fa8ac326ee4, + 0xbfecccccccccccd1, 0x3fee9fa8ac326ee1, 0x0, 0x0, - 0xbfecccccccccccb1, 0x3fede15b098e3678, + 0xbfecccccccccccc6, 0x3fede15b098e3688, 0x0, 0x0, - 0xbfeccccccccccd40, 0x3fed27d66da7f080, + 0xbfecccccccccccbc, 0x3fed27d66da7f077, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fec72df6f213080, + 0xbfecccccccccccca, 0x3fec72df6f213080, 0x0, 0x0, - 0xbfecccccccccccbb, 0x3febc23e35ac2bfa, + 0xbfecccccccccccde, 0x3febc23e35ac2bfe, 0x0, 0x0, - 0xbfecccccccccccca, 0x3feb15be350b522d, + 0xbfecccccccccccc9, 0x3feb15be350b522a, 0x0, 0x0, - 0xbfeccccccccccce2, 0x3fea6d2dee300c4e, + 0xbfecccccccccccc4, 0x3fea6d2dee300c65, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fe9c85eb5d865cc, + 0xbfecccccccccccdc, 0x3fe9c85eb5d865e3, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3fe92724801dc9c0, + 0xbfecccccccccccca, 0x3fe92724801dc9d4, 0x0, 0x0, - 0xbfecccccccccccde, 0x3fe88955b077206a, + 0xbfecccccccccccd4, 0x3fe88955b077208e, 0x0, 0x0, - 0xbfecccccccccccc0, 0x3fe7eecaedbe9ff4, + 0xbfecccccccccccd8, 0x3fe7eecaedbea01e, 0x0, 0x0, - 0xbfecccccccccccb4, 0x3fe7575ef9d7f9b8, + 0xbfecccccccccccec, 0x3fe7575ef9d7f9c8, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fe6c2ee8c9e5937, + 0xbfecccccccccccd0, 0x3fe6c2ee8c9e5926, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fe6315831cb2dde, + 0xbfecccccccccccd3, 0x3fe6315831cb2de9, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fe5a27c298f1289, + 0xbfeccccccccccccb, 0x3fe5a27c298f12a4, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fe5163c4b9d8b39, + 0xbfecccccccccccc2, 0x3fe5163c4b9d8b24, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fe48c7bec72d757, + 0xbfeccccccccccccb, 0x3fe48c7bec72d761, 0x0, 0x0, - 0xbfecccccccccccd3, 0x3fe4051fc4a0e004, + 0xbfecccccccccccd4, 0x3fe4051fc4a0dff0, 0x0, 0x0, - 0xbfeccccccccccc88, 0x3fe3800dd9f56378, + 0xbfeccccccccccca1, 0x3fe3800dd9f56378, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fe2fd2d6a501424, + 0xbfecccccccccccbe, 0x3fe2fd2d6a501408, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fe27c66d8036626, + 0xbfecccccccccccca, 0x3fe27c66d803661f, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fe1fda3979e6664, + 0xbfecccccccccccca, 0x3fe1fda3979e666e, 0x0, 0x0, - 0xbfecccccccccccc0, 0x3fe180ce1f012adc, + 0xbfecccccccccccd3, 0x3fe180ce1f012aea, 0x0, 0x0, - 0xbfecccccccccccd3, 0x3fe105d1d5a04ced, + 0xbfeccccccccccce5, 0x3fe105d1d5a04d04, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fe08c9b05de702d, + 0xbfecccccccccccce, 0x3fe08c9b05de7035, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3fe01516cf6524c5, + 0xbfecccccccccccd2, 0x3fe01516cf6524a9, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fdf3e6634d10e5a, + 0xbfecccccccccccd3, 0x3fdf3e6634d10dfc, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fde55bd1785b13e, + 0xbfecccccccccccc5, 0x3fde55bd1785b116, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fdd7010f3ade98c, + 0xbfeccccccccccccf, 0x3fdd7010f3ade998, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fdc8d41c4541ff8, + 0xbfeccccccccccccf, 0x3fdc8d41c454200a, 0x0, 0x0, - 0xbfeccccccccccce4, 0x3fdbad30bf4cf3a4, + 0xbfeccccccccccce6, 0x3fdbad30bf4cf3a6, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3fdacfc042f4c598, + 0xbfeccccccccccccf, 0x3fdacfc042f4c58a, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fd9f4d3c50d6e9a, + 0xbfecccccccccccc8, 0x3fd9f4d3c50d6e6e, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fd91c4fc2a645a4, + 0xbfecccccccccccc8, 0x3fd91c4fc2a645d4, 0x0, 0x0, - 0xbfecccccccccccde, 0x3fd84619b0fa7380, + 0xbfecccccccccccbc, 0x3fd84619b0fa7300, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3fd77217ef331aa0, + 0xbfeccccccccccccf, 0x3fd77217ef331abe, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fd6a031b8fc86b2, + 0xbfeccccccccccccb, 0x3fd6a031b8fc86a6, 0x0, 0x0, - 0xbfecccccccccccbe, 0x3fd5d04f19dea6a4, + 0xbfecccccccccccc8, 0x3fd5d04f19dea690, 0x0, 0x0, - 0xbfecccccccccccde, 0x3fd50258e14a9b7c, + 0xbfecccccccccccca, 0x3fd50258e14a9be4, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fd4363897500ab4, + 0xbfeccccccccccccc, 0x3fd4363897500aac, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fd36bd871edfa18, + 0xbfecccccccccccc7, 0x3fd36bd871edfa18, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fd2a3234af3ee58, + 0xbfecccccccccccd3, 0x3fd2a3234af3ee58, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3fd1dc049668c9c0, + 0xbfecccccccccccdc, 0x3fd1dc049668ca2c, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3fd11668596dbe40, + 0xbfecccccccccccb8, 0x3fd11668596dbe54, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fd0523b2194448c, + 0xbfeccccccccccccb, 0x3fd0523b21944478, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fcf1ed3f93d8fa0, + 0xbfecccccccccccc8, 0x3fcf1ed3f93d8fd8, 0x0, 0x0, - 0xbfeccccccccccc9a, 0x3fcd9bc4e1485b80, + 0xbfecccccccccccd3, 0x3fcd9bc4e1485c00, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fcc1b24e91df498, + 0xbfecccccccccccc7, 0x3fcc1b24e91df4c8, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fca9cd0d1e28d70, + 0xbfecccccccccccd3, 0x3fca9cd0d1e28d90, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fc920a6224e6e10, + 0xbfecccccccccccd3, 0x3fc920a6224e6e40, 0x0, 0x0, - 0xbfecccccccccccde, 0x3fc7a6831983eee0, + 0xbfecccccccccccd8, 0x3fc7a6831983ef70, 0x0, 0x0, - 0xbfeccccccccccca8, 0x3fc62e46a26b6370, + 0xbfecccccccccccbe, 0x3fc62e46a26b6300, 0x0, 0x0, - 0xbfecccccccccccde, 0x3fc4b7d0478a7880, + 0xbfecccccccccccc2, 0x3fc4b7d0478a7850, 0x0, 0x0, - 0xbfecccccccccccbe, 0x3fc34300274d2810, + 0xbfecccccccccccd1, 0x3fc34300274d27b0, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fc1cfb6e8b6e930, + 0xbfeccccccccccccc, 0x3fc1cfb6e8b6e9c0, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fc05dd5b07355e0, + 0xbfecccccccccccd0, 0x3fc05dd5b07355f0, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3fbdda7c2c7bb2a0, + 0xbfecccccccccccc7, 0x3fbdda7c2c7bb2c0, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fbafba435310720, + 0xbfecccccccccccd1, 0x3fbafba435310740, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fb81ee83994b780, + 0xbfeccccccccccccd, 0x3fb81ee83994b8c0, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fb5440da23bf900, + 0xbfeccccccccccce3, 0x3fb5440da23bf800, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fb26ada6eb2f000, + 0xbfecccccccccccc4, 0x3fb26ada6eb2f040, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3faf262a45a37f80, + 0xbfecccccccccccce, 0x3faf262a45a37f80, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fa9790968d39400, + 0xbfecccccccccccbf, 0x3fa9790968d39300, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3fa3cde0f27d6600, + 0xbfeccccccccccccf, 0x3fa3cde0f27d6700, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3f9c488054fba000, + 0xbfecccccccccccd2, 0x3f9c488054fba200, 0x0, 0x0, - 0xbfecccccccccccd9, 0x3f90f76da3bec800, + 0xbfecccccccccccdf, 0x3f90f76da3becc00, 0x0, 0x0, - 0xbfeccccccccccd20, 0x3f769ea800130000, + 0xbfeccccccccccd37, 0x3f769ea800134000, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbf769ea800134000, + 0xbfeccccccccccccc, 0xbf769ea800134000, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbf90f76da3bec000, + 0xbfecccccccccccce, 0xbf90f76da3bec800, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbf9c488054fb9e00, + 0xbfeccccccccccccb, 0xbf9c488054fb9c00, 0x0, 0x0, - 0xbfecccccccccccb8, 0xbfa3cde0f27d6400, + 0xbfecccccccccccd5, 0xbfa3cde0f27d6500, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbfa9790968d39400, + 0xbfecccccccccccd5, 0xbfa9790968d39400, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfaf262a45a38080, + 0xbfecccccccccccd4, 0xbfaf262a45a38000, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfb26ada6eb2f040, + 0xbfeccccccccccccb, 0xbfb26ada6eb2f080, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfb5440da23bf7c0, + 0xbfeccccccccccccc, 0xbfb5440da23bf800, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfb81ee83994b7c0, + 0xbfecccccccccccb6, 0xbfb81ee83994b780, 0x0, 0x0, - 0xbfecccccccccccd7, 0xbfbafba435310700, + 0xbfecccccccccccce, 0xbfbafba4353106e0, 0x0, 0x0, - 0xbfecccccccccccbc, 0xbfbdda7c2c7bb2e0, + 0xbfecccccccccccd3, 0xbfbdda7c2c7bb2c0, 0x0, 0x0, - 0xbfecccccccccccbd, 0xbfc05dd5b0735540, + 0xbfecccccccccccd6, 0xbfc05dd5b0735590, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbfc1cfb6e8b6e970, + 0xbfecccccccccccc8, 0xbfc1cfb6e8b6e970, 0x0, 0x0, - 0xbfecccccccccccde, 0xbfc34300274d27f0, + 0xbfeccccccccccccc, 0xbfc34300274d27c0, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbfc4b7d0478a7820, + 0xbfecccccccccccd0, 0xbfc4b7d0478a78b0, 0x0, 0x0, - 0xbfeccccccccccce0, 0xbfc62e46a26b6480, + 0xbfecccccccccccbf, 0xbfc62e46a26b63c0, 0x0, 0x0, - 0xbfecccccccccccf9, 0xbfc7a6831983eed0, + 0xbfecccccccccccd4, 0xbfc7a6831983ef40, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfc920a6224e6e80, + 0xbfecccccccccccd8, 0xbfc920a6224e6e60, 0x0, 0x0, - 0xbfecccccccccccdf, 0xbfca9cd0d1e28d90, + 0xbfeccccccccccccf, 0xbfca9cd0d1e28d98, 0x0, 0x0, - 0xbfecccccccccccc1, 0xbfcc1b24e91df400, + 0xbfeccccccccccccc, 0xbfcc1b24e91df480, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfcd9bc4e1485c70, + 0xbfecccccccccccce, 0xbfcd9bc4e1485c48, 0x0, 0x0, - 0xbfecccccccccccbc, 0xbfcf1ed3f93d8fd0, + 0xbfeccccccccccccd, 0xbfcf1ed3f93d8ff0, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbfd0523b21944484, + 0xbfecccccccccccd4, 0xbfd0523b21944480, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfd11668596dbeb0, + 0xbfecccccccccccc9, 0xbfd11668596dbe78, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfd1dc049668ca4c, + 0xbfecccccccccccce, 0xbfd1dc049668ca40, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfd2a3234af3ee40, + 0xbfeccccccccccccc, 0xbfd2a3234af3ee54, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbfd36bd871edfa18, + 0xbfecccccccccccca, 0xbfd36bd871edfa00, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfd4363897500ac8, + 0xbfecccccccccccd2, 0xbfd4363897500a98, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfd50258e14a9bbc, + 0xbfecccccccccccc7, 0xbfd50258e14a9bb8, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbfd5d04f19dea698, + 0xbfecccccccccccd0, 0xbfd5d04f19dea690, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfd6a031b8fc86b8, + 0xbfecccccccccccd4, 0xbfd6a031b8fc869c, 0x0, 0x0, - 0xbfeccccccccccce9, 0xbfd77217ef331b3c, + 0xbfecccccccccccdc, 0xbfd77217ef331a40, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfd84619b0fa725c, + 0xbfeccccccccccccf, 0xbfd84619b0fa7276, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfd91c4fc2a645f2, + 0xbfeccccccccccccb, 0xbfd91c4fc2a645ce, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfd9f4d3c50d6e5c, + 0xbfecccccccccccd2, 0xbfd9f4d3c50d6e68, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbfdacfc042f4c574, + 0xbfecccccccccccd7, 0xbfdacfc042f4c590, 0x0, 0x0, - 0xbfecccccccccccde, 0xbfdbad30bf4cf3a4, + 0xbfecccccccccccd8, 0xbfdbad30bf4cf39c, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfdc8d41c454202c, + 0xbfecccccccccccd0, 0xbfdc8d41c4542000, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbfdd7010f3ade9b8, + 0xbfecccccccccccc9, 0xbfdd7010f3ade9a6, 0x0, 0x0, - 0xbfecccccccccccaf, 0xbfde55bd1785b10e, + 0xbfecccccccccccb7, 0xbfde55bd1785b136, 0x0, 0x0, - 0xbfeccccccccccccf, 0xbfdf3e6634d10e32, + 0xbfecccccccccccce, 0xbfdf3e6634d10e1e, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbfe01516cf6524b2, + 0xbfecccccccccccd2, 0xbfe01516cf6524b8, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfe08c9b05de7038, + 0xbfecccccccccccd0, 0xbfe08c9b05de7033, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbfe105d1d5a04d10, + 0xbfecccccccccccd7, 0xbfe105d1d5a04d05, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfe180ce1f012af2, + 0xbfecccccccccccce, 0xbfe180ce1f012af3, 0x0, 0x0, - 0xbfecccccccccccba, 0xbfe1fda3979e6672, + 0xbfecccccccccccd1, 0xbfe1fda3979e666e, 0x0, 0x0, - 0xbfecccccccccccb4, 0xbfe27c66d8036632, + 0xbfecccccccccccd3, 0xbfe27c66d8036612, 0x0, 0x0, - 0xbfeccccccccccca5, 0xbfe2fd2d6a5013eb, + 0xbfeccccccccccce3, 0xbfe2fd2d6a50140a, 0x0, 0x0, - 0xbfeccccccccccccf, 0xbfe3800dd9f56340, + 0xbfecccccccccccd5, 0xbfe3800dd9f56366, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfe4051fc4a0dfce, + 0xbfecccccccccccd1, 0xbfe4051fc4a0dff6, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfe48c7bec72d74e, + 0xbfeccccccccccccf, 0xbfe48c7bec72d75e, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfe5163c4b9d8b1a, + 0xbfeccccccccccccd, 0xbfe5163c4b9d8b38, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbfe5a27c298f12a0, + 0xbfecccccccccccd7, 0xbfe5a27c298f12a3, 0x0, 0x0, - 0xbfecccccccccccce, 0xbfe6315831cb2de5, + 0xbfecccccccccccd0, 0xbfe6315831cb2de8, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfe6c2ee8c9e5922, + 0xbfecccccccccccd0, 0xbfe6c2ee8c9e5926, 0x0, 0x0, - 0xbfecccccccccccdd, 0xbfe7575ef9d7f98e, + 0xbfecccccccccccbe, 0xbfe7575ef9d7f9d4, 0x0, 0x0, - 0xbfecccccccccccf0, 0xbfe7eecaedbea025, + 0xbfecccccccccccc4, 0xbfe7eecaedbe9ffc, 0x0, 0x0, - 0xbfecccccccccccd4, 0xbfe88955b077209c, + 0xbfecccccccccccca, 0xbfe88955b077208d, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfe92724801dc9e4, + 0xbfecccccccccccca, 0xbfe92724801dc9d2, 0x0, 0x0, - 0xbfeccccccccccce4, 0xbfe9c85eb5d865e2, + 0xbfecccccccccccbb, 0xbfe9c85eb5d865df, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfea6d2dee300c52, + 0xbfeccccccccccccd, 0xbfea6d2dee300c5d, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbfeb15be350b5224, + 0xbfecccccccccccc5, 0xbfeb15be350b5231, 0x0, 0x0, - 0xbfecccccccccccf1, 0xbfebc23e35ac2c18, + 0xbfecccccccccccc6, 0xbfebc23e35ac2be8, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbfec72df6f213000, + 0xbfecccccccccccbc, 0xbfec72df6f213077, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfed27d66da7f080, + 0xbfecccccccccccca, 0xbfed27d66da7f080, 0x0, 0x0, - 0xbfecccccccccccdb, 0xbfede15b098e369a, + 0xbfecccccccccccbe, 0xbfede15b098e369e, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfee9fa8ac326ecd, + 0xbfecccccccccccd9, 0xbfee9fa8ac326eda, 0x0, 0x0, - 0xbfeccccccccccce2, 0xbfef62fe9bd8a56e, + 0xbfecccccccccccd4, 0xbfef62fe9bd8a585, 0x0, 0x0, - 0xbfecccccccccccce, 0xbff015d02790f966, + 0xbfeccccccccccccc, 0xbff015d02790f962, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbff07ceae4882558, + 0xbfecccccccccccca, 0xbff07ceae488255a, 0x0, 0x0, - 0xbfecccccccccccce, 0xbff0e6f5ff509b81, + 0xbfecccccccccccc4, 0xbff0e6f5ff509b7f, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbff1541aa397ddc2, + 0xbfecccccccccccc0, 0xbff1541aa397ddcf, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbff1c484ec7cbfbc, + 0xbfeccccccccccce4, 0xbff1c484ec7cbfb8, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbff2386429ab36c4, + 0xbfecccccccccccd0, 0xbff2386429ab36c7, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbff2afeb2c36d807, + 0xbfeccccccccccccb, 0xbff2afeb2c36d800, 0x0, 0x0, - 0xbfecccccccccccca, 0xbff32b509c3c6a34, + 0xbfeccccccccccce3, 0xbff32b509c3c6a32, 0x0, 0x0, - 0xbfecccccccccccb8, 0xbff3aacf587c0676, + 0xbfecccccccccccca, 0xbff3aacf587c0672, 0x0, 0x0, - 0xbfecccccccccccd7, 0xbff42ea6e14da406, + 0xbfeccccccccccccf, 0xbff42ea6e14da400, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbff4b71bd08b1d6a, + 0xbfecccccccccccc4, 0xbff4b71bd08b1d54, 0x0, 0x0, - 0xbfeccccccccccca8, 0xbff54478604e88c4, + 0xbfecccccccccccb9, 0xbff54478604e889c, 0x0, 0x0, - 0xbfecccccccccccac, 0xbff5d70d02b46486, + 0xbfecccccccccccbe, 0xbff5d70d02b46494, 0x0, 0x0, - 0xbfecccccccccccd4, 0xbff66f310d3159cb, + 0xbfecccccccccccce, 0xbff66f310d3159de, 0x0, 0x0, - 0xbfecccccccccccce, 0xbff70d437a7ea21e, + 0xbfecccccccccccc6, 0xbff70d437a7ea21d, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbff7b1abc6aabb12, + 0xbfecccccccccccdb, 0xbff7b1abc6aabb07, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbff85cdae9836074, + 0xbfeccccccccccce9, 0xbff85cdae9836076, 0x0, 0x0, - 0xbfecccccccccccca, 0xbff90f4c745878c8, + 0xbfecccccccccccd0, 0xbff90f4c745878cc, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbff9c987d90e53ce, + 0xbfecccccccccccd2, 0xbff9c987d90e53d2, 0x0, 0x0, - 0xbfecccccccccccda, 0xbffa8c21e1a31964, + 0xbfecccccccccccb9, 0xbffa8c21e1a31951, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbffb57be60bd7a20, + 0xbfecccccccccccb5, 0xbffb57be60bd7a1e, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbffc2d1225a37291, + 0xbfeccccccccccccd, 0xbffc2d1225a37298, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbffd0ce5402e49b8, + 0xbfeccccccccccccd, 0xbffd0ce5402e49b2, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbffdf815a412f9c3, + 0xbfecccccccccccea, 0xbffdf815a412f9bc, 0x0, 0x0, - 0xbfecccccccccccce, 0xbffeef9a3e4b2e6a, + 0xbfecccccccccccc7, 0xbffeef9a3e4b2e7a, 0x0, 0x0, - 0xbfecccccccccccd4, 0xbffff48693c6e28a, + 0xbfecccccccccccd0, 0xbffff48693c6e290, 0x0, 0x0, - 0xbfeccccccccccccb, 0xc0008407830b2570, + 0xbfecccccccccccd0, 0xc0008407830b2572, 0x0, 0x0, - 0xbfeccccccccccc94, 0xc00115c6f0e5b667, + 0xbfeccccccccccc9c, 0xc00115c6f0e5b668, 0x0, 0x0, - 0xbfeccccccccccccb, 0xc001b044b1b3710f, + 0xbfecccccccccccc7, 0xc001b044b1b37111, 0x0, 0x0, - 0xbfecccccccccccb8, 0xc002545d75b2a3da, + 0xbfecccccccccccc9, 0xc002545d75b2a3dc, 0x0, 0x0, - 0xbfecccccccccccdc, 0xc003030bd4ad8a06, + 0xbfecccccccccccc2, 0xc003030bd4ad8a05, 0x0, 0x0, - 0xbfeccccccccccca4, 0xc003bd6d8d1eae92, + 0xbfecccccccccccba, 0xc003bd6d8d1eae98, 0x0, 0x0, - 0xbfecccccccccccdc, 0xc00484c9e8613772, + 0xbfecccccccccccb2, 0xc00484c9e8613776, 0x0, 0x0, - 0xbfecccccccccccd4, 0xc0055a999155b146, + 0xbfecccccccccccd5, 0xc0055a999155b146, 0x0, 0x0, - 0xbfecccccccccccbd, 0xc0064090432cec73, + 0xbfecccccccccccc5, 0xc0064090432cec7b, 0x0, 0x0, - 0xbfecccccccccccfe, 0xc00738a8d73f3dde, + 0xbfecccccccccccb4, 0xc00738a8d73f3de6, 0x0, 0x0, - 0xbfecccccccccccd1, 0xc008453466c2d15e, + 0xbfecccccccccccda, 0xc008453466c2d14c, 0x0, 0x0, - 0xbfecccccccccccb7, 0xc00968ed757ea698, + 0xbfeccccccccccccd, 0xc00968ed757ea68c, 0x0, 0x0, - 0xbfecccccccccccc1, 0xc00aa71075cc7f14, + 0xbfecccccccccccd0, 0xc00aa71075cc7f12, 0x0, 0x0, - 0xbfeccccccccccccc, 0xc00c037b797b5802, + 0xbfecccccccccccd9, 0xc00c037b797b5800, 0x0, 0x0, - 0xbfeccccccccccca8, 0xc00d82d7a2f6c008, + 0xbfecccccccccccdd, 0xc00d82d7a2f6c00a, 0x0, 0x0, - 0xbfecccccccccccc8, 0xc00f2ad0073bcf51, + 0xbfecccccccccccd5, 0xc00f2ad0073bcf4f, 0x0, 0x0, - 0xbfecccccccccccdc, 0xc010812db07702e0, + 0xbfecccccccccccd3, 0xc010812db07702df, 0x0, 0x0, - 0xbfeccccccccccd40, 0xc011891048168077, + 0xbfeccccccccccd08, 0xc011891048168072, 0x0, 0x0, - 0xbfecccccccccccde, 0xc012b28100c9542e, + 0xbfecccccccccccc6, 0xc012b28100c95432, 0x0, 0x0, - 0xbfecccccccccccca, 0xc0140471621c330a, + 0xbfecccccccccccde, 0xc0140471621c330a, 0x0, 0x0, - 0xbfecccccccccccb8, 0xc01587e19bdecd0e, + 0xbfecccccccccccc3, 0xc01587e19bdecd0e, 0x0, 0x0, - 0xbfecccccccccccba, 0xc01748b32fe05150, + 0xbfecccccccccccb6, 0xc01748b32fe05150, 0x0, 0x0, - 0xbfecccccccccccca, 0xc01956e984ec49a6, + 0xbfecccccccccccc4, 0xc01956e984ec49a8, 0x0, 0x0, - 0xbfecccccccccccc3, 0xc01bc8a1a932b51c, + 0xbfecccccccccccd3, 0xc01bc8a1a932b51d, 0x0, 0x0, - 0xbfecccccccccccc8, 0xc01ebd483ea04e04, + 0xbfecccccccccccc5, 0xc01ebd483ea04e07, 0x0, 0x0, - 0xbfecccccccccccaf, 0xc0213189cac9369b, + 0xbfecccccccccccd9, 0xc0213189cac93698, 0x0, 0x0, - 0xbfecccccccccccb3, 0xc023806fbb4028ee, + 0xbfecccccccccccc1, 0xc023806fbb4028ec, 0x0, 0x0, - 0xbfecccccccccccb2, 0xc0268491490c1ed4, + 0xbfecccccccccccda, 0xc0268491490c1ed4, 0x0, 0x0, - 0xbfeccccccccccca8, 0xc02aa0c94d1aa2aa, + 0xbfecccccccccccb8, 0xc02aa0c94d1aa2ac, 0x0, 0x0, - 0xbfeccccccccccc9a, 0xc03047e8c9b183ef, + 0xbfeccccccccccccb, 0xc03047e8c9b183ee, 0x0, 0x0, - 0xbfeccccccccccc88, 0xc034f0e53fa19835, + 0xbfecccccccccccb9, 0xc034f0e53fa19834, 0x0, 0x0, - 0xbfeccccccccccc8f, 0xc03d53841d299f96, + 0xbfeccccccccccce8, 0xc03d53841d299f96, 0x0, 0x0, - 0xbfeccccccccccc49, 0xc048718527a1778f, + 0xbfeccccccccccc85, 0xc048718527a17790, 0x0, 0x0, - 0xbfeccccccccccae0, 0xc062559c819c53b0 + 0xbfeccccccccccc81, 0xc062559c819c53b0 }; static const uint64_t in_cfft_step_1024[2048] = { @@ -28714,2056 +28714,2056 @@ static const uint64_t in_cfft_step_1024[2048] = { static const uint64_t in_cifft_step_1024[2048] = { 0x407ccccccccccccd, 0x0, - 0xbfeccccccccccd1a, 0x407255a7d0e959bb, + 0xbfeccccccccccccd, 0x407255a7d0e959bb, 0x0, 0x0, - 0xbfeccccccccccd2a, 0x4058720ce01d00fe, + 0xbfecccccccccccc0, 0x4058720ce01d00fe, 0x0, 0x0, - 0xbfeccccccccccce4, 0x404d554889eb3cef, + 0xbfeccccccccccccd, 0x404d554889eb3cef, 0x0, 0x0, - 0xbfeccccccccccd04, 0x4044f35eb0e6f56d, + 0xbfeccccccccccc8a, 0x4044f35eb0e6f56c, 0x0, 0x0, - 0xbfecccccccccccde, 0x40404b174bb2101c, + 0xbfeccccccccccccd, 0x40404b174bb2101c, 0x0, 0x0, - 0xbfecccccccccccfc, 0x403aa89091ff4d39, + 0xbfecccccccccccdc, 0x403aa89091ff4d38, 0x0, 0x0, - 0xbfeccccccccccce0, 0x40368dc2f54252f9, + 0xbfeccccccccccccd, 0x40368dc2f54252f8, 0x0, 0x0, - 0xbfecccccccccccee, 0x40338b0bfc399934, + 0xbfecccccccccccd0, 0x40338b0bfc39992f, 0x0, 0x0, - 0xbfecccccccccccd8, 0x40313d90d4fed3ce, + 0xbfecccccccccccca, 0x40313d90d4fed3cd, 0x0, 0x0, - 0xbfecccccccccccec, 0x402ed82c5c8c5f06, + 0xbfecccccccccccd6, 0x402ed82c5c8c5f02, 0x0, 0x0, - 0xbfecccccccccccda, 0x402be65c55c7ebbe, + 0xbfecccccccccccd0, 0x402be65c55c7ebbf, 0x0, 0x0, - 0xbfecccccccccccda, 0x4029777b537d1969, + 0xbfecccccccccccbe, 0x4029777b537d196a, 0x0, 0x0, - 0xbfeccccccccccccc, 0x40276c1cc1f4c08c, + 0xbfecccccccccccc8, 0x40276c1cc1f4c08f, 0x0, 0x0, - 0xbfeccccccccccce3, 0x4025ae23a14101b2, + 0xbfeccccccccccccc, 0x4025ae23a14101b4, 0x0, 0x0, - 0xbfeccccccccccce3, 0x40242d8c98e61f80, + 0xbfecccccccccccc8, 0x40242d8c98e61f80, 0x0, 0x0, - 0xbfeccccccccccd06, 0x4022de76357386ee, + 0xbfecccccccccccb2, 0x4022de76357386ed, 0x0, 0x0, - 0xbfecccccccccccd5, 0x4021b7e0558818a8, + 0xbfeccccccccccccd, 0x4021b7e0558818a8, 0x0, 0x0, - 0xbfecccccccccccd5, 0x4020b2d98016ccb4, + 0xbfecccccccccccea, 0x4020b2d98016ccb1, 0x0, 0x0, - 0xbfecccccccccccdb, 0x401f93e11ac94640, + 0xbfeccccccccccccd, 0x401f93e11ac94640, 0x0, 0x0, - 0xbfeccccccccccce6, 0x401df1a4380e6b0d, + 0xbfecccccccccccc6, 0x401df1a4380e6b0e, 0x0, 0x0, - 0xbfecccccccccccc7, 0x401c7805bacda35e, + 0xbfeccccccccccccd, 0x401c7805bacda35a, 0x0, 0x0, - 0xbfecccccccccccec, 0x401b215aaba9a5fe, + 0xbfecccccccccccdb, 0x401b215aaba9a5fe, 0x0, 0x0, - 0xbfeccccccccccce6, 0x4019e8fa0604d6ae, + 0xbfeccccccccccccd, 0x4019e8fa0604d6ae, 0x0, 0x0, - 0xbfecccccccccccdc, 0x4018cb05d60ec63a, + 0xbfecccccccccccfe, 0x4018cb05d60ec630, 0x0, 0x0, - 0xbfecccccccccccd3, 0x4017c441c79f5c7e, + 0xbfecccccccccccc5, 0x4017c441c79f5c7e, 0x0, 0x0, - 0xbfecccccccccccd3, 0x4016d1f37556e797, + 0xbfecccccccccccc4, 0x4016d1f37556e796, 0x0, 0x0, - 0xbfecccccccccccd6, 0x4015f1c9e49ebfde, + 0xbfecccccccccccc4, 0x4015f1c9e49ebfe1, 0x0, 0x0, - 0xbfeccccccccccce3, 0x401521ca5af8e6ca, + 0xbfecccccccccccc1, 0x401521ca5af8e6c5, 0x0, 0x0, - 0xbfeccccccccccce0, 0x401460413c4c59d8, + 0xbfecccccccccccc1, 0x401460413c4c59d4, 0x0, 0x0, - 0xbfecccccccccccff, 0x4013abb5fd1082aa, + 0xbfecccccccccccc0, 0x4013abb5fd1082aa, 0x0, 0x0, - 0xbfeccccccccccce4, 0x401302e173851544, + 0xbfecccccccccccb5, 0x401302e173851539, 0x0, 0x0, - 0xbfeccccccccccd2c, 0x401264a601100b4e, + 0xbfeccccccccccc68, 0x401264a601100b46, 0x0, 0x0, - 0xbfecccccccccccc8, 0x4011d0092e102c70, + 0xbfeccccccccccccd, 0x4011d0092e102c74, 0x0, 0x0, - 0xbfecccccccccccce, 0x4011442e6abb8bbc, + 0xbfecccccccccccce, 0x4011442e6abb8bbe, 0x0, 0x0, - 0xbfeccccccccccccc, 0x4010c052b994891d, + 0xbfeccccccccccccd, 0x4010c052b994891d, 0x0, 0x0, - 0xbfecccccccccccc6, 0x401043c915661600, + 0xbfeccccccccccccf, 0x401043c9156615fc, 0x0, 0x0, - 0xbfecccccccccccdc, 0x400f9beedda0b940, + 0xbfeccccccccccccd, 0x400f9beedda0b940, 0x0, 0x0, - 0xbfecccccccccccb9, 0x400ebca84a361c40, + 0xbfecccccccccccce, 0x400ebca84a361c3f, 0x0, 0x0, - 0xbfeccccccccccce0, 0x400de8c7c7c72a8a, + 0xbfeccccccccccccd, 0x400de8c7c7c72a8c, 0x0, 0x0, - 0xbfecccccccccccdf, 0x400d1f6fa78f01aa, + 0xbfecccccccccccbb, 0x400d1f6fa78f01ae, 0x0, 0x0, - 0xbfecccccccccccbe, 0x400c5fd81f669d30, + 0xbfecccccccccccd3, 0x400c5fd81f669d3a, 0x0, 0x0, - 0xbfecccccccccccd4, 0x400ba94ca683259a, + 0xbfeccccccccccccc, 0x400ba94ca68325a6, 0x0, 0x0, - 0xbfeccccccccccccc, 0x400afb29b188cdce, + 0xbfeccccccccccccd, 0x400afb29b188cdd3, 0x0, 0x0, - 0xbfecccccccccccc4, 0x400a54dabe9b13d6, + 0xbfecccccccccccce, 0x400a54dabe9b13c6, 0x0, 0x0, - 0xbfecccccccccccc8, 0x4009b5d8a4d53a9f, + 0xbfecccccccccccd1, 0x4009b5d8a4d53aa0, 0x0, 0x0, - 0xbfecccccccccccd4, 0x40091da81ccc303e, + 0xbfecccccccccccd8, 0x40091da81ccc3044, 0x0, 0x0, - 0xbfecccccccccccb3, 0x40088bd87983cee2, + 0xbfecccccccccccd2, 0x40088bd87983cedf, 0x0, 0x0, - 0xbfecccccccccccd4, 0x400800028ab39c9a, + 0xbfeccccccccccc7d, 0x400800028ab39c8f, 0x0, 0x0, - 0xbfeccccccccccca5, 0x400779c7a264adaa, + 0xbfeccccccccccccd, 0x400779c7a264ad9a, 0x0, 0x0, - 0xbfecccccccccccd3, 0x4006f8d0b8e8fbc2, + 0xbfecccccccccccb8, 0x4006f8d0b8e8fbbc, 0x0, 0x0, - 0xbfecccccccccccdc, 0x40067ccdaaf73e88, + 0xbfeccccccccccccd, 0x40067ccdaaf73e86, 0x0, 0x0, - 0xbfecccccccccccda, 0x400605748e5d9b9a, + 0xbfecccccccccccd6, 0x400605748e5d9ba6, 0x0, 0x0, - 0xbfecccccccccccf5, 0x400592811a482304, + 0xbfeccccccccccccd, 0x400592811a482308, 0x0, 0x0, - 0xbfecccccccccccc5, 0x400523b4208b5794, + 0xbfecccccccccccc5, 0x400523b4208b5795, 0x0, 0x0, - 0xbfeccccccccccca1, 0x4004b8d315c3457d, + 0xbfeccccccccccccd, 0x4004b8d315c34576, 0x0, 0x0, - 0xbfeccccccccccc87, 0x400451a7a6684edf, + 0xbfecccccccccccc9, 0x400451a7a6684ee0, 0x0, 0x0, - 0xbfecccccccccccd2, 0x4003edff573ea32c, + 0xbfeccccccccccccc, 0x4003edff573ea325, 0x0, 0x0, - 0xbfecccccccccccbd, 0x40038dab2fbe859a, + 0xbfecccccccccccc8, 0x40038dab2fbe859c, 0x0, 0x0, - 0xbfecccccccccccca, 0x4003307f6d43ed6a, + 0xbfeccccccccccccf, 0x4003307f6d43ed6a, 0x0, 0x0, - 0xbfecccccccccccce, 0x4002d6533dfd190c, + 0xbfecccccccccccc8, 0x4002d6533dfd190f, 0x0, 0x0, - 0xbfecccccccccccd7, 0x40027f0082b2a6f5, + 0xbfecccccccccccd5, 0x40027f0082b2a6fe, 0x0, 0x0, - 0xbfecccccccccccd8, 0x40022a6396a19d49, + 0xbfeccccccccccce9, 0x40022a6396a19d50, 0x0, 0x0, - 0xbfecccccccccccd9, 0x4001d85b1cb9558d, + 0xbfecccccccccccad, 0x4001d85b1cb95588, 0x0, 0x0, - 0xbfecccccccccccdc, 0x400188c7d1a52f76, + 0xbfeccccccccccce9, 0x400188c7d1a52f80, 0x0, 0x0, - 0xbfeccccccccccca0, 0x40013b8c621ccc4c, + 0xbfeccccccccccccd, 0x40013b8c621ccc55, 0x0, 0x0, - 0xbfecccccccccccb8, 0x4000f08d4505d721, + 0xbfecccccccccccc9, 0x4000f08d4505d71a, 0x0, 0x0, - 0xbfecccccccccccd7, 0x4000a7b0990077aa, + 0xbfeccccccccccccd, 0x4000a7b0990077a6, 0x0, 0x0, - 0xbfecccccccccccd5, 0x400060de0503b6d8, + 0xbfecccccccccccd2, 0x400060de0503b6da, 0x0, 0x0, - 0xbfeccccccccccce1, 0x40001bfe9bb9baea, + 0xbfeccccccccccccd, 0x40001bfe9bb9baed, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fffb1f982a9ed58, + 0xbfecccccccccccd0, 0x3fffb1f982a9ed52, 0x0, 0x0, - 0xbfecccccccccccf6, 0x3fff2f88273ee5b4, + 0xbfeccccccccccccd, 0x3fff2f88273ee5b0, 0x0, 0x0, - 0xbfeccccccccccd22, 0x3ffeb082a818c2de, + 0xbfecccccccccccab, 0x3ffeb082a818c2de, 0x0, 0x0, - 0xbfecccccccccccb5, 0x3ffe34c4a734a678, + 0xbfeccccccccccccd, 0x3ffe34c4a734a67c, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3ffdbc2bc0b39d6e, + 0xbfecccccccccccd3, 0x3ffdbc2bc0b39d75, 0x0, 0x0, - 0xbfecccccccccccc1, 0x3ffd469768e1937c, + 0xbfeccccccccccccf, 0x3ffd469768e1937b, 0x0, 0x0, - 0xbfecccccccccccd9, 0x3ffcd3e8ccef68e7, + 0xbfecccccccccccc9, 0x3ffcd3e8ccef68f4, 0x0, 0x0, - 0xbfecccccccccccda, 0x3ffc6402b620ee34, + 0xbfeccccccccccccd, 0x3ffc6402b620ee23, 0x0, 0x0, - 0xbfeccccccccccced, 0x3ffbf6c96f360ec4, + 0xbfecccccccccccd8, 0x3ffbf6c96f360ebd, 0x0, 0x0, - 0xbfecccccccccccda, 0x3ffb8c22abdc3baa, + 0xbfeccccccccccccc, 0x3ffb8c22abdc3b9d, 0x0, 0x0, - 0xbfecccccccccccde, 0x3ffb23f571fa46e1, + 0xbfeccccccccccca0, 0x3ffb23f571fa4714, 0x0, 0x0, - 0xbfecccccccccccae, 0x3ffabe2a04ad6ede, + 0xbfeccccccccccccd, 0x3ffabe2a04ad6ef6, 0x0, 0x0, - 0xbfeccccccccccca4, 0x3ffa5aa9d0d26390, + 0xbfecccccccccccc4, 0x3ffa5aa9d0d26397, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3ff9f95f5af8adac, + 0xbfeccccccccccccd, 0x3ff9f95f5af8adb0, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3ff99a362ea21642, + 0xbfeccccccccccccd, 0x3ff99a362ea21639, 0x0, 0x0, - 0xbfeccccccccccceb, 0x3ff93d1aceb28cda, + 0xbfeccccccccccccd, 0x3ff93d1aceb28cd9, 0x0, 0x0, - 0xbfecccccccccccc0, 0x3ff8e1faa6f7a04e, + 0xbfecccccccccccc7, 0x3ff8e1faa6f7a03c, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3ff888c3feb0e7a7, + 0xbfeccccccccccccd, 0x3ff888c3feb0e7a5, 0x0, 0x0, - 0xbfecccccccccccdd, 0x3ff83165ec04d04a, + 0xbfeccccccccccd09, 0x3ff83165ec04d016, 0x0, 0x0, - 0xbfecccccccccccbd, 0x3ff7dbd0484f1a3d, + 0xbfeccccccccccccb, 0x3ff7dbd0484f1a4a, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3ff787f3a5380148, + 0xbfecccccccccccd0, 0x3ff787f3a5380134, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3ff735c142848820, + 0xbfecccccccccccc9, 0x3ff735c142848818, 0x0, 0x0, - 0xbfeccccccccccd06, 0x3ff6e52b0491c065, + 0xbfecccccccccccd0, 0x3ff6e52b0491c03b, 0x0, 0x0, - 0xbfecccccccccccba, 0x3ff696236b6e19ba, + 0xbfeccccccccccccd, 0x3ff696236b6e19bd, 0x0, 0x0, - 0xbfecccccccccccf4, 0x3ff6489d8a84ea12, + 0xbfecccccccccccce, 0x3ff6489d8a84e9fe, 0x0, 0x0, - 0xbfeccccccccccd09, 0x3ff5fc8d00d151ea, + 0xbfeccccccccccccc, 0x3ff5fc8d00d151f5, 0x0, 0x0, - 0xbfeccccccccccd61, 0x3ff5b1e5f18e98a7, + 0xbfecccccccccccce, 0x3ff5b1e5f18e9896, 0x0, 0x0, - 0xbfecccccccccccb8, 0x3ff5689cfd5ce02c, + 0xbfeccccccccccccd, 0x3ff5689cfd5ce02c, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3ff520a73bd1db04, + 0xbfecccccccccccd0, 0x3ff520a73bd1db0a, 0x0, 0x0, - 0xbfecccccccccccbe, 0x3ff4d9fa356dd348, + 0xbfeccccccccccccd, 0x3ff4d9fa356dd352, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3ff4948bddedf6ae, + 0xbfecccccccccccc2, 0x3ff4948bddedf6b4, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3ff450528ef56786, + 0xbfeccccccccccccd, 0x3ff450528ef5677d, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3ff40d4503071619, + 0xbfecccccccccccd3, 0x3ff40d4503071616, 0x0, 0x0, - 0xbfeccccccccccce5, 0x3ff3cb5a50cadf50, + 0xbfeccccccccccccd, 0x3ff3cb5a50cadf5a, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3ff38a89e698d7ff, + 0xbfecccccccccccd2, 0x3ff38a89e698d803, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3ff34acb86461212, + 0xbfeccccccccccccb, 0x3ff34acb86461202, 0x0, 0x0, - 0xbfeccccccccccce4, 0x3ff30c17412e83a4, + 0xbfecccccccccccc6, 0x3ff30c17412e8396, 0x0, 0x0, - 0xbfecccccccccccbb, 0x3ff2ce6574780a50, + 0xbfecccccccccccce, 0x3ff2ce6574780a52, 0x0, 0x0, - 0xbfecccccccccccd9, 0x3ff291aec58ad3fd, + 0xbfecccccccccccc2, 0x3ff291aec58ad400, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3ff255ec1ebbb9b6, + 0xbfeccccccccccccc, 0x3ff255ec1ebbb9b0, 0x0, 0x0, - 0xbfecccccccccccf9, 0x3ff21b16ac255c82, + 0xbfecccccccccccd0, 0x3ff21b16ac255c72, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3ff1e127d8ad0c2c, + 0xbfeccccccccccccd, 0x3ff1e127d8ad0c46, 0x0, 0x0, - 0xbfeccccccccccd1d, 0x3ff1a8194b30baa8, + 0xbfecccccccccccb7, 0x3ff1a8194b30ba9e, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3ff16fe4e3db6aef, + 0xbfeccccccccccccd, 0x3ff16fe4e3db6ade, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3ff13884b99dbe96, + 0xbfecccccccccccc6, 0x3ff13884b99dbe9a, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3ff101f317c86b5b, + 0xbfeccccccccccccd, 0x3ff101f317c86b5b, 0x0, 0x0, - 0xbfecccccccccccea, 0x3ff0cc2a7bc68997, + 0xbfecccccccccccc9, 0x3ff0cc2a7bc689aa, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3ff0972592f5d448, + 0xbfeccccccccccccd, 0x3ff0972592f5d443, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3ff062df389b0ee2, + 0xbfecccccccccccc8, 0x3ff062df389b0ed8, 0x0, 0x0, - 0xbfeccccccccccce4, 0x3ff02f5273f0e9b9, + 0xbfeccccccccccccd, 0x3ff02f5273f0e9b6, 0x0, 0x0, - 0xbfeccccccccccd2b, 0x3feff8f4ec9fabd0, + 0xbfecccccccccccf8, 0x3feff8f4ec9fabd3, 0x0, 0x0, - 0xbfecccccccccccbb, 0x3fef94a532daace6, + 0xbfeccccccccccccb, 0x3fef94a532daacea, 0x0, 0x0, - 0xbfecccccccccccbc, 0x3fef31acbb62e84c, + 0xbfecccccccccccc7, 0x3fef31acbb62e853, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3feed002d14220c0, + 0xbfeccccccccccccc, 0x3feed002d14220e6, 0x0, 0x0, - 0xbfeccccccccccce1, 0x3fee6f9f06b7ceb4, + 0xbfeccccccccccce5, 0x3fee6f9f06b7cee1, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fee1079325a4d6c, + 0xbfecccccccccccc7, 0x3fee1079325a4d85, 0x0, 0x0, - 0xbfecccccccccccc1, 0x3fedb2896c5b1fc0, + 0xbfecccccccccccb8, 0x3fedb2896c5b1f95, 0x0, 0x0, - 0xbfecccccccccccec, 0x3fed55c80bec5600, + 0xbfecccccccccccc6, 0x3fed55c80bec5647, 0x0, 0x0, - 0xbfeccccccccccc9c, 0x3fecfa2da4c54be0, + 0xbfecccccccccccc9, 0x3fecfa2da4c54c71, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fec9fb304c4ff3b, + 0xbfeccccccccccccd, 0x3fec9fb304c4ff33, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3fec465131b06a1c, + 0xbfecccccccccccd0, 0x3fec465131b069d4, 0x0, 0x0, - 0xbfecccccccccccca, 0x3febee01670b65be, + 0xbfeccccccccccccd, 0x3febee01670b65b7, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3feb96bd140aa0b1, + 0xbfeccccccccccccb, 0x3feb96bd140aa07b, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3feb407dd99d5c30, + 0xbfeccccccccccccd, 0x3feb407dd99d5c12, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3feaeb3d888db0d1, + 0xbfecccccccccccc6, 0x3feaeb3d888db0d2, 0x0, 0x0, - 0xbfeccccccccccce6, 0x3fea96f61fb62c2c, + 0xbfeccccccccccccd, 0x3fea96f61fb62c50, 0x0, 0x0, - 0xbfeccccccccccd1a, 0x3fea43a1ca4baebc, + 0xbfecccccccccccb0, 0x3fea43a1ca4baece, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fe9f13ade3a7e04, + 0xbfecccccccccccd0, 0x3fe9f13ade3a7e3a, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3fe99fbbda959198, + 0xbfecccccccccccd2, 0x3fe99fbbda9591d0, 0x0, 0x0, - 0xbfecccccccccccc0, 0x3fe94f1f66173102, + 0xbfecccccccccccce, 0x3fe94f1f661730e6, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3fe8ff604db1fdba, + 0xbfecccccccccccca, 0x3fe8ff604db1fd90, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3fe8b07983319e76, + 0xbfecccccccccccce, 0x3fe8b07983319e7e, 0x0, 0x0, - 0xbfecccccccccccae, 0x3fe862661bea42b7, + 0xbfecccccccccccca, 0x3fe862661bea42c4, 0x0, 0x0, - 0xbfecccccccccccb4, 0x3fe815214f7640f1, + 0xbfeccccccccccccf, 0x3fe815214f764106, 0x0, 0x0, - 0xbfeccccccccccd3e, 0x3fe7c8a676812416, + 0xbfecccccccccccbb, 0x3fe7c8a676812456, 0x0, 0x0, - 0xbfecccccccccccbe, 0x3fe77cf1099f7de7, + 0xbfeccccccccccccd, 0x3fe77cf1099f7e09, 0x0, 0x0, - 0xbfeccccccccccd08, 0x3fe731fca032e149, + 0xbfecccccccccccc7, 0x3fe731fca032e147, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3fe6e7c4ef597239, + 0xbfeccccccccccccd, 0x3fe6e7c4ef597242, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3fe69e45c8e87921, + 0xbfecccccccccccc1, 0x3fe69e45c8e8791d, 0x0, 0x0, - 0xbfeccccccccccce2, 0x3fe6557b1a7179e7, + 0xbfeccccccccccccd, 0x3fe6557b1a7179e5, 0x0, 0x0, - 0xbfeccccccccccce5, 0x3fe60d60ec514c83, + 0xbfecccccccccccbe, 0x3fe60d60ec514c82, 0x0, 0x0, - 0xbfecccccccccccab, 0x3fe5c5f360c8c2c1, + 0xbfeccccccccccccd, 0x3fe5c5f360c8c2f0, 0x0, 0x0, - 0xbfecccccccccccd3, 0x3fe57f2eb31e65b3, + 0xbfecccccccccccd0, 0x3fe57f2eb31e65c5, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fe5390f36c8e5c9, + 0xbfeccccccccccccc, 0x3fe5390f36c8e5ca, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fe4f39156a1d043, + 0xbfecccccccccccc0, 0x3fe4f39156a1d06c, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fe4aeb19420322e, + 0xbfeccccccccccccb, 0x3fe4aeb19420322a, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3fe46a6c869ac442, + 0xbfecccccccccccc8, 0x3fe46a6c869ac469, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fe426beda9151b1, + 0xbfeccccccccccccd, 0x3fe426beda9151b3, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3fe3e3a550fd0002, + 0xbfecccccccccccc3, 0x3fe3e3a550fd001d, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fe3a11cbea72f98, + 0xbfecccccccccccd1, 0x3fe3a11cbea72f96, 0x0, 0x0, - 0xbfeccccccccccc7c, 0x3fe35f220b86a5b0, + 0xbfecccccccccccd0, 0x3fe35f220b86a5df, 0x0, 0x0, - 0xbfecccccccccccb0, 0x3fe31db23222be71, + 0xbfeccccccccccccd, 0x3fe31db23222be67, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fe2dcca3efc5e12, + 0xbfecccccccccccc9, 0x3fe2dcca3efc5dee, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fe29c674ffc6588, + 0xbfeccccccccccccd, 0x3fe29c674ffc6597, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3fe25c8693e76dce, + 0xbfecccccccccccd2, 0x3fe25c8693e76de4, 0x0, 0x0, - 0xbfeccccccccccce5, 0x3fe21d2549d68cd0, + 0xbfeccccccccccccd, 0x3fe21d2549d68ce3, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3fe1de40c0b4f042, + 0xbfecccccccccccd1, 0x3fe1de40c0b4f044, 0x0, 0x0, - 0xbfecccccccccccb7, 0x3fe19fd656c218c0, + 0xbfeccccccccccccd, 0x3fe19fd656c218b2, 0x0, 0x0, - 0xbfecccccccccccbd, 0x3fe161e379188340, + 0xbfecccccccccccc3, 0x3fe161e379188394, 0x0, 0x0, - 0xbfecccccccccccc5, 0x3fe12465a3389230, + 0xbfeccccccccccccb, 0x3fe12465a3389231, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fe0e75a5e9785e2, + 0xbfeccccccccccccc, 0x3fe0e75a5e9785f8, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3fe0aabf42325ffb, + 0xbfecccccccccccce, 0x3fe0aabf42325feb, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fe06e91f2247fbe, + 0xbfecccccccccccbd, 0x3fe06e91f2247f87, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fe032d01f41d6a5, + 0xbfeccccccccccccd, 0x3fe032d01f41d6ae, 0x0, 0x0, - 0xbfecccccccccccea, 0x3fdfeeef0d691d30, + 0xbfecccccccccccd4, 0x3fdfeeef0d691d30, 0x0, 0x0, - 0xbfecccccccccccb8, 0x3fdf790be33bf5c0, + 0xbfeccccccccccccc, 0x3fdf790be33bf5a6, 0x0, 0x0, - 0xbfecccccccccccaa, 0x3fdf03f269756b78, + 0xbfeccccccccccd19, 0x3fdf03f269756b4a, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fde8f9e60138e04, + 0xbfeccccccccccccd, 0x3fde8f9e60138e0a, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3fde1c0b9ced6e40, + 0xbfecccccccccccdd, 0x3fde1c0b9ced6ed4, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fdda9360b0cdd8c, + 0xbfeccccccccccccd, 0x3fdda9360b0cddae, 0x0, 0x0, - 0xbfecccccccccccdf, 0x3fdd3719aa0d8b74, + 0xbfecccccccccccc9, 0x3fdd3719aa0d8bfe, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3fdcc5b28d8158bc, + 0xbfeccccccccccccd, 0x3fdcc5b28d815914, 0x0, 0x0, - 0xbfeccccccccccc9d, 0x3fdc54fcdc599632, + 0xbfeccccccccccccb, 0x3fdc54fcdc599674, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fdbe4f4d05510e8, + 0xbfeccccccccccccd, 0x3fdbe4f4d0551114, 0x0, 0x0, - 0xbfecccccccccccdf, 0x3fdb7596b572b33a, + 0xbfecccccccccccdd, 0x3fdb7596b572b34e, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3fdb06dee9688b56, + 0xbfecccccccccccd6, 0x3fdb06dee9688b44, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3fda98c9db1f1448, + 0xbfecccccccccccc8, 0x3fda98c9db1f14ac, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fda2b540a308e54, + 0xbfeccccccccccccf, 0x3fda2b540a308e1e, 0x0, 0x0, - 0xbfeccccccccccc9f, 0x3fd9be7a066c4000, + 0xbfeccccccccccce4, 0x3fd9be7a066c3fe0, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3fd952386f5d8548, + 0xbfeccccccccccccd, 0x3fd952386f5d8520, 0x0, 0x0, - 0xbfecccccccccccaf, 0x3fd8e68bf3d674b2, + 0xbfecccccccccccd9, 0x3fd8e68bf3d674dc, 0x0, 0x0, - 0xbfeccccccccccd02, 0x3fd87b71517e08e4, + 0xbfecccccccccccbd, 0x3fd87b71517e08a0, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3fd810e55461a0a8, + 0xbfeccccccccccd49, 0x3fd810e554619fc0, 0x0, 0x0, - 0xbfeccccccccccca4, 0x3fd7a6e4d689ba3a, + 0xbfeccccccccccccd, 0x3fd7a6e4d689b9ea, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fd73d6cbf91d1da, + 0xbfecccccccccccc7, 0x3fd73d6cbf91d1f2, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3fd6d47a04432eea, + 0xbfeccccccccccccd, 0x3fd6d47a04432ee2, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3fd66c09a632a1a8, + 0xbfecccccccccccc2, 0x3fd66c09a632a16a, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fd60418b360fd1c, + 0xbfeccccccccccccd, 0x3fd60418b360fd24, 0x0, 0x0, - 0xbfeccccccccccc95, 0x3fd59ca445de4094, + 0xbfecccccccccccd2, 0x3fd59ca445de40c0, 0x0, 0x0, - 0xbfeccccccccccced, 0x3fd535a9836f50c4, + 0xbfeccccccccccccd, 0x3fd535a9836f50b0, 0x0, 0x0, - 0xbfeccccccccccd16, 0x3fd4cf259d362a50, + 0xbfecccccccccccab, 0x3fd4cf259d362b1c, 0x0, 0x0, - 0xbfecccccccccccb7, 0x3fd46915cf5c791c, + 0xbfecccccccccccc1, 0x3fd46915cf5c7904, 0x0, 0x0, - 0xbfecccccccccccab, 0x3fd4037760c07574, + 0xbfecccccccccccd0, 0x3fd4037760c075a4, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3fd39e47a2a3fc78, + 0xbfecccccccccccc9, 0x3fd39e47a2a3fcb0, 0x0, 0x0, - 0xbfecccccccccccd3, 0x3fd33983f05dc714, + 0xbfecccccccccccc0, 0x3fd33983f05dc6b8, 0x0, 0x0, - 0xbfecccccccccccb2, 0x3fd2d529af0ca950, + 0xbfecccccccccccd1, 0x3fd2d529af0ca960, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fd271364d4cd40c, + 0xbfecccccccccccd4, 0x3fd271364d4cd404, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fd20da742eef328, + 0xbfecccccccccccd3, 0x3fd20da742eef348, 0x0, 0x0, - 0xbfeccccccccccce1, 0x3fd1aa7a10b12798, + 0xbfeccccccccccc7a, 0x3fd1aa7a10b127f0, 0x0, 0x0, - 0xbfecccccccccccda, 0x3fd147ac3ff9c0a0, + 0xbfeccccccccccccd, 0x3fd147ac3ff9c088, 0x0, 0x0, - 0xbfecccccccccccea, 0x3fd0e53b6293a810, + 0xbfeccccccccccce5, 0x3fd0e53b6293a7ec, 0x0, 0x0, - 0xbfecccccccccccbe, 0x3fd08325126c714c, + 0xbfeccccccccccccd, 0x3fd08325126c7158, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3fd02166f153fc98, + 0xbfecccccccccccd0, 0x3fd02166f153fcc0, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fcf7ffd517b35a0, + 0xbfeccccccccccccd, 0x3fcf7ffd517b3510, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fcebdd3d3055058, + 0xbfecccccccccccd3, 0x3fcebdd3d30550e8, 0x0, 0x0, - 0xbfecccccccccccbc, 0x3fcdfc4cd74d1ca8, + 0xbfeccccccccccccd, 0x3fcdfc4cd74d1d00, 0x0, 0x0, - 0xbfeccccccccccc92, 0x3fcd3b63dc383c90, + 0xbfecccccccccccfd, 0x3fcd3b63dc383e88, 0x0, 0x0, - 0xbfecccccccccccdf, 0x3fcc7b146d1878f8, + 0xbfecccccccccccd0, 0x3fcc7b146d1878c8, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3fcbbb5a223b7ed0, + 0xbfecccccccccccda, 0x3fcbbb5a223b7ee0, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3fcafc30a07d2890, + 0xbfeccccccccccccc, 0x3fcafc30a07d28a0, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fca3d9398dbf860, + 0xbfecccccccccccd0, 0x3fca3d9398dbf810, 0x0, 0x0, - 0xbfecccccccccccd9, 0x3fc97f7ec80fd870, + 0xbfecccccccccccce, 0x3fc97f7ec80fd8f0, 0x0, 0x0, - 0xbfeccccccccccce8, 0x3fc8c1edf622fb20, + 0xbfecccccccccccba, 0x3fc8c1edf622fb70, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fc804dcf60cc9d0, + 0xbfecccccccccccc8, 0x3fc804dcf60cc960, 0x0, 0x0, - 0xbfecccccccccccf8, 0x3fc74847a54ec050, + 0xbfecccccccccccdf, 0x3fc74847a54ec260, 0x0, 0x0, - 0xbfecccccccccccc5, 0x3fc68c29eb9345a0, + 0xbfeccccccccccccd, 0x3fc68c29eb934510, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fc5d07fba4e2c80, + 0xbfecccccccccccd6, 0x3fc5d07fba4e2b70, 0x0, 0x0, - 0xbfecccccccccccde, 0x3fc515450c5f1500, + 0xbfeccccccccccccd, 0x3fc515450c5f1530, 0x0, 0x0, - 0xbfecccccccccccc0, 0x3fc45a75e5b567f0, + 0xbfecccccccccccc0, 0x3fc45a75e5b56810, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fc3a00e52f5ea40, + 0xbfeccccccccccccd, 0x3fc3a00e52f5ea10, 0x0, 0x0, - 0xbfecccccccccccbb, 0x3fc2e60a6921d300, + 0xbfecccccccccccd0, 0x3fc2e60a6921d2f0, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fc22c66453f6350, + 0xbfeccccccccccccd, 0x3fc22c66453f6350, 0x0, 0x0, - 0xbfecccccccccccb8, 0x3fc1731e0c03d1f0, + 0xbfeccccccccccca2, 0x3fc1731e0c03d3a0, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fc0ba2de97e9c60, + 0xbfeccccccccccccd, 0x3fc0ba2de97e9c10, 0x0, 0x0, - 0xbfecccccccccccc5, 0x3fc0019210c60440, + 0xbfecccccccccccd6, 0x3fc0019210c60440, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fbe928d7749bb20, + 0xbfecccccccccccc8, 0x3fbe928d7749bb40, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3fbd22905492d7c0, + 0xbfecccccccccccd9, 0x3fbd22905492d840, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3fbbb32545eac100, + 0xbfeccccccccccccb, 0x3fbbb32545eac140, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fba4444e35dbc00, + 0xbfecccccccccccc8, 0x3fba4444e35dbb60, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fb8d5e7cfe4e900, + 0xbfeccccccccccccc, 0x3fb8d5e7cfe4ea40, 0x0, 0x0, - 0xbfeccccccccccc62, 0x3fb76806b8cc1ac0, + 0xbfecccccccccccc0, 0x3fb76806b8cc1c00, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fb5fa9a55195f80, + 0xbfeccccccccccccd, 0x3fb5fa9a55195e00, 0x0, 0x0, - 0xbfecccccccccccb7, 0x3fb48d9b64f63b80, + 0xbfecccccccccccca, 0x3fb48d9b64f63a40, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3fb32102b11a5380, + 0xbfeccccccccccccd, 0x3fb32102b11a5300, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fb1b4c90a37a000, + 0xbfecccccccccccda, 0x3fb1b4c90a379f80, 0x0, 0x0, - 0xbfeccccccccccced, 0x3fb048e74867e100, + 0xbfeccccccccccccd, 0x3fb048e74867e180, 0x0, 0x0, - 0xbfecccccccccccd9, 0x3fadbaac9536a280, + 0xbfecccccccccccbd, 0x3fadbaac95369f80, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3faae41dec110000, + 0xbfeccccccccccccd, 0x3faae41dec110100, 0x0, 0x0, - 0xbfeccccccccccc93, 0x3fa80e146b3a6d00, + 0xbfecccccccccccd0, 0x3fa80e146b3a6b00, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fa53881f2e08200, + 0xbfecccccccccccd0, 0x3fa53881f2e08200, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fa263586c684a00, + 0xbfecccccccccccce, 0x3fa263586c684a00, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3f9f1d1392aa2e00, + 0xbfecccccccccccd7, 0x3f9f1d1392aa2c00, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3f99741004617000, + 0xbfecccccccccccca, 0x3f99741004617800, 0x0, 0x0, - 0xbfecccccccccccbd, 0x3f93cb8a2ae9bc00, + 0xbfecccccccccccd8, 0x3f93cb8a2ae9c000, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3f8c46cc19d58000, + 0xbfecccccccccccda, 0x3f8c46cc19d59000, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3f80f70f712de000, + 0xbfecccccccccccea, 0x3f80f70f712df000, 0x0, 0x0, - 0xbfecccccccccccfc, 0x3f669e9a0c160000, + 0xbfecccccccccccc9, 0x3f669e9a0c160000, 0x0, 0x0, - 0xbfecccccccccccce, 0xbf669e9a0c160000, + 0xbfeccccccccccccd, 0xbf669e9a0c160000, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbf80f70f712dd000, + 0xbfecccccccccccd8, 0xbf80f70f712dd000, 0x0, 0x0, - 0xbfecccccccccccd4, 0xbf8c46cc19d59000, + 0xbfeccccccccccccd, 0xbf8c46cc19d59000, 0x0, 0x0, - 0xbfecccccccccccca, 0xbf93cb8a2ae9b800, + 0xbfecccccccccccd0, 0xbf93cb8a2ae9c000, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbf99741004617000, + 0xbfeccccccccccccd, 0xbf99741004617400, 0x0, 0x0, - 0xbfecccccccccccca, 0xbf9f1d1392aa2c00, + 0xbfeccccccccccccc, 0xbf9f1d1392aa3000, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbfa263586c684a00, + 0xbfeccccccccccccd, 0xbfa263586c684900, 0x0, 0x0, - 0xbfecccccccccccb6, 0xbfa53881f2e07c00, + 0xbfecccccccccccc4, 0xbfa53881f2e08200, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbfa80e146b3a6b00, + 0xbfecccccccccccca, 0xbfa80e146b3a6a00, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfaae41dec10ff80, + 0xbfecccccccccccbe, 0xbfaae41dec10ff80, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbfadbaac9536a000, + 0xbfeccccccccccccc, 0xbfadbaac95369d00, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbfb048e74867df80, + 0xbfecccccccccccba, 0xbfb048e74867dec0, 0x0, 0x0, - 0xbfecccccccccccb6, 0xbfb1b4c90a379e80, + 0xbfeccccccccccccc, 0xbfb1b4c90a379e80, 0x0, 0x0, - 0xbfecccccccccccb1, 0xbfb32102b11a51c0, + 0xbfeccccccccccccc, 0xbfb32102b11a5340, 0x0, 0x0, - 0xbfecccccccccccc1, 0xbfb48d9b64f63b00, + 0xbfecccccccccccce, 0xbfb48d9b64f63a40, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfb5fa9a55195f40, + 0xbfeccccccccccd18, 0xbfb5fa9a55196180, 0x0, 0x0, - 0xbfecccccccccccdb, 0xbfb76806b8cc1bc0, + 0xbfeccccccccccccd, 0xbfb76806b8cc1c00, 0x0, 0x0, - 0xbfeccccccccccce7, 0xbfb8d5e7cfe4e900, + 0xbfecccccccccccd4, 0xbfb8d5e7cfe4e980, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbfba4444e35dbb20, + 0xbfeccccccccccccd, 0xbfba4444e35dbba0, 0x0, 0x0, - 0xbfecccccccccccec, 0xbfbbb32545eac0c0, + 0xbfecccccccccccc0, 0xbfbbb32545eac120, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfbd22905492d800, + 0xbfeccccccccccccd, 0xbfbd22905492d860, 0x0, 0x0, - 0xbfecccccccccccde, 0xbfbe928d7749baa0, + 0xbfecccccccccccc9, 0xbfbe928d7749bba0, 0x0, 0x0, - 0xbfecccccccccccd4, 0xbfc0019210c60410, + 0xbfeccccccccccccd, 0xbfc0019210c603d0, 0x0, 0x0, - 0xbfecccccccccccde, 0xbfc0ba2de97e9b00, + 0xbfecccccccccccd6, 0xbfc0ba2de97e9c20, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbfc1731e0c03d2b0, + 0xbfeccccccccccccb, 0xbfc1731e0c03d300, 0x0, 0x0, - 0xbfecccccccccccc1, 0xbfc22c66453f63a0, + 0xbfecccccccccccd0, 0xbfc22c66453f6330, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfc2e60a6921d360, + 0xbfecccccccccccd2, 0xbfc2e60a6921d320, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfc3a00e52f5e9b0, + 0xbfecccccccccccdf, 0xbfc3a00e52f5e960, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfc45a75e5b56830, + 0xbfecccccccccccd1, 0xbfc45a75e5b56840, 0x0, 0x0, - 0xbfecccccccccccdb, 0xbfc515450c5f14c0, + 0xbfecccccccccccd2, 0xbfc515450c5f14d0, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfc5d07fba4e2bd0, + 0xbfecccccccccccd1, 0xbfc5d07fba4e2ba0, 0x0, 0x0, - 0xbfecccccccccccec, 0xbfc68c29eb9347c0, + 0xbfecccccccccccec, 0xbfc68c29eb934610, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfc74847a54ec230, + 0xbfeccccccccccccd, 0xbfc74847a54ec290, 0x0, 0x0, - 0xbfecccccccccccde, 0xbfc804dcf60cc990, + 0xbfecccccccccccc8, 0xbfc804dcf60cc910, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfc8c1edf622fb08, + 0xbfeccccccccccccd, 0xbfc8c1edf622fb40, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfc97f7ec80fd808, + 0xbfecccccccccccc5, 0xbfc97f7ec80fd850, 0x0, 0x0, - 0xbfecccccccccccde, 0xbfca3d9398dbf780, + 0xbfeccccccccccccd, 0xbfca3d9398dbf748, 0x0, 0x0, - 0xbfeccccccccccce5, 0xbfcafc30a07d2880, + 0xbfeccccccccccccc, 0xbfcafc30a07d2890, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfcbbb5a223b7ef8, + 0xbfeccccccccccccd, 0xbfcbbb5a223b7f58, 0x0, 0x0, - 0xbfeccccccccccc8b, 0xbfcc7b146d187758, + 0xbfecccccccccccef, 0xbfcc7b146d187910, 0x0, 0x0, - 0xbfecccccccccccb4, 0xbfcd3b63dc383ee0, + 0xbfeccccccccccccf, 0xbfcd3b63dc383ee8, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfcdfc4cd74d1d20, + 0xbfecccccccccccd0, 0xbfcdfc4cd74d1d38, 0x0, 0x0, - 0xbfecccccccccccce, 0xbfcebdd3d3055120, + 0xbfeccccccccccccf, 0xbfcebdd3d30550f0, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbfcf7ffd517b3600, + 0xbfecccccccccccca, 0xbfcf7ffd517b3640, 0x0, 0x0, - 0xbfecccccccccccd4, 0xbfd02166f153fcf8, + 0xbfeccccccccccccf, 0xbfd02166f153fd14, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfd08325126c7174, + 0xbfeccccccccccccc, 0xbfd08325126c7144, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbfd0e53b6293a800, + 0xbfecccccccccccce, 0xbfd0e53b6293a7f8, 0x0, 0x0, - 0xbfeccccccccccd08, 0xbfd147ac3ff9c068, + 0xbfecccccccccccff, 0xbfd147ac3ff9c128, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfd1aa7a10b1282c, + 0xbfeccccccccccccd, 0xbfd1aa7a10b1285c, 0x0, 0x0, - 0xbfecccccccccccb1, 0xbfd20da742eef330, + 0xbfecccccccccccba, 0xbfd20da742eef354, 0x0, 0x0, - 0xbfecccccccccccb8, 0xbfd271364d4cd3f4, + 0xbfeccccccccccccd, 0xbfd271364d4cd3f0, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfd2d529af0ca944, + 0xbfecccccccccccc4, 0xbfd2d529af0ca94c, 0x0, 0x0, - 0xbfecccccccccccdf, 0xbfd33983f05dc6c8, + 0xbfeccccccccccccd, 0xbfd33983f05dc6e4, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbfd39e47a2a3fcac, + 0xbfecccccccccccd1, 0xbfd39e47a2a3fce8, 0x0, 0x0, - 0xbfecccccccccccbb, 0xbfd4037760c07598, + 0xbfeccccccccccccd, 0xbfd4037760c0758c, 0x0, 0x0, - 0xbfecccccccccccf9, 0xbfd46915cf5c7918, + 0xbfecccccccccccf5, 0xbfd46915cf5c78e4, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfd4cf259d362aec, + 0xbfecccccccccccd0, 0xbfd4cf259d362af8, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbfd535a9836f50c0, + 0xbfecccccccccccc8, 0xbfd535a9836f50fc, 0x0, 0x0, - 0xbfeccccccccccce6, 0xbfd59ca445de40b0, + 0xbfecccccccccccc7, 0xbfd59ca445de40c0, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfd60418b360fd44, + 0xbfecccccccccccc8, 0xbfd60418b360fd38, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfd66c09a632a188, + 0xbfecccccccccccc5, 0xbfd66c09a632a190, 0x0, 0x0, - 0xbfeccccccccccce2, 0xbfd6d47a04432efe, + 0xbfecccccccccccc9, 0xbfd6d47a04432f3c, 0x0, 0x0, - 0xbfeccccccccccca3, 0xbfd73d6cbf91d230, + 0xbfeccccccccccccd, 0xbfd73d6cbf91d1c0, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfd7a6e4d689bb8c, + 0xbfeccccccccccc29, 0xbfd7a6e4d689bb00, 0x0, 0x0, - 0xbfecccccccccccfc, 0xbfd810e55461a056, + 0xbfeccccccccccccd, 0xbfd810e55461a0ba, 0x0, 0x0, - 0xbfecccccccccccb2, 0xbfd87b71517e08ca, + 0xbfecccccccccccc7, 0xbfd87b71517e08c6, 0x0, 0x0, - 0xbfeccccccccccceb, 0xbfd8e68bf3d674f6, + 0xbfeccccccccccccd, 0xbfd8e68bf3d674c2, 0x0, 0x0, - 0xbfecccccccccccb3, 0xbfd952386f5d8520, + 0xbfecccccccccccc2, 0xbfd952386f5d855a, 0x0, 0x0, - 0xbfeccccccccccccf, 0xbfd9be7a066c4024, + 0xbfeccccccccccccd, 0xbfd9be7a066c4018, 0x0, 0x0, - 0xbfeccccccccccd03, 0xbfda2b540a308dc2, + 0xbfecccccccccccca, 0xbfda2b540a308e12, 0x0, 0x0, - 0xbfecccccccccccba, 0xbfda98c9db1f149e, + 0xbfeccccccccccccd, 0xbfda98c9db1f14a0, 0x0, 0x0, - 0xbfecccccccccccec, 0xbfdb06dee9688c18, + 0xbfecccccccccccbf, 0xbfdb06dee9688b06, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfdb7596b572b308, + 0xbfecccccccccccd5, 0xbfdb7596b572b30e, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfdbe4f4d0551070, + 0xbfecccccccccccd5, 0xbfdbe4f4d05510fc, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfdc54fcdc59969a, + 0xbfeccccccccccccd, 0xbfdc54fcdc599674, 0x0, 0x0, - 0xbfeccccccccccd07, 0xbfdcc5b28d815964, + 0xbfecccccccccccdd, 0xbfdcc5b28d815908, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfdd3719aa0d8c60, + 0xbfeccccccccccccb, 0xbfdd3719aa0d8c2c, 0x0, 0x0, - 0xbfecccccccccccf5, 0xbfdda9360b0cdd8e, + 0xbfecccccccccccd6, 0xbfdda9360b0cdd64, 0x0, 0x0, - 0xbfecccccccccccae, 0xbfde1c0b9ced6ec8, + 0xbfecccccccccccca, 0xbfde1c0b9ced6ecc, 0x0, 0x0, - 0xbfeccccccccccd02, 0xbfde8f9e60138efc, + 0xbfecccccccccccc4, 0xbfde8f9e60138e82, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbfdf03f269756b86, + 0xbfeccccccccccccd, 0xbfdf03f269756ba8, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfdf790be33bf5d6, + 0xbfecccccccccccc2, 0xbfdf790be33bf5bc, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbfdfeeef0d691d38, + 0xbfeccccccccccccd, 0xbfdfeeef0d691d3e, 0x0, 0x0, - 0xbfeccccccccccca4, 0xbfe032d01f41d6bc, + 0xbfecccccccccccd3, 0xbfe032d01f41d6d6, 0x0, 0x0, - 0xbfecccccccccccdb, 0xbfe06e91f2247fa9, + 0xbfeccccccccccccd, 0xbfe06e91f2247f96, 0x0, 0x0, - 0xbfeccccccccccce0, 0xbfe0aabf4232600d, + 0xbfeccccccccccccd, 0xbfe0aabf4232600c, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfe0e75a5e9785c2, + 0xbfeccccccccccccd, 0xbfe0e75a5e9785ca, 0x0, 0x0, - 0xbfeccccccccccc97, 0xbfe12465a33891cf, + 0xbfeccccccccccce3, 0xbfe12465a3389201, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbfe161e379188316, + 0xbfecccccccccccd1, 0xbfe161e37918831b, 0x0, 0x0, - 0xbfecccccccccccf0, 0xbfe19fd656c218c8, + 0xbfecccccccccccc6, 0xbfe19fd656c218ac, 0x0, 0x0, - 0xbfecccccccccccbf, 0xbfe1de40c0b4f037, + 0xbfecccccccccccd1, 0xbfe1de40c0b4f045, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfe21d2549d68cda, + 0xbfecccccccccccd0, 0xbfe21d2549d68cd4, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbfe25c8693e76e05, + 0xbfeccccccccccccf, 0xbfe25c8693e76dda, 0x0, 0x0, - 0xbfecccccccccccb8, 0xbfe29c674ffc65c5, + 0xbfecccccccccccd0, 0xbfe29c674ffc6585, 0x0, 0x0, - 0xbfeccccccccccca9, 0xbfe2dcca3efc5e0b, + 0xbfecccccccccccce, 0xbfe2dcca3efc5df6, 0x0, 0x0, - 0xbfeccccccccccc39, 0xbfe31db23222be8e, + 0xbfeccccccccccca0, 0xbfe31db23222be62, 0x0, 0x0, - 0xbfecccccccccccec, 0xbfe35f220b86a5d5, + 0xbfeccccccccccccd, 0xbfe35f220b86a5e3, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfe3a11cbea72f80, + 0xbfecccccccccccce, 0xbfe3a11cbea72f9b, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfe3e3a550fcffff, + 0xbfeccccccccccccd, 0xbfe3e3a550fcfffd, 0x0, 0x0, - 0xbfecccccccccccf1, 0xbfe426beda9151a8, + 0xbfecccccccccccde, 0xbfe426beda9151a9, 0x0, 0x0, - 0xbfeccccccccccce5, 0xbfe46a6c869ac458, + 0xbfeccccccccccccd, 0xbfe46a6c869ac456, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbfe4aeb19420322e, + 0xbfeccccccccccccf, 0xbfe4aeb19420322c, 0x0, 0x0, - 0xbfecccccccccccb9, 0xbfe4f39156a1d040, + 0xbfeccccccccccccd, 0xbfe4f39156a1d048, 0x0, 0x0, - 0xbfecccccccccccbf, 0xbfe5390f36c8e5b2, + 0xbfecccccccccccb0, 0xbfe5390f36c8e5d2, 0x0, 0x0, - 0xbfeccccccccccccf, 0xbfe57f2eb31e65e4, + 0xbfeccccccccccccd, 0xbfe57f2eb31e65e0, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfe5c5f360c8c2e1, + 0xbfecccccccccccd6, 0xbfe5c5f360c8c2c9, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbfe60d60ec514cb1, + 0xbfeccccccccccccc, 0xbfe60d60ec514ca1, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfe6557b1a717a1a, + 0xbfecccccccccccd4, 0xbfe6557b1a7179ec, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfe69e45c8e8790d, + 0xbfecccccccccccce, 0xbfe69e45c8e87919, 0x0, 0x0, - 0xbfecccccccccccf9, 0xbfe6e7c4ef597247, + 0xbfecccccccccccce, 0xbfe6e7c4ef597247, 0x0, 0x0, - 0xbfeccccccccccce4, 0xbfe731fca032e131, + 0xbfeccccccccccccb, 0xbfe731fca032e14b, 0x0, 0x0, - 0xbfecccccccccccbd, 0xbfe77cf1099f7d81, + 0xbfecccccccccccfb, 0xbfe77cf1099f7da3, 0x0, 0x0, - 0xbfeccccccccccce5, 0xbfe7c8a67681240e, + 0xbfeccccccccccccd, 0xbfe7c8a6768123d4, 0x0, 0x0, - 0xbfeccccccccccca9, 0xbfe815214f7640e4, + 0xbfecccccccccccd2, 0xbfe815214f764105, 0x0, 0x0, - 0xbfecccccccccccb7, 0xbfe862661bea42d6, + 0xbfeccccccccccccd, 0xbfe862661bea42d6, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfe8b07983319ea6, + 0xbfeccccccccccccf, 0xbfe8b07983319e94, 0x0, 0x0, - 0xbfecccccccccccbd, 0xbfe8ff604db1fda8, + 0xbfeccccccccccccd, 0xbfe8ff604db1fda6, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfe94f1f6617311c, + 0xbfecccccccccccce, 0xbfe94f1f66173111, 0x0, 0x0, - 0xbfeccccccccccce4, 0xbfe99fbbda9591ca, + 0xbfeccccccccccccd, 0xbfe99fbbda9591cb, 0x0, 0x0, - 0xbfeccccccccccd1b, 0xbfe9f13ade3a7df0, + 0xbfeccccccccccca4, 0xbfe9f13ade3a7df3, 0x0, 0x0, - 0xbfecccccccccccdb, 0xbfea43a1ca4baec6, + 0xbfecccccccccccd1, 0xbfea43a1ca4baeca, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfea96f61fb62c4c, + 0xbfecccccccccccdd, 0xbfea96f61fb62c53, 0x0, 0x0, - 0xbfeccccccccccce1, 0xbfeaeb3d888db0e0, + 0xbfecccccccccccd8, 0xbfeaeb3d888db0c6, 0x0, 0x0, - 0xbfecccccccccccc1, 0xbfeb407dd99d5c34, + 0xbfecccccccccccc3, 0xbfeb407dd99d5c21, 0x0, 0x0, - 0xbfeccccccccccce9, 0xbfeb96bd140aa0ac, + 0xbfecccccccccccd3, 0xbfeb96bd140aa0c5, 0x0, 0x0, - 0xbfeccccccccccce1, 0xbfebee01670b65a0, + 0xbfeccccccccccce6, 0xbfebee01670b65b5, 0x0, 0x0, - 0xbfecccccccccccec, 0xbfec465131b06a00, + 0xbfecccccccccccf4, 0xbfec465131b069c7, 0x0, 0x0, - 0xbfeccccccccccd9c, 0xbfec9fb304c4fee0, + 0xbfecccccccccccc9, 0xbfec9fb304c4fe71, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfecfa2da4c54c3b, + 0xbfeccccccccccccd, 0xbfecfa2da4c54c33, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbfed55c80bec561c, + 0xbfecccccccccccd0, 0xbfed55c80bec5654, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfedb2896c5b1f9e, + 0xbfeccccccccccccd, 0xbfedb2896c5b1fb7, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfee1079325a4d91, + 0xbfeccccccccccccb, 0xbfee1079325a4d7b, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfee6f9f06b7ceb0, + 0xbfeccccccccccccd, 0xbfee6f9f06b7ce92, 0x0, 0x0, - 0xbfecccccccccccdd, 0xbfeed002d14220d1, + 0xbfecccccccccccc6, 0xbfeed002d14220d2, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfef31acbb62e85c, + 0xbfeccccccccccccd, 0xbfef31acbb62e850, 0x0, 0x0, - 0xbfecccccccccccfa, 0xbfef94a532daacec, + 0xbfecccccccccccc0, 0xbfef94a532daac8e, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfeff8f4ec9fabe4, + 0xbfecccccccccccd0, 0xbfeff8f4ec9fabea, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbff02f5273f0e9b8, + 0xbfecccccccccccda, 0xbff02f5273f0e9c0, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbff062df389b0ee1, + 0xbfecccccccccccce, 0xbff062df389b0ee3, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbff0972592f5d44d, + 0xbfecccccccccccd2, 0xbff0972592f5d440, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbff0cc2a7bc689a3, + 0xbfecccccccccccce, 0xbff0cc2a7bc6899f, 0x0, 0x0, - 0xbfecccccccccccce, 0xbff101f317c86b54, + 0xbfecccccccccccc2, 0xbff101f317c86b5a, 0x0, 0x0, - 0xbfecccccccccccec, 0xbff13884b99dbea4, + 0xbfeccccccccccccf, 0xbff13884b99dbeab, 0x0, 0x0, - 0xbfecccccccccccce, 0xbff16fe4e3db6adb, + 0xbfecccccccccccc3, 0xbff16fe4e3db6aff, 0x0, 0x0, - 0xbfecccccccccccce, 0xbff1a8194b30ba94, + 0xbfeccccccccccccd, 0xbff1a8194b30ba98, 0x0, 0x0, - 0xbfeccccccccccce0, 0xbff1e127d8ad0c3c, + 0xbfecccccccccccc7, 0xbff1e127d8ad0c34, 0x0, 0x0, - 0xbfecccccccccccce, 0xbff21b16ac255c7e, + 0xbfeccccccccccccd, 0xbff21b16ac255c75, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbff255ec1ebbb9d6, + 0xbfeccccccccccccd, 0xbff255ec1ebbb9ca, 0x0, 0x0, - 0xbfecccccccccccb6, 0xbff291aec58ad3fa, + 0xbfeccccccccccccd, 0xbff291aec58ad3fc, 0x0, 0x0, - 0xbfecccccccccccbd, 0xbff2ce6574780a50, + 0xbfecccccccccccce, 0xbff2ce6574780a3d, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbff30c17412e83a6, + 0xbfeccccccccccccd, 0xbff30c17412e839c, 0x0, 0x0, - 0xbfecccccccccccdf, 0xbff34acb86461200, + 0xbfecccccccccccc8, 0xbff34acb86461226, 0x0, 0x0, - 0xbfecccccccccccce, 0xbff38a89e698d806, + 0xbfecccccccccccd0, 0xbff38a89e698d80d, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbff3cb5a50cadf60, + 0xbfecccccccccccc8, 0xbff3cb5a50cadf52, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbff40d4503071623, + 0xbfeccccccccccccf, 0xbff40d4503071625, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbff450528ef56785, + 0xbfecccccccccccdc, 0xbff450528ef56784, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbff4948bddedf6c2, + 0xbfecccccccccccc9, 0xbff4948bddedf6c8, 0x0, 0x0, - 0xbfeccccccccccce7, 0xbff4d9fa356dd359, + 0xbfecccccccccccbb, 0xbff4d9fa356dd35e, 0x0, 0x0, - 0xbfecccccccccccce, 0xbff520a73bd1db18, + 0xbfecccccccccccd1, 0xbff520a73bd1db05, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbff5689cfd5ce078, + 0xbfecccccccccccdc, 0xbff5689cfd5ce01a, 0x0, 0x0, - 0xbfecccccccccccf0, 0xbff5b1e5f18e9896, + 0xbfeccccccccccccd, 0xbff5b1e5f18e988a, 0x0, 0x0, - 0xbfecccccccccccd4, 0xbff5fc8d00d151fd, + 0xbfecccccccccccd5, 0xbff5fc8d00d151ef, 0x0, 0x0, - 0xbfecccccccccccde, 0xbff6489d8a84e9f6, + 0xbfeccccccccccccd, 0xbff6489d8a84e9f4, 0x0, 0x0, - 0xbfeccccccccccc97, 0xbff696236b6e19c9, + 0xbfecccccccccccc6, 0xbff696236b6e19a7, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbff6e52b0491c03c, + 0xbfeccccccccccccd, 0xbff6e52b0491c044, 0x0, 0x0, - 0xbfeccccccccccc83, 0xbff735c142848835, + 0xbfecccccccccccd9, 0xbff735c142848822, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbff787f3a5380122, + 0xbfeccccccccccccd, 0xbff787f3a5380133, 0x0, 0x0, - 0xbfeccccccccccca1, 0xbff7dbd0484f1a34, + 0xbfecccccccccccaf, 0xbff7dbd0484f1a3c, 0x0, 0x0, - 0xbfeccccccccccced, 0xbff83165ec04d01c, + 0xbfeccccccccccccf, 0xbff83165ec04d012, 0x0, 0x0, - 0xbfeccccccccccca4, 0xbff888c3feb0e7a9, + 0xbfeccccccccccccc, 0xbff888c3feb0e7a6, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbff8e1faa6f7a03a, + 0xbfecccccccccccce, 0xbff8e1faa6f7a03e, 0x0, 0x0, - 0xbfeccccccccccc9e, 0xbff93d1aceb28cbb, + 0xbfecccccccccccd3, 0xbff93d1aceb28cd6, 0x0, 0x0, - 0xbfecccccccccccc1, 0xbff99a362ea2163c, + 0xbfeccccccccccccb, 0xbff99a362ea2163d, 0x0, 0x0, - 0xbfecccccccccccba, 0xbff9f95f5af8adb6, + 0xbfecccccccccccc8, 0xbff9f95f5af8adb6, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbffa5aa9d0d2638c, + 0xbfeccccccccccccc, 0xbffa5aa9d0d2638c, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbffabe2a04ad6ee4, + 0xbfeccccccccccd1b, 0xbffabe2a04ad6ec6, 0x0, 0x0, - 0xbfecccccccccccf5, 0xbffb23f571fa46e3, + 0xbfeccccccccccccd, 0xbffb23f571fa46ca, 0x0, 0x0, - 0xbfeccccccccccce7, 0xbffb8c22abdc3b98, + 0xbfecccccccccccd5, 0xbffb8c22abdc3b97, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbffbf6c96f360ec1, + 0xbfeccccccccccccd, 0xbffbf6c96f360ec0, 0x0, 0x0, - 0xbfecccccccccccb7, 0xbffc6402b620ee2f, + 0xbfecccccccccccd9, 0xbffc6402b620ee2c, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbffcd3e8ccef68e1, + 0xbfeccccccccccccd, 0xbffcd3e8ccef68f3, 0x0, 0x0, - 0xbfecccccccccccc1, 0xbffd469768e19378, + 0xbfecccccccccccd3, 0xbffd469768e19379, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbffdbc2bc0b39d72, + 0xbfeccccccccccccd, 0xbffdbc2bc0b39d83, 0x0, 0x0, - 0xbfeccccccccccd0d, 0xbffe34c4a734a68e, + 0xbfecccccccccccd1, 0xbffe34c4a734a69a, 0x0, 0x0, - 0xbfeccccccccccced, 0xbffeb082a818c2ea, + 0xbfecccccccccccc6, 0xbffeb082a818c2e5, 0x0, 0x0, - 0xbfecccccccccccbb, 0xbfff2f88273ee5b6, + 0xbfecccccccccccb8, 0xbfff2f88273ee5a5, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfffb1f982a9ed55, + 0xbfecccccccccccc7, 0xbfffb1f982a9ed54, 0x0, 0x0, - 0xbfeccccccccccccd, 0xc0001bfe9bb9baeb, + 0xbfeccccccccccccc, 0xc0001bfe9bb9badc, 0x0, 0x0, - 0xbfecccccccccccd4, 0xc00060de0503b6d5, + 0xbfeccccccccccccd, 0xc00060de0503b6d8, 0x0, 0x0, - 0xbfecccccccccccdb, 0xc000a7b0990077b0, + 0xbfecccccccccccb9, 0xc000a7b0990077b4, 0x0, 0x0, - 0xbfecccccccccccd2, 0xc000f08d4505d724, + 0xbfecccccccccccfd, 0xc000f08d4505d724, 0x0, 0x0, - 0xbfecccccccccccdc, 0xc0013b8c621ccc5a, + 0xbfecccccccccccc9, 0xc0013b8c621ccc58, 0x0, 0x0, - 0xbfecccccccccccf8, 0xc00188c7d1a52f89, + 0xbfeccccccccccccd, 0xc00188c7d1a52f7b, 0x0, 0x0, - 0xbfecccccccccccd6, 0xc001d85b1cb95583, + 0xbfecccccccccccc9, 0xc001d85b1cb95590, 0x0, 0x0, - 0xbfecccccccccccdb, 0xc0022a6396a19d49, + 0xbfeccccccccccccd, 0xc0022a6396a19d4a, 0x0, 0x0, - 0xbfecccccccccccbb, 0xc0027f0082b2a6f9, + 0xbfecccccccccccd2, 0xc0027f0082b2a6f4, 0x0, 0x0, - 0xbfecccccccccccc5, 0xc002d6533dfd1908, + 0xbfeccccccccccccd, 0xc002d6533dfd190e, 0x0, 0x0, - 0xbfecccccccccccb9, 0xc003307f6d43ed66, + 0xbfecccccccccccd8, 0xc003307f6d43ed6e, 0x0, 0x0, - 0xbfecccccccccccbf, 0xc0038dab2fbe8596, + 0xbfeccccccccccccd, 0xc0038dab2fbe859a, 0x0, 0x0, - 0xbfeccccccccccc94, 0xc003edff573ea322, + 0xbfeccccccccccccf, 0xc003edff573ea322, 0x0, 0x0, - 0xbfecccccccccccdb, 0xc00451a7a6684ed2, + 0xbfecccccccccccd1, 0xc00451a7a6684ed4, 0x0, 0x0, - 0xbfecccccccccccd7, 0xc004b8d315c34578, + 0xbfecccccccccccc8, 0xc004b8d315c3457e, 0x0, 0x0, - 0xbfeccccccccccccb, 0xc00523b4208b5799, + 0xbfeccccccccccccb, 0xc00523b4208b5793, 0x0, 0x0, - 0xbfecccccccccccd1, 0xc00592811a482312, + 0xbfecccccccccccc6, 0xc00592811a482306, 0x0, 0x0, - 0xbfecccccccccccb4, 0xc00605748e5d9ba0, + 0xbfeccccccccccccf, 0xc00605748e5d9b9c, 0x0, 0x0, - 0xbfecccccccccccd2, 0xc0067ccdaaf73e82, + 0xbfecccccccccccd2, 0xc0067ccdaaf73e80, 0x0, 0x0, - 0xbfecccccccccccf9, 0xc006f8d0b8e8fbc3, + 0xbfeccccccccccccb, 0xc006f8d0b8e8fbc0, 0x0, 0x0, - 0xbfecccccccccccb3, 0xc00779c7a264adb6, + 0xbfecccccccccccda, 0xc00779c7a264adb8, 0x0, 0x0, - 0xbfecccccccccccda, 0xc00800028ab39caa, + 0xbfeccccccccccccd, 0xc00800028ab39ca8, 0x0, 0x0, - 0xbfecccccccccccd6, 0xc0088bd87983ceda, + 0xbfecccccccccccd9, 0xc0088bd87983cee2, 0x0, 0x0, - 0xbfecccccccccccb2, 0xc0091da81ccc304a, + 0xbfeccccccccccccd, 0xc0091da81ccc3043, 0x0, 0x0, - 0xbfecccccccccccaa, 0xc009b5d8a4d53aa3, + 0xbfecccccccccccc4, 0xc009b5d8a4d53aa3, 0x0, 0x0, - 0xbfecccccccccccc7, 0xc00a54dabe9b13d4, + 0xbfeccccccccccccd, 0xc00a54dabe9b13d6, 0x0, 0x0, - 0xbfecccccccccccd2, 0xc00afb29b188cdd2, + 0xbfecccccccccccd9, 0xc00afb29b188cdd0, 0x0, 0x0, - 0xbfecccccccccccce, 0xc00ba94ca68325a4, + 0xbfeccccccccccccd, 0xc00ba94ca68325a8, 0x0, 0x0, - 0xbfecccccccccccc6, 0xc00c5fd81f669d45, + 0xbfecccccccccccd3, 0xc00c5fd81f669d3e, 0x0, 0x0, - 0xbfecccccccccccd9, 0xc00d1f6fa78f01ae, + 0xbfecccccccccccd0, 0xc00d1f6fa78f01ae, 0x0, 0x0, - 0xbfecccccccccccc1, 0xc00de8c7c7c72a89, + 0xbfecccccccccccd4, 0xc00de8c7c7c72a87, 0x0, 0x0, - 0xbfecccccccccccbc, 0xc00ebca84a361c43, + 0xbfecccccccccccd2, 0xc00ebca84a361c44, 0x0, 0x0, - 0xbfecccccccccccdc, 0xc00f9beedda0b93a, + 0xbfecccccccccccdc, 0xc00f9beedda0b939, 0x0, 0x0, - 0xbfecccccccccccbb, 0xc01043c9156615fc, + 0xbfecccccccccccd6, 0xc01043c9156615fa, 0x0, 0x0, - 0xbfecccccccccccf0, 0xc010c052b9948923, + 0xbfecccccccccccd0, 0xc010c052b994891e, 0x0, 0x0, - 0xbfecccccccccccd9, 0xc011442e6abb8bba, + 0xbfecccccccccccde, 0xc011442e6abb8bbf, 0x0, 0x0, - 0xbfecccccccccccde, 0xc011d0092e102c82, + 0xbfecccccccccccfb, 0xc011d0092e102c77, 0x0, 0x0, - 0xbfecccccccccccdb, 0xc01264a601100b45, + 0xbfeccccccccccccd, 0xc01264a601100b42, 0x0, 0x0, - 0xbfecccccccccccce, 0xc01302e17385153f, + 0xbfecccccccccccc0, 0xc01302e17385153a, 0x0, 0x0, - 0xbfecccccccccccca, 0xc013abb5fd1082aa, + 0xbfeccccccccccccd, 0xc013abb5fd1082b0, 0x0, 0x0, - 0xbfecccccccccccc6, 0xc01460413c4c59d6, + 0xbfeccccccccccccc, 0xc01460413c4c59dc, 0x0, 0x0, - 0xbfecccccccccccc2, 0xc01521ca5af8e6c6, + 0xbfeccccccccccccd, 0xc01521ca5af8e6c2, 0x0, 0x0, - 0xbfecccccccccccbb, 0xc015f1c9e49ebfe0, + 0xbfecccccccccccd2, 0xc015f1c9e49ebfe0, 0x0, 0x0, - 0xbfecccccccccccc2, 0xc016d1f37556e798, + 0xbfeccccccccccccd, 0xc016d1f37556e792, 0x0, 0x0, - 0xbfecccccccccccaa, 0xc017c441c79f5c80, + 0xbfeccccccccccca8, 0xc017c441c79f5c7d, 0x0, 0x0, - 0xbfecccccccccccc2, 0xc018cb05d60ec637, + 0xbfecccccccccccc7, 0xc018cb05d60ec634, 0x0, 0x0, - 0xbfecccccccccccc7, 0xc019e8fa0604d6b1, + 0xbfecccccccccccca, 0xc019e8fa0604d6b0, 0x0, 0x0, - 0xbfecccccccccccba, 0xc01b215aaba9a5fc, + 0xbfecccccccccccce, 0xc01b215aaba9a5fb, 0x0, 0x0, - 0xbfecccccccccccaf, 0xc01c7805bacda35b, + 0xbfecccccccccccd9, 0xc01c7805bacda363, 0x0, 0x0, - 0xbfecccccccccccc5, 0xc01df1a4380e6b0a, + 0xbfeccccccccccccb, 0xc01df1a4380e6b0d, 0x0, 0x0, - 0xbfecccccccccccc0, 0xc01f93e11ac94640, + 0xbfecccccccccccc2, 0xc01f93e11ac94642, 0x0, 0x0, - 0xbfecccccccccccb9, 0xc020b2d98016ccb2, + 0xbfeccccccccccccc, 0xc020b2d98016ccb2, 0x0, 0x0, - 0xbfeccccccccccca8, 0xc021b7e0558818ae, + 0xbfecccccccccccee, 0xc021b7e0558818ac, 0x0, 0x0, - 0xbfecccccccccccb9, 0xc022de76357386ef, + 0xbfeccccccccccccd, 0xc022de76357386ee, 0x0, 0x0, - 0xbfecccccccccccc3, 0xc0242d8c98e61f81, + 0xbfecccccccccccca, 0xc0242d8c98e61f80, 0x0, 0x0, - 0xbfecccccccccccb3, 0xc025ae23a14101b3, + 0xbfeccccccccccccd, 0xc025ae23a14101b4, 0x0, 0x0, - 0xbfeccccccccccca6, 0xc0276c1cc1f4c08e, + 0xbfecccccccccccda, 0xc0276c1cc1f4c08f, 0x0, 0x0, - 0xbfecccccccccccb5, 0xc029777b537d1966, + 0xbfeccccccccccccd, 0xc029777b537d1965, 0x0, 0x0, - 0xbfeccccccccccca9, 0xc02be65c55c7ebbc, + 0xbfecccccccccccc9, 0xc02be65c55c7ebba, 0x0, 0x0, - 0xbfeccccccccccca2, 0xc02ed82c5c8c5f04, + 0xbfeccccccccccccd, 0xc02ed82c5c8c5f07, 0x0, 0x0, - 0xbfeccccccccccca3, 0xc0313d90d4fed3d0, + 0xbfecccccccccccd0, 0xc0313d90d4fed3ce, 0x0, 0x0, - 0xbfeccccccccccc9d, 0xc0338b0bfc39992e, + 0xbfecccccccccccc4, 0xc0338b0bfc39992e, 0x0, 0x0, - 0xbfeccccccccccc9c, 0xc0368dc2f54252f9, + 0xbfecccccccccccce, 0xc0368dc2f54252f9, 0x0, 0x0, - 0xbfeccccccccccc99, 0xc03aa89091ff4d36, + 0xbfecccccccccccc1, 0xc03aa89091ff4d36, 0x0, 0x0, - 0xbfeccccccccccc75, 0xc0404b174bb2101c, + 0xbfeccccccccccd0e, 0xc0404b174bb2101c, 0x0, 0x0, - 0xbfeccccccccccc75, 0xc044f35eb0e6f56c, + 0xbfecccccccccccc2, 0xc044f35eb0e6f56d, 0x0, 0x0, - 0xbfeccccccccccc11, 0xc04d554889eb3cf0, + 0xbfecccccccccccac, 0xc04d554889eb3cef, 0x0, 0x0, - 0xbfeccccccccccbcc, 0xc058720ce01d00fd, + 0xbfeccccccccccc90, 0xc058720ce01d00fe, 0x0, 0x0, - 0xbfecccccccccc93c, 0xc07255a7d0e959bb + 0xbfecccccccccccc9, 0xc07255a7d0e959bc }; static const uint64_t ref_cfft_step_1024[2048] = { 0x407ccccccccccccd, 0x0, - 0xbfeccccccccccd1a, 0x407255a7d0e959bb, + 0xbfeccccccccccccd, 0x407255a7d0e959bb, 0x0, 0x0, - 0xbfeccccccccccd2a, 0x4058720ce01d00fe, + 0xbfecccccccccccc0, 0x4058720ce01d00fe, 0x0, 0x0, - 0xbfeccccccccccce4, 0x404d554889eb3cef, + 0xbfeccccccccccccd, 0x404d554889eb3cef, 0x0, 0x0, - 0xbfeccccccccccd04, 0x4044f35eb0e6f56d, + 0xbfeccccccccccc8a, 0x4044f35eb0e6f56c, 0x0, 0x0, - 0xbfecccccccccccde, 0x40404b174bb2101c, + 0xbfeccccccccccccd, 0x40404b174bb2101c, 0x0, 0x0, - 0xbfecccccccccccfc, 0x403aa89091ff4d39, + 0xbfecccccccccccdc, 0x403aa89091ff4d38, 0x0, 0x0, - 0xbfeccccccccccce0, 0x40368dc2f54252f9, + 0xbfeccccccccccccd, 0x40368dc2f54252f8, 0x0, 0x0, - 0xbfecccccccccccee, 0x40338b0bfc399934, + 0xbfecccccccccccd0, 0x40338b0bfc39992f, 0x0, 0x0, - 0xbfecccccccccccd8, 0x40313d90d4fed3ce, + 0xbfecccccccccccca, 0x40313d90d4fed3cd, 0x0, 0x0, - 0xbfecccccccccccec, 0x402ed82c5c8c5f06, + 0xbfecccccccccccd6, 0x402ed82c5c8c5f02, 0x0, 0x0, - 0xbfecccccccccccda, 0x402be65c55c7ebbe, + 0xbfecccccccccccd0, 0x402be65c55c7ebbf, 0x0, 0x0, - 0xbfecccccccccccda, 0x4029777b537d1969, + 0xbfecccccccccccbe, 0x4029777b537d196a, 0x0, 0x0, - 0xbfeccccccccccccc, 0x40276c1cc1f4c08c, + 0xbfecccccccccccc8, 0x40276c1cc1f4c08f, 0x0, 0x0, - 0xbfeccccccccccce3, 0x4025ae23a14101b2, + 0xbfeccccccccccccc, 0x4025ae23a14101b4, 0x0, 0x0, - 0xbfeccccccccccce3, 0x40242d8c98e61f80, + 0xbfecccccccccccc8, 0x40242d8c98e61f80, 0x0, 0x0, - 0xbfeccccccccccd06, 0x4022de76357386ee, + 0xbfecccccccccccb2, 0x4022de76357386ed, 0x0, 0x0, - 0xbfecccccccccccd5, 0x4021b7e0558818a8, + 0xbfeccccccccccccd, 0x4021b7e0558818a8, 0x0, 0x0, - 0xbfecccccccccccd5, 0x4020b2d98016ccb4, + 0xbfecccccccccccea, 0x4020b2d98016ccb1, 0x0, 0x0, - 0xbfecccccccccccdb, 0x401f93e11ac94640, + 0xbfeccccccccccccd, 0x401f93e11ac94640, 0x0, 0x0, - 0xbfeccccccccccce6, 0x401df1a4380e6b0d, + 0xbfecccccccccccc6, 0x401df1a4380e6b0e, 0x0, 0x0, - 0xbfecccccccccccc7, 0x401c7805bacda35e, + 0xbfeccccccccccccd, 0x401c7805bacda35a, 0x0, 0x0, - 0xbfecccccccccccec, 0x401b215aaba9a5fe, + 0xbfecccccccccccdb, 0x401b215aaba9a5fe, 0x0, 0x0, - 0xbfeccccccccccce6, 0x4019e8fa0604d6ae, + 0xbfeccccccccccccd, 0x4019e8fa0604d6ae, 0x0, 0x0, - 0xbfecccccccccccdc, 0x4018cb05d60ec63a, + 0xbfecccccccccccfe, 0x4018cb05d60ec630, 0x0, 0x0, - 0xbfecccccccccccd3, 0x4017c441c79f5c7e, + 0xbfecccccccccccc5, 0x4017c441c79f5c7e, 0x0, 0x0, - 0xbfecccccccccccd3, 0x4016d1f37556e797, + 0xbfecccccccccccc4, 0x4016d1f37556e796, 0x0, 0x0, - 0xbfecccccccccccd6, 0x4015f1c9e49ebfde, + 0xbfecccccccccccc4, 0x4015f1c9e49ebfe1, 0x0, 0x0, - 0xbfeccccccccccce3, 0x401521ca5af8e6ca, + 0xbfecccccccccccc1, 0x401521ca5af8e6c5, 0x0, 0x0, - 0xbfeccccccccccce0, 0x401460413c4c59d8, + 0xbfecccccccccccc1, 0x401460413c4c59d4, 0x0, 0x0, - 0xbfecccccccccccff, 0x4013abb5fd1082aa, + 0xbfecccccccccccc0, 0x4013abb5fd1082aa, 0x0, 0x0, - 0xbfeccccccccccce4, 0x401302e173851544, + 0xbfecccccccccccb5, 0x401302e173851539, 0x0, 0x0, - 0xbfeccccccccccd2c, 0x401264a601100b4e, + 0xbfeccccccccccc68, 0x401264a601100b46, 0x0, 0x0, - 0xbfecccccccccccc8, 0x4011d0092e102c70, + 0xbfeccccccccccccd, 0x4011d0092e102c74, 0x0, 0x0, - 0xbfecccccccccccce, 0x4011442e6abb8bbc, + 0xbfecccccccccccce, 0x4011442e6abb8bbe, 0x0, 0x0, - 0xbfeccccccccccccc, 0x4010c052b994891d, + 0xbfeccccccccccccd, 0x4010c052b994891d, 0x0, 0x0, - 0xbfecccccccccccc6, 0x401043c915661600, + 0xbfeccccccccccccf, 0x401043c9156615fc, 0x0, 0x0, - 0xbfecccccccccccdc, 0x400f9beedda0b940, + 0xbfeccccccccccccd, 0x400f9beedda0b940, 0x0, 0x0, - 0xbfecccccccccccb9, 0x400ebca84a361c40, + 0xbfecccccccccccce, 0x400ebca84a361c3f, 0x0, 0x0, - 0xbfeccccccccccce0, 0x400de8c7c7c72a8a, + 0xbfeccccccccccccd, 0x400de8c7c7c72a8c, 0x0, 0x0, - 0xbfecccccccccccdf, 0x400d1f6fa78f01aa, + 0xbfecccccccccccbb, 0x400d1f6fa78f01ae, 0x0, 0x0, - 0xbfecccccccccccbe, 0x400c5fd81f669d30, + 0xbfecccccccccccd3, 0x400c5fd81f669d3a, 0x0, 0x0, - 0xbfecccccccccccd4, 0x400ba94ca683259a, + 0xbfeccccccccccccc, 0x400ba94ca68325a6, 0x0, 0x0, - 0xbfeccccccccccccc, 0x400afb29b188cdce, + 0xbfeccccccccccccd, 0x400afb29b188cdd3, 0x0, 0x0, - 0xbfecccccccccccc4, 0x400a54dabe9b13d6, + 0xbfecccccccccccce, 0x400a54dabe9b13c6, 0x0, 0x0, - 0xbfecccccccccccc8, 0x4009b5d8a4d53a9f, + 0xbfecccccccccccd1, 0x4009b5d8a4d53aa0, 0x0, 0x0, - 0xbfecccccccccccd4, 0x40091da81ccc303e, + 0xbfecccccccccccd8, 0x40091da81ccc3044, 0x0, 0x0, - 0xbfecccccccccccb3, 0x40088bd87983cee2, + 0xbfecccccccccccd2, 0x40088bd87983cedf, 0x0, 0x0, - 0xbfecccccccccccd4, 0x400800028ab39c9a, + 0xbfeccccccccccc7d, 0x400800028ab39c8f, 0x0, 0x0, - 0xbfeccccccccccca5, 0x400779c7a264adaa, + 0xbfeccccccccccccd, 0x400779c7a264ad9a, 0x0, 0x0, - 0xbfecccccccccccd3, 0x4006f8d0b8e8fbc2, + 0xbfecccccccccccb8, 0x4006f8d0b8e8fbbc, 0x0, 0x0, - 0xbfecccccccccccdc, 0x40067ccdaaf73e88, + 0xbfeccccccccccccd, 0x40067ccdaaf73e86, 0x0, 0x0, - 0xbfecccccccccccda, 0x400605748e5d9b9a, + 0xbfecccccccccccd6, 0x400605748e5d9ba6, 0x0, 0x0, - 0xbfecccccccccccf5, 0x400592811a482304, + 0xbfeccccccccccccd, 0x400592811a482308, 0x0, 0x0, - 0xbfecccccccccccc5, 0x400523b4208b5794, + 0xbfecccccccccccc5, 0x400523b4208b5795, 0x0, 0x0, - 0xbfeccccccccccca1, 0x4004b8d315c3457d, + 0xbfeccccccccccccd, 0x4004b8d315c34576, 0x0, 0x0, - 0xbfeccccccccccc87, 0x400451a7a6684edf, + 0xbfecccccccccccc9, 0x400451a7a6684ee0, 0x0, 0x0, - 0xbfecccccccccccd2, 0x4003edff573ea32c, + 0xbfeccccccccccccc, 0x4003edff573ea325, 0x0, 0x0, - 0xbfecccccccccccbd, 0x40038dab2fbe859a, + 0xbfecccccccccccc8, 0x40038dab2fbe859c, 0x0, 0x0, - 0xbfecccccccccccca, 0x4003307f6d43ed6a, + 0xbfeccccccccccccf, 0x4003307f6d43ed6a, 0x0, 0x0, - 0xbfecccccccccccce, 0x4002d6533dfd190c, + 0xbfecccccccccccc8, 0x4002d6533dfd190f, 0x0, 0x0, - 0xbfecccccccccccd7, 0x40027f0082b2a6f5, + 0xbfecccccccccccd5, 0x40027f0082b2a6fe, 0x0, 0x0, - 0xbfecccccccccccd8, 0x40022a6396a19d49, + 0xbfeccccccccccce9, 0x40022a6396a19d50, 0x0, 0x0, - 0xbfecccccccccccd9, 0x4001d85b1cb9558d, + 0xbfecccccccccccad, 0x4001d85b1cb95588, 0x0, 0x0, - 0xbfecccccccccccdc, 0x400188c7d1a52f76, + 0xbfeccccccccccce9, 0x400188c7d1a52f80, 0x0, 0x0, - 0xbfeccccccccccca0, 0x40013b8c621ccc4c, + 0xbfeccccccccccccd, 0x40013b8c621ccc55, 0x0, 0x0, - 0xbfecccccccccccb8, 0x4000f08d4505d721, + 0xbfecccccccccccc9, 0x4000f08d4505d71a, 0x0, 0x0, - 0xbfecccccccccccd7, 0x4000a7b0990077aa, + 0xbfeccccccccccccd, 0x4000a7b0990077a6, 0x0, 0x0, - 0xbfecccccccccccd5, 0x400060de0503b6d8, + 0xbfecccccccccccd2, 0x400060de0503b6da, 0x0, 0x0, - 0xbfeccccccccccce1, 0x40001bfe9bb9baea, + 0xbfeccccccccccccd, 0x40001bfe9bb9baed, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fffb1f982a9ed58, + 0xbfecccccccccccd0, 0x3fffb1f982a9ed52, 0x0, 0x0, - 0xbfecccccccccccf6, 0x3fff2f88273ee5b4, + 0xbfeccccccccccccd, 0x3fff2f88273ee5b0, 0x0, 0x0, - 0xbfeccccccccccd22, 0x3ffeb082a818c2de, + 0xbfecccccccccccab, 0x3ffeb082a818c2de, 0x0, 0x0, - 0xbfecccccccccccb5, 0x3ffe34c4a734a678, + 0xbfeccccccccccccd, 0x3ffe34c4a734a67c, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3ffdbc2bc0b39d6e, + 0xbfecccccccccccd3, 0x3ffdbc2bc0b39d75, 0x0, 0x0, - 0xbfecccccccccccc1, 0x3ffd469768e1937c, + 0xbfeccccccccccccf, 0x3ffd469768e1937b, 0x0, 0x0, - 0xbfecccccccccccd9, 0x3ffcd3e8ccef68e7, + 0xbfecccccccccccc9, 0x3ffcd3e8ccef68f4, 0x0, 0x0, - 0xbfecccccccccccda, 0x3ffc6402b620ee34, + 0xbfeccccccccccccd, 0x3ffc6402b620ee23, 0x0, 0x0, - 0xbfeccccccccccced, 0x3ffbf6c96f360ec4, + 0xbfecccccccccccd8, 0x3ffbf6c96f360ebd, 0x0, 0x0, - 0xbfecccccccccccda, 0x3ffb8c22abdc3baa, + 0xbfeccccccccccccc, 0x3ffb8c22abdc3b9d, 0x0, 0x0, - 0xbfecccccccccccde, 0x3ffb23f571fa46e1, + 0xbfeccccccccccca0, 0x3ffb23f571fa4714, 0x0, 0x0, - 0xbfecccccccccccae, 0x3ffabe2a04ad6ede, + 0xbfeccccccccccccd, 0x3ffabe2a04ad6ef6, 0x0, 0x0, - 0xbfeccccccccccca4, 0x3ffa5aa9d0d26390, + 0xbfecccccccccccc4, 0x3ffa5aa9d0d26397, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3ff9f95f5af8adac, + 0xbfeccccccccccccd, 0x3ff9f95f5af8adb0, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3ff99a362ea21642, + 0xbfeccccccccccccd, 0x3ff99a362ea21639, 0x0, 0x0, - 0xbfeccccccccccceb, 0x3ff93d1aceb28cda, + 0xbfeccccccccccccd, 0x3ff93d1aceb28cd9, 0x0, 0x0, - 0xbfecccccccccccc0, 0x3ff8e1faa6f7a04e, + 0xbfecccccccccccc7, 0x3ff8e1faa6f7a03c, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3ff888c3feb0e7a7, + 0xbfeccccccccccccd, 0x3ff888c3feb0e7a5, 0x0, 0x0, - 0xbfecccccccccccdd, 0x3ff83165ec04d04a, + 0xbfeccccccccccd09, 0x3ff83165ec04d016, 0x0, 0x0, - 0xbfecccccccccccbd, 0x3ff7dbd0484f1a3d, + 0xbfeccccccccccccb, 0x3ff7dbd0484f1a4a, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3ff787f3a5380148, + 0xbfecccccccccccd0, 0x3ff787f3a5380134, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3ff735c142848820, + 0xbfecccccccccccc9, 0x3ff735c142848818, 0x0, 0x0, - 0xbfeccccccccccd06, 0x3ff6e52b0491c065, + 0xbfecccccccccccd0, 0x3ff6e52b0491c03b, 0x0, 0x0, - 0xbfecccccccccccba, 0x3ff696236b6e19ba, + 0xbfeccccccccccccd, 0x3ff696236b6e19bd, 0x0, 0x0, - 0xbfecccccccccccf4, 0x3ff6489d8a84ea12, + 0xbfecccccccccccce, 0x3ff6489d8a84e9fe, 0x0, 0x0, - 0xbfeccccccccccd09, 0x3ff5fc8d00d151ea, + 0xbfeccccccccccccc, 0x3ff5fc8d00d151f5, 0x0, 0x0, - 0xbfeccccccccccd61, 0x3ff5b1e5f18e98a7, + 0xbfecccccccccccce, 0x3ff5b1e5f18e9896, 0x0, 0x0, - 0xbfecccccccccccb8, 0x3ff5689cfd5ce02c, + 0xbfeccccccccccccd, 0x3ff5689cfd5ce02c, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3ff520a73bd1db04, + 0xbfecccccccccccd0, 0x3ff520a73bd1db0a, 0x0, 0x0, - 0xbfecccccccccccbe, 0x3ff4d9fa356dd348, + 0xbfeccccccccccccd, 0x3ff4d9fa356dd352, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3ff4948bddedf6ae, + 0xbfecccccccccccc2, 0x3ff4948bddedf6b4, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3ff450528ef56786, + 0xbfeccccccccccccd, 0x3ff450528ef5677d, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3ff40d4503071619, + 0xbfecccccccccccd3, 0x3ff40d4503071616, 0x0, 0x0, - 0xbfeccccccccccce5, 0x3ff3cb5a50cadf50, + 0xbfeccccccccccccd, 0x3ff3cb5a50cadf5a, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3ff38a89e698d7ff, + 0xbfecccccccccccd2, 0x3ff38a89e698d803, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3ff34acb86461212, + 0xbfeccccccccccccb, 0x3ff34acb86461202, 0x0, 0x0, - 0xbfeccccccccccce4, 0x3ff30c17412e83a4, + 0xbfecccccccccccc6, 0x3ff30c17412e8396, 0x0, 0x0, - 0xbfecccccccccccbb, 0x3ff2ce6574780a50, + 0xbfecccccccccccce, 0x3ff2ce6574780a52, 0x0, 0x0, - 0xbfecccccccccccd9, 0x3ff291aec58ad3fd, + 0xbfecccccccccccc2, 0x3ff291aec58ad400, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3ff255ec1ebbb9b6, + 0xbfeccccccccccccc, 0x3ff255ec1ebbb9b0, 0x0, 0x0, - 0xbfecccccccccccf9, 0x3ff21b16ac255c82, + 0xbfecccccccccccd0, 0x3ff21b16ac255c72, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3ff1e127d8ad0c2c, + 0xbfeccccccccccccd, 0x3ff1e127d8ad0c46, 0x0, 0x0, - 0xbfeccccccccccd1d, 0x3ff1a8194b30baa8, + 0xbfecccccccccccb7, 0x3ff1a8194b30ba9e, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3ff16fe4e3db6aef, + 0xbfeccccccccccccd, 0x3ff16fe4e3db6ade, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3ff13884b99dbe96, + 0xbfecccccccccccc6, 0x3ff13884b99dbe9a, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3ff101f317c86b5b, + 0xbfeccccccccccccd, 0x3ff101f317c86b5b, 0x0, 0x0, - 0xbfecccccccccccea, 0x3ff0cc2a7bc68997, + 0xbfecccccccccccc9, 0x3ff0cc2a7bc689aa, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3ff0972592f5d448, + 0xbfeccccccccccccd, 0x3ff0972592f5d443, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3ff062df389b0ee2, + 0xbfecccccccccccc8, 0x3ff062df389b0ed8, 0x0, 0x0, - 0xbfeccccccccccce4, 0x3ff02f5273f0e9b9, + 0xbfeccccccccccccd, 0x3ff02f5273f0e9b6, 0x0, 0x0, - 0xbfeccccccccccd2b, 0x3feff8f4ec9fabd0, + 0xbfecccccccccccf8, 0x3feff8f4ec9fabd3, 0x0, 0x0, - 0xbfecccccccccccbb, 0x3fef94a532daace6, + 0xbfeccccccccccccb, 0x3fef94a532daacea, 0x0, 0x0, - 0xbfecccccccccccbc, 0x3fef31acbb62e84c, + 0xbfecccccccccccc7, 0x3fef31acbb62e853, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3feed002d14220c0, + 0xbfeccccccccccccc, 0x3feed002d14220e6, 0x0, 0x0, - 0xbfeccccccccccce1, 0x3fee6f9f06b7ceb4, + 0xbfeccccccccccce5, 0x3fee6f9f06b7cee1, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fee1079325a4d6c, + 0xbfecccccccccccc7, 0x3fee1079325a4d85, 0x0, 0x0, - 0xbfecccccccccccc1, 0x3fedb2896c5b1fc0, + 0xbfecccccccccccb8, 0x3fedb2896c5b1f95, 0x0, 0x0, - 0xbfecccccccccccec, 0x3fed55c80bec5600, + 0xbfecccccccccccc6, 0x3fed55c80bec5647, 0x0, 0x0, - 0xbfeccccccccccc9c, 0x3fecfa2da4c54be0, + 0xbfecccccccccccc9, 0x3fecfa2da4c54c71, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fec9fb304c4ff3b, + 0xbfeccccccccccccd, 0x3fec9fb304c4ff33, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3fec465131b06a1c, + 0xbfecccccccccccd0, 0x3fec465131b069d4, 0x0, 0x0, - 0xbfecccccccccccca, 0x3febee01670b65be, + 0xbfeccccccccccccd, 0x3febee01670b65b7, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3feb96bd140aa0b1, + 0xbfeccccccccccccb, 0x3feb96bd140aa07b, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3feb407dd99d5c30, + 0xbfeccccccccccccd, 0x3feb407dd99d5c12, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3feaeb3d888db0d1, + 0xbfecccccccccccc6, 0x3feaeb3d888db0d2, 0x0, 0x0, - 0xbfeccccccccccce6, 0x3fea96f61fb62c2c, + 0xbfeccccccccccccd, 0x3fea96f61fb62c50, 0x0, 0x0, - 0xbfeccccccccccd1a, 0x3fea43a1ca4baebc, + 0xbfecccccccccccb0, 0x3fea43a1ca4baece, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fe9f13ade3a7e04, + 0xbfecccccccccccd0, 0x3fe9f13ade3a7e3a, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3fe99fbbda959198, + 0xbfecccccccccccd2, 0x3fe99fbbda9591d0, 0x0, 0x0, - 0xbfecccccccccccc0, 0x3fe94f1f66173102, + 0xbfecccccccccccce, 0x3fe94f1f661730e6, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3fe8ff604db1fdba, + 0xbfecccccccccccca, 0x3fe8ff604db1fd90, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3fe8b07983319e76, + 0xbfecccccccccccce, 0x3fe8b07983319e7e, 0x0, 0x0, - 0xbfecccccccccccae, 0x3fe862661bea42b7, + 0xbfecccccccccccca, 0x3fe862661bea42c4, 0x0, 0x0, - 0xbfecccccccccccb4, 0x3fe815214f7640f1, + 0xbfeccccccccccccf, 0x3fe815214f764106, 0x0, 0x0, - 0xbfeccccccccccd3e, 0x3fe7c8a676812416, + 0xbfecccccccccccbb, 0x3fe7c8a676812456, 0x0, 0x0, - 0xbfecccccccccccbe, 0x3fe77cf1099f7de7, + 0xbfeccccccccccccd, 0x3fe77cf1099f7e09, 0x0, 0x0, - 0xbfeccccccccccd08, 0x3fe731fca032e149, + 0xbfecccccccccccc7, 0x3fe731fca032e147, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3fe6e7c4ef597239, + 0xbfeccccccccccccd, 0x3fe6e7c4ef597242, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3fe69e45c8e87921, + 0xbfecccccccccccc1, 0x3fe69e45c8e8791d, 0x0, 0x0, - 0xbfeccccccccccce2, 0x3fe6557b1a7179e7, + 0xbfeccccccccccccd, 0x3fe6557b1a7179e5, 0x0, 0x0, - 0xbfeccccccccccce5, 0x3fe60d60ec514c83, + 0xbfecccccccccccbe, 0x3fe60d60ec514c82, 0x0, 0x0, - 0xbfecccccccccccab, 0x3fe5c5f360c8c2c1, + 0xbfeccccccccccccd, 0x3fe5c5f360c8c2f0, 0x0, 0x0, - 0xbfecccccccccccd3, 0x3fe57f2eb31e65b3, + 0xbfecccccccccccd0, 0x3fe57f2eb31e65c5, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fe5390f36c8e5c9, + 0xbfeccccccccccccc, 0x3fe5390f36c8e5ca, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fe4f39156a1d043, + 0xbfecccccccccccc0, 0x3fe4f39156a1d06c, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fe4aeb19420322e, + 0xbfeccccccccccccb, 0x3fe4aeb19420322a, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3fe46a6c869ac442, + 0xbfecccccccccccc8, 0x3fe46a6c869ac469, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fe426beda9151b1, + 0xbfeccccccccccccd, 0x3fe426beda9151b3, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3fe3e3a550fd0002, + 0xbfecccccccccccc3, 0x3fe3e3a550fd001d, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fe3a11cbea72f98, + 0xbfecccccccccccd1, 0x3fe3a11cbea72f96, 0x0, 0x0, - 0xbfeccccccccccc7c, 0x3fe35f220b86a5b0, + 0xbfecccccccccccd0, 0x3fe35f220b86a5df, 0x0, 0x0, - 0xbfecccccccccccb0, 0x3fe31db23222be71, + 0xbfeccccccccccccd, 0x3fe31db23222be67, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fe2dcca3efc5e12, + 0xbfecccccccccccc9, 0x3fe2dcca3efc5dee, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fe29c674ffc6588, + 0xbfeccccccccccccd, 0x3fe29c674ffc6597, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3fe25c8693e76dce, + 0xbfecccccccccccd2, 0x3fe25c8693e76de4, 0x0, 0x0, - 0xbfeccccccccccce5, 0x3fe21d2549d68cd0, + 0xbfeccccccccccccd, 0x3fe21d2549d68ce3, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3fe1de40c0b4f042, + 0xbfecccccccccccd1, 0x3fe1de40c0b4f044, 0x0, 0x0, - 0xbfecccccccccccb7, 0x3fe19fd656c218c0, + 0xbfeccccccccccccd, 0x3fe19fd656c218b2, 0x0, 0x0, - 0xbfecccccccccccbd, 0x3fe161e379188340, + 0xbfecccccccccccc3, 0x3fe161e379188394, 0x0, 0x0, - 0xbfecccccccccccc5, 0x3fe12465a3389230, + 0xbfeccccccccccccb, 0x3fe12465a3389231, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fe0e75a5e9785e2, + 0xbfeccccccccccccc, 0x3fe0e75a5e9785f8, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3fe0aabf42325ffb, + 0xbfecccccccccccce, 0x3fe0aabf42325feb, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fe06e91f2247fbe, + 0xbfecccccccccccbd, 0x3fe06e91f2247f87, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fe032d01f41d6a5, + 0xbfeccccccccccccd, 0x3fe032d01f41d6ae, 0x0, 0x0, - 0xbfecccccccccccea, 0x3fdfeeef0d691d30, + 0xbfecccccccccccd4, 0x3fdfeeef0d691d30, 0x0, 0x0, - 0xbfecccccccccccb8, 0x3fdf790be33bf5c0, + 0xbfeccccccccccccc, 0x3fdf790be33bf5a6, 0x0, 0x0, - 0xbfecccccccccccaa, 0x3fdf03f269756b78, + 0xbfeccccccccccd19, 0x3fdf03f269756b4a, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fde8f9e60138e04, + 0xbfeccccccccccccd, 0x3fde8f9e60138e0a, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3fde1c0b9ced6e40, + 0xbfecccccccccccdd, 0x3fde1c0b9ced6ed4, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fdda9360b0cdd8c, + 0xbfeccccccccccccd, 0x3fdda9360b0cddae, 0x0, 0x0, - 0xbfecccccccccccdf, 0x3fdd3719aa0d8b74, + 0xbfecccccccccccc9, 0x3fdd3719aa0d8bfe, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3fdcc5b28d8158bc, + 0xbfeccccccccccccd, 0x3fdcc5b28d815914, 0x0, 0x0, - 0xbfeccccccccccc9d, 0x3fdc54fcdc599632, + 0xbfeccccccccccccb, 0x3fdc54fcdc599674, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fdbe4f4d05510e8, + 0xbfeccccccccccccd, 0x3fdbe4f4d0551114, 0x0, 0x0, - 0xbfecccccccccccdf, 0x3fdb7596b572b33a, + 0xbfecccccccccccdd, 0x3fdb7596b572b34e, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3fdb06dee9688b56, + 0xbfecccccccccccd6, 0x3fdb06dee9688b44, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3fda98c9db1f1448, + 0xbfecccccccccccc8, 0x3fda98c9db1f14ac, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fda2b540a308e54, + 0xbfeccccccccccccf, 0x3fda2b540a308e1e, 0x0, 0x0, - 0xbfeccccccccccc9f, 0x3fd9be7a066c4000, + 0xbfeccccccccccce4, 0x3fd9be7a066c3fe0, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3fd952386f5d8548, + 0xbfeccccccccccccd, 0x3fd952386f5d8520, 0x0, 0x0, - 0xbfecccccccccccaf, 0x3fd8e68bf3d674b2, + 0xbfecccccccccccd9, 0x3fd8e68bf3d674dc, 0x0, 0x0, - 0xbfeccccccccccd02, 0x3fd87b71517e08e4, + 0xbfecccccccccccbd, 0x3fd87b71517e08a0, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3fd810e55461a0a8, + 0xbfeccccccccccd49, 0x3fd810e554619fc0, 0x0, 0x0, - 0xbfeccccccccccca4, 0x3fd7a6e4d689ba3a, + 0xbfeccccccccccccd, 0x3fd7a6e4d689b9ea, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fd73d6cbf91d1da, + 0xbfecccccccccccc7, 0x3fd73d6cbf91d1f2, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3fd6d47a04432eea, + 0xbfeccccccccccccd, 0x3fd6d47a04432ee2, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3fd66c09a632a1a8, + 0xbfecccccccccccc2, 0x3fd66c09a632a16a, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fd60418b360fd1c, + 0xbfeccccccccccccd, 0x3fd60418b360fd24, 0x0, 0x0, - 0xbfeccccccccccc95, 0x3fd59ca445de4094, + 0xbfecccccccccccd2, 0x3fd59ca445de40c0, 0x0, 0x0, - 0xbfeccccccccccced, 0x3fd535a9836f50c4, + 0xbfeccccccccccccd, 0x3fd535a9836f50b0, 0x0, 0x0, - 0xbfeccccccccccd16, 0x3fd4cf259d362a50, + 0xbfecccccccccccab, 0x3fd4cf259d362b1c, 0x0, 0x0, - 0xbfecccccccccccb7, 0x3fd46915cf5c791c, + 0xbfecccccccccccc1, 0x3fd46915cf5c7904, 0x0, 0x0, - 0xbfecccccccccccab, 0x3fd4037760c07574, + 0xbfecccccccccccd0, 0x3fd4037760c075a4, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3fd39e47a2a3fc78, + 0xbfecccccccccccc9, 0x3fd39e47a2a3fcb0, 0x0, 0x0, - 0xbfecccccccccccd3, 0x3fd33983f05dc714, + 0xbfecccccccccccc0, 0x3fd33983f05dc6b8, 0x0, 0x0, - 0xbfecccccccccccb2, 0x3fd2d529af0ca950, + 0xbfecccccccccccd1, 0x3fd2d529af0ca960, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fd271364d4cd40c, + 0xbfecccccccccccd4, 0x3fd271364d4cd404, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fd20da742eef328, + 0xbfecccccccccccd3, 0x3fd20da742eef348, 0x0, 0x0, - 0xbfeccccccccccce1, 0x3fd1aa7a10b12798, + 0xbfeccccccccccc7a, 0x3fd1aa7a10b127f0, 0x0, 0x0, - 0xbfecccccccccccda, 0x3fd147ac3ff9c0a0, + 0xbfeccccccccccccd, 0x3fd147ac3ff9c088, 0x0, 0x0, - 0xbfecccccccccccea, 0x3fd0e53b6293a810, + 0xbfeccccccccccce5, 0x3fd0e53b6293a7ec, 0x0, 0x0, - 0xbfecccccccccccbe, 0x3fd08325126c714c, + 0xbfeccccccccccccd, 0x3fd08325126c7158, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3fd02166f153fc98, + 0xbfecccccccccccd0, 0x3fd02166f153fcc0, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fcf7ffd517b35a0, + 0xbfeccccccccccccd, 0x3fcf7ffd517b3510, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fcebdd3d3055058, + 0xbfecccccccccccd3, 0x3fcebdd3d30550e8, 0x0, 0x0, - 0xbfecccccccccccbc, 0x3fcdfc4cd74d1ca8, + 0xbfeccccccccccccd, 0x3fcdfc4cd74d1d00, 0x0, 0x0, - 0xbfeccccccccccc92, 0x3fcd3b63dc383c90, + 0xbfecccccccccccfd, 0x3fcd3b63dc383e88, 0x0, 0x0, - 0xbfecccccccccccdf, 0x3fcc7b146d1878f8, + 0xbfecccccccccccd0, 0x3fcc7b146d1878c8, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3fcbbb5a223b7ed0, + 0xbfecccccccccccda, 0x3fcbbb5a223b7ee0, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3fcafc30a07d2890, + 0xbfeccccccccccccc, 0x3fcafc30a07d28a0, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fca3d9398dbf860, + 0xbfecccccccccccd0, 0x3fca3d9398dbf810, 0x0, 0x0, - 0xbfecccccccccccd9, 0x3fc97f7ec80fd870, + 0xbfecccccccccccce, 0x3fc97f7ec80fd8f0, 0x0, 0x0, - 0xbfeccccccccccce8, 0x3fc8c1edf622fb20, + 0xbfecccccccccccba, 0x3fc8c1edf622fb70, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fc804dcf60cc9d0, + 0xbfecccccccccccc8, 0x3fc804dcf60cc960, 0x0, 0x0, - 0xbfecccccccccccf8, 0x3fc74847a54ec050, + 0xbfecccccccccccdf, 0x3fc74847a54ec260, 0x0, 0x0, - 0xbfecccccccccccc5, 0x3fc68c29eb9345a0, + 0xbfeccccccccccccd, 0x3fc68c29eb934510, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fc5d07fba4e2c80, + 0xbfecccccccccccd6, 0x3fc5d07fba4e2b70, 0x0, 0x0, - 0xbfecccccccccccde, 0x3fc515450c5f1500, + 0xbfeccccccccccccd, 0x3fc515450c5f1530, 0x0, 0x0, - 0xbfecccccccccccc0, 0x3fc45a75e5b567f0, + 0xbfecccccccccccc0, 0x3fc45a75e5b56810, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fc3a00e52f5ea40, + 0xbfeccccccccccccd, 0x3fc3a00e52f5ea10, 0x0, 0x0, - 0xbfecccccccccccbb, 0x3fc2e60a6921d300, + 0xbfecccccccccccd0, 0x3fc2e60a6921d2f0, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fc22c66453f6350, + 0xbfeccccccccccccd, 0x3fc22c66453f6350, 0x0, 0x0, - 0xbfecccccccccccb8, 0x3fc1731e0c03d1f0, + 0xbfeccccccccccca2, 0x3fc1731e0c03d3a0, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fc0ba2de97e9c60, + 0xbfeccccccccccccd, 0x3fc0ba2de97e9c10, 0x0, 0x0, - 0xbfecccccccccccc5, 0x3fc0019210c60440, + 0xbfecccccccccccd6, 0x3fc0019210c60440, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fbe928d7749bb20, + 0xbfecccccccccccc8, 0x3fbe928d7749bb40, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3fbd22905492d7c0, + 0xbfecccccccccccd9, 0x3fbd22905492d840, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3fbbb32545eac100, + 0xbfeccccccccccccb, 0x3fbbb32545eac140, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fba4444e35dbc00, + 0xbfecccccccccccc8, 0x3fba4444e35dbb60, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fb8d5e7cfe4e900, + 0xbfeccccccccccccc, 0x3fb8d5e7cfe4ea40, 0x0, 0x0, - 0xbfeccccccccccc62, 0x3fb76806b8cc1ac0, + 0xbfecccccccccccc0, 0x3fb76806b8cc1c00, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fb5fa9a55195f80, + 0xbfeccccccccccccd, 0x3fb5fa9a55195e00, 0x0, 0x0, - 0xbfecccccccccccb7, 0x3fb48d9b64f63b80, + 0xbfecccccccccccca, 0x3fb48d9b64f63a40, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3fb32102b11a5380, + 0xbfeccccccccccccd, 0x3fb32102b11a5300, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fb1b4c90a37a000, + 0xbfecccccccccccda, 0x3fb1b4c90a379f80, 0x0, 0x0, - 0xbfeccccccccccced, 0x3fb048e74867e100, + 0xbfeccccccccccccd, 0x3fb048e74867e180, 0x0, 0x0, - 0xbfecccccccccccd9, 0x3fadbaac9536a280, + 0xbfecccccccccccbd, 0x3fadbaac95369f80, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3faae41dec110000, + 0xbfeccccccccccccd, 0x3faae41dec110100, 0x0, 0x0, - 0xbfeccccccccccc93, 0x3fa80e146b3a6d00, + 0xbfecccccccccccd0, 0x3fa80e146b3a6b00, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fa53881f2e08200, + 0xbfecccccccccccd0, 0x3fa53881f2e08200, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fa263586c684a00, + 0xbfecccccccccccce, 0x3fa263586c684a00, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3f9f1d1392aa2e00, + 0xbfecccccccccccd7, 0x3f9f1d1392aa2c00, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3f99741004617000, + 0xbfecccccccccccca, 0x3f99741004617800, 0x0, 0x0, - 0xbfecccccccccccbd, 0x3f93cb8a2ae9bc00, + 0xbfecccccccccccd8, 0x3f93cb8a2ae9c000, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3f8c46cc19d58000, + 0xbfecccccccccccda, 0x3f8c46cc19d59000, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3f80f70f712de000, + 0xbfecccccccccccea, 0x3f80f70f712df000, 0x0, 0x0, - 0xbfecccccccccccfc, 0x3f669e9a0c160000, + 0xbfecccccccccccc9, 0x3f669e9a0c160000, 0x0, 0x0, - 0xbfecccccccccccce, 0xbf669e9a0c160000, + 0xbfeccccccccccccd, 0xbf669e9a0c160000, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbf80f70f712dd000, + 0xbfecccccccccccd8, 0xbf80f70f712dd000, 0x0, 0x0, - 0xbfecccccccccccd4, 0xbf8c46cc19d59000, + 0xbfeccccccccccccd, 0xbf8c46cc19d59000, 0x0, 0x0, - 0xbfecccccccccccca, 0xbf93cb8a2ae9b800, + 0xbfecccccccccccd0, 0xbf93cb8a2ae9c000, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbf99741004617000, + 0xbfeccccccccccccd, 0xbf99741004617400, 0x0, 0x0, - 0xbfecccccccccccca, 0xbf9f1d1392aa2c00, + 0xbfeccccccccccccc, 0xbf9f1d1392aa3000, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbfa263586c684a00, + 0xbfeccccccccccccd, 0xbfa263586c684900, 0x0, 0x0, - 0xbfecccccccccccb6, 0xbfa53881f2e07c00, + 0xbfecccccccccccc4, 0xbfa53881f2e08200, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbfa80e146b3a6b00, + 0xbfecccccccccccca, 0xbfa80e146b3a6a00, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfaae41dec10ff80, + 0xbfecccccccccccbe, 0xbfaae41dec10ff80, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbfadbaac9536a000, + 0xbfeccccccccccccc, 0xbfadbaac95369d00, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbfb048e74867df80, + 0xbfecccccccccccba, 0xbfb048e74867dec0, 0x0, 0x0, - 0xbfecccccccccccb6, 0xbfb1b4c90a379e80, + 0xbfeccccccccccccc, 0xbfb1b4c90a379e80, 0x0, 0x0, - 0xbfecccccccccccb1, 0xbfb32102b11a51c0, + 0xbfeccccccccccccc, 0xbfb32102b11a5340, 0x0, 0x0, - 0xbfecccccccccccc1, 0xbfb48d9b64f63b00, + 0xbfecccccccccccce, 0xbfb48d9b64f63a40, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfb5fa9a55195f40, + 0xbfeccccccccccd18, 0xbfb5fa9a55196180, 0x0, 0x0, - 0xbfecccccccccccdb, 0xbfb76806b8cc1bc0, + 0xbfeccccccccccccd, 0xbfb76806b8cc1c00, 0x0, 0x0, - 0xbfeccccccccccce7, 0xbfb8d5e7cfe4e900, + 0xbfecccccccccccd4, 0xbfb8d5e7cfe4e980, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbfba4444e35dbb20, + 0xbfeccccccccccccd, 0xbfba4444e35dbba0, 0x0, 0x0, - 0xbfecccccccccccec, 0xbfbbb32545eac0c0, + 0xbfecccccccccccc0, 0xbfbbb32545eac120, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfbd22905492d800, + 0xbfeccccccccccccd, 0xbfbd22905492d860, 0x0, 0x0, - 0xbfecccccccccccde, 0xbfbe928d7749baa0, + 0xbfecccccccccccc9, 0xbfbe928d7749bba0, 0x0, 0x0, - 0xbfecccccccccccd4, 0xbfc0019210c60410, + 0xbfeccccccccccccd, 0xbfc0019210c603d0, 0x0, 0x0, - 0xbfecccccccccccde, 0xbfc0ba2de97e9b00, + 0xbfecccccccccccd6, 0xbfc0ba2de97e9c20, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbfc1731e0c03d2b0, + 0xbfeccccccccccccb, 0xbfc1731e0c03d300, 0x0, 0x0, - 0xbfecccccccccccc1, 0xbfc22c66453f63a0, + 0xbfecccccccccccd0, 0xbfc22c66453f6330, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfc2e60a6921d360, + 0xbfecccccccccccd2, 0xbfc2e60a6921d320, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfc3a00e52f5e9b0, + 0xbfecccccccccccdf, 0xbfc3a00e52f5e960, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfc45a75e5b56830, + 0xbfecccccccccccd1, 0xbfc45a75e5b56840, 0x0, 0x0, - 0xbfecccccccccccdb, 0xbfc515450c5f14c0, + 0xbfecccccccccccd2, 0xbfc515450c5f14d0, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfc5d07fba4e2bd0, + 0xbfecccccccccccd1, 0xbfc5d07fba4e2ba0, 0x0, 0x0, - 0xbfecccccccccccec, 0xbfc68c29eb9347c0, + 0xbfecccccccccccec, 0xbfc68c29eb934610, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfc74847a54ec230, + 0xbfeccccccccccccd, 0xbfc74847a54ec290, 0x0, 0x0, - 0xbfecccccccccccde, 0xbfc804dcf60cc990, + 0xbfecccccccccccc8, 0xbfc804dcf60cc910, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfc8c1edf622fb08, + 0xbfeccccccccccccd, 0xbfc8c1edf622fb40, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfc97f7ec80fd808, + 0xbfecccccccccccc5, 0xbfc97f7ec80fd850, 0x0, 0x0, - 0xbfecccccccccccde, 0xbfca3d9398dbf780, + 0xbfeccccccccccccd, 0xbfca3d9398dbf748, 0x0, 0x0, - 0xbfeccccccccccce5, 0xbfcafc30a07d2880, + 0xbfeccccccccccccc, 0xbfcafc30a07d2890, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfcbbb5a223b7ef8, + 0xbfeccccccccccccd, 0xbfcbbb5a223b7f58, 0x0, 0x0, - 0xbfeccccccccccc8b, 0xbfcc7b146d187758, + 0xbfecccccccccccef, 0xbfcc7b146d187910, 0x0, 0x0, - 0xbfecccccccccccb4, 0xbfcd3b63dc383ee0, + 0xbfeccccccccccccf, 0xbfcd3b63dc383ee8, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfcdfc4cd74d1d20, + 0xbfecccccccccccd0, 0xbfcdfc4cd74d1d38, 0x0, 0x0, - 0xbfecccccccccccce, 0xbfcebdd3d3055120, + 0xbfeccccccccccccf, 0xbfcebdd3d30550f0, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbfcf7ffd517b3600, + 0xbfecccccccccccca, 0xbfcf7ffd517b3640, 0x0, 0x0, - 0xbfecccccccccccd4, 0xbfd02166f153fcf8, + 0xbfeccccccccccccf, 0xbfd02166f153fd14, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfd08325126c7174, + 0xbfeccccccccccccc, 0xbfd08325126c7144, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbfd0e53b6293a800, + 0xbfecccccccccccce, 0xbfd0e53b6293a7f8, 0x0, 0x0, - 0xbfeccccccccccd08, 0xbfd147ac3ff9c068, + 0xbfecccccccccccff, 0xbfd147ac3ff9c128, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfd1aa7a10b1282c, + 0xbfeccccccccccccd, 0xbfd1aa7a10b1285c, 0x0, 0x0, - 0xbfecccccccccccb1, 0xbfd20da742eef330, + 0xbfecccccccccccba, 0xbfd20da742eef354, 0x0, 0x0, - 0xbfecccccccccccb8, 0xbfd271364d4cd3f4, + 0xbfeccccccccccccd, 0xbfd271364d4cd3f0, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfd2d529af0ca944, + 0xbfecccccccccccc4, 0xbfd2d529af0ca94c, 0x0, 0x0, - 0xbfecccccccccccdf, 0xbfd33983f05dc6c8, + 0xbfeccccccccccccd, 0xbfd33983f05dc6e4, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbfd39e47a2a3fcac, + 0xbfecccccccccccd1, 0xbfd39e47a2a3fce8, 0x0, 0x0, - 0xbfecccccccccccbb, 0xbfd4037760c07598, + 0xbfeccccccccccccd, 0xbfd4037760c0758c, 0x0, 0x0, - 0xbfecccccccccccf9, 0xbfd46915cf5c7918, + 0xbfecccccccccccf5, 0xbfd46915cf5c78e4, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfd4cf259d362aec, + 0xbfecccccccccccd0, 0xbfd4cf259d362af8, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbfd535a9836f50c0, + 0xbfecccccccccccc8, 0xbfd535a9836f50fc, 0x0, 0x0, - 0xbfeccccccccccce6, 0xbfd59ca445de40b0, + 0xbfecccccccccccc7, 0xbfd59ca445de40c0, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfd60418b360fd44, + 0xbfecccccccccccc8, 0xbfd60418b360fd38, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfd66c09a632a188, + 0xbfecccccccccccc5, 0xbfd66c09a632a190, 0x0, 0x0, - 0xbfeccccccccccce2, 0xbfd6d47a04432efe, + 0xbfecccccccccccc9, 0xbfd6d47a04432f3c, 0x0, 0x0, - 0xbfeccccccccccca3, 0xbfd73d6cbf91d230, + 0xbfeccccccccccccd, 0xbfd73d6cbf91d1c0, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfd7a6e4d689bb8c, + 0xbfeccccccccccc29, 0xbfd7a6e4d689bb00, 0x0, 0x0, - 0xbfecccccccccccfc, 0xbfd810e55461a056, + 0xbfeccccccccccccd, 0xbfd810e55461a0ba, 0x0, 0x0, - 0xbfecccccccccccb2, 0xbfd87b71517e08ca, + 0xbfecccccccccccc7, 0xbfd87b71517e08c6, 0x0, 0x0, - 0xbfeccccccccccceb, 0xbfd8e68bf3d674f6, + 0xbfeccccccccccccd, 0xbfd8e68bf3d674c2, 0x0, 0x0, - 0xbfecccccccccccb3, 0xbfd952386f5d8520, + 0xbfecccccccccccc2, 0xbfd952386f5d855a, 0x0, 0x0, - 0xbfeccccccccccccf, 0xbfd9be7a066c4024, + 0xbfeccccccccccccd, 0xbfd9be7a066c4018, 0x0, 0x0, - 0xbfeccccccccccd03, 0xbfda2b540a308dc2, + 0xbfecccccccccccca, 0xbfda2b540a308e12, 0x0, 0x0, - 0xbfecccccccccccba, 0xbfda98c9db1f149e, + 0xbfeccccccccccccd, 0xbfda98c9db1f14a0, 0x0, 0x0, - 0xbfecccccccccccec, 0xbfdb06dee9688c18, + 0xbfecccccccccccbf, 0xbfdb06dee9688b06, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfdb7596b572b308, + 0xbfecccccccccccd5, 0xbfdb7596b572b30e, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfdbe4f4d0551070, + 0xbfecccccccccccd5, 0xbfdbe4f4d05510fc, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfdc54fcdc59969a, + 0xbfeccccccccccccd, 0xbfdc54fcdc599674, 0x0, 0x0, - 0xbfeccccccccccd07, 0xbfdcc5b28d815964, + 0xbfecccccccccccdd, 0xbfdcc5b28d815908, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfdd3719aa0d8c60, + 0xbfeccccccccccccb, 0xbfdd3719aa0d8c2c, 0x0, 0x0, - 0xbfecccccccccccf5, 0xbfdda9360b0cdd8e, + 0xbfecccccccccccd6, 0xbfdda9360b0cdd64, 0x0, 0x0, - 0xbfecccccccccccae, 0xbfde1c0b9ced6ec8, + 0xbfecccccccccccca, 0xbfde1c0b9ced6ecc, 0x0, 0x0, - 0xbfeccccccccccd02, 0xbfde8f9e60138efc, + 0xbfecccccccccccc4, 0xbfde8f9e60138e82, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbfdf03f269756b86, + 0xbfeccccccccccccd, 0xbfdf03f269756ba8, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfdf790be33bf5d6, + 0xbfecccccccccccc2, 0xbfdf790be33bf5bc, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbfdfeeef0d691d38, + 0xbfeccccccccccccd, 0xbfdfeeef0d691d3e, 0x0, 0x0, - 0xbfeccccccccccca4, 0xbfe032d01f41d6bc, + 0xbfecccccccccccd3, 0xbfe032d01f41d6d6, 0x0, 0x0, - 0xbfecccccccccccdb, 0xbfe06e91f2247fa9, + 0xbfeccccccccccccd, 0xbfe06e91f2247f96, 0x0, 0x0, - 0xbfeccccccccccce0, 0xbfe0aabf4232600d, + 0xbfeccccccccccccd, 0xbfe0aabf4232600c, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfe0e75a5e9785c2, + 0xbfeccccccccccccd, 0xbfe0e75a5e9785ca, 0x0, 0x0, - 0xbfeccccccccccc97, 0xbfe12465a33891cf, + 0xbfeccccccccccce3, 0xbfe12465a3389201, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbfe161e379188316, + 0xbfecccccccccccd1, 0xbfe161e37918831b, 0x0, 0x0, - 0xbfecccccccccccf0, 0xbfe19fd656c218c8, + 0xbfecccccccccccc6, 0xbfe19fd656c218ac, 0x0, 0x0, - 0xbfecccccccccccbf, 0xbfe1de40c0b4f037, + 0xbfecccccccccccd1, 0xbfe1de40c0b4f045, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfe21d2549d68cda, + 0xbfecccccccccccd0, 0xbfe21d2549d68cd4, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbfe25c8693e76e05, + 0xbfeccccccccccccf, 0xbfe25c8693e76dda, 0x0, 0x0, - 0xbfecccccccccccb8, 0xbfe29c674ffc65c5, + 0xbfecccccccccccd0, 0xbfe29c674ffc6585, 0x0, 0x0, - 0xbfeccccccccccca9, 0xbfe2dcca3efc5e0b, + 0xbfecccccccccccce, 0xbfe2dcca3efc5df6, 0x0, 0x0, - 0xbfeccccccccccc39, 0xbfe31db23222be8e, + 0xbfeccccccccccca0, 0xbfe31db23222be62, 0x0, 0x0, - 0xbfecccccccccccec, 0xbfe35f220b86a5d5, + 0xbfeccccccccccccd, 0xbfe35f220b86a5e3, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfe3a11cbea72f80, + 0xbfecccccccccccce, 0xbfe3a11cbea72f9b, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfe3e3a550fcffff, + 0xbfeccccccccccccd, 0xbfe3e3a550fcfffd, 0x0, 0x0, - 0xbfecccccccccccf1, 0xbfe426beda9151a8, + 0xbfecccccccccccde, 0xbfe426beda9151a9, 0x0, 0x0, - 0xbfeccccccccccce5, 0xbfe46a6c869ac458, + 0xbfeccccccccccccd, 0xbfe46a6c869ac456, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbfe4aeb19420322e, + 0xbfeccccccccccccf, 0xbfe4aeb19420322c, 0x0, 0x0, - 0xbfecccccccccccb9, 0xbfe4f39156a1d040, + 0xbfeccccccccccccd, 0xbfe4f39156a1d048, 0x0, 0x0, - 0xbfecccccccccccbf, 0xbfe5390f36c8e5b2, + 0xbfecccccccccccb0, 0xbfe5390f36c8e5d2, 0x0, 0x0, - 0xbfeccccccccccccf, 0xbfe57f2eb31e65e4, + 0xbfeccccccccccccd, 0xbfe57f2eb31e65e0, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfe5c5f360c8c2e1, + 0xbfecccccccccccd6, 0xbfe5c5f360c8c2c9, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbfe60d60ec514cb1, + 0xbfeccccccccccccc, 0xbfe60d60ec514ca1, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfe6557b1a717a1a, + 0xbfecccccccccccd4, 0xbfe6557b1a7179ec, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfe69e45c8e8790d, + 0xbfecccccccccccce, 0xbfe69e45c8e87919, 0x0, 0x0, - 0xbfecccccccccccf9, 0xbfe6e7c4ef597247, + 0xbfecccccccccccce, 0xbfe6e7c4ef597247, 0x0, 0x0, - 0xbfeccccccccccce4, 0xbfe731fca032e131, + 0xbfeccccccccccccb, 0xbfe731fca032e14b, 0x0, 0x0, - 0xbfecccccccccccbd, 0xbfe77cf1099f7d81, + 0xbfecccccccccccfb, 0xbfe77cf1099f7da3, 0x0, 0x0, - 0xbfeccccccccccce5, 0xbfe7c8a67681240e, + 0xbfeccccccccccccd, 0xbfe7c8a6768123d4, 0x0, 0x0, - 0xbfeccccccccccca9, 0xbfe815214f7640e4, + 0xbfecccccccccccd2, 0xbfe815214f764105, 0x0, 0x0, - 0xbfecccccccccccb7, 0xbfe862661bea42d6, + 0xbfeccccccccccccd, 0xbfe862661bea42d6, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfe8b07983319ea6, + 0xbfeccccccccccccf, 0xbfe8b07983319e94, 0x0, 0x0, - 0xbfecccccccccccbd, 0xbfe8ff604db1fda8, + 0xbfeccccccccccccd, 0xbfe8ff604db1fda6, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfe94f1f6617311c, + 0xbfecccccccccccce, 0xbfe94f1f66173111, 0x0, 0x0, - 0xbfeccccccccccce4, 0xbfe99fbbda9591ca, + 0xbfeccccccccccccd, 0xbfe99fbbda9591cb, 0x0, 0x0, - 0xbfeccccccccccd1b, 0xbfe9f13ade3a7df0, + 0xbfeccccccccccca4, 0xbfe9f13ade3a7df3, 0x0, 0x0, - 0xbfecccccccccccdb, 0xbfea43a1ca4baec6, + 0xbfecccccccccccd1, 0xbfea43a1ca4baeca, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfea96f61fb62c4c, + 0xbfecccccccccccdd, 0xbfea96f61fb62c53, 0x0, 0x0, - 0xbfeccccccccccce1, 0xbfeaeb3d888db0e0, + 0xbfecccccccccccd8, 0xbfeaeb3d888db0c6, 0x0, 0x0, - 0xbfecccccccccccc1, 0xbfeb407dd99d5c34, + 0xbfecccccccccccc3, 0xbfeb407dd99d5c21, 0x0, 0x0, - 0xbfeccccccccccce9, 0xbfeb96bd140aa0ac, + 0xbfecccccccccccd3, 0xbfeb96bd140aa0c5, 0x0, 0x0, - 0xbfeccccccccccce1, 0xbfebee01670b65a0, + 0xbfeccccccccccce6, 0xbfebee01670b65b5, 0x0, 0x0, - 0xbfecccccccccccec, 0xbfec465131b06a00, + 0xbfecccccccccccf4, 0xbfec465131b069c7, 0x0, 0x0, - 0xbfeccccccccccd9c, 0xbfec9fb304c4fee0, + 0xbfecccccccccccc9, 0xbfec9fb304c4fe71, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfecfa2da4c54c3b, + 0xbfeccccccccccccd, 0xbfecfa2da4c54c33, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbfed55c80bec561c, + 0xbfecccccccccccd0, 0xbfed55c80bec5654, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfedb2896c5b1f9e, + 0xbfeccccccccccccd, 0xbfedb2896c5b1fb7, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfee1079325a4d91, + 0xbfeccccccccccccb, 0xbfee1079325a4d7b, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfee6f9f06b7ceb0, + 0xbfeccccccccccccd, 0xbfee6f9f06b7ce92, 0x0, 0x0, - 0xbfecccccccccccdd, 0xbfeed002d14220d1, + 0xbfecccccccccccc6, 0xbfeed002d14220d2, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfef31acbb62e85c, + 0xbfeccccccccccccd, 0xbfef31acbb62e850, 0x0, 0x0, - 0xbfecccccccccccfa, 0xbfef94a532daacec, + 0xbfecccccccccccc0, 0xbfef94a532daac8e, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfeff8f4ec9fabe4, + 0xbfecccccccccccd0, 0xbfeff8f4ec9fabea, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbff02f5273f0e9b8, + 0xbfecccccccccccda, 0xbff02f5273f0e9c0, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbff062df389b0ee1, + 0xbfecccccccccccce, 0xbff062df389b0ee3, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbff0972592f5d44d, + 0xbfecccccccccccd2, 0xbff0972592f5d440, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbff0cc2a7bc689a3, + 0xbfecccccccccccce, 0xbff0cc2a7bc6899f, 0x0, 0x0, - 0xbfecccccccccccce, 0xbff101f317c86b54, + 0xbfecccccccccccc2, 0xbff101f317c86b5a, 0x0, 0x0, - 0xbfecccccccccccec, 0xbff13884b99dbea4, + 0xbfeccccccccccccf, 0xbff13884b99dbeab, 0x0, 0x0, - 0xbfecccccccccccce, 0xbff16fe4e3db6adb, + 0xbfecccccccccccc3, 0xbff16fe4e3db6aff, 0x0, 0x0, - 0xbfecccccccccccce, 0xbff1a8194b30ba94, + 0xbfeccccccccccccd, 0xbff1a8194b30ba98, 0x0, 0x0, - 0xbfeccccccccccce0, 0xbff1e127d8ad0c3c, + 0xbfecccccccccccc7, 0xbff1e127d8ad0c34, 0x0, 0x0, - 0xbfecccccccccccce, 0xbff21b16ac255c7e, + 0xbfeccccccccccccd, 0xbff21b16ac255c75, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbff255ec1ebbb9d6, + 0xbfeccccccccccccd, 0xbff255ec1ebbb9ca, 0x0, 0x0, - 0xbfecccccccccccb6, 0xbff291aec58ad3fa, + 0xbfeccccccccccccd, 0xbff291aec58ad3fc, 0x0, 0x0, - 0xbfecccccccccccbd, 0xbff2ce6574780a50, + 0xbfecccccccccccce, 0xbff2ce6574780a3d, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbff30c17412e83a6, + 0xbfeccccccccccccd, 0xbff30c17412e839c, 0x0, 0x0, - 0xbfecccccccccccdf, 0xbff34acb86461200, + 0xbfecccccccccccc8, 0xbff34acb86461226, 0x0, 0x0, - 0xbfecccccccccccce, 0xbff38a89e698d806, + 0xbfecccccccccccd0, 0xbff38a89e698d80d, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbff3cb5a50cadf60, + 0xbfecccccccccccc8, 0xbff3cb5a50cadf52, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbff40d4503071623, + 0xbfeccccccccccccf, 0xbff40d4503071625, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbff450528ef56785, + 0xbfecccccccccccdc, 0xbff450528ef56784, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbff4948bddedf6c2, + 0xbfecccccccccccc9, 0xbff4948bddedf6c8, 0x0, 0x0, - 0xbfeccccccccccce7, 0xbff4d9fa356dd359, + 0xbfecccccccccccbb, 0xbff4d9fa356dd35e, 0x0, 0x0, - 0xbfecccccccccccce, 0xbff520a73bd1db18, + 0xbfecccccccccccd1, 0xbff520a73bd1db05, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbff5689cfd5ce078, + 0xbfecccccccccccdc, 0xbff5689cfd5ce01a, 0x0, 0x0, - 0xbfecccccccccccf0, 0xbff5b1e5f18e9896, + 0xbfeccccccccccccd, 0xbff5b1e5f18e988a, 0x0, 0x0, - 0xbfecccccccccccd4, 0xbff5fc8d00d151fd, + 0xbfecccccccccccd5, 0xbff5fc8d00d151ef, 0x0, 0x0, - 0xbfecccccccccccde, 0xbff6489d8a84e9f6, + 0xbfeccccccccccccd, 0xbff6489d8a84e9f4, 0x0, 0x0, - 0xbfeccccccccccc97, 0xbff696236b6e19c9, + 0xbfecccccccccccc6, 0xbff696236b6e19a7, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbff6e52b0491c03c, + 0xbfeccccccccccccd, 0xbff6e52b0491c044, 0x0, 0x0, - 0xbfeccccccccccc83, 0xbff735c142848835, + 0xbfecccccccccccd9, 0xbff735c142848822, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbff787f3a5380122, + 0xbfeccccccccccccd, 0xbff787f3a5380133, 0x0, 0x0, - 0xbfeccccccccccca1, 0xbff7dbd0484f1a34, + 0xbfecccccccccccaf, 0xbff7dbd0484f1a3c, 0x0, 0x0, - 0xbfeccccccccccced, 0xbff83165ec04d01c, + 0xbfeccccccccccccf, 0xbff83165ec04d012, 0x0, 0x0, - 0xbfeccccccccccca4, 0xbff888c3feb0e7a9, + 0xbfeccccccccccccc, 0xbff888c3feb0e7a6, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbff8e1faa6f7a03a, + 0xbfecccccccccccce, 0xbff8e1faa6f7a03e, 0x0, 0x0, - 0xbfeccccccccccc9e, 0xbff93d1aceb28cbb, + 0xbfecccccccccccd3, 0xbff93d1aceb28cd6, 0x0, 0x0, - 0xbfecccccccccccc1, 0xbff99a362ea2163c, + 0xbfeccccccccccccb, 0xbff99a362ea2163d, 0x0, 0x0, - 0xbfecccccccccccba, 0xbff9f95f5af8adb6, + 0xbfecccccccccccc8, 0xbff9f95f5af8adb6, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbffa5aa9d0d2638c, + 0xbfeccccccccccccc, 0xbffa5aa9d0d2638c, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbffabe2a04ad6ee4, + 0xbfeccccccccccd1b, 0xbffabe2a04ad6ec6, 0x0, 0x0, - 0xbfecccccccccccf5, 0xbffb23f571fa46e3, + 0xbfeccccccccccccd, 0xbffb23f571fa46ca, 0x0, 0x0, - 0xbfeccccccccccce7, 0xbffb8c22abdc3b98, + 0xbfecccccccccccd5, 0xbffb8c22abdc3b97, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbffbf6c96f360ec1, + 0xbfeccccccccccccd, 0xbffbf6c96f360ec0, 0x0, 0x0, - 0xbfecccccccccccb7, 0xbffc6402b620ee2f, + 0xbfecccccccccccd9, 0xbffc6402b620ee2c, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbffcd3e8ccef68e1, + 0xbfeccccccccccccd, 0xbffcd3e8ccef68f3, 0x0, 0x0, - 0xbfecccccccccccc1, 0xbffd469768e19378, + 0xbfecccccccccccd3, 0xbffd469768e19379, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbffdbc2bc0b39d72, + 0xbfeccccccccccccd, 0xbffdbc2bc0b39d83, 0x0, 0x0, - 0xbfeccccccccccd0d, 0xbffe34c4a734a68e, + 0xbfecccccccccccd1, 0xbffe34c4a734a69a, 0x0, 0x0, - 0xbfeccccccccccced, 0xbffeb082a818c2ea, + 0xbfecccccccccccc6, 0xbffeb082a818c2e5, 0x0, 0x0, - 0xbfecccccccccccbb, 0xbfff2f88273ee5b6, + 0xbfecccccccccccb8, 0xbfff2f88273ee5a5, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfffb1f982a9ed55, + 0xbfecccccccccccc7, 0xbfffb1f982a9ed54, 0x0, 0x0, - 0xbfeccccccccccccd, 0xc0001bfe9bb9baeb, + 0xbfeccccccccccccc, 0xc0001bfe9bb9badc, 0x0, 0x0, - 0xbfecccccccccccd4, 0xc00060de0503b6d5, + 0xbfeccccccccccccd, 0xc00060de0503b6d8, 0x0, 0x0, - 0xbfecccccccccccdb, 0xc000a7b0990077b0, + 0xbfecccccccccccb9, 0xc000a7b0990077b4, 0x0, 0x0, - 0xbfecccccccccccd2, 0xc000f08d4505d724, + 0xbfecccccccccccfd, 0xc000f08d4505d724, 0x0, 0x0, - 0xbfecccccccccccdc, 0xc0013b8c621ccc5a, + 0xbfecccccccccccc9, 0xc0013b8c621ccc58, 0x0, 0x0, - 0xbfecccccccccccf8, 0xc00188c7d1a52f89, + 0xbfeccccccccccccd, 0xc00188c7d1a52f7b, 0x0, 0x0, - 0xbfecccccccccccd6, 0xc001d85b1cb95583, + 0xbfecccccccccccc9, 0xc001d85b1cb95590, 0x0, 0x0, - 0xbfecccccccccccdb, 0xc0022a6396a19d49, + 0xbfeccccccccccccd, 0xc0022a6396a19d4a, 0x0, 0x0, - 0xbfecccccccccccbb, 0xc0027f0082b2a6f9, + 0xbfecccccccccccd2, 0xc0027f0082b2a6f4, 0x0, 0x0, - 0xbfecccccccccccc5, 0xc002d6533dfd1908, + 0xbfeccccccccccccd, 0xc002d6533dfd190e, 0x0, 0x0, - 0xbfecccccccccccb9, 0xc003307f6d43ed66, + 0xbfecccccccccccd8, 0xc003307f6d43ed6e, 0x0, 0x0, - 0xbfecccccccccccbf, 0xc0038dab2fbe8596, + 0xbfeccccccccccccd, 0xc0038dab2fbe859a, 0x0, 0x0, - 0xbfeccccccccccc94, 0xc003edff573ea322, + 0xbfeccccccccccccf, 0xc003edff573ea322, 0x0, 0x0, - 0xbfecccccccccccdb, 0xc00451a7a6684ed2, + 0xbfecccccccccccd1, 0xc00451a7a6684ed4, 0x0, 0x0, - 0xbfecccccccccccd7, 0xc004b8d315c34578, + 0xbfecccccccccccc8, 0xc004b8d315c3457e, 0x0, 0x0, - 0xbfeccccccccccccb, 0xc00523b4208b5799, + 0xbfeccccccccccccb, 0xc00523b4208b5793, 0x0, 0x0, - 0xbfecccccccccccd1, 0xc00592811a482312, + 0xbfecccccccccccc6, 0xc00592811a482306, 0x0, 0x0, - 0xbfecccccccccccb4, 0xc00605748e5d9ba0, + 0xbfeccccccccccccf, 0xc00605748e5d9b9c, 0x0, 0x0, - 0xbfecccccccccccd2, 0xc0067ccdaaf73e82, + 0xbfecccccccccccd2, 0xc0067ccdaaf73e80, 0x0, 0x0, - 0xbfecccccccccccf9, 0xc006f8d0b8e8fbc3, + 0xbfeccccccccccccb, 0xc006f8d0b8e8fbc0, 0x0, 0x0, - 0xbfecccccccccccb3, 0xc00779c7a264adb6, + 0xbfecccccccccccda, 0xc00779c7a264adb8, 0x0, 0x0, - 0xbfecccccccccccda, 0xc00800028ab39caa, + 0xbfeccccccccccccd, 0xc00800028ab39ca8, 0x0, 0x0, - 0xbfecccccccccccd6, 0xc0088bd87983ceda, + 0xbfecccccccccccd9, 0xc0088bd87983cee2, 0x0, 0x0, - 0xbfecccccccccccb2, 0xc0091da81ccc304a, + 0xbfeccccccccccccd, 0xc0091da81ccc3043, 0x0, 0x0, - 0xbfecccccccccccaa, 0xc009b5d8a4d53aa3, + 0xbfecccccccccccc4, 0xc009b5d8a4d53aa3, 0x0, 0x0, - 0xbfecccccccccccc7, 0xc00a54dabe9b13d4, + 0xbfeccccccccccccd, 0xc00a54dabe9b13d6, 0x0, 0x0, - 0xbfecccccccccccd2, 0xc00afb29b188cdd2, + 0xbfecccccccccccd9, 0xc00afb29b188cdd0, 0x0, 0x0, - 0xbfecccccccccccce, 0xc00ba94ca68325a4, + 0xbfeccccccccccccd, 0xc00ba94ca68325a8, 0x0, 0x0, - 0xbfecccccccccccc6, 0xc00c5fd81f669d45, + 0xbfecccccccccccd3, 0xc00c5fd81f669d3e, 0x0, 0x0, - 0xbfecccccccccccd9, 0xc00d1f6fa78f01ae, + 0xbfecccccccccccd0, 0xc00d1f6fa78f01ae, 0x0, 0x0, - 0xbfecccccccccccc1, 0xc00de8c7c7c72a89, + 0xbfecccccccccccd4, 0xc00de8c7c7c72a87, 0x0, 0x0, - 0xbfecccccccccccbc, 0xc00ebca84a361c43, + 0xbfecccccccccccd2, 0xc00ebca84a361c44, 0x0, 0x0, - 0xbfecccccccccccdc, 0xc00f9beedda0b93a, + 0xbfecccccccccccdc, 0xc00f9beedda0b939, 0x0, 0x0, - 0xbfecccccccccccbb, 0xc01043c9156615fc, + 0xbfecccccccccccd6, 0xc01043c9156615fa, 0x0, 0x0, - 0xbfecccccccccccf0, 0xc010c052b9948923, + 0xbfecccccccccccd0, 0xc010c052b994891e, 0x0, 0x0, - 0xbfecccccccccccd9, 0xc011442e6abb8bba, + 0xbfecccccccccccde, 0xc011442e6abb8bbf, 0x0, 0x0, - 0xbfecccccccccccde, 0xc011d0092e102c82, + 0xbfecccccccccccfb, 0xc011d0092e102c77, 0x0, 0x0, - 0xbfecccccccccccdb, 0xc01264a601100b45, + 0xbfeccccccccccccd, 0xc01264a601100b42, 0x0, 0x0, - 0xbfecccccccccccce, 0xc01302e17385153f, + 0xbfecccccccccccc0, 0xc01302e17385153a, 0x0, 0x0, - 0xbfecccccccccccca, 0xc013abb5fd1082aa, + 0xbfeccccccccccccd, 0xc013abb5fd1082b0, 0x0, 0x0, - 0xbfecccccccccccc6, 0xc01460413c4c59d6, + 0xbfeccccccccccccc, 0xc01460413c4c59dc, 0x0, 0x0, - 0xbfecccccccccccc2, 0xc01521ca5af8e6c6, + 0xbfeccccccccccccd, 0xc01521ca5af8e6c2, 0x0, 0x0, - 0xbfecccccccccccbb, 0xc015f1c9e49ebfe0, + 0xbfecccccccccccd2, 0xc015f1c9e49ebfe0, 0x0, 0x0, - 0xbfecccccccccccc2, 0xc016d1f37556e798, + 0xbfeccccccccccccd, 0xc016d1f37556e792, 0x0, 0x0, - 0xbfecccccccccccaa, 0xc017c441c79f5c80, + 0xbfeccccccccccca8, 0xc017c441c79f5c7d, 0x0, 0x0, - 0xbfecccccccccccc2, 0xc018cb05d60ec637, + 0xbfecccccccccccc7, 0xc018cb05d60ec634, 0x0, 0x0, - 0xbfecccccccccccc7, 0xc019e8fa0604d6b1, + 0xbfecccccccccccca, 0xc019e8fa0604d6b0, 0x0, 0x0, - 0xbfecccccccccccba, 0xc01b215aaba9a5fc, + 0xbfecccccccccccce, 0xc01b215aaba9a5fb, 0x0, 0x0, - 0xbfecccccccccccaf, 0xc01c7805bacda35b, + 0xbfecccccccccccd9, 0xc01c7805bacda363, 0x0, 0x0, - 0xbfecccccccccccc5, 0xc01df1a4380e6b0a, + 0xbfeccccccccccccb, 0xc01df1a4380e6b0d, 0x0, 0x0, - 0xbfecccccccccccc0, 0xc01f93e11ac94640, + 0xbfecccccccccccc2, 0xc01f93e11ac94642, 0x0, 0x0, - 0xbfecccccccccccb9, 0xc020b2d98016ccb2, + 0xbfeccccccccccccc, 0xc020b2d98016ccb2, 0x0, 0x0, - 0xbfeccccccccccca8, 0xc021b7e0558818ae, + 0xbfecccccccccccee, 0xc021b7e0558818ac, 0x0, 0x0, - 0xbfecccccccccccb9, 0xc022de76357386ef, + 0xbfeccccccccccccd, 0xc022de76357386ee, 0x0, 0x0, - 0xbfecccccccccccc3, 0xc0242d8c98e61f81, + 0xbfecccccccccccca, 0xc0242d8c98e61f80, 0x0, 0x0, - 0xbfecccccccccccb3, 0xc025ae23a14101b3, + 0xbfeccccccccccccd, 0xc025ae23a14101b4, 0x0, 0x0, - 0xbfeccccccccccca6, 0xc0276c1cc1f4c08e, + 0xbfecccccccccccda, 0xc0276c1cc1f4c08f, 0x0, 0x0, - 0xbfecccccccccccb5, 0xc029777b537d1966, + 0xbfeccccccccccccd, 0xc029777b537d1965, 0x0, 0x0, - 0xbfeccccccccccca9, 0xc02be65c55c7ebbc, + 0xbfecccccccccccc9, 0xc02be65c55c7ebba, 0x0, 0x0, - 0xbfeccccccccccca2, 0xc02ed82c5c8c5f04, + 0xbfeccccccccccccd, 0xc02ed82c5c8c5f07, 0x0, 0x0, - 0xbfeccccccccccca3, 0xc0313d90d4fed3d0, + 0xbfecccccccccccd0, 0xc0313d90d4fed3ce, 0x0, 0x0, - 0xbfeccccccccccc9d, 0xc0338b0bfc39992e, + 0xbfecccccccccccc4, 0xc0338b0bfc39992e, 0x0, 0x0, - 0xbfeccccccccccc9c, 0xc0368dc2f54252f9, + 0xbfecccccccccccce, 0xc0368dc2f54252f9, 0x0, 0x0, - 0xbfeccccccccccc99, 0xc03aa89091ff4d36, + 0xbfecccccccccccc1, 0xc03aa89091ff4d36, 0x0, 0x0, - 0xbfeccccccccccc75, 0xc0404b174bb2101c, + 0xbfeccccccccccd0e, 0xc0404b174bb2101c, 0x0, 0x0, - 0xbfeccccccccccc75, 0xc044f35eb0e6f56c, + 0xbfecccccccccccc2, 0xc044f35eb0e6f56d, 0x0, 0x0, - 0xbfeccccccccccc11, 0xc04d554889eb3cf0, + 0xbfecccccccccccac, 0xc04d554889eb3cef, 0x0, 0x0, - 0xbfeccccccccccbcc, 0xc058720ce01d00fd, + 0xbfeccccccccccc90, 0xc058720ce01d00fe, 0x0, 0x0, - 0xbfecccccccccc93c, 0xc07255a7d0e959bb + 0xbfecccccccccccc9, 0xc07255a7d0e959bc }; static const uint64_t in_cfft_step_2048[4096] = { @@ -32819,4104 +32819,4104 @@ static const uint64_t in_cfft_step_2048[4096] = { static const uint64_t in_cifft_step_2048[4096] = { 0x408ccccccccccccd, 0x0, - 0xbfecccccccccce22, 0x408255aaa4bc2b9e, + 0xbfeccccccccccccd, 0x408255aaa4bc2b9e, 0x0, 0x0, - 0xbfeccccccccccd79, 0x4068722ece0ccb9a, + 0xbfeccccccccccc01, 0x4068722ece0ccb9a, 0x0, 0x0, - 0xbfeccccccccccd4e, 0x405d55b9a367908a, + 0xbfeccccccccccd3a, 0x405d55b9a367908b, 0x0, 0x0, - 0xbfeccccccccccd66, 0x4054f3fd088b91b0, + 0xbfecccccccccccc9, 0x4054f3fd088b91ae, 0x0, 0x0, - 0xbfecccccccccccf8, 0x40504be2e24253f0, + 0xbfecccccccccccc0, 0x40504be2e24253f0, 0x0, 0x0, - 0xbfecccccccccccfa, 0x404aaa823eed92be, + 0xbfeccccccccccc86, 0x404aaa823eed92be, 0x0, 0x0, - 0xbfeccccccccccd18, 0x4046900f24647fa7, + 0xbfecccccccccccfa, 0x4046900f24647fa8, 0x0, 0x0, - 0xbfeccccccccccd26, 0x40438db2b0659cb5, + 0xbfecccccccccccd6, 0x40438db2b0659cb4, 0x0, 0x0, - 0xbfeccccccccccd0a, 0x40414092117a7240, + 0xbfecccccccccccb5, 0x40414092117a7240, 0x0, 0x0, - 0xbfeccccccccccd01, 0x403edee3ed8e2315, + 0xbfecccccccccccac, 0x403edee3ed8e2316, 0x0, 0x0, - 0xbfecccccccccccf2, 0x403bedc9071f7616, + 0xbfeccccccccccce7, 0x403bedc9071f7614, 0x0, 0x0, - 0xbfeccccccccccce5, 0x40397f9d2e55bfea, + 0xbfecccccccccccac, 0x40397f9d2e55bfe7, 0x0, 0x0, - 0xbfecccccccccccce, 0x403774f3d05a1d2c, + 0xbfecccccccccccb0, 0x403774f3d05a1d2b, 0x0, 0x0, - 0xbfeccccccccccce6, 0x4035b7afee1f2425, + 0xbfeccccccccccc9b, 0x4035b7afee1f2425, 0x0, 0x0, - 0xbfeccccccccccceb, 0x403437ce3009c346, + 0xbfecccccccccccc8, 0x403437ce3009c345, 0x0, 0x0, - 0xbfeccccccccccd3c, 0x4032e96d238a4db4, + 0xbfeccccccccccc4e, 0x4032e96d238a4da8, 0x0, 0x0, - 0xbfeccccccccccce0, 0x4031c38ca820c8e2, + 0xbfecccccccccccd0, 0x4031c38ca820c8e4, 0x0, 0x0, - 0xbfecccccccccccb0, 0x4030bf3b45a19505, + 0xbfecccccccccccb2, 0x4030bf3b45a19505, 0x0, 0x0, - 0xbfecccccccccccdc, 0x402fae0faa66c361, + 0xbfecccccccccccf3, 0x402fae0faa66c360, 0x0, 0x0, - 0xbfeccccccccccce0, 0x402e0d3dec9b87f2, + 0xbfecccccccccccc8, 0x402e0d3dec9b87f0, 0x0, 0x0, - 0xbfecccccccccccf5, 0x402c950ab676aaff, + 0xbfeccccccccccce3, 0x402c950ab676aaff, 0x0, 0x0, - 0xbfecccccccccccde, 0x402b3fcb12602488, + 0xbfecccccccccccc9, 0x402b3fcb12602488, 0x0, 0x0, - 0xbfecccccccccccee, 0x402a08d5fd804bfc, + 0xbfecccccccccccdc, 0x402a08d5fd804bfe, 0x0, 0x0, - 0xbfeccccccccccd33, 0x4028ec4d85cd6120, + 0xbfeccccccccccccc, 0x4028ec4d85cd611d, 0x0, 0x0, - 0xbfeccccccccccce5, 0x4027e6f558e6bf24, + 0xbfecccccccccccb0, 0x4027e6f558e6bf28, 0x0, 0x0, - 0xbfecccccccccccd5, 0x4026f6131334f4b2, + 0xbfecccccccccccc4, 0x4026f6131334f4b4, 0x0, 0x0, - 0xbfecccccccccccea, 0x40261755bbea70fa, + 0xbfecccccccccccd9, 0x40261755bbea70fb, 0x0, 0x0, - 0xbfecccccccccccd8, 0x402548c29a532b93, + 0xbfecccccccccccd2, 0x402548c29a532b93, 0x0, 0x0, - 0xbfecccccccccccf8, 0x402488a6142100a4, + 0xbfecccccccccccc4, 0x402488a6142100a0, 0x0, 0x0, - 0xbfeccccccccccce9, 0x4023d5879f9729c2, + 0xbfecccccccccccc4, 0x4023d5879f9729c0, 0x0, 0x0, - 0xbfecccccccccccd3, 0x40232e2014c225bc, + 0xbfecccccccccccba, 0x40232e2014c225b7, 0x0, 0x0, - 0xbfecccccccccccdc, 0x40229151d6d5bcde, + 0xbfecccccccccccd8, 0x40229151d6d5bcde, 0x0, 0x0, - 0xbfecccccccccccea, 0x4021fe226fff928f, + 0xbfeccccccccccd18, 0x4021fe226fff9291, 0x0, 0x0, - 0xbfecccccccccccd8, 0x402173b55245abf0, + 0xbfeccccccccccce0, 0x402173b55245abf0, 0x0, 0x0, - 0xbfecccccccccccc8, 0x4020f14781fb7ada, + 0xbfecccccccccccd1, 0x4020f14781fb7ad9, 0x0, 0x0, - 0xbfecccccccccccc4, 0x4020762bfbbe2b9a, + 0xbfecccccccccccc0, 0x4020762bfbbe2b97, 0x0, 0x0, - 0xbfecccccccccccea, 0x402001c8b20155f0, + 0xbfeccccccccccd0c, 0x402001c8b20155ee, 0x0, 0x0, - 0xbfeccccccccccccc, 0x401f27280bc2a8ed, + 0xbfecccccccccccc2, 0x401f27280bc2a8f2, 0x0, 0x0, - 0xbfeccccccccccce2, 0x401e562549a301e5, + 0xbfeccccccccccce3, 0x401e562549a301e4, 0x0, 0x0, - 0xbfecccccccccccbb, 0x401d8fab728d5082, + 0xbfecccccccccccb2, 0x401d8fab728d507c, 0x0, 0x0, - 0xbfecccccccccccb5, 0x401cd2f2c00bbe14, + 0xbfecccccccccccf2, 0x401cd2f2c00bbe0f, 0x0, 0x0, - 0xbfeccccccccccce4, 0x401c1f46ad076594, + 0xbfecccccccccccbe, 0x401c1f46ad076593, 0x0, 0x0, - 0xbfecccccccccccec, 0x401b7403b1db44d6, + 0xbfecccccccccccda, 0x401b7403b1db44d4, 0x0, 0x0, - 0xbfeccccccccccd0a, 0x401ad095506490c4, + 0xbfecccccccccccc0, 0x401ad095506490c6, 0x0, 0x0, - 0xbfecccccccccccd4, 0x401a3474637b4310, + 0xbfecccccccccccc0, 0x401a3474637b4314, 0x0, 0x0, - 0xbfecccccccccccec, 0x40199f25a77413ee, + 0xbfecccccccccccbe, 0x40199f25a77413ee, 0x0, 0x0, - 0xbfeccccccccccccf, 0x401910387315cf64, + 0xbfecccccccccccd6, 0x401910387315cf5f, 0x0, 0x0, - 0xbfecccccccccccc2, 0x4018874599de2922, + 0xbfecccccccccccc2, 0x4018874599de291f, 0x0, 0x0, - 0xbfeccccccccccce0, 0x401803ee719fb2f8, + 0xbfeccccccccccd19, 0x401803ee719fb2e4, 0x0, 0x0, - 0xbfeccccccccccce7, 0x401785dbf6794895, + 0xbfecccccccccccce, 0x401785dbf6794898, 0x0, 0x0, - 0xbfecccccccccccb9, 0x40170cbe08f1fcac, + 0xbfeccccccccccccc, 0x40170cbe08f1fcaa, 0x0, 0x0, - 0xbfecccccccccccff, 0x4016984ac2abdd9a, + 0xbfecccccccccccb4, 0x4016984ac2abdd91, 0x0, 0x0, - 0xbfecccccccccccec, 0x4016283ddeaa8694, + 0xbfeccccccccccce6, 0x4016283ddeaa8690, 0x0, 0x0, - 0xbfecccccccccccf1, 0x4015bc58329dbd40, + 0xbfecccccccccccc4, 0x4015bc58329dbd44, 0x0, 0x0, - 0xbfecccccccccccf7, 0x4015545f37009d78, + 0xbfeccccccccccccc, 0x4015545f37009d74, 0x0, 0x0, - 0xbfeccccccccccd22, 0x4014f01c9c2e7b04, + 0xbfecccccccccccd2, 0x4014f01c9c2e7b03, 0x0, 0x0, - 0xbfeccccccccccca5, 0x40148f5dead26e9b, + 0xbfeccccccccccccc, 0x40148f5dead26e94, 0x0, 0x0, - 0xbfeccccccccccce9, 0x401431f42e4fb222, + 0xbfecccccccccccc6, 0x401431f42e4fb21f, 0x0, 0x0, - 0xbfeccccccccccd04, 0x4013d7b3a7f15676, + 0xbfeccccccccccccc, 0x4013d7b3a7f15677, 0x0, 0x0, - 0xbfeccccccccccd1a, 0x4013807389d8ecf5, + 0xbfecccccccccccd6, 0x4013807389d8ecf3, 0x0, 0x0, - 0xbfecccccccccccf8, 0x40132c0db8c6b664, + 0xbfeccccccccccccb, 0x40132c0db8c6b660, 0x0, 0x0, - 0xbfeccccccccccd0b, 0x4012da5e93f3c10b, + 0xbfecccccccccccab, 0x4012da5e93f3c106, 0x0, 0x0, - 0xbfecccccccccccc1, 0x40128b44c24feae5, + 0xbfecccccccccccac, 0x40128b44c24feade, 0x0, 0x0, - 0xbfeccccccccccd70, 0x40123ea1048babcc, + 0xbfecccccccccccb8, 0x40123ea1048bab9e, 0x0, 0x0, - 0xbfecccccccccccca, 0x4011f4560b686604, + 0xbfeccccccccccce0, 0x4011f4560b686606, 0x0, 0x0, - 0xbfecccccccccccc0, 0x4011ac4851da48ed, + 0xbfeccccccccccce0, 0x4011ac4851da48ee, 0x0, 0x0, - 0xbfecccccccccccd2, 0x4011665dfa94d838, + 0xbfeccccccccccccd, 0x4011665dfa94d835, 0x0, 0x0, - 0xbfecccccccccccbd, 0x4011227eb0a7696a, + 0xbfecccccccccccbe, 0x4011227eb0a76960, 0x0, 0x0, - 0xbfecccccccccccd6, 0x4010e0938ad977c0, + 0xbfecccccccccccc8, 0x4010e0938ad977c2, 0x0, 0x0, - 0xbfecccccccccccd6, 0x4010a086f17feb78, + 0xbfecccccccccccc2, 0x4010a086f17feb7e, 0x0, 0x0, - 0xbfecccccccccccf0, 0x40106244868c7b68, + 0xbfeccccccccccccc, 0x40106244868c7b64, 0x0, 0x0, - 0xbfeccccccccccce0, 0x401025b90f9f58d1, + 0xbfecccccccccccf4, 0x401025b90f9f58d4, 0x0, 0x0, - 0xbfecccccccccccf6, 0x400fd5a4c3d2fb60, + 0xbfecccccccccccc4, 0x400fd5a4c3d2fb79, 0x0, 0x0, - 0xbfecccccccccccd2, 0x400f62fe9f66ba1b, + 0xbfecccccccccccd0, 0x400f62fe9f66ba14, 0x0, 0x0, - 0xbfecccccccccccc9, 0x400ef35f2ec0ea82, + 0xbfecccccccccccce, 0x400ef35f2ec0ea7f, 0x0, 0x0, - 0xbfecccccccccccaf, 0x400e86a7a798e9a6, + 0xbfecccccccccccd1, 0x400e86a7a798e9a7, 0x0, 0x0, - 0xbfecccccccccccd9, 0x400e1cbadbc4a428, + 0xbfecccccccccccd2, 0x400e1cbadbc4a426, 0x0, 0x0, - 0xbfecccccccccccee, 0x400db57d1ea1f494, + 0xbfecccccccccccc4, 0x400db57d1ea1f49e, 0x0, 0x0, - 0xbfecccccccccccf6, 0x400d50d42c88432e, + 0xbfecccccccccccd4, 0x400d50d42c884333, 0x0, 0x0, - 0xbfeccccccccccd08, 0x400ceea714149635, + 0xbfeccccccccccca7, 0x400ceea714149622, 0x0, 0x0, - 0xbfeccccccccccce5, 0x400c8ede2126d2be, + 0xbfecccccccccccc3, 0x400c8ede2126d2b7, 0x0, 0x0, - 0xbfecccccccccccd7, 0x400c3162c96af901, + 0xbfecccccccccccbe, 0x400c3162c96af8f1, 0x0, 0x0, - 0xbfeccccccccccc9f, 0x400bd61f9a4cc190, + 0xbfeccccccccccccc, 0x400bd61f9a4cc196, 0x0, 0x0, - 0xbfeccccccccccce9, 0x400b7d0028373ce0, + 0xbfecccccccccccc0, 0x400b7d0028373cf3, 0x0, 0x0, - 0xbfeccccccccccce0, 0x400b25f0ff04f1b4, + 0xbfecccccccccccda, 0x400b25f0ff04f1be, 0x0, 0x0, - 0xbfecccccccccccd4, 0x400ad0df93878dca, + 0xbfecccccccccccce, 0x400ad0df93878dca, 0x0, 0x0, - 0xbfecccccccccccd0, 0x400a7dba3610895a, + 0xbfecccccccccccc8, 0x400a7dba3610894e, 0x0, 0x0, - 0xbfecccccccccccaa, 0x400a2c7005e62d94, + 0xbfecccccccccccc5, 0x400a2c7005e62d8e, 0x0, 0x0, - 0xbfecccccccccccfa, 0x4009dcf0e5924da8, + 0xbfecccccccccccc4, 0x4009dcf0e5924dab, 0x0, 0x0, - 0xbfeccccccccccccc, 0x40098f2d6ff9a910, + 0xbfecccccccccccb2, 0x40098f2d6ff9a914, 0x0, 0x0, - 0xbfeccccccccccccd, 0x40094316ee2c744c, + 0xbfecccccccccccc0, 0x40094316ee2c745b, 0x0, 0x0, - 0xbfecccccccccccee, 0x4008f89f4de1dc53, + 0xbfecccccccccccce, 0x4008f89f4de1dc60, 0x0, 0x0, - 0xbfecccccccccccc0, 0x4008afb9189194a6, + 0xbfecccccccccccd3, 0x4008afb91891949a, 0x0, 0x0, - 0xbfecccccccccccad, 0x400868576b1f9b83, + 0xbfecccccccccccc0, 0x400868576b1f9b88, 0x0, 0x0, - 0xbfecccccccccccbb, 0x4008226dee0f5f3c, + 0xbfeccccccccccce5, 0x4008226dee0f5f55, 0x0, 0x0, - 0xbfeccccccccccd51, 0x4007ddf0ce3458d8, + 0xbfecccccccccccf4, 0x4007ddf0ce3458d1, 0x0, 0x0, - 0xbfeccccccccccd36, 0x40079ad4b5d6ffb8, + 0xbfecccccccccccf4, 0x40079ad4b5d6ffd0, 0x0, 0x0, - 0xbfecccccccccccc4, 0x4007590ec645c29a, + 0xbfecccccccccccdb, 0x4007590ec645c299, 0x0, 0x0, - 0xbfeccccccccccc79, 0x4007189491ca4e68, + 0xbfecccccccccccc9, 0x4007189491ca4e66, 0x0, 0x0, - 0xbfecccccccccccfc, 0x4006d95c15fc1e53, + 0xbfecccccccccccb3, 0x4006d95c15fc1e5d, 0x0, 0x0, - 0xbfeccccccccccce2, 0x40069b5bb669d00e, + 0xbfecccccccccccb6, 0x40069b5bb669d018, 0x0, 0x0, - 0xbfecccccccccccc2, 0x40065e8a37934162, + 0xbfecccccccccccb6, 0x40065e8a37934162, 0x0, 0x0, - 0xbfecccccccccccd1, 0x400622deba2ef42a, + 0xbfecccccccccccc8, 0x400622deba2ef428, 0x0, 0x0, - 0xbfecccccccccccdc, 0x4005e850b6b59fca, + 0xbfecccccccccccbf, 0x4005e850b6b59fd3, 0x0, 0x0, - 0xbfecccccccccccb5, 0x4005aed7f92f3dde, + 0xbfeccccccccccce0, 0x4005aed7f92f3de4, 0x0, 0x0, - 0xbfecccccccccccd0, 0x4005766c9d3d3827, + 0xbfecccccccccccc5, 0x4005766c9d3d3824, 0x0, 0x0, - 0xbfecccccccccccdb, 0x40053f070a5db5b3, + 0xbfecccccccccccca, 0x40053f070a5db5b2, 0x0, 0x0, - 0xbfeccccccccccca5, 0x4005089ff0644d18, + 0xbfecccccccccccc1, 0x4005089ff0644d0d, 0x0, 0x0, - 0xbfecccccccccccc0, 0x4004d3304424a9ee, + 0xbfeccccccccccccc, 0x4004d3304424a9f0, 0x0, 0x0, - 0xbfeccccccccccca4, 0x40049eb13c4bf586, + 0xbfecccccccccccc4, 0x40049eb13c4bf58e, 0x0, 0x0, - 0xbfeccccccccccc9f, 0x40046b1c4e660ac3, + 0xbfeccccccccccce2, 0x40046b1c4e660abc, 0x0, 0x0, - 0xbfeccccccccccc6d, 0x4004386b2c0bb634, + 0xbfecccccccccccb2, 0x4004386b2c0bb635, 0x0, 0x0, - 0xbfecccccccccccaa, 0x40040697c0377524, + 0xbfecccccccccccc9, 0x40040697c0377526, 0x0, 0x0, - 0xbfeccccccccccced, 0x4003d59c2cbe51cc, + 0xbfecccccccccccce, 0x4003d59c2cbe51cc, 0x0, 0x0, - 0xbfeccccccccccccc, 0x4003a572c7eaaa54, + 0xbfecccccccccccca, 0x4003a572c7eaaa4d, 0x0, 0x0, - 0xbfecccccccccccc2, 0x400376161a36d14e, + 0xbfecccccccccccbc, 0x400376161a36d152, 0x0, 0x0, - 0xbfecccccccccccb8, 0x40034780dc25a09e, + 0xbfeccccccccccced, 0x40034780dc25a096, 0x0, 0x0, - 0xbfecccccccccccd5, 0x400319adf43733c6, + 0xbfecccccccccccbe, 0x400319adf43733d4, 0x0, 0x0, - 0xbfecccccccccccc5, 0x4002ec9874f821b2, + 0xbfecccccccccccdc, 0x4002ec9874f821ba, 0x0, 0x0, - 0xbfeccccccccccce7, 0x4002c03b9b29a6dd, + 0xbfecccccccccccc9, 0x4002c03b9b29a6e6, 0x0, 0x0, - 0xbfecccccccccccf2, 0x40029492cc014e90, + 0xbfecccccccccccf5, 0x40029492cc014e8c, 0x0, 0x0, - 0xbfeccccccccccccf, 0x40026999937ebfec, + 0xbfecccccccccccc1, 0x40026999937ebfec, 0x0, 0x0, - 0xbfecccccccccccde, 0x40023f4ba2d66a81, + 0xbfeccccccccccca5, 0x40023f4ba2d66a80, 0x0, 0x0, - 0xbfeccccccccccccf, 0x400215a4ceefe456, + 0xbfeccccccccccccd, 0x400215a4ceefe44f, 0x0, 0x0, - 0xbfecccccccccccf2, 0x4001eca10ef6dd96, + 0xbfecccccccccccbe, 0x4001eca10ef6dd8d, 0x0, 0x0, - 0xbfeccccccccccd0e, 0x4001c43c7afda054, + 0xbfecccccccccccda, 0x4001c43c7afda055, 0x0, 0x0, - 0xbfeccccccccccce9, 0x40019c734ab02434, + 0xbfeccccccccccc81, 0x40019c734ab0244b, 0x0, 0x0, - 0xbfeccccccccccd2b, 0x40017541d416cc99, + 0xbfeccccccccccbda, 0x40017541d416ccb4, 0x0, 0x0, - 0xbfecccccccccccc6, 0x40014ea48a67f7b2, + 0xbfeccccccccccc81, 0x40014ea48a67f7c6, 0x0, 0x0, - 0xbfeccccccccccd1e, 0x40012897fce78f0d, + 0xbfecccccccccccc8, 0x40012897fce78f0c, 0x0, 0x0, - 0xbfeccccccccccd01, 0x40010318d5d3dd5d, + 0xbfeccccccccccccc, 0x40010318d5d3dd58, 0x0, 0x0, - 0xbfeccccccccccc9f, 0x4000de23d95ef0e2, + 0xbfecccccccccccd4, 0x4000de23d95ef0d3, 0x0, 0x0, - 0xbfeccccccccccccc, 0x4000b9b5e4b3e1e8, + 0xbfecccccccccccdb, 0x4000b9b5e4b3e1ea, 0x0, 0x0, - 0xbfeccccccccccccd, 0x400095cbed075f1e, + 0xbfecccccccccccd0, 0x400095cbed075f1e, 0x0, 0x0, - 0xbfecccccccccccde, 0x40007262feb2e761, + 0xbfecccccccccccda, 0x40007262feb2e76a, 0x0, 0x0, - 0xbfeccccccccccce5, 0x40004f783c5a2589, + 0xbfecccccccccccd1, 0x40004f783c5a2594, 0x0, 0x0, - 0xbfecccccccccccd9, 0x40002d08de19e811, + 0xbfecccccccccccc0, 0x40002d08de19e80e, 0x0, 0x0, - 0xbfeccccccccccce1, 0x40000b1230c03800, + 0xbfecccccccccccd5, 0x40000b1230c037f7, 0x0, 0x0, - 0xbfecccccccccccab, 0x3fffd3232a1a3126, + 0xbfecccccccccccda, 0x3fffd3232a1a3120, 0x0, 0x0, - 0xbfeccccccccccc94, 0x3fff9108fdf702d6, + 0xbfeccccccccccce5, 0x3fff9108fdf702e0, 0x0, 0x0, - 0xbfeccccccccccce7, 0x3fff4fd0ea24510f, + 0xbfeccccccccccccb, 0x3fff4fd0ea24510b, 0x0, 0x0, - 0xbfecccccccccccf6, 0x3fff0f761f7775df, + 0xbfecccccccccccd3, 0x3fff0f761f7775e3, 0x0, 0x0, - 0xbfeccccccccccd01, 0x3ffecff3f14c4aef, + 0xbfeccccccccccce0, 0x3ffecff3f14c4acc, 0x0, 0x0, - 0xbfeccccccccccd0d, 0x3ffe9145d4512b45, + 0xbfeccccccccccca0, 0x3ffe9145d4512b49, 0x0, 0x0, - 0xbfeccccccccccce7, 0x3ffe53675d5fc05c, + 0xbfecccccccccccd0, 0x3ffe53675d5fc058, 0x0, 0x0, - 0xbfecccccccccccbd, 0x3ffe16544061f93a, + 0xbfecccccccccccdb, 0x3ffe16544061f94a, 0x0, 0x0, - 0xbfecccccccccccee, 0x3ffdda084f429a8f, + 0xbfecccccccccccdb, 0x3ffdda084f429a8b, 0x0, 0x0, - 0xbfecccccccccccca, 0x3ffd9e7f78e8d8ec, + 0xbfecccccccccccab, 0x3ffd9e7f78e8d8e7, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3ffd63b5c83e7820, + 0xbfecccccccccccd3, 0x3ffd63b5c83e780f, 0x0, 0x0, - 0xbfecccccccccccda, 0x3ffd29a7633ff2a6, + 0xbfecccccccccccd6, 0x3ffd29a7633ff2a6, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3ffcf0508a162f66, + 0xbfecccccccccccb9, 0x3ffcf0508a162f62, 0x0, 0x0, - 0xbfecccccccccccba, 0x3ffcb7ad96395760, + 0xbfeccccccccccca6, 0x3ffcb7ad96395790, 0x0, 0x0, - 0xbfecccccccccccbd, 0x3ffc7fbaf99c5f15, + 0xbfecccccccccccd1, 0x3ffc7fbaf99c5f10, 0x0, 0x0, - 0xbfecccccccccccf5, 0x3ffc48753de0dbe6, + 0xbfecccccccccccd0, 0x3ffc48753de0dbd8, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3ffc11d90392ca3c, + 0xbfecccccccccccd5, 0x3ffc11d90392ca41, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3ffbdbe3016be33e, + 0xbfecccccccccccd9, 0x3ffbdbe3016be33f, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3ffba690039e2f93, + 0xbfeccccccccccc9e, 0x3ffba690039e2f94, 0x0, 0x0, - 0xbfeccccccccccce5, 0x3ffb71dceb258288, + 0xbfecccccccccccd5, 0x3ffb71dceb25826f, 0x0, 0x0, - 0xbfecccccccccccca, 0x3ffb3dc6ad1f9144, + 0xbfeccccccccccceb, 0x3ffb3dc6ad1f9141, 0x0, 0x0, - 0xbfecccccccccccf8, 0x3ffb0a4a522a5a52, + 0xbfeccccccccccd48, 0x3ffb0a4a522a5a8b, 0x0, 0x0, - 0xbfeccccccccccced, 0x3ffad764f5c89821, + 0xbfeccccccccccd03, 0x3ffad764f5c8982b, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3ffaa513c5cbf934, + 0xbfecccccccccccaf, 0x3ffaa513c5cbf93f, 0x0, 0x0, - 0xbfecccccccccccb4, 0x3ffa735401c4e2f8, + 0xbfecccccccccccd2, 0x3ffa735401c4e2f6, 0x0, 0x0, - 0xbfeccccccccccca4, 0x3ffa4222fa777c83, + 0xbfecccccccccccc2, 0x3ffa4222fa777ca0, 0x0, 0x0, - 0xbfecccccccccccf7, 0x3ffa117e1155cd0c, + 0xbfecccccccccccf1, 0x3ffa117e1155cd10, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3ff9e162b7feb368, + 0xbfeccccccccccccd, 0x3ff9e162b7feb366, 0x0, 0x0, - 0xbfecccccccccccaf, 0x3ff9b1ce6fc184b1, + 0xbfecccccccccccdc, 0x3ff9b1ce6fc184a8, 0x0, 0x0, - 0xbfeccccccccccca4, 0x3ff982bec9261ec8, + 0xbfeccccccccccccb, 0x3ff982bec9261ec6, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3ff9543163794102, + 0xbfeccccccccccce8, 0x3ff95431637940dc, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3ff92623ec5cfac4, + 0xbfecccccccccccda, 0x3ff92623ec5cfad3, 0x0, 0x0, - 0xbfeccccccccccce3, 0x3ff8f8941f5d0a6e, + 0xbfecccccccccccd0, 0x3ff8f8941f5d0a72, 0x0, 0x0, - 0xbfecccccccccccb3, 0x3ff8cb7fc586fc80, + 0xbfecccccccccccf2, 0x3ff8cb7fc586fc70, 0x0, 0x0, - 0xbfecccccccccccbe, 0x3ff89ee4b505e9c7, + 0xbfecccccccccccd0, 0x3ff89ee4b505e9e6, 0x0, 0x0, - 0xbfecccccccccccb4, 0x3ff872c0d0c1adcb, + 0xbfecccccccccccd6, 0x3ff872c0d0c1adc7, 0x0, 0x0, - 0xbfecccccccccccbc, 0x3ff8471208016e1b, + 0xbfeccccccccccce4, 0x3ff8471208016e42, 0x0, 0x0, - 0xbfeccccccccccce1, 0x3ff81bd656115728, + 0xbfecccccccccccee, 0x3ff81bd656115714, 0x0, 0x0, - 0xbfeccccccccccca0, 0x3ff7f10bc1eb674c, + 0xbfecccccccccccda, 0x3ff7f10bc1eb6720, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3ff7c6b05de32f1c, + 0xbfecccccccccccda, 0x3ff7c6b05de32f0e, 0x0, 0x0, - 0xbfecccccccccccb6, 0x3ff79cc24754654d, + 0xbfecccccccccccd2, 0x3ff79cc247546544, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3ff7733fa654331c, + 0xbfecccccccccccda, 0x3ff7733fa65432e0, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3ff74a26ad651df3, + 0xbfecccccccccccda, 0x3ff74a26ad651dec, 0x0, 0x0, - 0xbfecccccccccccbb, 0x3ff72175992d77aa, + 0xbfecccccccccccbb, 0x3ff72175992d77a4, 0x0, 0x0, - 0xbfecccccccccccae, 0x3ff6f92ab03035b2, + 0xbfecccccccccccdc, 0x3ff6f92ab03035ac, 0x0, 0x0, - 0xbfeccccccccccd1e, 0x3ff6d14442881f52, + 0xbfeccccccccccc7e, 0x3ff6d14442881eec, 0x0, 0x0, - 0xbfeccccccccccd4b, 0x3ff6a9c0a9a53542, + 0xbfecccccccccccc5, 0x3ff6a9c0a9a53558, 0x0, 0x0, - 0xbfeccccccccccca7, 0x3ff6829e480c4657, + 0xbfeccccccccccccc, 0x3ff6829e480c4664, 0x0, 0x0, - 0xbfecccccccccccb7, 0x3ff65bdb89188fce, + 0xbfecccccccccccd4, 0x3ff65bdb89188fcc, 0x0, 0x0, - 0xbfeccccccccccd1d, 0x3ff63576e0bf609b, + 0xbfecccccccccccc4, 0x3ff63576e0bf6076, 0x0, 0x0, - 0xbfecccccccccccd3, 0x3ff60f6ecb55a804, + 0xbfeccccccccccccb, 0x3ff60f6ecb55a7ec, 0x0, 0x0, - 0xbfecccccccccccec, 0x3ff5e9c1cd575d7e, + 0xbfeccccccccccccc, 0x3ff5e9c1cd575d58, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3ff5c46e7330affa, + 0xbfeccccccccccca0, 0x3ff5c46e7330b000, 0x0, 0x0, - 0xbfeccccccccccc43, 0x3ff59f735108ef68, + 0xbfeccccccccccd54, 0x3ff59f735108ee96, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3ff57acf028f16fc, + 0xbfeccccccccccd07, 0x3ff57acf028f174e, 0x0, 0x0, - 0xbfeccccccccccd08, 0x3ff556802ac7fe33, + 0xbfecccccccccccbf, 0x3ff556802ac7fe2c, 0x0, 0x0, - 0xbfecccccccccccdd, 0x3ff5328573ddff04, + 0xbfecccccccccccd4, 0x3ff5328573ddfef3, 0x0, 0x0, - 0xbfeccccccccccd1b, 0x3ff50edd8ef2292b, + 0xbfecccccccccccda, 0x3ff50edd8ef2290e, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3ff4eb8733eedae2, + 0xbfecccccccccccad, 0x3ff4eb8733eedaf4, 0x0, 0x0, - 0xbfecccccccccccac, 0x3ff4c881215bbc32, + 0xbfecccccccccccbd, 0x3ff4c881215bbc3e, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3ff4a5ca1c330ef2, + 0xbfecccccccccccc0, 0x3ff4a5ca1c330f1a, 0x0, 0x0, - 0xbfeccccccccccd15, 0x3ff48360efb847c6, + 0xbfecccccccccccca, 0x3ff48360efb847c3, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3ff461446d4fe2e0, + 0xbfecccccccccccc7, 0x3ff461446d4fe2f2, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3ff43f736c586d42, + 0xbfecccccccccccc3, 0x3ff43f736c586d40, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3ff41decca04b247, + 0xbfeccccccccccccf, 0x3ff41decca04b252, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3ff3fcaf693709fe, + 0xbfecccccccccccf0, 0x3ff3fcaf69370a00, 0x0, 0x0, - 0xbfecccccccccccbf, 0x3ff3dbba325db82c, + 0xbfeccccccccccce6, 0x3ff3dbba325db82a, 0x0, 0x0, - 0xbfeccccccccccce7, 0x3ff3bb0c13505747, + 0xbfecccccccccccbe, 0x3ff3bb0c13505745, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3ff39aa3ff2e43e5, + 0xbfeccccccccccccd, 0x3ff39aa3ff2e43f5, 0x0, 0x0, - 0xbfeccccccccccc90, 0x3ff37a80ee3e00d2, + 0xbfeccccccccccd1e, 0x3ff37a80ee3e00f2, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3ff35aa1ddcd8bc2, + 0xbfecccccccccccd7, 0x3ff35aa1ddcd8bb6, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3ff33b05d013985a, + 0xbfecccccccccccc5, 0x3ff33b05d0139857, 0x0, 0x0, - 0xbfecccccccccccde, 0x3ff31babcc11ae76, + 0xbfecccccccccccca, 0x3ff31babcc11ae7f, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3ff2fc92dd771f62, + 0xbfeccccccccccc96, 0x3ff2fc92dd771f69, 0x0, 0x0, - 0xbfecccccccccccdf, 0x3ff2ddba1484cca1, + 0xbfecccccccccccd4, 0x3ff2ddba1484ccaf, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3ff2bf2085f1bbf0, + 0xbfecccccccccccdc, 0x3ff2bf2085f1bbe7, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3ff2a0c54ad06c8d, + 0xbfecccccccccccd3, 0x3ff2a0c54ad06c8e, 0x0, 0x0, - 0xbfeccccccccccd0d, 0x3ff282a78074ed3e, + 0xbfecccccccccccb4, 0x3ff282a78074ed1c, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3ff264c6485ba7cf, + 0xbfecccccccccccbf, 0x3ff264c6485ba7e4, 0x0, 0x0, - 0xbfecccccccccccb9, 0x3ff24720c810e0d6, + 0xbfecccccccccccd2, 0x3ff24720c810e0d8, 0x0, 0x0, - 0xbfecccccccccccce, 0x3ff229b62918e136, + 0xbfeccccccccccccc, 0x3ff229b62918e14b, 0x0, 0x0, - 0xbfecccccccccccf8, 0x3ff20c8598d8c815, + 0xbfeccccccccccceb, 0x3ff20c8598d8c80c, 0x0, 0x0, - 0xbfeccccccccccd04, 0x3ff1ef8e487ffd44, + 0xbfecccccccccccc2, 0x3ff1ef8e487ffd4c, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3ff1d2cf6cf240b2, + 0xbfeccccccccccce0, 0x3ff1d2cf6cf240b6, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3ff1b6483eb250ba, + 0xbfecccccccccccec, 0x3ff1b6483eb250ba, 0x0, 0x0, - 0xbfecccccccccccec, 0x3ff199f7f9cd237a, + 0xbfecccccccccccbe, 0x3ff199f7f9cd231d, 0x0, 0x0, - 0xbfeccccccccccd39, 0x3ff17dddddc5ac5e, + 0xbfeccccccccccd03, 0x3ff17dddddc5ac50, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3ff161f92d813090, + 0xbfeccccccccccccc, 0x3ff161f92d813098, 0x0, 0x0, - 0xbfecccccccccccce, 0x3ff146492f341940, + 0xbfecccccccccccd4, 0x3ff146492f34194f, 0x0, 0x0, - 0xbfecccccccccccf4, 0x3ff12acd2c4f4d57, + 0xbfeccccccccccca3, 0x3ff12acd2c4f4d74, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3ff10f84716e062a, + 0xbfecccccccccccd7, 0x3ff10f84716e0631, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3ff0f46e4e441cf4, + 0xbfeccccccccccce0, 0x3ff0f46e4e441cfa, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3ff0d98a158cd042, + 0xbfecccccccccccca, 0x3ff0d98a158cd040, 0x0, 0x0, - 0xbfecccccccccccb0, 0x3ff0bed71cf9f936, + 0xbfecccccccccccde, 0x3ff0bed71cf9f957, 0x0, 0x0, - 0xbfecccccccccccc1, 0x3ff0a454bd23b224, + 0xbfecccccccccccdc, 0x3ff0a454bd23b236, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3ff08a0251786608, + 0xbfecccccccccccd2, 0x3ff08a0251786602, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3ff06fdf382d4a0d, + 0xbfecccccccccccd1, 0x3ff06fdf382d4a18, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3ff055ead22f3c62, + 0xbfeccccccccccce6, 0x3ff055ead22f3c64, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3ff03c24831403d7, + 0xbfeccccccccccce2, 0x3ff03c24831403d2, 0x0, 0x0, - 0xbfecccccccccccca, 0x3ff0228bb10bf00b, + 0xbfecccccccccccaf, 0x3ff0228bb10bf00b, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3ff0091fc4d3d594, + 0xbfecccccccccccee, 0x3ff0091fc4d3d58f, 0x0, 0x0, - 0xbfeccccccccccda8, 0x3fefdfc0534ec7ee, + 0xbfecccccccccccb3, 0x3fefdfc0534ec797, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fefad989a67a546, + 0xbfecccccccccccb4, 0x3fefad989a67a505, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fef7bc73f15c6a6, + 0xbfeccccccccccce3, 0x3fef7bc73f15c6aa, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fef4a4b262c6ba8, + 0xbfecccccccccccd9, 0x3fef4a4b262c6bac, 0x0, 0x0, - 0xbfecccccccccccfa, 0x3fef19233915d7c0, + 0xbfecccccccccccae, 0x3fef19233915d7cc, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3feee84e65bb349c, + 0xbfeccccccccccce2, 0x3feee84e65bb34a8, 0x0, 0x0, - 0xbfecccccccccccdf, 0x3feeb7cb9e6d0d70, + 0xbfecccccccccccc5, 0x3feeb7cb9e6d0d4e, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fee8799d9cc58ec, + 0xbfecccccccccccee, 0x3fee8799d9cc58d0, 0x0, 0x0, - 0xbfeccccccccccce7, 0x3fee57b812b41514, + 0xbfecccccccccccdf, 0x3fee57b812b414e2, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3fee282548236acc, + 0xbfecccccccccccb8, 0x3fee282548236ae2, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fedf8e07d2859ac, + 0xbfecccccccccccec, 0x3fedf8e07d2859d0, 0x0, 0x0, - 0xbfecccccccccccc0, 0x3fedc9e8b8cae4d0, + 0xbfecccccccccccaf, 0x3fedc9e8b8cae4e8, 0x0, 0x0, - 0xbfecccccccccccea, 0x3fed9b3d05f8bf00, + 0xbfeccccccccccce7, 0x3fed9b3d05f8bf24, 0x0, 0x0, - 0xbfecccccccccccb8, 0x3fed6cdc73717428, + 0xbfecccccccccccf9, 0x3fed6cdc73717420, 0x0, 0x0, - 0xbfecccccccccccff, 0x3fed3ec613b30760, + 0xbfecccccccccccd6, 0x3fed3ec613b307a0, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3fed10f8fce70980, + 0xbfeccccccccccc85, 0x3fed10f8fce709e0, 0x0, 0x0, - 0xbfeccccccccccc60, 0x3fece37448d01f00, + 0xbfeccccccccccd17, 0x3fece37448d020a0, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fecb63714b7f39f, + 0xbfeccccccccccbc4, 0x3fecb63714b7f387, 0x0, 0x0, - 0xbfeccccccccccc45, 0x3fec8940815d9ba1, + 0xbfeccccccccccccc, 0x3fec8940815d9b38, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3fec5c8fb2e45b51, + 0xbfecccccccccccc7, 0x3fec5c8fb2e45b6f, 0x0, 0x0, - 0xbfeccccccccccd19, 0x3fec3023d0c2d84b, + 0xbfeccccccccccca9, 0x3fec3023d0c2d880, 0x0, 0x0, - 0xbfeccccccccccce6, 0x3fec03fc05b2a7f4, + 0xbfecccccccccccac, 0x3fec03fc05b2a7dc, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3febd8177fa04204, + 0xbfecccccccccccca, 0x3febd8177fa0420a, 0x0, 0x0, - 0xbfeccccccccccca4, 0x3febac756f9b5094, + 0xbfecccccccccccc8, 0x3febac756f9b50a6, 0x0, 0x0, - 0xbfecccccccccccc5, 0x3feb811509c75af1, + 0xbfecccccccccccba, 0x3feb811509c75ae0, 0x0, 0x0, - 0xbfecccccccccccee, 0x3feb55f5854cc771, + 0xbfecccccccccccce, 0x3feb55f5854cc7f1, 0x0, 0x0, - 0xbfecccccccccccaf, 0x3feb2b161c4a3902, + 0xbfecccccccccccd4, 0x3feb2b161c4a3919, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3feb00760bc6397f, + 0xbfecccccccccccce, 0x3feb00760bc63973, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fead61493a13cb0, + 0xbfecccccccccccb4, 0x3fead61493a13ce0, 0x0, 0x0, - 0xbfeccccccccccca3, 0x3feaabf0f687efc1, + 0xbfecccccccccccc2, 0x3feaabf0f687efd6, 0x0, 0x0, - 0xbfecccccccccccf0, 0x3fea820a79e5d6f4, + 0xbfeccccccccccce0, 0x3fea820a79e5d6f7, 0x0, 0x0, - 0xbfeccccccccccceb, 0x3fea586065d837a4, + 0xbfecccccccccccd7, 0x3fea586065d837de, 0x0, 0x0, - 0xbfeccccccccccd58, 0x3fea2ef205214c94, + 0xbfecccccccccccd0, 0x3fea2ef205214d72, 0x0, 0x0, - 0xbfeccccccccccc9d, 0x3fea05bea51bc0e6, + 0xbfecccccccccccda, 0x3fea05bea51bc102, 0x0, 0x0, - 0xbfecccccccccccda, 0x3fe9dcc595ae70c0, + 0xbfecccccccccccd7, 0x3fe9dcc595ae70b9, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fe9b406294070f2, + 0xbfecccccccccccd1, 0x3fe9b40629407103, 0x0, 0x0, - 0xbfecccccccccccf6, 0x3fe98b7fb4ad5706, + 0xbfecccccccccccc5, 0x3fe98b7fb4ad5769, 0x0, 0x0, - 0xbfeccccccccccce2, 0x3fe963318f39c296, + 0xbfecccccccccccc4, 0x3fe963318f39c2a3, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3fe93b1b12882557, + 0xbfecccccccccccb9, 0x3fe93b1b12882554, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3fe9133b9a8dc94e, + 0xbfecccccccccccd2, 0x3fe9133b9a8dc9d4, 0x0, 0x0, - 0xbfeccccccccccc28, 0x3fe8eb92858815f2, + 0xbfeccccccccccccc, 0x3fe8eb9285881628, 0x0, 0x0, - 0xbfeccccccccccc68, 0x3fe8c41f33f209b7, + 0xbfeccccccccccc95, 0x3fe8c41f33f20911, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fe89ce10879ef34, + 0xbfecccccccccccdf, 0x3fe89ce10879eeaf, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3fe875d767f75054, + 0xbfeccccccccccccd, 0x3fe875d767f75048, 0x0, 0x0, - 0xbfeccccccccccc66, 0x3fe84f01b961178e, + 0xbfecccccccccccc8, 0x3fe84f01b961175c, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fe8285f65c3e6d0, + 0xbfecccccccccccb0, 0x3fe8285f65c3e6ca, 0x0, 0x0, - 0xbfecccccccccccb5, 0x3fe801efd838a83c, + 0xbfecccccccccccbe, 0x3fe801efd838a822, 0x0, 0x0, - 0xbfecccccccccccb1, 0x3fe7dbb27ddb4b24, + 0xbfecccccccccccb8, 0x3fe7dbb27ddb4b46, 0x0, 0x0, - 0xbfecccccccccccfe, 0x3fe7b5a6c5c1b5da, + 0xbfecccccccccccf4, 0x3fe7b5a6c5c1b634, 0x0, 0x0, - 0xbfeccccccccccd0c, 0x3fe78fcc20f2e5ee, + 0xbfecccccccccccf7, 0x3fe78fcc20f2e5cb, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3fe76a22025e3cfd, + 0xbfecccccccccccdf, 0x3fe76a22025e3cde, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3fe744a7ded303ca, + 0xbfecccccccccccdb, 0x3fe744a7ded303ac, 0x0, 0x0, - 0xbfeccccccccccd50, 0x3fe71f5d2cf80e64, + 0xbfecccccccccccce, 0x3fe71f5d2cf80e64, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fe6fa4165439414, + 0xbfecccccccccccd1, 0x3fe6fa41654393f8, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fe6d55401f32e22, + 0xbfecccccccccccde, 0x3fe6d55401f32e10, 0x0, 0x0, - 0xbfecccccccccccbb, 0x3fe6b0947f040213, + 0xbfeccccccccccce0, 0x3fe6b0947f040217, 0x0, 0x0, - 0xbfeccccccccccc85, 0x3fe68c025a2b131a, + 0xbfeccccccccccd0a, 0x3fe68c025a2b12f8, 0x0, 0x0, - 0xbfeccccccccccca3, 0x3fe6679d12cdbae8, + 0xbfecccccccccccc4, 0x3fe6679d12cdbafc, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3fe6436429fa4aa5, + 0xbfecccccccccccc5, 0x3fe6436429fa4a8c, 0x0, 0x0, - 0xbfecccccccccccf1, 0x3fe61f572260cf3f, + 0xbfeccccccccccccb, 0x3fe61f572260cf68, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3fe5fb75804bfe31, + 0xbfecccccccccccd5, 0x3fe5fb75804bfe3a, 0x0, 0x0, - 0xbfeccccccccccca8, 0x3fe5d7bec99a41cc, + 0xbfecccccccccccc4, 0x3fe5d7bec99a41f7, 0x0, 0x0, - 0xbfecccccccccccb7, 0x3fe5b43285b6eba1, + 0xbfeccccccccccccb, 0x3fe5b43285b6ebbc, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3fe590d03d938895, + 0xbfeccccccccccce3, 0x3fe590d03d9388c0, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fe56d977ba155f8, + 0xbfeccccccccccd24, 0x3fe56d977ba1564e, 0x0, 0x0, - 0xbfecccccccccccbf, 0x3fe54a87cbcad983, + 0xbfecccccccccccaf, 0x3fe54a87cbcad999, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fe527a0bb6d94b2, + 0xbfecccccccccccc3, 0x3fe527a0bb6d9478, 0x0, 0x0, - 0xbfecccccccccccbc, 0x3fe504e1d953dad3, + 0xbfecccccccccccdf, 0x3fe504e1d953da98, 0x0, 0x0, - 0xbfecccccccccccf4, 0x3fe4e24ab5aec705, + 0xbfecccccccccccde, 0x3fe4e24ab5aec6ea, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fe4bfdae2104d4c, + 0xbfeccccccccccce5, 0x3fe4bfdae2104d51, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fe49d91f16567f1, + 0xbfecccccccccccdd, 0x3fe49d91f16567e8, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fe47b6f77f064e3, + 0xbfecccccccccccd5, 0x3fe47b6f77f064fe, 0x0, 0x0, - 0xbfecccccccccccf5, 0x3fe459730b434c8b, + 0xbfeccccccccccce1, 0x3fe459730b434ce4, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fe4379c423a64cb, + 0xbfeccccccccccc88, 0x3fe4379c423a64c0, 0x0, 0x0, - 0xbfecccccccccccbe, 0x3fe415eab4f6cd45, + 0xbfecccccccccccd6, 0x3fe415eab4f6cd4a, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fe3f45dfcd937d8, + 0xbfecccccccccccd3, 0x3fe3f45dfcd937c8, 0x0, 0x0, - 0xbfecccccccccccb6, 0x3fe3d2f5b47cb8ac, + 0xbfeccccccccccca8, 0x3fe3d2f5b47cb894, 0x0, 0x0, - 0xbfecccccccccccbe, 0x3fe3b1b177b1b0a8, + 0xbfecccccccccccb7, 0x3fe3b1b177b1b079, 0x0, 0x0, - 0xbfecccccccccccbf, 0x3fe39090e378ceec, + 0xbfecccccccccccc8, 0x3fe39090e378ceec, 0x0, 0x0, - 0xbfecccccccccccb1, 0x3fe36f9395fe2a78, + 0xbfecccccccccccb6, 0x3fe36f9395fe2a9a, 0x0, 0x0, - 0xbfeccccccccccc80, 0x3fe34eb92e9473d0, + 0xbfecccccccccccd8, 0x3fe34eb92e947327, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fe32e014db03d2c, + 0xbfecccccccccccfe, 0x3fe32e014db03cb2, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fe30d6b94e35728, + 0xbfecccccccccccd0, 0x3fe30d6b94e3572c, 0x0, 0x0, - 0xbfecccccccccccc1, 0x3fe2ecf7a6d845e0, + 0xbfeccccccccccce7, 0x3fe2ecf7a6d845fe, 0x0, 0x0, - 0xbfecccccccccccad, 0x3fe2cca5274dcad9, + 0xbfeccccccccccce1, 0x3fe2cca5274dcad0, 0x0, 0x0, - 0xbfecccccccccccb9, 0x3fe2ac73bb12810a, + 0xbfecccccccccccc1, 0x3fe2ac73bb128116, 0x0, 0x0, - 0xbfeccccccccccce3, 0x3fe28c6308009166, + 0xbfecccccccccccc6, 0x3fe28c630800916e, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fe26c72b4f97818, + 0xbfecccccccccccd0, 0x3fe26c72b4f97828, 0x0, 0x0, - 0xbfecccccccccccd3, 0x3fe24ca269e1df0a, + 0xbfecccccccccccf2, 0x3fe24ca269e1df1c, 0x0, 0x0, - 0xbfeccccccccccce7, 0x3fe22cf1cf9d8aeb, + 0xbfecccccccccccef, 0x3fe22cf1cf9d8b17, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fe20d60900b5a77, + 0xbfecccccccccccd2, 0x3fe20d60900b5a66, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3fe1edee560158e2, + 0xbfecccccccccccd3, 0x3fe1edee56015903, 0x0, 0x0, - 0xbfecccccccccccf3, 0x3fe1ce9acd48e2bb, + 0xbfecccccccccccbd, 0x3fe1ce9acd48e29c, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fe1af65a29ad9c5, + 0xbfecccccccccccce, 0x3fe1af65a29ad9c0, 0x0, 0x0, - 0xbfecccccccccccb1, 0x3fe1904e839becf7, + 0xbfecccccccccccca, 0x3fe1904e839bed0a, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fe171551ed8ef5e, + 0xbfecccccccccccd7, 0x3fe171551ed8ef66, 0x0, 0x0, - 0xbfeccccccccccc28, 0x3fe1527923c33fbc, + 0xbfecccccccccccd6, 0x3fe1527923c340aa, 0x0, 0x0, - 0xbfeccccccccccca4, 0x3fe133ba42ad42d4, + 0xbfecccccccccccac, 0x3fe133ba42ad42d6, 0x0, 0x0, - 0xbfecccccccccccc5, 0x3fe115182cc6e688, + 0xbfecccccccccccca, 0x3fe115182cc6e6ab, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fe0f692941a3e52, + 0xbfecccccccccccca, 0x3fe0f692941a3e6d, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3fe0d8292b882656, + 0xbfeccccccccccce5, 0x3fe0d8292b88265b, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fe0b9dba6c4f965, + 0xbfecccccccccccc7, 0x3fe0b9dba6c4f97e, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fe09ba9ba5554d7, + 0xbfecccccccccccd5, 0x3fe09ba9ba5554d9, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fe07d931b8ae9cd, + 0xbfeccccccccccce1, 0x3fe07d931b8ae9d7, 0x0, 0x0, - 0xbfeccccccccccceb, 0x3fe05f9780815dd5, + 0xbfecccccccccccd7, 0x3fe05f9780815dcf, 0x0, 0x0, - 0xbfeccccccccccc95, 0x3fe041b6a01b3713, + 0xbfecccccccccccb3, 0x3fe041b6a01b36fe, 0x0, 0x0, - 0xbfecccccccccccbb, 0x3fe023f031fed7e8, + 0xbfecccccccccccd2, 0x3fe023f031fed7e2, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fe00643ee93866e, + 0xbfecccccccccccd2, 0x3fe00643ee938663, 0x0, 0x0, - 0xbfeccccccccccd20, 0x3fdfd1631dfd017a, + 0xbfecccccccccccbe, 0x3fdfd1631dfd0098, 0x0, 0x0, - 0xbfecccccccccccb7, 0x3fdf96719a403aa8, + 0xbfecccccccccccd6, 0x3fdf96719a403aae, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fdf5bb2c721f5ce, + 0xbfecccccccccccbe, 0x3fdf5bb2c721f588, 0x0, 0x0, - 0xbfecccccccccccaa, 0x3fdf21261b3e6d48, + 0xbfecccccccccccbb, 0x3fdf21261b3e6d18, 0x0, 0x0, - 0xbfeccccccccccca9, 0x3fdee6cb0e976718, + 0xbfeccccccccccd92, 0x3fdee6cb0e9765e4, 0x0, 0x0, - 0xbfecccccccccccbc, 0x3fdeaca11a8ed36e, + 0xbfecccccccccccc1, 0x3fdeaca11a8ed2e0, 0x0, 0x0, - 0xbfeccccccccccced, 0x3fde72a7b9e186ce, + 0xbfecccccccccccc3, 0x3fde72a7b9e18722, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3fde38de68a2097c, + 0xbfecccccccccccd2, 0x3fde38de68a209a8, 0x0, 0x0, - 0xbfeccccccccccd16, 0x3fddff44a43376d0, + 0xbfecccccccccccc5, 0x3fddff44a4337766, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3fddc5d9eb447bb8, + 0xbfecccccccccccdd, 0x3fddc5d9eb447be0, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3fdd8c9dbdca6070, + 0xbfecccccccccccba, 0x3fdd8c9dbdca6058, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fdd538f9cfc2e00, + 0xbfeccccccccccce0, 0x3fdd538f9cfc2e04, 0x0, 0x0, - 0xbfeccccccccccd0b, 0x3fdd1aaf0b4de480, + 0xbfecccccccccccc1, 0x3fdd1aaf0b4de518, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fdce1fb8c6bc67c, + 0xbfecccccccccccb1, 0x3fdce1fb8c6bc6b2, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fdca974a535b254, + 0xbfecccccccccccc0, 0x3fdca974a535b282, 0x0, 0x0, - 0xbfeccccccccccce4, 0x3fdc7119dbba981c, + 0xbfecccccccccccca, 0x3fdc7119dbba9824, 0x0, 0x0, - 0xbfeccccccccccc6d, 0x3fdc38eab733f800, + 0xbfeccccccccccccb, 0x3fdc38eab733f92e, 0x0, 0x0, - 0xbfecccccccccccbd, 0x3fdc00e6c0017eca, + 0xbfecccccccccccd4, 0x3fdc00e6c0017ef4, 0x0, 0x0, - 0xbfecccccccccccc1, 0x3fdbc90d7fa4a1ac, + 0xbfecccccccccccd8, 0x3fdbc90d7fa4a180, 0x0, 0x0, - 0xbfecccccccccccc5, 0x3fdb915e80bc5f9a, + 0xbfecccccccccccc2, 0x3fdb915e80bc6020, 0x0, 0x0, - 0xbfeccccccccccca6, 0x3fdb59d94f010ba4, + 0xbfecccccccccccd7, 0x3fdb59d94f010abc, 0x0, 0x0, - 0xbfeccccccccccc6f, 0x3fdb227d77401d1e, + 0xbfeccccccccccc7c, 0x3fdb227d77401ce0, 0x0, 0x0, - 0xbfeccccccccccceb, 0x3fdaeb4a87582770, + 0xbfecccccccccccc9, 0x3fdaeb4a8758275c, 0x0, 0x0, - 0xbfecccccccccccc0, 0x3fdab4400e34cc84, + 0xbfeccccccccccccd, 0x3fdab4400e34cc74, 0x0, 0x0, - 0xbfecccccccccccf7, 0x3fda7d5d9bcac958, + 0xbfecccccccccccb3, 0x3fda7d5d9bcaca84, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3fda46a2c114152e, + 0xbfecccccccccccf1, 0x3fda46a2c1141546, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3fda100f100c0090, + 0xbfeccccccccccccc, 0x3fda100f100c006c, 0x0, 0x0, - 0xbfecccccccccccc0, 0x3fd9d9a21bab78ca, + 0xbfeccccccccccccf, 0x3fd9d9a21bab788c, 0x0, 0x0, - 0xbfeccccccccccc59, 0x3fd9a35b77e548f6, + 0xbfecccccccccccb5, 0x3fd9a35b77e54928, 0x0, 0x0, - 0xbfecccccccccccbd, 0x3fd96d3ab9a271d8, + 0xbfecccccccccccd2, 0x3fd96d3ab9a271a2, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3fd9373f76be8a30, + 0xbfeccccccccccce8, 0x3fd9373f76be8a40, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fd9016946043572, + 0xbfeccccccccccce8, 0x3fd90169460435d8, 0x0, 0x0, - 0xbfeccccccccccc94, 0x3fd8cbb7bf299e60, + 0xbfecccccccccccd8, 0x3fd8cbb7bf299ef8, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fd8962a7acd044c, + 0xbfecccccccccccbb, 0x3fd8962a7acd047e, 0x0, 0x0, - 0xbfeccccccccccd05, 0x3fd860c112715498, + 0xbfecccccccccccde, 0x3fd860c112715446, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fd82b7b207ad1b8, + 0xbfeccccccccccd0e, 0x3fd82b7b207ad0d2, 0x0, 0x0, - 0xbfeccccccccccc90, 0x3fd7f658402bc17e, + 0xbfecccccccccccd0, 0x3fd7f658402bc2cc, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fd7c1580da13438, + 0xbfeccccccccccc69, 0x3fd7c1580da1339a, 0x0, 0x0, - 0xbfeccccccccccce1, 0x3fd78c7a25cfc8a6, + 0xbfecccccccccccce, 0x3fd78c7a25cfc7cc, 0x0, 0x0, - 0xbfeccccccccccceb, 0x3fd757be268083c8, + 0xbfecccccccccccce, 0x3fd757be268083fc, 0x0, 0x0, - 0xbfeccccccccccca5, 0x3fd72323ae4db6ba, + 0xbfecccccccccccd0, 0x3fd72323ae4db670, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3fd6eeaa5c9fe7e4, + 0xbfecccccccccccc3, 0x3fd6eeaa5c9fe7da, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3fd6ba51d1aad084, + 0xbfeccccccccccce0, 0x3fd6ba51d1aad0b4, 0x0, 0x0, - 0xbfecccccccccccbc, 0x3fd68619ae6a5e46, + 0xbfecccccccccccdc, 0x3fd68619ae6a5de8, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fd65201949fc112, + 0xbfecccccccccccb1, 0x3fd65201949fc0bc, 0x0, 0x0, - 0xbfecccccccccccaf, 0x3fd61e0926ce8780, + 0xbfecccccccccccae, 0x3fd61e0926ce86dc, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3fd5ea300839bfbc, + 0xbfecccccccccccc5, 0x3fd5ea300839bfb0, 0x0, 0x0, - 0xbfecccccccccccad, 0x3fd5b675dce12790, + 0xbfeccccccccccccc, 0x3fd5b675dce12780, 0x0, 0x0, - 0xbfeccccccccccc98, 0x3fd582da497e62c8, + 0xbfecccccccccccbf, 0x3fd582da497e62e0, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3fd54f5cf3823d44, + 0xbfecccccccccccad, 0x3fd54f5cf3823d80, 0x0, 0x0, - 0xbfeccccccccccce3, 0x3fd51bfd8111f76c, + 0xbfeccccccccccccf, 0x3fd51bfd8111f794, 0x0, 0x0, - 0xbfecccccccccccfc, 0x3fd4e8bb9904995c, + 0xbfecccccccccccca, 0x3fd4e8bb99049950, 0x0, 0x0, - 0xbfecccccccccccff, 0x3fd4b596e2e05130, + 0xbfeccccccccccca2, 0x3fd4b596e2e05218, 0x0, 0x0, - 0xbfecccccccccccb1, 0x3fd4828f06d7dcd8, + 0xbfeccccccccccc88, 0x3fd4828f06d7dc38, 0x0, 0x0, - 0xbfecccccccccccb7, 0x3fd44fa3adc7f474, + 0xbfecccccccccccc1, 0x3fd44fa3adc7f440, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fd41cd48134c890, + 0xbfecccccccccccc5, 0x3fd41cd48134c890, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3fd3ea212b478138, + 0xbfecccccccccccbb, 0x3fd3ea212b478184, 0x0, 0x0, - 0xbfecccccccccccd3, 0x3fd3b78956cbc854, + 0xbfecccccccccccd9, 0x3fd3b78956cbc884, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fd3850caf2d5b60, + 0xbfeccccccccccccc, 0x3fd3850caf2d5b28, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fd352aae075a418, + 0xbfecccccccccccbf, 0x3fd352aae075a420, 0x0, 0x0, - 0xbfecccccccccccee, 0x3fd3206397495e90, + 0xbfecccccccccccc4, 0x3fd3206397495ea0, 0x0, 0x0, - 0xbfecccccccccccdf, 0x3fd2ee3680e63f74, + 0xbfecccccccccccd7, 0x3fd2ee3680e63f00, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3fd2bc234b20a6a4, + 0xbfecccccccccccce, 0x3fd2bc234b20a690, 0x0, 0x0, - 0xbfecccccccccccaf, 0x3fd28a29a4615a0c, + 0xbfeccccccccccccd, 0x3fd28a29a4615a24, 0x0, 0x0, - 0xbfecccccccccccc1, 0x3fd258493ba344a4, + 0xbfeccccccccccccd, 0x3fd258493ba34454, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fd22681c0713d1c, + 0xbfeccccccccccce8, 0x3fd22681c0713d74, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fd1f4d2e2e3d8b0, + 0xbfeccccccccccccd, 0x3fd1f4d2e2e3d894, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3fd1c33c539f3ba8, + 0xbfecccccccccccfb, 0x3fd1c33c539f3c04, 0x0, 0x0, - 0xbfeccccccccccd66, 0x3fd191bdc3d0fc98, + 0xbfecccccccccccde, 0x3fd191bdc3d0fcc0, 0x0, 0x0, - 0xbfecccccccccccfb, 0x3fd16056e52e0020, + 0xbfecccccccccccb0, 0x3fd16056e52e006c, 0x0, 0x0, - 0xbfecccccccccccf1, 0x3fd12f0769f06b44, + 0xbfeccccccccccccd, 0x3fd12f0769f06af8, 0x0, 0x0, - 0xbfecccccccccccf1, 0x3fd0fdcf04d58c10, + 0xbfecccccccccccd4, 0x3fd0fdcf04d58c48, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3fd0ccad691bd784, + 0xbfeccccccccccce3, 0x3fd0ccad691bd764, 0x0, 0x0, - 0xbfecccccccccccc5, 0x3fd09ba24a80e0fc, + 0xbfecccccccccccbe, 0x3fd09ba24a80e130, 0x0, 0x0, - 0xbfeccccccccccce1, 0x3fd06aad5d3f6168, + 0xbfecccccccccccd3, 0x3fd06aad5d3f61e0, 0x0, 0x0, - 0xbfecccccccccccf5, 0x3fd039ce560d3f74, + 0xbfecccccccccccd3, 0x3fd039ce560d3f5c, 0x0, 0x0, - 0xbfecccccccccccbd, 0x3fd00904ea199c90, + 0xbfeccccccccccca3, 0x3fd00904ea199bd8, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fcfb0a19e15d6f0, + 0xbfeccccccccccca6, 0x3fcfb0a19e15d810, 0x0, 0x0, - 0xbfecccccccccccf1, 0x3fcf4f6375fa19e0, + 0xbfecccccccccccc9, 0x3fcf4f6375fa1a30, 0x0, 0x0, - 0xbfecccccccccccda, 0x3fceee4ec8fed940, + 0xbfecccccccccccd9, 0x3fceee4ec8fed8f8, 0x0, 0x0, - 0xbfecccccccccccd9, 0x3fce8d6305264d60, + 0xbfeccccccccccccd, 0x3fce8d6305264e20, 0x0, 0x0, - 0xbfecccccccccccb9, 0x3fce2c9f99526ad0, + 0xbfecccccccccccb1, 0x3fce2c9f99526af8, 0x0, 0x0, - 0xbfecccccccccccbc, 0x3fcdcc03f5413d98, + 0xbfecccccccccccc3, 0x3fcdcc03f5413e18, 0x0, 0x0, - 0xbfeccccccccccc99, 0x3fcd6b8f89895508, + 0xbfecccccccccccb8, 0x3fcd6b8f898956a0, 0x0, 0x0, - 0xbfeccccccccccc66, 0x3fcd0b41c7963cf0, + 0xbfeccccccccccc7b, 0x3fcd0b41c7963dd0, 0x0, 0x0, - 0xbfecccccccccccf1, 0x3fccab1a21a4f460, + 0xbfecccccccccccb7, 0x3fccab1a21a4f430, 0x0, 0x0, - 0xbfecccccccccccbb, 0x3fcc4b180ac079c0, + 0xbfecccccccccccd7, 0x3fcc4b180ac07910, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fcbeb3af6be5de8, + 0xbfecccccccccccd3, 0x3fcbeb3af6be5e20, 0x0, 0x0, - 0xbfecccccccccccaf, 0x3fcb8b825a3b5ef8, + 0xbfeccccccccccccc, 0x3fcb8b825a3b6010, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fcb2bedaa980c88, + 0xbfecccccccccccfb, 0x3fcb2bedaa980c50, 0x0, 0x0, - 0xbfeccccccccccce2, 0x3fcacc7c5df56fe0, + 0xbfecccccccccccd9, 0x3fcacc7c5df57040, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3fca6d2deb31cb10, + 0xbfecccccccccccca, 0x3fca6d2deb31cab0, 0x0, 0x0, - 0xbfeccccccccccd08, 0x3fca0e01c9e55030, + 0xbfecccccccccccc2, 0x3fca0e01c9e54e00, 0x0, 0x0, - 0xbfecccccccccccf6, 0x3fc9aef7725eeb40, + 0xbfecccccccccccaa, 0x3fc9aef7725eeaf8, 0x0, 0x0, - 0xbfecccccccccccee, 0x3fc9500e5da11170, + 0xbfecccccccccccbc, 0x3fc9500e5da11170, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fc8f146055e99b0, + 0xbfeccccccccccccb, 0x3fc8f146055e9a50, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3fc8929de3f79a10, + 0xbfecccccccccccb8, 0x3fc8929de3f79a90, 0x0, 0x0, - 0xbfecccccccccccf0, 0x3fc8341574765200, + 0xbfecccccccccccd8, 0x3fc83415747651c0, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fc7d5ac328c1170, + 0xbfecccccccccccb6, 0x3fc7d5ac328c1120, 0x0, 0x0, - 0xbfeccccccccccd1c, 0x3fc777619a8e3a20, + 0xbfecccccccccccb0, 0x3fc777619a8e3aa0, 0x0, 0x0, - 0xbfecccccccccccb8, 0x3fc7193529733860, + 0xbfeccccccccccc84, 0x3fc7193529733810, 0x0, 0x0, - 0xbfecccccccccccbf, 0x3fc6bb265ccf8240, + 0xbfecccccccccccde, 0x3fc6bb265ccf8250, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3fc65d34b2d2ab20, + 0xbfecccccccccccbb, 0x3fc65d34b2d2ab50, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fc5ff5faa447690, + 0xbfecccccccccccb4, 0x3fc5ff5faa447710, 0x0, 0x0, - 0xbfeccccccccccc90, 0x3fc5a1a6c281ee70, + 0xbfecccccccccccdb, 0x3fc5a1a6c281ed80, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fc544097b7a7cc0, + 0xbfecccccccccccd0, 0x3fc544097b7a7cb0, 0x0, 0x0, - 0xbfecccccccccccc1, 0x3fc4e68755ad2130, + 0xbfecccccccccccc0, 0x3fc4e68755ad20d0, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fc4891fd2259100, + 0xbfecccccccccccc5, 0x3fc4891fd22590a0, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fc42bd272796f60, + 0xbfecccccccccccc2, 0x3fc42bd272796ef0, 0x0, 0x0, - 0xbfeccccccccccce3, 0x3fc3ce9eb8c584f0, + 0xbfecccccccccccd8, 0x3fc3ce9eb8c58550, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fc3718427aaff50, + 0xbfecccccccccccce, 0x3fc3718427aaff70, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fc31482424cb560, + 0xbfecccccccccccce, 0x3fc31482424cb540, 0x0, 0x0, - 0xbfeccccccccccca0, 0x3fc2b7988c4c7090, + 0xbfecccccccccccc8, 0x3fc2b7988c4c7120, 0x0, 0x0, - 0xbfeccccccccccca0, 0x3fc25ac689c83e70, + 0xbfeccccccccccca6, 0x3fc25ac689c83f60, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3fc1fe0bbf57c520, + 0xbfeccccccccccccc, 0x3fc1fe0bbf57c550, 0x0, 0x0, - 0xbfeccccccccccce6, 0x3fc1a167b20997b0, + 0xbfecccccccccccde, 0x3fc1a167b2099a30, 0x0, 0x0, - 0xbfeccccccccccc53, 0x3fc144d9e760a760, + 0xbfecccccccccccf6, 0x3fc144d9e760aaa0, 0x0, 0x0, - 0xbfeccccccccccc8f, 0x3fc0e861e5518fc0, + 0xbfecccccccccccbe, 0x3fc0e861e5519040, 0x0, 0x0, - 0xbfeccccccccccce2, 0x3fc08bff324011e0, + 0xbfecccccccccccd6, 0x3fc08bff32401030, 0x0, 0x0, - 0xbfeccccccccccce3, 0x3fc02fb154fc7540, + 0xbfecccccccccccb4, 0x3fc02fb154fc7580, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fbfa6efa9821a40, + 0xbfecccccccccccf0, 0x3fbfa6efa9821b80, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fbeeea4725f3dc0, + 0xbfeccccccccccd02, 0x3fbeeea4725f3c40, 0x0, 0x0, - 0xbfecccccccccccb7, 0x3fbe3680149dbfc0, + 0xbfecccccccccccd0, 0x3fbe3680149dbf80, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fbd7e81a10ffc00, + 0xbfecccccccccccda, 0x3fbd7e81a10ffb40, 0x0, 0x0, - 0xbfecccccccccccb7, 0x3fbcc6a829483500, + 0xbfeccccccccccc8d, 0x3fbcc6a829483800, 0x0, 0x0, - 0xbfeccccccccccc9a, 0x3fbc0ef2bf93b460, + 0xbfeccccccccccc94, 0x3fbc0ef2bf93b540, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fbb576076f5d7a0, + 0xbfeccccccccccccf, 0x3fbb576076f5d6c0, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3fba9ff063232c00, + 0xbfecccccccccccdc, 0x3fba9ff063232b60, 0x0, 0x0, - 0xbfeccccccccccc8e, 0x3fb9e8a1987ca8c0, + 0xbfecccccccccccf0, 0x3fb9e8a1987ca7c0, 0x0, 0x0, - 0xbfecccccccccccbf, 0x3fb931732c0ace80, + 0xbfeccccccccccce3, 0x3fb931732c0acc80, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fb87a643378dd80, + 0xbfecccccccccccc8, 0x3fb87a643378dd40, 0x0, 0x0, - 0xbfeccccccccccca0, 0x3fb7c373c5101940, + 0xbfeccccccccccce5, 0x3fb7c373c5101b40, 0x0, 0x0, - 0xbfeccccccccccc94, 0x3fb70ca0f7b30980, + 0xbfeccccccccccce4, 0x3fb70ca0f7b30f00, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fb655eae2d8c880, + 0xbfecccccccccccf6, 0x3fb655eae2d8cd80, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fb59f509e883e80, + 0xbfecccccccccccdd, 0x3fb59f509e883e00, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3fb4e8d143538c40, + 0xbfecccccccccccbe, 0x3fb4e8d143538bc0, 0x0, 0x0, - 0xbfecccccccccccaa, 0x3fb4326bea5366c0, + 0xbfecccccccccccb6, 0x3fb4326bea5364c0, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fb37c1fad2269c0, + 0xbfecccccccccccae, 0x3fb37c1fad226980, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fb2c5eba5d88f00, + 0xbfecccccccccccc8, 0x3fb2c5eba5d88ec0, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fb20fceef068d40, + 0xbfeccccccccccccb, 0x3fb20fceef068e00, 0x0, 0x0, - 0xbfecccccccccccf6, 0x3fb159c8a3b15640, + 0xbfeccccccccccca4, 0x3fb159c8a3b152c0, 0x0, 0x0, - 0xbfeccccccccccc9d, 0x3fb0a3d7df4d7380, + 0xbfeccccccccccccc, 0x3fb0a3d7df4d7440, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fafdbf77b754c80, + 0xbfecccccccccccce, 0x3fafdbf77b754d00, 0x0, 0x0, - 0xbfeccccccccccceb, 0x3fae7066b67e8980, + 0xbfecccccccccccd6, 0x3fae7066b67e8b00, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fad04fba907a300, + 0xbfeccccccccccccf, 0x3fad04fba907a000, 0x0, 0x0, - 0xbfeccccccccccc9a, 0x3fab99b48d1ce480, + 0xbfeccccccccccce3, 0x3fab99b48d1ce500, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3faa2e8f9d7d2100, + 0xbfecccccccccccdd, 0x3faa2e8f9d7d2200, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fa8c38b1590a800, + 0xbfecccccccccccd0, 0x3fa8c38b1590a600, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fa758a531607400, + 0xbfecccccccccccb8, 0x3fa758a531607700, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fa5eddc2d8d7600, + 0xbfeccccccccccce3, 0x3fa5eddc2d8d6c00, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fa4832e47478600, + 0xbfecccccccccccd5, 0x3fa4832e47478600, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fa31899bc44e100, + 0xbfecccccccccccc1, 0x3fa31899bc44e000, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3fa1ae1ccab93a00, + 0xbfecccccccccccc2, 0x3fa1ae1ccab93700, 0x0, 0x0, - 0xbfecccccccccccaa, 0x3fa043b5b14d0000, + 0xbfecccccccccccd2, 0x3fa043b5b14cfe00, 0x0, 0x0, - 0xbfecccccccccccdf, 0x3f9db2c55e296400, + 0xbfecccccccccccc7, 0x3f9db2c55e296400, 0x0, 0x0, - 0xbfecccccccccccec, 0x3f9ade4407104600, + 0xbfecccccccccccce, 0x3f9ade4407104200, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3f9809e3dcf39400, + 0xbfecccccccccccd5, 0x3f9809e3dcf39000, 0x0, 0x0, - 0xbfecccccccccccdf, 0x3f9535a1601c2400, + 0xbfeccccccccccca6, 0x3f9535a1601c2400, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3f92617911657400, + 0xbfecccccccccccbc, 0x3f92617911657400, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3f8f1acee4588000, + 0xbfecccccccccccd7, 0x3f8f1acee4587800, 0x0, 0x0, - 0xbfecccccccccccda, 0x3f8972d2087a7000, + 0xbfecccccccccccb3, 0x3f8972d2087a8000, 0x0, 0x0, - 0xbfecccccccccccb0, 0x3f83caf493882000, + 0xbfeccccccccccca9, 0x3f83caf493882000, 0x0, 0x0, - 0xbfecccccccccccdf, 0x3f7c465f14e6e000, + 0xbfecccccccccccd6, 0x3f7c465f14e70000, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3f70f6f7e54d8000, + 0xbfeccccccccccca5, 0x3f70f6f7e54e0000, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3f569e968f1c0000, + 0xbfeccccccccccc77, 0x3f569e968f180000, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbf569e968f1c0000, + 0xbfecccccccccccc7, 0xbf569e968f1c0000, 0x0, 0x0, - 0xbfecccccccccccbd, 0xbf70f6f7e54dc000, + 0xbfecccccccccccc3, 0xbf70f6f7e54e0000, 0x0, 0x0, - 0xbfecccccccccccd4, 0xbf7c465f14e6e000, + 0xbfecccccccccccd4, 0xbf7c465f14e6c000, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbf83caf493883000, + 0xbfeccccccccccce9, 0xbf83caf493883000, 0x0, 0x0, - 0xbfeccccccccccce0, 0xbf8972d2087a8000, + 0xbfecccccccccccec, 0xbf8972d2087a7000, 0x0, 0x0, - 0xbfecccccccccccba, 0xbf8f1acee4587000, + 0xbfecccccccccccbe, 0xbf8f1acee4587800, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbf92617911657000, + 0xbfecccccccccccca, 0xbf92617911657000, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbf9535a1601c2000, + 0xbfecccccccccccde, 0xbf9535a1601c2800, 0x0, 0x0, - 0xbfecccccccccccea, 0xbf9809e3dcf39400, + 0xbfecccccccccccf3, 0xbf9809e3dcf39000, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbf9ade4407104400, + 0xbfecccccccccccdc, 0xbf9ade4407104600, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbf9db2c55e295800, + 0xbfecccccccccccb9, 0xbf9db2c55e296200, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbfa043b5b14cfc00, + 0xbfecccccccccccc4, 0xbfa043b5b14d0000, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfa1ae1ccab93900, + 0xbfeccccccccccce8, 0xbfa1ae1ccab93a00, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfa31899bc44e200, + 0xbfecccccccccccdd, 0xbfa31899bc44e200, 0x0, 0x0, - 0xbfecccccccccccb3, 0xbfa4832e47478000, + 0xbfecccccccccccda, 0xbfa4832e47478600, 0x0, 0x0, - 0xbfecccccccccccb4, 0xbfa5eddc2d8d7300, + 0xbfecccccccccccd2, 0xbfa5eddc2d8d7500, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbfa758a531607300, + 0xbfecccccccccccc8, 0xbfa758a531607d00, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfa8c38b1590a600, + 0xbfecccccccccccc0, 0xbfa8c38b1590a600, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfaa2e8f9d7d2100, + 0xbfeccccccccccccf, 0xbfaa2e8f9d7d2200, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfab99b48d1ce800, + 0xbfecccccccccccda, 0xbfab99b48d1ce600, 0x0, 0x0, - 0xbfecccccccccccff, 0xbfad04fba907a100, + 0xbfecccccccccccbd, 0xbfad04fba907a300, 0x0, 0x0, - 0xbfecccccccccccba, 0xbfae7066b67e8980, + 0xbfecccccccccccc9, 0xbfae7066b67e8a80, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfafdbf77b754c80, + 0xbfecccccccccccc4, 0xbfafdbf77b754c80, 0x0, 0x0, - 0xbfecccccccccccad, 0xbfb0a3d7df4d74c0, + 0xbfecccccccccccd8, 0xbfb0a3d7df4d7580, 0x0, 0x0, - 0xbfecccccccccccef, 0xbfb159c8a3b153c0, + 0xbfecccccccccccd6, 0xbfb159c8a3b153c0, 0x0, 0x0, - 0xbfeccccccccccd03, 0xbfb20fceef068f40, + 0xbfecccccccccccda, 0xbfb20fceef068dc0, 0x0, 0x0, - 0xbfecccccccccccb8, 0xbfb2c5eba5d88e00, + 0xbfecccccccccccc1, 0xbfb2c5eba5d88e80, 0x0, 0x0, - 0xbfeccccccccccc84, 0xbfb37c1fad226800, + 0xbfecccccccccccee, 0xbfb37c1fad226980, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfb4326bea536440, + 0xbfecccccccccccf4, 0xbfb4326bea536480, 0x0, 0x0, - 0xbfeccccccccccca9, 0xbfb4e8d143538c40, + 0xbfeccccccccccce0, 0xbfb4e8d143538bc0, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfb59f509e883d00, + 0xbfecccccccccccce, 0xbfb59f509e883e80, 0x0, 0x0, - 0xbfeccccccccccc7c, 0xbfb655eae2d8cbc0, + 0xbfecccccccccccf0, 0xbfb655eae2d8ca00, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfb70ca0f7b31080, + 0xbfeccccccccccc8e, 0xbfb70ca0f7b30c80, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbfb7c373c5101b40, + 0xbfecccccccccccce, 0xbfb7c373c5101c40, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfb87a643378de00, + 0xbfecccccccccccdd, 0xbfb87a643378dd80, 0x0, 0x0, - 0xbfeccccccccccd1c, 0xbfb931732c0ac9c0, + 0xbfeccccccccccca8, 0xbfb931732c0acd80, 0x0, 0x0, - 0xbfeccccccccccce6, 0xbfb9e8a1987ca840, + 0xbfecccccccccccca, 0xbfb9e8a1987ca900, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfba9ff063232b40, + 0xbfecccccccccccd2, 0xbfba9ff063232ba0, 0x0, 0x0, - 0xbfecccccccccccf0, 0xbfbb576076f5d540, + 0xbfecccccccccccc9, 0xbfbb576076f5d6a0, 0x0, 0x0, - 0xbfecccccccccccff, 0xbfbc0ef2bf93b3a0, + 0xbfecccccccccccfa, 0xbfbc0ef2bf93b5a0, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbfbcc6a8294837e0, + 0xbfeccccccccccd02, 0xbfbcc6a8294836c0, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfbd7e81a10ffbe0, + 0xbfecccccccccccd4, 0xbfbd7e81a10ffb40, 0x0, 0x0, - 0xbfecccccccccccde, 0xbfbe3680149dc080, + 0xbfeccccccccccccc, 0xbfbe3680149dbf20, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfbeeea4725f3c60, + 0xbfeccccccccccce2, 0xbfbeeea4725f3da0, 0x0, 0x0, - 0xbfecccccccccccfc, 0xbfbfa6efa9821a20, + 0xbfecccccccccccb8, 0xbfbfa6efa9821c00, 0x0, 0x0, - 0xbfecccccccccccb2, 0xbfc02fb154fc75b0, + 0xbfecccccccccccc8, 0xbfc02fb154fc7550, 0x0, 0x0, - 0xbfecccccccccccb1, 0xbfc08bff32400e10, + 0xbfeccccccccccccc, 0xbfc08bff324010a0, 0x0, 0x0, - 0xbfecccccccccccfa, 0xbfc0e861e5518f90, + 0xbfeccccccccccc92, 0xbfc0e861e5519040, 0x0, 0x0, - 0xbfecccccccccccf6, 0xbfc144d9e760a8b0, + 0xbfeccccccccccce1, 0xbfc144d9e760a940, 0x0, 0x0, - 0xbfecccccccccccaf, 0xbfc1a167b2099ca0, + 0xbfecccccccccccc4, 0xbfc1a167b2099ab0, 0x0, 0x0, - 0xbfeccccccccccc9b, 0xbfc1fe0bbf57c4d0, + 0xbfecccccccccccda, 0xbfc1fe0bbf57c530, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbfc25ac689c83ec0, + 0xbfecccccccccccd4, 0xbfc25ac689c83f60, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfc2b7988c4c71d0, + 0xbfeccccccccccce8, 0xbfc2b7988c4c70c0, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbfc31482424cb570, + 0xbfeccccccccccce6, 0xbfc31482424cb530, 0x0, 0x0, - 0xbfeccccccccccced, 0xbfc3718427aaffc0, + 0xbfecccccccccccce, 0xbfc3718427aaff30, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfc3ce9eb8c58580, + 0xbfecccccccccccd4, 0xbfc3ce9eb8c584a0, 0x0, 0x0, - 0xbfeccccccccccce3, 0xbfc42bd272796ec0, + 0xbfecccccccccccc8, 0xbfc42bd272796e70, 0x0, 0x0, - 0xbfeccccccccccce7, 0xbfc4891fd2259080, + 0xbfecccccccccccde, 0xbfc4891fd2259120, 0x0, 0x0, - 0xbfeccccccccccce4, 0xbfc4e68755ad2170, + 0xbfecccccccccccbe, 0xbfc4e68755ad2120, 0x0, 0x0, - 0xbfecccccccccccfe, 0xbfc544097b7a7ce0, + 0xbfecccccccccccda, 0xbfc544097b7a7d20, 0x0, 0x0, - 0xbfecccccccccccac, 0xbfc5a1a6c281edb0, + 0xbfeccccccccccccb, 0xbfc5a1a6c281ecb0, 0x0, 0x0, - 0xbfecccccccccccdb, 0xbfc5ff5faa4476c0, + 0xbfeccccccccccce5, 0xbfc5ff5faa447730, 0x0, 0x0, - 0xbfecccccccccccc1, 0xbfc65d34b2d2ace0, + 0xbfeccccccccccce0, 0xbfc65d34b2d2ab50, 0x0, 0x0, - 0xbfeccccccccccd50, 0xbfc6bb265ccf8280, + 0xbfeccccccccccd0c, 0xbfc6bb265ccf7de0, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbfc71935297335c0, + 0xbfecccccccccccac, 0xbfc7193529733600, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfc777619a8e3a60, + 0xbfecccccccccccdc, 0xbfc777619a8e3a40, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfc7d5ac328c10c0, + 0xbfecccccccccccd1, 0xbfc7d5ac328c10e0, 0x0, 0x0, - 0xbfeccccccccccd05, 0xbfc8341574765240, + 0xbfeccccccccccc9c, 0xbfc8341574765130, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfc8929de3f79ae0, + 0xbfecccccccccccc2, 0xbfc8929de3f79b30, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfc8f146055e9a80, + 0xbfecccccccccccde, 0xbfc8f146055e9a08, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbfc9500e5da11290, + 0xbfecccccccccccd0, 0xbfc9500e5da11170, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfc9aef7725eeaa0, + 0xbfecccccccccccc0, 0xbfc9aef7725eea10, 0x0, 0x0, - 0xbfecccccccccccb4, 0xbfca0e01c9e54f60, + 0xbfeccccccccccce2, 0xbfca0e01c9e54ff0, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfca6d2deb31cab0, + 0xbfecccccccccccdc, 0xbfca6d2deb31cac0, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfcacc7c5df57028, + 0xbfecccccccccccc8, 0xbfcacc7c5df57010, 0x0, 0x0, - 0xbfecccccccccccf3, 0xbfcb2bedaa980c60, + 0xbfecccccccccccc1, 0xbfcb2bedaa980c50, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbfcb8b825a3b5eb8, + 0xbfecccccccccccc6, 0xbfcb8b825a3b5f58, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfcbeb3af6be5d40, + 0xbfeccccccccccccc, 0xbfcbeb3af6be5db0, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfcc4b180ac07808, + 0xbfecccccccccccde, 0xbfcc4b180ac07960, 0x0, 0x0, - 0xbfeccccccccccc9e, 0xbfccab1a21a4f030, + 0xbfeccccccccccd07, 0xbfccab1a21a4f428, 0x0, 0x0, - 0xbfecccccccccccb3, 0xbfcd0b41c7963de0, + 0xbfecccccccccccd1, 0xbfcd0b41c7963de0, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbfcd6b8f89895690, + 0xbfecccccccccccbc, 0xbfcd6b8f89895690, 0x0, 0x0, - 0xbfeccccccccccce3, 0xbfcdcc03f5413e00, + 0xbfecccccccccccba, 0xbfcdcc03f5413e20, 0x0, 0x0, - 0xbfecccccccccccf7, 0xbfce2c9f99526b28, + 0xbfecccccccccccd8, 0xbfce2c9f99526ad0, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfce8d6305264e38, + 0xbfeccccccccccccc, 0xbfce8d6305264dd0, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfceee4ec8fed900, + 0xbfecccccccccccc8, 0xbfceee4ec8fed928, 0x0, 0x0, - 0xbfeccccccccccca6, 0xbfcf4f6375fa1a20, + 0xbfecccccccccccce, 0xbfcf4f6375fa1a58, 0x0, 0x0, - 0xbfecccccccccccf4, 0xbfcfb0a19e15d6a8, + 0xbfeccccccccccceb, 0xbfcfb0a19e15d8a0, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbfd00904ea199bc4, + 0xbfeccccccccccce6, 0xbfd00904ea199b80, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfd039ce560d3f8c, + 0xbfecccccccccccda, 0xbfd039ce560d3f48, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbfd06aad5d3f6198, + 0xbfecccccccccccd6, 0xbfd06aad5d3f61c8, 0x0, 0x0, - 0xbfecccccccccccf0, 0xbfd09ba24a80e138, + 0xbfecccccccccccd6, 0xbfd09ba24a80e114, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfd0ccad691bd72c, + 0xbfeccccccccccccd, 0xbfd0ccad691bd724, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfd0fdcf04d58be8, + 0xbfecccccccccccd4, 0xbfd0fdcf04d58c20, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbfd12f0769f06b0c, + 0xbfecccccccccccbb, 0xbfd12f0769f06b28, 0x0, 0x0, - 0xbfeccccccccccc89, 0xbfd16056e52dff98, + 0xbfeccccccccccca4, 0xbfd16056e52e00e0, 0x0, 0x0, - 0xbfecccccccccccaa, 0xbfd191bdc3d0fcdc, + 0xbfecccccccccccf0, 0xbfd191bdc3d0fc84, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfd1c33c539f3c04, + 0xbfecccccccccccd1, 0xbfd1c33c539f3c58, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfd1f4d2e2e3d88c, + 0xbfeccccccccccccb, 0xbfd1f4d2e2e3d88c, 0x0, 0x0, - 0xbfeccccccccccc98, 0xbfd22681c0713d58, + 0xbfecccccccccccd9, 0xbfd22681c0713d48, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbfd258493ba34454, + 0xbfecccccccccccc2, 0xbfd258493ba34414, 0x0, 0x0, - 0xbfecccccccccccb2, 0xbfd28a29a4615a24, + 0xbfecccccccccccd2, 0xbfd28a29a4615a08, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbfd2bc234b20a6c0, + 0xbfecccccccccccd0, 0xbfd2bc234b20a688, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfd2ee3680e63f3c, + 0xbfecccccccccccd9, 0xbfd2ee3680e63f28, 0x0, 0x0, - 0xbfecccccccccccb7, 0xbfd3206397495e5c, + 0xbfecccccccccccbe, 0xbfd3206397495ecc, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfd352aae075a3f0, + 0xbfecccccccccccbf, 0xbfd352aae075a42c, 0x0, 0x0, - 0xbfecccccccccccbd, 0xbfd3850caf2d5b80, + 0xbfecccccccccccce, 0xbfd3850caf2d5b30, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbfd3b78956cbc89c, + 0xbfecccccccccccd3, 0xbfd3b78956cbc8b8, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfd3ea212b478190, + 0xbfecccccccccccc4, 0xbfd3ea212b4781b4, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfd41cd48134c8a4, + 0xbfecccccccccccdc, 0xbfd41cd48134c88c, 0x0, 0x0, - 0xbfeccccccccccced, 0xbfd44fa3adc7f438, + 0xbfecccccccccccbe, 0xbfd44fa3adc7f428, 0x0, 0x0, - 0xbfeccccccccccd4d, 0xbfd4828f06d7dcac, + 0xbfecccccccccccd8, 0xbfd4828f06d7dcc0, 0x0, 0x0, - 0xbfecccccccccccd4, 0xbfd4b596e2e051dc, + 0xbfecccccccccccf7, 0xbfd4b596e2e0527c, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbfd4e8bb99049990, + 0xbfecccccccccccc6, 0xbfd4e8bb990499b0, 0x0, 0x0, - 0xbfecccccccccccb4, 0xbfd51bfd8111f7bc, + 0xbfecccccccccccca, 0xbfd51bfd8111f798, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbfd54f5cf3823d34, + 0xbfeccccccccccce6, 0xbfd54f5cf3823d44, 0x0, 0x0, - 0xbfecccccccccccea, 0xbfd582da497e62dc, + 0xbfecccccccccccd1, 0xbfd582da497e6280, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfd5b675dce1279c, + 0xbfecccccccccccc6, 0xbfd5b675dce12794, 0x0, 0x0, - 0xbfeccccccccccce7, 0xbfd5ea300839bfc4, + 0xbfecccccccccccd0, 0xbfd5ea300839bfb0, 0x0, 0x0, - 0xbfeccccccccccd01, 0xbfd61e0926ce8796, + 0xbfecccccccccccd1, 0xbfd61e0926ce8734, 0x0, 0x0, - 0xbfeccccccccccce2, 0xbfd65201949fc0b0, + 0xbfecccccccccccef, 0xbfd65201949fc136, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbfd68619ae6a5e04, + 0xbfecccccccccccc3, 0xbfd68619ae6a5e24, 0x0, 0x0, - 0xbfeccccccccccd10, 0xbfd6ba51d1aad0be, + 0xbfecccccccccccd1, 0xbfd6ba51d1aad0d4, 0x0, 0x0, - 0xbfeccccccccccce5, 0xbfd6eeaa5c9fe7bc, + 0xbfecccccccccccaf, 0xbfd6eeaa5c9fe7c8, 0x0, 0x0, - 0xbfecccccccccccbc, 0xbfd72323ae4db6f4, + 0xbfecccccccccccec, 0xbfd72323ae4db636, 0x0, 0x0, - 0xbfeccccccccccca2, 0xbfd757be2680846c, + 0xbfecccccccccccc8, 0xbfd757be26808366, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbfd78c7a25cfc8e4, + 0xbfeccccccccccceb, 0xbfd78c7a25cfc81a, 0x0, 0x0, - 0xbfeccccccccccd17, 0xbfd7c1580da1359a, + 0xbfeccccccccccda2, 0xbfd7c1580da132ac, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfd7f658402bc090, + 0xbfeccccccccccd1d, 0xbfd7f658402bc15a, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbfd82b7b207acffa, + 0xbfecccccccccccce, 0xbfd82b7b207ad0d4, 0x0, 0x0, - 0xbfeccccccccccca5, 0xbfd860c1127153e8, + 0xbfecccccccccccce, 0xbfd860c11271542c, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfd8962a7acd03b2, + 0xbfeccccccccccce6, 0xbfd8962a7acd03a8, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfd8cbb7bf299e6c, + 0xbfecccccccccccfb, 0xbfd8cbb7bf299e92, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbfd90169460435d4, + 0xbfecccccccccccc4, 0xbfd90169460435a4, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfd9373f76be8a3e, + 0xbfecccccccccccbc, 0xbfd9373f76be8a40, 0x0, 0x0, - 0xbfeccccccccccceb, 0xbfd96d3ab9a270ba, + 0xbfeccccccccccce7, 0xbfd96d3ab9a2718c, 0x0, 0x0, - 0xbfecccccccccccf7, 0xbfd9a35b77e548d8, + 0xbfecccccccccccde, 0xbfd9a35b77e5483c, 0x0, 0x0, - 0xbfecccccccccccdd, 0xbfd9d9a21bab78e4, + 0xbfecccccccccccdb, 0xbfd9d9a21bab7878, 0x0, 0x0, - 0xbfecccccccccccbf, 0xbfda100f100c008e, + 0xbfecccccccccccd4, 0xbfda100f100c0060, 0x0, 0x0, - 0xbfeccccccccccd28, 0xbfda46a2c1141468, + 0xbfecccccccccccef, 0xbfda46a2c11414e0, 0x0, 0x0, - 0xbfecccccccccccb5, 0xbfda7d5d9bcaca14, + 0xbfecccccccccccd3, 0xbfda7d5d9bcaca54, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfdab4400e34cc84, + 0xbfecccccccccccc9, 0xbfdab4400e34cc64, 0x0, 0x0, - 0xbfecccccccccccbb, 0xbfdaeb4a875826f4, + 0xbfecccccccccccdc, 0xbfdaeb4a87582756, 0x0, 0x0, - 0xbfeccccccccccd15, 0xbfdb227d77401e74, + 0xbfeccccccccccce4, 0xbfdb227d77401d3c, 0x0, 0x0, - 0xbfeccccccccccd45, 0xbfdb59d94f010a70, + 0xbfeccccccccccd12, 0xbfdb59d94f010ace, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfdb915e80bc6098, + 0xbfeccccccccccce9, 0xbfdb915e80bc603a, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfdbc90d7fa4a194, + 0xbfecccccccccccc7, 0xbfdbc90d7fa4a174, 0x0, 0x0, - 0xbfecccccccccccaa, 0xbfdc00e6c0017db2, + 0xbfeccccccccccccb, 0xbfdc00e6c0017eb4, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbfdc38eab733f95a, + 0xbfecccccccccccc1, 0xbfdc38eab733f8e4, 0x0, 0x0, - 0xbfecccccccccccbc, 0xbfdc7119dbba97e8, + 0xbfeccccccccccccc, 0xbfdc7119dbba9808, 0x0, 0x0, - 0xbfecccccccccccbc, 0xbfdca974a535b296, + 0xbfecccccccccccd9, 0xbfdca974a535b282, 0x0, 0x0, - 0xbfecccccccccccfc, 0xbfdce1fb8c6bc6a0, + 0xbfecccccccccccac, 0xbfdce1fb8c6bc66e, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbfdd1aaf0b4de53c, + 0xbfecccccccccccef, 0xbfdd1aaf0b4de4f2, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfdd538f9cfc2e00, + 0xbfecccccccccccc6, 0xbfdd538f9cfc2e20, 0x0, 0x0, - 0xbfecccccccccccdd, 0xbfdd8c9dbdca6030, + 0xbfecccccccccccd1, 0xbfdd8c9dbdca6074, 0x0, 0x0, - 0xbfecccccccccccf7, 0xbfddc5d9eb447bf0, + 0xbfecccccccccccd3, 0xbfddc5d9eb447b94, 0x0, 0x0, - 0xbfeccccccccccccf, 0xbfddff44a4337724, + 0xbfecccccccccccb6, 0xbfddff44a4337748, 0x0, 0x0, - 0xbfecccccccccccb7, 0xbfde38de68a209ca, + 0xbfeccccccccccccb, 0xbfde38de68a209b4, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbfde72a7b9e18752, + 0xbfecccccccccccc5, 0xbfde72a7b9e186dc, 0x0, 0x0, - 0xbfecccccccccccac, 0xbfdeaca11a8ed31e, + 0xbfeccccccccccc60, 0xbfdeaca11a8ed3ac, 0x0, 0x0, - 0xbfeccccccccccced, 0xbfdee6cb0e9765ec, + 0xbfeccccccccccce1, 0xbfdee6cb0e976664, 0x0, 0x0, - 0xbfecccccccccccbd, 0xbfdf21261b3e6d28, + 0xbfecccccccccccd7, 0xbfdf21261b3e6ccc, 0x0, 0x0, - 0xbfecccccccccccba, 0xbfdf5bb2c721f570, + 0xbfecccccccccccea, 0xbfdf5bb2c721f5b8, 0x0, 0x0, - 0xbfeccccccccccd0e, 0xbfdf96719a403aa4, + 0xbfecccccccccccac, 0xbfdf96719a403b08, 0x0, 0x0, - 0xbfecccccccccccfb, 0xbfdfd1631dfd00e2, + 0xbfeccccccccccccf, 0xbfdfd1631dfd00d0, 0x0, 0x0, - 0xbfeccccccccccce5, 0xbfe00643ee938668, + 0xbfecccccccccccdf, 0xbfe00643ee938664, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfe023f031fed802, + 0xbfecccccccccccc8, 0xbfe023f031fed7e9, 0x0, 0x0, - 0xbfecccccccccccb4, 0xbfe041b6a01b36f9, + 0xbfeccccccccccced, 0xbfe041b6a01b370c, 0x0, 0x0, - 0xbfecccccccccccf8, 0xbfe05f9780815dab, + 0xbfecccccccccccf2, 0xbfe05f9780815da7, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfe07d931b8ae9c8, + 0xbfecccccccccccce, 0xbfe07d931b8ae9da, 0x0, 0x0, - 0xbfecccccccccccc1, 0xbfe09ba9ba5554ec, + 0xbfecccccccccccc4, 0xbfe09ba9ba5554cd, 0x0, 0x0, - 0xbfeccccccccccce1, 0xbfe0b9dba6c4f9a8, + 0xbfecccccccccccce, 0xbfe0b9dba6c4f969, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfe0d8292b882652, + 0xbfeccccccccccce4, 0xbfe0d8292b88267c, 0x0, 0x0, - 0xbfecccccccccccb6, 0xbfe0f692941a3e62, + 0xbfecccccccccccce, 0xbfe0f692941a3e6a, 0x0, 0x0, - 0xbfecccccccccccaa, 0xbfe115182cc6e67a, + 0xbfecccccccccccbe, 0xbfe115182cc6e6a4, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfe133ba42ad426d, + 0xbfeccccccccccce6, 0xbfe133ba42ad4277, 0x0, 0x0, - 0xbfecccccccccccf8, 0xbfe1527923c34008, + 0xbfeccccccccccd00, 0xbfe1527923c33ff9, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbfe171551ed8ef34, + 0xbfeccccccccccccc, 0xbfe171551ed8ef57, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfe1904e839bece6, + 0xbfecccccccccccc2, 0xbfe1904e839bed07, 0x0, 0x0, - 0xbfecccccccccccf6, 0xbfe1af65a29ad9cc, + 0xbfecccccccccccc0, 0xbfe1af65a29ad9e7, 0x0, 0x0, - 0xbfecccccccccccb5, 0xbfe1ce9acd48e2ca, + 0xbfecccccccccccc6, 0xbfe1ce9acd48e2d8, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbfe1edee560158f5, + 0xbfecccccccccccd3, 0xbfe1edee560158e7, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfe20d60900b5a64, + 0xbfecccccccccccc8, 0xbfe20d60900b5a68, 0x0, 0x0, - 0xbfeccccccccccc86, 0xbfe22cf1cf9d8b1c, + 0xbfecccccccccccb2, 0xbfe22cf1cf9d8af0, 0x0, 0x0, - 0xbfecccccccccccbf, 0xbfe24ca269e1df35, + 0xbfeccccccccccca5, 0xbfe24ca269e1df35, 0x0, 0x0, - 0xbfeccccccccccce7, 0xbfe26c72b4f9783e, + 0xbfecccccccccccc0, 0xbfe26c72b4f9782f, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbfe28c6308009194, + 0xbfecccccccccccd0, 0xbfe28c6308009160, 0x0, 0x0, - 0xbfecccccccccccbd, 0xbfe2ac73bb12814a, + 0xbfeccccccccccce0, 0xbfe2ac73bb12810d, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfe2cca5274dcabc, + 0xbfeccccccccccccf, 0xbfe2cca5274dcabf, 0x0, 0x0, - 0xbfecccccccccccac, 0xbfe2ecf7a6d845f4, + 0xbfecccccccccccbc, 0xbfe2ecf7a6d845f3, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfe30d6b94e35704, + 0xbfecccccccccccec, 0xbfe30d6b94e356d0, 0x0, 0x0, - 0xbfeccccccccccbff, 0xbfe32e014db03d10, + 0xbfecccccccccccc0, 0xbfe32e014db03d77, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfe34eb92e94741c, + 0xbfeccccccccccc87, 0xbfe34eb92e9474bc, 0x0, 0x0, - 0xbfecccccccccccbc, 0xbfe36f9395fe2a82, + 0xbfecccccccccccb3, 0xbfe36f9395fe2a98, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbfe39090e378cee3, + 0xbfecccccccccccb0, 0xbfe39090e378cef0, 0x0, 0x0, - 0xbfecccccccccccf3, 0xbfe3b1b177b1b0b2, + 0xbfecccccccccccda, 0xbfe3b1b177b1b0a0, 0x0, 0x0, - 0xbfecccccccccccbb, 0xbfe3d2f5b47cb8a5, + 0xbfecccccccccccd1, 0xbfe3d2f5b47cb8a0, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfe3f45dfcd937bd, + 0xbfeccccccccccce9, 0xbfe3f45dfcd937b4, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfe415eab4f6cd3c, + 0xbfecccccccccccd4, 0xbfe415eab4f6cd39, 0x0, 0x0, - 0xbfeccccccccccd05, 0xbfe4379c423a64cc, + 0xbfecccccccccccb6, 0xbfe4379c423a64ce, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfe459730b434cc9, + 0xbfeccccccccccd13, 0xbfe459730b434ccc, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbfe47b6f77f064e4, + 0xbfecccccccccccd3, 0xbfe47b6f77f064e7, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbfe49d91f16567fa, + 0xbfecccccccccccd7, 0xbfe49d91f16567dc, 0x0, 0x0, - 0xbfecccccccccccfd, 0xbfe4bfdae2104d34, + 0xbfecccccccccccd8, 0xbfe4bfdae2104d4c, 0x0, 0x0, - 0xbfecccccccccccdb, 0xbfe4e24ab5aec6e0, + 0xbfecccccccccccc2, 0xbfe4e24ab5aec6f8, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbfe504e1d953da9a, + 0xbfecccccccccccd2, 0xbfe504e1d953da9a, 0x0, 0x0, - 0xbfeccccccccccca8, 0xbfe527a0bb6d9452, + 0xbfecccccccccccd5, 0xbfe527a0bb6d9486, 0x0, 0x0, - 0xbfeccccccccccce4, 0xbfe54a87cbcad9bf, + 0xbfeccccccccccc86, 0xbfe54a87cbcad9ec, 0x0, 0x0, - 0xbfecccccccccccb8, 0xbfe56d977ba156f4, + 0xbfeccccccccccce7, 0xbfe56d977ba156d7, 0x0, 0x0, - 0xbfeccccccccccce1, 0xbfe590d03d938890, + 0xbfeccccccccccccd, 0xbfe590d03d9388be, 0x0, 0x0, - 0xbfecccccccccccb2, 0xbfe5b43285b6eba1, + 0xbfecccccccccccce, 0xbfe5b43285b6ebb2, 0x0, 0x0, - 0xbfecccccccccccdf, 0xbfe5d7bec99a41eb, + 0xbfecccccccccccda, 0xbfe5d7bec99a41ee, 0x0, 0x0, - 0xbfecccccccccccf3, 0xbfe5fb75804bfe72, + 0xbfecccccccccccd8, 0xbfe5fb75804bfe62, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbfe61f572260cf80, + 0xbfeccccccccccccc, 0xbfe61f572260cf6e, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfe6436429fa4a7a, + 0xbfeccccccccccccf, 0xbfe6436429fa4a8f, 0x0, 0x0, - 0xbfeccccccccccce9, 0xbfe6679d12cdbb4c, + 0xbfecccccccccccd4, 0xbfe6679d12cdbab5, 0x0, 0x0, - 0xbfeccccccccccd08, 0xbfe68c025a2b1316, + 0xbfecccccccccccbf, 0xbfe68c025a2b131b, 0x0, 0x0, - 0xbfecccccccccccb1, 0xbfe6b0947f04021f, + 0xbfecccccccccccd2, 0xbfe6b0947f040223, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbfe6d55401f32e3b, + 0xbfecccccccccccd8, 0xbfe6d55401f32e2e, 0x0, 0x0, - 0xbfeccccccccccd00, 0xbfe6fa4165439436, + 0xbfeccccccccccccb, 0xbfe6fa41654393fb, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfe71f5d2cf80e61, + 0xbfecccccccccccba, 0xbfe71f5d2cf80e6f, 0x0, 0x0, - 0xbfecccccccccccfa, 0xbfe744a7ded303b3, + 0xbfecccccccccccc0, 0xbfe744a7ded303dc, 0x0, 0x0, - 0xbfeccccccccccd0b, 0xbfe76a22025e3c85, + 0xbfecccccccccccc4, 0xbfe76a22025e3ce5, 0x0, 0x0, - 0xbfeccccccccccc94, 0xbfe78fcc20f2e524, + 0xbfecccccccccccce, 0xbfe78fcc20f2e58a, 0x0, 0x0, - 0xbfeccccccccccc71, 0xbfe7b5a6c5c1b513, + 0xbfecccccccccccbb, 0xbfe7b5a6c5c1b598, 0x0, 0x0, - 0xbfeccccccccccca8, 0xbfe7dbb27ddb4b28, + 0xbfecccccccccccc4, 0xbfe7dbb27ddb4b47, 0x0, 0x0, - 0xbfecccccccccccf6, 0xbfe801efd838a831, + 0xbfecccccccccccb4, 0xbfe801efd838a82e, 0x0, 0x0, - 0xbfeccccccccccc64, 0xbfe8285f65c3e68e, + 0xbfeccccccccccccb, 0xbfe8285f65c3e6a9, 0x0, 0x0, - 0xbfeccccccccccd0c, 0xbfe84f01b961175c, + 0xbfecccccccccccbf, 0xbfe84f01b9611762, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfe875d767f75070, + 0xbfecccccccccccc8, 0xbfe875d767f75064, 0x0, 0x0, - 0xbfecccccccccccab, 0xbfe89ce10879ee3c, + 0xbfecccccccccccca, 0xbfe89ce10879eebf, 0x0, 0x0, - 0xbfeccccccccccda0, 0xbfe8c41f33f208cc, + 0xbfecccccccccccce, 0xbfe8c41f33f20946, 0x0, 0x0, - 0xbfeccccccccccd29, 0xbfe8eb92858816a8, + 0xbfecccccccccccec, 0xbfe8eb928588163c, 0x0, 0x0, - 0xbfeccccccccccc91, 0xbfe9133b9a8dca80, + 0xbfecccccccccccca, 0xbfe9133b9a8dc9e4, 0x0, 0x0, - 0xbfeccccccccccca5, 0xbfe93b1b12882572, + 0xbfecccccccccccd1, 0xbfe93b1b1288255f, 0x0, 0x0, - 0xbfeccccccccccce2, 0xbfe963318f39c2e4, + 0xbfecccccccccccce, 0xbfe963318f39c2af, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfe98b7fb4ad577e, + 0xbfecccccccccccea, 0xbfe98b7fb4ad5753, 0x0, 0x0, - 0xbfecccccccccccf2, 0xbfe9b4062940711e, + 0xbfecccccccccccd7, 0xbfe9b406294070fe, 0x0, 0x0, - 0xbfeccccccccccd10, 0xbfe9dcc595ae70a8, + 0xbfecccccccccccbe, 0xbfe9dcc595ae70ae, 0x0, 0x0, - 0xbfeccccccccccdb8, 0xbfea05bea51bc0fe, + 0xbfecccccccccccd3, 0xbfea05bea51bc0e7, 0x0, 0x0, - 0xbfeccccccccccd2a, 0xbfea2ef205214d26, + 0xbfecccccccccccc4, 0xbfea2ef205214d25, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbfea586065d837e6, + 0xbfecccccccccccd3, 0xbfea586065d837fa, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfea820a79e5d6e8, + 0xbfecccccccccccc9, 0xbfea820a79e5d6fc, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfeaabf0f687efd0, + 0xbfecccccccccccce, 0xbfeaabf0f687efec, 0x0, 0x0, - 0xbfecccccccccccf6, 0xbfead61493a13cbc, + 0xbfeccccccccccce2, 0xbfead61493a13ca8, 0x0, 0x0, - 0xbfecccccccccccdf, 0xbfeb00760bc63970, + 0xbfecccccccccccc5, 0xbfeb00760bc6397e, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfeb2b161c4a390c, + 0xbfecccccccccccce, 0xbfeb2b161c4a3910, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbfeb55f5854cc814, + 0xbfecccccccccccbf, 0xbfeb55f5854cc7a2, 0x0, 0x0, - 0xbfecccccccccccbb, 0xbfeb811509c75a8c, + 0xbfecccccccccccb8, 0xbfeb811509c75a82, 0x0, 0x0, - 0xbfecccccccccccfa, 0xbfebac756f9b50ac, + 0xbfeccccccccccccc, 0xbfebac756f9b5090, 0x0, 0x0, - 0xbfeccccccccccd00, 0xbfebd8177fa04210, + 0xbfecccccccccccaf, 0xbfebd8177fa041e8, 0x0, 0x0, - 0xbfecccccccccccaa, 0xbfec03fc05b2a800, + 0xbfeccccccccccce7, 0xbfec03fc05b2a7e4, 0x0, 0x0, - 0xbfecccccccccccf8, 0xbfec3023d0c2d868, + 0xbfecccccccccccb9, 0xbfec3023d0c2d820, 0x0, 0x0, - 0xbfecccccccccccff, 0xbfec5c8fb2e45b60, + 0xbfeccccccccccc96, 0xbfec5c8fb2e45b60, 0x0, 0x0, - 0xbfeccccccccccd69, 0xbfec8940815d9b00, + 0xbfeccccccccccd05, 0xbfec8940815d9b60, 0x0, 0x0, - 0xbfecccccccccce60, 0xbfecb63714b7f300, + 0xbfeccccccccccd17, 0xbfecb63714b7f2a0, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfece37448d01f9f, + 0xbfeccccccccccdc4, 0xbfece37448d01f87, 0x0, 0x0, - 0xbfeccccccccccd45, 0xbfed10f8fce709a1, + 0xbfeccccccccccccc, 0xbfed10f8fce70a38, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfed3ec613b307d1, + 0xbfecccccccccccc7, 0xbfed3ec613b3076f, 0x0, 0x0, - 0xbfeccccccccccc99, 0xbfed6cdc7371740b, + 0xbfeccccccccccce9, 0xbfed6cdc73717400, 0x0, 0x0, - 0xbfeccccccccccce6, 0xbfed9b3d05f8bf34, + 0xbfecccccccccccec, 0xbfed9b3d05f8bf5c, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfedc9e8b8cae4c4, + 0xbfecccccccccccca, 0xbfedc9e8b8cae4ca, 0x0, 0x0, - 0xbfeccccccccccce4, 0xbfedf8e07d2859d4, + 0xbfecccccccccccc8, 0xbfedf8e07d2859c6, 0x0, 0x0, - 0xbfeccccccccccd05, 0xbfee282548236ab1, + 0xbfecccccccccccfa, 0xbfee282548236ae0, 0x0, 0x0, - 0xbfecccccccccccae, 0xbfee57b812b414f1, + 0xbfecccccccccccce, 0xbfee57b812b414f1, 0x0, 0x0, - 0xbfecccccccccccef, 0xbfee8799d9cc58d2, + 0xbfecccccccccccd4, 0xbfee8799d9cc58d9, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbfeeb7cb9e6d0d4f, + 0xbfecccccccccccce, 0xbfeeb7cb9e6d0d73, 0x0, 0x0, - 0xbfeccccccccccca5, 0xbfeee84e65bb34a0, + 0xbfecccccccccccd4, 0xbfeee84e65bb34c0, 0x0, 0x0, - 0xbfeccccccccccce3, 0xbfef19233915d7b1, + 0xbfecccccccccccb2, 0xbfef19233915d7b6, 0x0, 0x0, - 0xbfeccccccccccce0, 0xbfef4a4b262c6bc4, + 0xbfecccccccccccd0, 0xbfef4a4b262c6bb7, 0x0, 0x0, - 0xbfecccccccccccfb, 0xbfef7bc73f15c6b4, + 0xbfecccccccccccc7, 0xbfef7bc73f15c69e, 0x0, 0x0, - 0xbfecccccccccccf8, 0xbfefad989a67a524, + 0xbfecccccccccccf0, 0xbfefad989a67a542, 0x0, 0x0, - 0xbfecccccccccccbd, 0xbfefdfc0534ec766, + 0xbfecccccccccccfa, 0xbfefdfc0534ec7c2, 0x0, 0x0, - 0xbfecccccccccccda, 0xbff0091fc4d3d588, + 0xbfecccccccccccc7, 0xbff0091fc4d3d594, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbff0228bb10beffd, + 0xbfecccccccccccc9, 0xbff0228bb10bf00e, 0x0, 0x0, - 0xbfeccccccccccc9e, 0xbff03c24831403c3, + 0xbfecccccccccccc5, 0xbff03c24831403c4, 0x0, 0x0, - 0xbfeccccccccccce2, 0xbff055ead22f3c63, + 0xbfeccccccccccccc, 0xbff055ead22f3c5e, 0x0, 0x0, - 0xbfecccccccccccac, 0xbff06fdf382d4a28, + 0xbfecccccccccccc9, 0xbff06fdf382d4a0a, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbff08a02517865ef, + 0xbfecccccccccccca, 0xbff08a0251786602, 0x0, 0x0, - 0xbfecccccccccccf0, 0xbff0a454bd23b251, + 0xbfeccccccccccccc, 0xbff0a454bd23b238, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbff0bed71cf9f954, + 0xbfecccccccccccc5, 0xbff0bed71cf9f948, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbff0d98a158cd046, + 0xbfecccccccccccbf, 0xbff0d98a158cd038, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbff0f46e4e441cfe, + 0xbfecccccccccccd5, 0xbff0f46e4e441cf8, 0x0, 0x0, - 0xbfecccccccccccb6, 0xbff10f84716e061f, + 0xbfeccccccccccce0, 0xbff10f84716e0622, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbff12acd2c4f4d70, + 0xbfecccccccccccc0, 0xbff12acd2c4f4d7d, 0x0, 0x0, - 0xbfecccccccccccf5, 0xbff146492f34194a, + 0xbfecccccccccccbe, 0xbff146492f341939, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbff161f92d81308a, + 0xbfecccccccccccd0, 0xbff161f92d813097, 0x0, 0x0, - 0xbfeccccccccccd3e, 0xbff17dddddc5ac35, + 0xbfecccccccccccd4, 0xbff17dddddc5ac8a, 0x0, 0x0, - 0xbfeccccccccccc64, 0xbff199f7f9cd233b, + 0xbfeccccccccccc97, 0xbff199f7f9cd234e, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbff1b6483eb250ba, + 0xbfecccccccccccc7, 0xbff1b6483eb250b7, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbff1d2cf6cf240b3, + 0xbfecccccccccccd3, 0xbff1d2cf6cf240b2, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbff1ef8e487ffd3c, + 0xbfecccccccccccb6, 0xbff1ef8e487ffd3e, 0x0, 0x0, - 0xbfecccccccccccac, 0xbff20c8598d8c804, + 0xbfecccccccccccc1, 0xbff20c8598d8c7fc, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbff229b62918e13f, + 0xbfecccccccccccc6, 0xbff229b62918e140, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbff24720c810e0f2, + 0xbfecccccccccccc0, 0xbff24720c810e0e0, 0x0, 0x0, - 0xbfecccccccccccfd, 0xbff264c6485ba7ed, + 0xbfecccccccccccd2, 0xbff264c6485ba7d6, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbff282a78074ed28, + 0xbfeccccccccccce0, 0xbff282a78074ed18, 0x0, 0x0, - 0xbfecccccccccccb3, 0xbff2a0c54ad06c8c, + 0xbfecccccccccccd1, 0xbff2a0c54ad06c88, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbff2bf2085f1bbf0, + 0xbfecccccccccccc3, 0xbff2bf2085f1bbf4, 0x0, 0x0, - 0xbfecccccccccccab, 0xbff2ddba1484ccb4, + 0xbfeccccccccccce1, 0xbff2ddba1484cca1, 0x0, 0x0, - 0xbfeccccccccccca8, 0xbff2fc92dd771f5c, + 0xbfecccccccccccac, 0xbff2fc92dd771f54, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbff31babcc11ae90, + 0xbfecccccccccccd3, 0xbff31babcc11ae82, 0x0, 0x0, - 0xbfecccccccccccaa, 0xbff33b05d0139862, + 0xbfecccccccccccd7, 0xbff33b05d0139846, 0x0, 0x0, - 0xbfecccccccccccf2, 0xbff35aa1ddcd8bb8, + 0xbfeccccccccccc8c, 0xbff35aa1ddcd8bb3, 0x0, 0x0, - 0xbfeccccccccccce7, 0xbff37a80ee3e00f2, + 0xbfecccccccccccbf, 0xbff37a80ee3e00ec, 0x0, 0x0, - 0xbfecccccccccccb5, 0xbff39aa3ff2e43f3, + 0xbfeccccccccccccb, 0xbff39aa3ff2e43e4, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbff3bb0c13505754, + 0xbfeccccccccccccb, 0xbff3bb0c13505748, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbff3dbba325db834, + 0xbfecccccccccccca, 0xbff3dbba325db833, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbff3fcaf69370a0a, + 0xbfeccccccccccccd, 0xbff3fcaf69370a0c, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbff41decca04b254, + 0xbfecccccccccccc9, 0xbff41decca04b250, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbff43f736c586d44, + 0xbfecccccccccccbd, 0xbff43f736c586d35, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbff461446d4fe2dc, + 0xbfecccccccccccb9, 0xbff461446d4fe304, 0x0, 0x0, - 0xbfecccccccccccb0, 0xbff48360efb847e2, + 0xbfecccccccccccb0, 0xbff48360efb847d2, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbff4a5ca1c330f24, + 0xbfecccccccccccd2, 0xbff4a5ca1c330f15, 0x0, 0x0, - 0xbfecccccccccccde, 0xbff4c881215bbc50, + 0xbfecccccccccccc7, 0xbff4c881215bbc2c, 0x0, 0x0, - 0xbfeccccccccccd42, 0xbff4eb8733eedb0c, + 0xbfecccccccccccc8, 0xbff4eb8733eedaec, 0x0, 0x0, - 0xbfeccccccccccca6, 0xbff50edd8ef2290a, + 0xbfeccccccccccccf, 0xbff50edd8ef22904, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbff5328573ddff02, + 0xbfecccccccccccf4, 0xbff5328573ddfee9, 0x0, 0x0, - 0xbfeccccccccccc91, 0xbff556802ac7fe44, + 0xbfecccccccccccd6, 0xbff556802ac7fe49, 0x0, 0x0, - 0xbfeccccccccccdc0, 0xbff57acf028f17c8, + 0xbfeccccccccccc18, 0xbff57acf028f178e, 0x0, 0x0, - 0xbfecccccccccccda, 0xbff59f735108eeee, + 0xbfeccccccccccc92, 0xbff59f735108eeb1, 0x0, 0x0, - 0xbfeccccccccccc7d, 0xbff5c46e7330b008, + 0xbfeccccccccccce0, 0xbff5c46e7330b00c, 0x0, 0x0, - 0xbfecccccccccccb9, 0xbff5e9c1cd575d5f, + 0xbfecccccccccccd3, 0xbff5e9c1cd575d66, 0x0, 0x0, - 0xbfeccccccccccd19, 0xbff60f6ecb55a832, + 0xbfecccccccccccc1, 0xbff60f6ecb55a808, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbff63576e0bf6091, + 0xbfecccccccccccf5, 0xbff63576e0bf608e, 0x0, 0x0, - 0xbfeccccccccccce7, 0xbff65bdb89188fc3, + 0xbfecccccccccccca, 0xbff65bdb89188fc5, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbff6829e480c4688, + 0xbfecccccccccccc4, 0xbff6829e480c465c, 0x0, 0x0, - 0xbfeccccccccccc83, 0xbff6a9c0a9a5358d, + 0xbfecccccccccccde, 0xbff6a9c0a9a53552, 0x0, 0x0, - 0xbfeccccccccccc3f, 0xbff6d14442881eda, + 0xbfeccccccccccd13, 0xbff6d14442881ee0, 0x0, 0x0, - 0xbfecccccccccccde, 0xbff6f92ab03035ac, + 0xbfecccccccccccca, 0xbff6f92ab03035b3, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbff72175992d77b3, + 0xbfecccccccccccd3, 0xbff72175992d77a6, 0x0, 0x0, - 0xbfeccccccccccc53, 0xbff74a26ad651e0c, + 0xbfecccccccccccc1, 0xbff74a26ad651dea, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbff7733fa65432e8, + 0xbfecccccccccccbe, 0xbff7733fa65432fe, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbff79cc24754654c, + 0xbfecccccccccccd6, 0xbff79cc247546547, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbff7c6b05de32f01, + 0xbfeccccccccccccb, 0xbff7c6b05de32f09, 0x0, 0x0, - 0xbfeccccccccccc52, 0xbff7f10bc1eb6752, + 0xbfeccccccccccc78, 0xbff7f10bc1eb671f, 0x0, 0x0, - 0xbfeccccccccccd04, 0xbff81bd6561156e2, + 0xbfecccccccccccb8, 0xbff81bd656115711, 0x0, 0x0, - 0xbfecccccccccccd7, 0xbff8471208016e28, + 0xbfecccccccccccc0, 0xbff8471208016e26, 0x0, 0x0, - 0xbfecccccccccccf7, 0xbff872c0d0c1adc1, + 0xbfecccccccccccd0, 0xbff872c0d0c1adce, 0x0, 0x0, - 0xbfeccccccccccc49, 0xbff89ee4b505e9cd, + 0xbfeccccccccccccb, 0xbff89ee4b505e9d4, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbff8cb7fc586fc7a, + 0xbfecccccccccccd3, 0xbff8cb7fc586fc5d, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbff8f8941f5d0a84, + 0xbfecccccccccccc9, 0xbff8f8941f5d0a70, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbff92623ec5cface, + 0xbfecccccccccccdd, 0xbff92623ec5cfad4, 0x0, 0x0, - 0xbfeccccccccccc9f, 0xbff95431637940e6, + 0xbfeccccccccccce9, 0xbff95431637940f8, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbff982bec9261eaa, + 0xbfecccccccccccbf, 0xbff982bec9261ecd, 0x0, 0x0, - 0xbfecccccccccccd7, 0xbff9b1ce6fc184a4, + 0xbfecccccccccccc6, 0xbff9b1ce6fc184ab, 0x0, 0x0, - 0xbfecccccccccccbd, 0xbff9e162b7feb371, + 0xbfecccccccccccd0, 0xbff9e162b7feb35e, 0x0, 0x0, - 0xbfeccccccccccc92, 0xbffa117e1155cd12, + 0xbfecccccccccccda, 0xbffa117e1155cd06, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbffa4222fa777c94, + 0xbfecccccccccccea, 0xbffa4222fa777c7c, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbffa735401c4e2e4, + 0xbfecccccccccccce, 0xbffa735401c4e2f8, 0x0, 0x0, - 0xbfeccccccccccd16, 0xbffaa513c5cbf962, + 0xbfecccccccccccc5, 0xbffaa513c5cbf942, 0x0, 0x0, - 0xbfecccccccccccf5, 0xbffad764f5c89810, + 0xbfeccccccccccce6, 0xbffad764f5c89803, 0x0, 0x0, - 0xbfeccccccccccca8, 0xbffb0a4a522a5a74, + 0xbfecccccccccccaf, 0xbffb0a4a522a5a6e, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbffb3dc6ad1f9134, + 0xbfecccccccccccd9, 0xbffb3dc6ad1f9138, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbffb71dceb258269, + 0xbfecccccccccccc6, 0xbffb71dceb258282, 0x0, 0x0, - 0xbfecccccccccccce, 0xbffba690039e2f88, + 0xbfeccccccccccccb, 0xbffba690039e2f72, 0x0, 0x0, - 0xbfecccccccccccbd, 0xbffbdbe3016be342, + 0xbfeccccccccccceb, 0xbffbdbe3016be34e, 0x0, 0x0, - 0xbfecccccccccccea, 0xbffc11d90392ca3e, + 0xbfecccccccccccd6, 0xbffc11d90392ca38, 0x0, 0x0, - 0xbfecccccccccccce, 0xbffc48753de0dbcc, + 0xbfecccccccccccd8, 0xbffc48753de0dbe7, 0x0, 0x0, - 0xbfecccccccccccbd, 0xbffc7fbaf99c5f26, + 0xbfecccccccccccdf, 0xbffc7fbaf99c5ef6, 0x0, 0x0, - 0xbfeccccccccccce4, 0xbffcb7ad96395785, + 0xbfeccccccccccca9, 0xbffcb7ad96395774, 0x0, 0x0, - 0xbfecccccccccccaa, 0xbffcf0508a162f5b, + 0xbfecccccccccccd4, 0xbffcf0508a162f68, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbffd29a7633ff2bd, + 0xbfecccccccccccda, 0xbffd29a7633ff2ad, 0x0, 0x0, - 0xbfeccccccccccc91, 0xbffd63b5c83e7848, + 0xbfecccccccccccd9, 0xbffd63b5c83e781c, 0x0, 0x0, - 0xbfecccccccccccfb, 0xbffd9e7f78e8d8de, + 0xbfecccccccccccdc, 0xbffd9e7f78e8d8ef, 0x0, 0x0, - 0xbfeccccccccccce3, 0xbffdda084f429a95, + 0xbfecccccccccccd4, 0xbffdda084f429a90, 0x0, 0x0, - 0xbfecccccccccccbf, 0xbffe16544061f956, + 0xbfecccccccccccc6, 0xbffe16544061f94e, 0x0, 0x0, - 0xbfeccccccccccd18, 0xbffe53675d5fc0b7, + 0xbfecccccccccccb3, 0xbffe53675d5fc079, 0x0, 0x0, - 0xbfecccccccccccb3, 0xbffe9145d4512b60, + 0xbfecccccccccccb4, 0xbffe9145d4512b74, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbffecff3f14c4ad0, + 0xbfeccccccccccce7, 0xbffecff3f14c4ad3, 0x0, 0x0, - 0xbfecccccccccccb8, 0xbfff0f761f7775d3, + 0xbfecccccccccccc3, 0xbfff0f761f7775e1, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfff4fd0ea24510c, + 0xbfeccccccccccce3, 0xbfff4fd0ea24510b, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbfff9108fdf702e0, + 0xbfecccccccccccd1, 0xbfff9108fdf702dc, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbfffd3232a1a3122, + 0xbfeccccccccccce4, 0xbfffd3232a1a311d, 0x0, 0x0, - 0xbfecccccccccccd4, 0xc0000b1230c037ef, + 0xbfeccccccccccccd, 0xc0000b1230c037f2, 0x0, 0x0, - 0xbfeccccccccccceb, 0xc0002d08de19e819, + 0xbfecccccccccccf5, 0xc0002d08de19e815, 0x0, 0x0, - 0xbfecccccccccccc3, 0xc0004f783c5a2595, + 0xbfecccccccccccd2, 0xc0004f783c5a259a, 0x0, 0x0, - 0xbfecccccccccccce, 0xc0007262feb2e772, + 0xbfecccccccccccb4, 0xc0007262feb2e768, 0x0, 0x0, - 0xbfecccccccccccc7, 0xc00095cbed075f20, + 0xbfecccccccccccd6, 0xc00095cbed075f20, 0x0, 0x0, - 0xbfecccccccccccf0, 0xc000b9b5e4b3e1ea, + 0xbfecccccccccccb0, 0xc000b9b5e4b3e1e5, 0x0, 0x0, - 0xbfecccccccccccfe, 0xc000de23d95ef0e0, + 0xbfeccccccccccc9f, 0xc000de23d95ef0e6, 0x0, 0x0, - 0xbfeccccccccccca7, 0xc0010318d5d3dd5a, + 0xbfecccccccccccc0, 0xc0010318d5d3dd61, 0x0, 0x0, - 0xbfecccccccccccde, 0xc0012897fce78f0f, + 0xbfeccccccccccd02, 0xc0012897fce78f02, 0x0, 0x0, - 0xbfeccccccccccdae, 0xc0014ea48a67f815, + 0xbfeccccccccccd78, 0xc0014ea48a67f7b8, 0x0, 0x0, - 0xbfecccccccccccc4, 0xc0017541d416cca7, + 0xbfeccccccccccd35, 0xc0017541d416cc8e, 0x0, 0x0, - 0xbfeccccccccccc83, 0xc0019c734ab02422, + 0xbfecccccccccccc8, 0xc0019c734ab0242a, 0x0, 0x0, - 0xbfecccccccccccbb, 0xc001c43c7afda049, + 0xbfeccccccccccccc, 0xc001c43c7afda052, 0x0, 0x0, - 0xbfeccccccccccccb, 0xc001eca10ef6dd83, + 0xbfecccccccccccea, 0xc001eca10ef6dd9c, 0x0, 0x0, - 0xbfecccccccccccca, 0xc00215a4ceefe458, + 0xbfecccccccccccd3, 0xc00215a4ceefe453, 0x0, 0x0, - 0xbfeccccccccccccc, 0xc0023f4ba2d66a7c, + 0xbfecccccccccccd4, 0xc0023f4ba2d66a80, 0x0, 0x0, - 0xbfecccccccccccbc, 0xc0026999937ebfea, + 0xbfecccccccccccba, 0xc0026999937ebfef, 0x0, 0x0, - 0xbfeccccccccccca7, 0xc0029492cc014e8c, + 0xbfecccccccccccc7, 0xc0029492cc014e8a, 0x0, 0x0, - 0xbfeccccccccccca1, 0xc002c03b9b29a6de, + 0xbfeccccccccccc90, 0xc002c03b9b29a6e2, 0x0, 0x0, - 0xbfecccccccccccdb, 0xc002ec9874f821ba, + 0xbfeccccccccccccb, 0xc002ec9874f821b6, 0x0, 0x0, - 0xbfecccccccccccd9, 0xc00319adf43733d0, + 0xbfecccccccccccd2, 0xc00319adf43733d0, 0x0, 0x0, - 0xbfeccccccccccca0, 0xc0034780dc25a087, + 0xbfecccccccccccd5, 0xc0034780dc25a090, 0x0, 0x0, - 0xbfecccccccccccc1, 0xc00376161a36d14a, + 0xbfeccccccccccc91, 0xc00376161a36d153, 0x0, 0x0, - 0xbfecccccccccccb7, 0xc003a572c7eaaa48, + 0xbfeccccccccccccd, 0xc003a572c7eaaa48, 0x0, 0x0, - 0xbfecccccccccccac, 0xc003d59c2cbe51cc, + 0xbfecccccccccccc2, 0xc003d59c2cbe51d6, 0x0, 0x0, - 0xbfeccccccccccc5f, 0xc0040697c037751a, + 0xbfeccccccccccd12, 0xc0040697c0377518, 0x0, 0x0, - 0xbfeccccccccccd07, 0xc004386b2c0bb62f, + 0xbfecccccccccccda, 0xc004386b2c0bb629, 0x0, 0x0, - 0xbfeccccccccccceb, 0xc0046b1c4e660ab8, + 0xbfecccccccccccd3, 0xc0046b1c4e660abe, 0x0, 0x0, - 0xbfeccccccccccce0, 0xc0049eb13c4bf58b, + 0xbfeccccccccccccd, 0xc0049eb13c4bf589, 0x0, 0x0, - 0xbfecccccccccccbf, 0xc004d3304424a9e7, + 0xbfecccccccccccd3, 0xc004d3304424a9f6, 0x0, 0x0, - 0xbfecccccccccccc7, 0xc005089ff0644d0a, + 0xbfecccccccccccb3, 0xc005089ff0644d10, 0x0, 0x0, - 0xbfeccccccccccca0, 0xc0053f070a5db5b6, + 0xbfecccccccccccd6, 0xc0053f070a5db5b1, 0x0, 0x0, - 0xbfecccccccccccc8, 0xc005766c9d3d3825, + 0xbfecccccccccccdb, 0xc005766c9d3d3826, 0x0, 0x0, - 0xbfecccccccccccc4, 0xc005aed7f92f3e06, + 0xbfecccccccccccce, 0xc005aed7f92f3df2, 0x0, 0x0, - 0xbfecccccccccccd5, 0xc005e850b6b59ff8, + 0xbfecccccccccccc1, 0xc005e850b6b59fec, 0x0, 0x0, - 0xbfecccccccccccd7, 0xc00622deba2ef428, + 0xbfecccccccccccd8, 0xc00622deba2ef42a, 0x0, 0x0, - 0xbfeccccccccccca7, 0xc0065e8a37934166, + 0xbfecccccccccccc9, 0xc0065e8a3793415e, 0x0, 0x0, - 0xbfecccccccccccc9, 0xc0069b5bb669d01a, + 0xbfecccccccccccef, 0xc0069b5bb669d006, 0x0, 0x0, - 0xbfeccccccccccca2, 0xc006d95c15fc1e66, + 0xbfecccccccccccec, 0xc006d95c15fc1e5a, 0x0, 0x0, - 0xbfeccccccccccce6, 0xc007189491ca4e6c, + 0xbfecccccccccccd3, 0xc007189491ca4e5c, 0x0, 0x0, - 0xbfeccccccccccd0a, 0xc007590ec645c289, + 0xbfeccccccccccca5, 0xc007590ec645c28c, 0x0, 0x0, - 0xbfeccccccccccc9a, 0xc0079ad4b5d6fff7, + 0xbfeccccccccccc8a, 0xc0079ad4b5d6ff98, 0x0, 0x0, - 0xbfeccccccccccc6b, 0xc007ddf0ce345885, + 0xbfecccccccccccc0, 0xc007ddf0ce345896, 0x0, 0x0, - 0xbfeccccccccccce1, 0xc008226dee0f5f56, + 0xbfecccccccccccc9, 0xc008226dee0f5f53, 0x0, 0x0, - 0xbfeccccccccccd11, 0xc00868576b1f9b7e, + 0xbfecccccccccccc4, 0xc00868576b1f9b81, 0x0, 0x0, - 0xbfecccccccccccd8, 0xc008afb918919498, + 0xbfeccccccccccceb, 0xc008afb9189194a4, 0x0, 0x0, - 0xbfecccccccccccc1, 0xc008f89f4de1dc5c, + 0xbfecccccccccccc2, 0xc008f89f4de1dc60, 0x0, 0x0, - 0xbfecccccccccccbd, 0xc0094316ee2c745d, + 0xbfecccccccccccd9, 0xc0094316ee2c745a, 0x0, 0x0, - 0xbfeccccccccccce5, 0xc0098f2d6ff9a922, + 0xbfecccccccccccbd, 0xc0098f2d6ff9a916, 0x0, 0x0, - 0xbfeccccccccccca7, 0xc009dcf0e5924dbe, + 0xbfecccccccccccad, 0xc009dcf0e5924db7, 0x0, 0x0, - 0xbfecccccccccccba, 0xc00a2c7005e62d9f, + 0xbfecccccccccccc0, 0xc00a2c7005e62d99, 0x0, 0x0, - 0xbfecccccccccccd1, 0xc00a7dba36108940, + 0xbfecccccccccccd7, 0xc00a7dba36108950, 0x0, 0x0, - 0xbfecccccccccccb2, 0xc00ad0df93878dc8, + 0xbfeccccccccccccf, 0xc00ad0df93878dd0, 0x0, 0x0, - 0xbfecccccccccccf3, 0xc00b25f0ff04f1bc, + 0xbfecccccccccccdb, 0xc00b25f0ff04f1c2, 0x0, 0x0, - 0xbfecccccccccccdf, 0xc00b7d0028373cee, + 0xbfeccccccccccceb, 0xc00b7d0028373cf4, 0x0, 0x0, - 0xbfecccccccccccc2, 0xc00bd61f9a4cc198, + 0xbfecccccccccccdd, 0xc00bd61f9a4cc198, 0x0, 0x0, - 0xbfecccccccccccd1, 0xc00c3162c96af8f2, + 0xbfecccccccccccca, 0xc00c3162c96af8f6, 0x0, 0x0, - 0xbfeccccccccccc8a, 0xc00c8ede2126d2b3, + 0xbfecccccccccccd5, 0xc00c8ede2126d2c5, 0x0, 0x0, - 0xbfecccccccccccb3, 0xc00ceea71414962a, + 0xbfecccccccccccb7, 0xc00ceea714149635, 0x0, 0x0, - 0xbfeccccccccccccf, 0xc00d50d42c88432b, + 0xbfecccccccccccdb, 0xc00d50d42c884331, 0x0, 0x0, - 0xbfecccccccccccc8, 0xc00db57d1ea1f49a, + 0xbfecccccccccccd9, 0xc00db57d1ea1f4a0, 0x0, 0x0, - 0xbfecccccccccccb3, 0xc00e1cbadbc4a424, + 0xbfecccccccccccca, 0xc00e1cbadbc4a42b, 0x0, 0x0, - 0xbfecccccccccccc2, 0xc00e86a7a798e9b0, + 0xbfecccccccccccdd, 0xc00e86a7a798e9a7, 0x0, 0x0, - 0xbfecccccccccccd4, 0xc00ef35f2ec0ea7a, + 0xbfecccccccccccd1, 0xc00ef35f2ec0ea80, 0x0, 0x0, - 0xbfeccccccccccce2, 0xc00f62fe9f66ba13, + 0xbfecccccccccccd6, 0xc00f62fe9f66ba19, 0x0, 0x0, - 0xbfecccccccccccc8, 0xc00fd5a4c3d2fb73, + 0xbfecccccccccccfe, 0xc00fd5a4c3d2fb74, 0x0, 0x0, - 0xbfecccccccccccc0, 0xc01025b90f9f58d6, + 0xbfeccccccccccce8, 0xc01025b90f9f58ca, 0x0, 0x0, - 0xbfecccccccccccd4, 0xc0106244868c7b68, + 0xbfeccccccccccccc, 0xc0106244868c7b68, 0x0, 0x0, - 0xbfecccccccccccbb, 0xc010a086f17feb80, + 0xbfeccccccccccccd, 0xc010a086f17feb7e, 0x0, 0x0, - 0xbfeccccccccccce0, 0xc010e0938ad977be, + 0xbfecccccccccccc4, 0xc010e0938ad977c2, 0x0, 0x0, - 0xbfecccccccccccc2, 0xc011227eb0a76962, + 0xbfecccccccccccea, 0xc011227eb0a76962, 0x0, 0x0, - 0xbfeccccccccccccc, 0xc011665dfa94d83e, + 0xbfecccccccccccde, 0xc011665dfa94d839, 0x0, 0x0, - 0xbfeccccccccccd04, 0xc011ac4851da48fb, + 0xbfecccccccccccdc, 0xc011ac4851da48ef, 0x0, 0x0, - 0xbfecccccccccce06, 0xc011f4560b6865fb, + 0xbfecccccccccccd4, 0xc011f4560b6865e8, 0x0, 0x0, - 0xbfecccccccccccc5, 0xc0123ea1048bab8e, + 0xbfecccccccccccb0, 0xc0123ea1048bab8e, 0x0, 0x0, - 0xbfeccccccccccce6, 0xc0128b44c24feae3, + 0xbfecccccccccccbf, 0xc0128b44c24feae2, 0x0, 0x0, - 0xbfeccccccccccce0, 0xc012da5e93f3c100, + 0xbfeccccccccccce0, 0xc012da5e93f3c104, 0x0, 0x0, - 0xbfecccccccccccea, 0xc0132c0db8c6b660, + 0xbfeccccccccccced, 0xc0132c0db8c6b662, 0x0, 0x0, - 0xbfecccccccccccd0, 0xc013807389d8ecf0, + 0xbfecccccccccccb2, 0xc013807389d8ecee, 0x0, 0x0, - 0xbfecccccccccccc7, 0xc013d7b3a7f15676, + 0xbfecccccccccccca, 0xc013d7b3a7f1567a, 0x0, 0x0, - 0xbfeccccccccccca8, 0xc01431f42e4fb21e, + 0xbfecccccccccccd7, 0xc01431f42e4fb21f, 0x0, 0x0, - 0xbfecccccccccccb6, 0xc0148f5dead26e95, + 0xbfeccccccccccca2, 0xc0148f5dead26e98, 0x0, 0x0, - 0xbfecccccccccccf3, 0xc014f01c9c2e7b02, + 0xbfecccccccccccd6, 0xc014f01c9c2e7b06, 0x0, 0x0, - 0xbfecccccccccccb3, 0xc015545f37009d72, + 0xbfeccccccccccce4, 0xc015545f37009d74, 0x0, 0x0, - 0xbfecccccccccccaa, 0xc015bc58329dbd45, + 0xbfecccccccccccc8, 0xc015bc58329dbd45, 0x0, 0x0, - 0xbfeccccccccccca2, 0xc016283ddeaa8692, + 0xbfecccccccccccf0, 0xc016283ddeaa8691, 0x0, 0x0, - 0xbfeccccccccccca6, 0xc016984ac2abdd98, + 0xbfeccccccccccca6, 0xc016984ac2abdd95, 0x0, 0x0, - 0xbfecccccccccccc6, 0xc0170cbe08f1fcad, + 0xbfecccccccccccd4, 0xc0170cbe08f1fcaa, 0x0, 0x0, - 0xbfecccccccccccb6, 0xc01785dbf6794896, + 0xbfecccccccccccb4, 0xc01785dbf6794898, 0x0, 0x0, - 0xbfecccccccccccd9, 0xc01803ee719fb2fb, + 0xbfecccccccccccf2, 0xc01803ee719fb2f2, 0x0, 0x0, - 0xbfeccccccccccca5, 0xc018874599de2916, + 0xbfeccccccccccc8c, 0xc018874599de2926, 0x0, 0x0, - 0xbfecccccccccccc0, 0xc01910387315cf5f, + 0xbfeccccccccccccc, 0xc01910387315cf60, 0x0, 0x0, - 0xbfecccccccccccc5, 0xc0199f25a77413f2, + 0xbfecccccccccccd4, 0xc0199f25a77413f2, 0x0, 0x0, - 0xbfeccccccccccc98, 0xc01a3474637b4316, + 0xbfecccccccccccc8, 0xc01a3474637b4314, 0x0, 0x0, - 0xbfecccccccccccc9, 0xc01ad095506490c5, + 0xbfeccccccccccce2, 0xc01ad095506490c5, 0x0, 0x0, - 0xbfeccccccccccccf, 0xc01b7403b1db44d3, + 0xbfeccccccccccccc, 0xc01b7403b1db44d8, 0x0, 0x0, - 0xbfecccccccccccbe, 0xc01c1f46ad076592, + 0xbfecccccccccccb8, 0xc01c1f46ad076593, 0x0, 0x0, - 0xbfecccccccccccbb, 0xc01cd2f2c00bbe1e, + 0xbfecccccccccccdb, 0xc01cd2f2c00bbe1a, 0x0, 0x0, - 0xbfecccccccccccd2, 0xc01d8fab728d5082, + 0xbfecccccccccccca, 0xc01d8fab728d5089, 0x0, 0x0, - 0xbfecccccccccccb6, 0xc01e562549a301e0, + 0xbfeccccccccccce1, 0xc01e562549a301e1, 0x0, 0x0, - 0xbfeccccccccccca9, 0xc01f27280bc2a8ee, + 0xbfecccccccccccc0, 0xc01f27280bc2a8f0, 0x0, 0x0, - 0xbfecccccccccccba, 0xc02001c8b20155f2, + 0xbfecccccccccccee, 0xc02001c8b20155f0, 0x0, 0x0, - 0xbfeccccccccccca9, 0xc020762bfbbe2b95, + 0xbfecccccccccccd1, 0xc020762bfbbe2b99, 0x0, 0x0, - 0xbfecccccccccccb5, 0xc020f14781fb7adb, + 0xbfecccccccccccd8, 0xc020f14781fb7adc, 0x0, 0x0, - 0xbfecccccccccccb6, 0xc02173b55245abf2, + 0xbfecccccccccccab, 0xc02173b55245abf0, 0x0, 0x0, - 0xbfeccccccccccc3c, 0xc021fe226fff9297, + 0xbfeccccccccccc20, 0xc021fe226fff9295, 0x0, 0x0, - 0xbfecccccccccccb0, 0xc0229151d6d5bcdb, + 0xbfeccccccccccc80, 0xc0229151d6d5bcdf, 0x0, 0x0, - 0xbfeccccccccccca2, 0xc0232e2014c225b7, + 0xbfecccccccccccbb, 0xc0232e2014c225ba, 0x0, 0x0, - 0xbfecccccccccccd5, 0xc023d5879f9729c4, + 0xbfecccccccccccbe, 0xc023d5879f9729c2, 0x0, 0x0, - 0xbfeccccccccccc8e, 0xc02488a6142100a2, + 0xbfeccccccccccca8, 0xc02488a6142100a0, 0x0, 0x0, - 0xbfecccccccccccbc, 0xc02548c29a532b96, + 0xbfeccccccccccca4, 0xc02548c29a532b97, 0x0, 0x0, - 0xbfecccccccccccc4, 0xc0261755bbea70fc, + 0xbfeccccccccccce8, 0xc0261755bbea70fc, 0x0, 0x0, - 0xbfeccccccccccca5, 0xc026f6131334f4b2, + 0xbfecccccccccccb1, 0xc026f6131334f4b3, 0x0, 0x0, - 0xbfecccccccccccb2, 0xc027e6f558e6bf24, + 0xbfecccccccccccc8, 0xc027e6f558e6bf26, 0x0, 0x0, - 0xbfecccccccccccbd, 0xc028ec4d85cd611f, + 0xbfeccccccccccccc, 0xc028ec4d85cd611a, 0x0, 0x0, - 0xbfeccccccccccc8d, 0xc02a08d5fd804bfe, + 0xbfecccccccccccce, 0xc02a08d5fd804bfb, 0x0, 0x0, - 0xbfeccccccccccc9f, 0xc02b3fcb12602488, + 0xbfecccccccccccbc, 0xc02b3fcb12602488, 0x0, 0x0, - 0xbfecccccccccccbe, 0xc02c950ab676ab03, + 0xbfecccccccccccd5, 0xc02c950ab676ab00, 0x0, 0x0, - 0xbfeccccccccccc76, 0xc02e0d3dec9b87f0, + 0xbfecccccccccccf9, 0xc02e0d3dec9b87f3, 0x0, 0x0, - 0xbfeccccccccccc98, 0xc02fae0faa66c361, + 0xbfeccccccccccce9, 0xc02fae0faa66c362, 0x0, 0x0, - 0xbfeccccccccccca8, 0xc030bf3b45a19508, + 0xbfeccccccccccccc, 0xc030bf3b45a19505, 0x0, 0x0, - 0xbfeccccccccccce6, 0xc031c38ca820c8e8, + 0xbfeccccccccccd66, 0xc031c38ca820c8e4, 0x0, 0x0, - 0xbfecccccccccccac, 0xc032e96d238a4daa, + 0xbfecccccccccccb5, 0xc032e96d238a4da8, 0x0, 0x0, - 0xbfecccccccccccc4, 0xc03437ce3009c343, + 0xbfecccccccccccd9, 0xc03437ce3009c343, 0x0, 0x0, - 0xbfeccccccccccc90, 0xc035b7afee1f2424, + 0xbfecccccccccccb9, 0xc035b7afee1f2424, 0x0, 0x0, - 0xbfeccccccccccc62, 0xc03774f3d05a1d2d, + 0xbfecccccccccccca, 0xc03774f3d05a1d2a, 0x0, 0x0, - 0xbfecccccccccccb2, 0xc0397f9d2e55bfe5, + 0xbfeccccccccccc92, 0xc0397f9d2e55bfe7, 0x0, 0x0, - 0xbfeccccccccccc6f, 0xc03bedc9071f7615, + 0xbfeccccccccccce3, 0xc03bedc9071f7615, 0x0, 0x0, - 0xbfeccccccccccc94, 0xc03edee3ed8e2314, + 0xbfeccccccccccc8e, 0xc03edee3ed8e2316, 0x0, 0x0, - 0xbfeccccccccccc33, 0xc0414092117a7242, + 0xbfecccccccccccb9, 0xc0414092117a7240, 0x0, 0x0, - 0xbfeccccccccccc57, 0xc0438db2b0659cb4, + 0xbfecccccccccccea, 0xc0438db2b0659cb2, 0x0, 0x0, - 0xbfeccccccccccc3e, 0xc046900f24647fa6, + 0xbfecccccccccccdc, 0xc046900f24647fa8, 0x0, 0x0, - 0xbfeccccccccccc00, 0xc04aaa823eed92bd, + 0xbfeccccccccccca7, 0xc04aaa823eed92be, 0x0, 0x0, - 0xbfeccccccccccbfa, 0xc0504be2e24253f0, + 0xbfecccccccccccdb, 0xc0504be2e24253f0, 0x0, 0x0, - 0xbfeccccccccccbc0, 0xc054f3fd088b91ad, + 0xbfeccccccccccca9, 0xc054f3fd088b91af, 0x0, 0x0, - 0xbfeccccccccccb5f, 0xc05d55b9a367908a, + 0xbfeccccccccccd56, 0xc05d55b9a367908a, 0x0, 0x0, - 0xbfecccccccccc9e9, 0xc068722ece0ccb99, + 0xbfeccccccccccbe5, 0xc068722ece0ccb9a, 0x0, 0x0, - 0xbfecccccccccc3e0, 0xc08255aaa4bc2b9e + 0xbfeccccccccccbb7, 0xc08255aaa4bc2b9f }; static const uint64_t ref_cfft_step_2048[4096] = { 0x408ccccccccccccd, 0x0, - 0xbfecccccccccce22, 0x408255aaa4bc2b9e, + 0xbfeccccccccccccd, 0x408255aaa4bc2b9e, 0x0, 0x0, - 0xbfeccccccccccd79, 0x4068722ece0ccb9a, + 0xbfeccccccccccc01, 0x4068722ece0ccb9a, 0x0, 0x0, - 0xbfeccccccccccd4e, 0x405d55b9a367908a, + 0xbfeccccccccccd3a, 0x405d55b9a367908b, 0x0, 0x0, - 0xbfeccccccccccd66, 0x4054f3fd088b91b0, + 0xbfecccccccccccc9, 0x4054f3fd088b91ae, 0x0, 0x0, - 0xbfecccccccccccf8, 0x40504be2e24253f0, + 0xbfecccccccccccc0, 0x40504be2e24253f0, 0x0, 0x0, - 0xbfecccccccccccfa, 0x404aaa823eed92be, + 0xbfeccccccccccc86, 0x404aaa823eed92be, 0x0, 0x0, - 0xbfeccccccccccd18, 0x4046900f24647fa7, + 0xbfecccccccccccfa, 0x4046900f24647fa8, 0x0, 0x0, - 0xbfeccccccccccd26, 0x40438db2b0659cb5, + 0xbfecccccccccccd6, 0x40438db2b0659cb4, 0x0, 0x0, - 0xbfeccccccccccd0a, 0x40414092117a7240, + 0xbfecccccccccccb5, 0x40414092117a7240, 0x0, 0x0, - 0xbfeccccccccccd01, 0x403edee3ed8e2315, + 0xbfecccccccccccac, 0x403edee3ed8e2316, 0x0, 0x0, - 0xbfecccccccccccf2, 0x403bedc9071f7616, + 0xbfeccccccccccce7, 0x403bedc9071f7614, 0x0, 0x0, - 0xbfeccccccccccce5, 0x40397f9d2e55bfea, + 0xbfecccccccccccac, 0x40397f9d2e55bfe7, 0x0, 0x0, - 0xbfecccccccccccce, 0x403774f3d05a1d2c, + 0xbfecccccccccccb0, 0x403774f3d05a1d2b, 0x0, 0x0, - 0xbfeccccccccccce6, 0x4035b7afee1f2425, + 0xbfeccccccccccc9b, 0x4035b7afee1f2425, 0x0, 0x0, - 0xbfeccccccccccceb, 0x403437ce3009c346, + 0xbfecccccccccccc8, 0x403437ce3009c345, 0x0, 0x0, - 0xbfeccccccccccd3c, 0x4032e96d238a4db4, + 0xbfeccccccccccc4e, 0x4032e96d238a4da8, 0x0, 0x0, - 0xbfeccccccccccce0, 0x4031c38ca820c8e2, + 0xbfecccccccccccd0, 0x4031c38ca820c8e4, 0x0, 0x0, - 0xbfecccccccccccb0, 0x4030bf3b45a19505, + 0xbfecccccccccccb2, 0x4030bf3b45a19505, 0x0, 0x0, - 0xbfecccccccccccdc, 0x402fae0faa66c361, + 0xbfecccccccccccf3, 0x402fae0faa66c360, 0x0, 0x0, - 0xbfeccccccccccce0, 0x402e0d3dec9b87f2, + 0xbfecccccccccccc8, 0x402e0d3dec9b87f0, 0x0, 0x0, - 0xbfecccccccccccf5, 0x402c950ab676aaff, + 0xbfeccccccccccce3, 0x402c950ab676aaff, 0x0, 0x0, - 0xbfecccccccccccde, 0x402b3fcb12602488, + 0xbfecccccccccccc9, 0x402b3fcb12602488, 0x0, 0x0, - 0xbfecccccccccccee, 0x402a08d5fd804bfc, + 0xbfecccccccccccdc, 0x402a08d5fd804bfe, 0x0, 0x0, - 0xbfeccccccccccd33, 0x4028ec4d85cd6120, + 0xbfeccccccccccccc, 0x4028ec4d85cd611d, 0x0, 0x0, - 0xbfeccccccccccce5, 0x4027e6f558e6bf24, + 0xbfecccccccccccb0, 0x4027e6f558e6bf28, 0x0, 0x0, - 0xbfecccccccccccd5, 0x4026f6131334f4b2, + 0xbfecccccccccccc4, 0x4026f6131334f4b4, 0x0, 0x0, - 0xbfecccccccccccea, 0x40261755bbea70fa, + 0xbfecccccccccccd9, 0x40261755bbea70fb, 0x0, 0x0, - 0xbfecccccccccccd8, 0x402548c29a532b93, + 0xbfecccccccccccd2, 0x402548c29a532b93, 0x0, 0x0, - 0xbfecccccccccccf8, 0x402488a6142100a4, + 0xbfecccccccccccc4, 0x402488a6142100a0, 0x0, 0x0, - 0xbfeccccccccccce9, 0x4023d5879f9729c2, + 0xbfecccccccccccc4, 0x4023d5879f9729c0, 0x0, 0x0, - 0xbfecccccccccccd3, 0x40232e2014c225bc, + 0xbfecccccccccccba, 0x40232e2014c225b7, 0x0, 0x0, - 0xbfecccccccccccdc, 0x40229151d6d5bcde, + 0xbfecccccccccccd8, 0x40229151d6d5bcde, 0x0, 0x0, - 0xbfecccccccccccea, 0x4021fe226fff928f, + 0xbfeccccccccccd18, 0x4021fe226fff9291, 0x0, 0x0, - 0xbfecccccccccccd8, 0x402173b55245abf0, + 0xbfeccccccccccce0, 0x402173b55245abf0, 0x0, 0x0, - 0xbfecccccccccccc8, 0x4020f14781fb7ada, + 0xbfecccccccccccd1, 0x4020f14781fb7ad9, 0x0, 0x0, - 0xbfecccccccccccc4, 0x4020762bfbbe2b9a, + 0xbfecccccccccccc0, 0x4020762bfbbe2b97, 0x0, 0x0, - 0xbfecccccccccccea, 0x402001c8b20155f0, + 0xbfeccccccccccd0c, 0x402001c8b20155ee, 0x0, 0x0, - 0xbfeccccccccccccc, 0x401f27280bc2a8ed, + 0xbfecccccccccccc2, 0x401f27280bc2a8f2, 0x0, 0x0, - 0xbfeccccccccccce2, 0x401e562549a301e5, + 0xbfeccccccccccce3, 0x401e562549a301e4, 0x0, 0x0, - 0xbfecccccccccccbb, 0x401d8fab728d5082, + 0xbfecccccccccccb2, 0x401d8fab728d507c, 0x0, 0x0, - 0xbfecccccccccccb5, 0x401cd2f2c00bbe14, + 0xbfecccccccccccf2, 0x401cd2f2c00bbe0f, 0x0, 0x0, - 0xbfeccccccccccce4, 0x401c1f46ad076594, + 0xbfecccccccccccbe, 0x401c1f46ad076593, 0x0, 0x0, - 0xbfecccccccccccec, 0x401b7403b1db44d6, + 0xbfecccccccccccda, 0x401b7403b1db44d4, 0x0, 0x0, - 0xbfeccccccccccd0a, 0x401ad095506490c4, + 0xbfecccccccccccc0, 0x401ad095506490c6, 0x0, 0x0, - 0xbfecccccccccccd4, 0x401a3474637b4310, + 0xbfecccccccccccc0, 0x401a3474637b4314, 0x0, 0x0, - 0xbfecccccccccccec, 0x40199f25a77413ee, + 0xbfecccccccccccbe, 0x40199f25a77413ee, 0x0, 0x0, - 0xbfeccccccccccccf, 0x401910387315cf64, + 0xbfecccccccccccd6, 0x401910387315cf5f, 0x0, 0x0, - 0xbfecccccccccccc2, 0x4018874599de2922, + 0xbfecccccccccccc2, 0x4018874599de291f, 0x0, 0x0, - 0xbfeccccccccccce0, 0x401803ee719fb2f8, + 0xbfeccccccccccd19, 0x401803ee719fb2e4, 0x0, 0x0, - 0xbfeccccccccccce7, 0x401785dbf6794895, + 0xbfecccccccccccce, 0x401785dbf6794898, 0x0, 0x0, - 0xbfecccccccccccb9, 0x40170cbe08f1fcac, + 0xbfeccccccccccccc, 0x40170cbe08f1fcaa, 0x0, 0x0, - 0xbfecccccccccccff, 0x4016984ac2abdd9a, + 0xbfecccccccccccb4, 0x4016984ac2abdd91, 0x0, 0x0, - 0xbfecccccccccccec, 0x4016283ddeaa8694, + 0xbfeccccccccccce6, 0x4016283ddeaa8690, 0x0, 0x0, - 0xbfecccccccccccf1, 0x4015bc58329dbd40, + 0xbfecccccccccccc4, 0x4015bc58329dbd44, 0x0, 0x0, - 0xbfecccccccccccf7, 0x4015545f37009d78, + 0xbfeccccccccccccc, 0x4015545f37009d74, 0x0, 0x0, - 0xbfeccccccccccd22, 0x4014f01c9c2e7b04, + 0xbfecccccccccccd2, 0x4014f01c9c2e7b03, 0x0, 0x0, - 0xbfeccccccccccca5, 0x40148f5dead26e9b, + 0xbfeccccccccccccc, 0x40148f5dead26e94, 0x0, 0x0, - 0xbfeccccccccccce9, 0x401431f42e4fb222, + 0xbfecccccccccccc6, 0x401431f42e4fb21f, 0x0, 0x0, - 0xbfeccccccccccd04, 0x4013d7b3a7f15676, + 0xbfeccccccccccccc, 0x4013d7b3a7f15677, 0x0, 0x0, - 0xbfeccccccccccd1a, 0x4013807389d8ecf5, + 0xbfecccccccccccd6, 0x4013807389d8ecf3, 0x0, 0x0, - 0xbfecccccccccccf8, 0x40132c0db8c6b664, + 0xbfeccccccccccccb, 0x40132c0db8c6b660, 0x0, 0x0, - 0xbfeccccccccccd0b, 0x4012da5e93f3c10b, + 0xbfecccccccccccab, 0x4012da5e93f3c106, 0x0, 0x0, - 0xbfecccccccccccc1, 0x40128b44c24feae5, + 0xbfecccccccccccac, 0x40128b44c24feade, 0x0, 0x0, - 0xbfeccccccccccd70, 0x40123ea1048babcc, + 0xbfecccccccccccb8, 0x40123ea1048bab9e, 0x0, 0x0, - 0xbfecccccccccccca, 0x4011f4560b686604, + 0xbfeccccccccccce0, 0x4011f4560b686606, 0x0, 0x0, - 0xbfecccccccccccc0, 0x4011ac4851da48ed, + 0xbfeccccccccccce0, 0x4011ac4851da48ee, 0x0, 0x0, - 0xbfecccccccccccd2, 0x4011665dfa94d838, + 0xbfeccccccccccccd, 0x4011665dfa94d835, 0x0, 0x0, - 0xbfecccccccccccbd, 0x4011227eb0a7696a, + 0xbfecccccccccccbe, 0x4011227eb0a76960, 0x0, 0x0, - 0xbfecccccccccccd6, 0x4010e0938ad977c0, + 0xbfecccccccccccc8, 0x4010e0938ad977c2, 0x0, 0x0, - 0xbfecccccccccccd6, 0x4010a086f17feb78, + 0xbfecccccccccccc2, 0x4010a086f17feb7e, 0x0, 0x0, - 0xbfecccccccccccf0, 0x40106244868c7b68, + 0xbfeccccccccccccc, 0x40106244868c7b64, 0x0, 0x0, - 0xbfeccccccccccce0, 0x401025b90f9f58d1, + 0xbfecccccccccccf4, 0x401025b90f9f58d4, 0x0, 0x0, - 0xbfecccccccccccf6, 0x400fd5a4c3d2fb60, + 0xbfecccccccccccc4, 0x400fd5a4c3d2fb79, 0x0, 0x0, - 0xbfecccccccccccd2, 0x400f62fe9f66ba1b, + 0xbfecccccccccccd0, 0x400f62fe9f66ba14, 0x0, 0x0, - 0xbfecccccccccccc9, 0x400ef35f2ec0ea82, + 0xbfecccccccccccce, 0x400ef35f2ec0ea7f, 0x0, 0x0, - 0xbfecccccccccccaf, 0x400e86a7a798e9a6, + 0xbfecccccccccccd1, 0x400e86a7a798e9a7, 0x0, 0x0, - 0xbfecccccccccccd9, 0x400e1cbadbc4a428, + 0xbfecccccccccccd2, 0x400e1cbadbc4a426, 0x0, 0x0, - 0xbfecccccccccccee, 0x400db57d1ea1f494, + 0xbfecccccccccccc4, 0x400db57d1ea1f49e, 0x0, 0x0, - 0xbfecccccccccccf6, 0x400d50d42c88432e, + 0xbfecccccccccccd4, 0x400d50d42c884333, 0x0, 0x0, - 0xbfeccccccccccd08, 0x400ceea714149635, + 0xbfeccccccccccca7, 0x400ceea714149622, 0x0, 0x0, - 0xbfeccccccccccce5, 0x400c8ede2126d2be, + 0xbfecccccccccccc3, 0x400c8ede2126d2b7, 0x0, 0x0, - 0xbfecccccccccccd7, 0x400c3162c96af901, + 0xbfecccccccccccbe, 0x400c3162c96af8f1, 0x0, 0x0, - 0xbfeccccccccccc9f, 0x400bd61f9a4cc190, + 0xbfeccccccccccccc, 0x400bd61f9a4cc196, 0x0, 0x0, - 0xbfeccccccccccce9, 0x400b7d0028373ce0, + 0xbfecccccccccccc0, 0x400b7d0028373cf3, 0x0, 0x0, - 0xbfeccccccccccce0, 0x400b25f0ff04f1b4, + 0xbfecccccccccccda, 0x400b25f0ff04f1be, 0x0, 0x0, - 0xbfecccccccccccd4, 0x400ad0df93878dca, + 0xbfecccccccccccce, 0x400ad0df93878dca, 0x0, 0x0, - 0xbfecccccccccccd0, 0x400a7dba3610895a, + 0xbfecccccccccccc8, 0x400a7dba3610894e, 0x0, 0x0, - 0xbfecccccccccccaa, 0x400a2c7005e62d94, + 0xbfecccccccccccc5, 0x400a2c7005e62d8e, 0x0, 0x0, - 0xbfecccccccccccfa, 0x4009dcf0e5924da8, + 0xbfecccccccccccc4, 0x4009dcf0e5924dab, 0x0, 0x0, - 0xbfeccccccccccccc, 0x40098f2d6ff9a910, + 0xbfecccccccccccb2, 0x40098f2d6ff9a914, 0x0, 0x0, - 0xbfeccccccccccccd, 0x40094316ee2c744c, + 0xbfecccccccccccc0, 0x40094316ee2c745b, 0x0, 0x0, - 0xbfecccccccccccee, 0x4008f89f4de1dc53, + 0xbfecccccccccccce, 0x4008f89f4de1dc60, 0x0, 0x0, - 0xbfecccccccccccc0, 0x4008afb9189194a6, + 0xbfecccccccccccd3, 0x4008afb91891949a, 0x0, 0x0, - 0xbfecccccccccccad, 0x400868576b1f9b83, + 0xbfecccccccccccc0, 0x400868576b1f9b88, 0x0, 0x0, - 0xbfecccccccccccbb, 0x4008226dee0f5f3c, + 0xbfeccccccccccce5, 0x4008226dee0f5f55, 0x0, 0x0, - 0xbfeccccccccccd51, 0x4007ddf0ce3458d8, + 0xbfecccccccccccf4, 0x4007ddf0ce3458d1, 0x0, 0x0, - 0xbfeccccccccccd36, 0x40079ad4b5d6ffb8, + 0xbfecccccccccccf4, 0x40079ad4b5d6ffd0, 0x0, 0x0, - 0xbfecccccccccccc4, 0x4007590ec645c29a, + 0xbfecccccccccccdb, 0x4007590ec645c299, 0x0, 0x0, - 0xbfeccccccccccc79, 0x4007189491ca4e68, + 0xbfecccccccccccc9, 0x4007189491ca4e66, 0x0, 0x0, - 0xbfecccccccccccfc, 0x4006d95c15fc1e53, + 0xbfecccccccccccb3, 0x4006d95c15fc1e5d, 0x0, 0x0, - 0xbfeccccccccccce2, 0x40069b5bb669d00e, + 0xbfecccccccccccb6, 0x40069b5bb669d018, 0x0, 0x0, - 0xbfecccccccccccc2, 0x40065e8a37934162, + 0xbfecccccccccccb6, 0x40065e8a37934162, 0x0, 0x0, - 0xbfecccccccccccd1, 0x400622deba2ef42a, + 0xbfecccccccccccc8, 0x400622deba2ef428, 0x0, 0x0, - 0xbfecccccccccccdc, 0x4005e850b6b59fca, + 0xbfecccccccccccbf, 0x4005e850b6b59fd3, 0x0, 0x0, - 0xbfecccccccccccb5, 0x4005aed7f92f3dde, + 0xbfeccccccccccce0, 0x4005aed7f92f3de4, 0x0, 0x0, - 0xbfecccccccccccd0, 0x4005766c9d3d3827, + 0xbfecccccccccccc5, 0x4005766c9d3d3824, 0x0, 0x0, - 0xbfecccccccccccdb, 0x40053f070a5db5b3, + 0xbfecccccccccccca, 0x40053f070a5db5b2, 0x0, 0x0, - 0xbfeccccccccccca5, 0x4005089ff0644d18, + 0xbfecccccccccccc1, 0x4005089ff0644d0d, 0x0, 0x0, - 0xbfecccccccccccc0, 0x4004d3304424a9ee, + 0xbfeccccccccccccc, 0x4004d3304424a9f0, 0x0, 0x0, - 0xbfeccccccccccca4, 0x40049eb13c4bf586, + 0xbfecccccccccccc4, 0x40049eb13c4bf58e, 0x0, 0x0, - 0xbfeccccccccccc9f, 0x40046b1c4e660ac3, + 0xbfeccccccccccce2, 0x40046b1c4e660abc, 0x0, 0x0, - 0xbfeccccccccccc6d, 0x4004386b2c0bb634, + 0xbfecccccccccccb2, 0x4004386b2c0bb635, 0x0, 0x0, - 0xbfecccccccccccaa, 0x40040697c0377524, + 0xbfecccccccccccc9, 0x40040697c0377526, 0x0, 0x0, - 0xbfeccccccccccced, 0x4003d59c2cbe51cc, + 0xbfecccccccccccce, 0x4003d59c2cbe51cc, 0x0, 0x0, - 0xbfeccccccccccccc, 0x4003a572c7eaaa54, + 0xbfecccccccccccca, 0x4003a572c7eaaa4d, 0x0, 0x0, - 0xbfecccccccccccc2, 0x400376161a36d14e, + 0xbfecccccccccccbc, 0x400376161a36d152, 0x0, 0x0, - 0xbfecccccccccccb8, 0x40034780dc25a09e, + 0xbfeccccccccccced, 0x40034780dc25a096, 0x0, 0x0, - 0xbfecccccccccccd5, 0x400319adf43733c6, + 0xbfecccccccccccbe, 0x400319adf43733d4, 0x0, 0x0, - 0xbfecccccccccccc5, 0x4002ec9874f821b2, + 0xbfecccccccccccdc, 0x4002ec9874f821ba, 0x0, 0x0, - 0xbfeccccccccccce7, 0x4002c03b9b29a6dd, + 0xbfecccccccccccc9, 0x4002c03b9b29a6e6, 0x0, 0x0, - 0xbfecccccccccccf2, 0x40029492cc014e90, + 0xbfecccccccccccf5, 0x40029492cc014e8c, 0x0, 0x0, - 0xbfeccccccccccccf, 0x40026999937ebfec, + 0xbfecccccccccccc1, 0x40026999937ebfec, 0x0, 0x0, - 0xbfecccccccccccde, 0x40023f4ba2d66a81, + 0xbfeccccccccccca5, 0x40023f4ba2d66a80, 0x0, 0x0, - 0xbfeccccccccccccf, 0x400215a4ceefe456, + 0xbfeccccccccccccd, 0x400215a4ceefe44f, 0x0, 0x0, - 0xbfecccccccccccf2, 0x4001eca10ef6dd96, + 0xbfecccccccccccbe, 0x4001eca10ef6dd8d, 0x0, 0x0, - 0xbfeccccccccccd0e, 0x4001c43c7afda054, + 0xbfecccccccccccda, 0x4001c43c7afda055, 0x0, 0x0, - 0xbfeccccccccccce9, 0x40019c734ab02434, + 0xbfeccccccccccc81, 0x40019c734ab0244b, 0x0, 0x0, - 0xbfeccccccccccd2b, 0x40017541d416cc99, + 0xbfeccccccccccbda, 0x40017541d416ccb4, 0x0, 0x0, - 0xbfecccccccccccc6, 0x40014ea48a67f7b2, + 0xbfeccccccccccc81, 0x40014ea48a67f7c6, 0x0, 0x0, - 0xbfeccccccccccd1e, 0x40012897fce78f0d, + 0xbfecccccccccccc8, 0x40012897fce78f0c, 0x0, 0x0, - 0xbfeccccccccccd01, 0x40010318d5d3dd5d, + 0xbfeccccccccccccc, 0x40010318d5d3dd58, 0x0, 0x0, - 0xbfeccccccccccc9f, 0x4000de23d95ef0e2, + 0xbfecccccccccccd4, 0x4000de23d95ef0d3, 0x0, 0x0, - 0xbfeccccccccccccc, 0x4000b9b5e4b3e1e8, + 0xbfecccccccccccdb, 0x4000b9b5e4b3e1ea, 0x0, 0x0, - 0xbfeccccccccccccd, 0x400095cbed075f1e, + 0xbfecccccccccccd0, 0x400095cbed075f1e, 0x0, 0x0, - 0xbfecccccccccccde, 0x40007262feb2e761, + 0xbfecccccccccccda, 0x40007262feb2e76a, 0x0, 0x0, - 0xbfeccccccccccce5, 0x40004f783c5a2589, + 0xbfecccccccccccd1, 0x40004f783c5a2594, 0x0, 0x0, - 0xbfecccccccccccd9, 0x40002d08de19e811, + 0xbfecccccccccccc0, 0x40002d08de19e80e, 0x0, 0x0, - 0xbfeccccccccccce1, 0x40000b1230c03800, + 0xbfecccccccccccd5, 0x40000b1230c037f7, 0x0, 0x0, - 0xbfecccccccccccab, 0x3fffd3232a1a3126, + 0xbfecccccccccccda, 0x3fffd3232a1a3120, 0x0, 0x0, - 0xbfeccccccccccc94, 0x3fff9108fdf702d6, + 0xbfeccccccccccce5, 0x3fff9108fdf702e0, 0x0, 0x0, - 0xbfeccccccccccce7, 0x3fff4fd0ea24510f, + 0xbfeccccccccccccb, 0x3fff4fd0ea24510b, 0x0, 0x0, - 0xbfecccccccccccf6, 0x3fff0f761f7775df, + 0xbfecccccccccccd3, 0x3fff0f761f7775e3, 0x0, 0x0, - 0xbfeccccccccccd01, 0x3ffecff3f14c4aef, + 0xbfeccccccccccce0, 0x3ffecff3f14c4acc, 0x0, 0x0, - 0xbfeccccccccccd0d, 0x3ffe9145d4512b45, + 0xbfeccccccccccca0, 0x3ffe9145d4512b49, 0x0, 0x0, - 0xbfeccccccccccce7, 0x3ffe53675d5fc05c, + 0xbfecccccccccccd0, 0x3ffe53675d5fc058, 0x0, 0x0, - 0xbfecccccccccccbd, 0x3ffe16544061f93a, + 0xbfecccccccccccdb, 0x3ffe16544061f94a, 0x0, 0x0, - 0xbfecccccccccccee, 0x3ffdda084f429a8f, + 0xbfecccccccccccdb, 0x3ffdda084f429a8b, 0x0, 0x0, - 0xbfecccccccccccca, 0x3ffd9e7f78e8d8ec, + 0xbfecccccccccccab, 0x3ffd9e7f78e8d8e7, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3ffd63b5c83e7820, + 0xbfecccccccccccd3, 0x3ffd63b5c83e780f, 0x0, 0x0, - 0xbfecccccccccccda, 0x3ffd29a7633ff2a6, + 0xbfecccccccccccd6, 0x3ffd29a7633ff2a6, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3ffcf0508a162f66, + 0xbfecccccccccccb9, 0x3ffcf0508a162f62, 0x0, 0x0, - 0xbfecccccccccccba, 0x3ffcb7ad96395760, + 0xbfeccccccccccca6, 0x3ffcb7ad96395790, 0x0, 0x0, - 0xbfecccccccccccbd, 0x3ffc7fbaf99c5f15, + 0xbfecccccccccccd1, 0x3ffc7fbaf99c5f10, 0x0, 0x0, - 0xbfecccccccccccf5, 0x3ffc48753de0dbe6, + 0xbfecccccccccccd0, 0x3ffc48753de0dbd8, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3ffc11d90392ca3c, + 0xbfecccccccccccd5, 0x3ffc11d90392ca41, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3ffbdbe3016be33e, + 0xbfecccccccccccd9, 0x3ffbdbe3016be33f, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3ffba690039e2f93, + 0xbfeccccccccccc9e, 0x3ffba690039e2f94, 0x0, 0x0, - 0xbfeccccccccccce5, 0x3ffb71dceb258288, + 0xbfecccccccccccd5, 0x3ffb71dceb25826f, 0x0, 0x0, - 0xbfecccccccccccca, 0x3ffb3dc6ad1f9144, + 0xbfeccccccccccceb, 0x3ffb3dc6ad1f9141, 0x0, 0x0, - 0xbfecccccccccccf8, 0x3ffb0a4a522a5a52, + 0xbfeccccccccccd48, 0x3ffb0a4a522a5a8b, 0x0, 0x0, - 0xbfeccccccccccced, 0x3ffad764f5c89821, + 0xbfeccccccccccd03, 0x3ffad764f5c8982b, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3ffaa513c5cbf934, + 0xbfecccccccccccaf, 0x3ffaa513c5cbf93f, 0x0, 0x0, - 0xbfecccccccccccb4, 0x3ffa735401c4e2f8, + 0xbfecccccccccccd2, 0x3ffa735401c4e2f6, 0x0, 0x0, - 0xbfeccccccccccca4, 0x3ffa4222fa777c83, + 0xbfecccccccccccc2, 0x3ffa4222fa777ca0, 0x0, 0x0, - 0xbfecccccccccccf7, 0x3ffa117e1155cd0c, + 0xbfecccccccccccf1, 0x3ffa117e1155cd10, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3ff9e162b7feb368, + 0xbfeccccccccccccd, 0x3ff9e162b7feb366, 0x0, 0x0, - 0xbfecccccccccccaf, 0x3ff9b1ce6fc184b1, + 0xbfecccccccccccdc, 0x3ff9b1ce6fc184a8, 0x0, 0x0, - 0xbfeccccccccccca4, 0x3ff982bec9261ec8, + 0xbfeccccccccccccb, 0x3ff982bec9261ec6, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3ff9543163794102, + 0xbfeccccccccccce8, 0x3ff95431637940dc, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3ff92623ec5cfac4, + 0xbfecccccccccccda, 0x3ff92623ec5cfad3, 0x0, 0x0, - 0xbfeccccccccccce3, 0x3ff8f8941f5d0a6e, + 0xbfecccccccccccd0, 0x3ff8f8941f5d0a72, 0x0, 0x0, - 0xbfecccccccccccb3, 0x3ff8cb7fc586fc80, + 0xbfecccccccccccf2, 0x3ff8cb7fc586fc70, 0x0, 0x0, - 0xbfecccccccccccbe, 0x3ff89ee4b505e9c7, + 0xbfecccccccccccd0, 0x3ff89ee4b505e9e6, 0x0, 0x0, - 0xbfecccccccccccb4, 0x3ff872c0d0c1adcb, + 0xbfecccccccccccd6, 0x3ff872c0d0c1adc7, 0x0, 0x0, - 0xbfecccccccccccbc, 0x3ff8471208016e1b, + 0xbfeccccccccccce4, 0x3ff8471208016e42, 0x0, 0x0, - 0xbfeccccccccccce1, 0x3ff81bd656115728, + 0xbfecccccccccccee, 0x3ff81bd656115714, 0x0, 0x0, - 0xbfeccccccccccca0, 0x3ff7f10bc1eb674c, + 0xbfecccccccccccda, 0x3ff7f10bc1eb6720, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3ff7c6b05de32f1c, + 0xbfecccccccccccda, 0x3ff7c6b05de32f0e, 0x0, 0x0, - 0xbfecccccccccccb6, 0x3ff79cc24754654d, + 0xbfecccccccccccd2, 0x3ff79cc247546544, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3ff7733fa654331c, + 0xbfecccccccccccda, 0x3ff7733fa65432e0, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3ff74a26ad651df3, + 0xbfecccccccccccda, 0x3ff74a26ad651dec, 0x0, 0x0, - 0xbfecccccccccccbb, 0x3ff72175992d77aa, + 0xbfecccccccccccbb, 0x3ff72175992d77a4, 0x0, 0x0, - 0xbfecccccccccccae, 0x3ff6f92ab03035b2, + 0xbfecccccccccccdc, 0x3ff6f92ab03035ac, 0x0, 0x0, - 0xbfeccccccccccd1e, 0x3ff6d14442881f52, + 0xbfeccccccccccc7e, 0x3ff6d14442881eec, 0x0, 0x0, - 0xbfeccccccccccd4b, 0x3ff6a9c0a9a53542, + 0xbfecccccccccccc5, 0x3ff6a9c0a9a53558, 0x0, 0x0, - 0xbfeccccccccccca7, 0x3ff6829e480c4657, + 0xbfeccccccccccccc, 0x3ff6829e480c4664, 0x0, 0x0, - 0xbfecccccccccccb7, 0x3ff65bdb89188fce, + 0xbfecccccccccccd4, 0x3ff65bdb89188fcc, 0x0, 0x0, - 0xbfeccccccccccd1d, 0x3ff63576e0bf609b, + 0xbfecccccccccccc4, 0x3ff63576e0bf6076, 0x0, 0x0, - 0xbfecccccccccccd3, 0x3ff60f6ecb55a804, + 0xbfeccccccccccccb, 0x3ff60f6ecb55a7ec, 0x0, 0x0, - 0xbfecccccccccccec, 0x3ff5e9c1cd575d7e, + 0xbfeccccccccccccc, 0x3ff5e9c1cd575d58, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3ff5c46e7330affa, + 0xbfeccccccccccca0, 0x3ff5c46e7330b000, 0x0, 0x0, - 0xbfeccccccccccc43, 0x3ff59f735108ef68, + 0xbfeccccccccccd54, 0x3ff59f735108ee96, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3ff57acf028f16fc, + 0xbfeccccccccccd07, 0x3ff57acf028f174e, 0x0, 0x0, - 0xbfeccccccccccd08, 0x3ff556802ac7fe33, + 0xbfecccccccccccbf, 0x3ff556802ac7fe2c, 0x0, 0x0, - 0xbfecccccccccccdd, 0x3ff5328573ddff04, + 0xbfecccccccccccd4, 0x3ff5328573ddfef3, 0x0, 0x0, - 0xbfeccccccccccd1b, 0x3ff50edd8ef2292b, + 0xbfecccccccccccda, 0x3ff50edd8ef2290e, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3ff4eb8733eedae2, + 0xbfecccccccccccad, 0x3ff4eb8733eedaf4, 0x0, 0x0, - 0xbfecccccccccccac, 0x3ff4c881215bbc32, + 0xbfecccccccccccbd, 0x3ff4c881215bbc3e, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3ff4a5ca1c330ef2, + 0xbfecccccccccccc0, 0x3ff4a5ca1c330f1a, 0x0, 0x0, - 0xbfeccccccccccd15, 0x3ff48360efb847c6, + 0xbfecccccccccccca, 0x3ff48360efb847c3, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3ff461446d4fe2e0, + 0xbfecccccccccccc7, 0x3ff461446d4fe2f2, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3ff43f736c586d42, + 0xbfecccccccccccc3, 0x3ff43f736c586d40, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3ff41decca04b247, + 0xbfeccccccccccccf, 0x3ff41decca04b252, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3ff3fcaf693709fe, + 0xbfecccccccccccf0, 0x3ff3fcaf69370a00, 0x0, 0x0, - 0xbfecccccccccccbf, 0x3ff3dbba325db82c, + 0xbfeccccccccccce6, 0x3ff3dbba325db82a, 0x0, 0x0, - 0xbfeccccccccccce7, 0x3ff3bb0c13505747, + 0xbfecccccccccccbe, 0x3ff3bb0c13505745, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3ff39aa3ff2e43e5, + 0xbfeccccccccccccd, 0x3ff39aa3ff2e43f5, 0x0, 0x0, - 0xbfeccccccccccc90, 0x3ff37a80ee3e00d2, + 0xbfeccccccccccd1e, 0x3ff37a80ee3e00f2, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3ff35aa1ddcd8bc2, + 0xbfecccccccccccd7, 0x3ff35aa1ddcd8bb6, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3ff33b05d013985a, + 0xbfecccccccccccc5, 0x3ff33b05d0139857, 0x0, 0x0, - 0xbfecccccccccccde, 0x3ff31babcc11ae76, + 0xbfecccccccccccca, 0x3ff31babcc11ae7f, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3ff2fc92dd771f62, + 0xbfeccccccccccc96, 0x3ff2fc92dd771f69, 0x0, 0x0, - 0xbfecccccccccccdf, 0x3ff2ddba1484cca1, + 0xbfecccccccccccd4, 0x3ff2ddba1484ccaf, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3ff2bf2085f1bbf0, + 0xbfecccccccccccdc, 0x3ff2bf2085f1bbe7, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3ff2a0c54ad06c8d, + 0xbfecccccccccccd3, 0x3ff2a0c54ad06c8e, 0x0, 0x0, - 0xbfeccccccccccd0d, 0x3ff282a78074ed3e, + 0xbfecccccccccccb4, 0x3ff282a78074ed1c, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3ff264c6485ba7cf, + 0xbfecccccccccccbf, 0x3ff264c6485ba7e4, 0x0, 0x0, - 0xbfecccccccccccb9, 0x3ff24720c810e0d6, + 0xbfecccccccccccd2, 0x3ff24720c810e0d8, 0x0, 0x0, - 0xbfecccccccccccce, 0x3ff229b62918e136, + 0xbfeccccccccccccc, 0x3ff229b62918e14b, 0x0, 0x0, - 0xbfecccccccccccf8, 0x3ff20c8598d8c815, + 0xbfeccccccccccceb, 0x3ff20c8598d8c80c, 0x0, 0x0, - 0xbfeccccccccccd04, 0x3ff1ef8e487ffd44, + 0xbfecccccccccccc2, 0x3ff1ef8e487ffd4c, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3ff1d2cf6cf240b2, + 0xbfeccccccccccce0, 0x3ff1d2cf6cf240b6, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3ff1b6483eb250ba, + 0xbfecccccccccccec, 0x3ff1b6483eb250ba, 0x0, 0x0, - 0xbfecccccccccccec, 0x3ff199f7f9cd237a, + 0xbfecccccccccccbe, 0x3ff199f7f9cd231d, 0x0, 0x0, - 0xbfeccccccccccd39, 0x3ff17dddddc5ac5e, + 0xbfeccccccccccd03, 0x3ff17dddddc5ac50, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3ff161f92d813090, + 0xbfeccccccccccccc, 0x3ff161f92d813098, 0x0, 0x0, - 0xbfecccccccccccce, 0x3ff146492f341940, + 0xbfecccccccccccd4, 0x3ff146492f34194f, 0x0, 0x0, - 0xbfecccccccccccf4, 0x3ff12acd2c4f4d57, + 0xbfeccccccccccca3, 0x3ff12acd2c4f4d74, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3ff10f84716e062a, + 0xbfecccccccccccd7, 0x3ff10f84716e0631, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3ff0f46e4e441cf4, + 0xbfeccccccccccce0, 0x3ff0f46e4e441cfa, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3ff0d98a158cd042, + 0xbfecccccccccccca, 0x3ff0d98a158cd040, 0x0, 0x0, - 0xbfecccccccccccb0, 0x3ff0bed71cf9f936, + 0xbfecccccccccccde, 0x3ff0bed71cf9f957, 0x0, 0x0, - 0xbfecccccccccccc1, 0x3ff0a454bd23b224, + 0xbfecccccccccccdc, 0x3ff0a454bd23b236, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3ff08a0251786608, + 0xbfecccccccccccd2, 0x3ff08a0251786602, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3ff06fdf382d4a0d, + 0xbfecccccccccccd1, 0x3ff06fdf382d4a18, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3ff055ead22f3c62, + 0xbfeccccccccccce6, 0x3ff055ead22f3c64, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3ff03c24831403d7, + 0xbfeccccccccccce2, 0x3ff03c24831403d2, 0x0, 0x0, - 0xbfecccccccccccca, 0x3ff0228bb10bf00b, + 0xbfecccccccccccaf, 0x3ff0228bb10bf00b, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3ff0091fc4d3d594, + 0xbfecccccccccccee, 0x3ff0091fc4d3d58f, 0x0, 0x0, - 0xbfeccccccccccda8, 0x3fefdfc0534ec7ee, + 0xbfecccccccccccb3, 0x3fefdfc0534ec797, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fefad989a67a546, + 0xbfecccccccccccb4, 0x3fefad989a67a505, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fef7bc73f15c6a6, + 0xbfeccccccccccce3, 0x3fef7bc73f15c6aa, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fef4a4b262c6ba8, + 0xbfecccccccccccd9, 0x3fef4a4b262c6bac, 0x0, 0x0, - 0xbfecccccccccccfa, 0x3fef19233915d7c0, + 0xbfecccccccccccae, 0x3fef19233915d7cc, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3feee84e65bb349c, + 0xbfeccccccccccce2, 0x3feee84e65bb34a8, 0x0, 0x0, - 0xbfecccccccccccdf, 0x3feeb7cb9e6d0d70, + 0xbfecccccccccccc5, 0x3feeb7cb9e6d0d4e, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fee8799d9cc58ec, + 0xbfecccccccccccee, 0x3fee8799d9cc58d0, 0x0, 0x0, - 0xbfeccccccccccce7, 0x3fee57b812b41514, + 0xbfecccccccccccdf, 0x3fee57b812b414e2, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3fee282548236acc, + 0xbfecccccccccccb8, 0x3fee282548236ae2, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fedf8e07d2859ac, + 0xbfecccccccccccec, 0x3fedf8e07d2859d0, 0x0, 0x0, - 0xbfecccccccccccc0, 0x3fedc9e8b8cae4d0, + 0xbfecccccccccccaf, 0x3fedc9e8b8cae4e8, 0x0, 0x0, - 0xbfecccccccccccea, 0x3fed9b3d05f8bf00, + 0xbfeccccccccccce7, 0x3fed9b3d05f8bf24, 0x0, 0x0, - 0xbfecccccccccccb8, 0x3fed6cdc73717428, + 0xbfecccccccccccf9, 0x3fed6cdc73717420, 0x0, 0x0, - 0xbfecccccccccccff, 0x3fed3ec613b30760, + 0xbfecccccccccccd6, 0x3fed3ec613b307a0, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3fed10f8fce70980, + 0xbfeccccccccccc85, 0x3fed10f8fce709e0, 0x0, 0x0, - 0xbfeccccccccccc60, 0x3fece37448d01f00, + 0xbfeccccccccccd17, 0x3fece37448d020a0, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fecb63714b7f39f, + 0xbfeccccccccccbc4, 0x3fecb63714b7f387, 0x0, 0x0, - 0xbfeccccccccccc45, 0x3fec8940815d9ba1, + 0xbfeccccccccccccc, 0x3fec8940815d9b38, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3fec5c8fb2e45b51, + 0xbfecccccccccccc7, 0x3fec5c8fb2e45b6f, 0x0, 0x0, - 0xbfeccccccccccd19, 0x3fec3023d0c2d84b, + 0xbfeccccccccccca9, 0x3fec3023d0c2d880, 0x0, 0x0, - 0xbfeccccccccccce6, 0x3fec03fc05b2a7f4, + 0xbfecccccccccccac, 0x3fec03fc05b2a7dc, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3febd8177fa04204, + 0xbfecccccccccccca, 0x3febd8177fa0420a, 0x0, 0x0, - 0xbfeccccccccccca4, 0x3febac756f9b5094, + 0xbfecccccccccccc8, 0x3febac756f9b50a6, 0x0, 0x0, - 0xbfecccccccccccc5, 0x3feb811509c75af1, + 0xbfecccccccccccba, 0x3feb811509c75ae0, 0x0, 0x0, - 0xbfecccccccccccee, 0x3feb55f5854cc771, + 0xbfecccccccccccce, 0x3feb55f5854cc7f1, 0x0, 0x0, - 0xbfecccccccccccaf, 0x3feb2b161c4a3902, + 0xbfecccccccccccd4, 0x3feb2b161c4a3919, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3feb00760bc6397f, + 0xbfecccccccccccce, 0x3feb00760bc63973, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fead61493a13cb0, + 0xbfecccccccccccb4, 0x3fead61493a13ce0, 0x0, 0x0, - 0xbfeccccccccccca3, 0x3feaabf0f687efc1, + 0xbfecccccccccccc2, 0x3feaabf0f687efd6, 0x0, 0x0, - 0xbfecccccccccccf0, 0x3fea820a79e5d6f4, + 0xbfeccccccccccce0, 0x3fea820a79e5d6f7, 0x0, 0x0, - 0xbfeccccccccccceb, 0x3fea586065d837a4, + 0xbfecccccccccccd7, 0x3fea586065d837de, 0x0, 0x0, - 0xbfeccccccccccd58, 0x3fea2ef205214c94, + 0xbfecccccccccccd0, 0x3fea2ef205214d72, 0x0, 0x0, - 0xbfeccccccccccc9d, 0x3fea05bea51bc0e6, + 0xbfecccccccccccda, 0x3fea05bea51bc102, 0x0, 0x0, - 0xbfecccccccccccda, 0x3fe9dcc595ae70c0, + 0xbfecccccccccccd7, 0x3fe9dcc595ae70b9, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fe9b406294070f2, + 0xbfecccccccccccd1, 0x3fe9b40629407103, 0x0, 0x0, - 0xbfecccccccccccf6, 0x3fe98b7fb4ad5706, + 0xbfecccccccccccc5, 0x3fe98b7fb4ad5769, 0x0, 0x0, - 0xbfeccccccccccce2, 0x3fe963318f39c296, + 0xbfecccccccccccc4, 0x3fe963318f39c2a3, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3fe93b1b12882557, + 0xbfecccccccccccb9, 0x3fe93b1b12882554, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3fe9133b9a8dc94e, + 0xbfecccccccccccd2, 0x3fe9133b9a8dc9d4, 0x0, 0x0, - 0xbfeccccccccccc28, 0x3fe8eb92858815f2, + 0xbfeccccccccccccc, 0x3fe8eb9285881628, 0x0, 0x0, - 0xbfeccccccccccc68, 0x3fe8c41f33f209b7, + 0xbfeccccccccccc95, 0x3fe8c41f33f20911, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fe89ce10879ef34, + 0xbfecccccccccccdf, 0x3fe89ce10879eeaf, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3fe875d767f75054, + 0xbfeccccccccccccd, 0x3fe875d767f75048, 0x0, 0x0, - 0xbfeccccccccccc66, 0x3fe84f01b961178e, + 0xbfecccccccccccc8, 0x3fe84f01b961175c, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fe8285f65c3e6d0, + 0xbfecccccccccccb0, 0x3fe8285f65c3e6ca, 0x0, 0x0, - 0xbfecccccccccccb5, 0x3fe801efd838a83c, + 0xbfecccccccccccbe, 0x3fe801efd838a822, 0x0, 0x0, - 0xbfecccccccccccb1, 0x3fe7dbb27ddb4b24, + 0xbfecccccccccccb8, 0x3fe7dbb27ddb4b46, 0x0, 0x0, - 0xbfecccccccccccfe, 0x3fe7b5a6c5c1b5da, + 0xbfecccccccccccf4, 0x3fe7b5a6c5c1b634, 0x0, 0x0, - 0xbfeccccccccccd0c, 0x3fe78fcc20f2e5ee, + 0xbfecccccccccccf7, 0x3fe78fcc20f2e5cb, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3fe76a22025e3cfd, + 0xbfecccccccccccdf, 0x3fe76a22025e3cde, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3fe744a7ded303ca, + 0xbfecccccccccccdb, 0x3fe744a7ded303ac, 0x0, 0x0, - 0xbfeccccccccccd50, 0x3fe71f5d2cf80e64, + 0xbfecccccccccccce, 0x3fe71f5d2cf80e64, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fe6fa4165439414, + 0xbfecccccccccccd1, 0x3fe6fa41654393f8, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fe6d55401f32e22, + 0xbfecccccccccccde, 0x3fe6d55401f32e10, 0x0, 0x0, - 0xbfecccccccccccbb, 0x3fe6b0947f040213, + 0xbfeccccccccccce0, 0x3fe6b0947f040217, 0x0, 0x0, - 0xbfeccccccccccc85, 0x3fe68c025a2b131a, + 0xbfeccccccccccd0a, 0x3fe68c025a2b12f8, 0x0, 0x0, - 0xbfeccccccccccca3, 0x3fe6679d12cdbae8, + 0xbfecccccccccccc4, 0x3fe6679d12cdbafc, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3fe6436429fa4aa5, + 0xbfecccccccccccc5, 0x3fe6436429fa4a8c, 0x0, 0x0, - 0xbfecccccccccccf1, 0x3fe61f572260cf3f, + 0xbfeccccccccccccb, 0x3fe61f572260cf68, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3fe5fb75804bfe31, + 0xbfecccccccccccd5, 0x3fe5fb75804bfe3a, 0x0, 0x0, - 0xbfeccccccccccca8, 0x3fe5d7bec99a41cc, + 0xbfecccccccccccc4, 0x3fe5d7bec99a41f7, 0x0, 0x0, - 0xbfecccccccccccb7, 0x3fe5b43285b6eba1, + 0xbfeccccccccccccb, 0x3fe5b43285b6ebbc, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3fe590d03d938895, + 0xbfeccccccccccce3, 0x3fe590d03d9388c0, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fe56d977ba155f8, + 0xbfeccccccccccd24, 0x3fe56d977ba1564e, 0x0, 0x0, - 0xbfecccccccccccbf, 0x3fe54a87cbcad983, + 0xbfecccccccccccaf, 0x3fe54a87cbcad999, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fe527a0bb6d94b2, + 0xbfecccccccccccc3, 0x3fe527a0bb6d9478, 0x0, 0x0, - 0xbfecccccccccccbc, 0x3fe504e1d953dad3, + 0xbfecccccccccccdf, 0x3fe504e1d953da98, 0x0, 0x0, - 0xbfecccccccccccf4, 0x3fe4e24ab5aec705, + 0xbfecccccccccccde, 0x3fe4e24ab5aec6ea, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fe4bfdae2104d4c, + 0xbfeccccccccccce5, 0x3fe4bfdae2104d51, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fe49d91f16567f1, + 0xbfecccccccccccdd, 0x3fe49d91f16567e8, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fe47b6f77f064e3, + 0xbfecccccccccccd5, 0x3fe47b6f77f064fe, 0x0, 0x0, - 0xbfecccccccccccf5, 0x3fe459730b434c8b, + 0xbfeccccccccccce1, 0x3fe459730b434ce4, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fe4379c423a64cb, + 0xbfeccccccccccc88, 0x3fe4379c423a64c0, 0x0, 0x0, - 0xbfecccccccccccbe, 0x3fe415eab4f6cd45, + 0xbfecccccccccccd6, 0x3fe415eab4f6cd4a, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fe3f45dfcd937d8, + 0xbfecccccccccccd3, 0x3fe3f45dfcd937c8, 0x0, 0x0, - 0xbfecccccccccccb6, 0x3fe3d2f5b47cb8ac, + 0xbfeccccccccccca8, 0x3fe3d2f5b47cb894, 0x0, 0x0, - 0xbfecccccccccccbe, 0x3fe3b1b177b1b0a8, + 0xbfecccccccccccb7, 0x3fe3b1b177b1b079, 0x0, 0x0, - 0xbfecccccccccccbf, 0x3fe39090e378ceec, + 0xbfecccccccccccc8, 0x3fe39090e378ceec, 0x0, 0x0, - 0xbfecccccccccccb1, 0x3fe36f9395fe2a78, + 0xbfecccccccccccb6, 0x3fe36f9395fe2a9a, 0x0, 0x0, - 0xbfeccccccccccc80, 0x3fe34eb92e9473d0, + 0xbfecccccccccccd8, 0x3fe34eb92e947327, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fe32e014db03d2c, + 0xbfecccccccccccfe, 0x3fe32e014db03cb2, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fe30d6b94e35728, + 0xbfecccccccccccd0, 0x3fe30d6b94e3572c, 0x0, 0x0, - 0xbfecccccccccccc1, 0x3fe2ecf7a6d845e0, + 0xbfeccccccccccce7, 0x3fe2ecf7a6d845fe, 0x0, 0x0, - 0xbfecccccccccccad, 0x3fe2cca5274dcad9, + 0xbfeccccccccccce1, 0x3fe2cca5274dcad0, 0x0, 0x0, - 0xbfecccccccccccb9, 0x3fe2ac73bb12810a, + 0xbfecccccccccccc1, 0x3fe2ac73bb128116, 0x0, 0x0, - 0xbfeccccccccccce3, 0x3fe28c6308009166, + 0xbfecccccccccccc6, 0x3fe28c630800916e, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fe26c72b4f97818, + 0xbfecccccccccccd0, 0x3fe26c72b4f97828, 0x0, 0x0, - 0xbfecccccccccccd3, 0x3fe24ca269e1df0a, + 0xbfecccccccccccf2, 0x3fe24ca269e1df1c, 0x0, 0x0, - 0xbfeccccccccccce7, 0x3fe22cf1cf9d8aeb, + 0xbfecccccccccccef, 0x3fe22cf1cf9d8b17, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fe20d60900b5a77, + 0xbfecccccccccccd2, 0x3fe20d60900b5a66, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3fe1edee560158e2, + 0xbfecccccccccccd3, 0x3fe1edee56015903, 0x0, 0x0, - 0xbfecccccccccccf3, 0x3fe1ce9acd48e2bb, + 0xbfecccccccccccbd, 0x3fe1ce9acd48e29c, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fe1af65a29ad9c5, + 0xbfecccccccccccce, 0x3fe1af65a29ad9c0, 0x0, 0x0, - 0xbfecccccccccccb1, 0x3fe1904e839becf7, + 0xbfecccccccccccca, 0x3fe1904e839bed0a, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fe171551ed8ef5e, + 0xbfecccccccccccd7, 0x3fe171551ed8ef66, 0x0, 0x0, - 0xbfeccccccccccc28, 0x3fe1527923c33fbc, + 0xbfecccccccccccd6, 0x3fe1527923c340aa, 0x0, 0x0, - 0xbfeccccccccccca4, 0x3fe133ba42ad42d4, + 0xbfecccccccccccac, 0x3fe133ba42ad42d6, 0x0, 0x0, - 0xbfecccccccccccc5, 0x3fe115182cc6e688, + 0xbfecccccccccccca, 0x3fe115182cc6e6ab, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fe0f692941a3e52, + 0xbfecccccccccccca, 0x3fe0f692941a3e6d, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3fe0d8292b882656, + 0xbfeccccccccccce5, 0x3fe0d8292b88265b, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fe0b9dba6c4f965, + 0xbfecccccccccccc7, 0x3fe0b9dba6c4f97e, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fe09ba9ba5554d7, + 0xbfecccccccccccd5, 0x3fe09ba9ba5554d9, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fe07d931b8ae9cd, + 0xbfeccccccccccce1, 0x3fe07d931b8ae9d7, 0x0, 0x0, - 0xbfeccccccccccceb, 0x3fe05f9780815dd5, + 0xbfecccccccccccd7, 0x3fe05f9780815dcf, 0x0, 0x0, - 0xbfeccccccccccc95, 0x3fe041b6a01b3713, + 0xbfecccccccccccb3, 0x3fe041b6a01b36fe, 0x0, 0x0, - 0xbfecccccccccccbb, 0x3fe023f031fed7e8, + 0xbfecccccccccccd2, 0x3fe023f031fed7e2, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fe00643ee93866e, + 0xbfecccccccccccd2, 0x3fe00643ee938663, 0x0, 0x0, - 0xbfeccccccccccd20, 0x3fdfd1631dfd017a, + 0xbfecccccccccccbe, 0x3fdfd1631dfd0098, 0x0, 0x0, - 0xbfecccccccccccb7, 0x3fdf96719a403aa8, + 0xbfecccccccccccd6, 0x3fdf96719a403aae, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fdf5bb2c721f5ce, + 0xbfecccccccccccbe, 0x3fdf5bb2c721f588, 0x0, 0x0, - 0xbfecccccccccccaa, 0x3fdf21261b3e6d48, + 0xbfecccccccccccbb, 0x3fdf21261b3e6d18, 0x0, 0x0, - 0xbfeccccccccccca9, 0x3fdee6cb0e976718, + 0xbfeccccccccccd92, 0x3fdee6cb0e9765e4, 0x0, 0x0, - 0xbfecccccccccccbc, 0x3fdeaca11a8ed36e, + 0xbfecccccccccccc1, 0x3fdeaca11a8ed2e0, 0x0, 0x0, - 0xbfeccccccccccced, 0x3fde72a7b9e186ce, + 0xbfecccccccccccc3, 0x3fde72a7b9e18722, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3fde38de68a2097c, + 0xbfecccccccccccd2, 0x3fde38de68a209a8, 0x0, 0x0, - 0xbfeccccccccccd16, 0x3fddff44a43376d0, + 0xbfecccccccccccc5, 0x3fddff44a4337766, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3fddc5d9eb447bb8, + 0xbfecccccccccccdd, 0x3fddc5d9eb447be0, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3fdd8c9dbdca6070, + 0xbfecccccccccccba, 0x3fdd8c9dbdca6058, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fdd538f9cfc2e00, + 0xbfeccccccccccce0, 0x3fdd538f9cfc2e04, 0x0, 0x0, - 0xbfeccccccccccd0b, 0x3fdd1aaf0b4de480, + 0xbfecccccccccccc1, 0x3fdd1aaf0b4de518, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fdce1fb8c6bc67c, + 0xbfecccccccccccb1, 0x3fdce1fb8c6bc6b2, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fdca974a535b254, + 0xbfecccccccccccc0, 0x3fdca974a535b282, 0x0, 0x0, - 0xbfeccccccccccce4, 0x3fdc7119dbba981c, + 0xbfecccccccccccca, 0x3fdc7119dbba9824, 0x0, 0x0, - 0xbfeccccccccccc6d, 0x3fdc38eab733f800, + 0xbfeccccccccccccb, 0x3fdc38eab733f92e, 0x0, 0x0, - 0xbfecccccccccccbd, 0x3fdc00e6c0017eca, + 0xbfecccccccccccd4, 0x3fdc00e6c0017ef4, 0x0, 0x0, - 0xbfecccccccccccc1, 0x3fdbc90d7fa4a1ac, + 0xbfecccccccccccd8, 0x3fdbc90d7fa4a180, 0x0, 0x0, - 0xbfecccccccccccc5, 0x3fdb915e80bc5f9a, + 0xbfecccccccccccc2, 0x3fdb915e80bc6020, 0x0, 0x0, - 0xbfeccccccccccca6, 0x3fdb59d94f010ba4, + 0xbfecccccccccccd7, 0x3fdb59d94f010abc, 0x0, 0x0, - 0xbfeccccccccccc6f, 0x3fdb227d77401d1e, + 0xbfeccccccccccc7c, 0x3fdb227d77401ce0, 0x0, 0x0, - 0xbfeccccccccccceb, 0x3fdaeb4a87582770, + 0xbfecccccccccccc9, 0x3fdaeb4a8758275c, 0x0, 0x0, - 0xbfecccccccccccc0, 0x3fdab4400e34cc84, + 0xbfeccccccccccccd, 0x3fdab4400e34cc74, 0x0, 0x0, - 0xbfecccccccccccf7, 0x3fda7d5d9bcac958, + 0xbfecccccccccccb3, 0x3fda7d5d9bcaca84, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3fda46a2c114152e, + 0xbfecccccccccccf1, 0x3fda46a2c1141546, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3fda100f100c0090, + 0xbfeccccccccccccc, 0x3fda100f100c006c, 0x0, 0x0, - 0xbfecccccccccccc0, 0x3fd9d9a21bab78ca, + 0xbfeccccccccccccf, 0x3fd9d9a21bab788c, 0x0, 0x0, - 0xbfeccccccccccc59, 0x3fd9a35b77e548f6, + 0xbfecccccccccccb5, 0x3fd9a35b77e54928, 0x0, 0x0, - 0xbfecccccccccccbd, 0x3fd96d3ab9a271d8, + 0xbfecccccccccccd2, 0x3fd96d3ab9a271a2, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3fd9373f76be8a30, + 0xbfeccccccccccce8, 0x3fd9373f76be8a40, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fd9016946043572, + 0xbfeccccccccccce8, 0x3fd90169460435d8, 0x0, 0x0, - 0xbfeccccccccccc94, 0x3fd8cbb7bf299e60, + 0xbfecccccccccccd8, 0x3fd8cbb7bf299ef8, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fd8962a7acd044c, + 0xbfecccccccccccbb, 0x3fd8962a7acd047e, 0x0, 0x0, - 0xbfeccccccccccd05, 0x3fd860c112715498, + 0xbfecccccccccccde, 0x3fd860c112715446, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fd82b7b207ad1b8, + 0xbfeccccccccccd0e, 0x3fd82b7b207ad0d2, 0x0, 0x0, - 0xbfeccccccccccc90, 0x3fd7f658402bc17e, + 0xbfecccccccccccd0, 0x3fd7f658402bc2cc, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fd7c1580da13438, + 0xbfeccccccccccc69, 0x3fd7c1580da1339a, 0x0, 0x0, - 0xbfeccccccccccce1, 0x3fd78c7a25cfc8a6, + 0xbfecccccccccccce, 0x3fd78c7a25cfc7cc, 0x0, 0x0, - 0xbfeccccccccccceb, 0x3fd757be268083c8, + 0xbfecccccccccccce, 0x3fd757be268083fc, 0x0, 0x0, - 0xbfeccccccccccca5, 0x3fd72323ae4db6ba, + 0xbfecccccccccccd0, 0x3fd72323ae4db670, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3fd6eeaa5c9fe7e4, + 0xbfecccccccccccc3, 0x3fd6eeaa5c9fe7da, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3fd6ba51d1aad084, + 0xbfeccccccccccce0, 0x3fd6ba51d1aad0b4, 0x0, 0x0, - 0xbfecccccccccccbc, 0x3fd68619ae6a5e46, + 0xbfecccccccccccdc, 0x3fd68619ae6a5de8, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fd65201949fc112, + 0xbfecccccccccccb1, 0x3fd65201949fc0bc, 0x0, 0x0, - 0xbfecccccccccccaf, 0x3fd61e0926ce8780, + 0xbfecccccccccccae, 0x3fd61e0926ce86dc, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3fd5ea300839bfbc, + 0xbfecccccccccccc5, 0x3fd5ea300839bfb0, 0x0, 0x0, - 0xbfecccccccccccad, 0x3fd5b675dce12790, + 0xbfeccccccccccccc, 0x3fd5b675dce12780, 0x0, 0x0, - 0xbfeccccccccccc98, 0x3fd582da497e62c8, + 0xbfecccccccccccbf, 0x3fd582da497e62e0, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3fd54f5cf3823d44, + 0xbfecccccccccccad, 0x3fd54f5cf3823d80, 0x0, 0x0, - 0xbfeccccccccccce3, 0x3fd51bfd8111f76c, + 0xbfeccccccccccccf, 0x3fd51bfd8111f794, 0x0, 0x0, - 0xbfecccccccccccfc, 0x3fd4e8bb9904995c, + 0xbfecccccccccccca, 0x3fd4e8bb99049950, 0x0, 0x0, - 0xbfecccccccccccff, 0x3fd4b596e2e05130, + 0xbfeccccccccccca2, 0x3fd4b596e2e05218, 0x0, 0x0, - 0xbfecccccccccccb1, 0x3fd4828f06d7dcd8, + 0xbfeccccccccccc88, 0x3fd4828f06d7dc38, 0x0, 0x0, - 0xbfecccccccccccb7, 0x3fd44fa3adc7f474, + 0xbfecccccccccccc1, 0x3fd44fa3adc7f440, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fd41cd48134c890, + 0xbfecccccccccccc5, 0x3fd41cd48134c890, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3fd3ea212b478138, + 0xbfecccccccccccbb, 0x3fd3ea212b478184, 0x0, 0x0, - 0xbfecccccccccccd3, 0x3fd3b78956cbc854, + 0xbfecccccccccccd9, 0x3fd3b78956cbc884, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fd3850caf2d5b60, + 0xbfeccccccccccccc, 0x3fd3850caf2d5b28, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fd352aae075a418, + 0xbfecccccccccccbf, 0x3fd352aae075a420, 0x0, 0x0, - 0xbfecccccccccccee, 0x3fd3206397495e90, + 0xbfecccccccccccc4, 0x3fd3206397495ea0, 0x0, 0x0, - 0xbfecccccccccccdf, 0x3fd2ee3680e63f74, + 0xbfecccccccccccd7, 0x3fd2ee3680e63f00, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3fd2bc234b20a6a4, + 0xbfecccccccccccce, 0x3fd2bc234b20a690, 0x0, 0x0, - 0xbfecccccccccccaf, 0x3fd28a29a4615a0c, + 0xbfeccccccccccccd, 0x3fd28a29a4615a24, 0x0, 0x0, - 0xbfecccccccccccc1, 0x3fd258493ba344a4, + 0xbfeccccccccccccd, 0x3fd258493ba34454, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fd22681c0713d1c, + 0xbfeccccccccccce8, 0x3fd22681c0713d74, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fd1f4d2e2e3d8b0, + 0xbfeccccccccccccd, 0x3fd1f4d2e2e3d894, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3fd1c33c539f3ba8, + 0xbfecccccccccccfb, 0x3fd1c33c539f3c04, 0x0, 0x0, - 0xbfeccccccccccd66, 0x3fd191bdc3d0fc98, + 0xbfecccccccccccde, 0x3fd191bdc3d0fcc0, 0x0, 0x0, - 0xbfecccccccccccfb, 0x3fd16056e52e0020, + 0xbfecccccccccccb0, 0x3fd16056e52e006c, 0x0, 0x0, - 0xbfecccccccccccf1, 0x3fd12f0769f06b44, + 0xbfeccccccccccccd, 0x3fd12f0769f06af8, 0x0, 0x0, - 0xbfecccccccccccf1, 0x3fd0fdcf04d58c10, + 0xbfecccccccccccd4, 0x3fd0fdcf04d58c48, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3fd0ccad691bd784, + 0xbfeccccccccccce3, 0x3fd0ccad691bd764, 0x0, 0x0, - 0xbfecccccccccccc5, 0x3fd09ba24a80e0fc, + 0xbfecccccccccccbe, 0x3fd09ba24a80e130, 0x0, 0x0, - 0xbfeccccccccccce1, 0x3fd06aad5d3f6168, + 0xbfecccccccccccd3, 0x3fd06aad5d3f61e0, 0x0, 0x0, - 0xbfecccccccccccf5, 0x3fd039ce560d3f74, + 0xbfecccccccccccd3, 0x3fd039ce560d3f5c, 0x0, 0x0, - 0xbfecccccccccccbd, 0x3fd00904ea199c90, + 0xbfeccccccccccca3, 0x3fd00904ea199bd8, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fcfb0a19e15d6f0, + 0xbfeccccccccccca6, 0x3fcfb0a19e15d810, 0x0, 0x0, - 0xbfecccccccccccf1, 0x3fcf4f6375fa19e0, + 0xbfecccccccccccc9, 0x3fcf4f6375fa1a30, 0x0, 0x0, - 0xbfecccccccccccda, 0x3fceee4ec8fed940, + 0xbfecccccccccccd9, 0x3fceee4ec8fed8f8, 0x0, 0x0, - 0xbfecccccccccccd9, 0x3fce8d6305264d60, + 0xbfeccccccccccccd, 0x3fce8d6305264e20, 0x0, 0x0, - 0xbfecccccccccccb9, 0x3fce2c9f99526ad0, + 0xbfecccccccccccb1, 0x3fce2c9f99526af8, 0x0, 0x0, - 0xbfecccccccccccbc, 0x3fcdcc03f5413d98, + 0xbfecccccccccccc3, 0x3fcdcc03f5413e18, 0x0, 0x0, - 0xbfeccccccccccc99, 0x3fcd6b8f89895508, + 0xbfecccccccccccb8, 0x3fcd6b8f898956a0, 0x0, 0x0, - 0xbfeccccccccccc66, 0x3fcd0b41c7963cf0, + 0xbfeccccccccccc7b, 0x3fcd0b41c7963dd0, 0x0, 0x0, - 0xbfecccccccccccf1, 0x3fccab1a21a4f460, + 0xbfecccccccccccb7, 0x3fccab1a21a4f430, 0x0, 0x0, - 0xbfecccccccccccbb, 0x3fcc4b180ac079c0, + 0xbfecccccccccccd7, 0x3fcc4b180ac07910, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fcbeb3af6be5de8, + 0xbfecccccccccccd3, 0x3fcbeb3af6be5e20, 0x0, 0x0, - 0xbfecccccccccccaf, 0x3fcb8b825a3b5ef8, + 0xbfeccccccccccccc, 0x3fcb8b825a3b6010, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fcb2bedaa980c88, + 0xbfecccccccccccfb, 0x3fcb2bedaa980c50, 0x0, 0x0, - 0xbfeccccccccccce2, 0x3fcacc7c5df56fe0, + 0xbfecccccccccccd9, 0x3fcacc7c5df57040, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3fca6d2deb31cb10, + 0xbfecccccccccccca, 0x3fca6d2deb31cab0, 0x0, 0x0, - 0xbfeccccccccccd08, 0x3fca0e01c9e55030, + 0xbfecccccccccccc2, 0x3fca0e01c9e54e00, 0x0, 0x0, - 0xbfecccccccccccf6, 0x3fc9aef7725eeb40, + 0xbfecccccccccccaa, 0x3fc9aef7725eeaf8, 0x0, 0x0, - 0xbfecccccccccccee, 0x3fc9500e5da11170, + 0xbfecccccccccccbc, 0x3fc9500e5da11170, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fc8f146055e99b0, + 0xbfeccccccccccccb, 0x3fc8f146055e9a50, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3fc8929de3f79a10, + 0xbfecccccccccccb8, 0x3fc8929de3f79a90, 0x0, 0x0, - 0xbfecccccccccccf0, 0x3fc8341574765200, + 0xbfecccccccccccd8, 0x3fc83415747651c0, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fc7d5ac328c1170, + 0xbfecccccccccccb6, 0x3fc7d5ac328c1120, 0x0, 0x0, - 0xbfeccccccccccd1c, 0x3fc777619a8e3a20, + 0xbfecccccccccccb0, 0x3fc777619a8e3aa0, 0x0, 0x0, - 0xbfecccccccccccb8, 0x3fc7193529733860, + 0xbfeccccccccccc84, 0x3fc7193529733810, 0x0, 0x0, - 0xbfecccccccccccbf, 0x3fc6bb265ccf8240, + 0xbfecccccccccccde, 0x3fc6bb265ccf8250, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3fc65d34b2d2ab20, + 0xbfecccccccccccbb, 0x3fc65d34b2d2ab50, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fc5ff5faa447690, + 0xbfecccccccccccb4, 0x3fc5ff5faa447710, 0x0, 0x0, - 0xbfeccccccccccc90, 0x3fc5a1a6c281ee70, + 0xbfecccccccccccdb, 0x3fc5a1a6c281ed80, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fc544097b7a7cc0, + 0xbfecccccccccccd0, 0x3fc544097b7a7cb0, 0x0, 0x0, - 0xbfecccccccccccc1, 0x3fc4e68755ad2130, + 0xbfecccccccccccc0, 0x3fc4e68755ad20d0, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fc4891fd2259100, + 0xbfecccccccccccc5, 0x3fc4891fd22590a0, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fc42bd272796f60, + 0xbfecccccccccccc2, 0x3fc42bd272796ef0, 0x0, 0x0, - 0xbfeccccccccccce3, 0x3fc3ce9eb8c584f0, + 0xbfecccccccccccd8, 0x3fc3ce9eb8c58550, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fc3718427aaff50, + 0xbfecccccccccccce, 0x3fc3718427aaff70, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fc31482424cb560, + 0xbfecccccccccccce, 0x3fc31482424cb540, 0x0, 0x0, - 0xbfeccccccccccca0, 0x3fc2b7988c4c7090, + 0xbfecccccccccccc8, 0x3fc2b7988c4c7120, 0x0, 0x0, - 0xbfeccccccccccca0, 0x3fc25ac689c83e70, + 0xbfeccccccccccca6, 0x3fc25ac689c83f60, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3fc1fe0bbf57c520, + 0xbfeccccccccccccc, 0x3fc1fe0bbf57c550, 0x0, 0x0, - 0xbfeccccccccccce6, 0x3fc1a167b20997b0, + 0xbfecccccccccccde, 0x3fc1a167b2099a30, 0x0, 0x0, - 0xbfeccccccccccc53, 0x3fc144d9e760a760, + 0xbfecccccccccccf6, 0x3fc144d9e760aaa0, 0x0, 0x0, - 0xbfeccccccccccc8f, 0x3fc0e861e5518fc0, + 0xbfecccccccccccbe, 0x3fc0e861e5519040, 0x0, 0x0, - 0xbfeccccccccccce2, 0x3fc08bff324011e0, + 0xbfecccccccccccd6, 0x3fc08bff32401030, 0x0, 0x0, - 0xbfeccccccccccce3, 0x3fc02fb154fc7540, + 0xbfecccccccccccb4, 0x3fc02fb154fc7580, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fbfa6efa9821a40, + 0xbfecccccccccccf0, 0x3fbfa6efa9821b80, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fbeeea4725f3dc0, + 0xbfeccccccccccd02, 0x3fbeeea4725f3c40, 0x0, 0x0, - 0xbfecccccccccccb7, 0x3fbe3680149dbfc0, + 0xbfecccccccccccd0, 0x3fbe3680149dbf80, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fbd7e81a10ffc00, + 0xbfecccccccccccda, 0x3fbd7e81a10ffb40, 0x0, 0x0, - 0xbfecccccccccccb7, 0x3fbcc6a829483500, + 0xbfeccccccccccc8d, 0x3fbcc6a829483800, 0x0, 0x0, - 0xbfeccccccccccc9a, 0x3fbc0ef2bf93b460, + 0xbfeccccccccccc94, 0x3fbc0ef2bf93b540, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fbb576076f5d7a0, + 0xbfeccccccccccccf, 0x3fbb576076f5d6c0, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3fba9ff063232c00, + 0xbfecccccccccccdc, 0x3fba9ff063232b60, 0x0, 0x0, - 0xbfeccccccccccc8e, 0x3fb9e8a1987ca8c0, + 0xbfecccccccccccf0, 0x3fb9e8a1987ca7c0, 0x0, 0x0, - 0xbfecccccccccccbf, 0x3fb931732c0ace80, + 0xbfeccccccccccce3, 0x3fb931732c0acc80, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fb87a643378dd80, + 0xbfecccccccccccc8, 0x3fb87a643378dd40, 0x0, 0x0, - 0xbfeccccccccccca0, 0x3fb7c373c5101940, + 0xbfeccccccccccce5, 0x3fb7c373c5101b40, 0x0, 0x0, - 0xbfeccccccccccc94, 0x3fb70ca0f7b30980, + 0xbfeccccccccccce4, 0x3fb70ca0f7b30f00, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fb655eae2d8c880, + 0xbfecccccccccccf6, 0x3fb655eae2d8cd80, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fb59f509e883e80, + 0xbfecccccccccccdd, 0x3fb59f509e883e00, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3fb4e8d143538c40, + 0xbfecccccccccccbe, 0x3fb4e8d143538bc0, 0x0, 0x0, - 0xbfecccccccccccaa, 0x3fb4326bea5366c0, + 0xbfecccccccccccb6, 0x3fb4326bea5364c0, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fb37c1fad2269c0, + 0xbfecccccccccccae, 0x3fb37c1fad226980, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fb2c5eba5d88f00, + 0xbfecccccccccccc8, 0x3fb2c5eba5d88ec0, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fb20fceef068d40, + 0xbfeccccccccccccb, 0x3fb20fceef068e00, 0x0, 0x0, - 0xbfecccccccccccf6, 0x3fb159c8a3b15640, + 0xbfeccccccccccca4, 0x3fb159c8a3b152c0, 0x0, 0x0, - 0xbfeccccccccccc9d, 0x3fb0a3d7df4d7380, + 0xbfeccccccccccccc, 0x3fb0a3d7df4d7440, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fafdbf77b754c80, + 0xbfecccccccccccce, 0x3fafdbf77b754d00, 0x0, 0x0, - 0xbfeccccccccccceb, 0x3fae7066b67e8980, + 0xbfecccccccccccd6, 0x3fae7066b67e8b00, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fad04fba907a300, + 0xbfeccccccccccccf, 0x3fad04fba907a000, 0x0, 0x0, - 0xbfeccccccccccc9a, 0x3fab99b48d1ce480, + 0xbfeccccccccccce3, 0x3fab99b48d1ce500, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3faa2e8f9d7d2100, + 0xbfecccccccccccdd, 0x3faa2e8f9d7d2200, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fa8c38b1590a800, + 0xbfecccccccccccd0, 0x3fa8c38b1590a600, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fa758a531607400, + 0xbfecccccccccccb8, 0x3fa758a531607700, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fa5eddc2d8d7600, + 0xbfeccccccccccce3, 0x3fa5eddc2d8d6c00, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fa4832e47478600, + 0xbfecccccccccccd5, 0x3fa4832e47478600, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fa31899bc44e100, + 0xbfecccccccccccc1, 0x3fa31899bc44e000, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3fa1ae1ccab93a00, + 0xbfecccccccccccc2, 0x3fa1ae1ccab93700, 0x0, 0x0, - 0xbfecccccccccccaa, 0x3fa043b5b14d0000, + 0xbfecccccccccccd2, 0x3fa043b5b14cfe00, 0x0, 0x0, - 0xbfecccccccccccdf, 0x3f9db2c55e296400, + 0xbfecccccccccccc7, 0x3f9db2c55e296400, 0x0, 0x0, - 0xbfecccccccccccec, 0x3f9ade4407104600, + 0xbfecccccccccccce, 0x3f9ade4407104200, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3f9809e3dcf39400, + 0xbfecccccccccccd5, 0x3f9809e3dcf39000, 0x0, 0x0, - 0xbfecccccccccccdf, 0x3f9535a1601c2400, + 0xbfeccccccccccca6, 0x3f9535a1601c2400, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3f92617911657400, + 0xbfecccccccccccbc, 0x3f92617911657400, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3f8f1acee4588000, + 0xbfecccccccccccd7, 0x3f8f1acee4587800, 0x0, 0x0, - 0xbfecccccccccccda, 0x3f8972d2087a7000, + 0xbfecccccccccccb3, 0x3f8972d2087a8000, 0x0, 0x0, - 0xbfecccccccccccb0, 0x3f83caf493882000, + 0xbfeccccccccccca9, 0x3f83caf493882000, 0x0, 0x0, - 0xbfecccccccccccdf, 0x3f7c465f14e6e000, + 0xbfecccccccccccd6, 0x3f7c465f14e70000, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3f70f6f7e54d8000, + 0xbfeccccccccccca5, 0x3f70f6f7e54e0000, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3f569e968f1c0000, + 0xbfeccccccccccc77, 0x3f569e968f180000, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbf569e968f1c0000, + 0xbfecccccccccccc7, 0xbf569e968f1c0000, 0x0, 0x0, - 0xbfecccccccccccbd, 0xbf70f6f7e54dc000, + 0xbfecccccccccccc3, 0xbf70f6f7e54e0000, 0x0, 0x0, - 0xbfecccccccccccd4, 0xbf7c465f14e6e000, + 0xbfecccccccccccd4, 0xbf7c465f14e6c000, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbf83caf493883000, + 0xbfeccccccccccce9, 0xbf83caf493883000, 0x0, 0x0, - 0xbfeccccccccccce0, 0xbf8972d2087a8000, + 0xbfecccccccccccec, 0xbf8972d2087a7000, 0x0, 0x0, - 0xbfecccccccccccba, 0xbf8f1acee4587000, + 0xbfecccccccccccbe, 0xbf8f1acee4587800, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbf92617911657000, + 0xbfecccccccccccca, 0xbf92617911657000, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbf9535a1601c2000, + 0xbfecccccccccccde, 0xbf9535a1601c2800, 0x0, 0x0, - 0xbfecccccccccccea, 0xbf9809e3dcf39400, + 0xbfecccccccccccf3, 0xbf9809e3dcf39000, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbf9ade4407104400, + 0xbfecccccccccccdc, 0xbf9ade4407104600, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbf9db2c55e295800, + 0xbfecccccccccccb9, 0xbf9db2c55e296200, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbfa043b5b14cfc00, + 0xbfecccccccccccc4, 0xbfa043b5b14d0000, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfa1ae1ccab93900, + 0xbfeccccccccccce8, 0xbfa1ae1ccab93a00, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfa31899bc44e200, + 0xbfecccccccccccdd, 0xbfa31899bc44e200, 0x0, 0x0, - 0xbfecccccccccccb3, 0xbfa4832e47478000, + 0xbfecccccccccccda, 0xbfa4832e47478600, 0x0, 0x0, - 0xbfecccccccccccb4, 0xbfa5eddc2d8d7300, + 0xbfecccccccccccd2, 0xbfa5eddc2d8d7500, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbfa758a531607300, + 0xbfecccccccccccc8, 0xbfa758a531607d00, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfa8c38b1590a600, + 0xbfecccccccccccc0, 0xbfa8c38b1590a600, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfaa2e8f9d7d2100, + 0xbfeccccccccccccf, 0xbfaa2e8f9d7d2200, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfab99b48d1ce800, + 0xbfecccccccccccda, 0xbfab99b48d1ce600, 0x0, 0x0, - 0xbfecccccccccccff, 0xbfad04fba907a100, + 0xbfecccccccccccbd, 0xbfad04fba907a300, 0x0, 0x0, - 0xbfecccccccccccba, 0xbfae7066b67e8980, + 0xbfecccccccccccc9, 0xbfae7066b67e8a80, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfafdbf77b754c80, + 0xbfecccccccccccc4, 0xbfafdbf77b754c80, 0x0, 0x0, - 0xbfecccccccccccad, 0xbfb0a3d7df4d74c0, + 0xbfecccccccccccd8, 0xbfb0a3d7df4d7580, 0x0, 0x0, - 0xbfecccccccccccef, 0xbfb159c8a3b153c0, + 0xbfecccccccccccd6, 0xbfb159c8a3b153c0, 0x0, 0x0, - 0xbfeccccccccccd03, 0xbfb20fceef068f40, + 0xbfecccccccccccda, 0xbfb20fceef068dc0, 0x0, 0x0, - 0xbfecccccccccccb8, 0xbfb2c5eba5d88e00, + 0xbfecccccccccccc1, 0xbfb2c5eba5d88e80, 0x0, 0x0, - 0xbfeccccccccccc84, 0xbfb37c1fad226800, + 0xbfecccccccccccee, 0xbfb37c1fad226980, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfb4326bea536440, + 0xbfecccccccccccf4, 0xbfb4326bea536480, 0x0, 0x0, - 0xbfeccccccccccca9, 0xbfb4e8d143538c40, + 0xbfeccccccccccce0, 0xbfb4e8d143538bc0, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfb59f509e883d00, + 0xbfecccccccccccce, 0xbfb59f509e883e80, 0x0, 0x0, - 0xbfeccccccccccc7c, 0xbfb655eae2d8cbc0, + 0xbfecccccccccccf0, 0xbfb655eae2d8ca00, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfb70ca0f7b31080, + 0xbfeccccccccccc8e, 0xbfb70ca0f7b30c80, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbfb7c373c5101b40, + 0xbfecccccccccccce, 0xbfb7c373c5101c40, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfb87a643378de00, + 0xbfecccccccccccdd, 0xbfb87a643378dd80, 0x0, 0x0, - 0xbfeccccccccccd1c, 0xbfb931732c0ac9c0, + 0xbfeccccccccccca8, 0xbfb931732c0acd80, 0x0, 0x0, - 0xbfeccccccccccce6, 0xbfb9e8a1987ca840, + 0xbfecccccccccccca, 0xbfb9e8a1987ca900, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfba9ff063232b40, + 0xbfecccccccccccd2, 0xbfba9ff063232ba0, 0x0, 0x0, - 0xbfecccccccccccf0, 0xbfbb576076f5d540, + 0xbfecccccccccccc9, 0xbfbb576076f5d6a0, 0x0, 0x0, - 0xbfecccccccccccff, 0xbfbc0ef2bf93b3a0, + 0xbfecccccccccccfa, 0xbfbc0ef2bf93b5a0, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbfbcc6a8294837e0, + 0xbfeccccccccccd02, 0xbfbcc6a8294836c0, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfbd7e81a10ffbe0, + 0xbfecccccccccccd4, 0xbfbd7e81a10ffb40, 0x0, 0x0, - 0xbfecccccccccccde, 0xbfbe3680149dc080, + 0xbfeccccccccccccc, 0xbfbe3680149dbf20, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfbeeea4725f3c60, + 0xbfeccccccccccce2, 0xbfbeeea4725f3da0, 0x0, 0x0, - 0xbfecccccccccccfc, 0xbfbfa6efa9821a20, + 0xbfecccccccccccb8, 0xbfbfa6efa9821c00, 0x0, 0x0, - 0xbfecccccccccccb2, 0xbfc02fb154fc75b0, + 0xbfecccccccccccc8, 0xbfc02fb154fc7550, 0x0, 0x0, - 0xbfecccccccccccb1, 0xbfc08bff32400e10, + 0xbfeccccccccccccc, 0xbfc08bff324010a0, 0x0, 0x0, - 0xbfecccccccccccfa, 0xbfc0e861e5518f90, + 0xbfeccccccccccc92, 0xbfc0e861e5519040, 0x0, 0x0, - 0xbfecccccccccccf6, 0xbfc144d9e760a8b0, + 0xbfeccccccccccce1, 0xbfc144d9e760a940, 0x0, 0x0, - 0xbfecccccccccccaf, 0xbfc1a167b2099ca0, + 0xbfecccccccccccc4, 0xbfc1a167b2099ab0, 0x0, 0x0, - 0xbfeccccccccccc9b, 0xbfc1fe0bbf57c4d0, + 0xbfecccccccccccda, 0xbfc1fe0bbf57c530, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbfc25ac689c83ec0, + 0xbfecccccccccccd4, 0xbfc25ac689c83f60, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfc2b7988c4c71d0, + 0xbfeccccccccccce8, 0xbfc2b7988c4c70c0, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbfc31482424cb570, + 0xbfeccccccccccce6, 0xbfc31482424cb530, 0x0, 0x0, - 0xbfeccccccccccced, 0xbfc3718427aaffc0, + 0xbfecccccccccccce, 0xbfc3718427aaff30, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfc3ce9eb8c58580, + 0xbfecccccccccccd4, 0xbfc3ce9eb8c584a0, 0x0, 0x0, - 0xbfeccccccccccce3, 0xbfc42bd272796ec0, + 0xbfecccccccccccc8, 0xbfc42bd272796e70, 0x0, 0x0, - 0xbfeccccccccccce7, 0xbfc4891fd2259080, + 0xbfecccccccccccde, 0xbfc4891fd2259120, 0x0, 0x0, - 0xbfeccccccccccce4, 0xbfc4e68755ad2170, + 0xbfecccccccccccbe, 0xbfc4e68755ad2120, 0x0, 0x0, - 0xbfecccccccccccfe, 0xbfc544097b7a7ce0, + 0xbfecccccccccccda, 0xbfc544097b7a7d20, 0x0, 0x0, - 0xbfecccccccccccac, 0xbfc5a1a6c281edb0, + 0xbfeccccccccccccb, 0xbfc5a1a6c281ecb0, 0x0, 0x0, - 0xbfecccccccccccdb, 0xbfc5ff5faa4476c0, + 0xbfeccccccccccce5, 0xbfc5ff5faa447730, 0x0, 0x0, - 0xbfecccccccccccc1, 0xbfc65d34b2d2ace0, + 0xbfeccccccccccce0, 0xbfc65d34b2d2ab50, 0x0, 0x0, - 0xbfeccccccccccd50, 0xbfc6bb265ccf8280, + 0xbfeccccccccccd0c, 0xbfc6bb265ccf7de0, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbfc71935297335c0, + 0xbfecccccccccccac, 0xbfc7193529733600, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfc777619a8e3a60, + 0xbfecccccccccccdc, 0xbfc777619a8e3a40, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfc7d5ac328c10c0, + 0xbfecccccccccccd1, 0xbfc7d5ac328c10e0, 0x0, 0x0, - 0xbfeccccccccccd05, 0xbfc8341574765240, + 0xbfeccccccccccc9c, 0xbfc8341574765130, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfc8929de3f79ae0, + 0xbfecccccccccccc2, 0xbfc8929de3f79b30, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfc8f146055e9a80, + 0xbfecccccccccccde, 0xbfc8f146055e9a08, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbfc9500e5da11290, + 0xbfecccccccccccd0, 0xbfc9500e5da11170, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfc9aef7725eeaa0, + 0xbfecccccccccccc0, 0xbfc9aef7725eea10, 0x0, 0x0, - 0xbfecccccccccccb4, 0xbfca0e01c9e54f60, + 0xbfeccccccccccce2, 0xbfca0e01c9e54ff0, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfca6d2deb31cab0, + 0xbfecccccccccccdc, 0xbfca6d2deb31cac0, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfcacc7c5df57028, + 0xbfecccccccccccc8, 0xbfcacc7c5df57010, 0x0, 0x0, - 0xbfecccccccccccf3, 0xbfcb2bedaa980c60, + 0xbfecccccccccccc1, 0xbfcb2bedaa980c50, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbfcb8b825a3b5eb8, + 0xbfecccccccccccc6, 0xbfcb8b825a3b5f58, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfcbeb3af6be5d40, + 0xbfeccccccccccccc, 0xbfcbeb3af6be5db0, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfcc4b180ac07808, + 0xbfecccccccccccde, 0xbfcc4b180ac07960, 0x0, 0x0, - 0xbfeccccccccccc9e, 0xbfccab1a21a4f030, + 0xbfeccccccccccd07, 0xbfccab1a21a4f428, 0x0, 0x0, - 0xbfecccccccccccb3, 0xbfcd0b41c7963de0, + 0xbfecccccccccccd1, 0xbfcd0b41c7963de0, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbfcd6b8f89895690, + 0xbfecccccccccccbc, 0xbfcd6b8f89895690, 0x0, 0x0, - 0xbfeccccccccccce3, 0xbfcdcc03f5413e00, + 0xbfecccccccccccba, 0xbfcdcc03f5413e20, 0x0, 0x0, - 0xbfecccccccccccf7, 0xbfce2c9f99526b28, + 0xbfecccccccccccd8, 0xbfce2c9f99526ad0, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfce8d6305264e38, + 0xbfeccccccccccccc, 0xbfce8d6305264dd0, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfceee4ec8fed900, + 0xbfecccccccccccc8, 0xbfceee4ec8fed928, 0x0, 0x0, - 0xbfeccccccccccca6, 0xbfcf4f6375fa1a20, + 0xbfecccccccccccce, 0xbfcf4f6375fa1a58, 0x0, 0x0, - 0xbfecccccccccccf4, 0xbfcfb0a19e15d6a8, + 0xbfeccccccccccceb, 0xbfcfb0a19e15d8a0, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbfd00904ea199bc4, + 0xbfeccccccccccce6, 0xbfd00904ea199b80, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfd039ce560d3f8c, + 0xbfecccccccccccda, 0xbfd039ce560d3f48, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbfd06aad5d3f6198, + 0xbfecccccccccccd6, 0xbfd06aad5d3f61c8, 0x0, 0x0, - 0xbfecccccccccccf0, 0xbfd09ba24a80e138, + 0xbfecccccccccccd6, 0xbfd09ba24a80e114, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfd0ccad691bd72c, + 0xbfeccccccccccccd, 0xbfd0ccad691bd724, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfd0fdcf04d58be8, + 0xbfecccccccccccd4, 0xbfd0fdcf04d58c20, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbfd12f0769f06b0c, + 0xbfecccccccccccbb, 0xbfd12f0769f06b28, 0x0, 0x0, - 0xbfeccccccccccc89, 0xbfd16056e52dff98, + 0xbfeccccccccccca4, 0xbfd16056e52e00e0, 0x0, 0x0, - 0xbfecccccccccccaa, 0xbfd191bdc3d0fcdc, + 0xbfecccccccccccf0, 0xbfd191bdc3d0fc84, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfd1c33c539f3c04, + 0xbfecccccccccccd1, 0xbfd1c33c539f3c58, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfd1f4d2e2e3d88c, + 0xbfeccccccccccccb, 0xbfd1f4d2e2e3d88c, 0x0, 0x0, - 0xbfeccccccccccc98, 0xbfd22681c0713d58, + 0xbfecccccccccccd9, 0xbfd22681c0713d48, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbfd258493ba34454, + 0xbfecccccccccccc2, 0xbfd258493ba34414, 0x0, 0x0, - 0xbfecccccccccccb2, 0xbfd28a29a4615a24, + 0xbfecccccccccccd2, 0xbfd28a29a4615a08, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbfd2bc234b20a6c0, + 0xbfecccccccccccd0, 0xbfd2bc234b20a688, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfd2ee3680e63f3c, + 0xbfecccccccccccd9, 0xbfd2ee3680e63f28, 0x0, 0x0, - 0xbfecccccccccccb7, 0xbfd3206397495e5c, + 0xbfecccccccccccbe, 0xbfd3206397495ecc, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfd352aae075a3f0, + 0xbfecccccccccccbf, 0xbfd352aae075a42c, 0x0, 0x0, - 0xbfecccccccccccbd, 0xbfd3850caf2d5b80, + 0xbfecccccccccccce, 0xbfd3850caf2d5b30, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbfd3b78956cbc89c, + 0xbfecccccccccccd3, 0xbfd3b78956cbc8b8, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfd3ea212b478190, + 0xbfecccccccccccc4, 0xbfd3ea212b4781b4, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfd41cd48134c8a4, + 0xbfecccccccccccdc, 0xbfd41cd48134c88c, 0x0, 0x0, - 0xbfeccccccccccced, 0xbfd44fa3adc7f438, + 0xbfecccccccccccbe, 0xbfd44fa3adc7f428, 0x0, 0x0, - 0xbfeccccccccccd4d, 0xbfd4828f06d7dcac, + 0xbfecccccccccccd8, 0xbfd4828f06d7dcc0, 0x0, 0x0, - 0xbfecccccccccccd4, 0xbfd4b596e2e051dc, + 0xbfecccccccccccf7, 0xbfd4b596e2e0527c, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbfd4e8bb99049990, + 0xbfecccccccccccc6, 0xbfd4e8bb990499b0, 0x0, 0x0, - 0xbfecccccccccccb4, 0xbfd51bfd8111f7bc, + 0xbfecccccccccccca, 0xbfd51bfd8111f798, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbfd54f5cf3823d34, + 0xbfeccccccccccce6, 0xbfd54f5cf3823d44, 0x0, 0x0, - 0xbfecccccccccccea, 0xbfd582da497e62dc, + 0xbfecccccccccccd1, 0xbfd582da497e6280, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfd5b675dce1279c, + 0xbfecccccccccccc6, 0xbfd5b675dce12794, 0x0, 0x0, - 0xbfeccccccccccce7, 0xbfd5ea300839bfc4, + 0xbfecccccccccccd0, 0xbfd5ea300839bfb0, 0x0, 0x0, - 0xbfeccccccccccd01, 0xbfd61e0926ce8796, + 0xbfecccccccccccd1, 0xbfd61e0926ce8734, 0x0, 0x0, - 0xbfeccccccccccce2, 0xbfd65201949fc0b0, + 0xbfecccccccccccef, 0xbfd65201949fc136, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbfd68619ae6a5e04, + 0xbfecccccccccccc3, 0xbfd68619ae6a5e24, 0x0, 0x0, - 0xbfeccccccccccd10, 0xbfd6ba51d1aad0be, + 0xbfecccccccccccd1, 0xbfd6ba51d1aad0d4, 0x0, 0x0, - 0xbfeccccccccccce5, 0xbfd6eeaa5c9fe7bc, + 0xbfecccccccccccaf, 0xbfd6eeaa5c9fe7c8, 0x0, 0x0, - 0xbfecccccccccccbc, 0xbfd72323ae4db6f4, + 0xbfecccccccccccec, 0xbfd72323ae4db636, 0x0, 0x0, - 0xbfeccccccccccca2, 0xbfd757be2680846c, + 0xbfecccccccccccc8, 0xbfd757be26808366, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbfd78c7a25cfc8e4, + 0xbfeccccccccccceb, 0xbfd78c7a25cfc81a, 0x0, 0x0, - 0xbfeccccccccccd17, 0xbfd7c1580da1359a, + 0xbfeccccccccccda2, 0xbfd7c1580da132ac, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfd7f658402bc090, + 0xbfeccccccccccd1d, 0xbfd7f658402bc15a, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbfd82b7b207acffa, + 0xbfecccccccccccce, 0xbfd82b7b207ad0d4, 0x0, 0x0, - 0xbfeccccccccccca5, 0xbfd860c1127153e8, + 0xbfecccccccccccce, 0xbfd860c11271542c, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfd8962a7acd03b2, + 0xbfeccccccccccce6, 0xbfd8962a7acd03a8, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfd8cbb7bf299e6c, + 0xbfecccccccccccfb, 0xbfd8cbb7bf299e92, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbfd90169460435d4, + 0xbfecccccccccccc4, 0xbfd90169460435a4, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfd9373f76be8a3e, + 0xbfecccccccccccbc, 0xbfd9373f76be8a40, 0x0, 0x0, - 0xbfeccccccccccceb, 0xbfd96d3ab9a270ba, + 0xbfeccccccccccce7, 0xbfd96d3ab9a2718c, 0x0, 0x0, - 0xbfecccccccccccf7, 0xbfd9a35b77e548d8, + 0xbfecccccccccccde, 0xbfd9a35b77e5483c, 0x0, 0x0, - 0xbfecccccccccccdd, 0xbfd9d9a21bab78e4, + 0xbfecccccccccccdb, 0xbfd9d9a21bab7878, 0x0, 0x0, - 0xbfecccccccccccbf, 0xbfda100f100c008e, + 0xbfecccccccccccd4, 0xbfda100f100c0060, 0x0, 0x0, - 0xbfeccccccccccd28, 0xbfda46a2c1141468, + 0xbfecccccccccccef, 0xbfda46a2c11414e0, 0x0, 0x0, - 0xbfecccccccccccb5, 0xbfda7d5d9bcaca14, + 0xbfecccccccccccd3, 0xbfda7d5d9bcaca54, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfdab4400e34cc84, + 0xbfecccccccccccc9, 0xbfdab4400e34cc64, 0x0, 0x0, - 0xbfecccccccccccbb, 0xbfdaeb4a875826f4, + 0xbfecccccccccccdc, 0xbfdaeb4a87582756, 0x0, 0x0, - 0xbfeccccccccccd15, 0xbfdb227d77401e74, + 0xbfeccccccccccce4, 0xbfdb227d77401d3c, 0x0, 0x0, - 0xbfeccccccccccd45, 0xbfdb59d94f010a70, + 0xbfeccccccccccd12, 0xbfdb59d94f010ace, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfdb915e80bc6098, + 0xbfeccccccccccce9, 0xbfdb915e80bc603a, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfdbc90d7fa4a194, + 0xbfecccccccccccc7, 0xbfdbc90d7fa4a174, 0x0, 0x0, - 0xbfecccccccccccaa, 0xbfdc00e6c0017db2, + 0xbfeccccccccccccb, 0xbfdc00e6c0017eb4, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbfdc38eab733f95a, + 0xbfecccccccccccc1, 0xbfdc38eab733f8e4, 0x0, 0x0, - 0xbfecccccccccccbc, 0xbfdc7119dbba97e8, + 0xbfeccccccccccccc, 0xbfdc7119dbba9808, 0x0, 0x0, - 0xbfecccccccccccbc, 0xbfdca974a535b296, + 0xbfecccccccccccd9, 0xbfdca974a535b282, 0x0, 0x0, - 0xbfecccccccccccfc, 0xbfdce1fb8c6bc6a0, + 0xbfecccccccccccac, 0xbfdce1fb8c6bc66e, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbfdd1aaf0b4de53c, + 0xbfecccccccccccef, 0xbfdd1aaf0b4de4f2, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfdd538f9cfc2e00, + 0xbfecccccccccccc6, 0xbfdd538f9cfc2e20, 0x0, 0x0, - 0xbfecccccccccccdd, 0xbfdd8c9dbdca6030, + 0xbfecccccccccccd1, 0xbfdd8c9dbdca6074, 0x0, 0x0, - 0xbfecccccccccccf7, 0xbfddc5d9eb447bf0, + 0xbfecccccccccccd3, 0xbfddc5d9eb447b94, 0x0, 0x0, - 0xbfeccccccccccccf, 0xbfddff44a4337724, + 0xbfecccccccccccb6, 0xbfddff44a4337748, 0x0, 0x0, - 0xbfecccccccccccb7, 0xbfde38de68a209ca, + 0xbfeccccccccccccb, 0xbfde38de68a209b4, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbfde72a7b9e18752, + 0xbfecccccccccccc5, 0xbfde72a7b9e186dc, 0x0, 0x0, - 0xbfecccccccccccac, 0xbfdeaca11a8ed31e, + 0xbfeccccccccccc60, 0xbfdeaca11a8ed3ac, 0x0, 0x0, - 0xbfeccccccccccced, 0xbfdee6cb0e9765ec, + 0xbfeccccccccccce1, 0xbfdee6cb0e976664, 0x0, 0x0, - 0xbfecccccccccccbd, 0xbfdf21261b3e6d28, + 0xbfecccccccccccd7, 0xbfdf21261b3e6ccc, 0x0, 0x0, - 0xbfecccccccccccba, 0xbfdf5bb2c721f570, + 0xbfecccccccccccea, 0xbfdf5bb2c721f5b8, 0x0, 0x0, - 0xbfeccccccccccd0e, 0xbfdf96719a403aa4, + 0xbfecccccccccccac, 0xbfdf96719a403b08, 0x0, 0x0, - 0xbfecccccccccccfb, 0xbfdfd1631dfd00e2, + 0xbfeccccccccccccf, 0xbfdfd1631dfd00d0, 0x0, 0x0, - 0xbfeccccccccccce5, 0xbfe00643ee938668, + 0xbfecccccccccccdf, 0xbfe00643ee938664, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfe023f031fed802, + 0xbfecccccccccccc8, 0xbfe023f031fed7e9, 0x0, 0x0, - 0xbfecccccccccccb4, 0xbfe041b6a01b36f9, + 0xbfeccccccccccced, 0xbfe041b6a01b370c, 0x0, 0x0, - 0xbfecccccccccccf8, 0xbfe05f9780815dab, + 0xbfecccccccccccf2, 0xbfe05f9780815da7, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfe07d931b8ae9c8, + 0xbfecccccccccccce, 0xbfe07d931b8ae9da, 0x0, 0x0, - 0xbfecccccccccccc1, 0xbfe09ba9ba5554ec, + 0xbfecccccccccccc4, 0xbfe09ba9ba5554cd, 0x0, 0x0, - 0xbfeccccccccccce1, 0xbfe0b9dba6c4f9a8, + 0xbfecccccccccccce, 0xbfe0b9dba6c4f969, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfe0d8292b882652, + 0xbfeccccccccccce4, 0xbfe0d8292b88267c, 0x0, 0x0, - 0xbfecccccccccccb6, 0xbfe0f692941a3e62, + 0xbfecccccccccccce, 0xbfe0f692941a3e6a, 0x0, 0x0, - 0xbfecccccccccccaa, 0xbfe115182cc6e67a, + 0xbfecccccccccccbe, 0xbfe115182cc6e6a4, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfe133ba42ad426d, + 0xbfeccccccccccce6, 0xbfe133ba42ad4277, 0x0, 0x0, - 0xbfecccccccccccf8, 0xbfe1527923c34008, + 0xbfeccccccccccd00, 0xbfe1527923c33ff9, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbfe171551ed8ef34, + 0xbfeccccccccccccc, 0xbfe171551ed8ef57, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfe1904e839bece6, + 0xbfecccccccccccc2, 0xbfe1904e839bed07, 0x0, 0x0, - 0xbfecccccccccccf6, 0xbfe1af65a29ad9cc, + 0xbfecccccccccccc0, 0xbfe1af65a29ad9e7, 0x0, 0x0, - 0xbfecccccccccccb5, 0xbfe1ce9acd48e2ca, + 0xbfecccccccccccc6, 0xbfe1ce9acd48e2d8, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbfe1edee560158f5, + 0xbfecccccccccccd3, 0xbfe1edee560158e7, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfe20d60900b5a64, + 0xbfecccccccccccc8, 0xbfe20d60900b5a68, 0x0, 0x0, - 0xbfeccccccccccc86, 0xbfe22cf1cf9d8b1c, + 0xbfecccccccccccb2, 0xbfe22cf1cf9d8af0, 0x0, 0x0, - 0xbfecccccccccccbf, 0xbfe24ca269e1df35, + 0xbfeccccccccccca5, 0xbfe24ca269e1df35, 0x0, 0x0, - 0xbfeccccccccccce7, 0xbfe26c72b4f9783e, + 0xbfecccccccccccc0, 0xbfe26c72b4f9782f, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbfe28c6308009194, + 0xbfecccccccccccd0, 0xbfe28c6308009160, 0x0, 0x0, - 0xbfecccccccccccbd, 0xbfe2ac73bb12814a, + 0xbfeccccccccccce0, 0xbfe2ac73bb12810d, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfe2cca5274dcabc, + 0xbfeccccccccccccf, 0xbfe2cca5274dcabf, 0x0, 0x0, - 0xbfecccccccccccac, 0xbfe2ecf7a6d845f4, + 0xbfecccccccccccbc, 0xbfe2ecf7a6d845f3, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfe30d6b94e35704, + 0xbfecccccccccccec, 0xbfe30d6b94e356d0, 0x0, 0x0, - 0xbfeccccccccccbff, 0xbfe32e014db03d10, + 0xbfecccccccccccc0, 0xbfe32e014db03d77, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfe34eb92e94741c, + 0xbfeccccccccccc87, 0xbfe34eb92e9474bc, 0x0, 0x0, - 0xbfecccccccccccbc, 0xbfe36f9395fe2a82, + 0xbfecccccccccccb3, 0xbfe36f9395fe2a98, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbfe39090e378cee3, + 0xbfecccccccccccb0, 0xbfe39090e378cef0, 0x0, 0x0, - 0xbfecccccccccccf3, 0xbfe3b1b177b1b0b2, + 0xbfecccccccccccda, 0xbfe3b1b177b1b0a0, 0x0, 0x0, - 0xbfecccccccccccbb, 0xbfe3d2f5b47cb8a5, + 0xbfecccccccccccd1, 0xbfe3d2f5b47cb8a0, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfe3f45dfcd937bd, + 0xbfeccccccccccce9, 0xbfe3f45dfcd937b4, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfe415eab4f6cd3c, + 0xbfecccccccccccd4, 0xbfe415eab4f6cd39, 0x0, 0x0, - 0xbfeccccccccccd05, 0xbfe4379c423a64cc, + 0xbfecccccccccccb6, 0xbfe4379c423a64ce, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfe459730b434cc9, + 0xbfeccccccccccd13, 0xbfe459730b434ccc, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbfe47b6f77f064e4, + 0xbfecccccccccccd3, 0xbfe47b6f77f064e7, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbfe49d91f16567fa, + 0xbfecccccccccccd7, 0xbfe49d91f16567dc, 0x0, 0x0, - 0xbfecccccccccccfd, 0xbfe4bfdae2104d34, + 0xbfecccccccccccd8, 0xbfe4bfdae2104d4c, 0x0, 0x0, - 0xbfecccccccccccdb, 0xbfe4e24ab5aec6e0, + 0xbfecccccccccccc2, 0xbfe4e24ab5aec6f8, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbfe504e1d953da9a, + 0xbfecccccccccccd2, 0xbfe504e1d953da9a, 0x0, 0x0, - 0xbfeccccccccccca8, 0xbfe527a0bb6d9452, + 0xbfecccccccccccd5, 0xbfe527a0bb6d9486, 0x0, 0x0, - 0xbfeccccccccccce4, 0xbfe54a87cbcad9bf, + 0xbfeccccccccccc86, 0xbfe54a87cbcad9ec, 0x0, 0x0, - 0xbfecccccccccccb8, 0xbfe56d977ba156f4, + 0xbfeccccccccccce7, 0xbfe56d977ba156d7, 0x0, 0x0, - 0xbfeccccccccccce1, 0xbfe590d03d938890, + 0xbfeccccccccccccd, 0xbfe590d03d9388be, 0x0, 0x0, - 0xbfecccccccccccb2, 0xbfe5b43285b6eba1, + 0xbfecccccccccccce, 0xbfe5b43285b6ebb2, 0x0, 0x0, - 0xbfecccccccccccdf, 0xbfe5d7bec99a41eb, + 0xbfecccccccccccda, 0xbfe5d7bec99a41ee, 0x0, 0x0, - 0xbfecccccccccccf3, 0xbfe5fb75804bfe72, + 0xbfecccccccccccd8, 0xbfe5fb75804bfe62, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbfe61f572260cf80, + 0xbfeccccccccccccc, 0xbfe61f572260cf6e, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfe6436429fa4a7a, + 0xbfeccccccccccccf, 0xbfe6436429fa4a8f, 0x0, 0x0, - 0xbfeccccccccccce9, 0xbfe6679d12cdbb4c, + 0xbfecccccccccccd4, 0xbfe6679d12cdbab5, 0x0, 0x0, - 0xbfeccccccccccd08, 0xbfe68c025a2b1316, + 0xbfecccccccccccbf, 0xbfe68c025a2b131b, 0x0, 0x0, - 0xbfecccccccccccb1, 0xbfe6b0947f04021f, + 0xbfecccccccccccd2, 0xbfe6b0947f040223, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbfe6d55401f32e3b, + 0xbfecccccccccccd8, 0xbfe6d55401f32e2e, 0x0, 0x0, - 0xbfeccccccccccd00, 0xbfe6fa4165439436, + 0xbfeccccccccccccb, 0xbfe6fa41654393fb, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfe71f5d2cf80e61, + 0xbfecccccccccccba, 0xbfe71f5d2cf80e6f, 0x0, 0x0, - 0xbfecccccccccccfa, 0xbfe744a7ded303b3, + 0xbfecccccccccccc0, 0xbfe744a7ded303dc, 0x0, 0x0, - 0xbfeccccccccccd0b, 0xbfe76a22025e3c85, + 0xbfecccccccccccc4, 0xbfe76a22025e3ce5, 0x0, 0x0, - 0xbfeccccccccccc94, 0xbfe78fcc20f2e524, + 0xbfecccccccccccce, 0xbfe78fcc20f2e58a, 0x0, 0x0, - 0xbfeccccccccccc71, 0xbfe7b5a6c5c1b513, + 0xbfecccccccccccbb, 0xbfe7b5a6c5c1b598, 0x0, 0x0, - 0xbfeccccccccccca8, 0xbfe7dbb27ddb4b28, + 0xbfecccccccccccc4, 0xbfe7dbb27ddb4b47, 0x0, 0x0, - 0xbfecccccccccccf6, 0xbfe801efd838a831, + 0xbfecccccccccccb4, 0xbfe801efd838a82e, 0x0, 0x0, - 0xbfeccccccccccc64, 0xbfe8285f65c3e68e, + 0xbfeccccccccccccb, 0xbfe8285f65c3e6a9, 0x0, 0x0, - 0xbfeccccccccccd0c, 0xbfe84f01b961175c, + 0xbfecccccccccccbf, 0xbfe84f01b9611762, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfe875d767f75070, + 0xbfecccccccccccc8, 0xbfe875d767f75064, 0x0, 0x0, - 0xbfecccccccccccab, 0xbfe89ce10879ee3c, + 0xbfecccccccccccca, 0xbfe89ce10879eebf, 0x0, 0x0, - 0xbfeccccccccccda0, 0xbfe8c41f33f208cc, + 0xbfecccccccccccce, 0xbfe8c41f33f20946, 0x0, 0x0, - 0xbfeccccccccccd29, 0xbfe8eb92858816a8, + 0xbfecccccccccccec, 0xbfe8eb928588163c, 0x0, 0x0, - 0xbfeccccccccccc91, 0xbfe9133b9a8dca80, + 0xbfecccccccccccca, 0xbfe9133b9a8dc9e4, 0x0, 0x0, - 0xbfeccccccccccca5, 0xbfe93b1b12882572, + 0xbfecccccccccccd1, 0xbfe93b1b1288255f, 0x0, 0x0, - 0xbfeccccccccccce2, 0xbfe963318f39c2e4, + 0xbfecccccccccccce, 0xbfe963318f39c2af, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfe98b7fb4ad577e, + 0xbfecccccccccccea, 0xbfe98b7fb4ad5753, 0x0, 0x0, - 0xbfecccccccccccf2, 0xbfe9b4062940711e, + 0xbfecccccccccccd7, 0xbfe9b406294070fe, 0x0, 0x0, - 0xbfeccccccccccd10, 0xbfe9dcc595ae70a8, + 0xbfecccccccccccbe, 0xbfe9dcc595ae70ae, 0x0, 0x0, - 0xbfeccccccccccdb8, 0xbfea05bea51bc0fe, + 0xbfecccccccccccd3, 0xbfea05bea51bc0e7, 0x0, 0x0, - 0xbfeccccccccccd2a, 0xbfea2ef205214d26, + 0xbfecccccccccccc4, 0xbfea2ef205214d25, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbfea586065d837e6, + 0xbfecccccccccccd3, 0xbfea586065d837fa, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfea820a79e5d6e8, + 0xbfecccccccccccc9, 0xbfea820a79e5d6fc, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfeaabf0f687efd0, + 0xbfecccccccccccce, 0xbfeaabf0f687efec, 0x0, 0x0, - 0xbfecccccccccccf6, 0xbfead61493a13cbc, + 0xbfeccccccccccce2, 0xbfead61493a13ca8, 0x0, 0x0, - 0xbfecccccccccccdf, 0xbfeb00760bc63970, + 0xbfecccccccccccc5, 0xbfeb00760bc6397e, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfeb2b161c4a390c, + 0xbfecccccccccccce, 0xbfeb2b161c4a3910, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbfeb55f5854cc814, + 0xbfecccccccccccbf, 0xbfeb55f5854cc7a2, 0x0, 0x0, - 0xbfecccccccccccbb, 0xbfeb811509c75a8c, + 0xbfecccccccccccb8, 0xbfeb811509c75a82, 0x0, 0x0, - 0xbfecccccccccccfa, 0xbfebac756f9b50ac, + 0xbfeccccccccccccc, 0xbfebac756f9b5090, 0x0, 0x0, - 0xbfeccccccccccd00, 0xbfebd8177fa04210, + 0xbfecccccccccccaf, 0xbfebd8177fa041e8, 0x0, 0x0, - 0xbfecccccccccccaa, 0xbfec03fc05b2a800, + 0xbfeccccccccccce7, 0xbfec03fc05b2a7e4, 0x0, 0x0, - 0xbfecccccccccccf8, 0xbfec3023d0c2d868, + 0xbfecccccccccccb9, 0xbfec3023d0c2d820, 0x0, 0x0, - 0xbfecccccccccccff, 0xbfec5c8fb2e45b60, + 0xbfeccccccccccc96, 0xbfec5c8fb2e45b60, 0x0, 0x0, - 0xbfeccccccccccd69, 0xbfec8940815d9b00, + 0xbfeccccccccccd05, 0xbfec8940815d9b60, 0x0, 0x0, - 0xbfecccccccccce60, 0xbfecb63714b7f300, + 0xbfeccccccccccd17, 0xbfecb63714b7f2a0, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfece37448d01f9f, + 0xbfeccccccccccdc4, 0xbfece37448d01f87, 0x0, 0x0, - 0xbfeccccccccccd45, 0xbfed10f8fce709a1, + 0xbfeccccccccccccc, 0xbfed10f8fce70a38, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfed3ec613b307d1, + 0xbfecccccccccccc7, 0xbfed3ec613b3076f, 0x0, 0x0, - 0xbfeccccccccccc99, 0xbfed6cdc7371740b, + 0xbfeccccccccccce9, 0xbfed6cdc73717400, 0x0, 0x0, - 0xbfeccccccccccce6, 0xbfed9b3d05f8bf34, + 0xbfecccccccccccec, 0xbfed9b3d05f8bf5c, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfedc9e8b8cae4c4, + 0xbfecccccccccccca, 0xbfedc9e8b8cae4ca, 0x0, 0x0, - 0xbfeccccccccccce4, 0xbfedf8e07d2859d4, + 0xbfecccccccccccc8, 0xbfedf8e07d2859c6, 0x0, 0x0, - 0xbfeccccccccccd05, 0xbfee282548236ab1, + 0xbfecccccccccccfa, 0xbfee282548236ae0, 0x0, 0x0, - 0xbfecccccccccccae, 0xbfee57b812b414f1, + 0xbfecccccccccccce, 0xbfee57b812b414f1, 0x0, 0x0, - 0xbfecccccccccccef, 0xbfee8799d9cc58d2, + 0xbfecccccccccccd4, 0xbfee8799d9cc58d9, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbfeeb7cb9e6d0d4f, + 0xbfecccccccccccce, 0xbfeeb7cb9e6d0d73, 0x0, 0x0, - 0xbfeccccccccccca5, 0xbfeee84e65bb34a0, + 0xbfecccccccccccd4, 0xbfeee84e65bb34c0, 0x0, 0x0, - 0xbfeccccccccccce3, 0xbfef19233915d7b1, + 0xbfecccccccccccb2, 0xbfef19233915d7b6, 0x0, 0x0, - 0xbfeccccccccccce0, 0xbfef4a4b262c6bc4, + 0xbfecccccccccccd0, 0xbfef4a4b262c6bb7, 0x0, 0x0, - 0xbfecccccccccccfb, 0xbfef7bc73f15c6b4, + 0xbfecccccccccccc7, 0xbfef7bc73f15c69e, 0x0, 0x0, - 0xbfecccccccccccf8, 0xbfefad989a67a524, + 0xbfecccccccccccf0, 0xbfefad989a67a542, 0x0, 0x0, - 0xbfecccccccccccbd, 0xbfefdfc0534ec766, + 0xbfecccccccccccfa, 0xbfefdfc0534ec7c2, 0x0, 0x0, - 0xbfecccccccccccda, 0xbff0091fc4d3d588, + 0xbfecccccccccccc7, 0xbff0091fc4d3d594, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbff0228bb10beffd, + 0xbfecccccccccccc9, 0xbff0228bb10bf00e, 0x0, 0x0, - 0xbfeccccccccccc9e, 0xbff03c24831403c3, + 0xbfecccccccccccc5, 0xbff03c24831403c4, 0x0, 0x0, - 0xbfeccccccccccce2, 0xbff055ead22f3c63, + 0xbfeccccccccccccc, 0xbff055ead22f3c5e, 0x0, 0x0, - 0xbfecccccccccccac, 0xbff06fdf382d4a28, + 0xbfecccccccccccc9, 0xbff06fdf382d4a0a, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbff08a02517865ef, + 0xbfecccccccccccca, 0xbff08a0251786602, 0x0, 0x0, - 0xbfecccccccccccf0, 0xbff0a454bd23b251, + 0xbfeccccccccccccc, 0xbff0a454bd23b238, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbff0bed71cf9f954, + 0xbfecccccccccccc5, 0xbff0bed71cf9f948, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbff0d98a158cd046, + 0xbfecccccccccccbf, 0xbff0d98a158cd038, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbff0f46e4e441cfe, + 0xbfecccccccccccd5, 0xbff0f46e4e441cf8, 0x0, 0x0, - 0xbfecccccccccccb6, 0xbff10f84716e061f, + 0xbfeccccccccccce0, 0xbff10f84716e0622, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbff12acd2c4f4d70, + 0xbfecccccccccccc0, 0xbff12acd2c4f4d7d, 0x0, 0x0, - 0xbfecccccccccccf5, 0xbff146492f34194a, + 0xbfecccccccccccbe, 0xbff146492f341939, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbff161f92d81308a, + 0xbfecccccccccccd0, 0xbff161f92d813097, 0x0, 0x0, - 0xbfeccccccccccd3e, 0xbff17dddddc5ac35, + 0xbfecccccccccccd4, 0xbff17dddddc5ac8a, 0x0, 0x0, - 0xbfeccccccccccc64, 0xbff199f7f9cd233b, + 0xbfeccccccccccc97, 0xbff199f7f9cd234e, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbff1b6483eb250ba, + 0xbfecccccccccccc7, 0xbff1b6483eb250b7, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbff1d2cf6cf240b3, + 0xbfecccccccccccd3, 0xbff1d2cf6cf240b2, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbff1ef8e487ffd3c, + 0xbfecccccccccccb6, 0xbff1ef8e487ffd3e, 0x0, 0x0, - 0xbfecccccccccccac, 0xbff20c8598d8c804, + 0xbfecccccccccccc1, 0xbff20c8598d8c7fc, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbff229b62918e13f, + 0xbfecccccccccccc6, 0xbff229b62918e140, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbff24720c810e0f2, + 0xbfecccccccccccc0, 0xbff24720c810e0e0, 0x0, 0x0, - 0xbfecccccccccccfd, 0xbff264c6485ba7ed, + 0xbfecccccccccccd2, 0xbff264c6485ba7d6, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbff282a78074ed28, + 0xbfeccccccccccce0, 0xbff282a78074ed18, 0x0, 0x0, - 0xbfecccccccccccb3, 0xbff2a0c54ad06c8c, + 0xbfecccccccccccd1, 0xbff2a0c54ad06c88, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbff2bf2085f1bbf0, + 0xbfecccccccccccc3, 0xbff2bf2085f1bbf4, 0x0, 0x0, - 0xbfecccccccccccab, 0xbff2ddba1484ccb4, + 0xbfeccccccccccce1, 0xbff2ddba1484cca1, 0x0, 0x0, - 0xbfeccccccccccca8, 0xbff2fc92dd771f5c, + 0xbfecccccccccccac, 0xbff2fc92dd771f54, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbff31babcc11ae90, + 0xbfecccccccccccd3, 0xbff31babcc11ae82, 0x0, 0x0, - 0xbfecccccccccccaa, 0xbff33b05d0139862, + 0xbfecccccccccccd7, 0xbff33b05d0139846, 0x0, 0x0, - 0xbfecccccccccccf2, 0xbff35aa1ddcd8bb8, + 0xbfeccccccccccc8c, 0xbff35aa1ddcd8bb3, 0x0, 0x0, - 0xbfeccccccccccce7, 0xbff37a80ee3e00f2, + 0xbfecccccccccccbf, 0xbff37a80ee3e00ec, 0x0, 0x0, - 0xbfecccccccccccb5, 0xbff39aa3ff2e43f3, + 0xbfeccccccccccccb, 0xbff39aa3ff2e43e4, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbff3bb0c13505754, + 0xbfeccccccccccccb, 0xbff3bb0c13505748, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbff3dbba325db834, + 0xbfecccccccccccca, 0xbff3dbba325db833, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbff3fcaf69370a0a, + 0xbfeccccccccccccd, 0xbff3fcaf69370a0c, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbff41decca04b254, + 0xbfecccccccccccc9, 0xbff41decca04b250, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbff43f736c586d44, + 0xbfecccccccccccbd, 0xbff43f736c586d35, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbff461446d4fe2dc, + 0xbfecccccccccccb9, 0xbff461446d4fe304, 0x0, 0x0, - 0xbfecccccccccccb0, 0xbff48360efb847e2, + 0xbfecccccccccccb0, 0xbff48360efb847d2, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbff4a5ca1c330f24, + 0xbfecccccccccccd2, 0xbff4a5ca1c330f15, 0x0, 0x0, - 0xbfecccccccccccde, 0xbff4c881215bbc50, + 0xbfecccccccccccc7, 0xbff4c881215bbc2c, 0x0, 0x0, - 0xbfeccccccccccd42, 0xbff4eb8733eedb0c, + 0xbfecccccccccccc8, 0xbff4eb8733eedaec, 0x0, 0x0, - 0xbfeccccccccccca6, 0xbff50edd8ef2290a, + 0xbfeccccccccccccf, 0xbff50edd8ef22904, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbff5328573ddff02, + 0xbfecccccccccccf4, 0xbff5328573ddfee9, 0x0, 0x0, - 0xbfeccccccccccc91, 0xbff556802ac7fe44, + 0xbfecccccccccccd6, 0xbff556802ac7fe49, 0x0, 0x0, - 0xbfeccccccccccdc0, 0xbff57acf028f17c8, + 0xbfeccccccccccc18, 0xbff57acf028f178e, 0x0, 0x0, - 0xbfecccccccccccda, 0xbff59f735108eeee, + 0xbfeccccccccccc92, 0xbff59f735108eeb1, 0x0, 0x0, - 0xbfeccccccccccc7d, 0xbff5c46e7330b008, + 0xbfeccccccccccce0, 0xbff5c46e7330b00c, 0x0, 0x0, - 0xbfecccccccccccb9, 0xbff5e9c1cd575d5f, + 0xbfecccccccccccd3, 0xbff5e9c1cd575d66, 0x0, 0x0, - 0xbfeccccccccccd19, 0xbff60f6ecb55a832, + 0xbfecccccccccccc1, 0xbff60f6ecb55a808, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbff63576e0bf6091, + 0xbfecccccccccccf5, 0xbff63576e0bf608e, 0x0, 0x0, - 0xbfeccccccccccce7, 0xbff65bdb89188fc3, + 0xbfecccccccccccca, 0xbff65bdb89188fc5, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbff6829e480c4688, + 0xbfecccccccccccc4, 0xbff6829e480c465c, 0x0, 0x0, - 0xbfeccccccccccc83, 0xbff6a9c0a9a5358d, + 0xbfecccccccccccde, 0xbff6a9c0a9a53552, 0x0, 0x0, - 0xbfeccccccccccc3f, 0xbff6d14442881eda, + 0xbfeccccccccccd13, 0xbff6d14442881ee0, 0x0, 0x0, - 0xbfecccccccccccde, 0xbff6f92ab03035ac, + 0xbfecccccccccccca, 0xbff6f92ab03035b3, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbff72175992d77b3, + 0xbfecccccccccccd3, 0xbff72175992d77a6, 0x0, 0x0, - 0xbfeccccccccccc53, 0xbff74a26ad651e0c, + 0xbfecccccccccccc1, 0xbff74a26ad651dea, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbff7733fa65432e8, + 0xbfecccccccccccbe, 0xbff7733fa65432fe, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbff79cc24754654c, + 0xbfecccccccccccd6, 0xbff79cc247546547, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbff7c6b05de32f01, + 0xbfeccccccccccccb, 0xbff7c6b05de32f09, 0x0, 0x0, - 0xbfeccccccccccc52, 0xbff7f10bc1eb6752, + 0xbfeccccccccccc78, 0xbff7f10bc1eb671f, 0x0, 0x0, - 0xbfeccccccccccd04, 0xbff81bd6561156e2, + 0xbfecccccccccccb8, 0xbff81bd656115711, 0x0, 0x0, - 0xbfecccccccccccd7, 0xbff8471208016e28, + 0xbfecccccccccccc0, 0xbff8471208016e26, 0x0, 0x0, - 0xbfecccccccccccf7, 0xbff872c0d0c1adc1, + 0xbfecccccccccccd0, 0xbff872c0d0c1adce, 0x0, 0x0, - 0xbfeccccccccccc49, 0xbff89ee4b505e9cd, + 0xbfeccccccccccccb, 0xbff89ee4b505e9d4, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbff8cb7fc586fc7a, + 0xbfecccccccccccd3, 0xbff8cb7fc586fc5d, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbff8f8941f5d0a84, + 0xbfecccccccccccc9, 0xbff8f8941f5d0a70, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbff92623ec5cface, + 0xbfecccccccccccdd, 0xbff92623ec5cfad4, 0x0, 0x0, - 0xbfeccccccccccc9f, 0xbff95431637940e6, + 0xbfeccccccccccce9, 0xbff95431637940f8, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbff982bec9261eaa, + 0xbfecccccccccccbf, 0xbff982bec9261ecd, 0x0, 0x0, - 0xbfecccccccccccd7, 0xbff9b1ce6fc184a4, + 0xbfecccccccccccc6, 0xbff9b1ce6fc184ab, 0x0, 0x0, - 0xbfecccccccccccbd, 0xbff9e162b7feb371, + 0xbfecccccccccccd0, 0xbff9e162b7feb35e, 0x0, 0x0, - 0xbfeccccccccccc92, 0xbffa117e1155cd12, + 0xbfecccccccccccda, 0xbffa117e1155cd06, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbffa4222fa777c94, + 0xbfecccccccccccea, 0xbffa4222fa777c7c, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbffa735401c4e2e4, + 0xbfecccccccccccce, 0xbffa735401c4e2f8, 0x0, 0x0, - 0xbfeccccccccccd16, 0xbffaa513c5cbf962, + 0xbfecccccccccccc5, 0xbffaa513c5cbf942, 0x0, 0x0, - 0xbfecccccccccccf5, 0xbffad764f5c89810, + 0xbfeccccccccccce6, 0xbffad764f5c89803, 0x0, 0x0, - 0xbfeccccccccccca8, 0xbffb0a4a522a5a74, + 0xbfecccccccccccaf, 0xbffb0a4a522a5a6e, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbffb3dc6ad1f9134, + 0xbfecccccccccccd9, 0xbffb3dc6ad1f9138, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbffb71dceb258269, + 0xbfecccccccccccc6, 0xbffb71dceb258282, 0x0, 0x0, - 0xbfecccccccccccce, 0xbffba690039e2f88, + 0xbfeccccccccccccb, 0xbffba690039e2f72, 0x0, 0x0, - 0xbfecccccccccccbd, 0xbffbdbe3016be342, + 0xbfeccccccccccceb, 0xbffbdbe3016be34e, 0x0, 0x0, - 0xbfecccccccccccea, 0xbffc11d90392ca3e, + 0xbfecccccccccccd6, 0xbffc11d90392ca38, 0x0, 0x0, - 0xbfecccccccccccce, 0xbffc48753de0dbcc, + 0xbfecccccccccccd8, 0xbffc48753de0dbe7, 0x0, 0x0, - 0xbfecccccccccccbd, 0xbffc7fbaf99c5f26, + 0xbfecccccccccccdf, 0xbffc7fbaf99c5ef6, 0x0, 0x0, - 0xbfeccccccccccce4, 0xbffcb7ad96395785, + 0xbfeccccccccccca9, 0xbffcb7ad96395774, 0x0, 0x0, - 0xbfecccccccccccaa, 0xbffcf0508a162f5b, + 0xbfecccccccccccd4, 0xbffcf0508a162f68, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbffd29a7633ff2bd, + 0xbfecccccccccccda, 0xbffd29a7633ff2ad, 0x0, 0x0, - 0xbfeccccccccccc91, 0xbffd63b5c83e7848, + 0xbfecccccccccccd9, 0xbffd63b5c83e781c, 0x0, 0x0, - 0xbfecccccccccccfb, 0xbffd9e7f78e8d8de, + 0xbfecccccccccccdc, 0xbffd9e7f78e8d8ef, 0x0, 0x0, - 0xbfeccccccccccce3, 0xbffdda084f429a95, + 0xbfecccccccccccd4, 0xbffdda084f429a90, 0x0, 0x0, - 0xbfecccccccccccbf, 0xbffe16544061f956, + 0xbfecccccccccccc6, 0xbffe16544061f94e, 0x0, 0x0, - 0xbfeccccccccccd18, 0xbffe53675d5fc0b7, + 0xbfecccccccccccb3, 0xbffe53675d5fc079, 0x0, 0x0, - 0xbfecccccccccccb3, 0xbffe9145d4512b60, + 0xbfecccccccccccb4, 0xbffe9145d4512b74, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbffecff3f14c4ad0, + 0xbfeccccccccccce7, 0xbffecff3f14c4ad3, 0x0, 0x0, - 0xbfecccccccccccb8, 0xbfff0f761f7775d3, + 0xbfecccccccccccc3, 0xbfff0f761f7775e1, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfff4fd0ea24510c, + 0xbfeccccccccccce3, 0xbfff4fd0ea24510b, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbfff9108fdf702e0, + 0xbfecccccccccccd1, 0xbfff9108fdf702dc, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbfffd3232a1a3122, + 0xbfeccccccccccce4, 0xbfffd3232a1a311d, 0x0, 0x0, - 0xbfecccccccccccd4, 0xc0000b1230c037ef, + 0xbfeccccccccccccd, 0xc0000b1230c037f2, 0x0, 0x0, - 0xbfeccccccccccceb, 0xc0002d08de19e819, + 0xbfecccccccccccf5, 0xc0002d08de19e815, 0x0, 0x0, - 0xbfecccccccccccc3, 0xc0004f783c5a2595, + 0xbfecccccccccccd2, 0xc0004f783c5a259a, 0x0, 0x0, - 0xbfecccccccccccce, 0xc0007262feb2e772, + 0xbfecccccccccccb4, 0xc0007262feb2e768, 0x0, 0x0, - 0xbfecccccccccccc7, 0xc00095cbed075f20, + 0xbfecccccccccccd6, 0xc00095cbed075f20, 0x0, 0x0, - 0xbfecccccccccccf0, 0xc000b9b5e4b3e1ea, + 0xbfecccccccccccb0, 0xc000b9b5e4b3e1e5, 0x0, 0x0, - 0xbfecccccccccccfe, 0xc000de23d95ef0e0, + 0xbfeccccccccccc9f, 0xc000de23d95ef0e6, 0x0, 0x0, - 0xbfeccccccccccca7, 0xc0010318d5d3dd5a, + 0xbfecccccccccccc0, 0xc0010318d5d3dd61, 0x0, 0x0, - 0xbfecccccccccccde, 0xc0012897fce78f0f, + 0xbfeccccccccccd02, 0xc0012897fce78f02, 0x0, 0x0, - 0xbfeccccccccccdae, 0xc0014ea48a67f815, + 0xbfeccccccccccd78, 0xc0014ea48a67f7b8, 0x0, 0x0, - 0xbfecccccccccccc4, 0xc0017541d416cca7, + 0xbfeccccccccccd35, 0xc0017541d416cc8e, 0x0, 0x0, - 0xbfeccccccccccc83, 0xc0019c734ab02422, + 0xbfecccccccccccc8, 0xc0019c734ab0242a, 0x0, 0x0, - 0xbfecccccccccccbb, 0xc001c43c7afda049, + 0xbfeccccccccccccc, 0xc001c43c7afda052, 0x0, 0x0, - 0xbfeccccccccccccb, 0xc001eca10ef6dd83, + 0xbfecccccccccccea, 0xc001eca10ef6dd9c, 0x0, 0x0, - 0xbfecccccccccccca, 0xc00215a4ceefe458, + 0xbfecccccccccccd3, 0xc00215a4ceefe453, 0x0, 0x0, - 0xbfeccccccccccccc, 0xc0023f4ba2d66a7c, + 0xbfecccccccccccd4, 0xc0023f4ba2d66a80, 0x0, 0x0, - 0xbfecccccccccccbc, 0xc0026999937ebfea, + 0xbfecccccccccccba, 0xc0026999937ebfef, 0x0, 0x0, - 0xbfeccccccccccca7, 0xc0029492cc014e8c, + 0xbfecccccccccccc7, 0xc0029492cc014e8a, 0x0, 0x0, - 0xbfeccccccccccca1, 0xc002c03b9b29a6de, + 0xbfeccccccccccc90, 0xc002c03b9b29a6e2, 0x0, 0x0, - 0xbfecccccccccccdb, 0xc002ec9874f821ba, + 0xbfeccccccccccccb, 0xc002ec9874f821b6, 0x0, 0x0, - 0xbfecccccccccccd9, 0xc00319adf43733d0, + 0xbfecccccccccccd2, 0xc00319adf43733d0, 0x0, 0x0, - 0xbfeccccccccccca0, 0xc0034780dc25a087, + 0xbfecccccccccccd5, 0xc0034780dc25a090, 0x0, 0x0, - 0xbfecccccccccccc1, 0xc00376161a36d14a, + 0xbfeccccccccccc91, 0xc00376161a36d153, 0x0, 0x0, - 0xbfecccccccccccb7, 0xc003a572c7eaaa48, + 0xbfeccccccccccccd, 0xc003a572c7eaaa48, 0x0, 0x0, - 0xbfecccccccccccac, 0xc003d59c2cbe51cc, + 0xbfecccccccccccc2, 0xc003d59c2cbe51d6, 0x0, 0x0, - 0xbfeccccccccccc5f, 0xc0040697c037751a, + 0xbfeccccccccccd12, 0xc0040697c0377518, 0x0, 0x0, - 0xbfeccccccccccd07, 0xc004386b2c0bb62f, + 0xbfecccccccccccda, 0xc004386b2c0bb629, 0x0, 0x0, - 0xbfeccccccccccceb, 0xc0046b1c4e660ab8, + 0xbfecccccccccccd3, 0xc0046b1c4e660abe, 0x0, 0x0, - 0xbfeccccccccccce0, 0xc0049eb13c4bf58b, + 0xbfeccccccccccccd, 0xc0049eb13c4bf589, 0x0, 0x0, - 0xbfecccccccccccbf, 0xc004d3304424a9e7, + 0xbfecccccccccccd3, 0xc004d3304424a9f6, 0x0, 0x0, - 0xbfecccccccccccc7, 0xc005089ff0644d0a, + 0xbfecccccccccccb3, 0xc005089ff0644d10, 0x0, 0x0, - 0xbfeccccccccccca0, 0xc0053f070a5db5b6, + 0xbfecccccccccccd6, 0xc0053f070a5db5b1, 0x0, 0x0, - 0xbfecccccccccccc8, 0xc005766c9d3d3825, + 0xbfecccccccccccdb, 0xc005766c9d3d3826, 0x0, 0x0, - 0xbfecccccccccccc4, 0xc005aed7f92f3e06, + 0xbfecccccccccccce, 0xc005aed7f92f3df2, 0x0, 0x0, - 0xbfecccccccccccd5, 0xc005e850b6b59ff8, + 0xbfecccccccccccc1, 0xc005e850b6b59fec, 0x0, 0x0, - 0xbfecccccccccccd7, 0xc00622deba2ef428, + 0xbfecccccccccccd8, 0xc00622deba2ef42a, 0x0, 0x0, - 0xbfeccccccccccca7, 0xc0065e8a37934166, + 0xbfecccccccccccc9, 0xc0065e8a3793415e, 0x0, 0x0, - 0xbfecccccccccccc9, 0xc0069b5bb669d01a, + 0xbfecccccccccccef, 0xc0069b5bb669d006, 0x0, 0x0, - 0xbfeccccccccccca2, 0xc006d95c15fc1e66, + 0xbfecccccccccccec, 0xc006d95c15fc1e5a, 0x0, 0x0, - 0xbfeccccccccccce6, 0xc007189491ca4e6c, + 0xbfecccccccccccd3, 0xc007189491ca4e5c, 0x0, 0x0, - 0xbfeccccccccccd0a, 0xc007590ec645c289, + 0xbfeccccccccccca5, 0xc007590ec645c28c, 0x0, 0x0, - 0xbfeccccccccccc9a, 0xc0079ad4b5d6fff7, + 0xbfeccccccccccc8a, 0xc0079ad4b5d6ff98, 0x0, 0x0, - 0xbfeccccccccccc6b, 0xc007ddf0ce345885, + 0xbfecccccccccccc0, 0xc007ddf0ce345896, 0x0, 0x0, - 0xbfeccccccccccce1, 0xc008226dee0f5f56, + 0xbfecccccccccccc9, 0xc008226dee0f5f53, 0x0, 0x0, - 0xbfeccccccccccd11, 0xc00868576b1f9b7e, + 0xbfecccccccccccc4, 0xc00868576b1f9b81, 0x0, 0x0, - 0xbfecccccccccccd8, 0xc008afb918919498, + 0xbfeccccccccccceb, 0xc008afb9189194a4, 0x0, 0x0, - 0xbfecccccccccccc1, 0xc008f89f4de1dc5c, + 0xbfecccccccccccc2, 0xc008f89f4de1dc60, 0x0, 0x0, - 0xbfecccccccccccbd, 0xc0094316ee2c745d, + 0xbfecccccccccccd9, 0xc0094316ee2c745a, 0x0, 0x0, - 0xbfeccccccccccce5, 0xc0098f2d6ff9a922, + 0xbfecccccccccccbd, 0xc0098f2d6ff9a916, 0x0, 0x0, - 0xbfeccccccccccca7, 0xc009dcf0e5924dbe, + 0xbfecccccccccccad, 0xc009dcf0e5924db7, 0x0, 0x0, - 0xbfecccccccccccba, 0xc00a2c7005e62d9f, + 0xbfecccccccccccc0, 0xc00a2c7005e62d99, 0x0, 0x0, - 0xbfecccccccccccd1, 0xc00a7dba36108940, + 0xbfecccccccccccd7, 0xc00a7dba36108950, 0x0, 0x0, - 0xbfecccccccccccb2, 0xc00ad0df93878dc8, + 0xbfeccccccccccccf, 0xc00ad0df93878dd0, 0x0, 0x0, - 0xbfecccccccccccf3, 0xc00b25f0ff04f1bc, + 0xbfecccccccccccdb, 0xc00b25f0ff04f1c2, 0x0, 0x0, - 0xbfecccccccccccdf, 0xc00b7d0028373cee, + 0xbfeccccccccccceb, 0xc00b7d0028373cf4, 0x0, 0x0, - 0xbfecccccccccccc2, 0xc00bd61f9a4cc198, + 0xbfecccccccccccdd, 0xc00bd61f9a4cc198, 0x0, 0x0, - 0xbfecccccccccccd1, 0xc00c3162c96af8f2, + 0xbfecccccccccccca, 0xc00c3162c96af8f6, 0x0, 0x0, - 0xbfeccccccccccc8a, 0xc00c8ede2126d2b3, + 0xbfecccccccccccd5, 0xc00c8ede2126d2c5, 0x0, 0x0, - 0xbfecccccccccccb3, 0xc00ceea71414962a, + 0xbfecccccccccccb7, 0xc00ceea714149635, 0x0, 0x0, - 0xbfeccccccccccccf, 0xc00d50d42c88432b, + 0xbfecccccccccccdb, 0xc00d50d42c884331, 0x0, 0x0, - 0xbfecccccccccccc8, 0xc00db57d1ea1f49a, + 0xbfecccccccccccd9, 0xc00db57d1ea1f4a0, 0x0, 0x0, - 0xbfecccccccccccb3, 0xc00e1cbadbc4a424, + 0xbfecccccccccccca, 0xc00e1cbadbc4a42b, 0x0, 0x0, - 0xbfecccccccccccc2, 0xc00e86a7a798e9b0, + 0xbfecccccccccccdd, 0xc00e86a7a798e9a7, 0x0, 0x0, - 0xbfecccccccccccd4, 0xc00ef35f2ec0ea7a, + 0xbfecccccccccccd1, 0xc00ef35f2ec0ea80, 0x0, 0x0, - 0xbfeccccccccccce2, 0xc00f62fe9f66ba13, + 0xbfecccccccccccd6, 0xc00f62fe9f66ba19, 0x0, 0x0, - 0xbfecccccccccccc8, 0xc00fd5a4c3d2fb73, + 0xbfecccccccccccfe, 0xc00fd5a4c3d2fb74, 0x0, 0x0, - 0xbfecccccccccccc0, 0xc01025b90f9f58d6, + 0xbfeccccccccccce8, 0xc01025b90f9f58ca, 0x0, 0x0, - 0xbfecccccccccccd4, 0xc0106244868c7b68, + 0xbfeccccccccccccc, 0xc0106244868c7b68, 0x0, 0x0, - 0xbfecccccccccccbb, 0xc010a086f17feb80, + 0xbfeccccccccccccd, 0xc010a086f17feb7e, 0x0, 0x0, - 0xbfeccccccccccce0, 0xc010e0938ad977be, + 0xbfecccccccccccc4, 0xc010e0938ad977c2, 0x0, 0x0, - 0xbfecccccccccccc2, 0xc011227eb0a76962, + 0xbfecccccccccccea, 0xc011227eb0a76962, 0x0, 0x0, - 0xbfeccccccccccccc, 0xc011665dfa94d83e, + 0xbfecccccccccccde, 0xc011665dfa94d839, 0x0, 0x0, - 0xbfeccccccccccd04, 0xc011ac4851da48fb, + 0xbfecccccccccccdc, 0xc011ac4851da48ef, 0x0, 0x0, - 0xbfecccccccccce06, 0xc011f4560b6865fb, + 0xbfecccccccccccd4, 0xc011f4560b6865e8, 0x0, 0x0, - 0xbfecccccccccccc5, 0xc0123ea1048bab8e, + 0xbfecccccccccccb0, 0xc0123ea1048bab8e, 0x0, 0x0, - 0xbfeccccccccccce6, 0xc0128b44c24feae3, + 0xbfecccccccccccbf, 0xc0128b44c24feae2, 0x0, 0x0, - 0xbfeccccccccccce0, 0xc012da5e93f3c100, + 0xbfeccccccccccce0, 0xc012da5e93f3c104, 0x0, 0x0, - 0xbfecccccccccccea, 0xc0132c0db8c6b660, + 0xbfeccccccccccced, 0xc0132c0db8c6b662, 0x0, 0x0, - 0xbfecccccccccccd0, 0xc013807389d8ecf0, + 0xbfecccccccccccb2, 0xc013807389d8ecee, 0x0, 0x0, - 0xbfecccccccccccc7, 0xc013d7b3a7f15676, + 0xbfecccccccccccca, 0xc013d7b3a7f1567a, 0x0, 0x0, - 0xbfeccccccccccca8, 0xc01431f42e4fb21e, + 0xbfecccccccccccd7, 0xc01431f42e4fb21f, 0x0, 0x0, - 0xbfecccccccccccb6, 0xc0148f5dead26e95, + 0xbfeccccccccccca2, 0xc0148f5dead26e98, 0x0, 0x0, - 0xbfecccccccccccf3, 0xc014f01c9c2e7b02, + 0xbfecccccccccccd6, 0xc014f01c9c2e7b06, 0x0, 0x0, - 0xbfecccccccccccb3, 0xc015545f37009d72, + 0xbfeccccccccccce4, 0xc015545f37009d74, 0x0, 0x0, - 0xbfecccccccccccaa, 0xc015bc58329dbd45, + 0xbfecccccccccccc8, 0xc015bc58329dbd45, 0x0, 0x0, - 0xbfeccccccccccca2, 0xc016283ddeaa8692, + 0xbfecccccccccccf0, 0xc016283ddeaa8691, 0x0, 0x0, - 0xbfeccccccccccca6, 0xc016984ac2abdd98, + 0xbfeccccccccccca6, 0xc016984ac2abdd95, 0x0, 0x0, - 0xbfecccccccccccc6, 0xc0170cbe08f1fcad, + 0xbfecccccccccccd4, 0xc0170cbe08f1fcaa, 0x0, 0x0, - 0xbfecccccccccccb6, 0xc01785dbf6794896, + 0xbfecccccccccccb4, 0xc01785dbf6794898, 0x0, 0x0, - 0xbfecccccccccccd9, 0xc01803ee719fb2fb, + 0xbfecccccccccccf2, 0xc01803ee719fb2f2, 0x0, 0x0, - 0xbfeccccccccccca5, 0xc018874599de2916, + 0xbfeccccccccccc8c, 0xc018874599de2926, 0x0, 0x0, - 0xbfecccccccccccc0, 0xc01910387315cf5f, + 0xbfeccccccccccccc, 0xc01910387315cf60, 0x0, 0x0, - 0xbfecccccccccccc5, 0xc0199f25a77413f2, + 0xbfecccccccccccd4, 0xc0199f25a77413f2, 0x0, 0x0, - 0xbfeccccccccccc98, 0xc01a3474637b4316, + 0xbfecccccccccccc8, 0xc01a3474637b4314, 0x0, 0x0, - 0xbfecccccccccccc9, 0xc01ad095506490c5, + 0xbfeccccccccccce2, 0xc01ad095506490c5, 0x0, 0x0, - 0xbfeccccccccccccf, 0xc01b7403b1db44d3, + 0xbfeccccccccccccc, 0xc01b7403b1db44d8, 0x0, 0x0, - 0xbfecccccccccccbe, 0xc01c1f46ad076592, + 0xbfecccccccccccb8, 0xc01c1f46ad076593, 0x0, 0x0, - 0xbfecccccccccccbb, 0xc01cd2f2c00bbe1e, + 0xbfecccccccccccdb, 0xc01cd2f2c00bbe1a, 0x0, 0x0, - 0xbfecccccccccccd2, 0xc01d8fab728d5082, + 0xbfecccccccccccca, 0xc01d8fab728d5089, 0x0, 0x0, - 0xbfecccccccccccb6, 0xc01e562549a301e0, + 0xbfeccccccccccce1, 0xc01e562549a301e1, 0x0, 0x0, - 0xbfeccccccccccca9, 0xc01f27280bc2a8ee, + 0xbfecccccccccccc0, 0xc01f27280bc2a8f0, 0x0, 0x0, - 0xbfecccccccccccba, 0xc02001c8b20155f2, + 0xbfecccccccccccee, 0xc02001c8b20155f0, 0x0, 0x0, - 0xbfeccccccccccca9, 0xc020762bfbbe2b95, + 0xbfecccccccccccd1, 0xc020762bfbbe2b99, 0x0, 0x0, - 0xbfecccccccccccb5, 0xc020f14781fb7adb, + 0xbfecccccccccccd8, 0xc020f14781fb7adc, 0x0, 0x0, - 0xbfecccccccccccb6, 0xc02173b55245abf2, + 0xbfecccccccccccab, 0xc02173b55245abf0, 0x0, 0x0, - 0xbfeccccccccccc3c, 0xc021fe226fff9297, + 0xbfeccccccccccc20, 0xc021fe226fff9295, 0x0, 0x0, - 0xbfecccccccccccb0, 0xc0229151d6d5bcdb, + 0xbfeccccccccccc80, 0xc0229151d6d5bcdf, 0x0, 0x0, - 0xbfeccccccccccca2, 0xc0232e2014c225b7, + 0xbfecccccccccccbb, 0xc0232e2014c225ba, 0x0, 0x0, - 0xbfecccccccccccd5, 0xc023d5879f9729c4, + 0xbfecccccccccccbe, 0xc023d5879f9729c2, 0x0, 0x0, - 0xbfeccccccccccc8e, 0xc02488a6142100a2, + 0xbfeccccccccccca8, 0xc02488a6142100a0, 0x0, 0x0, - 0xbfecccccccccccbc, 0xc02548c29a532b96, + 0xbfeccccccccccca4, 0xc02548c29a532b97, 0x0, 0x0, - 0xbfecccccccccccc4, 0xc0261755bbea70fc, + 0xbfeccccccccccce8, 0xc0261755bbea70fc, 0x0, 0x0, - 0xbfeccccccccccca5, 0xc026f6131334f4b2, + 0xbfecccccccccccb1, 0xc026f6131334f4b3, 0x0, 0x0, - 0xbfecccccccccccb2, 0xc027e6f558e6bf24, + 0xbfecccccccccccc8, 0xc027e6f558e6bf26, 0x0, 0x0, - 0xbfecccccccccccbd, 0xc028ec4d85cd611f, + 0xbfeccccccccccccc, 0xc028ec4d85cd611a, 0x0, 0x0, - 0xbfeccccccccccc8d, 0xc02a08d5fd804bfe, + 0xbfecccccccccccce, 0xc02a08d5fd804bfb, 0x0, 0x0, - 0xbfeccccccccccc9f, 0xc02b3fcb12602488, + 0xbfecccccccccccbc, 0xc02b3fcb12602488, 0x0, 0x0, - 0xbfecccccccccccbe, 0xc02c950ab676ab03, + 0xbfecccccccccccd5, 0xc02c950ab676ab00, 0x0, 0x0, - 0xbfeccccccccccc76, 0xc02e0d3dec9b87f0, + 0xbfecccccccccccf9, 0xc02e0d3dec9b87f3, 0x0, 0x0, - 0xbfeccccccccccc98, 0xc02fae0faa66c361, + 0xbfeccccccccccce9, 0xc02fae0faa66c362, 0x0, 0x0, - 0xbfeccccccccccca8, 0xc030bf3b45a19508, + 0xbfeccccccccccccc, 0xc030bf3b45a19505, 0x0, 0x0, - 0xbfeccccccccccce6, 0xc031c38ca820c8e8, + 0xbfeccccccccccd66, 0xc031c38ca820c8e4, 0x0, 0x0, - 0xbfecccccccccccac, 0xc032e96d238a4daa, + 0xbfecccccccccccb5, 0xc032e96d238a4da8, 0x0, 0x0, - 0xbfecccccccccccc4, 0xc03437ce3009c343, + 0xbfecccccccccccd9, 0xc03437ce3009c343, 0x0, 0x0, - 0xbfeccccccccccc90, 0xc035b7afee1f2424, + 0xbfecccccccccccb9, 0xc035b7afee1f2424, 0x0, 0x0, - 0xbfeccccccccccc62, 0xc03774f3d05a1d2d, + 0xbfecccccccccccca, 0xc03774f3d05a1d2a, 0x0, 0x0, - 0xbfecccccccccccb2, 0xc0397f9d2e55bfe5, + 0xbfeccccccccccc92, 0xc0397f9d2e55bfe7, 0x0, 0x0, - 0xbfeccccccccccc6f, 0xc03bedc9071f7615, + 0xbfeccccccccccce3, 0xc03bedc9071f7615, 0x0, 0x0, - 0xbfeccccccccccc94, 0xc03edee3ed8e2314, + 0xbfeccccccccccc8e, 0xc03edee3ed8e2316, 0x0, 0x0, - 0xbfeccccccccccc33, 0xc0414092117a7242, + 0xbfecccccccccccb9, 0xc0414092117a7240, 0x0, 0x0, - 0xbfeccccccccccc57, 0xc0438db2b0659cb4, + 0xbfecccccccccccea, 0xc0438db2b0659cb2, 0x0, 0x0, - 0xbfeccccccccccc3e, 0xc046900f24647fa6, + 0xbfecccccccccccdc, 0xc046900f24647fa8, 0x0, 0x0, - 0xbfeccccccccccc00, 0xc04aaa823eed92bd, + 0xbfeccccccccccca7, 0xc04aaa823eed92be, 0x0, 0x0, - 0xbfeccccccccccbfa, 0xc0504be2e24253f0, + 0xbfecccccccccccdb, 0xc0504be2e24253f0, 0x0, 0x0, - 0xbfeccccccccccbc0, 0xc054f3fd088b91ad, + 0xbfeccccccccccca9, 0xc054f3fd088b91af, 0x0, 0x0, - 0xbfeccccccccccb5f, 0xc05d55b9a367908a, + 0xbfeccccccccccd56, 0xc05d55b9a367908a, 0x0, 0x0, - 0xbfecccccccccc9e9, 0xc068722ece0ccb99, + 0xbfeccccccccccbe5, 0xc068722ece0ccb9a, 0x0, 0x0, - 0xbfecccccccccc3e0, 0xc08255aaa4bc2b9e + 0xbfeccccccccccbb7, 0xc08255aaa4bc2b9f }; static const uint64_t in_cfft_step_4096[8192] = { @@ -41020,8199 +41020,8199 @@ static const uint64_t in_cfft_step_4096[8192] = { static const uint64_t in_cifft_step_4096[8192] = { 0x409ccccccccccccd, 0x0, - 0xbfecccccccccce2e, 0x409255ab59b0d91d, + 0xbfeccccccccccd35, 0x409255ab59b0d91d, 0x0, 0x0, - 0xbfecccccccccce20, 0x407872374985cccb, + 0xbfeccccccccccb41, 0x407872374985cccb, 0x0, 0x0, - 0xbfeccccccccccd41, 0x406d55d5e9ab64d3, + 0xbfeccccccccccdb7, 0x406d55d5e9ab64d4, 0x0, 0x0, - 0xbfeccccccccccdbc, 0x4064f4249e29f05e, + 0xbfeccccccccccce8, 0x4064f4249e29f05d, 0x0, 0x0, - 0xbfeccccccccccd2c, 0x40604c15c7477295, + 0xbfeccccccccccd28, 0x40604c15c7477295, 0x0, 0x0, - 0xbfeccccccccccd9b, 0x405aaafea7e4b54d, + 0xbfeccccccccccc6e, 0x405aaafea7e4b54c, 0x0, 0x0, - 0xbfeccccccccccd41, 0x405690a22c6ee736, + 0xbfeccccccccccd14, 0x405690a22c6ee736, 0x0, 0x0, - 0xbfeccccccccccd58, 0x40538e5c57b0a396, + 0xbfeccccccccccce5, 0x40538e5c57b0a392, 0x0, 0x0, - 0xbfecccccccccccee, 0x40514152583a6d86, + 0xbfeccccccccccce1, 0x40514152583a6d86, 0x0, 0x0, - 0xbfeccccccccccd3a, 0x404ee091ba6ea2b9, + 0xbfeccccccccccc98, 0x404ee091ba6ea2ba, 0x0, 0x0, - 0xbfecccccccccccf4, 0x404befa413e515be, + 0xbfeccccccccccd08, 0x404befa413e515be, 0x0, 0x0, - 0xbfeccccccccccd00, 0x404981a57b930dd1, + 0xbfeccccccccccc84, 0x404981a57b930dd1, 0x0, 0x0, - 0xbfecccccccccccec, 0x404777295eaf9f8f, + 0xbfeccccccccccca6, 0x404777295eaf9f8e, 0x0, 0x0, - 0xbfecccccccccccdb, 0x4045ba12be3b5a06, + 0xbfeccccccccccc76, 0x4045ba12be3b5a05, 0x0, 0x0, - 0xbfeccccccccccd08, 0x40443a5e42a9253e, + 0xbfecccccccccccc2, 0x40443a5e42a9253f, 0x0, 0x0, - 0xbfecccccccccccf6, 0x4042ec2a79774ee6, + 0xbfeccccccccccc1a, 0x4042ec2a79774ee4, 0x0, 0x0, - 0xbfecccccccccccc8, 0x4041c6774233d804, + 0xbfeccccccccccd1e, 0x4041c6774233d805, 0x0, 0x0, - 0xbfecccccccccccf0, 0x4040c25324c11d3c, + 0xbfeccccccccccccc, 0x4040c25324c11d3c, 0x0, 0x0, - 0xbfeccccccccccd01, 0x403fb499f4a797b1, + 0xbfeccccccccccd13, 0x403fb499f4a797b0, 0x0, 0x0, - 0xbfeccccccccccd0b, 0x403e1422c4e2ef84, + 0xbfeccccccccccc91, 0x403e1422c4e2ef84, 0x0, 0x0, - 0xbfeccccccccccce8, 0x403c9c4a1ee5755a, + 0xbfecccccccccccf0, 0x403c9c4a1ee57558, 0x0, 0x0, - 0xbfeccccccccccd19, 0x403b47650d332406, + 0xbfecccccccccccb0, 0x403b47650d332404, 0x0, 0x0, - 0xbfeccccccccccd2f, 0x403a10ca8d10587d, + 0xbfeccccccccccce5, 0x403a10ca8d10587d, 0x0, 0x0, - 0xbfeccccccccccce7, 0x4038f49cac8f5b02, + 0xbfecccccccccccc7, 0x4038f49cac8f5afd, 0x0, 0x0, - 0xbfecccccccccccff, 0x4037ef9f196b923f, + 0xbfecccccccccccb1, 0x4037ef9f196b923f, 0x0, 0x0, - 0xbfecccccccccccfc, 0x4036ff1770299b8e, + 0xbfecccccccccccc0, 0x4036ff1770299b8a, 0x0, 0x0, - 0xbfecccccccccccd2, 0x403620b4b817f811, + 0xbfecccccccccccd9, 0x403620b4b817f810, 0x0, 0x0, - 0xbfeccccccccccd11, 0x4035527c389eb4d4, + 0xbfeccccccccccce3, 0x4035527c389eb4d4, 0x0, 0x0, - 0xbfeccccccccccce2, 0x403492ba578bc6f0, + 0xbfecccccccccccc6, 0x403492ba578bc6ec, 0x0, 0x0, - 0xbfeccccccccccd2d, 0x4033dff68b3e84c6, + 0xbfecccccccccccc2, 0x4033dff68b3e84c4, 0x0, 0x0, - 0xbfeccccccccccd2c, 0x403338e9abdf8daa, + 0xbfeccccccccccd02, 0x403338e9abdf8da6, 0x0, 0x0, - 0xbfeccccccccccd08, 0x40329c761cbece81, + 0xbfeccccccccccc30, 0x40329c761cbece7c, 0x0, 0x0, - 0xbfecccccccccccca, 0x403209a168261346, + 0xbfeccccccccccd5f, 0x403209a168261347, 0x0, 0x0, - 0xbfecccccccccccf0, 0x40317f8f00378e3a, + 0xbfecccccccccccba, 0x40317f8f00378e3a, 0x0, 0x0, - 0xbfeccccccccccce7, 0x4030fd7be962e272, + 0xbfeccccccccccce5, 0x4030fd7be962e273, 0x0, 0x0, - 0xbfecccccccccccd2, 0x403082bb2061722a, + 0xbfeccccccccccca5, 0x403082bb2061722a, 0x0, 0x0, - 0xbfecccccccccccef, 0x40300eb297c30fb5, + 0xbfeccccccccccd0b, 0x40300eb297c30fb2, 0x0, 0x0, - 0xbfecccccccccccd6, 0x402f41b16180aa17, + 0xbfecccccccccccc7, 0x402f41b16180aa18, 0x0, 0x0, - 0xbfeccccccccccce6, 0x402e716431d1c095, + 0xbfecccccccccccdd, 0x402e716431d1c095, 0x0, 0x0, - 0xbfeccccccccccd32, 0x402dab9ff59b8f80, + 0xbfeccccccccccc9d, 0x402dab9ff59b8f7c, 0x0, 0x0, - 0xbfecccccccccccae, 0x402cef9ce6a0dd68, + 0xbfecccccccccccda, 0x402cef9ce6a0dd66, 0x0, 0x0, - 0xbfecccccccccccc0, 0x402c3ca680036d62, + 0xbfecccccccccccae, 0x402c3ca680036d62, 0x0, 0x0, - 0xbfecccccccccccec, 0x402b92193a56f04f, + 0xbfecccccccccccdc, 0x402b92193a56f050, 0x0, 0x0, - 0xbfecccccccccccda, 0x402aef6097b15978, + 0xbfecccccccccccf0, 0x402aef6097b15974, 0x0, 0x0, - 0xbfecccccccccccd1, 0x402a53f573236c6a, + 0xbfecccccccccccb0, 0x402a53f573236c6e, 0x0, 0x0, - 0xbfecccccccccccf2, 0x4029bf5c893ab729, + 0xbfecccccccccccac, 0x4029bf5c893ab72c, 0x0, 0x0, - 0xbfecccccccccccbe, 0x4029312530f6e79f, + 0xbfeccccccccccccc, 0x4029312530f6e79f, 0x0, 0x0, - 0xbfeccccccccccd2c, 0x4028a8e83e0e9fd4, + 0xbfeccccccccccce2, 0x4028a8e83e0e9fd2, 0x0, 0x0, - 0xbfecccccccccccad, 0x40282647068d6c7e, + 0xbfecccccccccccdb, 0x40282647068d6c83, 0x0, 0x0, - 0xbfecccccccccccea, 0x4027a8ea86cb3171, + 0xbfecccccccccccb6, 0x4027a8ea86cb3172, 0x0, 0x0, - 0xbfecccccccccccc8, 0x402730829f88166c, + 0xbfeccccccccccce8, 0x402730829f88166a, 0x0, 0x0, - 0xbfecccccccccccea, 0x4026bcc56a9f4c91, + 0xbfecccccccccccb2, 0x4026bcc56a9f4c91, 0x0, 0x0, - 0xbfeccccccccccce4, 0x40264d6ea34d9fbc, + 0xbfecccccccccccda, 0x40264d6ea34d9fbb, 0x0, 0x0, - 0xbfeccccccccccce9, 0x4025e23f1f7c142e, + 0xbfecccccccccccde, 0x4025e23f1f7c142f, 0x0, 0x0, - 0xbfecccccccccccca, 0x40257afc57df12c3, + 0xbfeccccccccccce8, 0x40257afc57df12c2, 0x0, 0x0, - 0xbfecccccccccccd2, 0x4025176ffd0b4b0d, + 0xbfecccccccccccde, 0x4025176ffd0b4b13, 0x0, 0x0, - 0xbfecccccccccccc5, 0x4024b76797e54060, + 0xbfeccccccccccc96, 0x4024b76797e5405e, 0x0, 0x0, - 0xbfecccccccccccd8, 0x40245ab43409a697, + 0xbfeccccccccccccc, 0x40245ab43409a694, 0x0, 0x0, - 0xbfecccccccccccf5, 0x4024012a12fd17ee, + 0xbfecccccccccccc9, 0x4024012a12fd17ec, 0x0, 0x0, - 0xbfecccccccccccfb, 0x4023aaa0671abefa, + 0xbfecccccccccccdb, 0x4023aaa0671abefa, 0x0, 0x0, - 0xbfeccccccccccd07, 0x402356f1155c85e3, + 0xbfeccccccccccce7, 0x402356f1155c85e0, 0x0, 0x0, - 0xbfecccccccccccf0, 0x402305f87d3534a4, + 0xbfecccccccccccaa, 0x402305f87d3534a0, 0x0, 0x0, - 0xbfeccccccccccca8, 0x4022b79545ce73a0, + 0xbfecccccccccccb4, 0x4022b79545ce739c, 0x0, 0x0, - 0xbfeccccccccccc65, 0x40226ba8301295ca, + 0xbfeccccccccccc8c, 0x40226ba8301295dc, 0x0, 0x0, - 0xbfecccccccccccb9, 0x40222213ecfceabf, + 0xbfecccccccccccc4, 0x40222213ecfceac1, 0x0, 0x0, - 0xbfeccccccccccc8f, 0x4021dabcf7bb9f5c, + 0xbfecccccccccccc2, 0x4021dabcf7bb9f58, 0x0, 0x0, - 0xbfecccccccccccbe, 0x40219589733c4769, + 0xbfeccccccccccce0, 0x40219589733c4769, 0x0, 0x0, - 0xbfeccccccccccc99, 0x402152610ac85aa2, + 0xbfeccccccccccca2, 0x402152610ac85aa1, 0x0, 0x0, - 0xbfeccccccccccce7, 0x4021112cd56188d6, + 0xbfeccccccccccccc, 0x4021112cd56188d4, 0x0, 0x0, - 0xbfeccccccccccced, 0x4020d1d73b970180, + 0xbfecccccccccccba, 0x4020d1d73b970180, 0x0, 0x0, - 0xbfecccccccccccd1, 0x4020944bdf94d5a6, + 0xbfeccccccccccce0, 0x4020944bdf94d5a6, 0x0, 0x0, - 0xbfeccccccccccce8, 0x402058778735a434, + 0xbfecccccccccccdf, 0x402058778735a436, 0x0, 0x0, - 0xbfeccccccccccce6, 0x40201e4807e4e858, + 0xbfecccccccccccab, 0x40201e4807e4e859, 0x0, 0x0, - 0xbfecccccccccccc2, 0x401fcb58684b5418, + 0xbfecccccccccccbe, 0x401fcb58684b5416, 0x0, 0x0, - 0xbfecccccccccccaf, 0x401f5d27952c2213, + 0xbfeccccccccccccd, 0x401f5d27952c2214, 0x0, 0x0, - 0xbfecccccccccccfd, 0x401ef1decc991332, + 0xbfecccccccccccea, 0x401ef1decc991335, 0x0, 0x0, - 0xbfecccccccccccf1, 0x401e8960e0ddb921, + 0xbfeccccccccccccc, 0x401e8960e0ddb920, 0x0, 0x0, - 0xbfecccccccccccfa, 0x401e239225cdbdce, + 0xbfecccccccccccc6, 0x401e239225cdbdc6, 0x0, 0x0, - 0xbfecccccccccccd0, 0x401dc05858368370, + 0xbfecccccccccccdb, 0x401dc0585836836c, 0x0, 0x0, - 0xbfecccccccccccf9, 0x401d5f9a872b35c4, + 0xbfecccccccccccf4, 0x401d5f9a872b35d2, 0x0, 0x0, - 0xbfecccccccccccd0, 0x401d0140ff020b9e, + 0xbfecccccccccccb4, 0x401d0140ff020ba0, 0x0, 0x0, - 0xbfecccccccccccb5, 0x401ca53535dd8308, + 0xbfeccccccccccca3, 0x401ca53535dd8303, 0x0, 0x0, - 0xbfecccccccccccdf, 0x401c4b61b9a00005, + 0xbfeccccccccccce1, 0x401c4b61b9a0000f, 0x0, 0x0, - 0xbfeccccccccccd05, 0x401bf3b21f2b6c2b, + 0xbfeccccccccccccc, 0x401bf3b21f2b6c38, 0x0, 0x0, - 0xbfecccccccccccf0, 0x401b9e12f2d155ac, + 0xbfeccccccccccca3, 0x401b9e12f2d155ac, 0x0, 0x0, - 0xbfeccccccccccce7, 0x401b4a71a9daa106, + 0xbfecccccccccccda, 0x401b4a71a9daa103, 0x0, 0x0, - 0xbfecccccccccccae, 0x401af8bc95102cb0, + 0xbfecccccccccccd4, 0x401af8bc95102cb1, 0x0, 0x0, - 0xbfeccccccccccccc, 0x401aa8e2d42fd8aa, + 0xbfecccccccccccd0, 0x401aa8e2d42fd89a, 0x0, 0x0, - 0xbfecccccccccccb7, 0x401a5ad44a3b3f57, + 0xbfecccccccccccda, 0x401a5ad44a3b3f4a, 0x0, 0x0, - 0xbfecccccccccccb4, 0x401a0e81928f195a, + 0xbfecccccccccccb4, 0x401a0e81928f195c, 0x0, 0x0, - 0xbfeccccccccccce4, 0x4019c3dbf6b3c67e, + 0xbfecccccccccccd3, 0x4019c3dbf6b3c682, 0x0, 0x0, - 0xbfeccccccccccced, 0x40197ad564d8d1a0, + 0xbfeccccccccccd10, 0x40197ad564d8d19f, 0x0, 0x0, - 0xbfeccccccccccced, 0x4019336066ee7fa6, + 0xbfecccccccccccec, 0x4019336066ee7fa6, 0x0, 0x0, - 0xbfeccccccccccccc, 0x4018ed701a51945a, + 0xbfecccccccccccce, 0x4018ed701a51945a, 0x0, 0x0, - 0xbfecccccccccccfd, 0x4018a8f827fe7836, + 0xbfeccccccccccd0e, 0x4018a8f827fe783e, 0x0, 0x0, - 0xbfecccccccccccff, 0x401865ecbd41d34c, + 0xbfeccccccccccc74, 0x401865ecbd41d36a, 0x0, 0x0, - 0xbfeccccccccccd06, 0x4018244284dd8356, + 0xbfecccccccccccde, 0x4018244284dd8360, 0x0, 0x0, - 0xbfecccccccccccf1, 0x4017e3eea099922a, + 0xbfecccccccccccac, 0x4017e3eea099922a, 0x0, 0x0, - 0xbfecccccccccccb2, 0x4017a4e6a339805a, + 0xbfecccccccccccca, 0x4017a4e6a339805e, 0x0, 0x0, - 0xbfecccccccccccef, 0x401767208aced43c, + 0xbfeccccccccccc94, 0x401767208aced440, 0x0, 0x0, - 0xbfecccccccccccd9, 0x40172a92bb626f00, + 0xbfeccccccccccccd, 0x40172a92bb626f01, 0x0, 0x0, - 0xbfeccccccccccd03, 0x4016ef33f9eeab65, + 0xbfecccccccccccb5, 0x4016ef33f9eeab60, 0x0, 0x0, - 0xbfeccccccccccce9, 0x4016b4fb67a4c1f4, + 0xbfecccccccccccb2, 0x4016b4fb67a4c1ee, 0x0, 0x0, - 0xbfecccccccccccf1, 0x40167be07d785b4a, + 0xbfeccccccccccc96, 0x40167be07d785b3e, 0x0, 0x0, - 0xbfecccccccccccdd, 0x401643db07ec9d10, + 0xbfecccccccccccd2, 0x401643db07ec9d0e, 0x0, 0x0, - 0xbfeccccccccccd17, 0x40160ce3231e5950, + 0xbfecccccccccccdc, 0x40160ce3231e5952, 0x0, 0x0, - 0xbfecccccccccccca, 0x4015d6f137075bc0, + 0xbfeccccccccccccc, 0x4015d6f137075bc0, 0x0, 0x0, - 0xbfecccccccccccd3, 0x4015a1fdf3f71c7a, + 0xbfecccccccccccd0, 0x4015a1fdf3f71c78, 0x0, 0x0, - 0xbfeccccccccccce3, 0x40156e024f3d66cc, + 0xbfecccccccccccf6, 0x40156e024f3d66d1, 0x0, 0x0, - 0xbfecccccccccccd9, 0x40153af78003c1d3, + 0xbfecccccccccccba, 0x40153af78003c1cf, 0x0, 0x0, - 0xbfecccccccccccdb, 0x401508d6fc52a578, + 0xbfeccccccccccccf, 0x401508d6fc52a574, 0x0, 0x0, - 0xbfeccccccccccd04, 0x4014d79a763fbb75, + 0xbfeccccccccccd40, 0x4014d79a763fbb69, 0x0, 0x0, - 0xbfeccccccccccce9, 0x4014a73bd9429e30, + 0xbfecccccccccccde, 0x4014a73bd9429e2e, 0x0, 0x0, - 0xbfeccccccccccccb, 0x401477b547adb6a6, + 0xbfecccccccccccbb, 0x401477b547adb6a1, 0x0, 0x0, - 0xbfecccccccccccf2, 0x4014490118490350, + 0xbfecccccccccccb8, 0x401449011849034c, 0x0, 0x0, - 0xbfeccccccccccd2e, 0x40141b19d40cb9c2, + 0xbfecccccccccccb5, 0x40141b19d40cb9cc, 0x0, 0x0, - 0xbfeccccccccccce3, 0x4013edfa33f9da14, + 0xbfecccccccccccfc, 0x4013edfa33f9da0e, 0x0, 0x0, - 0xbfeccccccccccce5, 0x4013c19d1f0ee9f6, + 0xbfecccccccccccbe, 0x4013c19d1f0ee9eb, 0x0, 0x0, - 0xbfecccccccccccf0, 0x401395fda8572ec0, + 0xbfecccccccccccca, 0x401395fda8572ebc, 0x0, 0x0, - 0xbfeccccccccccd2f, 0x40136b170d12d92c, + 0xbfeccccccccccce2, 0x40136b170d12d92e, 0x0, 0x0, - 0xbfeccccccccccccb, 0x401340e4b2f6ae92, + 0xbfecccccccccccee, 0x401340e4b2f6ae8a, 0x0, 0x0, - 0xbfecccccccccccec, 0x401317622681d6be, + 0xbfecccccccccccb7, 0x401317622681d6b6, 0x0, 0x0, - 0xbfeccccccccccd0d, 0x4012ee8b1968896e, + 0xbfecccccccccccc2, 0x4012ee8b19688964, 0x0, 0x0, - 0xbfeccccccccccd1d, 0x4012c65b61126d00, + 0xbfecccccccccccba, 0x4012c65b61126cf0, 0x0, 0x0, - 0xbfeccccccccccd21, 0x40129ecef52b8ab2, + 0xbfecccccccccccb6, 0x40129ecef52b8ab4, 0x0, 0x0, - 0xbfeccccccccccd39, 0x401277e1ee46cf63, + 0xbfecccccccccccd2, 0x401277e1ee46cf56, 0x0, 0x0, - 0xbfeccccccccccdac, 0x4012519084911fa2, + 0xbfeccccccccccc60, 0x4012519084911f9e, 0x0, 0x0, - 0xbfecccccccccce3c, 0x40122bd70e9416c8, + 0xbfeccccccccccaf2, 0x40122bd70e9416c8, 0x0, 0x0, - 0xbfeccccccccccc55, 0x401206b2000796a4, + 0xbfeccccccccccd68, 0x401206b20007969c, 0x0, 0x0, - 0xbfecccccccccccb7, 0x4011e21de8b15914, + 0xbfecccccccccccd0, 0x4011e21de8b15908, 0x0, 0x0, - 0xbfecccccccccccbe, 0x4011be177351c616, + 0xbfecccccccccccde, 0x4011be177351c613, 0x0, 0x0, - 0xbfeccccccccccce4, 0x40119a9b649d5707, + 0xbfecccccccccccda, 0x40119a9b649d5702, 0x0, 0x0, - 0xbfecccccccccccee, 0x401177a69a41de47, + 0xbfeccccccccccca4, 0x401177a69a41de49, 0x0, 0x0, - 0xbfecccccccccccbc, 0x4011553609f713b4, + 0xbfeccccccccccca4, 0x4011553609f713b9, 0x0, 0x0, - 0xbfecccccccccccce, 0x40113346c099cfbf, + 0xbfecccccccccccc8, 0x40113346c099cfbc, 0x0, 0x0, - 0xbfecccccccccccf9, 0x401111d5e1516776, + 0xbfecccccccccccfc, 0x401111d5e1516776, 0x0, 0x0, - 0xbfecccccccccccf8, 0x4010f0e0a4bea548, + 0xbfeccccccccccca5, 0x4010f0e0a4bea54b, 0x0, 0x0, - 0xbfecccccccccccce, 0x4010d0645833e0b2, + 0xbfecccccccccccd4, 0x4010d0645833e0ba, 0x0, 0x0, - 0xbfecccccccccccc8, 0x4010b05e5cf5bea5, + 0xbfecccccccccccda, 0x4010b05e5cf5beac, 0x0, 0x0, - 0xbfeccccccccccca1, 0x401090cc27842c08, + 0xbfecccccccccccf6, 0x401090cc27842c12, 0x0, 0x0, - 0xbfeccccccccccd08, 0x401071ab3eeb2916, + 0xbfeccccccccccce4, 0x401071ab3eeb2914, 0x0, 0x0, - 0xbfecccccccccccdc, 0x401052f93c1b026a, + 0xbfecccccccccccbc, 0x401052f93c1b026e, 0x0, 0x0, - 0xbfecccccccccccee, 0x401034b3c9479ab2, + 0xbfecccccccccccca, 0x401034b3c9479aa8, 0x0, 0x0, - 0xbfeccccccccccd59, 0x401016d8a14e6c7e, + 0xbfecccccccccccd2, 0x401016d8a14e6c71, 0x0, 0x0, - 0xbfeccccccccccc63, 0x400ff2cb1e45e1db, + 0xbfeccccccccccc8e, 0x400ff2cb1e45e1e2, 0x0, 0x0, - 0xbfecccccccccccec, 0x400fb8b0da8239e9, + 0xbfecccccccccccc4, 0x400fb8b0da8239e0, 0x0, 0x0, - 0xbfecccccccccccd9, 0x400f7f5e4a4b52c9, + 0xbfecccccccccccc6, 0x400f7f5e4a4b52cd, 0x0, 0x0, - 0xbfeccccccccccce9, 0x400f46cf5d97c2ce, + 0xbfecccccccccccd1, 0x400f46cf5d97c2db, 0x0, 0x0, - 0xbfeccccccccccccf, 0x400f0f0020616570, + 0xbfeccccccccccccd, 0x400f0f0020616560, 0x0, 0x0, - 0xbfeccccccccccceb, 0x400ed7ecb9b583bc, + 0xbfecccccccccccc6, 0x400ed7ecb9b583cf, 0x0, 0x0, - 0xbfecccccccccccc0, 0x400ea1916ace8d17, + 0xbfecccccccccccc1, 0x400ea1916ace8d13, 0x0, 0x0, - 0xbfeccccccccccce5, 0x400e6bea8e36ed53, + 0xbfeccccccccccc8d, 0x400e6bea8e36ed4f, 0x0, 0x0, - 0xbfecccccccccccf7, 0x400e36f496f497c2, + 0xbfeccccccccccca2, 0x400e36f496f497be, 0x0, 0x0, - 0xbfecccccccccccfa, 0x400e02ac0fbcdfa7, + 0xbfecccccccccccc7, 0x400e02ac0fbcdfb0, 0x0, 0x0, - 0xbfecccccccccccd8, 0x400dcf0d9a303e3e, + 0xbfecccccccccccf2, 0x400dcf0d9a303e42, 0x0, 0x0, - 0xbfeccccccccccd0e, 0x400d9c15ee1daac8, + 0xbfeccccccccccd15, 0x400d9c15ee1daad4, 0x0, 0x0, - 0xbfecccccccccccef, 0x400d69c1d8cd2f32, + 0xbfecccccccccccb1, 0x400d69c1d8cd2f36, 0x0, 0x0, - 0xbfecccccccccccd5, 0x400d380e3c5164be, + 0xbfecccccccccccdd, 0x400d380e3c5164c1, 0x0, 0x0, - 0xbfeccccccccccd25, 0x400d06f80edf8cf4, + 0xbfecccccccccccf4, 0x400d06f80edf8cd5, 0x0, 0x0, - 0xbfeccccccccccd7a, 0x400cd67c5a2dfa44, + 0xbfeccccccccccd0c, 0x400cd67c5a2dfa3e, 0x0, 0x0, - 0xbfecccccccccccbe, 0x400ca6983ad8853c, + 0xbfeccccccccccca2, 0x400ca6983ad8851d, 0x0, 0x0, - 0xbfecccccccccccd0, 0x400c7748dfcac5af, + 0xbfecccccccccccc7, 0x400c7748dfcac5b1, 0x0, 0x0, - 0xbfecccccccccccd5, 0x400c488b89afd774, + 0xbfeccccccccccccd, 0x400c488b89afd781, 0x0, 0x0, - 0xbfecccccccccccdb, 0x400c1a5d8a676738, + 0xbfecccccccccccd3, 0x400c1a5d8a67674a, 0x0, 0x0, - 0xbfeccccccccccced, 0x400becbc447fd1f2, + 0xbfecccccccccccf0, 0x400becbc447fd200, 0x0, 0x0, - 0xbfecccccccccccce, 0x400bbfa52ab51ed6, + 0xbfecccccccccccdf, 0x400bbfa52ab51ed0, 0x0, 0x0, - 0xbfeccccccccccce9, 0x400b9315bf749f46, + 0xbfecccccccccccd0, 0x400b9315bf749f3a, 0x0, 0x0, - 0xbfeccccccccccd36, 0x400b670b9465034e, + 0xbfeccccccccccc8e, 0x400b670b94650365, 0x0, 0x0, - 0xbfecccccccccccb5, 0x400b3b8449f2b439, + 0xbfeccccccccccce6, 0x400b3b8449f2b42c, 0x0, 0x0, - 0xbfecccccccccccdc, 0x400b107d8ee044be, + 0xbfecccccccccccd3, 0x400b107d8ee044be, 0x0, 0x0, - 0xbfecccccccccccc5, 0x400ae5f51fdad137, + 0xbfecccccccccccc8, 0x400ae5f51fdad146, 0x0, 0x0, - 0xbfecccccccccccd7, 0x400abbe8c71221f8, + 0xbfeccccccccccd07, 0x400abbe8c71221f1, 0x0, 0x0, - 0xbfecccccccccccd6, 0x400a92565bd46a15, + 0xbfecccccccccccc7, 0x400a92565bd46a22, 0x0, 0x0, - 0xbfeccccccccccd08, 0x400a693bc22d7f94, + 0xbfecccccccccccc7, 0x400a693bc22d7f92, 0x0, 0x0, - 0xbfecccccccccccae, 0x400a4096ea8965ac, + 0xbfecccccccccccf1, 0x400a4096ea8965a0, 0x0, 0x0, - 0xbfeccccccccccd04, 0x400a1865d15a0a0c, + 0xbfeccccccccccd2d, 0x400a1865d15a09f8, 0x0, 0x0, - 0xbfecccccccccccf9, 0x4009f0a67ec01312, + 0xbfecccccccccccd6, 0x4009f0a67ec01314, 0x0, 0x0, - 0xbfeccccccccccd30, 0x4009c9570636a16f, + 0xbfecccccccccccc0, 0x4009c9570636a190, 0x0, 0x0, - 0xbfecccccccccccbc, 0x4009a2758641e54b, + 0xbfecccccccccccce, 0x4009a2758641e54b, 0x0, 0x0, - 0xbfeccccccccccce9, 0x40097c0028206ce8, + 0xbfecccccccccccb2, 0x40097c0028206d02, 0x0, 0x0, - 0xbfeccccccccccccd, 0x400955f51f7f11ce, + 0xbfecccccccccccf2, 0x400955f51f7f11ea, 0x0, 0x0, - 0xbfeccccccccccc20, 0x40093052aa2f67b5, + 0xbfeccccccccccccf, 0x40093052aa2f67e8, 0x0, 0x0, - 0xbfecccccccccccf7, 0x40090b170fe098f0, + 0xbfecccccccccccdf, 0x40090b170fe098f3, 0x0, 0x0, - 0xbfeccccccccccd03, 0x4008e640a1da93d3, + 0xbfeccccccccccca4, 0x4008e640a1da939b, 0x0, 0x0, - 0xbfecccccccccccdc, 0x4008c1cdbabb76d6, + 0xbfecccccccccccc2, 0x4008c1cdbabb76cf, 0x0, 0x0, - 0xbfeccccccccccd11, 0x40089dbcbe372464, + 0xbfecccccccccccd5, 0x40089dbcbe3724a6, 0x0, 0x0, - 0xbfecccccccccccb1, 0x40087a0c18d8e835, + 0xbfecccccccccccb9, 0x40087a0c18d8e834, 0x0, 0x0, - 0xbfeccccccccccbf1, 0x400856ba3fc7199b, + 0xbfecccccccccccda, 0x400856ba3fc71998, 0x0, 0x0, - 0xbfecccccccccccca, 0x400833c5b088ae4e, + 0xbfeccccccccccce1, 0x400833c5b088ae53, 0x0, 0x0, - 0xbfeccccccccccc4b, 0x4008112cf0cca300, + 0xbfecccccccccccde, 0x4008112cf0cca306, 0x0, 0x0, - 0xbfeccccccccccd03, 0x4007eeee8e332de4, + 0xbfeccccccccccc78, 0x4007eeee8e332dd6, 0x0, 0x0, - 0xbfeccccccccccba0, 0x4007cd091e18a7b6, + 0xbfeccccccccccc93, 0x4007cd091e18a759, 0x0, 0x0, - 0xbfecccccccccccc5, 0x4007ab7b3d621ce9, + 0xbfecccccccccccbf, 0x4007ab7b3d621cde, 0x0, 0x0, - 0xbfeccccccccccccf, 0x40078a43904b7985, + 0xbfecccccccccccde, 0x40078a43904b7982, 0x0, 0x0, - 0xbfeccccccccccca2, 0x40076960c23738c5, + 0xbfeccccccccccce2, 0x40076960c23738c0, 0x0, 0x0, - 0xbfecccccccccccbb, 0x400748d1857f95f7, + 0xbfecccccccccccbf, 0x400748d1857f95f1, 0x0, 0x0, - 0xbfeccccccccccc98, 0x4007289493492862, + 0xbfecccccccccccda, 0x400728949349286d, 0x0, 0x0, - 0xbfeccccccccccc5b, 0x400708a8ab56e0fa, + 0xbfecccccccccccb9, 0x400708a8ab56e0f8, 0x0, 0x0, - 0xbfecccccccccccf6, 0x4006e90c93df5c4e, + 0xbfecccccccccccc4, 0x4006e90c93df5c4c, 0x0, 0x0, - 0xbfeccccccccccd02, 0x4006c9bf19637d6c, + 0xbfecccccccccccf2, 0x4006c9bf19637d44, 0x0, 0x0, - 0xbfecccccccccccb5, 0x4006aabf0e864562, + 0xbfecccccccccccc0, 0x4006aabf0e864570, 0x0, 0x0, - 0xbfeccccccccccc57, 0x40068c0b4be5dde8, + 0xbfecccccccccccce, 0x40068c0b4be5dde8, 0x0, 0x0, - 0xbfecccccccccccd9, 0x40066da2aff5c9dc, + 0xbfecccccccccccc6, 0x40066da2aff5c9de, 0x0, 0x0, - 0xbfeccccccccccccd, 0x40064f841eda3510, + 0xbfeccccccccccd00, 0x40064f841eda34fa, 0x0, 0x0, - 0xbfecccccccccccb2, 0x400631ae82445578, + 0xbfecccccccccccef, 0x400631ae8244556f, 0x0, 0x0, - 0xbfecccccccccccc1, 0x40061420c94fd979, + 0xbfecccccccccccae, 0x40061420c94fd967, 0x0, 0x0, - 0xbfecccccccccccb9, 0x4005f6d9e8615416, + 0xbfecccccccccccc6, 0x4005f6d9e861541a, 0x0, 0x0, - 0xbfecccccccccccf3, 0x4005d9d8d905a46e, + 0xbfecccccccccccdf, 0x4005d9d8d905a466, 0x0, 0x0, - 0xbfecccccccccccac, 0x4005bd1c99d24b7e, + 0xbfeccccccccccca3, 0x4005bd1c99d24b6e, 0x0, 0x0, - 0xbfeccccccccccd32, 0x4005a0a42e46aaf6, + 0xbfecccccccccccb1, 0x4005a0a42e46aaf9, 0x0, 0x0, - 0xbfecccccccccccd7, 0x4005846e9eae2478, + 0xbfecccccccccccd5, 0x4005846e9eae2477, 0x0, 0x0, - 0xbfecccccccccccc1, 0x4005687af803115f, + 0xbfecccccccccccc6, 0x4005687af803116e, 0x0, 0x0, - 0xbfeccccccccccceb, 0x40054cc84bd28ca9, + 0xbfeccccccccccd12, 0x40054cc84bd28cb6, 0x0, 0x0, - 0xbfecccccccccccc7, 0x40053155b02107d6, + 0xbfecccccccccccf5, 0x40053155b02107e2, 0x0, 0x0, - 0xbfecccccccccccc7, 0x400516223f4fa428, + 0xbfeccccccccccccd, 0x400516223f4fa430, 0x0, 0x0, - 0xbfeccccccccccca6, 0x4004fb2d1802497e, + 0xbfeccccccccccce5, 0x4004fb2d18024988, 0x0, 0x0, - 0xbfecccccccccccdd, 0x4004e0755d0675ca, + 0xbfecccccccccccba, 0x4004e0755d0675d2, 0x0, 0x0, - 0xbfecccccccccccb6, 0x4004c5fa353abd47, + 0xbfeccccccccccce2, 0x4004c5fa353abd51, 0x0, 0x0, - 0xbfeccccccccccc94, 0x4004abbacb76f822, + 0xbfecccccccccccc5, 0x4004abbacb76f820, 0x0, 0x0, - 0xbfecccccccccccd2, 0x400491b64e7515b8, + 0xbfeccccccccccd0a, 0x400491b64e7515b4, 0x0, 0x0, - 0xbfeccccccccccca3, 0x400477ebf0ba9250, + 0xbfecccccccccccee, 0x400477ebf0ba9255, 0x0, 0x0, - 0xbfecccccccccccc7, 0x40045e5ae882885c, + 0xbfecccccccccccc6, 0x40045e5ae882884e, 0x0, 0x0, - 0xbfeccccccccccc7c, 0x400445026fa8592a, + 0xbfecccccccccccee, 0x400445026fa85922, 0x0, 0x0, - 0xbfeccccccccccc79, 0x40042be1c392e874, + 0xbfecccccccccccba, 0x40042be1c392e8d0, 0x0, 0x0, - 0xbfeccccccccccd11, 0x400412f8252067f0, + 0xbfeccccccccccd34, 0x400412f825206800, 0x0, 0x0, - 0xbfeccccccccccca3, 0x4003fa44d892a69f, + 0xbfecccccccccccc4, 0x4003fa44d892a69a, 0x0, 0x0, - 0xbfeccccccccccce2, 0x4003e1c7257bed50, + 0xbfecccccccccccdd, 0x4003e1c7257bed4e, 0x0, 0x0, - 0xbfecccccccccccb2, 0x4003c97e56ac56fd, + 0xbfecccccccccccbe, 0x4003c97e56ac570c, 0x0, 0x0, - 0xbfecccccccccccce, 0x4003b169ba1fa8e1, + 0xbfecccccccccccb3, 0x4003b169ba1fa8e2, 0x0, 0x0, - 0xbfeccccccccccccb, 0x40039988a0eba2a2, + 0xbfeccccccccccce7, 0x40039988a0eba297, 0x0, 0x0, - 0xbfeccccccccccca9, 0x400381da5f2ec5e4, + 0xbfecccccccccccc7, 0x400381da5f2ec5e2, 0x0, 0x0, - 0xbfeccccccccccc60, 0x40036a5e4bff8f02, + 0xbfeccccccccccccf, 0x40036a5e4bff8ef7, 0x0, 0x0, - 0xbfeccccccccccced, 0x40035313c15c1cf4, + 0xbfecccccccccccb3, 0x40035313c15c1cf0, 0x0, 0x0, - 0xbfecccccccccccd2, 0x40033bfa1c1a44fc, + 0xbfecccccccccccce, 0x40033bfa1c1a44f4, 0x0, 0x0, - 0xbfecccccccccccd9, 0x40032510bbd80dd8, + 0xbfecccccccccccdb, 0x40032510bbd80ddc, 0x0, 0x0, - 0xbfecccccccccccd3, 0x40030e5702ec9180, + 0xbfecccccccccccfa, 0x40030e5702ec9178, 0x0, 0x0, - 0xbfecccccccccccbe, 0x4002f7cc56593f6c, + 0xbfecccccccccccd9, 0x4002f7cc56593f68, 0x0, 0x0, - 0xbfeccccccccccce6, 0x4002e1701dbb7fb0, + 0xbfecccccccccccb6, 0x4002e1701dbb7fb4, 0x0, 0x0, - 0xbfecccccccccccfa, 0x4002cb41c33eb1bb, + 0xbfecccccccccccf7, 0x4002cb41c33eb1b5, 0x0, 0x0, - 0xbfeccccccccccc72, 0x4002b540b38e84ef, + 0xbfeccccccccccd04, 0x4002b540b38e84cf, 0x0, 0x0, - 0xbfecccccccccccb8, 0x40029f6c5dc9a8d6, + 0xbfecccccccccccc7, 0x40029f6c5dc9a8d1, 0x0, 0x0, - 0xbfeccccccccccccc, 0x400289c43374d204, + 0xbfeccccccccccce4, 0x400289c43374d20a, 0x0, 0x0, - 0xbfeccccccccccce5, 0x40027447a86e1063, + 0xbfecccccccccccce, 0x40027447a86e105e, 0x0, 0x0, - 0xbfecccccccccccc0, 0x40025ef632e07630, + 0xbfeccccccccccc9b, 0x40025ef632e07635, 0x0, 0x0, - 0xbfecccccccccccf8, 0x400249cf4b380c9b, + 0xbfecccccccccccc1, 0x400249cf4b380c98, 0x0, 0x0, - 0xbfecccccccccccbd, 0x400234d26c161323, + 0xbfeccccccccccccf, 0x400234d26c161310, 0x0, 0x0, - 0xbfecccccccccccbd, 0x40021fff12458882, + 0xbfecccccccccccd4, 0x40021fff1245886a, 0x0, 0x0, - 0xbfeccccccccccc4c, 0x40020b54bcaffab4, + 0xbfecccccccccccac, 0x40020b54bcaffab0, 0x0, 0x0, - 0xbfeccccccccccca2, 0x4001f6d2ec529c93, + 0xbfecccccccccccaf, 0x4001f6d2ec529c9a, 0x0, 0x0, - 0xbfeccccccccccd0a, 0x4001e27924339da6, + 0xbfecccccccccccb3, 0x4001e27924339dae, 0x0, 0x0, - 0xbfecccccccccccd0, 0x4001ce46e957c463, + 0xbfecccccccccccbf, 0x4001ce46e957c476, 0x0, 0x0, - 0xbfecccccccccccdb, 0x4001ba3bc2b84718, + 0xbfeccccccccccd29, 0x4001ba3bc2b8473c, 0x0, 0x0, - 0xbfeccccccccccd19, 0x4001a6573938e348, + 0xbfeccccccccccce7, 0x4001a6573938e35e, 0x0, 0x0, - 0xbfeccccccccccd08, 0x40019298d79e3048, + 0xbfecccccccccccf6, 0x40019298d79e303c, 0x0, 0x0, - 0xbfeccccccccccd40, 0x40017f002a842cc5, + 0xbfeccccccccccc41, 0x40017f002a842cc4, 0x0, 0x0, - 0xbfecccccccccce67, 0x40016b8cc055060a, + 0xbfeccccccccccdf1, 0x40016b8cc0550648, 0x0, 0x0, - 0xbfeccccccccccc20, 0x4001583e29401326, + 0xbfeccccccccccbc3, 0x4001583e29401355, 0x0, 0x0, - 0xbfeccccccccccca6, 0x40014513f7310be3, + 0xbfeccccccccccc9c, 0x40014513f7310bb3, 0x0, 0x0, - 0xbfecccccccccccce, 0x4001320dbdc76b67, + 0xbfecccccccccccd0, 0x4001320dbdc76b6e, 0x0, 0x0, - 0xbfeccccccccccca4, 0x40011f2b124e0f5a, + 0xbfeccccccccccc8b, 0x40011f2b124e0f58, 0x0, 0x0, - 0xbfecccccccccccde, 0x40010c6b8bb3009a, + 0xbfecccccccccccdb, 0x40010c6b8bb300a5, 0x0, 0x0, - 0xbfecccccccccccc0, 0x4000f9cec27f7107, + 0xbfecccccccccccd6, 0x4000f9cec27f7109, 0x0, 0x0, - 0xbfeccccccccccccd, 0x4000e75450cfe5a2, + 0xbfeccccccccccca1, 0x4000e75450cfe5a7, 0x0, 0x0, - 0xbfeccccccccccc7d, 0x4000d4fbd24c8fc3, + 0xbfeccccccccccc9b, 0x4000d4fbd24c8fa7, 0x0, 0x0, - 0xbfecccccccccccbf, 0x4000c2c4e421d166, + 0xbfeccccccccccc74, 0x4000c2c4e421d178, 0x0, 0x0, - 0xbfeccccccccccce9, 0x4000b0af24f8eece, + 0xbfeccccccccccccd, 0x4000b0af24f8eedb, 0x0, 0x0, - 0xbfecccccccccccd0, 0x40009eba34f0e7d0, + 0xbfeccccccccccccc, 0x40009eba34f0e7c7, 0x0, 0x0, - 0xbfecccccccccccc4, 0x40008ce5b5977c05, + 0xbfeccccccccccced, 0x40008ce5b5977bfb, 0x0, 0x0, - 0xbfecccccccccccaa, 0x40007b3149e2560e, + 0xbfecccccccccccb1, 0x40007b3149e2560e, 0x0, 0x0, - 0xbfeccccccccccccb, 0x4000699c96285e38, + 0xbfecccccccccccc0, 0x4000699c96285e38, 0x0, 0x0, - 0xbfecccccccccccd1, 0x40005827401b3298, + 0xbfecccccccccccdc, 0x40005827401b32a4, 0x0, 0x0, - 0xbfeccccccccccd01, 0x400046d0eec0c498, + 0xbfecccccccccccfe, 0x400046d0eec0c4cd, 0x0, 0x0, - 0xbfeccccccccccce9, 0x400035994a6d1a1a, + 0xbfeccccccccccca1, 0x400035994a6d1a19, 0x0, 0x0, - 0xbfecccccccccccc5, 0x4000247ffcbc31b7, + 0xbfecccccccccccd0, 0x4000247ffcbc31be, 0x0, 0x0, - 0xbfeccccccccccce7, 0x40001384b08c0994, + 0xbfeccccccccccce2, 0x40001384b08c0992, 0x0, 0x0, - 0xbfeccccccccccd09, 0x400002a711f6c700, + 0xbfeccccccccccc99, 0x400002a711f6c6fc, 0x0, 0x0, - 0xbfecccccccccccb0, 0x3fffe3cd9c99fd76, + 0xbfecccccccccccb1, 0x3fffe3cd9c99fd94, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fffc28728203ae6, + 0xbfecccccccccccc0, 0x3fffc28728203ae4, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fffa17a25d9db26, + 0xbfecccccccccccbc, 0x3fffa17a25d9db3c, 0x0, 0x0, - 0xbfecccccccccccae, 0x3fff80a5f76c7a9e, + 0xbfeccccccccccca5, 0x3fff80a5f76c7a8c, 0x0, 0x0, - 0xbfecccccccccccbf, 0x3fff600a00bf401e, + 0xbfecccccccccccc9, 0x3fff600a00bf3ff4, 0x0, 0x0, - 0xbfecccccccccccf3, 0x3fff3fa5a7f099f0, + 0xbfecccccccccccd2, 0x3fff3fa5a7f099ea, 0x0, 0x0, - 0xbfeccccccccccced, 0x3fff1f78554c361f, + 0xbfecccccccccccd2, 0x3fff1f78554c3632, 0x0, 0x0, - 0xbfeccccccccccce5, 0x3ffeff8173412b95, + 0xbfeccccccccccce1, 0x3ffeff8173412b7a, 0x0, 0x0, - 0xbfecccccccccccf8, 0x3ffedfc06e585b5b, + 0xbfeccccccccccc95, 0x3ffedfc06e585b86, 0x0, 0x0, - 0xbfeccccccccccd1f, 0x3ffec034b52b06d0, + 0xbfecccccccccccc6, 0x3ffec034b52b06bc, 0x0, 0x0, - 0xbfeccccccccccd28, 0x3ffea0ddb85994ca, + 0xbfecccccccccccc2, 0x3ffea0ddb8599492, 0x0, 0x0, - 0xbfecccccccccce84, 0x3ffe81baea828ad2, + 0xbfeccccccccccc85, 0x3ffe81baea828b15, 0x0, 0x0, - 0xbfeccccccccccd3c, 0x3ffe62cbc039b720, + 0xbfeccccccccccd14, 0x3ffe62cbc039b779, 0x0, 0x0, - 0xbfeccccccccccd04, 0x3ffe440fafff84e0, + 0xbfecccccccccccec, 0x3ffe440fafff84e9, 0x0, 0x0, - 0xbfecccccccccccef, 0x3ffe25863238844c, + 0xbfecccccccccccd6, 0x3ffe258632388444, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3ffe072ec1251af5, + 0xbfecccccccccccb9, 0x3ffe072ec1251ae6, 0x0, 0x0, - 0xbfeccccccccccd0a, 0x3ffde908d8d96189, + 0xbfecccccccccccd0, 0x3ffde908d8d96172, 0x0, 0x0, - 0xbfecccccccccccf4, 0x3ffdcb13f7352be3, + 0xbfecccccccccccd6, 0x3ffdcb13f7352bd8, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3ffdad4f9bdc3b06, + 0xbfeccccccccccccf, 0x3ffdad4f9bdc3b1b, 0x0, 0x0, - 0xbfeccccccccccc38, 0x3ffd8fbb482e96e5, + 0xbfeccccccccccd0e, 0x3ffd8fbb482e96d3, 0x0, 0x0, - 0xbfecccccccccccad, 0x3ffd72567f410fda, + 0xbfecccccccccccd4, 0x3ffd72567f410fed, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3ffd5520c5d5e816, + 0xbfecccccccccccc1, 0x3ffd5520c5d5e81d, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3ffd3819a255a0e8, + 0xbfeccccccccccccd, 0x3ffd3819a255a10c, 0x0, 0x0, - 0xbfeccccccccccd01, 0x3ffd1b409cc7eed5, + 0xbfecccccccccccc6, 0x3ffd1b409cc7eebc, 0x0, 0x0, - 0xbfeccccccccccceb, 0x3ffcfe953ecccfa9, + 0xbfecccccccccccb5, 0x3ffcfe953ecccfab, 0x0, 0x0, - 0xbfecccccccccccae, 0x3ffce2171395c5da, + 0xbfecccccccccccd3, 0x3ffce2171395c5d6, 0x0, 0x0, - 0xbfecccccccccccba, 0x3ffcc5c5a7df34a2, + 0xbfecccccccccccb3, 0x3ffcc5c5a7df34b2, 0x0, 0x0, - 0xbfeccccccccccc6c, 0x3ffca9a089e9df46, + 0xbfeccccccccccd5f, 0x3ffca9a089e9df4a, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3ffc8da7497486b3, + 0xbfecccccccccccb2, 0x3ffc8da7497486bf, 0x0, 0x0, - 0xbfecccccccccccaf, 0x3ffc71d977b5aabd, + 0xbfeccccccccccc9f, 0x3ffc71d977b5aab7, 0x0, 0x0, - 0xbfecccccccccccbb, 0x3ffc5636a75566be, + 0xbfeccccccccccccd, 0x3ffc5636a75566b4, 0x0, 0x0, - 0xbfecccccccccccca, 0x3ffc3abe6c677001, + 0xbfecccccccccccbe, 0x3ffc3abe6c676ffe, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3ffc1f705c653134, + 0xbfeccccccccccccc, 0x3ffc1f705c653127, 0x0, 0x0, - 0xbfecccccccccccfa, 0x3ffc044c0e2800d4, + 0xbfecccccccccccef, 0x3ffc044c0e2800d4, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3ffbe95119e378c2, + 0xbfecccccccccccc4, 0x3ffbe95119e378d8, 0x0, 0x0, - 0xbfeccccccccccd18, 0x3ffbce7f191fe5e5, + 0xbfecccccccccccbb, 0x3ffbce7f191fe5c1, 0x0, 0x0, - 0xbfecccccccccccdd, 0x3ffbb3d5a6b4d313, + 0xbfeccccccccccc73, 0x3ffbb3d5a6b4d321, 0x0, 0x0, - 0xbfecccccccccccf2, 0x3ffb99545ec3b31c, + 0xbfecccccccccccc7, 0x3ffb99545ec3b312, 0x0, 0x0, - 0xbfecccccccccccd9, 0x3ffb7efadeb29f06, + 0xbfecccccccccccd5, 0x3ffb7efadeb29f09, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3ffb64c8c5273255, + 0xbfeccccccccccce8, 0x3ffb64c8c5273229, 0x0, 0x0, - 0xbfeccccccccccce3, 0x3ffb4abdb2017da1, + 0xbfecccccccccccec, 0x3ffb4abdb2017da2, 0x0, 0x0, - 0xbfeccccccccccd2a, 0x3ffb30d94657138a, + 0xbfecccccccccccb6, 0x3ffb30d946571378, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3ffb171b246e2bc9, + 0xbfecccccccccccb8, 0x3ffb171b246e2be2, 0x0, 0x0, - 0xbfeccccccccccd04, 0x3ffafd82efb8dea2, + 0xbfecccccccccce12, 0x3ffafd82efb8de40, 0x0, 0x0, - 0xbfecccccccccccd9, 0x3ffae4104cd077ac, + 0xbfeccccccccccd01, 0x3ffae4104cd07776, 0x0, 0x0, - 0xbfeccccccccccc9a, 0x3ffacac2e170dd34, + 0xbfecccccccccccd7, 0x3ffacac2e170dd3c, 0x0, 0x0, - 0xbfeccccccccccd03, 0x3ffab19a54740f64, + 0xbfeccccccccccce0, 0x3ffab19a54740f7a, 0x0, 0x0, - 0xbfecccccccccccbc, 0x3ffa98964dcdbbb6, + 0xbfeccccccccccce1, 0x3ffa98964dcdbbba, 0x0, 0x0, - 0xbfecccccccccccc1, 0x3ffa7fb67686e557, + 0xbfecccccccccccd8, 0x3ffa7fb67686e57a, 0x0, 0x0, - 0xbfecccccccccccbc, 0x3ffa66fa78b9a30d, + 0xbfecccccccccccb9, 0x3ffa66fa78b9a2f7, 0x0, 0x0, - 0xbfeccccccccccc70, 0x3ffa4e61ff8cef46, + 0xbfecccccccccccb0, 0x3ffa4e61ff8cef36, 0x0, 0x0, - 0xbfeccccccccccc93, 0x3ffa35ecb7308dda, + 0xbfeccccccccccce9, 0x3ffa35ecb7308de1, 0x0, 0x0, - 0xbfecccccccccccf1, 0x3ffa1d9a4cd90468, + 0xbfecccccccccccc1, 0x3ffa1d9a4cd90482, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3ffa056a6ebba34c, + 0xbfecccccccccccd7, 0x3ffa056a6ebba346, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3ff9ed5ccc0aa486, + 0xbfecccccccccccd6, 0x3ff9ed5ccc0aa4ad, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3ff9d57114f15ad1, + 0xbfeccccccccccc9a, 0x3ff9d57114f15ade, 0x0, 0x0, - 0xbfecccccccccccc5, 0x3ff9bda6fa907159, + 0xbfecccccccccccba, 0x3ff9bda6fa90714c, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3ff9a5fe2efa3f04, + 0xbfecccccccccccd2, 0x3ff9a5fe2efa3f00, 0x0, 0x0, - 0xbfecccccccccccb0, 0x3ff98e76652f2835, + 0xbfecccccccccccd1, 0x3ff98e76652f2840, 0x0, 0x0, - 0xbfeccccccccccc72, 0x3ff9770f511a13cc, + 0xbfecccccccccccbb, 0x3ff9770f511a141a, 0x0, 0x0, - 0xbfeccccccccccc94, 0x3ff95fc8a78cedb8, + 0xbfecccccccccccbb, 0x3ff95fc8a78ced9f, 0x0, 0x0, - 0xbfeccccccccccce6, 0x3ff948a21e3d3a38, + 0xbfecccccccccccd5, 0x3ff948a21e3d3a42, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3ff9319b6bc0badc, + 0xbfecccccccccccb7, 0x3ff9319b6bc0bae2, 0x0, 0x0, - 0xbfecccccccccccf4, 0x3ff91ab4478a1e74, + 0xbfecccccccccccf0, 0x3ff91ab4478a1e84, 0x0, 0x0, - 0xbfecccccccccccec, 0x3ff903ec69e5c44e, + 0xbfecccccccccccdb, 0x3ff903ec69e5c444, 0x0, 0x0, - 0xbfecccccccccccfe, 0x3ff8ed438bf68a48, + 0xbfecccccccccccd7, 0x3ff8ed438bf68a6a, 0x0, 0x0, - 0xbfeccccccccccc98, 0x3ff8d6b967b2acb8, + 0xbfecccccccccccdd, 0x3ff8d6b967b2ac98, 0x0, 0x0, - 0xbfeccccccccccbf9, 0x3ff8c04db7e0b0e4, + 0xbfecccccccccccb5, 0x3ff8c04db7e0b082, 0x0, 0x0, - 0xbfecccccccccccae, 0x3ff8aa0038145efa, + 0xbfecccccccccccb6, 0x3ff8aa0038145ef8, 0x0, 0x0, - 0xbfecccccccccccee, 0x3ff893d0a4abcb72, + 0xbfecccccccccccd1, 0x3ff893d0a4abcb9e, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3ff87dbebacc6990, + 0xbfeccccccccccccc, 0x3ff87dbebacc697c, 0x0, 0x0, - 0xbfecccccccccccac, 0x3ff867ca38602c1c, + 0xbfecccccccccccb1, 0x3ff867ca38602c04, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3ff851f2dc12b574, + 0xbfecccccccccccc1, 0x3ff851f2dc12b571, 0x0, 0x0, - 0xbfeccccccccccce5, 0x3ff83c38654e90a0, + 0xbfecccccccccccc9, 0x3ff83c38654e9097, 0x0, 0x0, - 0xbfecccccccccccab, 0x3ff8269a943a7860, + 0xbfeccccccccccca8, 0x3ff8269a943a7846, 0x0, 0x0, - 0xbfeccccccccccc66, 0x3ff8111929b6a8fa, + 0xbfecccccccccccad, 0x3ff8111929b6a897, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3ff7fbb3e75a3efc, + 0xbfecccccccccccd2, 0x3ff7fbb3e75a3f28, 0x0, 0x0, - 0xbfecccccccccccb2, 0x3ff7e66a8f70a10e, + 0xbfecccccccccccd2, 0x3ff7e66a8f70a126, 0x0, 0x0, - 0xbfecccccccccccdd, 0x3ff7d13ce4f6f3de, + 0xbfecccccccccccc4, 0x3ff7d13ce4f6f3bb, 0x0, 0x0, - 0xbfeccccccccccd12, 0x3ff7bc2aab9999f7, + 0xbfecccccccccccc4, 0x3ff7bc2aab9999e2, 0x0, 0x0, - 0xbfecccccccccccba, 0x3ff7a733a7b1bf0d, + 0xbfecccccccccccc7, 0x3ff7a733a7b1bf3b, 0x0, 0x0, - 0xbfecccccccccccce, 0x3ff792579e42eca3, + 0xbfecccccccccccc9, 0x3ff792579e42ecb2, 0x0, 0x0, - 0xbfecccccccccccba, 0x3ff77d9654f8a968, + 0xbfeccccccccccccb, 0x3ff77d9654f8a932, 0x0, 0x0, - 0xbfeccccccccccc8d, 0x3ff768ef9224225d, + 0xbfecccccccccccde, 0x3ff768ef92242212, 0x0, 0x0, - 0xbfecccccccccccbe, 0x3ff754631cb9df17, + 0xbfeccccccccccc8a, 0x3ff754631cb9df33, 0x0, 0x0, - 0xbfecccccccccccb2, 0x3ff73ff0bc4f8028, + 0xbfecccccccccccb4, 0x3ff73ff0bc4f8025, 0x0, 0x0, - 0xbfeccccccccccce7, 0x3ff72b9839198312, + 0xbfecccccccccccc3, 0x3ff72b9839198320, 0x0, 0x0, - 0xbfecccccccccccd9, 0x3ff717595be914d5, + 0xbfecccccccccccf0, 0x3ff717595be9152e, 0x0, 0x0, - 0xbfecccccccccccb1, 0x3ff70333ee29ebee, + 0xbfecccccccccccb8, 0x3ff70333ee29ebee, 0x0, 0x0, - 0xbfeccccccccccd9f, 0x3ff6ef27b9e027e6, + 0xbfecccccccccccc4, 0x3ff6ef27b9e027fc, 0x0, 0x0, - 0xbfeccccccccccd1a, 0x3ff6db3489a64086, + 0xbfecccccccccccde, 0x3ff6db3489a6406a, 0x0, 0x0, - 0xbfeccccccccccc46, 0x3ff6c75a28aaf6d2, + 0xbfeccccccccccc54, 0x3ff6c75a28aaf69b, 0x0, 0x0, - 0xbfecccccccccccb0, 0x3ff6b39862af538c, + 0xbfeccccccccccc8e, 0x3ff6b39862af535b, 0x0, 0x0, - 0xbfeccccccccccc22, 0x3ff69fef0404ab60, + 0xbfeccccccccccceb, 0x3ff69fef0404ab32, 0x0, 0x0, - 0xbfeccccccccccc90, 0x3ff68c5dd98aac62, + 0xbfecccccccccccd3, 0x3ff68c5dd98aac74, 0x0, 0x0, - 0xbfecccccccccccfb, 0x3ff678e4b0ad73c5, + 0xbfeccccccccccce6, 0x3ff678e4b0ad73ce, 0x0, 0x0, - 0xbfeccccccccccca4, 0x3ff665835763a9a0, + 0xbfecccccccccccfe, 0x3ff665835763a9a4, 0x0, 0x0, - 0xbfecccccccccccba, 0x3ff652399c2ca76c, + 0xbfecccccccccccc4, 0x3ff652399c2ca73d, 0x0, 0x0, - 0xbfeccccccccccd17, 0x3ff63f074e0ea32a, + 0xbfeccccccccccccc, 0x3ff63f074e0ea324, 0x0, 0x0, - 0xbfeccccccccccd54, 0x3ff62bec3c94e51a, + 0xbfecccccccccccd5, 0x3ff62bec3c94e4f6, 0x0, 0x0, - 0xbfeccccccccccd0c, 0x3ff618e837ce00de, + 0xbfecccccccccccc5, 0x3ff618e837ce00dc, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3ff605fb104a1a16, + 0xbfecccccccccccc7, 0x3ff605fb104a1a21, 0x0, 0x0, - 0xbfecccccccccccf6, 0x3ff5f32497192cb3, + 0xbfeccccccccccce7, 0x3ff5f32497192cdc, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3ff5e0649dc95e1d, + 0xbfecccccccccccf1, 0x3ff5e0649dc95e2e, 0x0, 0x0, - 0xbfeccccccccccd14, 0x3ff5cdbaf66553c5, + 0xbfecccccccccccb1, 0x3ff5cdbaf66553b7, 0x0, 0x0, - 0xbfeccccccccccd18, 0x3ff5bb27737291bc, + 0xbfeccccccccccc90, 0x3ff5bb2773729190, 0x0, 0x0, - 0xbfeccccccccccd07, 0x3ff5a8a9e7efdfca, + 0xbfecccccccccccf5, 0x3ff5a8a9e7efdf6a, 0x0, 0x0, - 0xbfecccccccccce2d, 0x3ff596422753b205, + 0xbfeccccccccccbc7, 0x3ff596422753b17e, 0x0, 0x0, - 0xbfeccccccccccd01, 0x3ff583f0058a9d98, + 0xbfeccccccccccc0d, 0x3ff583f0058a9d88, 0x0, 0x0, - 0xbfeccccccccccc90, 0x3ff571b356f5ce6a, + 0xbfeccccccccccce6, 0x3ff571b356f5ce46, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3ff55f8bf06983ec, + 0xbfeccccccccccccd, 0x3ff55f8bf06983f2, 0x0, 0x0, - 0xbfeccccccccccc9f, 0x3ff54d79a72b9612, + 0xbfecccccccccccec, 0x3ff54d79a72b9616, 0x0, 0x0, - 0xbfeccccccccccd0b, 0x3ff53b7c50f1fe32, + 0xbfecccccccccccae, 0x3ff53b7c50f1fe50, 0x0, 0x0, - 0xbfeccccccccccd13, 0x3ff52993c3e166d8, + 0xbfecccccccccccd2, 0x3ff52993c3e166bd, 0x0, 0x0, - 0xbfeccccccccccd06, 0x3ff517bfd68bbf10, + 0xbfecccccccccccc2, 0x3ff517bfd68bbf15, 0x0, 0x0, - 0xbfeccccccccccd4d, 0x3ff506005feed71a, + 0xbfecccccccccccc1, 0x3ff506005feed708, 0x0, 0x0, - 0xbfeccccccccccca8, 0x3ff4f4553772feb8, + 0xbfecccccccccccb1, 0x3ff4f4553772fea8, 0x0, 0x0, - 0xbfecccccccccccb7, 0x3ff4e2be34e9aaf7, + 0xbfecccccccccccc8, 0x3ff4e2be34e9aae4, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3ff4d13b308c2066, + 0xbfecccccccccccd4, 0x3ff4d13b308c2076, 0x0, 0x0, - 0xbfecccccccccccca, 0x3ff4bfcc02fa23d0, + 0xbfecccccccccccca, 0x3ff4bfcc02fa23de, 0x0, 0x0, - 0xbfecccccccccccb1, 0x3ff4ae708538adcc, + 0xbfecccccccccccd2, 0x3ff4ae708538adcc, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3ff49d2890b0a595, + 0xbfecccccccccccbd, 0x3ff49d2890b0a58f, 0x0, 0x0, - 0xbfeccccccccccce3, 0x3ff48bf3ff2d9ed2, + 0xbfecccccccccccc5, 0x3ff48bf3ff2d9ee6, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3ff47ad2aadc9e86, + 0xbfeccccccccccc6d, 0x3ff47ad2aadc9e58, 0x0, 0x0, - 0xbfecccccccccccb5, 0x3ff469c46e4ae188, + 0xbfecccccccccccaa, 0x3ff469c46e4ae144, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3ff458c92464aa5e, + 0xbfeccccccccccccf, 0x3ff458c92464aa76, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3ff447e0a874145a, + 0xbfecccccccccccc0, 0x3ff447e0a8741462, 0x0, 0x0, - 0xbfecccccccccccaf, 0x3ff4370ad61fe67b, + 0xbfecccccccccccf4, 0x3ff4370ad61fe669, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3ff42647896a700a, + 0xbfeccccccccccccf, 0x3ff42647896a7002, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3ff415969eb06701, + 0xbfecccccccccccd0, 0x3ff415969eb066f8, 0x0, 0x0, - 0xbfeccccccccccce3, 0x3ff404f7f2a7ca9f, + 0xbfecccccccccccc6, 0x3ff404f7f2a7ca9c, 0x0, 0x0, - 0xbfeccccccccccd1a, 0x3ff3f46b625ecb62, + 0xbfecccccccccccd5, 0x3ff3f46b625ecb39, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3ff3e3f0cb3ab52e, + 0xbfecccccccccccd7, 0x3ff3e3f0cb3ab530, 0x0, 0x0, - 0xbfecccccccccccc0, 0x3ff3d3880af6e0a5, + 0xbfecccccccccccc7, 0x3ff3d3880af6e0b2, 0x0, 0x0, - 0xbfecccccccccccca, 0x3ff3c330ffa3a474, + 0xbfeccccccccccccb, 0x3ff3c330ffa3a46e, 0x0, 0x0, - 0xbfeccccccccccce1, 0x3ff3b2eb87a54e30, + 0xbfeccccccccccca4, 0x3ff3b2eb87a54e26, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3ff3a2b781b31c95, + 0xbfecccccccccccc9, 0x3ff3a2b781b31c94, 0x0, 0x0, - 0xbfecccccccccccf0, 0x3ff39294ccd63f2c, + 0xbfecccccccccccc2, 0x3ff39294ccd63f12, 0x0, 0x0, - 0xbfecccccccccccee, 0x3ff382834868d816, + 0xbfecccccccccccec, 0x3ff382834868d81c, 0x0, 0x0, - 0xbfeccccccccccca9, 0x3ff37282d41503d2, + 0xbfecccccccccccf7, 0x3ff37282d41503c4, 0x0, 0x0, - 0xbfeccccccccccd43, 0x3ff362934fd3e120, + 0xbfeccccccccccca7, 0x3ff362934fd3e163, 0x0, 0x0, - 0xbfecccccccccccf4, 0x3ff352b49beca0d6, + 0xbfeccccccccccce4, 0x3ff352b49beca0e2, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3ff342e698f39437, + 0xbfecccccccccccd0, 0x3ff342e698f39456, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3ff3332927c943ce, + 0xbfecccccccccccc8, 0x3ff3332927c943f2, 0x0, 0x0, - 0xbfecccccccccccee, 0x3ff3237c2999854e, + 0xbfecccccccccccc1, 0x3ff3237c2999854a, 0x0, 0x0, - 0xbfecccccccccccb6, 0x3ff313df7fda9788, + 0xbfecccccccccccd0, 0x3ff313df7fda978a, 0x0, 0x0, - 0xbfecccccccccccda, 0x3ff304530c4c407c, + 0xbfeccccccccccccd, 0x3ff304530c4c4063, 0x0, 0x0, - 0xbfecccccccccccf8, 0x3ff2f4d6b0f6ee90, + 0xbfecccccccccccae, 0x3ff2f4d6b0f6ee71, 0x0, 0x0, - 0xbfecccccccccccba, 0x3ff2e56a502addaa, + 0xbfecccccccccccae, 0x3ff2e56a502add8a, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3ff2d60dcc7f3dd0, + 0xbfecccccccccccd7, 0x3ff2d60dcc7f3dce, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3ff2c6c108d16047, + 0xbfeccccccccccce0, 0x3ff2c6c108d1601e, 0x0, 0x0, - 0xbfecccccccccccd9, 0x3ff2b783e843e1f1, + 0xbfeccccccccccca8, 0x3ff2b783e843e1f2, 0x0, 0x0, - 0xbfecccccccccccb6, 0x3ff2a8564e3ddef8, + 0xbfecccccccccccb7, 0x3ff2a8564e3ddef0, 0x0, 0x0, - 0xbfecccccccccccdf, 0x3ff299381e6a24c1, + 0xbfeccccccccccccd, 0x3ff299381e6a24bd, 0x0, 0x0, - 0xbfeccccccccccd03, 0x3ff28a293cb668b0, + 0xbfecccccccccccae, 0x3ff28a293cb668ae, 0x0, 0x0, - 0xbfecccccccccccdf, 0x3ff27b298d5281a9, + 0xbfeccccccccccca1, 0x3ff27b298d528152, 0x0, 0x0, - 0xbfeccccccccccd2c, 0x3ff26c38f4afa34a, + 0xbfecccccccccccd2, 0x3ff26c38f4afa362, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3ff25d57577f9e50, + 0xbfecccccccccccd1, 0x3ff25d57577f9e46, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3ff24e849ab41f80, + 0xbfecccccccccccd4, 0x3ff24e849ab41f81, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3ff23fc0a37df5a2, + 0xbfecccccccccccb4, 0x3ff23fc0a37df5bb, 0x0, 0x0, - 0xbfecccccccccccda, 0x3ff2310b574c579c, + 0xbfecccccccccccdf, 0x3ff2310b574c57ab, 0x0, 0x0, - 0xbfeccccccccccceb, 0x3ff222649bcc2c89, + 0xbfecccccccccccc8, 0x3ff222649bcc2c85, 0x0, 0x0, - 0xbfeccccccccccd08, 0x3ff213cc56e758b2, + 0xbfecccccccccccb2, 0x3ff213cc56e758b4, 0x0, 0x0, - 0xbfeccccccccccd11, 0x3ff205426ec40b00, + 0xbfecccccccccccc6, 0x3ff205426ec40ab0, 0x0, 0x0, - 0xbfecccccccccccf9, 0x3ff1f6c6c9c40d46, + 0xbfeccccccccccc93, 0x3ff1f6c6c9c40d2a, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3ff1e8594e84178e, + 0xbfecccccccccccda, 0x3ff1e8594e84177d, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3ff1d9f9e3db2519, + 0xbfecccccccccccc9, 0x3ff1d9f9e3db252a, 0x0, 0x0, - 0xbfecccccccccccdd, 0x3ff1cba870d9cc37, + 0xbfeccccccccccca6, 0x3ff1cba870d9cc34, 0x0, 0x0, - 0xbfecccccccccccde, 0x3ff1bd64dcc9979e, + 0xbfecccccccccccd4, 0x3ff1bd64dcc997b6, 0x0, 0x0, - 0xbfeccccccccccd11, 0x3ff1af2f0f2c6280, + 0xbfecccccccccccbf, 0x3ff1af2f0f2c62a6, 0x0, 0x0, - 0xbfecccccccccccfa, 0x3ff1a106efbbb77e, + 0xbfeccccccccccc4a, 0x3ff1a106efbbb760, 0x0, 0x0, - 0xbfeccccccccccdce, 0x3ff192ec66682fd8, + 0xbfeccccccccccbc2, 0x3ff192ec66682fc6, 0x0, 0x0, - 0xbfeccccccccccc8c, 0x3ff184df5b58d6f6, + 0xbfeccccccccccd08, 0x3ff184df5b58d6e7, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3ff176dfb6ea8f04, + 0xbfeccccccccccca7, 0x3ff176dfb6ea8efa, 0x0, 0x0, - 0xbfecccccccccccdd, 0x3ff168ed61af772b, + 0xbfeccccccccccca6, 0x3ff168ed61af773d, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3ff15b08446e54c5, + 0xbfecccccccccccb4, 0x3ff15b08446e54b6, 0x0, 0x0, - 0xbfecccccccccccb9, 0x3ff14d304821fd8c, + 0xbfecccccccccccb2, 0x3ff14d304821fd9e, 0x0, 0x0, - 0xbfecccccccccccb3, 0x3ff13f6555f8c4fa, + 0xbfecccccccccccc0, 0x3ff13f6555f8c4dc, 0x0, 0x0, - 0xbfecccccccccccff, 0x3ff131a75753ea5a, + 0xbfecccccccccccbe, 0x3ff131a75753ea56, 0x0, 0x0, - 0xbfecccccccccccfc, 0x3ff123f635c70a06, + 0xbfecccccccccccc4, 0x3ff123f635c70a0c, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3ff11651db178f92, + 0xbfeccccccccccce8, 0x3ff11651db178f80, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3ff108ba313c2980, + 0xbfecccccccccccc9, 0x3ff108ba313c2973, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3ff0fb2f225c4090, + 0xbfecccccccccccc8, 0x3ff0fb2f225c4094, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3ff0edb098cf6eeb, + 0xbfecccccccccccda, 0x3ff0edb098cf6ef8, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3ff0e03e7f1cf9db, + 0xbfecccccccccccaa, 0x3ff0e03e7f1cf9f6, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3ff0d2d8bffb4e04, + 0xbfecccccccccccdd, 0x3ff0d2d8bffb4e0a, 0x0, 0x0, - 0xbfeccccccccccceb, 0x3ff0c57f464f7b1c, + 0xbfeccccccccccccc, 0x3ff0c57f464f7b36, 0x0, 0x0, - 0xbfecccccccccccc5, 0x3ff0b831fd2cb442, + 0xbfecccccccccccec, 0x3ff0b831fd2cb4b8, 0x0, 0x0, - 0xbfeccccccccccce6, 0x3ff0aaf0cfd3d07e, + 0xbfecccccccccccd2, 0x3ff0aaf0cfd3d0a8, 0x0, 0x0, - 0xbfecccccccccccda, 0x3ff09dbba9b2cb20, + 0xbfecccccccccccda, 0x3ff09dbba9b2cb0c, 0x0, 0x0, - 0xbfecccccccccccec, 0x3ff09092766449a0, + 0xbfecccccccccccc5, 0x3ff090927664498d, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3ff0837521af1fda, + 0xbfecccccccccccfa, 0x3ff0837521af1fe6, 0x0, 0x0, - 0xbfecccccccccccb9, 0x3ff076639785d801, + 0xbfecccccccccccf3, 0x3ff076639785d81b, 0x0, 0x0, - 0xbfecccccccccccc0, 0x3ff0695dc40639eb, + 0xbfecccccccccccbf, 0x3ff0695dc40639dd, 0x0, 0x0, - 0xbfecccccccccccce, 0x3ff05c639378d597, + 0xbfecccccccccccd7, 0x3ff05c639378d5a2, 0x0, 0x0, - 0xbfecccccccccccf8, 0x3ff04f74f2508f2e, + 0xbfeccccccccccc9b, 0x3ff04f74f2508f5e, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3ff04291cd2a2bb5, + 0xbfecccccccccccbc, 0x3ff04291cd2a2b9a, 0x0, 0x0, - 0xbfecccccccccccef, 0x3ff035ba10cbde97, + 0xbfecccccccccccba, 0x3ff035ba10cbdeab, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3ff028edaa24db7b, + 0xbfeccccccccccccd, 0x3ff028edaa24db78, 0x0, 0x0, - 0xbfecccccccccccb8, 0x3ff01c2c864ce59e, + 0xbfecccccccccccd5, 0x3ff01c2c864ce58c, 0x0, 0x0, - 0xbfecccccccccccdf, 0x3ff00f769283e3dc, + 0xbfecccccccccccf3, 0x3ff00f769283e3c1, 0x0, 0x0, - 0xbfeccccccccccd18, 0x3ff002cbbc3173e7, + 0xbfecccccccccccb8, 0x3ff002cbbc3173f8, 0x0, 0x0, - 0xbfecccccccccccfd, 0x3fefec57e1c9013e, + 0xbfecccccccccccd6, 0x3fefec57e1c900fc, 0x0, 0x0, - 0xbfeccccccccccd46, 0x3fefd32e3ca5af1a, + 0xbfeccccccccccc41, 0x3fefd32e3ca5af0c, 0x0, 0x0, - 0xbfeccccccccccd27, 0x3fefba1a64b18480, + 0xbfeccccccccccca0, 0x3fefba1a64b1850a, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fefa11c35f13e38, + 0xbfecccccccccccdd, 0x3fefa11c35f13e34, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fef88338cb4f72a, + 0xbfeccccccccccccc, 0x3fef88338cb4f712, 0x0, 0x0, - 0xbfeccccccccccce2, 0x3fef6f604597619c, + 0xbfeccccccccccca2, 0x3fef6f60459761a9, 0x0, 0x0, - 0xbfeccccccccccc96, 0x3fef56a23d7d0064, + 0xbfecccccccccccaa, 0x3fef56a23d7d0090, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3fef3df9519364d6, + 0xbfecccccccccccb9, 0x3fef3df9519364b4, 0x0, 0x0, - 0xbfecccccccccccda, 0x3fef25655f506bb0, + 0xbfecccccccccccd1, 0x3fef25655f506bec, 0x0, 0x0, - 0xbfeccccccccccd12, 0x3fef0ce6447181d8, + 0xbfeccccccccccca7, 0x3fef0ce644718139, 0x0, 0x0, - 0xbfecccccccccccca, 0x3feef47bdefae3a4, + 0xbfeccccccccccc97, 0x3feef47bdefae40c, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3feedc260d36e8d4, + 0xbfecccccccccccc6, 0x3feedc260d36e8de, 0x0, 0x0, - 0xbfecccccccccccb6, 0x3feec3e4adb5474c, + 0xbfecccccccccccc9, 0x3feec3e4adb5479c, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3feeabb79f4a620c, + 0xbfecccccccccccda, 0x3feeabb79f4a61c8, 0x0, 0x0, - 0xbfecccccccccccdd, 0x3fee939ec10e922c, + 0xbfecccccccccccee, 0x3fee939ec10e91f8, 0x0, 0x0, - 0xbfecccccccccccc0, 0x3fee7b99f25d795c, + 0xbfecccccccccccc5, 0x3fee7b99f25d797a, 0x0, 0x0, - 0xbfecccccccccccf1, 0x3fee63a912d551bc, + 0xbfeccccccccccccd, 0x3fee63a912d551cd, 0x0, 0x0, - 0xbfeccccccccccd30, 0x3fee4bcc02563f90, + 0xbfeccccccccccca0, 0x3fee4bcc02563ff2, 0x0, 0x0, - 0xbfeccccccccccca1, 0x3fee3402a101a9c8, + 0xbfecccccccccccec, 0x3fee3402a101a8f3, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fee1c4ccf398d90, + 0xbfecccccccccccb3, 0x3fee1c4ccf398d82, 0x0, 0x0, - 0xbfecccccccccccd3, 0x3fee04aa6d9fdbe4, + 0xbfecccccccccccc0, 0x3fee04aa6d9fdbda, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3feded1b5d15d240, + 0xbfecccccccccccc3, 0x3feded1b5d15d217, 0x0, 0x0, - 0xbfeccccccccccca5, 0x3fedd59f7ebb5818, + 0xbfeccccccccccccc, 0x3fedd59f7ebb5820, 0x0, 0x0, - 0xbfecccccccccccb9, 0x3fedbe36b3ee5fe0, + 0xbfecccccccccccbc, 0x3fedbe36b3ee5ffe, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3feda6e0de4a4680, + 0xbfecccccccccccf1, 0x3feda6e0de4a4680, 0x0, 0x0, - 0xbfeccccccccccce3, 0x3fed8f9ddfa73720, + 0xbfecccccccccccbf, 0x3fed8f9ddfa73728, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3fed786d9a199178, + 0xbfeccccccccccca4, 0x3fed786d9a1991b8, 0x0, 0x0, - 0xbfecccccccccccfc, 0x3fed614feff14e28, + 0xbfeccccccccccc8c, 0x3fed614feff14e3b, 0x0, 0x0, - 0xbfeccccccccccca9, 0x3fed4a44c3b96950, + 0xbfecccccccccccb0, 0x3fed4a44c3b96977, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fed334bf8374d30, + 0xbfeccccccccccc6c, 0x3fed334bf8374ce9, 0x0, 0x0, - 0xbfeccccccccccd15, 0x3fed1c65706a3bd0, + 0xbfeccccccccccc72, 0x3fed1c65706a3be5, 0x0, 0x0, - 0xbfecccccccccccf1, 0x3fed05910f8ac040, + 0xbfeccccccccccc99, 0x3fed05910f8ac086, 0x0, 0x0, - 0xbfeccccccccccc8c, 0x3feceeceb90a1cc0, + 0xbfeccccccccccccc, 0x3feceeceb90a1da2, 0x0, 0x0, - 0xbfeccccccccccc3c, 0x3fecd81e5091bb00, + 0xbfeccccccccccab2, 0x3fecd81e5091ba77, 0x0, 0x0, - 0xbfecccccccccccb5, 0x3fecc17fba02a075, + 0xbfecccccccccccd2, 0x3fecc17fba02a065, 0x0, 0x0, - 0xbfeccccccccccd5c, 0x3fecaaf2d974e574, + 0xbfeccccccccccd4a, 0x3fecaaf2d974e584, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fec947793372537, + 0xbfecccccccccccc6, 0x3fec94779337257d, 0x0, 0x0, - 0xbfeccccccccccd16, 0x3fec7e0dcbcdfa92, + 0xbfeccccccccccca9, 0x3fec7e0dcbcdfad1, 0x0, 0x0, - 0xbfecccccccccccc1, 0x3fec67b567f378fb, + 0xbfecccccccccccea, 0x3fec67b567f378fc, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fec516e4c96a605, + 0xbfecccccccccccbf, 0x3fec516e4c96a61a, 0x0, 0x0, - 0xbfeccccccccccc90, 0x3fec3b385edaf71f, + 0xbfecccccccccccb2, 0x3fec3b385edaf710, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fec25138417cf86, + 0xbfecccccccccccc4, 0x3fec25138417cf41, 0x0, 0x0, - 0xbfeccccccccccc9a, 0x3fec0effa1d7fe94, + 0xbfeccccccccccd2f, 0x3fec0effa1d7fe55, 0x0, 0x0, - 0xbfeccccccccccce2, 0x3febf8fc9dd94279, + 0xbfecccccccccccda, 0x3febf8fc9dd9424d, 0x0, 0x0, - 0xbfeccccccccccce8, 0x3febe30a5e0bca0a, + 0xbfecccccccccccb7, 0x3febe30a5e0bc9da, 0x0, 0x0, - 0xbfeccccccccccce8, 0x3febcd28c891b8aa, + 0xbfecccccccccccab, 0x3febcd28c891b876, 0x0, 0x0, - 0xbfecccccccccccba, 0x3febb757c3beab24, + 0xbfeccccccccccd08, 0x3febb757c3beab0e, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3feba19736173f96, + 0xbfecccccccccccde, 0x3feba19736173ff0, 0x0, 0x0, - 0xbfeccccccccccca5, 0x3feb8be706509ce1, + 0xbfeccccccccccce0, 0x3feb8be706509cc2, 0x0, 0x0, - 0xbfeccccccccccd46, 0x3feb76471b4ffad0, + 0xbfeccccccccccc72, 0x3feb76471b4ffb13, 0x0, 0x0, - 0xbfecccccccccccf6, 0x3feb60b75c2a3074, + 0xbfecccccccccccab, 0x3feb60b75c2a3088, 0x0, 0x0, - 0xbfecccccccccccc0, 0x3feb4b37b0233ce4, + 0xbfecccccccccccd6, 0x3feb4b37b0233cde, 0x0, 0x0, - 0xbfeccccccccccca7, 0x3feb35c7feadd53e, + 0xbfecccccccccccd8, 0x3feb35c7feadd54d, 0x0, 0x0, - 0xbfeccccccccccd00, 0x3feb20682f6af529, + 0xbfecccccccccccd9, 0x3feb20682f6af556, 0x0, 0x0, - 0xbfecccccccccccbe, 0x3feb0b182a296dce, + 0xbfecccccccccccd0, 0x3feb0b182a296de4, 0x0, 0x0, - 0xbfecccccccccccbf, 0x3feaf5d7d6e57610, + 0xbfecccccccccccce, 0x3feaf5d7d6e57630, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3feae0a71dc83f1c, + 0xbfecccccccccccda, 0x3feae0a71dc83f25, 0x0, 0x0, - 0xbfeccccccccccd01, 0x3feacb85e72786b2, + 0xbfecccccccccccd7, 0x3feacb85e72786d6, 0x0, 0x0, - 0xbfecccccccccccee, 0x3feab6741b852c4b, + 0xbfeccccccccccca5, 0x3feab6741b852c54, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3feaa171a38ec823, + 0xbfecccccccccccd0, 0x3feaa171a38ec82a, 0x0, 0x0, - 0xbfecccccccccccf4, 0x3fea8c7e681d410c, + 0xbfecccccccccccd5, 0x3fea8c7e681d412e, 0x0, 0x0, - 0xbfeccccccccccd13, 0x3fea779a52346650, + 0xbfeccccccccccd05, 0x3fea779a52346644, 0x0, 0x0, - 0xbfecccccccccccf2, 0x3fea62c54b02883c, + 0xbfeccccccccccd03, 0x3fea62c54b02883f, 0x0, 0x0, - 0xbfeccccccccccd23, 0x3fea4dff3be013f6, + 0xbfecccccccccccea, 0x3fea4dff3be01458, 0x0, 0x0, - 0xbfecccccccccccfc, 0x3fea39480e4f2ee8, + 0xbfecccccccccccb6, 0x3fea39480e4f2ea0, 0x0, 0x0, - 0xbfeccccccccccdbc, 0x3fea249fabfb5184, + 0xbfeccccccccccca0, 0x3fea249fabfb5248, 0x0, 0x0, - 0xbfecccccccccccb8, 0x3fea1005feb8eb78, + 0xbfeccccccccccc2a, 0x3fea1005feb8eb5d, 0x0, 0x0, - 0xbfeccccccccccce6, 0x3fe9fb7af084fa0c, + 0xbfecccccccccccc0, 0x3fe9fb7af084fa32, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3fe9e6fe6b84b094, + 0xbfeccccccccccce3, 0x3fe9e6fe6b84b0a4, 0x0, 0x0, - 0xbfecccccccccccec, 0x3fe9d2905a051440, + 0xbfecccccccccccbc, 0x3fe9d2905a051475, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3fe9be30a67aa102, + 0xbfecccccccccccc8, 0x3fe9be30a67aa107, 0x0, 0x0, - 0xbfeccccccccccc88, 0x3fe9a9df3b80ebb1, + 0xbfecccccccccccc2, 0x3fe9a9df3b80ec23, 0x0, 0x0, - 0xbfecccccccccccfb, 0x3fe9959c03da47a8, + 0xbfecccccccccccc2, 0x3fe9959c03da47bf, 0x0, 0x0, - 0xbfeccccccccccd2b, 0x3fe98166ea6f699a, + 0xbfeccccccccccd0a, 0x3fe98166ea6f69df, 0x0, 0x0, - 0xbfeccccccccccc96, 0x3fe96d3fda4f10b9, + 0xbfecccccccccccf4, 0x3fe96d3fda4f111e, 0x0, 0x0, - 0xbfecccccccccccee, 0x3fe95926beadac00, + 0xbfecccccccccccbe, 0x3fe95926beadac78, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fe9451b82e503bc, + 0xbfecccccccccccc3, 0x3fe9451b82e503e0, 0x0, 0x0, - 0xbfecccccccccccaf, 0x3fe9311e1273e0da, + 0xbfeccccccccccce1, 0x3fe9311e1273e0ab, 0x0, 0x0, - 0xbfecccccccccccbe, 0x3fe91d2e58fdb8c5, + 0xbfecccccccccccb8, 0x3fe91d2e58fdb912, 0x0, 0x0, - 0xbfecccccccccccb6, 0x3fe9094c424a5814, + 0xbfecccccccccccbc, 0x3fe9094c424a5852, 0x0, 0x0, - 0xbfeccccccccccc64, 0x3fe8f577ba458e08, + 0xbfecccccccccccc0, 0x3fe8f577ba458e16, 0x0, 0x0, - 0xbfecccccccccccbc, 0x3fe8e1b0acfed8bf, + 0xbfecccccccccccf6, 0x3fe8e1b0acfed8cd, 0x0, 0x0, - 0xbfeccccccccccc5e, 0x3fe8cdf706a91509, + 0xbfeccccccccccd10, 0x3fe8cdf706a91466, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fe8ba4ab39a2916, + 0xbfecccccccccccc8, 0x3fe8ba4ab39a290b, 0x0, 0x0, - 0xbfeccccccccccd18, 0x3fe8a6aba04ab9e8, + 0xbfecccccccccccd6, 0x3fe8a6aba04ab98c, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3fe89319b955d474, + 0xbfecccccccccccb2, 0x3fe89319b955d45c, 0x0, 0x0, - 0xbfeccccccccccd10, 0x3fe87f94eb78a54e, + 0xbfecccccccccccf4, 0x3fe87f94eb78a560, 0x0, 0x0, - 0xbfeccccccccccca7, 0x3fe86c1d2392263e, + 0xbfecccccccccccde, 0x3fe86c1d23922694, 0x0, 0x0, - 0xbfeccccccccccc96, 0x3fe858b24ea2d352, + 0xbfeccccccccccce1, 0x3fe858b24ea2d368, 0x0, 0x0, - 0xbfeccccccccccc2c, 0x3fe8455459cc5c28, + 0xbfecccccccccccc2, 0x3fe8455459cc5cc2, 0x0, 0x0, - 0xbfeccccccccccd28, 0x3fe8320332515d08, + 0xbfeccccccccccca0, 0x3fe8320332515cc8, 0x0, 0x0, - 0xbfeccccccccccc90, 0x3fe81ebec5950c2c, + 0xbfeccccccccccce1, 0x3fe81ebec5950c2e, 0x0, 0x0, - 0xbfeccccccccccca5, 0x3fe80b87011af92e, + 0xbfeccccccccccce4, 0x3fe80b87011af961, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fe7f85bd286bc9a, + 0xbfeccccccccccce3, 0x3fe7f85bd286bcb9, 0x0, 0x0, - 0xbfeccccccccccce4, 0x3fe7e53d279bb2c3, + 0xbfecccccccccccd6, 0x3fe7e53d279bb2ef, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fe7d22aee3cb2b4, + 0xbfecccccccccccf6, 0x3fe7d22aee3cb2de, 0x0, 0x0, - 0xbfecccccccccccf4, 0x3fe7bf25146bc820, + 0xbfecccccccccccb8, 0x3fe7bf25146bc862, 0x0, 0x0, - 0xbfeccccccccccdf5, 0x3fe7ac2b8849ec8a, + 0xbfeccccccccccd13, 0x3fe7ac2b8849ee10, 0x0, 0x0, - 0xbfeccccccccccc30, 0x3fe7993e3816c42d, + 0xbfecccccccccccec, 0x3fe7993e3816c432, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fe7865d12305189, + 0xbfecccccccccccde, 0x3fe7865d12305194, 0x0, 0x0, - 0xbfeccccccccccce6, 0x3fe773880512bc82, + 0xbfecccccccccccba, 0x3fe773880512bcb4, 0x0, 0x0, - 0xbfeccccccccccd04, 0x3fe760beff580675, + 0xbfecccccccccccb4, 0x3fe760beff5806b8, 0x0, 0x0, - 0xbfecccccccccccde, 0x3fe74e01efb7cb27, + 0xbfeccccccccccce6, 0x3fe74e01efb7cb22, 0x0, 0x0, - 0xbfecccccccccccc1, 0x3fe73b50c506fd2c, + 0xbfeccccccccccce2, 0x3fe73b50c506fd4c, 0x0, 0x0, - 0xbfeccccccccccd4d, 0x3fe728ab6e37a63e, + 0xbfecccccccccccde, 0x3fe728ab6e37a638, 0x0, 0x0, - 0xbfeccccccccccdde, 0x3fe71611da58a4ee, + 0xbfecccccccccccd8, 0x3fe71611da58a517, 0x0, 0x0, - 0xbfecccccccccccac, 0x3fe70383f8956df8, + 0xbfeccccccccccd04, 0x3fe70383f8956e17, 0x0, 0x0, - 0xbfecccccccccccda, 0x3fe6f101b835cbe4, + 0xbfecccccccccccd6, 0x3fe6f101b835cbc8, 0x0, 0x0, - 0xbfeccccccccccceb, 0x3fe6de8b089da11e, + 0xbfecccccccccccd8, 0x3fe6de8b089da0fb, 0x0, 0x0, - 0xbfecccccccccccaa, 0x3fe6cc1fd94ca927, + 0xbfecccccccccccc7, 0x3fe6cc1fd94ca900, 0x0, 0x0, - 0xbfecccccccccccb9, 0x3fe6b9c019de3bba, + 0xbfeccccccccccc9c, 0x3fe6b9c019de3ba0, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3fe6a76bba091022, + 0xbfecccccccccccc0, 0x3fe6a76bba091010, 0x0, 0x0, - 0xbfeccccccccccca9, 0x3fe69522a99efff1, + 0xbfeccccccccccce2, 0x3fe69522a99effe8, 0x0, 0x0, - 0xbfecccccccccccb0, 0x3fe682e4d88cccb1, + 0xbfeccccccccccd11, 0x3fe682e4d88cccb6, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fe670b236d9e41c, + 0xbfecccccccccccd6, 0x3fe670b236d9e41e, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3fe65e8ab4a82618, + 0xbfecccccccccccc1, 0x3fe65e8ab4a82608, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fe64c6e4233aab0, + 0xbfecccccccccccc2, 0x3fe64c6e4233aa97, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fe63a5ccfd2886e, + 0xbfecccccccccccd3, 0x3fe63a5ccfd28888, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3fe628564df49d15, + 0xbfeccccccccccce0, 0x3fe628564df49d16, 0x0, 0x0, - 0xbfecccccccccccd9, 0x3fe6165aad2353f0, + 0xbfeccccccccccccb, 0x3fe6165aad2353aa, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3fe60469de016e58, + 0xbfecccccccccccbf, 0x3fe60469de016e96, 0x0, 0x0, - 0xbfeccccccccccd26, 0x3fe5f283d14acf06, + 0xbfeccccccccccd0c, 0x3fe5f283d14acec8, 0x0, 0x0, - 0xbfeccccccccccc83, 0x3fe5e0a877d440e0, + 0xbfecccccccccccd6, 0x3fe5e0a877d4412a, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fe5ced7c28b4188, + 0xbfecccccccccccbb, 0x3fe5ced7c28b4185, 0x0, 0x0, - 0xbfeccccccccccca3, 0x3fe5bd11a275cd3f, + 0xbfeccccccccccce2, 0x3fe5bd11a275cd51, 0x0, 0x0, - 0xbfecccccccccccd3, 0x3fe5ab5608b2298a, + 0xbfeccccccccccc85, 0x3fe5ab5608b229a8, 0x0, 0x0, - 0xbfeccccccccccca4, 0x3fe599a4e676b023, + 0xbfeccccccccccca3, 0x3fe599a4e676b048, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fe587fe2d119c36, + 0xbfecccccccccccf9, 0x3fe587fe2d119c4d, 0x0, 0x0, - 0xbfeccccccccccd1f, 0x3fe57661cde8d644, + 0xbfeccccccccccc98, 0x3fe57661cde8d66e, 0x0, 0x0, - 0xbfeccccccccccda1, 0x3fe564cfba79c11a, + 0xbfeccccccccccd05, 0x3fe564cfba79c278, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fe55347e4590ae9, + 0xbfeccccccccccd37, 0x3fe55347e4590b1a, 0x0, 0x0, - 0xbfecccccccccccb0, 0x3fe541ca3d32741b, + 0xbfecccccccccccd9, 0x3fe541ca3d327436, 0x0, 0x0, - 0xbfecccccccccccdf, 0x3fe53056b6c8a5bb, + 0xbfecccccccccccba, 0x3fe53056b6c8a59a, 0x0, 0x0, - 0xbfecccccccccccb9, 0x3fe51eed42f4fbc4, + 0xbfecccccccccccc5, 0x3fe51eed42f4fbda, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3fe50d8dd3a757f8, + 0xbfeccccccccccd01, 0x3fe50d8dd3a757f3, 0x0, 0x0, - 0xbfeccccccccccca5, 0x3fe4fc385ae5eeec, + 0xbfeccccccccccce3, 0x3fe4fc385ae5eede, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fe4eaeccacd1aa1, + 0xbfecccccccccccda, 0x3fe4eaeccacd1aa8, 0x0, 0x0, - 0xbfeccccccccccc9d, 0x3fe4d9ab158f2b5e, + 0xbfeccccccccccce5, 0x3fe4d9ab158f2b4e, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fe4c8732d74381e, + 0xbfeccccccccccc87, 0x3fe4c8732d7437f6, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3fe4b74504d9f131, + 0xbfecccccccccccd1, 0x3fe4b74504d9f126, 0x0, 0x0, - 0xbfecccccccccccaf, 0x3fe4a6208e3372b9, + 0xbfecccccccccccb8, 0x3fe4a6208e3372bc, 0x0, 0x0, - 0xbfeccccccccccce7, 0x3fe49505bc091786, + 0xbfeccccccccccd0f, 0x3fe49505bc09179a, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fe483f480f84b71, + 0xbfeccccccccccca0, 0x3fe483f480f84b74, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fe472eccfb36034, + 0xbfecccccccccccc8, 0x3fe472eccfb3604f, 0x0, 0x0, - 0xbfecccccccccccf8, 0x3fe461ee9b0160c1, + 0xbfecccccccccccaf, 0x3fe461ee9b0160df, 0x0, 0x0, - 0xbfecccccccccccfb, 0x3fe450f9d5bde57b, + 0xbfeccccccccccce3, 0x3fe450f9d5bde60b, 0x0, 0x0, - 0xbfecccccccccccb1, 0x3fe4400e72d8eac0, + 0xbfeccccccccccccd, 0x3fe4400e72d8ea80, 0x0, 0x0, - 0xbfecccccccccccbd, 0x3fe42f2c6556a484, + 0xbfeccccccccccccf, 0x3fe42f2c6556a462, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3fe41e53a04f536b, + 0xbfeccccccccccccd, 0x3fe41e53a04f5389, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fe40d8416ef1e64, + 0xbfecccccccccccdc, 0x3fe40d8416ef1e25, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3fe3fcbdbc75e4f4, + 0xbfecccccccccccfd, 0x3fe3fcbdbc75e4f0, 0x0, 0x0, - 0xbfecccccccccccdd, 0x3fe3ec0084371980, + 0xbfecccccccccccd8, 0x3fe3ec008437196a, 0x0, 0x0, - 0xbfecccccccccccb4, 0x3fe3db4c6199962e, + 0xbfeccccccccccccc, 0x3fe3db4c61999624, 0x0, 0x0, - 0xbfecccccccccccfb, 0x3fe3caa148177624, + 0xbfecccccccccccd8, 0x3fe3caa148177654, 0x0, 0x0, - 0xbfeccccccccccc97, 0x3fe3b9ff2b3ded7a, + 0xbfecccccccccccca, 0x3fe3b9ff2b3ded54, 0x0, 0x0, - 0xbfecccccccccccb0, 0x3fe3a965fead200c, + 0xbfecccccccccccb5, 0x3fe3a965fead2021, 0x0, 0x0, - 0xbfeccccccccccc95, 0x3fe398d5b617fcb4, + 0xbfecccccccccccc8, 0x3fe398d5b617fcb2, 0x0, 0x0, - 0xbfecccccccccccad, 0x3fe3884e454414b0, + 0xbfecccccccccccac, 0x3fe3884e454414aa, 0x0, 0x0, - 0xbfeccccccccccc91, 0x3fe377cfa0097594, + 0xbfecccccccccccdc, 0x3fe377cfa00975a6, 0x0, 0x0, - 0xbfeccccccccccc69, 0x3fe36759ba528418, + 0xbfecccccccccccd3, 0x3fe36759ba52843a, 0x0, 0x0, - 0xbfeccccccccccc5c, 0x3fe356ec881bd3e0, + 0xbfecccccccccccb8, 0x3fe356ec881bd4ff, 0x0, 0x0, - 0xbfecccccccccca3c, 0x3fe34687fd740800, + 0xbfeccccccccccd35, 0x3fe34687fd740901, 0x0, 0x0, - 0xbfecccccccccccf5, 0x3fe3362c0e7ba14f, + 0xbfeccccccccccca7, 0x3fe3362c0e7ba219, 0x0, 0x0, - 0xbfecccccccccccb4, 0x3fe325d8af64ee36, + 0xbfeccccccccccc88, 0x3fe325d8af64ee3c, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fe3158dd473cf16, + 0xbfecccccccccccc9, 0x3fe3158dd473cf23, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fe3054b71fda345, + 0xbfecccccccccccd7, 0x3fe3054b71fda34c, 0x0, 0x0, - 0xbfeccccccccccceb, 0x3fe2f5117c691dee, + 0xbfeccccccccccccf, 0x3fe2f5117c691daa, 0x0, 0x0, - 0xbfecccccccccccda, 0x3fe2e4dfe82e23eb, + 0xbfeccccccccccccd, 0x3fe2e4dfe82e23ec, 0x0, 0x0, - 0xbfeccccccccccce8, 0x3fe2d4b6a9d5aa12, + 0xbfecccccccccccbe, 0x3fe2d4b6a9d5aa1a, 0x0, 0x0, - 0xbfecccccccccccb8, 0x3fe2c495b5f990a7, + 0xbfecccccccccccf5, 0x3fe2c495b5f9905e, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3fe2b47d01448120, + 0xbfeccccccccccce5, 0x3fe2b47d01448180, 0x0, 0x0, - 0xbfecccccccccccf0, 0x3fe2a46c8071cd76, + 0xbfecccccccccccd0, 0x3fe2a46c8071cda3, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3fe29464284d4df2, + 0xbfecccccccccccdd, 0x3fe29464284d4e0e, 0x0, 0x0, - 0xbfecccccccccccfc, 0x3fe28463edb33e44, + 0xbfeccccccccccce9, 0x3fe28463edb33e16, 0x0, 0x0, - 0xbfecccccccccccb6, 0x3fe2746bc5901d0c, + 0xbfecccccccccccdf, 0x3fe2746bc5901d42, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fe2647ba4e08c31, + 0xbfecccccccccccc2, 0x3fe2647ba4e08c6b, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fe2549380b12f31, + 0xbfecccccccccccf8, 0x3fe2549380b12f03, 0x0, 0x0, - 0xbfeccccccccccced, 0x3fe244b34e1e89d6, + 0xbfeccccccccccc8c, 0x3fe244b34e1e894d, 0x0, 0x0, - 0xbfecccccccccccf7, 0x3fe234db0254e291, + 0xbfeccccccccccd33, 0x3fe234db0254e233, 0x0, 0x0, - 0xbfecccccccccccfc, 0x3fe2250a929020ab, + 0xbfecccccccccccd9, 0x3fe2250a929020b6, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fe21541f41bae74, + 0xbfecccccccccccd6, 0x3fe21541f41bae81, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3fe205811c525925, + 0xbfecccccccccccf2, 0x3fe205811c5258ec, 0x0, 0x0, - 0xbfecccccccccccf6, 0x3fe1f5c8009e3157, + 0xbfeccccccccccc9c, 0x3fe1f5c8009e314b, 0x0, 0x0, - 0xbfecccccccccccaf, 0x3fe1e61696786e13, + 0xbfecccccccccccbe, 0x3fe1e61696786df4, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fe1d66cd3694dcf, + 0xbfecccccccccccd6, 0x3fe1d66cd3694db8, 0x0, 0x0, - 0xbfeccccccccccc9c, 0x3fe1c6caad07f81b, + 0xbfecccccccccccc9, 0x3fe1c6caad07f7d9, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fe1b73018fa5f35, + 0xbfecccccccccccb3, 0x3fe1b73018fa5f12, 0x0, 0x0, - 0xbfecccccccccccb4, 0x3fe1a79d0cf52433, + 0xbfecccccccccccdf, 0x3fe1a79d0cf52426, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fe198117ebb78f0, + 0xbfecccccccccccc5, 0x3fe198117ebb78da, 0x0, 0x0, - 0xbfeccccccccccc97, 0x3fe1888d641f0250, + 0xbfecccccccccccea, 0x3fe1888d641f0257, 0x0, 0x0, - 0xbfeccccccccccc86, 0x3fe17910b2ffbc63, + 0xbfeccccccccccca4, 0x3fe17910b2ffbc94, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3fe1699b614bddea, + 0xbfecccccccccccd6, 0x3fe1699b614bde06, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3fe15a2d64ffbafe, + 0xbfecccccccccccd2, 0x3fe15a2d64ffbb68, 0x0, 0x0, - 0xbfeccccccccccbea, 0x3fe14ac6b425aac8, + 0xbfeccccccccccc38, 0x3fe14ac6b425abc8, 0x0, 0x0, - 0xbfecccccccccccb0, 0x3fe13b6744d5ea89, + 0xbfeccccccccccd75, 0x3fe13b6744d5eb0b, 0x0, 0x0, - 0xbfeccccccccccced, 0x3fe12c0f0d368394, + 0xbfecccccccccccc3, 0x3fe12c0f0d36837f, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fe11cbe037b2ba6, + 0xbfecccccccccccf4, 0x3fe11cbe037b2b9d, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fe10d741de5300e, + 0xbfeccccccccccc80, 0x3fe10d741de5301e, 0x0, 0x0, - 0xbfecccccccccccf6, 0x3fe0fe3152c3573c, + 0xbfecccccccccccf8, 0x3fe0fe3152c35761, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fe0eef59871c61a, + 0xbfecccccccccccd2, 0x3fe0eef59871c630, 0x0, 0x0, - 0xbfecccccccccccb8, 0x3fe0dfc0e559e762, + 0xbfecccccccccccb7, 0x3fe0dfc0e559e76b, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fe0d0932ff24fda, + 0xbfeccccccccccd12, 0x3fe0d0932ff24fbd, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3fe0c16c6ebea584, + 0xbfeccccccccccced, 0x3fe0c16c6ebea584, 0x0, 0x0, - 0xbfeccccccccccc8d, 0x3fe0b24c984f8584, + 0xbfeccccccccccccb, 0x3fe0b24c984f858a, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fe0a333a3426b1d, + 0xbfeccccccccccccc, 0x3fe0a333a3426b2d, 0x0, 0x0, - 0xbfeccccccccccca2, 0x3fe09421864195c8, + 0xbfeccccccccccca2, 0x3fe09421864195b8, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fe085163803f02b, + 0xbfecccccccccccfd, 0x3fe085163803f022, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3fe07611af4cf8d4, + 0xbfecccccccccccde, 0x3fe07611af4cf8ce, 0x0, 0x0, - 0xbfecccccccccccb4, 0x3fe06713e2eca758, + 0xbfeccccccccccccb, 0x3fe06713e2eca70f, 0x0, 0x0, - 0xbfeccccccccccc8b, 0x3fe0581cc9bf5594, + 0xbfeccccccccccce2, 0x3fe0581cc9bf5598, 0x0, 0x0, - 0xbfecccccccccccae, 0x3fe0492c5aada778, + 0xbfecccccccccccfa, 0x3fe0492c5aada7ae, 0x0, 0x0, - 0xbfecccccccccccb8, 0x3fe03a428cac71ca, + 0xbfecccccccccccc2, 0x3fe03a428cac71da, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fe02b5f56bca40a, + 0xbfecccccccccccb6, 0x3fe02b5f56bca3f0, 0x0, 0x0, - 0xbfecccccccccccec, 0x3fe01c82afeb2f22, + 0xbfecccccccccccc1, 0x3fe01c82afeb2f3f, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fe00dac8f50f010, + 0xbfecccccccccccbf, 0x3fe00dac8f50f057, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fdffdb9d8252f2e, + 0xbfecccccccccccd8, 0x3fdffdb9d8252eee, 0x0, 0x0, - 0xbfecccccccccccf3, 0x3fdfe0277ac1238c, + 0xbfecccccccccccd9, 0x3fdfe0277ac123a2, 0x0, 0x0, - 0xbfeccccccccccd5a, 0x3fdfc2a1f4ede586, + 0xbfecccccccccccc4, 0x3fdfc2a1f4ede5f4, 0x0, 0x0, - 0xbfecccccccccccbb, 0x3fdfa529353abb44, + 0xbfeccccccccccc96, 0x3fdfa529353abb42, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fdf87bd2a4ddcac, + 0xbfeccccccccccca8, 0x3fdf87bd2a4ddc30, 0x0, 0x0, - 0xbfeccccccccccca4, 0x3fdf6a5dc2e446f6, + 0xbfecccccccccccc7, 0x3fdf6a5dc2e44626, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3fdf4d0aedd191d4, + 0xbfeccccccccccd03, 0x3fdf4d0aedd19140, 0x0, 0x0, - 0xbfecccccccccccad, 0x3fdf2fc499ffc3fc, + 0xbfecccccccccccc7, 0x3fdf2fc499ffc3f4, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fdf128ab66f265a, + 0xbfecccccccccccd4, 0x3fdf128ab66f25ec, 0x0, 0x0, - 0xbfeccccccccccc9c, 0x3fdef55d323618a0, + 0xbfeccccccccccccd, 0x3fdef55d3236193c, 0x0, 0x0, - 0xbfeccccccccccd84, 0x3fded83bfc80e9ec, + 0xbfeccccccccccd1d, 0x3fded83bfc80e8aa, 0x0, 0x0, - 0xbfeccccccccccc7f, 0x3fdebb270491a8da, + 0xbfeccccccccccc90, 0x3fdebb270491a8b0, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fde9e1e39c00426, + 0xbfeccccccccccce9, 0x3fde9e1e39c00454, 0x0, 0x0, - 0xbfecccccccccccea, 0x3fde81218b79121e, + 0xbfecccccccccccbc, 0x3fde81218b791204, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3fde6430e93f33cc, + 0xbfeccccccccccd03, 0x3fde6430e93f33d2, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fde474c42a9e63c, + 0xbfecccccccccccdb, 0x3fde474c42a9e622, 0x0, 0x0, - 0xbfeccccccccccc8d, 0x3fde2a7387659ca4, + 0xbfeccccccccccce8, 0x3fde2a7387659d20, 0x0, 0x0, - 0xbfecccccccccccfa, 0x3fde0da6a733967e, + 0xbfeccccccccccce6, 0x3fde0da6a7339744, 0x0, 0x0, - 0xbfeccccccccccd8f, 0x3fddf0e591e9b7c4, + 0xbfeccccccccccca8, 0x3fddf0e591e9b8c4, 0x0, 0x0, - 0xbfecccccccccccb2, 0x3fddd43037726372, + 0xbfeccccccccccce8, 0x3fddd43037726366, 0x0, 0x0, - 0xbfecccccccccccbd, 0x3fddb78687cc4fa4, + 0xbfecccccccccccc0, 0x3fddb78687cc4fee, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3fdd9ae8730a637e, + 0xbfeccccccccccce7, 0x3fdd9ae8730a6404, 0x0, 0x0, - 0xbfecccccccccccf4, 0x3fdd7e55e9538f14, + 0xbfecccccccccccc6, 0x3fdd7e55e9538f40, 0x0, 0x0, - 0xbfeccccccccccca2, 0x3fdd61cedae2a494, + 0xbfecccccccccccd1, 0x3fdd61cedae2a3dc, 0x0, 0x0, - 0xbfeccccccccccca3, 0x3fdd455338063048, + 0xbfeccccccccccce1, 0x3fdd455338063098, 0x0, 0x0, - 0xbfeccccccccccced, 0x3fdd28e2f120585c, + 0xbfeccccccccccce6, 0x3fdd28e2f1205910, 0x0, 0x0, - 0xbfeccccccccccd27, 0x3fdd0c7df6a6b346, + 0xbfeccccccccccc8e, 0x3fdd0c7df6a6b364, 0x0, 0x0, - 0xbfeccccccccccd19, 0x3fdcf024392221a4, + 0xbfecccccccccccbe, 0x3fdcf024392221ac, 0x0, 0x0, - 0xbfecccccccccccdd, 0x3fdcd3d5a92eb080, + 0xbfecccccccccccb8, 0x3fdcd3d5a92eaff4, 0x0, 0x0, - 0xbfecccccccccccc1, 0x3fdcb792377b67f4, + 0xbfecccccccccccc1, 0x3fdcb792377b6860, 0x0, 0x0, - 0xbfeccccccccccce3, 0x3fdc9b59d4ca36c0, + 0xbfecccccccccccea, 0x3fdc9b59d4ca36c4, 0x0, 0x0, - 0xbfecccccccccccdd, 0x3fdc7f2c71efc122, + 0xbfeccccccccccccd, 0x3fdc7f2c71efc16c, 0x0, 0x0, - 0xbfecccccccccccda, 0x3fdc6309ffd345ec, + 0xbfecccccccccccd0, 0x3fdc6309ffd34644, 0x0, 0x0, - 0xbfeccccccccccca9, 0x3fdc46f26f6e756c, + 0xbfeccccccccccce3, 0x3fdc46f26f6e764c, 0x0, 0x0, - 0xbfeccccccccccc3f, 0x3fdc2ae5b1cd50ac, + 0xbfecccccccccccad, 0x3fdc2ae5b1cd53f8, 0x0, 0x0, - 0xbfecccccccccccbf, 0x3fdc0ee3b80e0f28, + 0xbfeccccccccccca9, 0x3fdc0ee3b80e0eaa, 0x0, 0x0, - 0xbfeccccccccccce2, 0x3fdbf2ec7360e31a, + 0xbfeccccccccccce7, 0x3fdbf2ec7360e3ca, 0x0, 0x0, - 0xbfeccccccccccce2, 0x3fdbd6ffd507f6f8, + 0xbfecccccccccccda, 0x3fdbd6ffd507f6ec, 0x0, 0x0, - 0xbfecccccccccccda, 0x3fdbbb1dce5735b4, + 0xbfeccccccccccccf, 0x3fdbbb1dce5735ba, 0x0, 0x0, - 0xbfecccccccccccec, 0x3fdb9f4650b43276, + 0xbfeccccccccccca7, 0x3fdb9f4650b4328c, 0x0, 0x0, - 0xbfecccccccccccf1, 0x3fdb83794d960260, + 0xbfecccccccccccd1, 0x3fdb83794d9601e2, 0x0, 0x0, - 0xbfeccccccccccc8f, 0x3fdb67b6b6852158, + 0xbfecccccccccccdc, 0x3fdb67b6b6852034, 0x0, 0x0, - 0xbfeccccccccccd10, 0x3fdb4bfe7d1b474a, + 0xbfecccccccccccf0, 0x3fdb4bfe7d1b4678, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fdb305093035482, + 0xbfecccccccccccca, 0x3fdb3050930353a4, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fdb14ace9f92608, + 0xbfeccccccccccce2, 0x3fdb14ace9f924f0, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3fdaf91373c97ab8, + 0xbfecccccccccccd7, 0x3fdaf91373c97a3c, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fdadd842251d2c2, + 0xbfeccccccccccce0, 0x3fdadd842251d2f4, 0x0, 0x0, - 0xbfecccccccccccf0, 0x3fdac1fee78050f4, + 0xbfecccccccccccd1, 0x3fdac1fee7805106, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3fdaa683b55396ec, + 0xbfecccccccccccdb, 0x3fdaa683b553977e, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3fda8b127ddaac0c, + 0xbfecccccccccccb1, 0x3fda8b127ddaacc8, 0x0, 0x0, - 0xbfeccccccccccd5f, 0x3fda6fab3334d854, + 0xbfecccccccccccb3, 0x3fda6fab3334dab6, 0x0, 0x0, - 0xbfecccccccccccad, 0x3fda544dc79190d4, + 0xbfeccccccccccd07, 0x3fda544dc79190ca, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3fda38fa2d304540, + 0xbfecccccccccccba, 0x3fda38fa2d30457c, 0x0, 0x0, - 0xbfecccccccccccaf, 0x3fda1db05660562c, + 0xbfecccccccccccdd, 0x3fda1db05660562e, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fda02703580eaf8, + 0xbfecccccccccccd2, 0x3fda02703580eb00, 0x0, 0x0, - 0xbfecccccccccccb8, 0x3fd9e739bd00da64, + 0xbfeccccccccccd1d, 0x3fd9e739bd00da98, 0x0, 0x0, - 0xbfeccccccccccc77, 0x3fd9cc0cdf5e8854, + 0xbfecccccccccccbe, 0x3fd9cc0cdf5e8864, 0x0, 0x0, - 0xbfeccccccccccc5b, 0x3fd9b0e98f27cac6, + 0xbfecccccccccccdf, 0x3fd9b0e98f27cb18, 0x0, 0x0, - 0xbfeccccccccccbc1, 0x3fd995cfbef9cc82, + 0xbfeccccccccccd28, 0x3fd995cfbef9ccde, 0x0, 0x0, - 0xbfecccccccccccb7, 0x3fd97abf6180f0fc, + 0xbfecccccccccccb3, 0x3fd97abf6180f052, 0x0, 0x0, - 0xbfeccccccccccc67, 0x3fd95fb86978b618, + 0xbfecccccccccccd4, 0x3fd95fb86978b574, 0x0, 0x0, - 0xbfecccccccccccf5, 0x3fd944bac9ab95ca, + 0xbfecccccccccccce, 0x3fd944bac9ab95dc, 0x0, 0x0, - 0xbfeccccccccccc92, 0x3fd929c674f2f1b6, + 0xbfeccccccccccccf, 0x3fd929c674f2f100, 0x0, 0x0, - 0xbfeccccccccccce4, 0x3fd90edb5e36edb2, + 0xbfeccccccccccce9, 0x3fd90edb5e36ed30, 0x0, 0x0, - 0xbfecccccccccccab, 0x3fd8f3f9786e5904, + 0xbfecccccccccccc7, 0x3fd8f3f9786e5870, 0x0, 0x0, - 0xbfeccccccccccc86, 0x3fd8d920b69e922c, + 0xbfecccccccccccf4, 0x3fd8d920b69e924c, 0x0, 0x0, - 0xbfeccccccccccc6c, 0x3fd8be510bdb6cb4, + 0xbfecccccccccccac, 0x3fd8be510bdb6d5c, 0x0, 0x0, - 0xbfecccccccccccf4, 0x3fd8a38a6b4712e2, + 0xbfecccccccccccbf, 0x3fd8a38a6b471314, 0x0, 0x0, - 0xbfecccccccccccf8, 0x3fd888ccc811ebac, + 0xbfecccccccccccfb, 0x3fd888ccc811eb40, 0x0, 0x0, - 0xbfecccccccccccfa, 0x3fd86e18157a80b8, + 0xbfeccccccccccccf, 0x3fd86e18157a8030, 0x0, 0x0, - 0xbfeccccccccccd21, 0x3fd8536c46cd65bc, + 0xbfeccccccccccd09, 0x3fd8536c46cd6560, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3fd838c94f65199c, + 0xbfeccccccccccca7, 0x3fd838c94f651990, 0x0, 0x0, - 0xbfeccccccccccd00, 0x3fd81e2f22a9ee80, + 0xbfecccccccccccd6, 0x3fd81e2f22a9ede0, 0x0, 0x0, - 0xbfecccccccccccad, 0x3fd8039db411f336, + 0xbfeccccccccccd41, 0x3fd8039db411f0e0, 0x0, 0x0, - 0xbfeccccccccccb92, 0x3fd7e914f720d344, + 0xbfeccccccccccdf1, 0x3fd7e914f720cdc0, 0x0, 0x0, - 0xbfeccccccccccc14, 0x3fd7ce94df67b2f0, + 0xbfeccccccccccdcb, 0x3fd7ce94df67b1aa, 0x0, 0x0, - 0xbfecccccccccccae, 0x3fd7b41d60853e14, + 0xbfeccccccccccc96, 0x3fd7b41d60853e92, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3fd799ae6e2562c4, + 0xbfecccccccccccc8, 0x3fd799ae6e2563d8, 0x0, 0x0, - 0xbfeccccccccccc95, 0x3fd77f47fc0149e8, + 0xbfeccccccccccce8, 0x3fd77f47fc014a02, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fd764e9fddf3d32, + 0xbfecccccccccccc1, 0x3fd764e9fddf3cb8, 0x0, 0x0, - 0xbfeccccccccccd02, 0x3fd74a9467929038, + 0xbfecccccccccccdc, 0x3fd74a9467929012, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fd730472cfb8648, + 0xbfecccccccccccbd, 0x3fd730472cfb8628, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3fd71602420738c0, + 0xbfecccccccccccf8, 0x3fd7160242073838, 0x0, 0x0, - 0xbfecccccccccccc5, 0x3fd6fbc59aaf8152, + 0xbfeccccccccccce4, 0x3fd6fbc59aaf8112, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3fd6e1912afadf90, + 0xbfecccccccccccdb, 0x3fd6e1912afadfd2, 0x0, 0x0, - 0xbfecccccccccccb1, 0x3fd6c764e6fc6328, + 0xbfecccccccccccdc, 0x3fd6c764e6fc6306, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3fd6ad40c2d39236, + 0xbfecccccccccccb9, 0x3fd6ad40c2d3920a, 0x0, 0x0, - 0xbfecccccccccccb8, 0x3fd69324b2ac5290, + 0xbfeccccccccccc9d, 0x3fd69324b2ac52bc, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fd67910aabed468, + 0xbfeccccccccccce9, 0x3fd67910aabed3f8, 0x0, 0x0, - 0xbfeccccccccccca6, 0x3fd65f049f4f75e8, + 0xbfecccccccccccc9, 0x3fd65f049f4f75f4, 0x0, 0x0, - 0xbfeccccccccccd54, 0x3fd6450084aeb320, + 0xbfecccccccccccd0, 0x3fd6450084aeb2be, 0x0, 0x0, - 0xbfecccccccccccd9, 0x3fd62b044f3908e8, + 0xbfeccccccccccd23, 0x3fd62b044f3908e6, 0x0, 0x0, - 0xbfecccccccccccf3, 0x3fd6110ff356e1bc, + 0xbfecccccccccccce, 0x3fd6110ff356e158, 0x0, 0x0, - 0xbfeccccccccccc93, 0x3fd5f723657c7df8, + 0xbfecccccccccccc9, 0x3fd5f723657c7d54, 0x0, 0x0, - 0xbfecccccccccccbb, 0x3fd5dd3e9a29dcfc, + 0xbfecccccccccccab, 0x3fd5dd3e9a29dcc4, 0x0, 0x0, - 0xbfeccccccccccca6, 0x3fd5c36185eaa90c, + 0xbfecccccccccccd5, 0x3fd5c36185eaa87c, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3fd5a98c1d561ec8, + 0xbfeccccccccccccf, 0x3fd5a98c1d561e78, 0x0, 0x0, - 0xbfecccccccccccae, 0x3fd58fbe550ef790, + 0xbfecccccccccccce, 0x3fd58fbe550ef798, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fd575f821c35618, + 0xbfeccccccccccca6, 0x3fd575f821c355fc, 0x0, 0x0, - 0xbfeccccccccccce2, 0x3fd55c39782cad80, + 0xbfeccccccccccc9a, 0x3fd55c39782cad84, 0x0, 0x0, - 0xbfecccccccccccc5, 0x3fd542824d0fad30, + 0xbfecccccccccccaa, 0x3fd542824d0fad28, 0x0, 0x0, - 0xbfecccccccccccec, 0x3fd528d2953c2d10, + 0xbfecccccccccccd4, 0x3fd528d2953c2cf8, 0x0, 0x0, - 0xbfeccccccccccce7, 0x3fd50f2a458d157c, + 0xbfecccccccccccd1, 0x3fd50f2a458d15ac, 0x0, 0x0, - 0xbfecccccccccccec, 0x3fd4f58952e84d24, + 0xbfecccccccccccb3, 0x3fd4f58952e84c58, 0x0, 0x0, - 0xbfecccccccccccff, 0x3fd4dbefb23ea008, + 0xbfecccccccccccc3, 0x3fd4dbefb23ea000, 0x0, 0x0, - 0xbfecccccccccccfe, 0x3fd4c25d588bb000, + 0xbfecccccccccccb8, 0x3fd4c25d588bb024, 0x0, 0x0, - 0xbfeccccccccccd03, 0x3fd4a8d23ad5dad8, + 0xbfeccccccccccca5, 0x3fd4a8d23ad5dc30, 0x0, 0x0, - 0xbfecccccccccccab, 0x3fd48f4e4e2e2c30, + 0xbfeccccccccccca9, 0x3fd48f4e4e2e2db0, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3fd475d187b043c0, + 0xbfecccccccccccc3, 0x3fd475d187b04344, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fd45c5bdc823d0c, + 0xbfecccccccccccdb, 0x3fd45c5bdc823d10, 0x0, 0x0, - 0xbfecccccccccccde, 0x3fd442ed41d4a8ec, + 0xbfecccccccccccc1, 0x3fd442ed41d4a91c, 0x0, 0x0, - 0xbfecccccccccccde, 0x3fd42985ace26dac, + 0xbfecccccccccccdc, 0x3fd42985ace26d28, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fd4102512f0b710, + 0xbfecccccccccccc0, 0x3fd4102512f0b6e8, 0x0, 0x0, - 0xbfecccccccccccbe, 0x3fd3f6cb694ee328, + 0xbfecccccccccccba, 0x3fd3f6cb694ee3a8, 0x0, 0x0, - 0xbfeccccccccccca4, 0x3fd3dd78a556702c, + 0xbfecccccccccccca, 0x3fd3dd78a55670a8, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3fd3c42cbc6ae3e0, + 0xbfecccccccccccc1, 0x3fd3c42cbc6ae3e8, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fd3aae7a3f9bd40, + 0xbfecccccccccccd7, 0x3fd3aae7a3f9bd30, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fd391a9517a6010, + 0xbfecccccccccccbe, 0x3fd391a9517a5fb8, 0x0, 0x0, - 0xbfeccccccccccced, 0x3fd37871ba6e005c, + 0xbfecccccccccccf3, 0x3fd37871ba6e0090, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3fd35f40d45f9020, + 0xbfeccccccccccccf, 0x3fd35f40d45f904c, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fd3461694e3af80, + 0xbfecccccccccccbf, 0x3fd3461694e3aff8, 0x0, 0x0, - 0xbfeccccccccccc8c, 0x3fd32cf2f1989530, + 0xbfecccccccccccb1, 0x3fd32cf2f1989598, 0x0, 0x0, - 0xbfeccccccccccd0b, 0x3fd313d5e025ff7c, + 0xbfeccccccccccc31, 0x3fd313d5e025fe10, 0x0, 0x0, - 0xbfecccccccccccbe, 0x3fd2fabf563d1c90, + 0xbfeccccccccccc81, 0x3fd2fabf563d1be8, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fd2e1af4998819c, + 0xbfecccccccccccc4, 0x3fd2e1af499881ac, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fd2c8a5affc1144, + 0xbfecccccccccccd5, 0x3fd2c8a5affc10f8, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fd2afa27f34e9fc, + 0xbfeccccccccccca9, 0x3fd2afa27f34ea00, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3fd296a5ad1956b4, + 0xbfeccccccccccce3, 0x3fd296a5ad195750, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fd27daf2f88bc64, + 0xbfecccccccccccdb, 0x3fd27daf2f88bc60, 0x0, 0x0, - 0xbfeccccccccccc99, 0x3fd264befc6b8548, + 0xbfecccccccccccc7, 0x3fd264befc6b852c, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3fd24bd509b3132c, + 0xbfeccccccccccce3, 0x3fd24bd509b313b8, 0x0, 0x0, - 0xbfecccccccccccbb, 0x3fd232f14d59ac08, + 0xbfecccccccccccbb, 0x3fd232f14d59abdc, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fd21a13bd62696c, + 0xbfecccccccccccc7, 0x3fd21a13bd6269b4, 0x0, 0x0, - 0xbfecccccccccccdd, 0x3fd2013c4fd925e0, + 0xbfecccccccccccdd, 0x3fd2013c4fd925fc, 0x0, 0x0, - 0xbfecccccccccccb8, 0x3fd1e86afad26bdc, + 0xbfecccccccccccc4, 0x3fd1e86afad26ba8, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fd1cf9fb46b66bc, + 0xbfeccccccccccce3, 0x3fd1cf9fb46b66d4, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fd1b6da72c9ce10, + 0xbfeccccccccccd0e, 0x3fd1b6da72c9ce80, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fd19e1b2c1bd978, + 0xbfeccccccccccc89, 0x3fd19e1b2c1bd9ec, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fd18561d6982d00, + 0xbfeccccccccccbcd, 0x3fd18561d6982be4, 0x0, 0x0, - 0xbfeccccccccccd0f, 0x3fd16cae687dc538, + 0xbfeccccccccccc41, 0x3fd16cae687dc570, 0x0, 0x0, - 0xbfecccccccccccf0, 0x3fd15400d813ee28, + 0xbfeccccccccccce3, 0x3fd15400d813ee04, 0x0, 0x0, - 0xbfeccccccccccce6, 0x3fd13b591baa2d78, + 0xbfecccccccccccd2, 0x3fd13b591baa2d68, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fd122b7299832e0, + 0xbfecccccccccccc1, 0x3fd122b729983270, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3fd10a1af83dc85c, + 0xbfeccccccccccce9, 0x3fd10a1af83dc88c, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fd0f1847e02c38c, + 0xbfecccccccccccd2, 0x3fd0f1847e02c358, 0x0, 0x0, - 0xbfecccccccccccda, 0x3fd0d8f3b156f1e4, + 0xbfecccccccccccdb, 0x3fd0d8f3b156f1f0, 0x0, 0x0, - 0xbfeccccccccccd52, 0x3fd0c06888b20c68, + 0xbfeccccccccccd1f, 0x3fd0c06888b20c40, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3fd0a7e2fa93a4e8, + 0xbfeccccccccccd05, 0x3fd0a7e2fa93a5b4, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3fd08f62fd8319d0, + 0xbfecccccccccccc2, 0x3fd08f62fd831a44, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3fd076e8880f81e0, + 0xbfecccccccccccc6, 0x3fd076e8880f8214, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fd05e7390cf9f24, + 0xbfecccccccccccdc, 0x3fd05e7390cf9fbc, 0x0, 0x0, - 0xbfeccccccccccce5, 0x3fd046040e61d0f4, + 0xbfecccccccccccb6, 0x3fd046040e61d0c0, 0x0, 0x0, - 0xbfecccccccccccbf, 0x3fd02d99f76c0060, + 0xbfecccccccccccb2, 0x3fd02d99f76c0050, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fd01535429b93c0, + 0xbfecccccccccccde, 0x3fd01535429b941c, 0x0, 0x0, - 0xbfeccccccccccd3e, 0x3fcff9abcd4abf08, + 0xbfeccccccccccc60, 0x3fcff9abcd4ac1b0, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3fcfc8f7b48b2e70, + 0xbfecccccccccccec, 0x3fcfc8f7b48b3038, 0x0, 0x0, - 0xbfecccccccccccb2, 0x3fcf984e287f77e8, + 0xbfecccccccccccc4, 0x3fcf984e287f77d0, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3fcf67af16bd1c68, + 0xbfecccccccccccc0, 0x3fcf67af16bd1c50, 0x0, 0x0, - 0xbfeccccccccccc8a, 0x3fcf371a6ce803f0, + 0xbfeccccccccccccc, 0x3fcf371a6ce803c0, 0x0, 0x0, - 0xbfecccccccccccde, 0x3fcf069018b25890, + 0xbfecccccccccccd9, 0x3fcf069018b25898, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fced61007dc6de0, + 0xbfecccccccccccc7, 0x3fced61007dc6d48, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3fcea59a28349ec0, + 0xbfecccccccccccde, 0x3fcea59a28349e68, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fce752e679733a0, + 0xbfecccccccccccd8, 0x3fce752e67973480, 0x0, 0x0, - 0xbfeccccccccccca8, 0x3fce44ccb3ee4ad8, + 0xbfecccccccccccbe, 0x3fce44ccb3ee4960, 0x0, 0x0, - 0xbfecccccccccccd3, 0x3fce1474fb31a8f8, + 0xbfecccccccccccc4, 0x3fce1474fb31a8e8, 0x0, 0x0, - 0xbfecccccccccccb5, 0x3fcde4272b66b630, + 0xbfecccccccccccc6, 0x3fcde4272b66b6b8, 0x0, 0x0, - 0xbfecccccccccccee, 0x3fcdb3e332a04e90, + 0xbfecccccccccccca, 0x3fcdb3e332a04fa8, 0x0, 0x0, - 0xbfecccccccccccaa, 0x3fcd83a8fefeaac0, + 0xbfecccccccccccc7, 0x3fcd83a8fefeac88, 0x0, 0x0, - 0xbfeccccccccccc8d, 0x3fcd53787eaf4710, + 0xbfecccccccccccd8, 0x3fcd53787eaf4880, 0x0, 0x0, - 0xbfeccccccccccc5e, 0x3fcd23519fecc540, + 0xbfeccccccccccccc, 0x3fcd23519fecc7a8, 0x0, 0x0, - 0xbfeccccccccccbd6, 0x3fccf33450fecb60, + 0xbfeccccccccccce4, 0x3fccf33450fed078, 0x0, 0x0, - 0xbfeccccccccccd00, 0x3fccc3208039fe10, + 0xbfeccccccccccc67, 0x3fccc3208039fff0, 0x0, 0x0, - 0xbfecccccccccccc5, 0x3fcc93161bffba98, + 0xbfeccccccccccccf, 0x3fcc93161bffba58, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3fcc631512be24d8, + 0xbfecccccccccccbf, 0x3fcc631512be2468, 0x0, 0x0, - 0xbfecccccccccccbf, 0x3fcc331d52effb10, + 0xbfecccccccccccbf, 0x3fcc331d52effa88, 0x0, 0x0, - 0xbfeccccccccccd11, 0x3fcc032ecb1c78c0, + 0xbfeccccccccccce4, 0x3fcc032ecb1c7860, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3fcbd34969d73fe0, + 0xbfecccccccccccb6, 0x3fcbd34969d74070, 0x0, 0x0, - 0xbfeccccccccccca9, 0x3fcba36d1dc03d38, + 0xbfeccccccccccce2, 0x3fcba36d1dc03ca8, 0x0, 0x0, - 0xbfeccccccccccd0b, 0x3fcb7399d58389e8, + 0xbfeccccccccccc8d, 0x3fcb7399d5838c50, 0x0, 0x0, - 0xbfecccccccccccf6, 0x3fcb43cf7fd95c60, + 0xbfeccccccccccc8b, 0x3fcb43cf7fd95d40, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3fcb140e0b85daa0, + 0xbfecccccccccccd1, 0x3fcb140e0b85dae8, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3fcae45567591150, + 0xbfeccccccccccccc, 0x3fcae45567591240, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fcab4a5822ed428, + 0xbfecccccccccccd5, 0x3fcab4a5822ed430, 0x0, 0x0, - 0xbfecccccccccccf1, 0x3fca84fe4aeea000, + 0xbfecccccccccccff, 0x3fca84fe4aee9f70, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fca555fb08b8410, + 0xbfeccccccccccce2, 0x3fca555fb08b8468, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3fca25c9a20409d0, + 0xbfecccccccccccc7, 0x3fca25c9a20409d0, 0x0, 0x0, - 0xbfeccccccccccd0b, 0x3fc9f63c0e621890, + 0xbfecccccccccccad, 0x3fc9f63c0e6217c0, 0x0, 0x0, - 0xbfecccccccccccec, 0x3fc9c6b6e4bad898, + 0xbfeccccccccccc9f, 0x3fc9c6b6e4bad7a0, 0x0, 0x0, - 0xbfecccccccccccfb, 0x3fc9973a142ea988, + 0xbfecccccccccccbc, 0x3fc9973a142ea8a0, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fc967c58be8eec0, + 0xbfecccccccccccc0, 0x3fc967c58be8eed0, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3fc938593b201098, + 0xbfecccccccccccef, 0x3fc938593b2011e8, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fc908f511155380, + 0xbfecccccccccccde, 0x3fc908f511155420, 0x0, 0x0, - 0xbfeccccccccccd00, 0x3fc8d998fd14c2a0, + 0xbfecccccccccccb9, 0x3fc8d998fd14c2c8, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3fc8aa44ee751940, + 0xbfecccccccccccd0, 0x3fc8aa44ee7518f0, 0x0, 0x0, - 0xbfeccccccccccd06, 0x3fc87af8d497a5c0, + 0xbfecccccccccccfc, 0x3fc87af8d497a710, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fc84bb49ee83bc0, + 0xbfecccccccccccde, 0x3fc84bb49ee83c00, 0x0, 0x0, - 0xbfeccccccccccce5, 0x3fc81c783cdd0b10, + 0xbfecccccccccccb9, 0x3fc81c783cdd0a90, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fc7ed439df69410, + 0xbfecccccccccccdf, 0x3fc7ed439df69330, 0x0, 0x0, - 0xbfeccccccccccca6, 0x3fc7be16b1bf8b90, + 0xbfeccccccccccc97, 0x3fc7be16b1bf8be0, 0x0, 0x0, - 0xbfeccccccccccd10, 0x3fc78ef167ccc4b0, + 0xbfeccccccccccc7d, 0x3fc78ef167ccc4a0, 0x0, 0x0, - 0xbfeccccccccccd12, 0x3fc75fd3afbd1820, + 0xbfecccccccccccb4, 0x3fc75fd3afbd1680, 0x0, 0x0, - 0xbfeccccccccccd45, 0x3fc730bd79394100, + 0xbfeccccccccccd00, 0x3fc730bd79394220, 0x0, 0x0, - 0xbfeccccccccccd3a, 0x3fc701aeb3f3e2e0, + 0xbfeccccccccccc9b, 0x3fc701aeb3f3dd40, 0x0, 0x0, - 0xbfeccccccccccc5e, 0x3fc6d2a74fa94ba0, + 0xbfecccccccccce06, 0x3fc6d2a74fa94960, 0x0, 0x0, - 0xbfecccccccccccbb, 0x3fc6a3a73c1f6e70, + 0xbfeccccccccccc7a, 0x3fc6a3a73c1f6d60, 0x0, 0x0, - 0xbfecccccccccccbb, 0x3fc674ae6925e1a0, + 0xbfecccccccccccbd, 0x3fc674ae6925e1a0, 0x0, 0x0, - 0xbfeccccccccccce1, 0x3fc645bcc695a390, + 0xbfeccccccccccceb, 0x3fc645bcc695a3c0, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fc616d244511400, + 0xbfecccccccccccfd, 0x3fc616d244511400, 0x0, 0x0, - 0xbfecccccccccccae, 0x3fc5e7eed243dcc0, + 0xbfecccccccccccde, 0x3fc5e7eed243dd50, 0x0, 0x0, - 0xbfeccccccccccc92, 0x3fc5b9126062d980, + 0xbfecccccccccccce, 0x3fc5b9126062d9e0, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fc58a3cdeac0030, + 0xbfecccccccccccd7, 0x3fc58a3cdeabffd0, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fc55b6e3d2649a0, + 0xbfeccccccccccc85, 0x3fc55b6e3d264900, 0x0, 0x0, - 0xbfecccccccccccda, 0x3fc52ca66be1a170, + 0xbfeccccccccccccd, 0x3fc52ca66be1a0d0, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3fc4fde55af6c2e0, + 0xbfecccccccccccc8, 0x3fc4fde55af6c310, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fc4cf2afa872f60, + 0xbfecccccccccccb0, 0x3fc4cf2afa872f60, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fc4a0773abd0f60, + 0xbfeccccccccccc8b, 0x3fc4a0773abd0fd0, 0x0, 0x0, - 0xbfeccccccccccced, 0x3fc471ca0bcb2010, + 0xbfecccccccccccc0, 0x3fc471ca0bcb2030, 0x0, 0x0, - 0xbfeccccccccccce5, 0x3fc443235dec9a90, + 0xbfeccccccccccccb, 0x3fc443235dec9a80, 0x0, 0x0, - 0xbfeccccccccccc6e, 0x3fc4148321652160, + 0xbfeccccccccccd38, 0x3fc4148321652020, 0x0, 0x0, - 0xbfeccccccccccd0b, 0x3fc3e5e94680a5f0, + 0xbfecccccccccccd9, 0x3fc3e5e94680a6c0, 0x0, 0x0, - 0xbfeccccccccccd08, 0x3fc3b755bd935660, + 0xbfeccccccccccccb, 0x3fc3b755bd935790, 0x0, 0x0, - 0xbfecccccccccccbe, 0x3fc388c876f98850, + 0xbfecccccccccccbe, 0x3fc388c876f987c0, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fc35a4163179aa0, + 0xbfecccccccccccc3, 0x3fc35a4163179b70, 0x0, 0x0, - 0xbfecccccccccccb3, 0x3fc32bc07259ed20, + 0xbfecccccccccccf5, 0x3fc32bc07259edc0, 0x0, 0x0, - 0xbfeccccccccccc8e, 0x3fc2fd459534c040, + 0xbfecccccccccccdf, 0x3fc2fd459534c1a0, 0x0, 0x0, - 0xbfecccccccccccaa, 0x3fc2ced0bc2425f0, + 0xbfecccccccccccd6, 0x3fc2ced0bc2425b0, 0x0, 0x0, - 0xbfecccccccccccde, 0x3fc2a061d7abe6b0, + 0xbfecccccccccccac, 0x3fc2a061d7abe4a0, 0x0, 0x0, - 0xbfecccccccccccb6, 0x3fc271f8d8576bf0, + 0xbfeccccccccccc9e, 0x3fc271f8d8576c00, 0x0, 0x0, - 0xbfeccccccccccd1b, 0x3fc24395aeb9b770, + 0xbfecccccccccccdf, 0x3fc24395aeb9b8a0, 0x0, 0x0, - 0xbfecccccccccccb4, 0x3fc215384b6d3f40, + 0xbfeccccccccccccb, 0x3fc215384b6d3fe0, 0x0, 0x0, - 0xbfeccccccccccd15, 0x3fc1e6e09f13dcd0, + 0xbfecccccccccccd7, 0x3fc1e6e09f13dd80, 0x0, 0x0, - 0xbfecccccccccccb2, 0x3fc1b88e9a56b9f0, + 0xbfecccccccccccfc, 0x3fc1b88e9a56bc00, 0x0, 0x0, - 0xbfeccccccccccd17, 0x3fc18a422de63d40, + 0xbfeccccccccccce2, 0x3fc18a422de63f90, 0x0, 0x0, - 0xbfecccccccccccb5, 0x3fc15bfb4a79f2c0, + 0xbfeccccccccccc9a, 0x3fc15bfb4a79f350, 0x0, 0x0, - 0xbfecccccccccce29, 0x3fc12db9e0d06cb0, + 0xbfeccccccccccc72, 0x3fc12db9e0d07470, 0x0, 0x0, - 0xbfecccccccccccf7, 0x3fc0ff7de1af5700, + 0xbfeccccccccccc53, 0x3fc0ff7de1af5460, 0x0, 0x0, - 0xbfecccccccccccb5, 0x3fc0d1473de31a40, + 0xbfecccccccccccb6, 0x3fc0d1473de31cf0, 0x0, 0x0, - 0xbfeccccccccccd0c, 0x3fc0a315e63f1c50, + 0xbfecccccccccccba, 0x3fc0a315e63f1b10, 0x0, 0x0, - 0xbfeccccccccccc01, 0x3fc074e9cb9d5c60, + 0xbfecccccccccccc8, 0x3fc074e9cb9d5f90, 0x0, 0x0, - 0xbfecccccccccccb9, 0x3fc046c2dedea780, + 0xbfeccccccccccce1, 0x3fc046c2dedea770, 0x0, 0x0, - 0xbfeccccccccccbe0, 0x3fc018a110ea42e0, + 0xbfecccccccccccb6, 0x3fc018a110ea44b0, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3fbfd508a55c1200, + 0xbfecccccccccccd5, 0x3fbfd508a55c1140, 0x0, 0x0, - 0xbfeccccccccccb96, 0x3fbf78d92a3c66a0, + 0xbfeccccccccccccb, 0x3fbf78d92a3c6900, 0x0, 0x0, - 0xbfecccccccccccfd, 0x3fbf1cb3926ac040, + 0xbfeccccccccccd14, 0x3fbf1cb3926ac1a0, 0x0, 0x0, - 0xbfeccccccccccc09, 0x3fbec097bfe8daa0, + 0xbfeccccccccccccd, 0x3fbec097bfe8d780, 0x0, 0x0, - 0xbfeccccccccccca6, 0x3fbe648594c4ce20, + 0xbfecccccccccccc2, 0x3fbe648594c4cea0, 0x0, 0x0, - 0xbfeccccccccccc5b, 0x3fbe087cf3190200, + 0xbfecccccccccccea, 0x3fbe087cf318fc20, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fbdac7dbd0bd000, + 0xbfecccccccccccc7, 0x3fbdac7dbd0bcf20, 0x0, 0x0, - 0xbfeccccccccccc75, 0x3fbd5087d4cfa0c0, + 0xbfecccccccccccdd, 0x3fbd5087d4cf9ea0, 0x0, 0x0, - 0xbfecccccccccccb8, 0x3fbcf49b1ca285a0, + 0xbfecccccccccccca, 0x3fbcf49b1ca28420, 0x0, 0x0, - 0xbfeccccccccccd03, 0x3fbc98b776ce3e80, + 0xbfeccccccccccccb, 0x3fbc98b776ce3900, 0x0, 0x0, - 0xbfeccccccccccd00, 0x3fbc3cdcc5a7ebe0, + 0xbfecccccccccccc2, 0x3fbc3cdcc5a7e820, 0x0, 0x0, - 0xbfeccccccccccd1c, 0x3fbbe10aeb900de0, + 0xbfecccccccccccdd, 0x3fbbe10aeb900e40, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fbb8541caf24a00, + 0xbfecccccccccccd2, 0x3fbb8541caf24a00, 0x0, 0x0, - 0xbfeccccccccccc7b, 0x3fbb298146453f80, + 0xbfecccccccccccc0, 0x3fbb298146453e40, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fbacdc9400a6540, + 0xbfecccccccccccd5, 0x3fbacdc9400a6460, 0x0, 0x0, - 0xbfeccccccccccc97, 0x3fba72199acde4e0, + 0xbfeccccccccccccb, 0x3fba72199acde5a0, 0x0, 0x0, - 0xbfecccccccccccaf, 0x3fba167239267ea0, + 0xbfecccccccccccc9, 0x3fba167239268020, 0x0, 0x0, - 0xbfeccccccccccca1, 0x3fb9bad2fdb54ee0, + 0xbfecccccccccccc7, 0x3fb9bad2fdb54f40, 0x0, 0x0, - 0xbfeccccccccccd08, 0x3fb95f3bcb25b440, + 0xbfeccccccccccd1e, 0x3fb95f3bcb25b6c0, 0x0, 0x0, - 0xbfeccccccccccca4, 0x3fb903ac842d2080, + 0xbfecccccccccccd5, 0x3fb903ac842d2040, 0x0, 0x0, - 0xbfecccccccccccb0, 0x3fb8a8250b8b0180, + 0xbfecccccccccccdb, 0x3fb8a8250b8b0200, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fb84ca544088e00, + 0xbfecccccccccccf3, 0x3fb84ca544088c80, 0x0, 0x0, - 0xbfecccccccccccaf, 0x3fb7f12d1078a080, + 0xbfeccccccccccce4, 0x3fb7f12d1078a100, 0x0, 0x0, - 0xbfecccccccccccb2, 0x3fb795bc53b79980, + 0xbfecccccccccccb7, 0x3fb795bc53b79a00, 0x0, 0x0, - 0xbfeccccccccccc6d, 0x3fb73a52f0ab3240, + 0xbfeccccccccccce2, 0x3fb73a52f0ab3840, 0x0, 0x0, - 0xbfeccccccccccc7f, 0x3fb6def0ca425f40, + 0xbfecccccccccccda, 0x3fb6def0ca426800, 0x0, 0x0, - 0xbfeccccccccccd18, 0x3fb68395c3752000, + 0xbfeccccccccccc8e, 0x3fb68395c3752540, 0x0, 0x0, - 0xbfeccccccccccd01, 0x3fb62841bf446100, + 0xbfeccccccccccce7, 0x3fb62841bf446000, 0x0, 0x0, - 0xbfecccccccccccf3, 0x3fb5ccf4a0b9d040, + 0xbfeccccccccccce4, 0x3fb5ccf4a0b9cf40, 0x0, 0x0, - 0xbfeccccccccccc97, 0x3fb571ae4ae7c340, + 0xbfeccccccccccce8, 0x3fb571ae4ae7c380, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fb5166ea0e90600, + 0xbfeccccccccccca5, 0x3fb5166ea0e903c0, 0x0, 0x0, - 0xbfecccccccccccb7, 0x3fb4bb3585e0bd40, + 0xbfecccccccccccad, 0x3fb4bb3585e0bac0, 0x0, 0x0, - 0xbfeccccccccccc8e, 0x3fb46002dcfa3a80, + 0xbfecccccccccccd6, 0x3fb46002dcfa3a80, 0x0, 0x0, - 0xbfeccccccccccc36, 0x3fb404d68968e6c0, + 0xbfeccccccccccc84, 0x3fb404d68968e6c0, 0x0, 0x0, - 0xbfeccccccccccd00, 0x3fb3a9b06e680a00, + 0xbfecccccccccccb3, 0x3fb3a9b06e680800, 0x0, 0x0, - 0xbfecccccccccccda, 0x3fb34e906f3aa7c0, + 0xbfecccccccccccf0, 0x3fb34e906f3aa800, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fb2f3766f2b7500, + 0xbfecccccccccccdc, 0x3fb2f3766f2b7580, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3fb29862518c9380, + 0xbfeccccccccccccb, 0x3fb29862518c94c0, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fb23d53f9b78000, + 0xbfeccccccccccc74, 0x3fb23d53f9b77f80, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fb1e24b4b0cdf00, + 0xbfecccccccccccd4, 0x3fb1e24b4b0ce000, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fb1874828f46d80, + 0xbfecccccccccccb4, 0x3fb1874828f46e40, 0x0, 0x0, - 0xbfeccccccccccc51, 0x3fb12c4a76dccc40, + 0xbfecccccccccccab, 0x3fb12c4a76dcc800, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fb0d152183b5900, + 0xbfeccccccccccc65, 0x3fb0d152183b5700, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fb0765ef08c2080, + 0xbfecccccccccccdc, 0x3fb0765ef08c2040, 0x0, 0x0, - 0xbfeccccccccccca8, 0x3fb01b70e3519cc0, + 0xbfecccccccccccc2, 0x3fb01b70e3519d00, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3faf810fa8295c00, + 0xbfecccccccccccf9, 0x3faf810fa8295780, 0x0, 0x0, - 0xbfeccccccccccd07, 0x3faecb474cc8ae80, + 0xbfecccccccccccfa, 0x3faecb474cc8af80, 0x0, 0x0, - 0xbfecccccccccccda, 0x3fae15887bab7a80, + 0xbfecccccccccccd7, 0x3fae15887bab7d00, 0x0, 0x0, - 0xbfecccccccccccf4, 0x3fad5fd2fc07d180, + 0xbfecccccccccccc3, 0x3fad5fd2fc07d100, 0x0, 0x0, - 0xbfeccccccccccd0c, 0x3facaa26951f6000, + 0xbfeccccccccccd00, 0x3facaa26951f4f80, 0x0, 0x0, - 0xbfeccccccccccd0b, 0x3fabf4830e3efa80, + 0xbfecccccccccccbd, 0x3fabf4830e3ef900, 0x0, 0x0, - 0xbfeccccccccccca9, 0x3fab3ee82ebeb080, + 0xbfecccccccccccd7, 0x3fab3ee82ebeaf80, 0x0, 0x0, - 0xbfecccccccccccb4, 0x3faa8955be012800, + 0xbfecccccccccccc6, 0x3faa8955be012600, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fa9d3cb83738a00, + 0xbfecccccccccccc7, 0x3fa9d3cb83738700, 0x0, 0x0, - 0xbfeccccccccccc9b, 0x3fa91e49468d2200, + 0xbfecccccccccccb7, 0x3fa91e49468d1f00, 0x0, 0x0, - 0xbfecccccccccccb6, 0x3fa868cececf3200, + 0xbfeccccccccccceb, 0x3fa868cececf2f00, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3fa7b35be3c49400, + 0xbfecccccccccccd1, 0x3fa7b35be3c49300, 0x0, 0x0, - 0xbfeccccccccccbf0, 0x3fa6fdf04d017c00, + 0xbfeccccccccccbc5, 0x3fa6fdf04d016a00, 0x0, 0x0, - 0xbfecccccccccccab, 0x3fa6488bd2234200, + 0xbfeccccccccccc8a, 0x3fa6488bd2233b00, 0x0, 0x0, - 0xbfecccccccccccbe, 0x3fa5932e3acfda00, + 0xbfecccccccccccba, 0x3fa5932e3acfd700, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fa4ddd74eb60500, + 0xbfecccccccccccd1, 0x3fa4ddd74eb60500, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fa42886d58c9e00, + 0xbfecccccccccccd9, 0x3fa42886d58c9e00, 0x0, 0x0, - 0xbfeccccccccccd06, 0x3fa3733c97127800, + 0xbfeccccccccccce6, 0x3fa3733c97127c00, 0x0, 0x0, - 0xbfecccccccccccdd, 0x3fa2bdf85b0e2600, + 0xbfecccccccccccda, 0x3fa2bdf85b0e2a00, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fa208b9e94dae00, + 0xbfeccccccccccca4, 0x3fa208b9e94db000, 0x0, 0x0, - 0xbfeccccccccccc9a, 0x3fa1538109a62e00, + 0xbfeccccccccccccf, 0x3fa1538109a63100, 0x0, 0x0, - 0xbfeccccccccccd0e, 0x3fa09e4d83f3c000, + 0xbfeccccccccccd00, 0x3fa09e4d83f3c200, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3f9fd23e40320200, + 0xbfeccccccccccce8, 0x3f9fd23e40320000, 0x0, 0x0, - 0xbfeccccccccccce2, 0x3f9e67eb4bfdf200, + 0xbfecccccccccccd3, 0x3f9e67eb4bfdee00, 0x0, 0x0, - 0xbfecccccccccccaf, 0x3f9cfda1bb296e00, + 0xbfecccccccccccc3, 0x3f9cfda1bb296800, 0x0, 0x0, - 0xbfecccccccccccd9, 0x3f9b93611d9e4400, + 0xbfeccccccccccd08, 0x3f9b93611d9e4000, 0x0, 0x0, - 0xbfeccccccccccce4, 0x3f9a292903514400, + 0xbfecccccccccccbb, 0x3f9a292903513e00, 0x0, 0x0, - 0xbfeccccccccccce5, 0x3f98bef8fc41c000, + 0xbfecccccccccccd0, 0x3f98bef8fc41bc00, 0x0, 0x0, - 0xbfecccccccccccb0, 0x3f9754d09878f400, + 0xbfecccccccccccda, 0x3f9754d098791000, 0x0, 0x0, - 0xbfeccccccccccd09, 0x3f95eaaf6809d000, + 0xbfeccccccccccd05, 0x3f95eaaf6809e400, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3f948094fb0fd800, + 0xbfecccccccccccbf, 0x3f948094fb0fe000, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3f931680e1af0800, + 0xbfecccccccccccc3, 0x3f931680e1af0c00, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3f91ac72ac132400, + 0xbfeccccccccccd1e, 0x3f91ac72ac132c00, 0x0, 0x0, - 0xbfecccccccccccdd, 0x3f904269ea6f5400, + 0xbfecccccccccccbe, 0x3f904269ea6f5400, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3f8db0cc59faa000, + 0xbfeccccccccccce7, 0x3f8db0cc59faa800, 0x0, 0x0, - 0xbfeccccccccccce2, 0x3f8adcce07fa4800, + 0xbfeccccccccccce9, 0x3f8adcce07fa4800, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3f8808d7ff68d000, + 0xbfecccccccccccc5, 0x3f8808d7ff68d000, 0x0, 0x0, - 0xbfecccccccccccc5, 0x3f8534e960dbd000, + 0xbfecccccccccccee, 0x3f8534e960dbc000, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3f8261014cf1e000, + 0xbfecccccccccccdc, 0x3f8261014cf1d000, 0x0, 0x0, - 0xbfecccccccccccf9, 0x3f7f1a3dc8a36000, + 0xbfecccccccccccc4, 0x3f7f1a3dc8a3a000, 0x0, 0x0, - 0xbfeccccccccccd05, 0x3f7972828f528000, + 0xbfeccccccccccd06, 0x3f7972828f528000, 0x0, 0x0, - 0xbfeccccccccccd05, 0x3f73cacf2f57c000, + 0xbfeccccccccccccf, 0x3f73cacf2f578000, 0x0, 0x0, - 0xbfeccccccccccd31, 0x3f6c4643d4488000, + 0xbfecccccccccccb1, 0x3f6c4643d4498000, 0x0, 0x0, - 0xbfeccccccccccd4c, 0x3f60f6f202620000, + 0xbfeccccccccccd7b, 0x3f60f6f202620000, 0x0, 0x0, - 0xbfecccccccccce3c, 0x3f469e95afe00000, + 0xbfeccccccccccd7b, 0x3f469e95afe00000, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbf469e95afe00000, + 0xbfecccccccccccab, 0xbf469e95afe00000, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbf60f6f202620000, + 0xbfecccccccccccd3, 0xbf60f6f202620000, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbf6c4643d4490000, + 0xbfeccccccccccccd, 0xbf6c4643d4488000, 0x0, 0x0, - 0xbfeccccccccccca8, 0xbf73cacf2f580000, + 0xbfeccccccccccc76, 0xbf73cacf2f578000, 0x0, 0x0, - 0xbfecccccccccccca, 0xbf7972828f528000, + 0xbfecccccccccccac, 0xbf7972828f528000, 0x0, 0x0, - 0xbfecccccccccccc1, 0xbf7f1a3dc8a34000, + 0xbfecccccccccccb4, 0xbf7f1a3dc8a36000, 0x0, 0x0, - 0xbfecccccccccccdf, 0xbf8261014cf1c000, + 0xbfeccccccccccce0, 0xbf8261014cf1c000, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbf8534e960dbb000, + 0xbfecccccccccccd3, 0xbf8534e960dbc000, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbf8808d7ff68b000, + 0xbfecccccccccccb9, 0xbf8808d7ff68c000, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbf8adcce07fa3000, + 0xbfeccccccccccccc, 0xbf8adcce07fa4000, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbf8db0cc59fa9800, + 0xbfecccccccccccd2, 0xbf8db0cc59fa9800, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbf904269ea6f5000, + 0xbfecccccccccccba, 0xbf904269ea6f4800, 0x0, 0x0, - 0xbfecccccccccccb0, 0xbf91ac72ac132800, + 0xbfecccccccccccba, 0xbf91ac72ac132400, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbf931680e1af0c00, + 0xbfecccccccccccce, 0xbf931680e1af0800, 0x0, 0x0, - 0xbfecccccccccccda, 0xbf948094fb0fdc00, + 0xbfeccccccccccce2, 0xbf948094fb0fd800, 0x0, 0x0, - 0xbfecccccccccccf6, 0xbf95eaaf6809e000, + 0xbfeccccccccccc9e, 0xbf95eaaf6809dc00, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbf9754d098790c00, + 0xbfeccccccccccc9c, 0xbf9754d09878f800, 0x0, 0x0, - 0xbfeccccccccccca4, 0xbf98bef8fc41b400, + 0xbfecccccccccccc4, 0xbf98bef8fc41bc00, 0x0, 0x0, - 0xbfeccccccccccced, 0xbf9a292903513c00, + 0xbfecccccccccccb5, 0xbf9a292903514200, 0x0, 0x0, - 0xbfecccccccccccad, 0xbf9b93611d9e3e00, + 0xbfecccccccccccc9, 0xbf9b93611d9e4a00, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbf9cfda1bb296a00, + 0xbfeccccccccccca8, 0xbf9cfda1bb296c00, 0x0, 0x0, - 0xbfeccccccccccce9, 0xbf9e67eb4bfdea00, + 0xbfecccccccccccd8, 0xbf9e67eb4bfdea00, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbf9fd23e40320400, + 0xbfecccccccccccdb, 0xbf9fd23e40320000, 0x0, 0x0, - 0xbfeccccccccccce7, 0xbfa09e4d83f3c300, + 0xbfeccccccccccc97, 0xbfa09e4d83f3be00, 0x0, 0x0, - 0xbfeccccccccccca1, 0xbfa1538109a63200, + 0xbfeccccccccccca1, 0xbfa1538109a62e00, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfa208b9e94db000, + 0xbfecccccccccccd0, 0xbfa208b9e94db000, 0x0, 0x0, - 0xbfecccccccccccae, 0xbfa2bdf85b0e2600, + 0xbfecccccccccccc9, 0xbfa2bdf85b0e2c00, 0x0, 0x0, - 0xbfecccccccccccb5, 0xbfa3733c97127500, + 0xbfecccccccccccb7, 0xbfa3733c97127b00, 0x0, 0x0, - 0xbfecccccccccccba, 0xbfa42886d58c9c00, + 0xbfecccccccccccd4, 0xbfa42886d58c9c00, 0x0, 0x0, - 0xbfecccccccccccb9, 0xbfa4ddd74eb60300, + 0xbfecccccccccccc2, 0xbfa4ddd74eb60700, 0x0, 0x0, - 0xbfecccccccccccac, 0xbfa5932e3acfd400, + 0xbfeccccccccccc92, 0xbfa5932e3acfdb00, 0x0, 0x0, - 0xbfeccccccccccc10, 0xbfa6488bd2233200, + 0xbfeccccccccccd40, 0xbfa6488bd2233b00, 0x0, 0x0, - 0xbfeccccccccccd06, 0xbfa6fdf04d016d00, + 0xbfeccccccccccd0d, 0xbfa6fdf04d017400, 0x0, 0x0, - 0xbfeccccccccccc9c, 0xbfa7b35be3c48b00, + 0xbfeccccccccccce6, 0xbfa7b35be3c49400, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbfa868cececf3300, + 0xbfecccccccccccd1, 0xbfa868cececf3200, 0x0, 0x0, - 0xbfecccccccccccae, 0xbfa91e49468d1d00, + 0xbfecccccccccccc7, 0xbfa91e49468d2300, 0x0, 0x0, - 0xbfeccccccccccce1, 0xbfa9d3cb83738800, + 0xbfeccccccccccd19, 0xbfa9d3cb83738900, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbfaa8955be012500, + 0xbfeccccccccccccd, 0xbfaa8955be012780, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfab3ee82ebeb100, + 0xbfeccccccccccce3, 0xbfab3ee82ebeaf00, 0x0, 0x0, - 0xbfecccccccccccac, 0xbfabf4830e3ef680, + 0xbfecccccccccccdf, 0xbfabf4830e3efc00, 0x0, 0x0, - 0xbfecccccccccccde, 0xbfacaa26951f5800, + 0xbfecccccccccccf2, 0xbfacaa26951f5580, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfad5fd2fc07d180, + 0xbfecccccccccccc2, 0xbfad5fd2fc07d080, 0x0, 0x0, - 0xbfecccccccccccb0, 0xbfae15887bab7d00, + 0xbfecccccccccccde, 0xbfae15887bab7a00, 0x0, 0x0, - 0xbfeccccccccccca8, 0xbfaecb474cc8ab80, + 0xbfecccccccccccba, 0xbfaecb474cc8ae00, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfaf810fa8295980, + 0xbfecccccccccccc0, 0xbfaf810fa8295880, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfb01b70e3519d80, + 0xbfecccccccccccc0, 0xbfb01b70e3519e00, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbfb0765ef08c1e80, + 0xbfeccccccccccce8, 0xbfb0765ef08c1f80, 0x0, 0x0, - 0xbfeccccccccccc9c, 0xbfb0d152183b58c0, + 0xbfecccccccccccbe, 0xbfb0d152183b5840, 0x0, 0x0, - 0xbfecccccccccccdb, 0xbfb12c4a76dcc900, + 0xbfeccccccccccd35, 0xbfb12c4a76dccd80, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfb1874828f46d80, + 0xbfecccccccccccca, 0xbfb1874828f46d00, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbfb1e24b4b0ce000, + 0xbfecccccccccccc0, 0xbfb1e24b4b0cdf40, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfb23d53f9b77e80, + 0xbfecccccccccccea, 0xbfb23d53f9b77f80, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfb29862518c94c0, + 0xbfecccccccccccf2, 0xbfb29862518c9580, 0x0, 0x0, - 0xbfeccccccccccc9d, 0xbfb2f3766f2b7600, + 0xbfecccccccccccd6, 0xbfb2f3766f2b7500, 0x0, 0x0, - 0xbfeccccccccccc86, 0xbfb34e906f3aa680, + 0xbfecccccccccccee, 0xbfb34e906f3aa7c0, 0x0, 0x0, - 0xbfeccccccccccc6a, 0xbfb3a9b06e680480, + 0xbfecccccccccccde, 0xbfb3a9b06e680700, 0x0, 0x0, - 0xbfeccccccccccc9b, 0xbfb404d68968e2c0, + 0xbfecccccccccccde, 0xbfb404d68968e2c0, 0x0, 0x0, - 0xbfeccccccccccc9c, 0xbfb46002dcfa3a80, + 0xbfecccccccccccda, 0xbfb46002dcfa3b00, 0x0, 0x0, - 0xbfecccccccccccb9, 0xbfb4bb3585e0bb40, + 0xbfecccccccccccb7, 0xbfb4bb3585e0bb40, 0x0, 0x0, - 0xbfeccccccccccca1, 0xbfb5166ea0e90300, + 0xbfecccccccccccaf, 0xbfb5166ea0e904c0, 0x0, 0x0, - 0xbfecccccccccccad, 0xbfb571ae4ae7bf80, + 0xbfeccccccccccd01, 0xbfb571ae4ae7c0c0, 0x0, 0x0, - 0xbfeccccccccccca4, 0xbfb5ccf4a0b9ce40, + 0xbfecccccccccccbe, 0xbfb5ccf4a0b9cec0, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfb62841bf445d40, + 0xbfecccccccccccb4, 0xbfb62841bf445f40, 0x0, 0x0, - 0xbfeccccccccccb91, 0xbfb68395c3751ec0, + 0xbfeccccccccccd36, 0xbfb68395c3751e40, 0x0, 0x0, - 0xbfeccccccccccc87, 0xbfb6def0ca426380, + 0xbfeccccccccccd08, 0xbfb6def0ca425e80, 0x0, 0x0, - 0xbfeccccccccccca1, 0xbfb73a52f0ab3540, + 0xbfecccccccccccbe, 0xbfb73a52f0ab33c0, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfb795bc53b79980, + 0xbfeccccccccccccc, 0xbfb795bc53b79980, 0x0, 0x0, - 0xbfeccccccccccd03, 0xbfb7f12d10789ec0, + 0xbfecccccccccccca, 0xbfb7f12d10789f80, 0x0, 0x0, - 0xbfecccccccccccf1, 0xbfb84ca544088b40, + 0xbfecccccccccccf0, 0xbfb84ca544088bc0, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbfb8a8250b8b0100, + 0xbfecccccccccccd2, 0xbfb8a8250b8b0100, 0x0, 0x0, - 0xbfeccccccccccce5, 0xbfb903ac842d1e00, + 0xbfecccccccccccb8, 0xbfb903ac842d2140, 0x0, 0x0, - 0xbfecccccccccccf4, 0xbfb95f3bcb25b340, + 0xbfeccccccccccd01, 0xbfb95f3bcb25b0c0, 0x0, 0x0, - 0xbfecccccccccccae, 0xbfb9bad2fdb55000, + 0xbfeccccccccccca1, 0xbfb9bad2fdb54d80, 0x0, 0x0, - 0xbfecccccccccccb2, 0xbfba167239267e20, + 0xbfecccccccccccb6, 0xbfba167239267fa0, 0x0, 0x0, - 0xbfecccccccccccb3, 0xbfba72199acde5c0, + 0xbfeccccccccccccf, 0xbfba72199acde580, 0x0, 0x0, - 0xbfecccccccccccfb, 0xbfbacdc9400a6160, + 0xbfecccccccccccd0, 0xbfbacdc9400a6240, 0x0, 0x0, - 0xbfeccccccccccce9, 0xbfbb298146453d40, + 0xbfecccccccccccec, 0xbfbb298146453e60, 0x0, 0x0, - 0xbfeccccccccccd16, 0xbfbb8541caf24aa0, + 0xbfeccccccccccca2, 0xbfbb8541caf249e0, 0x0, 0x0, - 0xbfeccccccccccd02, 0xbfbbe10aeb900e80, + 0xbfecccccccccccc1, 0xbfbbe10aeb900f80, 0x0, 0x0, - 0xbfecccccccccccfb, 0xbfbc3cdcc5a7e780, + 0xbfecccccccccccb2, 0xbfbc3cdcc5a7e920, 0x0, 0x0, - 0xbfecccccccccccbc, 0xbfbc98b776ce37a0, + 0xbfecccccccccccac, 0xbfbc98b776ce3a80, 0x0, 0x0, - 0xbfeccccccccccc41, 0xbfbcf49b1ca28460, + 0xbfecccccccccccd3, 0xbfbcf49b1ca28540, 0x0, 0x0, - 0xbfecccccccccccbb, 0xbfbd5087d4cf9ec0, + 0xbfecccccccccccbf, 0xbfbd5087d4cf9ec0, 0x0, 0x0, - 0xbfeccccccccccc79, 0xbfbdac7dbd0bcd80, + 0xbfecccccccccccb6, 0xbfbdac7dbd0bcf60, 0x0, 0x0, - 0xbfecccccccccccf6, 0xbfbe087cf318fce0, + 0xbfecccccccccccd5, 0xbfbe087cf318fca0, 0x0, 0x0, - 0xbfeccccccccccc47, 0xbfbe648594c4ca00, + 0xbfecccccccccccd4, 0xbfbe648594c4ce40, 0x0, 0x0, - 0xbfecccccccccccee, 0xbfbec097bfe8d6e0, + 0xbfecccccccccccd2, 0xbfbec097bfe8d8c0, 0x0, 0x0, - 0xbfecccccccccccd4, 0xbfbf1cb3926ab7e0, + 0xbfecccccccccccdc, 0xbfbf1cb3926ac0c0, 0x0, 0x0, - 0xbfecccccccccccfb, 0xbfbf78d92a3c6a40, + 0xbfeccccccccccc9e, 0xbfbf78d92a3c6900, 0x0, 0x0, - 0xbfecccccccccccf4, 0xbfbfd508a55c09a0, + 0xbfecccccccccccb6, 0xbfbfd508a55c1260, 0x0, 0x0, - 0xbfecccccccccccde, 0xbfc018a110ea4480, + 0xbfeccccccccccccd, 0xbfc018a110ea4500, 0x0, 0x0, - 0xbfeccccccccccd75, 0xbfc046c2dedea380, + 0xbfecccccccccccde, 0xbfc046c2dedea800, 0x0, 0x0, - 0xbfeccccccccccca3, 0xbfc074e9cb9d5fb0, + 0xbfeccccccccccce6, 0xbfc074e9cb9d60d0, 0x0, 0x0, - 0xbfeccccccccccd88, 0xbfc0a315e63f17f0, + 0xbfecccccccccccc4, 0xbfc0a315e63f19f0, 0x0, 0x0, - 0xbfeccccccccccd19, 0xbfc0d1473de31cf0, + 0xbfeccccccccccd02, 0xbfc0d1473de31c90, 0x0, 0x0, - 0xbfeccccccccccd1b, 0xbfc0ff7de1af5010, + 0xbfeccccccccccd36, 0xbfc0ff7de1af5480, 0x0, 0x0, - 0xbfecccccccccccb0, 0xbfc12db9e0d07120, + 0xbfeccccccccccd48, 0xbfc12db9e0d07390, 0x0, 0x0, - 0xbfeccccccccccd4f, 0xbfc15bfb4a79f440, + 0xbfecccccccccccce, 0xbfc15bfb4a79f280, 0x0, 0x0, - 0xbfeccccccccccca0, 0xbfc18a422de63ff0, + 0xbfecccccccccccc2, 0xbfc18a422de63f10, 0x0, 0x0, - 0xbfeccccccccccd1f, 0xbfc1b88e9a56bc70, + 0xbfecccccccccccda, 0xbfc1b88e9a56bc80, 0x0, 0x0, - 0xbfecccccccccccb9, 0xbfc1e6e09f13dd60, + 0xbfecccccccccccb9, 0xbfc1e6e09f13dda0, 0x0, 0x0, - 0xbfecccccccccccdb, 0xbfc215384b6d41e0, + 0xbfecccccccccccd1, 0xbfc215384b6d4010, 0x0, 0x0, - 0xbfecccccccccccf3, 0xbfc24395aeb9b8f0, + 0xbfecccccccccccda, 0xbfc24395aeb9b8c0, 0x0, 0x0, - 0xbfeccccccccccc85, 0xbfc271f8d8576dc0, + 0xbfecccccccccccf8, 0xbfc271f8d8576d30, 0x0, 0x0, - 0xbfecccccccccccb1, 0xbfc2a061d7abe5b0, + 0xbfeccccccccccd0c, 0xbfc2a061d7abe550, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbfc2ced0bc242510, + 0xbfecccccccccccbe, 0xbfc2ced0bc242600, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfc2fd459534c110, + 0xbfecccccccccccd0, 0xbfc2fd459534c190, 0x0, 0x0, - 0xbfecccccccccccff, 0xbfc32bc07259ed40, + 0xbfecccccccccccde, 0xbfc32bc07259edb0, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbfc35a4163179c90, + 0xbfeccccccccccc9e, 0xbfc35a4163179be0, 0x0, 0x0, - 0xbfeccccccccccd39, 0xbfc388c876f987c0, + 0xbfecccccccccccca, 0xbfc388c876f98860, 0x0, 0x0, - 0xbfeccccccccccc99, 0xbfc3b755bd9357b0, + 0xbfecccccccccccc3, 0xbfc3b755bd935740, 0x0, 0x0, - 0xbfeccccccccccd2a, 0xbfc3e5e94680a6e0, + 0xbfeccccccccccc2e, 0xbfc3e5e94680a760, 0x0, 0x0, - 0xbfecccccccccccb1, 0xbfc4148321652160, + 0xbfecccccccccccc4, 0xbfc41483216520c0, 0x0, 0x0, - 0xbfeccccccccccceb, 0xbfc443235dec9bd0, + 0xbfecccccccccccbb, 0xbfc443235dec9b20, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfc471ca0bcb1f70, + 0xbfecccccccccccea, 0xbfc471ca0bcb1ff0, 0x0, 0x0, - 0xbfecccccccccccb6, 0xbfc4a0773abd0f90, + 0xbfeccccccccccca3, 0xbfc4a0773abd0f50, 0x0, 0x0, - 0xbfecccccccccccbf, 0xbfc4cf2afa872f00, + 0xbfecccccccccccea, 0xbfc4cf2afa872f40, 0x0, 0x0, - 0xbfecccccccccccb5, 0xbfc4fde55af6c350, + 0xbfecccccccccccb2, 0xbfc4fde55af6c320, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfc52ca66be1a080, + 0xbfecccccccccccce, 0xbfc52ca66be1a0a0, 0x0, 0x0, - 0xbfecccccccccccd7, 0xbfc55b6e3d264990, + 0xbfecccccccccccce, 0xbfc55b6e3d264940, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfc58a3cdeabffc0, + 0xbfecccccccccccee, 0xbfc58a3cdeac0010, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfc5b9126062da60, + 0xbfeccccccccccce7, 0xbfc5b9126062d950, 0x0, 0x0, - 0xbfeccccccccccce5, 0xbfc5e7eed243ddf0, + 0xbfecccccccccccb2, 0xbfc5e7eed243dd50, 0x0, 0x0, - 0xbfeccccccccccd15, 0xbfc616d244511520, + 0xbfecccccccccccc6, 0xbfc616d244511530, 0x0, 0x0, - 0xbfecccccccccccf1, 0xbfc645bcc695a4f0, + 0xbfecccccccccccd6, 0xbfc645bcc695a490, 0x0, 0x0, - 0xbfeccccccccccce9, 0xbfc674ae6925e1e0, + 0xbfecccccccccccdc, 0xbfc674ae6925e080, 0x0, 0x0, - 0xbfecccccccccccac, 0xbfc6a3a73c1f6d40, + 0xbfeccccccccccd04, 0xbfc6a3a73c1f6b50, 0x0, 0x0, - 0xbfeccccccccccd7c, 0xbfc6d2a74fa94200, + 0xbfeccccccccccc28, 0xbfc6d2a74fa94480, 0x0, 0x0, - 0xbfeccccccccccd49, 0xbfc701aeb3f3d8b0, + 0xbfeccccccccccb7a, 0xbfc701aeb3f3dad0, 0x0, 0x0, - 0xbfeccccccccccca5, 0xbfc730bd793940c0, + 0xbfeccccccccccd28, 0xbfc730bd793940e0, 0x0, 0x0, - 0xbfecccccccccccf4, 0xbfc75fd3afbd1600, + 0xbfecccccccccccd4, 0xbfc75fd3afbd1660, 0x0, 0x0, - 0xbfecccccccccccce, 0xbfc78ef167ccc520, + 0xbfecccccccccccfc, 0xbfc78ef167ccc5c0, 0x0, 0x0, - 0xbfecccccccccccb0, 0xbfc7be16b1bf8c60, + 0xbfecccccccccccca, 0xbfc7be16b1bf8c60, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfc7ed439df692a0, + 0xbfecccccccccccc6, 0xbfc7ed439df69360, 0x0, 0x0, - 0xbfeccccccccccd0e, 0xbfc81c783cdd0b60, + 0xbfeccccccccccccc, 0xbfc81c783cdd0a50, 0x0, 0x0, - 0xbfeccccccccccd53, 0xbfc84bb49ee83c80, + 0xbfecccccccccccd2, 0xbfc84bb49ee83ba0, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfc87af8d497a750, + 0xbfeccccccccccce5, 0xbfc87af8d497a660, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfc8aa44ee751910, + 0xbfeccccccccccce0, 0xbfc8aa44ee751910, 0x0, 0x0, - 0xbfeccccccccccca6, 0xbfc8d998fd14c2d8, + 0xbfecccccccccccd4, 0xbfc8d998fd14c2e0, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbfc908f511155430, + 0xbfeccccccccccce0, 0xbfc908f511155390, 0x0, 0x0, - 0xbfecccccccccccb0, 0xbfc938593b2011f0, + 0xbfecccccccccccaa, 0xbfc938593b2011f0, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfc967c58be8efb0, + 0xbfecccccccccccc4, 0xbfc967c58be8ef40, 0x0, 0x0, - 0xbfecccccccccccba, 0xbfc9973a142ea900, + 0xbfecccccccccccfe, 0xbfc9973a142ea890, 0x0, 0x0, - 0xbfeccccccccccd35, 0xbfc9c6b6e4bad908, + 0xbfecccccccccccde, 0xbfc9c6b6e4bad8e0, 0x0, 0x0, - 0xbfecccccccccccab, 0xbfc9f63c0e621810, + 0xbfecccccccccccd8, 0xbfc9f63c0e621860, 0x0, 0x0, - 0xbfecccccccccccb0, 0xbfca25c9a20408f0, + 0xbfecccccccccccee, 0xbfca25c9a2040988, 0x0, 0x0, - 0xbfeccccccccccce3, 0xbfca555fb08b83f0, + 0xbfeccccccccccce6, 0xbfca555fb08b8470, 0x0, 0x0, - 0xbfeccccccccccd01, 0xbfca84fe4aeea060, + 0xbfeccccccccccccf, 0xbfca84fe4aee9f10, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbfcab4a5822ed480, + 0xbfeccccccccccccb, 0xbfcab4a5822ed5c0, 0x0, 0x0, - 0xbfecccccccccccf3, 0xbfcae455675911e0, + 0xbfecccccccccccde, 0xbfcae45567591250, 0x0, 0x0, - 0xbfeccccccccccce0, 0xbfcb140e0b85daf0, + 0xbfecccccccccccbf, 0xbfcb140e0b85db30, 0x0, 0x0, - 0xbfeccccccccccd2b, 0xbfcb43cf7fd95d10, + 0xbfeccccccccccce9, 0xbfcb43cf7fd95c70, 0x0, 0x0, - 0xbfeccccccccccc87, 0xbfcb7399d5838ac8, + 0xbfeccccccccccce8, 0xbfcb7399d5838b10, 0x0, 0x0, - 0xbfeccccccccccc90, 0xbfcba36d1dc03cf0, + 0xbfecccccccccccbb, 0xbfcba36d1dc03d40, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfcbd34969d73fe0, + 0xbfecccccccccccc8, 0xbfcbd34969d74010, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfcc032ecb1c7868, + 0xbfeccccccccccca9, 0xbfcc032ecb1c7900, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfcc331d52eff9c0, + 0xbfecccccccccccbd, 0xbfcc331d52effaf8, 0x0, 0x0, - 0xbfeccccccccccce9, 0xbfcc631512be23e8, + 0xbfecccccccccccd9, 0xbfcc631512be2510, 0x0, 0x0, - 0xbfeccccccccccc8f, 0xbfcc93161bffb928, + 0xbfecccccccccccf0, 0xbfcc93161bffb910, 0x0, 0x0, - 0xbfeccccccccccc4a, 0xbfccc3208039f8e8, + 0xbfeccccccccccdf4, 0xbfccc3208039fa70, 0x0, 0x0, - 0xbfeccccccccccc9e, 0xbfccf33450fed048, + 0xbfeccccccccccd46, 0xbfccf33450fecef0, 0x0, 0x0, - 0xbfeccccccccccca8, 0xbfcd23519fecc6b0, + 0xbfecccccccccccc3, 0xbfcd23519fecc630, 0x0, 0x0, - 0xbfecccccccccccbf, 0xbfcd53787eaf48b8, + 0xbfecccccccccccd5, 0xbfcd53787eaf4890, 0x0, 0x0, - 0xbfecccccccccccdb, 0xbfcd83a8fefeab58, + 0xbfecccccccccccc1, 0xbfcd83a8fefeab38, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbfcdb3e332a04ee0, + 0xbfeccccccccccce4, 0xbfcdb3e332a04e78, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbfcde4272b66b648, + 0xbfeccccccccccccd, 0xbfcde4272b66b6c8, 0x0, 0x0, - 0xbfecccccccccccc1, 0xbfce1474fb31a940, + 0xbfeccccccccccce6, 0xbfce1474fb31a9b8, 0x0, 0x0, - 0xbfeccccccccccca6, 0xbfce44ccb3ee49e8, + 0xbfecccccccccccdc, 0xbfce44ccb3ee49d0, 0x0, 0x0, - 0xbfecccccccccccdd, 0xbfce752e67973350, + 0xbfecccccccccccc4, 0xbfce752e679734c8, 0x0, 0x0, - 0xbfecccccccccccbc, 0xbfcea59a28349e58, + 0xbfeccccccccccccd, 0xbfcea59a28349e28, 0x0, 0x0, - 0xbfecccccccccccdb, 0xbfced61007dc6cd0, + 0xbfecccccccccccca, 0xbfced61007dc6d40, 0x0, 0x0, - 0xbfecccccccccccbb, 0xbfcf069018b25828, + 0xbfecccccccccccdf, 0xbfcf069018b258b0, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfcf371a6ce80390, + 0xbfeccccccccccce1, 0xbfcf371a6ce80378, 0x0, 0x0, - 0xbfecccccccccccee, 0xbfcf67af16bd1c78, + 0xbfecccccccccccdb, 0xbfcf67af16bd1ca0, 0x0, 0x0, - 0xbfecccccccccccee, 0xbfcf984e287f77d8, + 0xbfeccccccccccce1, 0xbfcf984e287f7660, 0x0, 0x0, - 0xbfecccccccccccb6, 0xbfcfc8f7b48b3008, + 0xbfeccccccccccce3, 0xbfcfc8f7b48b2ff8, 0x0, 0x0, - 0xbfeccccccccccca3, 0xbfcff9abcd4ac1a0, + 0xbfecccccccccccc0, 0xbfcff9abcd4ac008, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfd01535429b9480, + 0xbfecccccccccccec, 0xbfd01535429b9420, 0x0, 0x0, - 0xbfecccccccccccba, 0xbfd02d99f76c0060, + 0xbfecccccccccccd4, 0xbfd02d99f76c0038, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbfd046040e61d164, + 0xbfecccccccccccd0, 0xbfd046040e61d184, 0x0, 0x0, - 0xbfecccccccccccaf, 0xbfd05e7390cf9f9c, + 0xbfecccccccccccda, 0xbfd05e7390cfa030, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfd076e8880f8198, + 0xbfecccccccccccbd, 0xbfd076e8880f81e4, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfd08f62fd831a34, + 0xbfecccccccccccd9, 0xbfd08f62fd831a18, 0x0, 0x0, - 0xbfecccccccccccdd, 0xbfd0a7e2fa93a5f8, + 0xbfeccccccccccc7c, 0xbfd0a7e2fa93a568, 0x0, 0x0, - 0xbfeccccccccccce4, 0xbfd0c06888b20cb4, + 0xbfeccccccccccc90, 0xbfd0c06888b20c28, 0x0, 0x0, - 0xbfecccccccccccbf, 0xbfd0d8f3b156f1f4, + 0xbfecccccccccccd7, 0xbfd0d8f3b156f1ec, 0x0, 0x0, - 0xbfeccccccccccced, 0xbfd0f1847e02c328, + 0xbfecccccccccccdb, 0xbfd0f1847e02c390, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbfd10a1af83dc890, + 0xbfecccccccccccb8, 0xbfd10a1af83dc90c, 0x0, 0x0, - 0xbfeccccccccccd04, 0xbfd122b72998322c, + 0xbfecccccccccccb5, 0xbfd122b7299832d8, 0x0, 0x0, - 0xbfeccccccccccd01, 0xbfd13b591baa2d44, + 0xbfecccccccccccde, 0xbfd13b591baa2d54, 0x0, 0x0, - 0xbfeccccccccccd39, 0xbfd15400d813eeb4, + 0xbfecccccccccccee, 0xbfd15400d813ee98, 0x0, 0x0, - 0xbfeccccccccccd8a, 0xbfd16cae687dc4d4, + 0xbfeccccccccccdc9, 0xbfd16cae687dc608, 0x0, 0x0, - 0xbfeccccccccccc7f, 0xbfd18561d6982cb8, + 0xbfeccccccccccd39, 0xbfd18561d6982c60, 0x0, 0x0, - 0xbfecccccccccccb3, 0xbfd19e1b2c1bda58, + 0xbfeccccccccccca4, 0xbfd19e1b2c1bda6c, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfd1b6da72c9ce88, + 0xbfecccccccccccce, 0xbfd1b6da72c9ce74, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbfd1cf9fb46b6630, + 0xbfecccccccccccf3, 0xbfd1cf9fb46b66e8, 0x0, 0x0, - 0xbfeccccccccccce0, 0xbfd1e86afad26bc8, + 0xbfecccccccccccaa, 0xbfd1e86afad26bb8, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfd2013c4fd9262c, + 0xbfecccccccccccad, 0xbfd2013c4fd925fc, 0x0, 0x0, - 0xbfeccccccccccce2, 0xbfd21a13bd6269e0, + 0xbfecccccccccccbe, 0xbfd21a13bd626a0c, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbfd232f14d59ad00, + 0xbfeccccccccccca0, 0xbfd232f14d59ac34, 0x0, 0x0, - 0xbfeccccccccccccf, 0xbfd24bd509b31354, + 0xbfecccccccccccc8, 0xbfd24bd509b313bc, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbfd264befc6b8584, + 0xbfecccccccccccbc, 0xbfd264befc6b8550, 0x0, 0x0, - 0xbfecccccccccccd7, 0xbfd27daf2f88bcd0, + 0xbfecccccccccccbe, 0xbfd27daf2f88bc5c, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbfd296a5ad195758, + 0xbfeccccccccccce4, 0xbfd296a5ad19576c, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbfd2afa27f34ead4, + 0xbfecccccccccccc7, 0xbfd2afa27f34e9f0, 0x0, 0x0, - 0xbfecccccccccccdf, 0xbfd2c8a5affc1148, + 0xbfecccccccccccd6, 0xbfd2c8a5affc10d8, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbfd2e1af49988170, + 0xbfecccccccccccf0, 0xbfd2e1af49988110, 0x0, 0x0, - 0xbfeccccccccccc7b, 0xbfd2fabf563d1c00, + 0xbfeccccccccccd2f, 0xbfd2fabf563d1c0c, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfd313d5e025fd64, + 0xbfeccccccccccd27, 0xbfd313d5e025fdc0, 0x0, 0x0, - 0xbfecccccccccccea, 0xbfd32cf2f19894fc, + 0xbfecccccccccccdd, 0xbfd32cf2f19894c8, 0x0, 0x0, - 0xbfecccccccccccb3, 0xbfd3461694e3af98, + 0xbfecccccccccccd1, 0xbfd3461694e3afe0, 0x0, 0x0, - 0xbfecccccccccccf5, 0xbfd35f40d45f90b0, + 0xbfecccccccccccba, 0xbfd35f40d45f903c, 0x0, 0x0, - 0xbfecccccccccccb5, 0xbfd37871ba6e0038, + 0xbfecccccccccccba, 0xbfd37871ba6e002c, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbfd391a9517a5fe4, + 0xbfecccccccccccb5, 0xbfd391a9517a5fc4, 0x0, 0x0, - 0xbfecccccccccccb5, 0xbfd3aae7a3f9bcfc, + 0xbfecccccccccccc9, 0xbfd3aae7a3f9bd0c, 0x0, 0x0, - 0xbfecccccccccccb8, 0xbfd3c42cbc6ae328, + 0xbfecccccccccccd9, 0xbfd3c42cbc6ae3cc, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbfd3dd78a5567020, + 0xbfecccccccccccea, 0xbfd3dd78a5566fa0, 0x0, 0x0, - 0xbfeccccccccccce2, 0xbfd3f6cb694ee398, + 0xbfecccccccccccc2, 0xbfd3f6cb694ee398, 0x0, 0x0, - 0xbfecccccccccccf4, 0xbfd4102512f0b714, + 0xbfecccccccccccf5, 0xbfd4102512f0b6bc, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfd42985ace26cfc, + 0xbfecccccccccccd6, 0xbfd42985ace26d90, 0x0, 0x0, - 0xbfecccccccccccfd, 0xbfd442ed41d4a864, + 0xbfecccccccccccda, 0xbfd442ed41d4a8d8, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfd45c5bdc823d40, + 0xbfecccccccccccca, 0xbfd45c5bdc823d20, 0x0, 0x0, - 0xbfeccccccccccd20, 0xbfd475d187b04374, + 0xbfeccccccccccd02, 0xbfd475d187b04380, 0x0, 0x0, - 0xbfeccccccccccd1b, 0xbfd48f4e4e2e2d14, + 0xbfeccccccccccd1e, 0xbfd48f4e4e2e2d74, 0x0, 0x0, - 0xbfeccccccccccceb, 0xbfd4a8d23ad5de24, + 0xbfeccccccccccd14, 0xbfd4a8d23ad5dcd8, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfd4c25d588bafc8, + 0xbfeccccccccccccc, 0xbfd4c25d588bb01c, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfd4dbefb23e9fb0, + 0xbfecccccccccccbd, 0xbfd4dbefb23ea008, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbfd4f58952e84cf8, + 0xbfeccccccccccc92, 0xbfd4f58952e84cc0, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfd50f2a458d1518, + 0xbfecccccccccccbf, 0xbfd50f2a458d1570, 0x0, 0x0, - 0xbfecccccccccccad, 0xbfd528d2953c2d14, + 0xbfeccccccccccccf, 0xbfd528d2953c2d08, 0x0, 0x0, - 0xbfecccccccccccdb, 0xbfd542824d0fad1c, + 0xbfeccccccccccce7, 0xbfd542824d0fad3c, 0x0, 0x0, - 0xbfeccccccccccc98, 0xbfd55c39782cad54, + 0xbfecccccccccccd7, 0xbfd55c39782cad68, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfd575f821c3562c, + 0xbfeccccccccccd0b, 0xbfd575f821c355a0, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfd58fbe550ef7d0, + 0xbfecccccccccccee, 0xbfd58fbe550ef7d4, 0x0, 0x0, - 0xbfeccccccccccce7, 0xbfd5a98c1d561e6c, + 0xbfecccccccccccdb, 0xbfd5a98c1d561e84, 0x0, 0x0, - 0xbfecccccccccccdd, 0xbfd5c36185eaa90c, + 0xbfecccccccccccaa, 0xbfd5c36185eaa8c0, 0x0, 0x0, - 0xbfeccccccccccd08, 0xbfd5dd3e9a29dc74, + 0xbfecccccccccccd9, 0xbfd5dd3e9a29dc90, 0x0, 0x0, - 0xbfecccccccccccce, 0xbfd5f723657c7d0c, + 0xbfecccccccccccce, 0xbfd5f723657c7d54, 0x0, 0x0, - 0xbfecccccccccccfa, 0xbfd6110ff356e178, + 0xbfeccccccccccce7, 0xbfd6110ff356e158, 0x0, 0x0, - 0xbfeccccccccccc5e, 0xbfd62b044f390906, + 0xbfeccccccccccc5c, 0xbfd62b044f390806, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfd6450084aeb2a4, + 0xbfeccccccccccc8f, 0xbfd6450084aeb27a, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfd65f049f4f75d0, + 0xbfeccccccccccce4, 0xbfd65f049f4f75d4, 0x0, 0x0, - 0xbfeccccccccccce3, 0xbfd67910aabed3fa, + 0xbfecccccccccccc6, 0xbfd67910aabed41c, 0x0, 0x0, - 0xbfecccccccccccf4, 0xbfd69324b2ac52f6, + 0xbfecccccccccccbb, 0xbfd69324b2ac5228, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbfd6ad40c2d391d2, + 0xbfecccccccccccf1, 0xbfd6ad40c2d39200, 0x0, 0x0, - 0xbfeccccccccccd0d, 0xbfd6c764e6fc62d0, + 0xbfecccccccccccbf, 0xbfd6c764e6fc6380, 0x0, 0x0, - 0xbfeccccccccccce7, 0xbfd6e1912afadf9c, + 0xbfeccccccccccce4, 0xbfd6e1912afadf8c, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfd6fbc59aaf8138, + 0xbfecccccccccccec, 0xbfd6fbc59aaf817c, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfd716024207395a, + 0xbfeccccccccccccf, 0xbfd7160242073934, 0x0, 0x0, - 0xbfeccccccccccc8e, 0xbfd730472cfb868c, + 0xbfeccccccccccd03, 0xbfd730472cfb8650, 0x0, 0x0, - 0xbfecccccccccccec, 0xbfd74a9467929030, + 0xbfecccccccccccbf, 0xbfd74a9467929090, 0x0, 0x0, - 0xbfeccccccccccc7d, 0xbfd764e9fddf3d4c, + 0xbfeccccccccccce9, 0xbfd764e9fddf3ca0, 0x0, 0x0, - 0xbfecccccccccccbb, 0xbfd77f47fc014a58, + 0xbfeccccccccccd27, 0xbfd77f47fc014990, 0x0, 0x0, - 0xbfeccccccccccc9c, 0xbfd799ae6e25653c, + 0xbfecccccccccccb6, 0xbfd799ae6e256420, 0x0, 0x0, - 0xbfeccccccccccd0e, 0xbfd7b41d60853fd6, + 0xbfecccccccccccc1, 0xbfd7b41d60853ee0, 0x0, 0x0, - 0xbfecccccccccce65, 0xbfd7ce94df67b514, + 0xbfecccccccccccf1, 0xbfd7ce94df67afc0, 0x0, 0x0, - 0xbfeccccccccccd7c, 0xbfd7e914f720caac, + 0xbfeccccccccccbcb, 0xbfd7e914f720cc3a, 0x0, 0x0, - 0xbfeccccccccccd06, 0xbfd8039db411f0c8, + 0xbfecccccccccccf0, 0xbfd8039db411f0de, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfd81e2f22a9ee18, + 0xbfecccccccccccc8, 0xbfd81e2f22a9ed7c, 0x0, 0x0, - 0xbfecccccccccccf0, 0xbfd838c94f651860, + 0xbfeccccccccccc95, 0xbfd838c94f6518d6, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbfd8536c46cd64b2, + 0xbfeccccccccccd01, 0xbfd8536c46cd64f0, 0x0, 0x0, - 0xbfeccccccccccc94, 0xbfd86e18157a8038, + 0xbfecccccccccccc6, 0xbfd86e18157a807e, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbfd888ccc811eafc, + 0xbfeccccccccccccb, 0xbfd888ccc811eb08, 0x0, 0x0, - 0xbfeccccccccccc8f, 0xbfd8a38a6b471178, + 0xbfeccccccccccce5, 0xbfd8a38a6b471210, 0x0, 0x0, - 0xbfecccccccccccf1, 0xbfd8be510bdb6cf2, + 0xbfeccccccccccd08, 0xbfd8be510bdb6c66, 0x0, 0x0, - 0xbfecccccccccccaf, 0xbfd8d920b69e92d0, + 0xbfeccccccccccccf, 0xbfd8d920b69e922a, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfd8f3f9786e58dc, + 0xbfecccccccccccc0, 0xbfd8f3f9786e5862, 0x0, 0x0, - 0xbfeccccccccccca8, 0xbfd90edb5e36ecf2, + 0xbfecccccccccccd9, 0xbfd90edb5e36ed32, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbfd929c674f2f078, + 0xbfecccccccccccbf, 0xbfd929c674f2f14c, 0x0, 0x0, - 0xbfeccccccccccc87, 0xbfd944bac9ab95ac, + 0xbfeccccccccccce4, 0xbfd944bac9ab9608, 0x0, 0x0, - 0xbfecccccccccccf1, 0xbfd95fb86978b58c, + 0xbfecccccccccccc2, 0xbfd95fb86978b5b4, 0x0, 0x0, - 0xbfeccccccccccc13, 0xbfd97abf6180ef9c, + 0xbfecccccccccccf0, 0xbfd97abf6180f106, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbfd995cfbef9cdb4, + 0xbfecccccccccccf3, 0xbfd995cfbef9cd4e, 0x0, 0x0, - 0xbfeccccccccccce9, 0xbfd9b0e98f27ca82, + 0xbfecccccccccccce, 0xbfd9b0e98f27cae8, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbfd9cc0cdf5e886c, + 0xbfecccccccccccd6, 0xbfd9cc0cdf5e8870, 0x0, 0x0, - 0xbfeccccccccccd1f, 0xbfd9e739bd00da24, + 0xbfeccccccccccced, 0xbfd9e739bd00da68, 0x0, 0x0, - 0xbfeccccccccccce4, 0xbfda02703580eb2a, + 0xbfecccccccccccc7, 0xbfda02703580eb38, 0x0, 0x0, - 0xbfeccccccccccd3a, 0xbfda1db0566055f6, + 0xbfecccccccccccba, 0xbfda1db056605626, 0x0, 0x0, - 0xbfeccccccccccd2e, 0xbfda38fa2d3044f6, + 0xbfecccccccccccce, 0xbfda38fa2d3045a6, 0x0, 0x0, - 0xbfeccccccccccd90, 0xbfda544dc7918fee, + 0xbfecccccccccccdd, 0xbfda544dc7919178, 0x0, 0x0, - 0xbfecccccccccccdd, 0xbfda6fab3334db56, + 0xbfecccccccccccad, 0xbfda6fab3334db60, 0x0, 0x0, - 0xbfecccccccccccc1, 0xbfda8b127ddaace0, + 0xbfeccccccccccce6, 0xbfda8b127ddaacd0, 0x0, 0x0, - 0xbfecccccccccccb9, 0xbfdaa683b5539754, + 0xbfecccccccccccc4, 0xbfdaa683b5539790, 0x0, 0x0, - 0xbfeccccccccccc93, 0xbfdac1fee78050cc, + 0xbfeccccccccccc95, 0xbfdac1fee7805080, 0x0, 0x0, - 0xbfecccccccccccce, 0xbfdadd842251d274, + 0xbfeccccccccccceb, 0xbfdadd842251d2e2, 0x0, 0x0, - 0xbfecccccccccccb9, 0xbfdaf91373c97aa0, + 0xbfecccccccccccc6, 0xbfdaf91373c97a50, 0x0, 0x0, - 0xbfecccccccccccba, 0xbfdb14ace9f925b8, + 0xbfecccccccccccb6, 0xbfdb14ace9f92570, 0x0, 0x0, - 0xbfeccccccccccd36, 0xbfdb305093035448, + 0xbfeccccccccccc8b, 0xbfdb3050930354c4, 0x0, 0x0, - 0xbfecccccccccccce, 0xbfdb4bfe7d1b45f0, + 0xbfeccccccccccce0, 0xbfdb4bfe7d1b46bc, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfdb67b6b68520b0, + 0xbfecccccccccccc8, 0xbfdb67b6b685203c, 0x0, 0x0, - 0xbfecccccccccccbb, 0xbfdb83794d960202, + 0xbfecccccccccccd0, 0xbfdb83794d960278, 0x0, 0x0, - 0xbfeccccccccccd11, 0xbfdb9f4650b431bc, + 0xbfecccccccccccc9, 0xbfdb9f4650b43276, 0x0, 0x0, - 0xbfecccccccccccbc, 0xbfdbbb1dce57351c, + 0xbfecccccccccccce, 0xbfdbbb1dce573590, 0x0, 0x0, - 0xbfecccccccccccf8, 0xbfdbd6ffd507f72c, + 0xbfecccccccccccda, 0xbfdbd6ffd507f700, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfdbf2ec7360e316, + 0xbfecccccccccccbf, 0xbfdbf2ec7360e3c4, 0x0, 0x0, - 0xbfeccccccccccc74, 0xbfdc0ee3b80e0cec, + 0xbfecccccccccccd6, 0xbfdc0ee3b80e0f6c, 0x0, 0x0, - 0xbfeccccccccccca5, 0xbfdc2ae5b1cd53a0, + 0xbfecccccccccccd2, 0xbfdc2ae5b1cd53d4, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbfdc46f26f6e76d8, + 0xbfecccccccccccb9, 0xbfdc46f26f6e761c, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbfdc6309ffd346b0, + 0xbfecccccccccccc3, 0xbfdc6309ffd346a0, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfdc7f2c71efc254, + 0xbfecccccccccccd0, 0xbfdc7f2c71efc1c2, 0x0, 0x0, - 0xbfeccccccccccccf, 0xbfdc9b59d4ca378c, + 0xbfecccccccccccbb, 0xbfdc9b59d4ca36fc, 0x0, 0x0, - 0xbfecccccccccccec, 0xbfdcb792377b68a8, + 0xbfecccccccccccbf, 0xbfdcb792377b6868, 0x0, 0x0, - 0xbfeccccccccccd0e, 0xbfdcd3d5a92eb030, + 0xbfecccccccccccff, 0xbfdcd3d5a92eb020, 0x0, 0x0, - 0xbfeccccccccccd9e, 0xbfdcf02439222290, + 0xbfeccccccccccc97, 0xbfdcf024392223a0, 0x0, 0x0, - 0xbfeccccccccccc98, 0xbfdd0c7df6a6b49c, + 0xbfecccccccccccda, 0xbfdd0c7df6a6b4ac, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbfdd28e2f12058bc, + 0xbfecccccccccccc9, 0xbfdd28e2f12058d4, 0x0, 0x0, - 0xbfecccccccccccbf, 0xbfdd4553380630d8, + 0xbfecccccccccccd9, 0xbfdd455338063058, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfdd61cedae2a43c, + 0xbfeccccccccccd16, 0xbfdd61cedae2a416, 0x0, 0x0, - 0xbfecccccccccccf1, 0xbfdd7e55e9538f28, + 0xbfeccccccccccce6, 0xbfdd7e55e9538f84, 0x0, 0x0, - 0xbfecccccccccccf2, 0xbfdd9ae8730a63ce, + 0xbfecccccccccccd5, 0xbfdd9ae8730a63c0, 0x0, 0x0, - 0xbfeccccccccccccf, 0xbfddb78687cc4fb8, + 0xbfeccccccccccce8, 0xbfddb78687cc4fba, 0x0, 0x0, - 0xbfeccccccccccd48, 0xbfddd430377263ec, + 0xbfeccccccccccced, 0xbfddd43037726384, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbfddf0e591e9b92c, + 0xbfecccccccccccaf, 0xbfddf0e591e9b92c, 0x0, 0x0, - 0xbfeccccccccccca6, 0xbfde0da6a73396f8, + 0xbfecccccccccccf1, 0xbfde0da6a7339732, 0x0, 0x0, - 0xbfeccccccccccce5, 0xbfde2a7387659cf8, + 0xbfecccccccccccbf, 0xbfde2a7387659cec, 0x0, 0x0, - 0xbfecccccccccccac, 0xbfde474c42a9e6ec, + 0xbfeccccccccccc74, 0xbfde474c42a9e6b4, 0x0, 0x0, - 0xbfeccccccccccca9, 0xbfde6430e93f340c, + 0xbfecccccccccccbe, 0xbfde6430e93f3406, 0x0, 0x0, - 0xbfeccccccccccca4, 0xbfde81218b7912a6, + 0xbfecccccccccccb0, 0xbfde81218b7912b2, 0x0, 0x0, - 0xbfecccccccccccbc, 0xbfde9e1e39c00534, + 0xbfecccccccccccac, 0xbfde9e1e39c004d8, 0x0, 0x0, - 0xbfeccccccccccc8e, 0xbfdebb270491ac06, + 0xbfeccccccccccc02, 0xbfdebb270491abd0, 0x0, 0x0, - 0xbfeccccccccccd29, 0xbfded83bfc80eafa, + 0xbfeccccccccccd25, 0xbfded83bfc80eb48, 0x0, 0x0, - 0xbfecccccccccccec, 0xbfdef55d323618be, + 0xbfeccccccccccc97, 0xbfdef55d323618b8, 0x0, 0x0, - 0xbfecccccccccccb9, 0xbfdf128ab66f2616, + 0xbfecccccccccccd8, 0xbfdf128ab66f2630, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfdf2fc499ffc3ea, + 0xbfecccccccccccb5, 0xbfdf2fc499ffc406, 0x0, 0x0, - 0xbfecccccccccccd7, 0xbfdf4d0aedd19164, + 0xbfecccccccccccbc, 0xbfdf4d0aedd19186, 0x0, 0x0, - 0xbfeccccccccccca4, 0xbfdf6a5dc2e44644, + 0xbfecccccccccccd3, 0xbfdf6a5dc2e44664, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfdf87bd2a4ddc58, + 0xbfecccccccccccde, 0xbfdf87bd2a4ddc3e, 0x0, 0x0, - 0xbfecccccccccccf3, 0xbfdfa529353abca8, + 0xbfecccccccccccfb, 0xbfdfa529353abb4c, 0x0, 0x0, - 0xbfeccccccccccce7, 0xbfdfc2a1f4ede600, + 0xbfeccccccccccd35, 0xbfdfc2a1f4ede606, 0x0, 0x0, - 0xbfeccccccccccced, 0xbfdfe0277ac12388, + 0xbfecccccccccccc9, 0xbfdfe0277ac1238e, 0x0, 0x0, - 0xbfecccccccccccb9, 0xbfdffdb9d8252ef6, + 0xbfecccccccccccce, 0xbfdffdb9d8252eb4, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbfe00dac8f50f046, + 0xbfecccccccccccde, 0xbfe00dac8f50f084, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfe01c82afeb2f52, + 0xbfecccccccccccd8, 0xbfe01c82afeb2f48, 0x0, 0x0, - 0xbfecccccccccccde, 0xbfe02b5f56bca3df, + 0xbfecccccccccccb2, 0xbfe02b5f56bca3e0, 0x0, 0x0, - 0xbfecccccccccccaa, 0xbfe03a428cac71d2, + 0xbfeccccccccccccd, 0xbfe03a428cac71e0, 0x0, 0x0, - 0xbfeccccccccccd5a, 0xbfe0492c5aada82c, + 0xbfeccccccccccceb, 0xbfe0492c5aada737, 0x0, 0x0, - 0xbfecccccccccccea, 0xbfe0581cc9bf55bf, + 0xbfeccccccccccc93, 0xbfe0581cc9bf5596, 0x0, 0x0, - 0xbfecccccccccccde, 0xbfe06713e2eca747, + 0xbfecccccccccccc3, 0xbfe06713e2eca744, 0x0, 0x0, - 0xbfecccccccccccae, 0xbfe07611af4cf904, + 0xbfeccccccccccccd, 0xbfe07611af4cf8c9, 0x0, 0x0, - 0xbfecccccccccccae, 0xbfe085163803f058, + 0xbfecccccccccccc8, 0xbfe085163803f051, 0x0, 0x0, - 0xbfeccccccccccce2, 0xbfe094218641959d, + 0xbfecccccccccccb7, 0xbfe0942186419597, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfe0a333a3426b29, + 0xbfeccccccccccce3, 0xbfe0a333a3426b1b, 0x0, 0x0, - 0xbfeccccccccccd00, 0xbfe0b24c984f8568, + 0xbfecccccccccccc3, 0xbfe0b24c984f85ad, 0x0, 0x0, - 0xbfeccccccccccca7, 0xbfe0c16c6ebea5a7, + 0xbfecccccccccccc3, 0xbfe0c16c6ebea585, 0x0, 0x0, - 0xbfeccccccccccce6, 0xbfe0d0932ff24fa0, + 0xbfeccccccccccce0, 0xbfe0d0932ff24fdc, 0x0, 0x0, - 0xbfecccccccccccea, 0xbfe0dfc0e559e74c, + 0xbfecccccccccccc7, 0xbfe0dfc0e559e75c, 0x0, 0x0, - 0xbfecccccccccccce, 0xbfe0eef59871c649, + 0xbfecccccccccccbc, 0xbfe0eef59871c641, 0x0, 0x0, - 0xbfecccccccccccf4, 0xbfe0fe3152c35724, + 0xbfecccccccccccd9, 0xbfe0fe3152c35761, 0x0, 0x0, - 0xbfecccccccccccba, 0xbfe10d741de5308f, + 0xbfecccccccccccb7, 0xbfe10d741de53036, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbfe11cbe037b2b97, + 0xbfecccccccccccbb, 0xbfe11cbe037b2bd2, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbfe12c0f0d368379, + 0xbfecccccccccccf4, 0xbfe12c0f0d3683c8, 0x0, 0x0, - 0xbfeccccccccccc7a, 0xbfe13b6744d5ea84, + 0xbfeccccccccccdcd, 0xbfe13b6744d5eb6e, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfe14ac6b425abd3, + 0xbfeccccccccccc20, 0xbfe14ac6b425ab77, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfe15a2d64ffbb44, + 0xbfeccccccccccce2, 0xbfe15a2d64ffbb17, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbfe1699b614bddeb, + 0xbfecccccccccccce, 0xbfe1699b614bddee, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfe17910b2ffbc96, + 0xbfeccccccccccca4, 0xbfe17910b2ffbc34, 0x0, 0x0, - 0xbfeccccccccccd08, 0xbfe1888d641f0242, + 0xbfecccccccccccf1, 0xbfe1888d641f024a, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfe198117ebb78f2, + 0xbfecccccccccccb9, 0xbfe198117ebb7904, 0x0, 0x0, - 0xbfecccccccccccde, 0xbfe1a79d0cf52460, + 0xbfecccccccccccf3, 0xbfe1a79d0cf52451, 0x0, 0x0, - 0xbfeccccccccccca5, 0xbfe1b73018fa5f12, + 0xbfeccccccccccc86, 0xbfe1b73018fa5ee0, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbfe1c6caad07f79e, + 0xbfecccccccccccc2, 0xbfe1c6caad07f7c6, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbfe1d66cd3694dc7, + 0xbfecccccccccccb4, 0xbfe1d66cd3694dde, 0x0, 0x0, - 0xbfecccccccccccbf, 0xbfe1e61696786df5, + 0xbfecccccccccccdd, 0xbfe1e61696786e20, 0x0, 0x0, - 0xbfeccccccccccce1, 0xbfe1f5c8009e30fe, + 0xbfecccccccccccb2, 0xbfe1f5c8009e310c, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbfe205811c5258cd, + 0xbfecccccccccccfc, 0xbfe205811c5258bc, 0x0, 0x0, - 0xbfeccccccccccc97, 0xbfe21541f41baebb, + 0xbfecccccccccccdc, 0xbfe21541f41bae7c, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbfe2250a929020ab, + 0xbfeccccccccccc9a, 0xbfe2250a929020bd, 0x0, 0x0, - 0xbfeccccccccccd52, 0xbfe234db0254e281, + 0xbfecccccccccccf0, 0xbfe234db0254e24e, 0x0, 0x0, - 0xbfecccccccccccb8, 0xbfe244b34e1e89c4, + 0xbfecccccccccccaa, 0xbfe244b34e1e89fe, 0x0, 0x0, - 0xbfecccccccccccb2, 0xbfe2549380b12f3d, + 0xbfecccccccccccbd, 0xbfe2549380b12ef3, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfe2647ba4e08c84, + 0xbfecccccccccccc3, 0xbfe2647ba4e08c61, 0x0, 0x0, - 0xbfecccccccccccb7, 0xbfe2746bc5901d1e, + 0xbfecccccccccccbe, 0xbfe2746bc5901d00, 0x0, 0x0, - 0xbfeccccccccccca4, 0xbfe28463edb33e37, + 0xbfecccccccccccf6, 0xbfe28463edb33e1e, 0x0, 0x0, - 0xbfecccccccccccba, 0xbfe29464284d4e67, + 0xbfecccccccccccd0, 0xbfe29464284d4e16, 0x0, 0x0, - 0xbfecccccccccccab, 0xbfe2a46c8071cdc8, + 0xbfecccccccccccc0, 0xbfe2a46c8071cdaa, 0x0, 0x0, - 0xbfecccccccccccf4, 0xbfe2b47d014480f4, + 0xbfecccccccccccc1, 0xbfe2b47d014480e7, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfe2c495b5f98fe0, + 0xbfecccccccccccbd, 0xbfe2c495b5f99015, 0x0, 0x0, - 0xbfecccccccccccb3, 0xbfe2d4b6a9d5aa24, + 0xbfecccccccccccd5, 0xbfe2d4b6a9d5aa00, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbfe2e4dfe82e23f6, + 0xbfecccccccccccc9, 0xbfe2e4dfe82e23e3, 0x0, 0x0, - 0xbfeccccccccccc7c, 0xbfe2f5117c691d92, + 0xbfecccccccccccb1, 0xbfe2f5117c691dbc, 0x0, 0x0, - 0xbfeccccccccccca0, 0xbfe3054b71fda2e2, + 0xbfecccccccccccc1, 0xbfe3054b71fda368, 0x0, 0x0, - 0xbfeccccccccccc4c, 0xbfe3158dd473cf58, + 0xbfecccccccccccdc, 0xbfe3158dd473cec1, 0x0, 0x0, - 0xbfeccccccccccc93, 0xbfe325d8af64ee94, + 0xbfecccccccccccbb, 0xbfe325d8af64ee3b, 0x0, 0x0, - 0xbfeccccccccccc0d, 0xbfe3362c0e7ba24a, + 0xbfeccccccccccca5, 0xbfe3362c0e7ba048, 0x0, 0x0, - 0xbfeccccccccccc95, 0xbfe34687fd74084f, + 0xbfecccccccccccb9, 0xbfe34687fd740776, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfe356ec881bd47c, + 0xbfeccccccccccd06, 0xbfe356ec881bd468, 0x0, 0x0, - 0xbfecccccccccccb2, 0xbfe36759ba5283f4, + 0xbfeccccccccccce1, 0xbfe36759ba5283e8, 0x0, 0x0, - 0xbfecccccccccccf7, 0xbfe377cfa00975b5, + 0xbfecccccccccccae, 0xbfe377cfa00975c9, 0x0, 0x0, - 0xbfeccccccccccce7, 0xbfe3884e45441468, + 0xbfeccccccccccce8, 0xbfe3884e454414a9, 0x0, 0x0, - 0xbfecccccccccccaf, 0xbfe398d5b617fcd5, + 0xbfeccccccccccce8, 0xbfe398d5b617fcc6, 0x0, 0x0, - 0xbfecccccccccccde, 0xbfe3a965fead2054, + 0xbfeccccccccccce2, 0xbfe3a965fead200e, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbfe3b9ff2b3ded14, + 0xbfeccccccccccc6d, 0xbfe3b9ff2b3ded99, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfe3caa148177630, + 0xbfecccccccccccd1, 0xbfe3caa14817765b, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbfe3db4c61999626, + 0xbfecccccccccccd0, 0xbfe3db4c619995ff, 0x0, 0x0, - 0xbfeccccccccccce0, 0xbfe3ec0084371951, + 0xbfecccccccccccd2, 0xbfe3ec008437196c, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfe3fcbdbc75e4f7, + 0xbfecccccccccccb4, 0xbfe3fcbdbc75e4db, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbfe40d8416ef1e2c, + 0xbfeccccccccccc9c, 0xbfe40d8416ef1e37, 0x0, 0x0, - 0xbfeccccccccccccf, 0xbfe41e53a04f5372, + 0xbfecccccccccccd7, 0xbfe41e53a04f5386, 0x0, 0x0, - 0xbfeccccccccccd13, 0xbfe42f2c6556a444, + 0xbfecccccccccccb7, 0xbfe42f2c6556a479, 0x0, 0x0, - 0xbfeccccccccccd34, 0xbfe4400e72d8eb57, + 0xbfecccccccccccdb, 0xbfe4400e72d8ead7, 0x0, 0x0, - 0xbfecccccccccccb9, 0xbfe450f9d5bde617, + 0xbfeccccccccccca8, 0xbfe450f9d5bde63d, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfe461ee9b01609c, + 0xbfecccccccccccbf, 0xbfe461ee9b0160ac, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfe472eccfb3606c, + 0xbfeccccccccccccc, 0xbfe472eccfb3604b, 0x0, 0x0, - 0xbfecccccccccccb3, 0xbfe483f480f84ba2, + 0xbfecccccccccccbc, 0xbfe483f480f84b4a, 0x0, 0x0, - 0xbfecccccccccccc1, 0xbfe49505bc09176b, + 0xbfeccccccccccce5, 0xbfe49505bc091784, 0x0, 0x0, - 0xbfeccccccccccce6, 0xbfe4a6208e3372aa, + 0xbfecccccccccccc4, 0xbfe4a6208e3372c7, 0x0, 0x0, - 0xbfecccccccccccdb, 0xbfe4b74504d9f12e, + 0xbfecccccccccccca, 0xbfe4b74504d9f11f, 0x0, 0x0, - 0xbfeccccccccccce2, 0xbfe4c8732d74379c, + 0xbfecccccccccccd5, 0xbfe4c8732d743822, 0x0, 0x0, - 0xbfeccccccccccce0, 0xbfe4d9ab158f2b15, + 0xbfeccccccccccd13, 0xbfe4d9ab158f2b54, 0x0, 0x0, - 0xbfecccccccccccb0, 0xbfe4eaeccacd1a76, + 0xbfecccccccccccd3, 0xbfe4eaeccacd1a94, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbfe4fc385ae5eea4, + 0xbfecccccccccccc3, 0xbfe4fc385ae5eebc, 0x0, 0x0, - 0xbfecccccccccccbd, 0xbfe50d8dd3a757af, + 0xbfeccccccccccd06, 0xbfe50d8dd3a757e5, 0x0, 0x0, - 0xbfecccccccccccf2, 0xbfe51eed42f4fbd2, + 0xbfecccccccccccd9, 0xbfe51eed42f4fbed, 0x0, 0x0, - 0xbfecccccccccccbc, 0xbfe53056b6c8a56f, + 0xbfecccccccccccc0, 0xbfe53056b6c8a5a5, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbfe541ca3d3273fd, + 0xbfeccccccccccd0c, 0xbfe541ca3d327424, 0x0, 0x0, - 0xbfeccccccccccc19, 0xbfe55347e4590a5c, + 0xbfeccccccccccd21, 0xbfe55347e4590a8d, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbfe564cfba79c271, + 0xbfeccccccccccca3, 0xbfe564cfba79c23e, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbfe57661cde8d699, + 0xbfecccccccccccca, 0xbfe57661cde8d683, 0x0, 0x0, - 0xbfeccccccccccce4, 0xbfe587fe2d119c66, + 0xbfecccccccccccdc, 0xbfe587fe2d119c67, 0x0, 0x0, - 0xbfecccccccccccfb, 0xbfe599a4e676b018, + 0xbfecccccccccccf0, 0xbfe599a4e676b079, 0x0, 0x0, - 0xbfecccccccccccaa, 0xbfe5ab5608b2299b, + 0xbfeccccccccccca7, 0xbfe5ab5608b22995, 0x0, 0x0, - 0xbfecccccccccccb2, 0xbfe5bd11a275cd54, + 0xbfecccccccccccc8, 0xbfe5bd11a275cd4d, 0x0, 0x0, - 0xbfecccccccccccce, 0xbfe5ced7c28b4167, + 0xbfecccccccccccc1, 0xbfe5ced7c28b416e, 0x0, 0x0, - 0xbfeccccccccccd00, 0xbfe5e0a877d440f0, + 0xbfeccccccccccc5a, 0xbfe5e0a877d440e2, 0x0, 0x0, - 0xbfeccccccccccd0a, 0xbfe5f283d14acf61, + 0xbfecccccccccccbe, 0xbfe5f283d14aceeb, 0x0, 0x0, - 0xbfecccccccccccb8, 0xbfe60469de016e8d, + 0xbfecccccccccccdf, 0xbfe60469de016ea3, 0x0, 0x0, - 0xbfeccccccccccce4, 0xbfe6165aad2353b6, + 0xbfecccccccccccd4, 0xbfe6165aad2353bd, 0x0, 0x0, - 0xbfecccccccccccb9, 0xbfe628564df49cde, + 0xbfeccccccccccce2, 0xbfe628564df49cdc, 0x0, 0x0, - 0xbfeccccccccccca2, 0xbfe63a5ccfd28854, + 0xbfecccccccccccc9, 0xbfe63a5ccfd28854, 0x0, 0x0, - 0xbfecccccccccccbf, 0xbfe64c6e4233aa96, + 0xbfecccccccccccbb, 0xbfe64c6e4233aa7a, 0x0, 0x0, - 0xbfeccccccccccca3, 0xbfe65e8ab4a82633, + 0xbfecccccccccccb6, 0xbfe65e8ab4a825fd, 0x0, 0x0, - 0xbfeccccccccccc83, 0xbfe670b236d9e512, + 0xbfeccccccccccc3f, 0xbfe670b236d9e3ef, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfe682e4d88ccc78, + 0xbfecccccccccccac, 0xbfe682e4d88ccc99, 0x0, 0x0, - 0xbfecccccccccccb4, 0xbfe69522a99effd8, + 0xbfecccccccccccd1, 0xbfe69522a99efff0, 0x0, 0x0, - 0xbfecccccccccccbb, 0xbfe6a76bba09101b, + 0xbfecccccccccccc0, 0xbfe6a76bba090ff2, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbfe6b9c019de3bb0, + 0xbfecccccccccccfe, 0xbfe6b9c019de3b96, 0x0, 0x0, - 0xbfecccccccccccb6, 0xbfe6cc1fd94ca91d, + 0xbfeccccccccccd07, 0xbfe6cc1fd94ca936, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfe6de8b089da0e2, + 0xbfecccccccccccdc, 0xbfe6de8b089da102, 0x0, 0x0, - 0xbfecccccccccccf8, 0xbfe6f101b835cc3d, + 0xbfecccccccccccd2, 0xbfe6f101b835cbf0, 0x0, 0x0, - 0xbfeccccccccccda9, 0xbfe70383f8956e08, + 0xbfecccccccccccea, 0xbfe70383f8956e55, 0x0, 0x0, - 0xbfeccccccccccd01, 0xbfe71611da58a4eb, + 0xbfecccccccccccad, 0xbfe71611da58a4d3, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbfe728ab6e37a645, + 0xbfecccccccccccc6, 0xbfe728ab6e37a656, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfe73b50c506fd5e, + 0xbfecccccccccccd5, 0xbfe73b50c506fd5c, 0x0, 0x0, - 0xbfecccccccccccf5, 0xbfe74e01efb7cb06, + 0xbfecccccccccccc6, 0xbfe74e01efb7cb39, 0x0, 0x0, - 0xbfeccccccccccd06, 0xbfe760beff58066d, + 0xbfecccccccccccc0, 0xbfe760beff5806b4, 0x0, 0x0, - 0xbfeccccccccccd09, 0xbfe773880512bc61, + 0xbfecccccccccccb1, 0xbfe773880512bcb4, 0x0, 0x0, - 0xbfecccccccccccfa, 0xbfe7865d1230516d, + 0xbfeccccccccccd12, 0xbfe7865d12305188, 0x0, 0x0, - 0xbfeccccccccccbe6, 0xbfe7993e3816c3df, + 0xbfecccccccccccb2, 0xbfe7993e3816c434, 0x0, 0x0, - 0xbfeccccccccccd6c, 0xbfe7ac2b8849ecd4, + 0xbfecccccccccccb4, 0xbfe7ac2b8849ecd6, 0x0, 0x0, - 0xbfeccccccccccc9e, 0xbfe7bf25146bc84f, + 0xbfecccccccccccc1, 0xbfe7bf25146bc873, 0x0, 0x0, - 0xbfeccccccccccced, 0xbfe7d22aee3cb2fe, + 0xbfecccccccccccde, 0xbfe7d22aee3cb2e2, 0x0, 0x0, - 0xbfeccccccccccc79, 0xbfe7e53d279bb2f2, + 0xbfecccccccccccb4, 0xbfe7e53d279bb2cb, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbfe7f85bd286bcb9, + 0xbfecccccccccccfe, 0xbfe7f85bd286bced, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfe80b87011af934, + 0xbfecccccccccccc0, 0xbfe80b87011af958, 0x0, 0x0, - 0xbfeccccccccccc97, 0xbfe81ebec5950c3d, + 0xbfecccccccccccc6, 0xbfe81ebec5950c4d, 0x0, 0x0, - 0xbfeccccccccccc24, 0xbfe8320332515cbc, + 0xbfecccccccccccb4, 0xbfe8320332515ca9, 0x0, 0x0, - 0xbfecccccccccccb1, 0xbfe8455459cc5c43, + 0xbfecccccccccccee, 0xbfe8455459cc5c68, 0x0, 0x0, - 0xbfeccccccccccce5, 0xbfe858b24ea2d351, + 0xbfecccccccccccd1, 0xbfe858b24ea2d35e, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfe86c1d23922689, + 0xbfecccccccccccd0, 0xbfe86c1d23922689, 0x0, 0x0, - 0xbfecccccccccccfb, 0xbfe87f94eb78a566, + 0xbfecccccccccccbe, 0xbfe87f94eb78a580, 0x0, 0x0, - 0xbfecccccccccccb8, 0xbfe89319b955d45e, + 0xbfeccccccccccca8, 0xbfe89319b955d465, 0x0, 0x0, - 0xbfeccccccccccd10, 0xbfe8a6aba04ab968, + 0xbfecccccccccccd7, 0xbfe8a6aba04ab973, 0x0, 0x0, - 0xbfeccccccccccd5b, 0xbfe8ba4ab39a2931, + 0xbfeccccccccccccc, 0xbfe8ba4ab39a2933, 0x0, 0x0, - 0xbfeccccccccccd55, 0xbfe8cdf706a91514, + 0xbfecccccccccccd0, 0xbfe8cdf706a9141f, 0x0, 0x0, - 0xbfecccccccccccfe, 0xbfe8e1b0acfed95c, + 0xbfecccccccccccca, 0xbfe8e1b0acfed919, 0x0, 0x0, - 0xbfeccccccccccd0a, 0xbfe8f577ba458de0, + 0xbfeccccccccccce8, 0xbfe8f577ba458e19, 0x0, 0x0, - 0xbfeccccccccccc8c, 0xbfe9094c424a58d0, + 0xbfecccccccccccbd, 0xbfe9094c424a5842, 0x0, 0x0, - 0xbfeccccccccccca0, 0xbfe91d2e58fdb8fc, + 0xbfeccccccccccca6, 0xbfe91d2e58fdb8fb, 0x0, 0x0, - 0xbfecccccccccccb1, 0xbfe9311e1273e0f2, + 0xbfecccccccccccf9, 0xbfe9311e1273e126, 0x0, 0x0, - 0xbfeccccccccccd00, 0xbfe9451b82e503ae, + 0xbfeccccccccccccf, 0xbfe9451b82e503ba, 0x0, 0x0, - 0xbfecccccccccccce, 0xbfe95926beadac9e, + 0xbfeccccccccccce7, 0xbfe95926beadac7b, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbfe96d3fda4f1184, + 0xbfeccccccccccc9b, 0xbfe96d3fda4f10bb, 0x0, 0x0, - 0xbfeccccccccccce1, 0xbfe98166ea6f6a0a, + 0xbfeccccccccccc8a, 0xbfe98166ea6f69d4, 0x0, 0x0, - 0xbfecccccccccccaf, 0xbfe9959c03da474e, + 0xbfecccccccccccdc, 0xbfe9959c03da47b6, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbfe9a9df3b80ec06, + 0xbfecccccccccccd9, 0xbfe9a9df3b80ec19, 0x0, 0x0, - 0xbfeccccccccccd08, 0xbfe9be30a67aa10c, + 0xbfeccccccccccd25, 0xbfe9be30a67aa121, 0x0, 0x0, - 0xbfecccccccccccff, 0xbfe9d2905a051458, + 0xbfeccccccccccca9, 0xbfe9d2905a051482, 0x0, 0x0, - 0xbfeccccccccccd48, 0xbfe9e6fe6b84b0be, + 0xbfeccccccccccca2, 0xbfe9e6fe6b84b08f, 0x0, 0x0, - 0xbfeccccccccccd1d, 0xbfe9fb7af084fa3e, + 0xbfeccccccccccc92, 0xbfe9fb7af084fa3c, 0x0, 0x0, - 0xbfeccccccccccdb6, 0xbfea1005feb8eb2a, + 0xbfeccccccccccd13, 0xbfea1005feb8eafc, 0x0, 0x0, - 0xbfeccccccccccce7, 0xbfea249fabfb51f0, + 0xbfeccccccccccd60, 0xbfea249fabfb522a, 0x0, 0x0, - 0xbfecccccccccccfa, 0xbfea39480e4f2ec8, + 0xbfecccccccccccd7, 0xbfea39480e4f2ec4, 0x0, 0x0, - 0xbfeccccccccccce2, 0xbfea4dff3be0144a, + 0xbfecccccccccccbc, 0xbfea4dff3be01432, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfea62c54b02885c, + 0xbfeccccccccccca2, 0xbfea62c54b028879, 0x0, 0x0, - 0xbfecccccccccccb6, 0xbfea779a52346624, + 0xbfecccccccccccb6, 0xbfea779a52346650, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbfea8c7e681d4116, + 0xbfecccccccccccdb, 0xbfea8c7e681d4114, 0x0, 0x0, - 0xbfecccccccccccea, 0xbfeaa171a38ec820, + 0xbfecccccccccccc5, 0xbfeaa171a38ec82c, 0x0, 0x0, - 0xbfeccccccccccc82, 0xbfeab6741b852ce8, + 0xbfeccccccccccc85, 0xbfeab6741b852c99, 0x0, 0x0, - 0xbfeccccccccccc9a, 0xbfeacb85e72786d4, + 0xbfeccccccccccd09, 0xbfeacb85e72786fc, 0x0, 0x0, - 0xbfeccccccccccce3, 0xbfeae0a71dc83f44, + 0xbfecccccccccccd2, 0xbfeae0a71dc83f2e, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbfeaf5d7d6e5762c, + 0xbfeccccccccccceb, 0xbfeaf5d7d6e5761c, 0x0, 0x0, - 0xbfecccccccccccbb, 0xbfeb0b182a296dcc, + 0xbfecccccccccccda, 0xbfeb0b182a296dc8, 0x0, 0x0, - 0xbfecccccccccccdd, 0xbfeb20682f6af56c, + 0xbfeccccccccccccc, 0xbfeb20682f6af578, 0x0, 0x0, - 0xbfecccccccccccf0, 0xbfeb35c7feadd54c, + 0xbfecccccccccccf3, 0xbfeb35c7feadd55a, 0x0, 0x0, - 0xbfecccccccccccb1, 0xbfeb4b37b0233cfc, + 0xbfecccccccccccd9, 0xbfeb4b37b0233ced, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfeb60b75c2a3150, + 0xbfeccccccccccd06, 0xbfeb60b75c2a30f2, 0x0, 0x0, - 0xbfeccccccccccca1, 0xbfeb76471b4ffb68, + 0xbfecccccccccccec, 0xbfeb76471b4ffb33, 0x0, 0x0, - 0xbfeccccccccccceb, 0xbfeb8be706509cf0, + 0xbfeccccccccccce1, 0xbfeb8be706509cc2, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbfeba19736173fc4, + 0xbfecccccccccccc0, 0xbfeba19736173fba, 0x0, 0x0, - 0xbfecccccccccccb6, 0xbfebb757c3beab00, + 0xbfecccccccccccc3, 0xbfebb757c3beab57, 0x0, 0x0, - 0xbfeccccccccccd05, 0xbfebcd28c891b858, + 0xbfecccccccccccb6, 0xbfebcd28c891b880, 0x0, 0x0, - 0xbfecccccccccccf9, 0xbfebe30a5e0bc9e0, + 0xbfecccccccccccd2, 0xbfebe30a5e0bc9de, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfebf8fc9dd94240, + 0xbfecccccccccccc3, 0xbfebf8fc9dd94240, 0x0, 0x0, - 0xbfeccccccccccca3, 0xbfec0effa1d7fea0, + 0xbfecccccccccccd5, 0xbfec0effa1d7fe28, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbfec25138417cef8, + 0xbfeccccccccccc8e, 0xbfec25138417cf38, 0x0, 0x0, - 0xbfecccccccccccfc, 0xbfec3b385edaf728, + 0xbfecccccccccccba, 0xbfec3b385edaf6fb, 0x0, 0x0, - 0xbfeccccccccccd29, 0xbfec516e4c96a5d0, + 0xbfecccccccccccde, 0xbfec516e4c96a5b7, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbfec67b567f378b0, + 0xbfecccccccccccc6, 0xbfec67b567f37969, 0x0, 0x0, - 0xbfeccccccccccd15, 0xbfec7e0dcbcdfad0, + 0xbfeccccccccccccc, 0xbfec7e0dcbcdfae5, 0x0, 0x0, - 0xbfecccccccccccf1, 0xbfec947793372540, + 0xbfecccccccccccf3, 0xbfec947793372586, 0x0, 0x0, - 0xbfeccccccccccd8c, 0xbfecaaf2d974e5c0, + 0xbfeccccccccccc16, 0xbfecaaf2d974e5a2, 0x0, 0x0, - 0xbfecccccccccd03c, 0xbfecc17fba029f00, + 0xbfeccccccccccef0, 0xbfecc17fba02a277, 0x0, 0x0, - 0xbfecccccccccccb5, 0xbfecd81e5091bc75, + 0xbfecccccccccccd2, 0xbfecd81e5091bc65, 0x0, 0x0, - 0xbfeccccccccccc5c, 0xbfeceeceb90a1d74, + 0xbfeccccccccccc4a, 0xbfeceeceb90a1d84, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfed05910f8ac0b7, + 0xbfecccccccccccc6, 0xbfed05910f8ac07d, 0x0, 0x0, - 0xbfeccccccccccc96, 0xbfed1c65706a3c12, + 0xbfeccccccccccd29, 0xbfed1c65706a3bd1, 0x0, 0x0, - 0xbfecccccccccccc1, 0xbfed334bf8374cfb, + 0xbfecccccccccccea, 0xbfed334bf8374cfc, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfed4a44c3b96985, + 0xbfecccccccccccbf, 0xbfed4a44c3b9699a, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfed614feff14e5f, + 0xbfecccccccccccf2, 0xbfed614feff14e50, 0x0, 0x0, - 0xbfecccccccccccce, 0xbfed786d9a199186, + 0xbfecccccccccccc4, 0xbfed786d9a1991c1, 0x0, 0x0, - 0xbfeccccccccccd1a, 0xbfed8f9ddfa73794, + 0xbfecccccccccccef, 0xbfed8f9ddfa73755, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbfeda6e0de4a4659, + 0xbfecccccccccccda, 0xbfeda6e0de4a468d, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfedbe36b3ee5fca, + 0xbfecccccccccccb7, 0xbfedbe36b3ee601a, 0x0, 0x0, - 0xbfeccccccccccca8, 0xbfedd59f7ebb582a, + 0xbfecccccccccccab, 0xbfedd59f7ebb5856, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfeded1b5d15d2a4, + 0xbfecccccccccccc8, 0xbfeded1b5d15d26e, 0x0, 0x0, - 0xbfeccccccccccd12, 0xbfee04aa6d9fdc16, + 0xbfecccccccccccde, 0xbfee04aa6d9fdbf0, 0x0, 0x0, - 0xbfeccccccccccd05, 0xbfee1c4ccf398da1, + 0xbfeccccccccccce0, 0xbfee1c4ccf398d42, 0x0, 0x0, - 0xbfeccccccccccce6, 0xbfee3402a101a9d0, + 0xbfecccccccccccf2, 0xbfee3402a101a993, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfee4bcc02563f34, + 0xbfecccccccccccab, 0xbfee4bcc02564028, 0x0, 0x0, - 0xbfeccccccccccd00, 0xbfee63a912d55184, + 0xbfecccccccccccd6, 0xbfee63a912d5519e, 0x0, 0x0, - 0xbfecccccccccccd7, 0xbfee7b99f25d797e, + 0xbfecccccccccccd8, 0xbfee7b99f25d798d, 0x0, 0x0, - 0xbfeccccccccccce0, 0xbfee939ec10e9219, + 0xbfecccccccccccc9, 0xbfee939ec10e91f6, 0x0, 0x0, - 0xbfecccccccccccae, 0xbfeeabb79f4a61ee, + 0xbfecccccccccccb0, 0xbfeeabb79f4a6204, 0x0, 0x0, - 0xbfecccccccccccef, 0xbfeec3e4adb547b0, + 0xbfecccccccccccce, 0xbfeec3e4adb54790, 0x0, 0x0, - 0xbfecccccccccccdb, 0xbfeedc260d36e8dc, + 0xbfecccccccccccba, 0xbfeedc260d36e8c5, 0x0, 0x0, - 0xbfeccccccccccca1, 0xbfeef47bdefae372, + 0xbfecccccccccccc7, 0xbfeef47bdefae3f6, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbfef0ce64471815b, + 0xbfecccccccccccf5, 0xbfef0ce644718154, 0x0, 0x0, - 0xbfecccccccccccb7, 0xbfef25655f506c03, + 0xbfecccccccccccd0, 0xbfef25655f506bba, 0x0, 0x0, - 0xbfeccccccccccce4, 0xbfef3df9519364fc, + 0xbfecccccccccccc5, 0xbfef3df9519364be, 0x0, 0x0, - 0xbfecccccccccccb3, 0xbfef56a23d7d0060, + 0xbfeccccccccccce5, 0xbfef56a23d7d0094, 0x0, 0x0, - 0xbfecccccccccccf2, 0xbfef6f604597618c, + 0xbfecccccccccccd3, 0xbfef6f60459761af, 0x0, 0x0, - 0xbfecccccccccccf3, 0xbfef88338cb4f756, + 0xbfecccccccccccda, 0xbfef88338cb4f738, 0x0, 0x0, - 0xbfecccccccccccbc, 0xbfefa11c35f13e68, + 0xbfecccccccccccd6, 0xbfefa11c35f13e30, 0x0, 0x0, - 0xbfeccccccccccddc, 0xbfefba1a64b184b4, + 0xbfecccccccccccc0, 0xbfefba1a64b18448, 0x0, 0x0, - 0xbfeccccccccccc98, 0xbfefd32e3ca5af68, + 0xbfecccccccccccca, 0xbfefd32e3ca5aebd, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbfefec57e1c9010c, + 0xbfecccccccccccb0, 0xbfefec57e1c90132, 0x0, 0x0, - 0xbfecccccccccccb1, 0xbff002cbbc317402, + 0xbfecccccccccccd3, 0xbff002cbbc3173fa, 0x0, 0x0, - 0xbfecccccccccccac, 0xbff00f769283e3d0, + 0xbfecccccccccccbc, 0xbff00f769283e3ea, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbff01c2c864ce591, + 0xbfeccccccccccca8, 0xbff01c2c864ce5b4, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbff028edaa24db68, + 0xbfecccccccccccea, 0xbff028edaa24db8a, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbff035ba10cbdea0, + 0xbfecccccccccccca, 0xbff035ba10cbdeac, 0x0, 0x0, - 0xbfeccccccccccc73, 0xbff04291cd2a2bc5, + 0xbfeccccccccccd12, 0xbff04291cd2a2b90, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbff04f74f2508f58, + 0xbfecccccccccccfc, 0xbff04f74f2508f67, 0x0, 0x0, - 0xbfecccccccccccde, 0xbff05c639378d5b0, + 0xbfecccccccccccee, 0xbff05c639378d5a8, 0x0, 0x0, - 0xbfecccccccccccce, 0xbff0695dc40639fe, + 0xbfeccccccccccccb, 0xbff0695dc40639e0, 0x0, 0x0, - 0xbfecccccccccccdf, 0xbff076639785d81d, + 0xbfeccccccccccce1, 0xbff076639785d806, 0x0, 0x0, - 0xbfecccccccccccce, 0xbff0837521af1fee, + 0xbfecccccccccccb8, 0xbff0837521af1ff1, 0x0, 0x0, - 0xbfecccccccccccde, 0xbff090927664498a, + 0xbfecccccccccccbc, 0xbff0909276644981, 0x0, 0x0, - 0xbfeccccccccccce4, 0xbff09dbba9b2cb04, + 0xbfecccccccccccd8, 0xbff09dbba9b2cb17, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbff0aaf0cfd3d09c, + 0xbfeccccccccccc9e, 0xbff0aaf0cfd3d056, 0x0, 0x0, - 0xbfecccccccccccae, 0xbff0b831fd2cb494, + 0xbfecccccccccccb0, 0xbff0b831fd2cb493, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbff0c57f464f7b2b, + 0xbfecccccccccccc0, 0xbff0c57f464f7b46, 0x0, 0x0, - 0xbfecccccccccccb8, 0xbff0d2d8bffb4e18, + 0xbfecccccccccccd6, 0xbff0d2d8bffb4e12, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbff0e03e7f1cfa0a, + 0xbfecccccccccccb2, 0xbff0e03e7f1cf9fe, 0x0, 0x0, - 0xbfecccccccccccf8, 0xbff0edb098cf6f1f, + 0xbfecccccccccccbc, 0xbff0edb098cf6ee4, 0x0, 0x0, - 0xbfeccccccccccce7, 0xbff0fb2f225c408b, + 0xbfecccccccccccce, 0xbff0fb2f225c4092, 0x0, 0x0, - 0xbfeccccccccccc9e, 0xbff108ba313c2971, + 0xbfecccccccccccd1, 0xbff108ba313c2974, 0x0, 0x0, - 0xbfecccccccccccb4, 0xbff11651db178f40, + 0xbfecccccccccccf2, 0xbff11651db178f89, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbff123f635c709fc, + 0xbfecccccccccccd0, 0xbff123f635c70a14, 0x0, 0x0, - 0xbfecccccccccccf0, 0xbff131a75753ea52, + 0xbfecccccccccccc9, 0xbff131a75753ea67, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbff13f6555f8c507, + 0xbfecccccccccccd4, 0xbff13f6555f8c4f0, 0x0, 0x0, - 0xbfeccccccccccce2, 0xbff14d304821fd8d, + 0xbfecccccccccccdb, 0xbff14d304821fdac, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbff15b08446e54da, + 0xbfecccccccccccd6, 0xbff15b08446e54c0, 0x0, 0x0, - 0xbfeccccccccccd06, 0xbff168ed61af774a, + 0xbfeccccccccccce6, 0xbff168ed61af773b, 0x0, 0x0, - 0xbfeccccccccccd04, 0xbff176dfb6ea8ed8, + 0xbfeccccccccccd08, 0xbff176dfb6ea8f15, 0x0, 0x0, - 0xbfeccccccccccd85, 0xbff184df5b58d6f1, + 0xbfeccccccccccdc3, 0xbff184df5b58d648, 0x0, 0x0, - 0xbfeccccccccccd10, 0xbff192ec66682f76, + 0xbfeccccccccccc6c, 0xbff192ec66682f85, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbff1a106efbbb744, + 0xbfecccccccccccde, 0xbff1a106efbbb752, 0x0, 0x0, - 0xbfecccccccccccee, 0xbff1af2f0f2c62a1, + 0xbfecccccccccccda, 0xbff1af2f0f2c6292, 0x0, 0x0, - 0xbfecccccccccccb4, 0xbff1bd64dcc9979e, + 0xbfecccccccccccd4, 0xbff1bd64dcc997ac, 0x0, 0x0, - 0xbfecccccccccccce, 0xbff1cba870d9cc48, + 0xbfecccccccccccae, 0xbff1cba870d9cc49, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbff1d9f9e3db2522, + 0xbfecccccccccccc2, 0xbff1d9f9e3db2532, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbff1e8594e84179b, + 0xbfecccccccccccc6, 0xbff1e8594e841792, 0x0, 0x0, - 0xbfecccccccccccce, 0xbff1f6c6c9c40d6b, + 0xbfecccccccccccd8, 0xbff1f6c6c9c40d12, 0x0, 0x0, - 0xbfeccccccccccc94, 0xbff205426ec40adc, + 0xbfecccccccccccfc, 0xbff205426ec40afc, 0x0, 0x0, - 0xbfeccccccccccce2, 0xbff213cc56e758b6, + 0xbfecccccccccccce, 0xbff213cc56e758a8, 0x0, 0x0, - 0xbfecccccccccccb7, 0xbff222649bcc2c8f, + 0xbfecccccccccccbc, 0xbff222649bcc2c8c, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbff2310b574c57a6, + 0xbfecccccccccccc7, 0xbff2310b574c57a0, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbff23fc0a37df5bb, + 0xbfeccccccccccccc, 0xbff23fc0a37df5a4, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbff24e849ab41f8d, + 0xbfecccccccccccd0, 0xbff24e849ab41f78, 0x0, 0x0, - 0xbfeccccccccccced, 0xbff25d57577f9e26, + 0xbfecccccccccccee, 0xbff25d57577f9e36, 0x0, 0x0, - 0xbfecccccccccccd4, 0xbff26c38f4afa36a, + 0xbfeccccccccccd05, 0xbff26c38f4afa347, 0x0, 0x0, - 0xbfeccccccccccc54, 0xbff27b298d528192, + 0xbfecccccccccccc2, 0xbff27b298d528171, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbff28a293cb668a8, + 0xbfeccccccccccccd, 0xbff28a293cb6689e, 0x0, 0x0, - 0xbfecccccccccccb9, 0xbff299381e6a24d0, + 0xbfecccccccccccb6, 0xbff299381e6a24c6, 0x0, 0x0, - 0xbfecccccccccccc1, 0xbff2a8564e3ddf03, + 0xbfecccccccccccfb, 0xbff2a8564e3ddef6, 0x0, 0x0, - 0xbfecccccccccccdd, 0xbff2b783e843e206, + 0xbfeccccccccccce0, 0xbff2b783e843e1ff, 0x0, 0x0, - 0xbfecccccccccccf9, 0xbff2c6c108d1603a, + 0xbfeccccccccccccf, 0xbff2c6c108d1601d, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbff2d60dcc7f3de2, + 0xbfecccccccccccbf, 0xbff2d60dcc7f3ddb, 0x0, 0x0, - 0xbfecccccccccccae, 0xbff2e56a502add87, + 0xbfecccccccccccd4, 0xbff2e56a502add80, 0x0, 0x0, - 0xbfecccccccccccbf, 0xbff2f4d6b0f6ee36, + 0xbfeccccccccccd02, 0xbff2f4d6b0f6ee5b, 0x0, 0x0, - 0xbfeccccccccccce4, 0xbff304530c4c4070, + 0xbfecccccccccccdf, 0xbff304530c4c4066, 0x0, 0x0, - 0xbfecccccccccccd7, 0xbff313df7fda9788, + 0xbfecccccccccccd2, 0xbff313df7fda9788, 0x0, 0x0, - 0xbfeccccccccccce3, 0xbff3237c29998543, + 0xbfecccccccccccdd, 0xbff3237c29998548, 0x0, 0x0, - 0xbfecccccccccccb4, 0xbff3332927c943ce, + 0xbfecccccccccccdb, 0xbff3332927c943ce, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbff342e698f3943b, + 0xbfecccccccccccd1, 0xbff342e698f39444, 0x0, 0x0, - 0xbfecccccccccccef, 0xbff352b49beca0b6, + 0xbfecccccccccccc8, 0xbff352b49beca0b7, 0x0, 0x0, - 0xbfeccccccccccdc9, 0xbff362934fd3e121, + 0xbfecccccccccccc5, 0xbff362934fd3e176, 0x0, 0x0, - 0xbfeccccccccccc61, 0xbff37282d41503f8, + 0xbfecccccccccccef, 0xbff37282d41503bd, 0x0, 0x0, - 0xbfecccccccccccb4, 0xbff382834868d81e, + 0xbfeccccccccccccd, 0xbff382834868d82b, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbff39294ccd63f24, + 0xbfeccccccccccce2, 0xbff39294ccd63f15, 0x0, 0x0, - 0xbfecccccccccccdd, 0xbff3a2b781b31c8e, + 0xbfeccccccccccd01, 0xbff3a2b781b31c8f, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbff3b2eb87a54e38, + 0xbfeccccccccccca1, 0xbff3b2eb87a54e18, 0x0, 0x0, - 0xbfecccccccccccb9, 0xbff3c330ffa3a468, + 0xbfeccccccccccccf, 0xbff3c330ffa3a47b, 0x0, 0x0, - 0xbfeccccccccccce0, 0xbff3d3880af6e0be, + 0xbfecccccccccccba, 0xbff3d3880af6e0a4, 0x0, 0x0, - 0xbfeccccccccccd09, 0xbff3e3f0cb3ab525, + 0xbfecccccccccccfd, 0xbff3e3f0cb3ab531, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbff3f46b625ecb4f, + 0xbfeccccccccccccf, 0xbff3f46b625ecb49, 0x0, 0x0, - 0xbfecccccccccccde, 0xbff404f7f2a7caa8, + 0xbfecccccccccccb1, 0xbff404f7f2a7caa9, 0x0, 0x0, - 0xbfeccccccccccca7, 0xbff415969eb066fc, + 0xbfecccccccccccec, 0xbff415969eb066f6, 0x0, 0x0, - 0xbfecccccccccccab, 0xbff42647896a7011, + 0xbfecccccccccccbf, 0xbff42647896a7019, 0x0, 0x0, - 0xbfecccccccccccb0, 0xbff4370ad61fe67c, + 0xbfecccccccccccbc, 0xbff4370ad61fe68c, 0x0, 0x0, - 0xbfecccccccccccfd, 0xbff447e0a8741466, + 0xbfecccccccccccd4, 0xbff447e0a8741462, 0x0, 0x0, - 0xbfeccccccccccd04, 0xbff458c92464aa9c, + 0xbfecccccccccccc7, 0xbff458c92464aa82, 0x0, 0x0, - 0xbfeccccccccccd4b, 0xbff469c46e4ae118, + 0xbfecccccccccccf7, 0xbff469c46e4ae16c, 0x0, 0x0, - 0xbfeccccccccccce9, 0xbff47ad2aadc9e38, + 0xbfecccccccccccd9, 0xbff47ad2aadc9e70, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbff48bf3ff2d9f06, + 0xbfecccccccccccc3, 0xbff48bf3ff2d9eff, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbff49d2890b0a59c, + 0xbfecccccccccccc9, 0xbff49d2890b0a590, 0x0, 0x0, - 0xbfecccccccccccec, 0xbff4ae708538adea, + 0xbfeccccccccccce4, 0xbff4ae708538adbc, 0x0, 0x0, - 0xbfeccccccccccce5, 0xbff4bfcc02fa23cc, + 0xbfeccccccccccc95, 0xbff4bfcc02fa23ce, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbff4d13b308c20a4, + 0xbfeccccccccccccc, 0xbff4d13b308c206f, 0x0, 0x0, - 0xbfeccccccccccd04, 0xbff4e2be34e9ab21, + 0xbfecccccccccccd4, 0xbff4e2be34e9aae6, 0x0, 0x0, - 0xbfeccccccccccdab, 0xbff4f4553772fef2, + 0xbfeccccccccccce8, 0xbff4f4553772fea0, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbff506005feed73f, + 0xbfecccccccccccea, 0xbff506005feed756, 0x0, 0x0, - 0xbfeccccccccccc88, 0xbff517bfd68bbf1a, + 0xbfecccccccccccbd, 0xbff517bfd68bbf14, 0x0, 0x0, - 0xbfecccccccccccbd, 0xbff52993c3e166d2, + 0xbfecccccccccccd4, 0xbff52993c3e166b9, 0x0, 0x0, - 0xbfeccccccccccca5, 0xbff53b7c50f1fe4c, + 0xbfecccccccccccd8, 0xbff53b7c50f1fe61, 0x0, 0x0, - 0xbfeccccccccccc81, 0xbff54d79a72b961e, + 0xbfeccccccccccccc, 0xbff54d79a72b9616, 0x0, 0x0, - 0xbfeccccccccccc79, 0xbff55f8bf06983dc, + 0xbfecccccccccccc7, 0xbff55f8bf06983eb, 0x0, 0x0, - 0xbfecccccccccccfc, 0xbff571b356f5ced0, + 0xbfecccccccccccac, 0xbff571b356f5ce6c, 0x0, 0x0, - 0xbfeccccccccccc7c, 0xbff583f0058a9f20, + 0xbfeccccccccccd41, 0xbff583f0058a9d96, 0x0, 0x0, - 0xbfeccccccccccc9d, 0xbff596422753b1ac, + 0xbfeccccccccccd87, 0xbff596422753b1ba, 0x0, 0x0, - 0xbfecccccccccccf8, 0xbff5a8a9e7efdf1d, + 0xbfecccccccccccb0, 0xbff5a8a9e7efdf5a, 0x0, 0x0, - 0xbfecccccccccccad, 0xbff5bb27737291a5, + 0xbfecccccccccccb5, 0xbff5bb27737291a0, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbff5cdbaf66553b8, + 0xbfecccccccccccc3, 0xbff5cdbaf6655388, 0x0, 0x0, - 0xbfeccccccccccc97, 0xbff5e0649dc95e25, + 0xbfeccccccccccd23, 0xbff5e0649dc95e15, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbff5f32497192cd0, + 0xbfecccccccccccc5, 0xbff5f32497192cc8, 0x0, 0x0, - 0xbfecccccccccccd4, 0xbff605fb104a1a41, + 0xbfeccccccccccce6, 0xbff605fb104a1a1b, 0x0, 0x0, - 0xbfeccccccccccd64, 0xbff618e837ce0126, + 0xbfecccccccccccfd, 0xbff618e837ce00d3, 0x0, 0x0, - 0xbfeccccccccccca3, 0xbff62bec3c94e4c0, + 0xbfecccccccccccb9, 0xbff62bec3c94e4d2, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbff63f074e0ea333, + 0xbfecccccccccccd4, 0xbff63f074e0ea312, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbff652399c2ca72f, + 0xbfeccccccccccccd, 0xbff652399c2ca73b, 0x0, 0x0, - 0xbfecccccccccccf4, 0xbff665835763a946, + 0xbfecccccccccccf1, 0xbff665835763a99b, 0x0, 0x0, - 0xbfecccccccccccee, 0xbff678e4b0ad73b2, + 0xbfecccccccccccbb, 0xbff678e4b0ad73ad, 0x0, 0x0, - 0xbfeccccccccccc24, 0xbff68c5dd98aac5e, + 0xbfeccccccccccce2, 0xbff68c5dd98aac5e, 0x0, 0x0, - 0xbfeccccccccccc6e, 0xbff69fef0404ab60, + 0xbfecccccccccccd0, 0xbff69fef0404ab26, 0x0, 0x0, - 0xbfeccccccccccd7d, 0xbff6b39862af5395, + 0xbfeccccccccccd30, 0xbff6b39862af5350, 0x0, 0x0, - 0xbfecccccccccccf3, 0xbff6c75a28aaf62e, + 0xbfeccccccccccd0b, 0xbff6c75a28aaf68a, 0x0, 0x0, - 0xbfeccccccccccd88, 0xbff6db3489a64076, + 0xbfecccccccccccd9, 0xbff6db3489a64071, 0x0, 0x0, - 0xbfecccccccccccca, 0xbff6ef27b9e027dd, + 0xbfecccccccccccc2, 0xbff6ef27b9e02804, 0x0, 0x0, - 0xbfeccccccccccc9b, 0xbff70333ee29ebe2, + 0xbfecccccccccccb2, 0xbff70333ee29ebe2, 0x0, 0x0, - 0xbfecccccccccccea, 0xbff717595be9152c, + 0xbfecccccccccccd8, 0xbff717595be91516, 0x0, 0x0, - 0xbfeccccccccccd07, 0xbff72b983919833e, + 0xbfecccccccccccda, 0xbff72b9839198306, 0x0, 0x0, - 0xbfeccccccccccc52, 0xbff73ff0bc4f8036, + 0xbfecccccccccccc6, 0xbff73ff0bc4f8024, 0x0, 0x0, - 0xbfeccccccccccca0, 0xbff754631cb9dfaa, + 0xbfecccccccccccd1, 0xbff754631cb9df2e, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbff768ef92242236, + 0xbfecccccccccccff, 0xbff768ef9224221b, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbff77d9654f8a942, + 0xbfecccccccccccd7, 0xbff77d9654f8a92b, 0x0, 0x0, - 0xbfecccccccccccb6, 0xbff792579e42ec9c, + 0xbfecccccccccccc5, 0xbff792579e42ecab, 0x0, 0x0, - 0xbfecccccccccccbd, 0xbff7a733a7b1bf26, + 0xbfecccccccccccc0, 0xbff7a733a7b1bf0a, 0x0, 0x0, - 0xbfecccccccccccde, 0xbff7bc2aab9999fa, + 0xbfeccccccccccce6, 0xbff7bc2aab9999d4, 0x0, 0x0, - 0xbfeccccccccccc81, 0xbff7d13ce4f6f3f1, + 0xbfeccccccccccca4, 0xbff7d13ce4f6f3d3, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbff7e66a8f70a111, + 0xbfecccccccccccd2, 0xbff7e66a8f70a120, 0x0, 0x0, - 0xbfeccccccccccc42, 0xbff7fbb3e75a3f70, + 0xbfeccccccccccd18, 0xbff7fbb3e75a3f92, 0x0, 0x0, - 0xbfecccccccccccb4, 0xbff8111929b6a8d4, + 0xbfecccccccccccb3, 0xbff8111929b6a8a8, 0x0, 0x0, - 0xbfecccccccccccab, 0xbff8269a943a782e, + 0xbfeccccccccccce3, 0xbff8269a943a782c, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbff83c38654e9095, + 0xbfecccccccccccf6, 0xbff83c38654e90a8, 0x0, 0x0, - 0xbfeccccccccccceb, 0xbff851f2dc12b571, + 0xbfeccccccccccd00, 0xbff851f2dc12b581, 0x0, 0x0, - 0xbfecccccccccccea, 0xbff867ca38602c06, + 0xbfecccccccccccb4, 0xbff867ca38602c12, 0x0, 0x0, - 0xbfecccccccccccca, 0xbff87dbebacc696b, + 0xbfecccccccccccde, 0xbff87dbebacc6988, 0x0, 0x0, - 0xbfeccccccccccc7a, 0xbff893d0a4abcb95, + 0xbfecccccccccccdb, 0xbff893d0a4abcba2, 0x0, 0x0, - 0xbfeccccccccccc54, 0xbff8aa0038145ecd, + 0xbfecccccccccccc4, 0xbff8aa0038145ef2, 0x0, 0x0, - 0xbfecccccccccccb5, 0xbff8c04db7e0b06a, + 0xbfeccccccccccce1, 0xbff8c04db7e0b06a, 0x0, 0x0, - 0xbfeccccccccccceb, 0xbff8d6b967b2acb0, + 0xbfeccccccccccccd, 0xbff8d6b967b2ac9f, 0x0, 0x0, - 0xbfeccccccccccca2, 0xbff8ed438bf68a6e, + 0xbfecccccccccccce, 0xbff8ed438bf68a5a, 0x0, 0x0, - 0xbfeccccccccccd04, 0xbff903ec69e5c452, + 0xbfecccccccccccc0, 0xbff903ec69e5c450, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbff91ab4478a1e82, + 0xbfecccccccccccdf, 0xbff91ab4478a1e83, 0x0, 0x0, - 0xbfeccccccccccceb, 0xbff9319b6bc0bad2, + 0xbfecccccccccccc0, 0xbff9319b6bc0bacf, 0x0, 0x0, - 0xbfeccccccccccc90, 0xbff948a21e3d3a48, + 0xbfecccccccccccdb, 0xbff948a21e3d3a34, 0x0, 0x0, - 0xbfeccccccccccc63, 0xbff95fc8a78ced6a, + 0xbfecccccccccccc6, 0xbff95fc8a78ced54, 0x0, 0x0, - 0xbfecccccccccccf2, 0xbff9770f511a13a8, + 0xbfeccccccccccce0, 0xbff9770f511a13c9, 0x0, 0x0, - 0xbfecccccccccccd4, 0xbff98e76652f2863, + 0xbfecccccccccccc2, 0xbff98e76652f2855, 0x0, 0x0, - 0xbfeccccccccccced, 0xbff9a5fe2efa3ef7, + 0xbfecccccccccccd0, 0xbff9a5fe2efa3f08, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbff9bda6fa907193, + 0xbfecccccccccccd5, 0xbff9bda6fa90719c, 0x0, 0x0, - 0xbfecccccccccccb8, 0xbff9d57114f15b00, + 0xbfecccccccccccb5, 0xbff9d57114f15afc, 0x0, 0x0, - 0xbfecccccccccccb9, 0xbff9ed5ccc0aa49e, + 0xbfeccccccccccccc, 0xbff9ed5ccc0aa4a0, 0x0, 0x0, - 0xbfeccccccccccc7d, 0xbffa056a6ebba34d, + 0xbfecccccccccccaf, 0xbffa056a6ebba348, 0x0, 0x0, - 0xbfeccccccccccc42, 0xbffa1d9a4cd9044e, + 0xbfeccccccccccc9c, 0xbffa1d9a4cd9046d, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbffa35ecb7308df9, + 0xbfecccccccccccd4, 0xbffa35ecb7308df4, 0x0, 0x0, - 0xbfeccccccccccca5, 0xbffa4e61ff8cef2d, + 0xbfecccccccccccb4, 0xbffa4e61ff8cef40, 0x0, 0x0, - 0xbfecccccccccccce, 0xbffa66fa78b9a308, + 0xbfecccccccccccdd, 0xbffa66fa78b9a2fe, 0x0, 0x0, - 0xbfeccccccccccced, 0xbffa7fb67686e587, + 0xbfecccccccccccb7, 0xbffa7fb67686e560, 0x0, 0x0, - 0xbfeccccccccccd05, 0xbffa98964dcdbbc9, + 0xbfecccccccccccdf, 0xbffa98964dcdbbb9, 0x0, 0x0, - 0xbfecccccccccccb6, 0xbffab19a54740f96, + 0xbfecccccccccccd0, 0xbffab19a54740f83, 0x0, 0x0, - 0xbfeccccccccccd30, 0xbffacac2e170dd60, + 0xbfecccccccccccc9, 0xbffacac2e170dd35, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbffae4104cd07809, + 0xbfeccccccccccb9f, 0xbffae4104cd07792, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbffafd82efb8dea2, + 0xbfeccccccccccca0, 0xbffafd82efb8ded8, 0x0, 0x0, - 0xbfecccccccccccfa, 0xbffb171b246e2ba4, + 0xbfeccccccccccca9, 0xbffb171b246e2bbb, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbffb30d946571384, + 0xbfecccccccccccd4, 0xbffb30d946571379, 0x0, 0x0, - 0xbfecccccccccccd4, 0xbffb4abdb2017dad, + 0xbfecccccccccccef, 0xbffb4abdb2017d96, 0x0, 0x0, - 0xbfeccccccccccce4, 0xbffb64c8c5273245, + 0xbfecccccccccccb1, 0xbffb64c8c5273240, 0x0, 0x0, - 0xbfeccccccccccc9b, 0xbffb7efadeb29eff, + 0xbfecccccccccccd6, 0xbffb7efadeb29f06, 0x0, 0x0, - 0xbfeccccccccccce2, 0xbffb99545ec3b2fe, + 0xbfeccccccccccce4, 0xbffb99545ec3b30b, 0x0, 0x0, - 0xbfeccccccccccd05, 0xbffbb3d5a6b4d339, + 0xbfecccccccccccd2, 0xbffbb3d5a6b4d307, 0x0, 0x0, - 0xbfeccccccccccca6, 0xbffbce7f191fe5b0, + 0xbfeccccccccccd30, 0xbffbce7f191fe5a8, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbffbe95119e378e3, + 0xbfeccccccccccce2, 0xbffbe95119e378d0, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbffc044c0e2800ec, + 0xbfecccccccccccd5, 0xbffc044c0e2800cb, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbffc1f705c6530fb, + 0xbfecccccccccccd6, 0xbffc1f705c65310c, 0x0, 0x0, - 0xbfecccccccccccb2, 0xbffc3abe6c67700f, + 0xbfecccccccccccc5, 0xbffc3abe6c676ff9, 0x0, 0x0, - 0xbfeccccccccccced, 0xbffc5636a75566a6, + 0xbfeccccccccccccb, 0xbffc5636a75566ba, 0x0, 0x0, - 0xbfecccccccccccad, 0xbffc71d977b5aabf, + 0xbfecccccccccccc8, 0xbffc71d977b5aabc, 0x0, 0x0, - 0xbfecccccccccccef, 0xbffc8da749748716, + 0xbfeccccccccccca0, 0xbffc8da7497486cf, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbffca9a089e9df6b, + 0xbfecccccccccccdc, 0xbffca9a089e9df53, 0x0, 0x0, - 0xbfecccccccccccaf, 0xbffcc5c5a7df34be, + 0xbfeccccccccccce6, 0xbffcc5c5a7df34b5, 0x0, 0x0, - 0xbfecccccccccccad, 0xbffce2171395c5bb, + 0xbfecccccccccccc5, 0xbffce2171395c5c6, 0x0, 0x0, - 0xbfecccccccccccd7, 0xbffcfe953ecccfaa, + 0xbfecccccccccccd6, 0xbffcfe953ecccfa5, 0x0, 0x0, - 0xbfecccccccccccaf, 0xbffd1b409cc7eebc, + 0xbfeccccccccccce7, 0xbffd1b409cc7eecd, 0x0, 0x0, - 0xbfecccccccccccd4, 0xbffd3819a255a101, + 0xbfecccccccccccd2, 0xbffd3819a255a103, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbffd5520c5d5e819, + 0xbfeccccccccccce3, 0xbffd5520c5d5e80f, 0x0, 0x0, - 0xbfecccccccccccab, 0xbffd72567f411015, + 0xbfeccccccccccce9, 0xbffd72567f410fb8, 0x0, 0x0, - 0xbfeccccccccccd0d, 0xbffd8fbb482e96da, + 0xbfecccccccccccbb, 0xbffd8fbb482e96da, 0x0, 0x0, - 0xbfeccccccccccce2, 0xbffdad4f9bdc3b08, + 0xbfecccccccccccbd, 0xbffdad4f9bdc3b0a, 0x0, 0x0, - 0xbfecccccccccccee, 0xbffdcb13f7352bf6, + 0xbfecccccccccccc8, 0xbffdcb13f7352bf5, 0x0, 0x0, - 0xbfeccccccccccce0, 0xbffde908d8d9616f, + 0xbfeccccccccccd01, 0xbffde908d8d9617c, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbffe072ec1251aee, + 0xbfeccccccccccce1, 0xbffe072ec1251afb, 0x0, 0x0, - 0xbfeccccccccccd1f, 0xbffe258632388470, + 0xbfecccccccccccbf, 0xbffe25863238844e, 0x0, 0x0, - 0xbfeccccccccccd29, 0xbffe440fafff84e4, + 0xbfecccccccccccc4, 0xbffe440fafff84d9, 0x0, 0x0, - 0xbfeccccccccccd3c, 0xbffe62cbc039b74e, + 0xbfeccccccccccd18, 0xbffe62cbc039b710, 0x0, 0x0, - 0xbfeccccccccccc52, 0xbffe81baea828aa8, + 0xbfeccccccccccc9e, 0xbffe81baea828a73, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbffea0ddb859948e, + 0xbfecccccccccccbe, 0xbffea0ddb8599488, 0x0, 0x0, - 0xbfeccccccccccce6, 0xbffec034b52b06e2, + 0xbfecccccccccccb3, 0xbffec034b52b06c9, 0x0, 0x0, - 0xbfecccccccccccc1, 0xbffedfc06e585b76, + 0xbfecccccccccccd0, 0xbffedfc06e585b6d, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbffeff8173412b99, + 0xbfecccccccccccd1, 0xbffeff8173412b90, 0x0, 0x0, - 0xbfeccccccccccc9d, 0xbfff1f78554c3639, + 0xbfecccccccccccbb, 0xbfff1f78554c363c, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfff3fa5a7f099dd, + 0xbfeccccccccccccd, 0xbfff3fa5a7f099de, 0x0, 0x0, - 0xbfeccccccccccc89, 0xbfff600a00bf3fcb, + 0xbfeccccccccccce3, 0xbfff600a00bf3ffa, 0x0, 0x0, - 0xbfeccccccccccd03, 0xbfff80a5f76c7a63, + 0xbfeccccccccccca7, 0xbfff80a5f76c7a9a, 0x0, 0x0, - 0xbfeccccccccccca5, 0xbfffa17a25d9db34, + 0xbfecccccccccccc2, 0xbfffa17a25d9db41, 0x0, 0x0, - 0xbfecccccccccccb1, 0xbfffc28728203ad9, + 0xbfecccccccccccc9, 0xbfffc28728203ae4, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfffe3cd9c99fd8a, + 0xbfeccccccccccce2, 0xbfffe3cd9c99fd90, 0x0, 0x0, - 0xbfecccccccccccde, 0xc00002a711f6c70a, + 0xbfeccccccccccc95, 0xc00002a711f6c6fd, 0x0, 0x0, - 0xbfecccccccccccbd, 0xc0001384b08c099a, + 0xbfeccccccccccce6, 0xc0001384b08c098e, 0x0, 0x0, - 0xbfeccccccccccced, 0xc000247ffcbc31c4, + 0xbfecccccccccccbf, 0xc000247ffcbc31bd, 0x0, 0x0, - 0xbfecccccccccccf7, 0xc00035994a6d1a07, + 0xbfeccccccccccc58, 0xc00035994a6d1a22, 0x0, 0x0, - 0xbfecccccccccccdf, 0xc00046d0eec0c4b0, + 0xbfecccccccccccc3, 0xc00046d0eec0c4ac, 0x0, 0x0, - 0xbfecccccccccccdf, 0xc0005827401b329d, + 0xbfecccccccccccd4, 0xc0005827401b32a6, 0x0, 0x0, - 0xbfecccccccccccaf, 0xc000699c96285e2d, + 0xbfecccccccccccc6, 0xc000699c96285e3e, 0x0, 0x0, - 0xbfecccccccccccd2, 0xc0007b3149e25608, + 0xbfeccccccccccce7, 0xc0007b3149e25610, 0x0, 0x0, - 0xbfeccccccccccd00, 0xc0008ce5b5977bf7, + 0xbfeccccccccccce9, 0xc0008ce5b5977bee, 0x0, 0x0, - 0xbfecccccccccccef, 0xc0009eba34f0e7c2, + 0xbfecccccccccccc7, 0xc0009eba34f0e7ce, 0x0, 0x0, - 0xbfecccccccccccee, 0xc000b0af24f8eed4, + 0xbfecccccccccccc4, 0xc000b0af24f8eeca, 0x0, 0x0, - 0xbfecccccccccccb8, 0xc000c2c4e421d154, + 0xbfecccccccccccac, 0xc000c2c4e421d17c, 0x0, 0x0, - 0xbfecccccccccccbe, 0xc000d4fbd24c8fa4, + 0xbfecccccccccccff, 0xc000d4fbd24c8f96, 0x0, 0x0, - 0xbfeccccccccccca0, 0xc000e75450cfe5aa, + 0xbfecccccccccccbb, 0xc000e75450cfe5ac, 0x0, 0x0, - 0xbfecccccccccccee, 0xc000f9cec27f7104, + 0xbfecccccccccccaf, 0xc000f9cec27f710a, 0x0, 0x0, - 0xbfecccccccccccbb, 0xc0010c6b8bb300a6, + 0xbfeccccccccccc89, 0xc0010c6b8bb30094, 0x0, 0x0, - 0xbfeccccccccccc5e, 0xc0011f2b124e0f50, + 0xbfeccccccccccce7, 0xc0011f2b124e0f3e, 0x0, 0x0, - 0xbfeccccccccccca0, 0xc001320dbdc76b71, + 0xbfecccccccccccd6, 0xc001320dbdc76b74, 0x0, 0x0, - 0xbfeccccccccccc35, 0xc0014513f7310bb1, + 0xbfecccccccccccc1, 0xc0014513f7310bc4, 0x0, 0x0, - 0xbfeccccccccccb92, 0xc001583e294013d0, + 0xbfecccccccccccf1, 0xc001583e29401308, 0x0, 0x0, - 0xbfeccccccccccd88, 0xc0016b8cc055062e, + 0xbfeccccccccccdc3, 0xc0016b8cc0550603, 0x0, 0x0, - 0xbfecccccccccccfe, 0xc0017f002a842ccc, + 0xbfecccccccccccf6, 0xc0017f002a842cea, 0x0, 0x0, - 0xbfeccccccccccccd, 0xc0019298d79e303c, + 0xbfecccccccccccd0, 0xc0019298d79e3039, 0x0, 0x0, - 0xbfecccccccccccff, 0xc001a6573938e34b, + 0xbfeccccccccccd38, 0xc001a6573938e33e, 0x0, 0x0, - 0xbfecccccccccccdc, 0xc001ba3bc2b8472a, + 0xbfeccccccccccc9b, 0xc001ba3bc2b8471e, 0x0, 0x0, - 0xbfecccccccccccd2, 0xc001ce46e957c467, + 0xbfecccccccccccc0, 0xc001ce46e957c46c, 0x0, 0x0, - 0xbfeccccccccccc96, 0xc001e27924339dab, + 0xbfecccccccccccef, 0xc001e27924339dab, 0x0, 0x0, - 0xbfeccccccccccd09, 0xc001f6d2ec529c6c, + 0xbfeccccccccccd08, 0xc001f6d2ec529c8c, 0x0, 0x0, - 0xbfeccccccccccceb, 0xc0020b54bcaffaa2, + 0xbfecccccccccccd8, 0xc0020b54bcaffa9e, 0x0, 0x0, - 0xbfecccccccccccd1, 0xc0021fff1245885e, + 0xbfecccccccccccc1, 0xc0021fff12458860, 0x0, 0x0, - 0xbfecccccccccccbb, 0xc00234d26c16131a, + 0xbfecccccccccccd0, 0xc00234d26c16131b, 0x0, 0x0, - 0xbfeccccccccccccc, 0xc00249cf4b380c9d, + 0xbfeccccccccccccd, 0xc00249cf4b380c96, 0x0, 0x0, - 0xbfecccccccccccb4, 0xc0025ef632e07621, + 0xbfecccccccccccd3, 0xc0025ef632e0762c, 0x0, 0x0, - 0xbfecccccccccccb8, 0xc0027447a86e1048, + 0xbfecccccccccccdb, 0xc0027447a86e1056, 0x0, 0x0, - 0xbfeccccccccccc9c, 0xc00289c43374d204, + 0xbfecccccccccccb5, 0xc00289c43374d20c, 0x0, 0x0, - 0xbfecccccccccccc0, 0xc0029f6c5dc9a8f0, + 0xbfecccccccccccde, 0xc0029f6c5dc9a8f4, 0x0, 0x0, - 0xbfecccccccccccdd, 0xc002b540b38e84f8, + 0xbfecccccccccccd1, 0xc002b540b38e84fc, 0x0, 0x0, - 0xbfecccccccccccfb, 0xc002cb41c33eb1be, + 0xbfecccccccccccd0, 0xc002cb41c33eb1bc, 0x0, 0x0, - 0xbfeccccccccccccf, 0xc002e1701dbb7faa, + 0xbfecccccccccccbf, 0xc002e1701dbb7fba, 0x0, 0x0, - 0xbfeccccccccccccd, 0xc002f7cc56593f72, + 0xbfeccccccccccc9b, 0xc002f7cc56593f64, 0x0, 0x0, - 0xbfecccccccccccea, 0xc0030e5702ec9178, + 0xbfecccccccccccb3, 0xc0030e5702ec917e, 0x0, 0x0, - 0xbfecccccccccccb8, 0xc0032510bbd80de1, + 0xbfeccccccccccceb, 0xc0032510bbd80dd9, 0x0, 0x0, - 0xbfecccccccccccb0, 0xc0033bfa1c1a44ea, + 0xbfecccccccccccbc, 0xc0033bfa1c1a44f9, 0x0, 0x0, - 0xbfeccccccccccc6f, 0xc0035313c15c1cd5, + 0xbfecccccccccccbc, 0xc0035313c15c1cfe, 0x0, 0x0, - 0xbfeccccccccccc96, 0xc0036a5e4bff8f00, + 0xbfeccccccccccccc, 0xc0036a5e4bff8efe, 0x0, 0x0, - 0xbfeccccccccccc8b, 0xc00381da5f2ec5ea, + 0xbfecccccccccccce, 0xc00381da5f2ec5e0, 0x0, 0x0, - 0xbfeccccccccccc96, 0xc0039988a0eba29f, + 0xbfeccccccccccce2, 0xc0039988a0eba29e, 0x0, 0x0, - 0xbfecccccccccccad, 0xc003b169ba1fa8cc, + 0xbfeccccccccccce5, 0xc003b169ba1fa8da, 0x0, 0x0, - 0xbfecccccccccccb6, 0xc003c97e56ac5710, + 0xbfeccccccccccccd, 0xc003c97e56ac5709, 0x0, 0x0, - 0xbfeccccccccccc95, 0xc003e1c7257bed45, + 0xbfecccccccccccd9, 0xc003e1c7257bed48, 0x0, 0x0, - 0xbfeccccccccccc90, 0xc003fa44d892a6a2, + 0xbfecccccccccccf0, 0xc003fa44d892a698, 0x0, 0x0, - 0xbfeccccccccccaf3, 0xc00412f82520682b, + 0xbfeccccccccccd1b, 0xc00412f825206828, 0x0, 0x0, - 0xbfecccccccccccbb, 0xc0042be1c392e8e4, + 0xbfeccccccccccc4b, 0xc0042be1c392e8db, 0x0, 0x0, - 0xbfeccccccccccccc, 0xc00445026fa85936, + 0xbfecccccccccccd1, 0xc00445026fa85926, 0x0, 0x0, - 0xbfeccccccccccca6, 0xc0045e5ae882884a, + 0xbfeccccccccccccb, 0xc0045e5ae8828855, 0x0, 0x0, - 0xbfecccccccccccc8, 0xc00477ebf0ba9262, + 0xbfeccccccccccce1, 0xc00477ebf0ba9256, 0x0, 0x0, - 0xbfecccccccccccd4, 0xc00491b64e7515b6, + 0xbfecccccccccccc2, 0xc00491b64e75159c, 0x0, 0x0, - 0xbfecccccccccccde, 0xc004abbacb76f80e, + 0xbfecccccccccccc0, 0xc004abbacb76f81f, 0x0, 0x0, - 0xbfecccccccccccc0, 0xc004c5fa353abd43, + 0xbfecccccccccccb4, 0xc004c5fa353abd54, 0x0, 0x0, - 0xbfecccccccccccdc, 0xc004e0755d0675b0, + 0xbfeccccccccccd02, 0xc004e0755d0675e9, 0x0, 0x0, - 0xbfecccccccccccad, 0xc004fb2d180249ad, + 0xbfecccccccccccdd, 0xc004fb2d18024997, 0x0, 0x0, - 0xbfecccccccccccd0, 0xc00516223f4fa420, + 0xbfeccccccccccce3, 0xc00516223f4fa429, 0x0, 0x0, - 0xbfeccccccccccced, 0xc0053155b02107e8, + 0xbfecccccccccccda, 0xc0053155b02107e9, 0x0, 0x0, - 0xbfeccccccccccca1, 0xc0054cc84bd28cac, + 0xbfeccccccccccceb, 0xc0054cc84bd28cb0, 0x0, 0x0, - 0xbfecccccccccccad, 0xc005687af8031163, + 0xbfeccccccccccca1, 0xc005687af8031158, 0x0, 0x0, - 0xbfeccccccccccd0b, 0xc005846e9eae2482, + 0xbfeccccccccccce3, 0xc005846e9eae2481, 0x0, 0x0, - 0xbfeccccccccccd00, 0xc005a0a42e46aaf1, + 0xbfecccccccccccd1, 0xc005a0a42e46aaf8, 0x0, 0x0, - 0xbfeccccccccccd0b, 0xc005bd1c99d24b74, + 0xbfeccccccccccca5, 0xc005bd1c99d24b6f, 0x0, 0x0, - 0xbfeccccccccccce6, 0xc005d9d8d905a46e, + 0xbfeccccccccccd03, 0xc005d9d8d905a477, 0x0, 0x0, - 0xbfeccccccccccc82, 0xc005f6d9e8615412, + 0xbfeccccccccccce4, 0xc005f6d9e861540e, 0x0, 0x0, - 0xbfeccccccccccc8e, 0xc0061420c94fd966, + 0xbfeccccccccccce1, 0xc0061420c94fd96a, 0x0, 0x0, - 0xbfecccccccccccac, 0xc00631ae8244555a, + 0xbfecccccccccccd3, 0xc00631ae8244557a, 0x0, 0x0, - 0xbfecccccccccccd4, 0xc0064f841eda34f0, + 0xbfeccccccccccccf, 0xc0064f841eda34f5, 0x0, 0x0, - 0xbfecccccccccccac, 0xc0066da2aff5c9d2, + 0xbfecccccccccccc1, 0xc0066da2aff5c9de, 0x0, 0x0, - 0xbfecccccccccccb3, 0xc0068c0b4be5dddf, + 0xbfecccccccccccc5, 0xc0068c0b4be5dde4, 0x0, 0x0, - 0xbfecccccccccccc2, 0xc006aabf0e864566, + 0xbfeccccccccccc7d, 0xc006aabf0e864575, 0x0, 0x0, - 0xbfecccccccccccc3, 0xc006c9bf19637d5b, + 0xbfeccccccccccccf, 0xc006c9bf19637d58, 0x0, 0x0, - 0xbfecccccccccccbc, 0xc006e90c93df5c3c, + 0xbfecccccccccccc9, 0xc006e90c93df5c4c, 0x0, 0x0, - 0xbfecccccccccccfd, 0xc00708a8ab56e0f8, + 0xbfeccccccccccccf, 0xc00708a8ab56e0f2, 0x0, 0x0, - 0xbfeccccccccccd2e, 0xc00728949349286a, + 0xbfecccccccccccd8, 0xc00728949349286b, 0x0, 0x0, - 0xbfecccccccccccc0, 0xc00748d1857f95ea, + 0xbfecccccccccccd7, 0xc00748d1857f95e6, 0x0, 0x0, - 0xbfecccccccccccee, 0xc0076960c23738b2, + 0xbfeccccccccccce0, 0xc0076960c23738be, 0x0, 0x0, - 0xbfeccccccccccc3e, 0xc0078a43904b7985, + 0xbfecccccccccccfb, 0xc0078a43904b798a, 0x0, 0x0, - 0xbfeccccccccccd18, 0xc007ab7b3d621d36, + 0xbfeccccccccccd0f, 0xc007ab7b3d621d14, 0x0, 0x0, - 0xbfecccccccccccdf, 0xc007cd091e18a749, + 0xbfecccccccccccc5, 0xc007cd091e18a764, 0x0, 0x0, - 0xbfeccccccccccc52, 0xc007eeee8e332dad, + 0xbfecccccccccccc3, 0xc007eeee8e332dc2, 0x0, 0x0, - 0xbfeccccccccccd0a, 0xc008112cf0cca319, + 0xbfecccccccccccb6, 0xc008112cf0cca310, 0x0, 0x0, - 0xbfeccccccccccc7e, 0xc00833c5b088ae4a, + 0xbfeccccccccccc9d, 0xc00833c5b088ae5c, 0x0, 0x0, - 0xbfecccccccccccdd, 0xc00856ba3fc7199c, + 0xbfecccccccccccd3, 0xc00856ba3fc7199c, 0x0, 0x0, - 0xbfeccccccccccdd4, 0xc0087a0c18d8e810, + 0xbfecccccccccccca, 0xc0087a0c18d8e832, 0x0, 0x0, - 0xbfecccccccccccc8, 0xc0089dbcbe3724a4, + 0xbfeccccccccccccb, 0xc0089dbcbe3724a8, 0x0, 0x0, - 0xbfecccccccccccd8, 0xc008c1cdbabb76f1, + 0xbfeccccccccccccd, 0xc008c1cdbabb76dd, 0x0, 0x0, - 0xbfeccccccccccca5, 0xc008e640a1da9395, + 0xbfeccccccccccce9, 0xc008e640a1da9396, 0x0, 0x0, - 0xbfeccccccccccc81, 0xc0090b170fe098a7, + 0xbfecccccccccccd6, 0xc0090b170fe098f0, 0x0, 0x0, - 0xbfecccccccccccb9, 0xc0093052aa2f67ee, + 0xbfecccccccccccee, 0xc0093052aa2f67ec, 0x0, 0x0, - 0xbfeccccccccccdba, 0xc00955f51f7f11ee, + 0xbfeccccccccccca4, 0xc00955f51f7f11e2, 0x0, 0x0, - 0xbfecccccccccccc5, 0xc0097c0028206d26, + 0xbfecccccccccccb8, 0xc0097c0028206d10, 0x0, 0x0, - 0xbfeccccccccccd57, 0xc009a2758641e55e, + 0xbfecccccccccccea, 0xc009a2758641e554, 0x0, 0x0, - 0xbfeccccccccccc95, 0xc009c9570636a182, + 0xbfecccccccccccc8, 0xc009c9570636a190, 0x0, 0x0, - 0xbfecccccccccccfe, 0xc009f0a67ec0134a, + 0xbfeccccccccccca6, 0xc009f0a67ec0133b, 0x0, 0x0, - 0xbfecccccccccccaa, 0xc00a1865d15a0a17, + 0xbfecccccccccccbe, 0xc00a1865d15a0a20, 0x0, 0x0, - 0xbfecccccccccccca, 0xc00a4096ea8965b4, + 0xbfecccccccccccd0, 0xc00a4096ea89659f, 0x0, 0x0, - 0xbfecccccccccccf5, 0xc00a693bc22d7f90, + 0xbfeccccccccccccc, 0xc00a693bc22d7f91, 0x0, 0x0, - 0xbfeccccccccccc64, 0xc00a92565bd46a1f, + 0xbfeccccccccccca4, 0xc00a92565bd46a16, 0x0, 0x0, - 0xbfecccccccccccc0, 0xc00abbe8c71221f1, + 0xbfecccccccccccc5, 0xc00abbe8c71221f0, 0x0, 0x0, - 0xbfecccccccccccc2, 0xc00ae5f51fdad144, + 0xbfecccccccccccd7, 0xc00ae5f51fdad146, 0x0, 0x0, - 0xbfeccccccccccce3, 0xc00b107d8ee044b0, + 0xbfecccccccccccbe, 0xc00b107d8ee044ba, 0x0, 0x0, - 0xbfeccccccccccd02, 0xc00b3b8449f2b412, + 0xbfecccccccccccbc, 0xc00b3b8449f2b448, 0x0, 0x0, - 0xbfeccccccccccce0, 0xc00b670b94650358, + 0xbfeccccccccccca4, 0xc00b670b94650369, 0x0, 0x0, - 0xbfeccccccccccd15, 0xc00b9315bf749f3e, + 0xbfeccccccccccce8, 0xc00b9315bf749f3e, 0x0, 0x0, - 0xbfecccccccccccad, 0xc00bbfa52ab51ecf, + 0xbfecccccccccccd6, 0xc00bbfa52ab51eda, 0x0, 0x0, - 0xbfecccccccccccca, 0xc00becbc447fd208, + 0xbfecccccccccccec, 0xc00becbc447fd1f4, 0x0, 0x0, - 0xbfecccccccccccc8, 0xc00c1a5d8a676748, + 0xbfeccccccccccce1, 0xc00c1a5d8a676742, 0x0, 0x0, - 0xbfeccccccccccca7, 0xc00c488b89afd7a1, + 0xbfecccccccccccd8, 0xc00c488b89afd787, 0x0, 0x0, - 0xbfecccccccccccc2, 0xc00c7748dfcac5b0, + 0xbfeccccccccccce8, 0xc00c7748dfcac5ba, 0x0, 0x0, - 0xbfeccccccccccc2e, 0xc00ca6983ad88520, + 0xbfecccccccccccce, 0xc00ca6983ad88528, 0x0, 0x0, - 0xbfeccccccccccce8, 0xc00cd67c5a2dfa3f, + 0xbfeccccccccccce3, 0xc00cd67c5a2dfa5f, 0x0, 0x0, - 0xbfecccccccccccd7, 0xc00d06f80edf8ce0, + 0xbfeccccccccccce5, 0xc00d06f80edf8cd8, 0x0, 0x0, - 0xbfecccccccccccd6, 0xc00d380e3c5164c2, + 0xbfecccccccccccbf, 0xc00d380e3c5164c0, 0x0, 0x0, - 0xbfeccccccccccd23, 0xc00d69c1d8cd2f2f, + 0xbfeccccccccccccd, 0xc00d69c1d8cd2f22, 0x0, 0x0, - 0xbfecccccccccccc1, 0xc00d9c15ee1daada, + 0xbfeccccccccccce4, 0xc00d9c15ee1daad3, 0x0, 0x0, - 0xbfeccccccccccccd, 0xc00dcf0d9a303e41, + 0xbfecccccccccccd0, 0xc00dcf0d9a303e43, 0x0, 0x0, - 0xbfeccccccccccca3, 0xc00e02ac0fbcdfb0, + 0xbfeccccccccccce8, 0xc00e02ac0fbcdfb8, 0x0, 0x0, - 0xbfecccccccccccbf, 0xc00e36f496f497ba, + 0xbfeccccccccccce7, 0xc00e36f496f497c0, 0x0, 0x0, - 0xbfecccccccccccca, 0xc00e6bea8e36ed4e, + 0xbfecccccccccccbd, 0xc00e6bea8e36ed4a, 0x0, 0x0, - 0xbfeccccccccccce5, 0xc00ea1916ace8d2e, + 0xbfeccccccccccccb, 0xc00ea1916ace8d14, 0x0, 0x0, - 0xbfecccccccccccc3, 0xc00ed7ecb9b583d1, + 0xbfecccccccccccac, 0xc00ed7ecb9b583d6, 0x0, 0x0, - 0xbfeccccccccccca1, 0xc00f0f0020616588, + 0xbfeccccccccccc9d, 0xc00f0f0020616567, 0x0, 0x0, - 0xbfecccccccccccc9, 0xc00f46cf5d97c2d0, + 0xbfeccccccccccca5, 0xc00f46cf5d97c2dd, 0x0, 0x0, - 0xbfecccccccccccd6, 0xc00f7f5e4a4b52cd, + 0xbfecccccccccccce, 0xc00f7f5e4a4b52ce, 0x0, 0x0, - 0xbfecccccccccccd8, 0xc00fb8b0da8239e7, + 0xbfecccccccccccb1, 0xc00fb8b0da8239e3, 0x0, 0x0, - 0xbfeccccccccccc51, 0xc00ff2cb1e45e1d3, + 0xbfecccccccccccd7, 0xc00ff2cb1e45e1f6, 0x0, 0x0, - 0xbfeccccccccccd40, 0xc01016d8a14e6c76, + 0xbfeccccccccccce9, 0xc01016d8a14e6c70, 0x0, 0x0, - 0xbfecccccccccccd5, 0xc01034b3c9479aaf, + 0xbfeccccccccccce4, 0xc01034b3c9479aaf, 0x0, 0x0, - 0xbfecccccccccccba, 0xc01052f93c1b0269, + 0xbfeccccccccccce2, 0xc01052f93c1b026a, 0x0, 0x0, - 0xbfecccccccccccd6, 0xc01071ab3eeb2925, + 0xbfeccccccccccccd, 0xc01071ab3eeb291b, 0x0, 0x0, - 0xbfecccccccccccd8, 0xc01090cc27842c11, + 0xbfecccccccccccbe, 0xc01090cc27842c10, 0x0, 0x0, - 0xbfecccccccccccd0, 0xc010b05e5cf5beb1, + 0xbfeccccccccccce7, 0xc010b05e5cf5beaa, 0x0, 0x0, - 0xbfecccccccccccee, 0xc010d0645833e0c0, + 0xbfecccccccccccdc, 0xc010d0645833e0bc, 0x0, 0x0, - 0xbfeccccccccccd1e, 0xc010f0e0a4bea54e, + 0xbfecccccccccccee, 0xc010f0e0a4bea548, 0x0, 0x0, - 0xbfecccccccccccc6, 0xc01111d5e151677c, + 0xbfeccccccccccd08, 0xc01111d5e151677a, 0x0, 0x0, - 0xbfecccccccccccd1, 0xc0113346c099cfc0, + 0xbfecccccccccccd3, 0xc0113346c099cfc0, 0x0, 0x0, - 0xbfecccccccccccfe, 0xc011553609f713be, + 0xbfecccccccccccc9, 0xc011553609f713be, 0x0, 0x0, - 0xbfeccccccccccd0a, 0xc01177a69a41de4c, + 0xbfeccccccccccceb, 0xc01177a69a41de47, 0x0, 0x0, - 0xbfeccccccccccce0, 0xc0119a9b649d5710, + 0xbfeccccccccccca5, 0xc0119a9b649d5704, 0x0, 0x0, - 0xbfeccccccccccd0e, 0xc011be177351c615, + 0xbfecccccccccccd8, 0xc011be177351c60e, 0x0, 0x0, - 0xbfecccccccccccd1, 0xc011e21de8b15928, + 0xbfeccccccccccd60, 0xc011e21de8b1590c, 0x0, 0x0, - 0xbfeccccccccccefc, 0xc01206b2000796bf, + 0xbfecccccccccce21, 0xc01206b2000796a0, 0x0, 0x0, - 0xbfeccccccccccd3c, 0xc0122bd70e9416d7, + 0xbfeccccccccccc44, 0xc0122bd70e9416d8, 0x0, 0x0, - 0xbfecccccccccccf9, 0xc012519084911f8c, + 0xbfecccccccccccca, 0xc012519084911fa1, 0x0, 0x0, - 0xbfecccccccccccf5, 0xc01277e1ee46cf59, + 0xbfecccccccccccc5, 0xc01277e1ee46cf59, 0x0, 0x0, - 0xbfeccccccccccccd, 0xc0129ecef52b8ab2, + 0xbfeccccccccccceb, 0xc0129ecef52b8ab6, 0x0, 0x0, - 0xbfecccccccccccda, 0xc012c65b61126cf8, + 0xbfeccccccccccccd, 0xc012c65b61126cf5, 0x0, 0x0, - 0xbfeccccccccccd04, 0xc012ee8b1968896a, + 0xbfeccccccccccce4, 0xc012ee8b1968896a, 0x0, 0x0, - 0xbfeccccccccccce2, 0xc01317622681d6b4, + 0xbfecccccccccccc6, 0xc01317622681d6b9, 0x0, 0x0, - 0xbfecccccccccccf1, 0xc01340e4b2f6ae9c, + 0xbfecccccccccccbb, 0xc01340e4b2f6ae86, 0x0, 0x0, - 0xbfecccccccccccf2, 0xc0136b170d12d927, + 0xbfeccccccccccc61, 0xc0136b170d12d92a, 0x0, 0x0, - 0xbfecccccccccccd8, 0xc01395fda8572ebc, + 0xbfecccccccccccd3, 0xc01395fda8572ebc, 0x0, 0x0, - 0xbfecccccccccccb9, 0xc013c19d1f0ee9e7, + 0xbfecccccccccccca, 0xc013c19d1f0ee9e4, 0x0, 0x0, - 0xbfeccccccccccca8, 0xc013edfa33f9da1d, + 0xbfeccccccccccce2, 0xc013edfa33f9da15, 0x0, 0x0, - 0xbfecccccccccccc8, 0xc0141b19d40cb9cb, + 0xbfecccccccccccaf, 0xc0141b19d40cb9c8, 0x0, 0x0, - 0xbfeccccccccccca1, 0xc01449011849034c, + 0xbfecccccccccccb0, 0xc01449011849034a, 0x0, 0x0, - 0xbfecccccccccccd5, 0xc01477b547adb6a4, + 0xbfecccccccccccc9, 0xc01477b547adb6a4, 0x0, 0x0, - 0xbfecccccccccccb6, 0xc014a73bd9429e1d, + 0xbfeccccccccccc8c, 0xc014a73bd9429e18, 0x0, 0x0, - 0xbfecccccccccccbf, 0xc014d79a763fbb62, + 0xbfecccccccccccf9, 0xc014d79a763fbb62, 0x0, 0x0, - 0xbfecccccccccccec, 0xc01508d6fc52a573, + 0xbfeccccccccccccb, 0xc01508d6fc52a57a, 0x0, 0x0, - 0xbfecccccccccccca, 0xc0153af78003c1ca, + 0xbfecccccccccccca, 0xc0153af78003c1cb, 0x0, 0x0, - 0xbfecccccccccccd2, 0xc0156e024f3d66d5, + 0xbfecccccccccccd1, 0xc0156e024f3d66d2, 0x0, 0x0, - 0xbfeccccccccccc9b, 0xc015a1fdf3f71c78, + 0xbfeccccccccccc83, 0xc015a1fdf3f71c7c, 0x0, 0x0, - 0xbfecccccccccccaa, 0xc015d6f137075bbd, + 0xbfecccccccccccc9, 0xc015d6f137075bc0, 0x0, 0x0, - 0xbfeccccccccccca4, 0xc0160ce3231e5958, + 0xbfecccccccccccd6, 0xc0160ce3231e5952, 0x0, 0x0, - 0xbfeccccccccccca2, 0xc01643db07ec9d1a, + 0xbfecccccccccccea, 0xc01643db07ec9d13, 0x0, 0x0, - 0xbfecccccccccccce, 0xc0167be07d785b4e, + 0xbfecccccccccccb4, 0xc0167be07d785b46, 0x0, 0x0, - 0xbfeccccccccccc95, 0xc016b4fb67a4c1f6, + 0xbfeccccccccccccf, 0xc016b4fb67a4c1ef, 0x0, 0x0, - 0xbfecccccccccccd4, 0xc016ef33f9eeab66, + 0xbfeccccccccccccb, 0xc016ef33f9eeab60, 0x0, 0x0, - 0xbfecccccccccccb1, 0xc0172a92bb626f02, + 0xbfeccccccccccce7, 0xc0172a92bb626ef3, 0x0, 0x0, - 0xbfecccccccccccaa, 0xc01767208aced43c, + 0xbfecccccccccccda, 0xc01767208aced436, 0x0, 0x0, - 0xbfecccccccccccd9, 0xc017a4e6a3398060, + 0xbfecccccccccccdc, 0xc017a4e6a339805c, 0x0, 0x0, - 0xbfecccccccccccd7, 0xc017e3eea0999234, + 0xbfeccccccccccca6, 0xc017e3eea0999226, 0x0, 0x0, - 0xbfeccccccccccc85, 0xc018244284dd8386, + 0xbfecccccccccccc6, 0xc018244284dd8344, 0x0, 0x0, - 0xbfecccccccccccbf, 0xc01865ecbd41d348, + 0xbfecccccccccccdb, 0xc01865ecbd41d344, 0x0, 0x0, - 0xbfeccccccccccccf, 0xc018a8f827fe7832, + 0xbfecccccccccccf4, 0xc018a8f827fe7836, 0x0, 0x0, - 0xbfecccccccccccc4, 0xc018ed701a51945a, + 0xbfecccccccccccc6, 0xc018ed701a519454, 0x0, 0x0, - 0xbfeccccccccccc91, 0xc019336066ee7f9d, + 0xbfecccccccccccd4, 0xc019336066ee7fa2, 0x0, 0x0, - 0xbfecccccccccccd3, 0xc0197ad564d8d198, + 0xbfeccccccccccc97, 0xc0197ad564d8d19e, 0x0, 0x0, - 0xbfecccccccccccc4, 0xc019c3dbf6b3c683, + 0xbfecccccccccccc6, 0xc019c3dbf6b3c67e, 0x0, 0x0, - 0xbfecccccccccccb9, 0xc01a0e81928f195c, + 0xbfecccccccccccad, 0xc01a0e81928f195c, 0x0, 0x0, - 0xbfecccccccccccf6, 0xc01a5ad44a3b3f54, + 0xbfecccccccccccc5, 0xc01a5ad44a3b3f60, 0x0, 0x0, - 0xbfecccccccccccf3, 0xc01aa8e2d42fd89b, + 0xbfeccccccccccc98, 0xc01aa8e2d42fd8a4, 0x0, 0x0, - 0xbfecccccccccccef, 0xc01af8bc95102cb6, + 0xbfecccccccccccf5, 0xc01af8bc95102cb0, 0x0, 0x0, - 0xbfecccccccccccae, 0xc01b4a71a9daa10e, + 0xbfecccccccccccce, 0xc01b4a71a9daa108, 0x0, 0x0, - 0xbfeccccccccccc8b, 0xc01b9e12f2d155a4, + 0xbfecccccccccccd4, 0xc01b9e12f2d155b0, 0x0, 0x0, - 0xbfecccccccccccdc, 0xc01bf3b21f2b6c30, + 0xbfecccccccccccf5, 0xc01bf3b21f2b6c2e, 0x0, 0x0, - 0xbfecccccccccccd5, 0xc01c4b61b9a00017, + 0xbfeccccccccccce3, 0xc01c4b61b9a00010, 0x0, 0x0, - 0xbfecccccccccccc2, 0xc01ca53535dd8308, + 0xbfecccccccccccca, 0xc01ca53535dd8306, 0x0, 0x0, - 0xbfecccccccccccb3, 0xc01d0140ff020ba6, + 0xbfeccccccccccced, 0xc01d0140ff020ba2, 0x0, 0x0, - 0xbfeccccccccccccc, 0xc01d5f9a872b35d6, + 0xbfecccccccccccf0, 0xc01d5f9a872b35d4, 0x0, 0x0, - 0xbfeccccccccccd08, 0xc01dc05858368368, + 0xbfecccccccccccf9, 0xc01dc0585836836d, 0x0, 0x0, - 0xbfecccccccccccba, 0xc01e239225cdbdc6, + 0xbfecccccccccccd2, 0xc01e239225cdbdc8, 0x0, 0x0, - 0xbfeccccccccccccb, 0xc01e8960e0ddb920, + 0xbfecccccccccccd6, 0xc01e8960e0ddb91f, 0x0, 0x0, - 0xbfecccccccccccb3, 0xc01ef1decc991339, + 0xbfecccccccccccd5, 0xc01ef1decc991336, 0x0, 0x0, - 0xbfecccccccccccbf, 0xc01f5d27952c2212, + 0xbfeccccccccccce1, 0xc01f5d27952c2216, 0x0, 0x0, - 0xbfecccccccccccf1, 0xc01fcb58684b5412, + 0xbfecccccccccccc3, 0xc01fcb58684b5418, 0x0, 0x0, - 0xbfecccccccccccd9, 0xc0201e4807e4e864, + 0xbfeccccccccccd21, 0xc0201e4807e4e85a, 0x0, 0x0, - 0xbfecccccccccccb2, 0xc02058778735a438, + 0xbfeccccccccccce6, 0xc02058778735a436, 0x0, 0x0, - 0xbfeccccccccccca6, 0xc020944bdf94d5a9, + 0xbfecccccccccccdb, 0xc020944bdf94d5a6, 0x0, 0x0, - 0xbfecccccccccccc8, 0xc020d1d73b97017b, + 0xbfeccccccccccc97, 0xc020d1d73b970180, 0x0, 0x0, - 0xbfeccccccccccc97, 0xc021112cd56188de, + 0xbfeccccccccccc65, 0xc021112cd56188d8, 0x0, 0x0, - 0xbfecccccccccccbd, 0xc02152610ac85aa3, + 0xbfeccccccccccc94, 0xc02152610ac85aa4, 0x0, 0x0, - 0xbfeccccccccccca0, 0xc0219589733c476d, + 0xbfecccccccccccb1, 0xc0219589733c476a, 0x0, 0x0, - 0xbfeccccccccccce7, 0xc021dabcf7bb9f62, + 0xbfecccccccccccd6, 0xc021dabcf7bb9f5c, 0x0, 0x0, - 0xbfeccccccccccd3d, 0xc0222213ecfcead6, + 0xbfeccccccccccc52, 0xc0222213ecfceaba, 0x0, 0x0, - 0xbfecccccccccccd0, 0xc0226ba8301295da, + 0xbfecccccccccccde, 0xc0226ba8301295d6, 0x0, 0x0, - 0xbfecccccccccccf3, 0xc022b79545ce73a0, + 0xbfeccccccccccced, 0xc022b79545ce73a2, 0x0, 0x0, - 0xbfecccccccccccaf, 0xc02305f87d35349e, + 0xbfecccccccccccd8, 0xc02305f87d3534a2, 0x0, 0x0, - 0xbfeccccccccccd13, 0xc02356f1155c85e8, + 0xbfecccccccccccf4, 0xc02356f1155c85e5, 0x0, 0x0, - 0xbfecccccccccccb0, 0xc023aaa0671abefa, + 0xbfecccccccccccbb, 0xc023aaa0671abefa, 0x0, 0x0, - 0xbfecccccccccccb7, 0xc024012a12fd17ec, + 0xbfeccccccccccd07, 0xc024012a12fd17ec, 0x0, 0x0, - 0xbfecccccccccccd8, 0xc0245ab43409a693, + 0xbfecccccccccccca, 0xc0245ab43409a695, 0x0, 0x0, - 0xbfecccccccccccfa, 0xc024b76797e54064, + 0xbfecccccccccccd8, 0xc024b76797e54066, 0x0, 0x0, - 0xbfecccccccccccd2, 0xc025176ffd0b4b14, + 0xbfeccccccccccd07, 0xc025176ffd0b4b16, 0x0, 0x0, - 0xbfecccccccccccd0, 0xc0257afc57df12c2, + 0xbfecccccccccccda, 0xc0257afc57df12c4, 0x0, 0x0, - 0xbfecccccccccccc2, 0xc025e23f1f7c142c, + 0xbfecccccccccccb4, 0xc025e23f1f7c142f, 0x0, 0x0, - 0xbfecccccccccccb1, 0xc0264d6ea34d9fc0, + 0xbfecccccccccccfd, 0xc0264d6ea34d9fba, 0x0, 0x0, - 0xbfeccccccccccc86, 0xc026bcc56a9f4c96, + 0xbfecccccccccccce, 0xc026bcc56a9f4c91, 0x0, 0x0, - 0xbfeccccccccccc9c, 0xc02730829f88166a, + 0xbfeccccccccccce0, 0xc02730829f88166a, 0x0, 0x0, - 0xbfecccccccccccd4, 0xc027a8ea86cb316f, + 0xbfecccccccccccc0, 0xc027a8ea86cb3172, 0x0, 0x0, - 0xbfeccccccccccc61, 0xc0282647068d6c86, + 0xbfeccccccccccd05, 0xc0282647068d6c81, 0x0, 0x0, - 0xbfecccccccccccca, 0xc028a8e83e0e9fd6, + 0xbfeccccccccccccb, 0xc028a8e83e0e9fd2, 0x0, 0x0, - 0xbfeccccccccccca2, 0xc029312530f6e7a1, + 0xbfecccccccccccc6, 0xc029312530f6e7a0, 0x0, 0x0, - 0xbfeccccccccccca8, 0xc029bf5c893ab72a, + 0xbfecccccccccccd8, 0xc029bf5c893ab72a, 0x0, 0x0, - 0xbfeccccccccccc74, 0xc02a53f573236c6a, + 0xbfeccccccccccc9f, 0xc02a53f573236c68, 0x0, 0x0, - 0xbfecccccccccccab, 0xc02aef6097b15974, + 0xbfecccccccccccc2, 0xc02aef6097b15974, 0x0, 0x0, - 0xbfecccccccccccae, 0xc02b92193a56f04e, + 0xbfeccccccccccc9f, 0xc02b92193a56f053, 0x0, 0x0, - 0xbfeccccccccccca8, 0xc02c3ca680036d5e, + 0xbfecccccccccccc3, 0xc02c3ca680036d61, 0x0, 0x0, - 0xbfeccccccccccc54, 0xc02cef9ce6a0dd72, + 0xbfeccccccccccc8e, 0xc02cef9ce6a0dd6c, 0x0, 0x0, - 0xbfeccccccccccca7, 0xc02dab9ff59b8f7e, + 0xbfeccccccccccc6d, 0xc02dab9ff59b8f7d, 0x0, 0x0, - 0xbfecccccccccccbd, 0xc02e716431d1c098, + 0xbfeccccccccccce3, 0xc02e716431d1c092, 0x0, 0x0, - 0xbfecccccccccccb8, 0xc02f41b16180aa1a, + 0xbfecccccccccccb0, 0xc02f41b16180aa14, 0x0, 0x0, - 0xbfecccccccccccdc, 0xc0300eb297c30fb3, + 0xbfecccccccccccff, 0xc0300eb297c30fb2, 0x0, 0x0, - 0xbfeccccccccccc73, 0xc03082bb20617228, + 0xbfeccccccccccccd, 0xc03082bb2061722a, 0x0, 0x0, - 0xbfecccccccccccaa, 0xc030fd7be962e275, + 0xbfeccccccccccceb, 0xc030fd7be962e272, 0x0, 0x0, - 0xbfeccccccccccc83, 0xc0317f8f00378e3c, + 0xbfeccccccccccc77, 0xc0317f8f00378e3a, 0x0, 0x0, - 0xbfeccccccccccc8c, 0xc03209a168261360, + 0xbfeccccccccccca7, 0xc03209a16826134b, 0x0, 0x0, - 0xbfecccccccccccb3, 0xc0329c761cbece7b, + 0xbfeccccccccccc0e, 0xc0329c761cbece7a, 0x0, 0x0, - 0xbfecccccccccccb6, 0xc03338e9abdf8da7, + 0xbfecccccccccccba, 0xc03338e9abdf8da4, 0x0, 0x0, - 0xbfeccccccccccca8, 0xc033dff68b3e84c4, + 0xbfecccccccccccbb, 0xc033dff68b3e84c6, 0x0, 0x0, - 0xbfeccccccccccc96, 0xc03492ba578bc6ef, + 0xbfecccccccccccab, 0xc03492ba578bc6ef, 0x0, 0x0, - 0xbfecccccccccccb6, 0xc035527c389eb4d4, + 0xbfecccccccccccae, 0xc035527c389eb4d4, 0x0, 0x0, - 0xbfeccccccccccc79, 0xc03620b4b817f811, + 0xbfeccccccccccce6, 0xc03620b4b817f811, 0x0, 0x0, - 0xbfeccccccccccc7a, 0xc036ff1770299b8b, + 0xbfecccccccccccd2, 0xc036ff1770299b8a, 0x0, 0x0, - 0xbfeccccccccccc7a, 0xc037ef9f196b923f, + 0xbfeccccccccccca1, 0xc037ef9f196b923e, 0x0, 0x0, - 0xbfeccccccccccc96, 0xc038f49cac8f5afe, + 0xbfecccccccccccbc, 0xc038f49cac8f5afb, 0x0, 0x0, - 0xbfeccccccccccc9f, 0xc03a10ca8d10587e, + 0xbfeccccccccccce8, 0xc03a10ca8d10587c, 0x0, 0x0, - 0xbfeccccccccccc8a, 0xc03b47650d332402, + 0xbfeccccccccccca5, 0xc03b47650d332404, 0x0, 0x0, - 0xbfeccccccccccc77, 0xc03c9c4a1ee57558, + 0xbfecccccccccccf1, 0xc03c9c4a1ee57558, 0x0, 0x0, - 0xbfeccccccccccc81, 0xc03e1422c4e2ef81, + 0xbfecccccccccccf2, 0xc03e1422c4e2ef82, 0x0, 0x0, - 0xbfeccccccccccc6c, 0xc03fb499f4a797b1, + 0xbfeccccccccccd15, 0xc03fb499f4a797b2, 0x0, 0x0, - 0xbfeccccccccccc5d, 0xc040c25324c11d3d, + 0xbfeccccccccccce6, 0xc040c25324c11d3e, 0x0, 0x0, - 0xbfeccccccccccbf0, 0xc041c6774233d806, + 0xbfecccccccccce00, 0xc041c6774233d804, 0x0, 0x0, - 0xbfeccccccccccc99, 0xc042ec2a79774ee2, + 0xbfeccccccccccc4f, 0xc042ec2a79774ee4, 0x0, 0x0, - 0xbfeccccccccccc7b, 0xc0443a5e42a9253f, + 0xbfeccccccccccced, 0xc0443a5e42a9253f, 0x0, 0x0, - 0xbfeccccccccccc4f, 0xc045ba12be3b5a05, + 0xbfeccccccccccc95, 0xc045ba12be3b5a06, 0x0, 0x0, - 0xbfeccccccccccc46, 0xc04777295eaf9f90, + 0xbfeccccccccccc68, 0xc04777295eaf9f90, 0x0, 0x0, - 0xbfeccccccccccc4d, 0xc04981a57b930dd0, + 0xbfeccccccccccc64, 0xc04981a57b930dd0, 0x0, 0x0, - 0xbfeccccccccccc29, 0xc04befa413e515be, + 0xbfeccccccccccce7, 0xc04befa413e515be, 0x0, 0x0, - 0xbfeccccccccccc02, 0xc04ee091ba6ea2ba, + 0xbfeccccccccccc33, 0xc04ee091ba6ea2bc, 0x0, 0x0, - 0xbfeccccccccccc43, 0xc0514152583a6d88, + 0xbfeccccccccccc97, 0xc0514152583a6d86, 0x0, 0x0, - 0xbfeccccccccccc15, 0xc0538e5c57b0a392, + 0xbfeccccccccccd1c, 0xc0538e5c57b0a391, 0x0, 0x0, - 0xbfeccccccccccba4, 0xc05690a22c6ee736, + 0xbfeccccccccccd0a, 0xc05690a22c6ee736, 0x0, 0x0, - 0xbfeccccccccccb99, 0xc05aaafea7e4b54a, + 0xbfeccccccccccc6a, 0xc05aaafea7e4b54c, 0x0, 0x0, - 0xbfeccccccccccb25, 0xc0604c15c7477295, + 0xbfecccccccccccac, 0xc0604c15c7477295, 0x0, 0x0, - 0xbfeccccccccccaa5, 0xc064f4249e29f05c, + 0xbfeccccccccccccf, 0xc064f4249e29f05e, 0x0, 0x0, - 0xbfecccccccccc931, 0xc06d55d5e9ab64d4, + 0xbfecccccccccce1b, 0xc06d55d5e9ab64d4, 0x0, 0x0, - 0xbfecccccccccc7cc, 0xc07872374985ccc9, + 0xbfeccccccccccaa7, 0xc07872374985cccb, 0x0, 0x0, - 0xbfecccccccccba3c, 0xc09255ab59b0d91d + 0xbfeccccccccccaa7, 0xc09255ab59b0d91e }; static const uint64_t ref_cfft_step_4096[8192] = { 0x409ccccccccccccd, 0x0, - 0xbfecccccccccce2e, 0x409255ab59b0d91d, + 0xbfeccccccccccd35, 0x409255ab59b0d91d, 0x0, 0x0, - 0xbfecccccccccce20, 0x407872374985cccb, + 0xbfeccccccccccb41, 0x407872374985cccb, 0x0, 0x0, - 0xbfeccccccccccd41, 0x406d55d5e9ab64d3, + 0xbfeccccccccccdb7, 0x406d55d5e9ab64d4, 0x0, 0x0, - 0xbfeccccccccccdbc, 0x4064f4249e29f05e, + 0xbfeccccccccccce8, 0x4064f4249e29f05d, 0x0, 0x0, - 0xbfeccccccccccd2c, 0x40604c15c7477295, + 0xbfeccccccccccd28, 0x40604c15c7477295, 0x0, 0x0, - 0xbfeccccccccccd9b, 0x405aaafea7e4b54d, + 0xbfeccccccccccc6e, 0x405aaafea7e4b54c, 0x0, 0x0, - 0xbfeccccccccccd41, 0x405690a22c6ee736, + 0xbfeccccccccccd14, 0x405690a22c6ee736, 0x0, 0x0, - 0xbfeccccccccccd58, 0x40538e5c57b0a396, + 0xbfeccccccccccce5, 0x40538e5c57b0a392, 0x0, 0x0, - 0xbfecccccccccccee, 0x40514152583a6d86, + 0xbfeccccccccccce1, 0x40514152583a6d86, 0x0, 0x0, - 0xbfeccccccccccd3a, 0x404ee091ba6ea2b9, + 0xbfeccccccccccc98, 0x404ee091ba6ea2ba, 0x0, 0x0, - 0xbfecccccccccccf4, 0x404befa413e515be, + 0xbfeccccccccccd08, 0x404befa413e515be, 0x0, 0x0, - 0xbfeccccccccccd00, 0x404981a57b930dd1, + 0xbfeccccccccccc84, 0x404981a57b930dd1, 0x0, 0x0, - 0xbfecccccccccccec, 0x404777295eaf9f8f, + 0xbfeccccccccccca6, 0x404777295eaf9f8e, 0x0, 0x0, - 0xbfecccccccccccdb, 0x4045ba12be3b5a06, + 0xbfeccccccccccc76, 0x4045ba12be3b5a05, 0x0, 0x0, - 0xbfeccccccccccd08, 0x40443a5e42a9253e, + 0xbfecccccccccccc2, 0x40443a5e42a9253f, 0x0, 0x0, - 0xbfecccccccccccf6, 0x4042ec2a79774ee6, + 0xbfeccccccccccc1a, 0x4042ec2a79774ee4, 0x0, 0x0, - 0xbfecccccccccccc8, 0x4041c6774233d804, + 0xbfeccccccccccd1e, 0x4041c6774233d805, 0x0, 0x0, - 0xbfecccccccccccf0, 0x4040c25324c11d3c, + 0xbfeccccccccccccc, 0x4040c25324c11d3c, 0x0, 0x0, - 0xbfeccccccccccd01, 0x403fb499f4a797b1, + 0xbfeccccccccccd13, 0x403fb499f4a797b0, 0x0, 0x0, - 0xbfeccccccccccd0b, 0x403e1422c4e2ef84, + 0xbfeccccccccccc91, 0x403e1422c4e2ef84, 0x0, 0x0, - 0xbfeccccccccccce8, 0x403c9c4a1ee5755a, + 0xbfecccccccccccf0, 0x403c9c4a1ee57558, 0x0, 0x0, - 0xbfeccccccccccd19, 0x403b47650d332406, + 0xbfecccccccccccb0, 0x403b47650d332404, 0x0, 0x0, - 0xbfeccccccccccd2f, 0x403a10ca8d10587d, + 0xbfeccccccccccce5, 0x403a10ca8d10587d, 0x0, 0x0, - 0xbfeccccccccccce7, 0x4038f49cac8f5b02, + 0xbfecccccccccccc7, 0x4038f49cac8f5afd, 0x0, 0x0, - 0xbfecccccccccccff, 0x4037ef9f196b923f, + 0xbfecccccccccccb1, 0x4037ef9f196b923f, 0x0, 0x0, - 0xbfecccccccccccfc, 0x4036ff1770299b8e, + 0xbfecccccccccccc0, 0x4036ff1770299b8a, 0x0, 0x0, - 0xbfecccccccccccd2, 0x403620b4b817f811, + 0xbfecccccccccccd9, 0x403620b4b817f810, 0x0, 0x0, - 0xbfeccccccccccd11, 0x4035527c389eb4d4, + 0xbfeccccccccccce3, 0x4035527c389eb4d4, 0x0, 0x0, - 0xbfeccccccccccce2, 0x403492ba578bc6f0, + 0xbfecccccccccccc6, 0x403492ba578bc6ec, 0x0, 0x0, - 0xbfeccccccccccd2d, 0x4033dff68b3e84c6, + 0xbfecccccccccccc2, 0x4033dff68b3e84c4, 0x0, 0x0, - 0xbfeccccccccccd2c, 0x403338e9abdf8daa, + 0xbfeccccccccccd02, 0x403338e9abdf8da6, 0x0, 0x0, - 0xbfeccccccccccd08, 0x40329c761cbece81, + 0xbfeccccccccccc30, 0x40329c761cbece7c, 0x0, 0x0, - 0xbfecccccccccccca, 0x403209a168261346, + 0xbfeccccccccccd5f, 0x403209a168261347, 0x0, 0x0, - 0xbfecccccccccccf0, 0x40317f8f00378e3a, + 0xbfecccccccccccba, 0x40317f8f00378e3a, 0x0, 0x0, - 0xbfeccccccccccce7, 0x4030fd7be962e272, + 0xbfeccccccccccce5, 0x4030fd7be962e273, 0x0, 0x0, - 0xbfecccccccccccd2, 0x403082bb2061722a, + 0xbfeccccccccccca5, 0x403082bb2061722a, 0x0, 0x0, - 0xbfecccccccccccef, 0x40300eb297c30fb5, + 0xbfeccccccccccd0b, 0x40300eb297c30fb2, 0x0, 0x0, - 0xbfecccccccccccd6, 0x402f41b16180aa17, + 0xbfecccccccccccc7, 0x402f41b16180aa18, 0x0, 0x0, - 0xbfeccccccccccce6, 0x402e716431d1c095, + 0xbfecccccccccccdd, 0x402e716431d1c095, 0x0, 0x0, - 0xbfeccccccccccd32, 0x402dab9ff59b8f80, + 0xbfeccccccccccc9d, 0x402dab9ff59b8f7c, 0x0, 0x0, - 0xbfecccccccccccae, 0x402cef9ce6a0dd68, + 0xbfecccccccccccda, 0x402cef9ce6a0dd66, 0x0, 0x0, - 0xbfecccccccccccc0, 0x402c3ca680036d62, + 0xbfecccccccccccae, 0x402c3ca680036d62, 0x0, 0x0, - 0xbfecccccccccccec, 0x402b92193a56f04f, + 0xbfecccccccccccdc, 0x402b92193a56f050, 0x0, 0x0, - 0xbfecccccccccccda, 0x402aef6097b15978, + 0xbfecccccccccccf0, 0x402aef6097b15974, 0x0, 0x0, - 0xbfecccccccccccd1, 0x402a53f573236c6a, + 0xbfecccccccccccb0, 0x402a53f573236c6e, 0x0, 0x0, - 0xbfecccccccccccf2, 0x4029bf5c893ab729, + 0xbfecccccccccccac, 0x4029bf5c893ab72c, 0x0, 0x0, - 0xbfecccccccccccbe, 0x4029312530f6e79f, + 0xbfeccccccccccccc, 0x4029312530f6e79f, 0x0, 0x0, - 0xbfeccccccccccd2c, 0x4028a8e83e0e9fd4, + 0xbfeccccccccccce2, 0x4028a8e83e0e9fd2, 0x0, 0x0, - 0xbfecccccccccccad, 0x40282647068d6c7e, + 0xbfecccccccccccdb, 0x40282647068d6c83, 0x0, 0x0, - 0xbfecccccccccccea, 0x4027a8ea86cb3171, + 0xbfecccccccccccb6, 0x4027a8ea86cb3172, 0x0, 0x0, - 0xbfecccccccccccc8, 0x402730829f88166c, + 0xbfeccccccccccce8, 0x402730829f88166a, 0x0, 0x0, - 0xbfecccccccccccea, 0x4026bcc56a9f4c91, + 0xbfecccccccccccb2, 0x4026bcc56a9f4c91, 0x0, 0x0, - 0xbfeccccccccccce4, 0x40264d6ea34d9fbc, + 0xbfecccccccccccda, 0x40264d6ea34d9fbb, 0x0, 0x0, - 0xbfeccccccccccce9, 0x4025e23f1f7c142e, + 0xbfecccccccccccde, 0x4025e23f1f7c142f, 0x0, 0x0, - 0xbfecccccccccccca, 0x40257afc57df12c3, + 0xbfeccccccccccce8, 0x40257afc57df12c2, 0x0, 0x0, - 0xbfecccccccccccd2, 0x4025176ffd0b4b0d, + 0xbfecccccccccccde, 0x4025176ffd0b4b13, 0x0, 0x0, - 0xbfecccccccccccc5, 0x4024b76797e54060, + 0xbfeccccccccccc96, 0x4024b76797e5405e, 0x0, 0x0, - 0xbfecccccccccccd8, 0x40245ab43409a697, + 0xbfeccccccccccccc, 0x40245ab43409a694, 0x0, 0x0, - 0xbfecccccccccccf5, 0x4024012a12fd17ee, + 0xbfecccccccccccc9, 0x4024012a12fd17ec, 0x0, 0x0, - 0xbfecccccccccccfb, 0x4023aaa0671abefa, + 0xbfecccccccccccdb, 0x4023aaa0671abefa, 0x0, 0x0, - 0xbfeccccccccccd07, 0x402356f1155c85e3, + 0xbfeccccccccccce7, 0x402356f1155c85e0, 0x0, 0x0, - 0xbfecccccccccccf0, 0x402305f87d3534a4, + 0xbfecccccccccccaa, 0x402305f87d3534a0, 0x0, 0x0, - 0xbfeccccccccccca8, 0x4022b79545ce73a0, + 0xbfecccccccccccb4, 0x4022b79545ce739c, 0x0, 0x0, - 0xbfeccccccccccc65, 0x40226ba8301295ca, + 0xbfeccccccccccc8c, 0x40226ba8301295dc, 0x0, 0x0, - 0xbfecccccccccccb9, 0x40222213ecfceabf, + 0xbfecccccccccccc4, 0x40222213ecfceac1, 0x0, 0x0, - 0xbfeccccccccccc8f, 0x4021dabcf7bb9f5c, + 0xbfecccccccccccc2, 0x4021dabcf7bb9f58, 0x0, 0x0, - 0xbfecccccccccccbe, 0x40219589733c4769, + 0xbfeccccccccccce0, 0x40219589733c4769, 0x0, 0x0, - 0xbfeccccccccccc99, 0x402152610ac85aa2, + 0xbfeccccccccccca2, 0x402152610ac85aa1, 0x0, 0x0, - 0xbfeccccccccccce7, 0x4021112cd56188d6, + 0xbfeccccccccccccc, 0x4021112cd56188d4, 0x0, 0x0, - 0xbfeccccccccccced, 0x4020d1d73b970180, + 0xbfecccccccccccba, 0x4020d1d73b970180, 0x0, 0x0, - 0xbfecccccccccccd1, 0x4020944bdf94d5a6, + 0xbfeccccccccccce0, 0x4020944bdf94d5a6, 0x0, 0x0, - 0xbfeccccccccccce8, 0x402058778735a434, + 0xbfecccccccccccdf, 0x402058778735a436, 0x0, 0x0, - 0xbfeccccccccccce6, 0x40201e4807e4e858, + 0xbfecccccccccccab, 0x40201e4807e4e859, 0x0, 0x0, - 0xbfecccccccccccc2, 0x401fcb58684b5418, + 0xbfecccccccccccbe, 0x401fcb58684b5416, 0x0, 0x0, - 0xbfecccccccccccaf, 0x401f5d27952c2213, + 0xbfeccccccccccccd, 0x401f5d27952c2214, 0x0, 0x0, - 0xbfecccccccccccfd, 0x401ef1decc991332, + 0xbfecccccccccccea, 0x401ef1decc991335, 0x0, 0x0, - 0xbfecccccccccccf1, 0x401e8960e0ddb921, + 0xbfeccccccccccccc, 0x401e8960e0ddb920, 0x0, 0x0, - 0xbfecccccccccccfa, 0x401e239225cdbdce, + 0xbfecccccccccccc6, 0x401e239225cdbdc6, 0x0, 0x0, - 0xbfecccccccccccd0, 0x401dc05858368370, + 0xbfecccccccccccdb, 0x401dc0585836836c, 0x0, 0x0, - 0xbfecccccccccccf9, 0x401d5f9a872b35c4, + 0xbfecccccccccccf4, 0x401d5f9a872b35d2, 0x0, 0x0, - 0xbfecccccccccccd0, 0x401d0140ff020b9e, + 0xbfecccccccccccb4, 0x401d0140ff020ba0, 0x0, 0x0, - 0xbfecccccccccccb5, 0x401ca53535dd8308, + 0xbfeccccccccccca3, 0x401ca53535dd8303, 0x0, 0x0, - 0xbfecccccccccccdf, 0x401c4b61b9a00005, + 0xbfeccccccccccce1, 0x401c4b61b9a0000f, 0x0, 0x0, - 0xbfeccccccccccd05, 0x401bf3b21f2b6c2b, + 0xbfeccccccccccccc, 0x401bf3b21f2b6c38, 0x0, 0x0, - 0xbfecccccccccccf0, 0x401b9e12f2d155ac, + 0xbfeccccccccccca3, 0x401b9e12f2d155ac, 0x0, 0x0, - 0xbfeccccccccccce7, 0x401b4a71a9daa106, + 0xbfecccccccccccda, 0x401b4a71a9daa103, 0x0, 0x0, - 0xbfecccccccccccae, 0x401af8bc95102cb0, + 0xbfecccccccccccd4, 0x401af8bc95102cb1, 0x0, 0x0, - 0xbfeccccccccccccc, 0x401aa8e2d42fd8aa, + 0xbfecccccccccccd0, 0x401aa8e2d42fd89a, 0x0, 0x0, - 0xbfecccccccccccb7, 0x401a5ad44a3b3f57, + 0xbfecccccccccccda, 0x401a5ad44a3b3f4a, 0x0, 0x0, - 0xbfecccccccccccb4, 0x401a0e81928f195a, + 0xbfecccccccccccb4, 0x401a0e81928f195c, 0x0, 0x0, - 0xbfeccccccccccce4, 0x4019c3dbf6b3c67e, + 0xbfecccccccccccd3, 0x4019c3dbf6b3c682, 0x0, 0x0, - 0xbfeccccccccccced, 0x40197ad564d8d1a0, + 0xbfeccccccccccd10, 0x40197ad564d8d19f, 0x0, 0x0, - 0xbfeccccccccccced, 0x4019336066ee7fa6, + 0xbfecccccccccccec, 0x4019336066ee7fa6, 0x0, 0x0, - 0xbfeccccccccccccc, 0x4018ed701a51945a, + 0xbfecccccccccccce, 0x4018ed701a51945a, 0x0, 0x0, - 0xbfecccccccccccfd, 0x4018a8f827fe7836, + 0xbfeccccccccccd0e, 0x4018a8f827fe783e, 0x0, 0x0, - 0xbfecccccccccccff, 0x401865ecbd41d34c, + 0xbfeccccccccccc74, 0x401865ecbd41d36a, 0x0, 0x0, - 0xbfeccccccccccd06, 0x4018244284dd8356, + 0xbfecccccccccccde, 0x4018244284dd8360, 0x0, 0x0, - 0xbfecccccccccccf1, 0x4017e3eea099922a, + 0xbfecccccccccccac, 0x4017e3eea099922a, 0x0, 0x0, - 0xbfecccccccccccb2, 0x4017a4e6a339805a, + 0xbfecccccccccccca, 0x4017a4e6a339805e, 0x0, 0x0, - 0xbfecccccccccccef, 0x401767208aced43c, + 0xbfeccccccccccc94, 0x401767208aced440, 0x0, 0x0, - 0xbfecccccccccccd9, 0x40172a92bb626f00, + 0xbfeccccccccccccd, 0x40172a92bb626f01, 0x0, 0x0, - 0xbfeccccccccccd03, 0x4016ef33f9eeab65, + 0xbfecccccccccccb5, 0x4016ef33f9eeab60, 0x0, 0x0, - 0xbfeccccccccccce9, 0x4016b4fb67a4c1f4, + 0xbfecccccccccccb2, 0x4016b4fb67a4c1ee, 0x0, 0x0, - 0xbfecccccccccccf1, 0x40167be07d785b4a, + 0xbfeccccccccccc96, 0x40167be07d785b3e, 0x0, 0x0, - 0xbfecccccccccccdd, 0x401643db07ec9d10, + 0xbfecccccccccccd2, 0x401643db07ec9d0e, 0x0, 0x0, - 0xbfeccccccccccd17, 0x40160ce3231e5950, + 0xbfecccccccccccdc, 0x40160ce3231e5952, 0x0, 0x0, - 0xbfecccccccccccca, 0x4015d6f137075bc0, + 0xbfeccccccccccccc, 0x4015d6f137075bc0, 0x0, 0x0, - 0xbfecccccccccccd3, 0x4015a1fdf3f71c7a, + 0xbfecccccccccccd0, 0x4015a1fdf3f71c78, 0x0, 0x0, - 0xbfeccccccccccce3, 0x40156e024f3d66cc, + 0xbfecccccccccccf6, 0x40156e024f3d66d1, 0x0, 0x0, - 0xbfecccccccccccd9, 0x40153af78003c1d3, + 0xbfecccccccccccba, 0x40153af78003c1cf, 0x0, 0x0, - 0xbfecccccccccccdb, 0x401508d6fc52a578, + 0xbfeccccccccccccf, 0x401508d6fc52a574, 0x0, 0x0, - 0xbfeccccccccccd04, 0x4014d79a763fbb75, + 0xbfeccccccccccd40, 0x4014d79a763fbb69, 0x0, 0x0, - 0xbfeccccccccccce9, 0x4014a73bd9429e30, + 0xbfecccccccccccde, 0x4014a73bd9429e2e, 0x0, 0x0, - 0xbfeccccccccccccb, 0x401477b547adb6a6, + 0xbfecccccccccccbb, 0x401477b547adb6a1, 0x0, 0x0, - 0xbfecccccccccccf2, 0x4014490118490350, + 0xbfecccccccccccb8, 0x401449011849034c, 0x0, 0x0, - 0xbfeccccccccccd2e, 0x40141b19d40cb9c2, + 0xbfecccccccccccb5, 0x40141b19d40cb9cc, 0x0, 0x0, - 0xbfeccccccccccce3, 0x4013edfa33f9da14, + 0xbfecccccccccccfc, 0x4013edfa33f9da0e, 0x0, 0x0, - 0xbfeccccccccccce5, 0x4013c19d1f0ee9f6, + 0xbfecccccccccccbe, 0x4013c19d1f0ee9eb, 0x0, 0x0, - 0xbfecccccccccccf0, 0x401395fda8572ec0, + 0xbfecccccccccccca, 0x401395fda8572ebc, 0x0, 0x0, - 0xbfeccccccccccd2f, 0x40136b170d12d92c, + 0xbfeccccccccccce2, 0x40136b170d12d92e, 0x0, 0x0, - 0xbfeccccccccccccb, 0x401340e4b2f6ae92, + 0xbfecccccccccccee, 0x401340e4b2f6ae8a, 0x0, 0x0, - 0xbfecccccccccccec, 0x401317622681d6be, + 0xbfecccccccccccb7, 0x401317622681d6b6, 0x0, 0x0, - 0xbfeccccccccccd0d, 0x4012ee8b1968896e, + 0xbfecccccccccccc2, 0x4012ee8b19688964, 0x0, 0x0, - 0xbfeccccccccccd1d, 0x4012c65b61126d00, + 0xbfecccccccccccba, 0x4012c65b61126cf0, 0x0, 0x0, - 0xbfeccccccccccd21, 0x40129ecef52b8ab2, + 0xbfecccccccccccb6, 0x40129ecef52b8ab4, 0x0, 0x0, - 0xbfeccccccccccd39, 0x401277e1ee46cf63, + 0xbfecccccccccccd2, 0x401277e1ee46cf56, 0x0, 0x0, - 0xbfeccccccccccdac, 0x4012519084911fa2, + 0xbfeccccccccccc60, 0x4012519084911f9e, 0x0, 0x0, - 0xbfecccccccccce3c, 0x40122bd70e9416c8, + 0xbfeccccccccccaf2, 0x40122bd70e9416c8, 0x0, 0x0, - 0xbfeccccccccccc55, 0x401206b2000796a4, + 0xbfeccccccccccd68, 0x401206b20007969c, 0x0, 0x0, - 0xbfecccccccccccb7, 0x4011e21de8b15914, + 0xbfecccccccccccd0, 0x4011e21de8b15908, 0x0, 0x0, - 0xbfecccccccccccbe, 0x4011be177351c616, + 0xbfecccccccccccde, 0x4011be177351c613, 0x0, 0x0, - 0xbfeccccccccccce4, 0x40119a9b649d5707, + 0xbfecccccccccccda, 0x40119a9b649d5702, 0x0, 0x0, - 0xbfecccccccccccee, 0x401177a69a41de47, + 0xbfeccccccccccca4, 0x401177a69a41de49, 0x0, 0x0, - 0xbfecccccccccccbc, 0x4011553609f713b4, + 0xbfeccccccccccca4, 0x4011553609f713b9, 0x0, 0x0, - 0xbfecccccccccccce, 0x40113346c099cfbf, + 0xbfecccccccccccc8, 0x40113346c099cfbc, 0x0, 0x0, - 0xbfecccccccccccf9, 0x401111d5e1516776, + 0xbfecccccccccccfc, 0x401111d5e1516776, 0x0, 0x0, - 0xbfecccccccccccf8, 0x4010f0e0a4bea548, + 0xbfeccccccccccca5, 0x4010f0e0a4bea54b, 0x0, 0x0, - 0xbfecccccccccccce, 0x4010d0645833e0b2, + 0xbfecccccccccccd4, 0x4010d0645833e0ba, 0x0, 0x0, - 0xbfecccccccccccc8, 0x4010b05e5cf5bea5, + 0xbfecccccccccccda, 0x4010b05e5cf5beac, 0x0, 0x0, - 0xbfeccccccccccca1, 0x401090cc27842c08, + 0xbfecccccccccccf6, 0x401090cc27842c12, 0x0, 0x0, - 0xbfeccccccccccd08, 0x401071ab3eeb2916, + 0xbfeccccccccccce4, 0x401071ab3eeb2914, 0x0, 0x0, - 0xbfecccccccccccdc, 0x401052f93c1b026a, + 0xbfecccccccccccbc, 0x401052f93c1b026e, 0x0, 0x0, - 0xbfecccccccccccee, 0x401034b3c9479ab2, + 0xbfecccccccccccca, 0x401034b3c9479aa8, 0x0, 0x0, - 0xbfeccccccccccd59, 0x401016d8a14e6c7e, + 0xbfecccccccccccd2, 0x401016d8a14e6c71, 0x0, 0x0, - 0xbfeccccccccccc63, 0x400ff2cb1e45e1db, + 0xbfeccccccccccc8e, 0x400ff2cb1e45e1e2, 0x0, 0x0, - 0xbfecccccccccccec, 0x400fb8b0da8239e9, + 0xbfecccccccccccc4, 0x400fb8b0da8239e0, 0x0, 0x0, - 0xbfecccccccccccd9, 0x400f7f5e4a4b52c9, + 0xbfecccccccccccc6, 0x400f7f5e4a4b52cd, 0x0, 0x0, - 0xbfeccccccccccce9, 0x400f46cf5d97c2ce, + 0xbfecccccccccccd1, 0x400f46cf5d97c2db, 0x0, 0x0, - 0xbfeccccccccccccf, 0x400f0f0020616570, + 0xbfeccccccccccccd, 0x400f0f0020616560, 0x0, 0x0, - 0xbfeccccccccccceb, 0x400ed7ecb9b583bc, + 0xbfecccccccccccc6, 0x400ed7ecb9b583cf, 0x0, 0x0, - 0xbfecccccccccccc0, 0x400ea1916ace8d17, + 0xbfecccccccccccc1, 0x400ea1916ace8d13, 0x0, 0x0, - 0xbfeccccccccccce5, 0x400e6bea8e36ed53, + 0xbfeccccccccccc8d, 0x400e6bea8e36ed4f, 0x0, 0x0, - 0xbfecccccccccccf7, 0x400e36f496f497c2, + 0xbfeccccccccccca2, 0x400e36f496f497be, 0x0, 0x0, - 0xbfecccccccccccfa, 0x400e02ac0fbcdfa7, + 0xbfecccccccccccc7, 0x400e02ac0fbcdfb0, 0x0, 0x0, - 0xbfecccccccccccd8, 0x400dcf0d9a303e3e, + 0xbfecccccccccccf2, 0x400dcf0d9a303e42, 0x0, 0x0, - 0xbfeccccccccccd0e, 0x400d9c15ee1daac8, + 0xbfeccccccccccd15, 0x400d9c15ee1daad4, 0x0, 0x0, - 0xbfecccccccccccef, 0x400d69c1d8cd2f32, + 0xbfecccccccccccb1, 0x400d69c1d8cd2f36, 0x0, 0x0, - 0xbfecccccccccccd5, 0x400d380e3c5164be, + 0xbfecccccccccccdd, 0x400d380e3c5164c1, 0x0, 0x0, - 0xbfeccccccccccd25, 0x400d06f80edf8cf4, + 0xbfecccccccccccf4, 0x400d06f80edf8cd5, 0x0, 0x0, - 0xbfeccccccccccd7a, 0x400cd67c5a2dfa44, + 0xbfeccccccccccd0c, 0x400cd67c5a2dfa3e, 0x0, 0x0, - 0xbfecccccccccccbe, 0x400ca6983ad8853c, + 0xbfeccccccccccca2, 0x400ca6983ad8851d, 0x0, 0x0, - 0xbfecccccccccccd0, 0x400c7748dfcac5af, + 0xbfecccccccccccc7, 0x400c7748dfcac5b1, 0x0, 0x0, - 0xbfecccccccccccd5, 0x400c488b89afd774, + 0xbfeccccccccccccd, 0x400c488b89afd781, 0x0, 0x0, - 0xbfecccccccccccdb, 0x400c1a5d8a676738, + 0xbfecccccccccccd3, 0x400c1a5d8a67674a, 0x0, 0x0, - 0xbfeccccccccccced, 0x400becbc447fd1f2, + 0xbfecccccccccccf0, 0x400becbc447fd200, 0x0, 0x0, - 0xbfecccccccccccce, 0x400bbfa52ab51ed6, + 0xbfecccccccccccdf, 0x400bbfa52ab51ed0, 0x0, 0x0, - 0xbfeccccccccccce9, 0x400b9315bf749f46, + 0xbfecccccccccccd0, 0x400b9315bf749f3a, 0x0, 0x0, - 0xbfeccccccccccd36, 0x400b670b9465034e, + 0xbfeccccccccccc8e, 0x400b670b94650365, 0x0, 0x0, - 0xbfecccccccccccb5, 0x400b3b8449f2b439, + 0xbfeccccccccccce6, 0x400b3b8449f2b42c, 0x0, 0x0, - 0xbfecccccccccccdc, 0x400b107d8ee044be, + 0xbfecccccccccccd3, 0x400b107d8ee044be, 0x0, 0x0, - 0xbfecccccccccccc5, 0x400ae5f51fdad137, + 0xbfecccccccccccc8, 0x400ae5f51fdad146, 0x0, 0x0, - 0xbfecccccccccccd7, 0x400abbe8c71221f8, + 0xbfeccccccccccd07, 0x400abbe8c71221f1, 0x0, 0x0, - 0xbfecccccccccccd6, 0x400a92565bd46a15, + 0xbfecccccccccccc7, 0x400a92565bd46a22, 0x0, 0x0, - 0xbfeccccccccccd08, 0x400a693bc22d7f94, + 0xbfecccccccccccc7, 0x400a693bc22d7f92, 0x0, 0x0, - 0xbfecccccccccccae, 0x400a4096ea8965ac, + 0xbfecccccccccccf1, 0x400a4096ea8965a0, 0x0, 0x0, - 0xbfeccccccccccd04, 0x400a1865d15a0a0c, + 0xbfeccccccccccd2d, 0x400a1865d15a09f8, 0x0, 0x0, - 0xbfecccccccccccf9, 0x4009f0a67ec01312, + 0xbfecccccccccccd6, 0x4009f0a67ec01314, 0x0, 0x0, - 0xbfeccccccccccd30, 0x4009c9570636a16f, + 0xbfecccccccccccc0, 0x4009c9570636a190, 0x0, 0x0, - 0xbfecccccccccccbc, 0x4009a2758641e54b, + 0xbfecccccccccccce, 0x4009a2758641e54b, 0x0, 0x0, - 0xbfeccccccccccce9, 0x40097c0028206ce8, + 0xbfecccccccccccb2, 0x40097c0028206d02, 0x0, 0x0, - 0xbfeccccccccccccd, 0x400955f51f7f11ce, + 0xbfecccccccccccf2, 0x400955f51f7f11ea, 0x0, 0x0, - 0xbfeccccccccccc20, 0x40093052aa2f67b5, + 0xbfeccccccccccccf, 0x40093052aa2f67e8, 0x0, 0x0, - 0xbfecccccccccccf7, 0x40090b170fe098f0, + 0xbfecccccccccccdf, 0x40090b170fe098f3, 0x0, 0x0, - 0xbfeccccccccccd03, 0x4008e640a1da93d3, + 0xbfeccccccccccca4, 0x4008e640a1da939b, 0x0, 0x0, - 0xbfecccccccccccdc, 0x4008c1cdbabb76d6, + 0xbfecccccccccccc2, 0x4008c1cdbabb76cf, 0x0, 0x0, - 0xbfeccccccccccd11, 0x40089dbcbe372464, + 0xbfecccccccccccd5, 0x40089dbcbe3724a6, 0x0, 0x0, - 0xbfecccccccccccb1, 0x40087a0c18d8e835, + 0xbfecccccccccccb9, 0x40087a0c18d8e834, 0x0, 0x0, - 0xbfeccccccccccbf1, 0x400856ba3fc7199b, + 0xbfecccccccccccda, 0x400856ba3fc71998, 0x0, 0x0, - 0xbfecccccccccccca, 0x400833c5b088ae4e, + 0xbfeccccccccccce1, 0x400833c5b088ae53, 0x0, 0x0, - 0xbfeccccccccccc4b, 0x4008112cf0cca300, + 0xbfecccccccccccde, 0x4008112cf0cca306, 0x0, 0x0, - 0xbfeccccccccccd03, 0x4007eeee8e332de4, + 0xbfeccccccccccc78, 0x4007eeee8e332dd6, 0x0, 0x0, - 0xbfeccccccccccba0, 0x4007cd091e18a7b6, + 0xbfeccccccccccc93, 0x4007cd091e18a759, 0x0, 0x0, - 0xbfecccccccccccc5, 0x4007ab7b3d621ce9, + 0xbfecccccccccccbf, 0x4007ab7b3d621cde, 0x0, 0x0, - 0xbfeccccccccccccf, 0x40078a43904b7985, + 0xbfecccccccccccde, 0x40078a43904b7982, 0x0, 0x0, - 0xbfeccccccccccca2, 0x40076960c23738c5, + 0xbfeccccccccccce2, 0x40076960c23738c0, 0x0, 0x0, - 0xbfecccccccccccbb, 0x400748d1857f95f7, + 0xbfecccccccccccbf, 0x400748d1857f95f1, 0x0, 0x0, - 0xbfeccccccccccc98, 0x4007289493492862, + 0xbfecccccccccccda, 0x400728949349286d, 0x0, 0x0, - 0xbfeccccccccccc5b, 0x400708a8ab56e0fa, + 0xbfecccccccccccb9, 0x400708a8ab56e0f8, 0x0, 0x0, - 0xbfecccccccccccf6, 0x4006e90c93df5c4e, + 0xbfecccccccccccc4, 0x4006e90c93df5c4c, 0x0, 0x0, - 0xbfeccccccccccd02, 0x4006c9bf19637d6c, + 0xbfecccccccccccf2, 0x4006c9bf19637d44, 0x0, 0x0, - 0xbfecccccccccccb5, 0x4006aabf0e864562, + 0xbfecccccccccccc0, 0x4006aabf0e864570, 0x0, 0x0, - 0xbfeccccccccccc57, 0x40068c0b4be5dde8, + 0xbfecccccccccccce, 0x40068c0b4be5dde8, 0x0, 0x0, - 0xbfecccccccccccd9, 0x40066da2aff5c9dc, + 0xbfecccccccccccc6, 0x40066da2aff5c9de, 0x0, 0x0, - 0xbfeccccccccccccd, 0x40064f841eda3510, + 0xbfeccccccccccd00, 0x40064f841eda34fa, 0x0, 0x0, - 0xbfecccccccccccb2, 0x400631ae82445578, + 0xbfecccccccccccef, 0x400631ae8244556f, 0x0, 0x0, - 0xbfecccccccccccc1, 0x40061420c94fd979, + 0xbfecccccccccccae, 0x40061420c94fd967, 0x0, 0x0, - 0xbfecccccccccccb9, 0x4005f6d9e8615416, + 0xbfecccccccccccc6, 0x4005f6d9e861541a, 0x0, 0x0, - 0xbfecccccccccccf3, 0x4005d9d8d905a46e, + 0xbfecccccccccccdf, 0x4005d9d8d905a466, 0x0, 0x0, - 0xbfecccccccccccac, 0x4005bd1c99d24b7e, + 0xbfeccccccccccca3, 0x4005bd1c99d24b6e, 0x0, 0x0, - 0xbfeccccccccccd32, 0x4005a0a42e46aaf6, + 0xbfecccccccccccb1, 0x4005a0a42e46aaf9, 0x0, 0x0, - 0xbfecccccccccccd7, 0x4005846e9eae2478, + 0xbfecccccccccccd5, 0x4005846e9eae2477, 0x0, 0x0, - 0xbfecccccccccccc1, 0x4005687af803115f, + 0xbfecccccccccccc6, 0x4005687af803116e, 0x0, 0x0, - 0xbfeccccccccccceb, 0x40054cc84bd28ca9, + 0xbfeccccccccccd12, 0x40054cc84bd28cb6, 0x0, 0x0, - 0xbfecccccccccccc7, 0x40053155b02107d6, + 0xbfecccccccccccf5, 0x40053155b02107e2, 0x0, 0x0, - 0xbfecccccccccccc7, 0x400516223f4fa428, + 0xbfeccccccccccccd, 0x400516223f4fa430, 0x0, 0x0, - 0xbfeccccccccccca6, 0x4004fb2d1802497e, + 0xbfeccccccccccce5, 0x4004fb2d18024988, 0x0, 0x0, - 0xbfecccccccccccdd, 0x4004e0755d0675ca, + 0xbfecccccccccccba, 0x4004e0755d0675d2, 0x0, 0x0, - 0xbfecccccccccccb6, 0x4004c5fa353abd47, + 0xbfeccccccccccce2, 0x4004c5fa353abd51, 0x0, 0x0, - 0xbfeccccccccccc94, 0x4004abbacb76f822, + 0xbfecccccccccccc5, 0x4004abbacb76f820, 0x0, 0x0, - 0xbfecccccccccccd2, 0x400491b64e7515b8, + 0xbfeccccccccccd0a, 0x400491b64e7515b4, 0x0, 0x0, - 0xbfeccccccccccca3, 0x400477ebf0ba9250, + 0xbfecccccccccccee, 0x400477ebf0ba9255, 0x0, 0x0, - 0xbfecccccccccccc7, 0x40045e5ae882885c, + 0xbfecccccccccccc6, 0x40045e5ae882884e, 0x0, 0x0, - 0xbfeccccccccccc7c, 0x400445026fa8592a, + 0xbfecccccccccccee, 0x400445026fa85922, 0x0, 0x0, - 0xbfeccccccccccc79, 0x40042be1c392e874, + 0xbfecccccccccccba, 0x40042be1c392e8d0, 0x0, 0x0, - 0xbfeccccccccccd11, 0x400412f8252067f0, + 0xbfeccccccccccd34, 0x400412f825206800, 0x0, 0x0, - 0xbfeccccccccccca3, 0x4003fa44d892a69f, + 0xbfecccccccccccc4, 0x4003fa44d892a69a, 0x0, 0x0, - 0xbfeccccccccccce2, 0x4003e1c7257bed50, + 0xbfecccccccccccdd, 0x4003e1c7257bed4e, 0x0, 0x0, - 0xbfecccccccccccb2, 0x4003c97e56ac56fd, + 0xbfecccccccccccbe, 0x4003c97e56ac570c, 0x0, 0x0, - 0xbfecccccccccccce, 0x4003b169ba1fa8e1, + 0xbfecccccccccccb3, 0x4003b169ba1fa8e2, 0x0, 0x0, - 0xbfeccccccccccccb, 0x40039988a0eba2a2, + 0xbfeccccccccccce7, 0x40039988a0eba297, 0x0, 0x0, - 0xbfeccccccccccca9, 0x400381da5f2ec5e4, + 0xbfecccccccccccc7, 0x400381da5f2ec5e2, 0x0, 0x0, - 0xbfeccccccccccc60, 0x40036a5e4bff8f02, + 0xbfeccccccccccccf, 0x40036a5e4bff8ef7, 0x0, 0x0, - 0xbfeccccccccccced, 0x40035313c15c1cf4, + 0xbfecccccccccccb3, 0x40035313c15c1cf0, 0x0, 0x0, - 0xbfecccccccccccd2, 0x40033bfa1c1a44fc, + 0xbfecccccccccccce, 0x40033bfa1c1a44f4, 0x0, 0x0, - 0xbfecccccccccccd9, 0x40032510bbd80dd8, + 0xbfecccccccccccdb, 0x40032510bbd80ddc, 0x0, 0x0, - 0xbfecccccccccccd3, 0x40030e5702ec9180, + 0xbfecccccccccccfa, 0x40030e5702ec9178, 0x0, 0x0, - 0xbfecccccccccccbe, 0x4002f7cc56593f6c, + 0xbfecccccccccccd9, 0x4002f7cc56593f68, 0x0, 0x0, - 0xbfeccccccccccce6, 0x4002e1701dbb7fb0, + 0xbfecccccccccccb6, 0x4002e1701dbb7fb4, 0x0, 0x0, - 0xbfecccccccccccfa, 0x4002cb41c33eb1bb, + 0xbfecccccccccccf7, 0x4002cb41c33eb1b5, 0x0, 0x0, - 0xbfeccccccccccc72, 0x4002b540b38e84ef, + 0xbfeccccccccccd04, 0x4002b540b38e84cf, 0x0, 0x0, - 0xbfecccccccccccb8, 0x40029f6c5dc9a8d6, + 0xbfecccccccccccc7, 0x40029f6c5dc9a8d1, 0x0, 0x0, - 0xbfeccccccccccccc, 0x400289c43374d204, + 0xbfeccccccccccce4, 0x400289c43374d20a, 0x0, 0x0, - 0xbfeccccccccccce5, 0x40027447a86e1063, + 0xbfecccccccccccce, 0x40027447a86e105e, 0x0, 0x0, - 0xbfecccccccccccc0, 0x40025ef632e07630, + 0xbfeccccccccccc9b, 0x40025ef632e07635, 0x0, 0x0, - 0xbfecccccccccccf8, 0x400249cf4b380c9b, + 0xbfecccccccccccc1, 0x400249cf4b380c98, 0x0, 0x0, - 0xbfecccccccccccbd, 0x400234d26c161323, + 0xbfeccccccccccccf, 0x400234d26c161310, 0x0, 0x0, - 0xbfecccccccccccbd, 0x40021fff12458882, + 0xbfecccccccccccd4, 0x40021fff1245886a, 0x0, 0x0, - 0xbfeccccccccccc4c, 0x40020b54bcaffab4, + 0xbfecccccccccccac, 0x40020b54bcaffab0, 0x0, 0x0, - 0xbfeccccccccccca2, 0x4001f6d2ec529c93, + 0xbfecccccccccccaf, 0x4001f6d2ec529c9a, 0x0, 0x0, - 0xbfeccccccccccd0a, 0x4001e27924339da6, + 0xbfecccccccccccb3, 0x4001e27924339dae, 0x0, 0x0, - 0xbfecccccccccccd0, 0x4001ce46e957c463, + 0xbfecccccccccccbf, 0x4001ce46e957c476, 0x0, 0x0, - 0xbfecccccccccccdb, 0x4001ba3bc2b84718, + 0xbfeccccccccccd29, 0x4001ba3bc2b8473c, 0x0, 0x0, - 0xbfeccccccccccd19, 0x4001a6573938e348, + 0xbfeccccccccccce7, 0x4001a6573938e35e, 0x0, 0x0, - 0xbfeccccccccccd08, 0x40019298d79e3048, + 0xbfecccccccccccf6, 0x40019298d79e303c, 0x0, 0x0, - 0xbfeccccccccccd40, 0x40017f002a842cc5, + 0xbfeccccccccccc41, 0x40017f002a842cc4, 0x0, 0x0, - 0xbfecccccccccce67, 0x40016b8cc055060a, + 0xbfeccccccccccdf1, 0x40016b8cc0550648, 0x0, 0x0, - 0xbfeccccccccccc20, 0x4001583e29401326, + 0xbfeccccccccccbc3, 0x4001583e29401355, 0x0, 0x0, - 0xbfeccccccccccca6, 0x40014513f7310be3, + 0xbfeccccccccccc9c, 0x40014513f7310bb3, 0x0, 0x0, - 0xbfecccccccccccce, 0x4001320dbdc76b67, + 0xbfecccccccccccd0, 0x4001320dbdc76b6e, 0x0, 0x0, - 0xbfeccccccccccca4, 0x40011f2b124e0f5a, + 0xbfeccccccccccc8b, 0x40011f2b124e0f58, 0x0, 0x0, - 0xbfecccccccccccde, 0x40010c6b8bb3009a, + 0xbfecccccccccccdb, 0x40010c6b8bb300a5, 0x0, 0x0, - 0xbfecccccccccccc0, 0x4000f9cec27f7107, + 0xbfecccccccccccd6, 0x4000f9cec27f7109, 0x0, 0x0, - 0xbfeccccccccccccd, 0x4000e75450cfe5a2, + 0xbfeccccccccccca1, 0x4000e75450cfe5a7, 0x0, 0x0, - 0xbfeccccccccccc7d, 0x4000d4fbd24c8fc3, + 0xbfeccccccccccc9b, 0x4000d4fbd24c8fa7, 0x0, 0x0, - 0xbfecccccccccccbf, 0x4000c2c4e421d166, + 0xbfeccccccccccc74, 0x4000c2c4e421d178, 0x0, 0x0, - 0xbfeccccccccccce9, 0x4000b0af24f8eece, + 0xbfeccccccccccccd, 0x4000b0af24f8eedb, 0x0, 0x0, - 0xbfecccccccccccd0, 0x40009eba34f0e7d0, + 0xbfeccccccccccccc, 0x40009eba34f0e7c7, 0x0, 0x0, - 0xbfecccccccccccc4, 0x40008ce5b5977c05, + 0xbfeccccccccccced, 0x40008ce5b5977bfb, 0x0, 0x0, - 0xbfecccccccccccaa, 0x40007b3149e2560e, + 0xbfecccccccccccb1, 0x40007b3149e2560e, 0x0, 0x0, - 0xbfeccccccccccccb, 0x4000699c96285e38, + 0xbfecccccccccccc0, 0x4000699c96285e38, 0x0, 0x0, - 0xbfecccccccccccd1, 0x40005827401b3298, + 0xbfecccccccccccdc, 0x40005827401b32a4, 0x0, 0x0, - 0xbfeccccccccccd01, 0x400046d0eec0c498, + 0xbfecccccccccccfe, 0x400046d0eec0c4cd, 0x0, 0x0, - 0xbfeccccccccccce9, 0x400035994a6d1a1a, + 0xbfeccccccccccca1, 0x400035994a6d1a19, 0x0, 0x0, - 0xbfecccccccccccc5, 0x4000247ffcbc31b7, + 0xbfecccccccccccd0, 0x4000247ffcbc31be, 0x0, 0x0, - 0xbfeccccccccccce7, 0x40001384b08c0994, + 0xbfeccccccccccce2, 0x40001384b08c0992, 0x0, 0x0, - 0xbfeccccccccccd09, 0x400002a711f6c700, + 0xbfeccccccccccc99, 0x400002a711f6c6fc, 0x0, 0x0, - 0xbfecccccccccccb0, 0x3fffe3cd9c99fd76, + 0xbfecccccccccccb1, 0x3fffe3cd9c99fd94, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fffc28728203ae6, + 0xbfecccccccccccc0, 0x3fffc28728203ae4, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fffa17a25d9db26, + 0xbfecccccccccccbc, 0x3fffa17a25d9db3c, 0x0, 0x0, - 0xbfecccccccccccae, 0x3fff80a5f76c7a9e, + 0xbfeccccccccccca5, 0x3fff80a5f76c7a8c, 0x0, 0x0, - 0xbfecccccccccccbf, 0x3fff600a00bf401e, + 0xbfecccccccccccc9, 0x3fff600a00bf3ff4, 0x0, 0x0, - 0xbfecccccccccccf3, 0x3fff3fa5a7f099f0, + 0xbfecccccccccccd2, 0x3fff3fa5a7f099ea, 0x0, 0x0, - 0xbfeccccccccccced, 0x3fff1f78554c361f, + 0xbfecccccccccccd2, 0x3fff1f78554c3632, 0x0, 0x0, - 0xbfeccccccccccce5, 0x3ffeff8173412b95, + 0xbfeccccccccccce1, 0x3ffeff8173412b7a, 0x0, 0x0, - 0xbfecccccccccccf8, 0x3ffedfc06e585b5b, + 0xbfeccccccccccc95, 0x3ffedfc06e585b86, 0x0, 0x0, - 0xbfeccccccccccd1f, 0x3ffec034b52b06d0, + 0xbfecccccccccccc6, 0x3ffec034b52b06bc, 0x0, 0x0, - 0xbfeccccccccccd28, 0x3ffea0ddb85994ca, + 0xbfecccccccccccc2, 0x3ffea0ddb8599492, 0x0, 0x0, - 0xbfecccccccccce84, 0x3ffe81baea828ad2, + 0xbfeccccccccccc85, 0x3ffe81baea828b15, 0x0, 0x0, - 0xbfeccccccccccd3c, 0x3ffe62cbc039b720, + 0xbfeccccccccccd14, 0x3ffe62cbc039b779, 0x0, 0x0, - 0xbfeccccccccccd04, 0x3ffe440fafff84e0, + 0xbfecccccccccccec, 0x3ffe440fafff84e9, 0x0, 0x0, - 0xbfecccccccccccef, 0x3ffe25863238844c, + 0xbfecccccccccccd6, 0x3ffe258632388444, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3ffe072ec1251af5, + 0xbfecccccccccccb9, 0x3ffe072ec1251ae6, 0x0, 0x0, - 0xbfeccccccccccd0a, 0x3ffde908d8d96189, + 0xbfecccccccccccd0, 0x3ffde908d8d96172, 0x0, 0x0, - 0xbfecccccccccccf4, 0x3ffdcb13f7352be3, + 0xbfecccccccccccd6, 0x3ffdcb13f7352bd8, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3ffdad4f9bdc3b06, + 0xbfeccccccccccccf, 0x3ffdad4f9bdc3b1b, 0x0, 0x0, - 0xbfeccccccccccc38, 0x3ffd8fbb482e96e5, + 0xbfeccccccccccd0e, 0x3ffd8fbb482e96d3, 0x0, 0x0, - 0xbfecccccccccccad, 0x3ffd72567f410fda, + 0xbfecccccccccccd4, 0x3ffd72567f410fed, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3ffd5520c5d5e816, + 0xbfecccccccccccc1, 0x3ffd5520c5d5e81d, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3ffd3819a255a0e8, + 0xbfeccccccccccccd, 0x3ffd3819a255a10c, 0x0, 0x0, - 0xbfeccccccccccd01, 0x3ffd1b409cc7eed5, + 0xbfecccccccccccc6, 0x3ffd1b409cc7eebc, 0x0, 0x0, - 0xbfeccccccccccceb, 0x3ffcfe953ecccfa9, + 0xbfecccccccccccb5, 0x3ffcfe953ecccfab, 0x0, 0x0, - 0xbfecccccccccccae, 0x3ffce2171395c5da, + 0xbfecccccccccccd3, 0x3ffce2171395c5d6, 0x0, 0x0, - 0xbfecccccccccccba, 0x3ffcc5c5a7df34a2, + 0xbfecccccccccccb3, 0x3ffcc5c5a7df34b2, 0x0, 0x0, - 0xbfeccccccccccc6c, 0x3ffca9a089e9df46, + 0xbfeccccccccccd5f, 0x3ffca9a089e9df4a, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3ffc8da7497486b3, + 0xbfecccccccccccb2, 0x3ffc8da7497486bf, 0x0, 0x0, - 0xbfecccccccccccaf, 0x3ffc71d977b5aabd, + 0xbfeccccccccccc9f, 0x3ffc71d977b5aab7, 0x0, 0x0, - 0xbfecccccccccccbb, 0x3ffc5636a75566be, + 0xbfeccccccccccccd, 0x3ffc5636a75566b4, 0x0, 0x0, - 0xbfecccccccccccca, 0x3ffc3abe6c677001, + 0xbfecccccccccccbe, 0x3ffc3abe6c676ffe, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3ffc1f705c653134, + 0xbfeccccccccccccc, 0x3ffc1f705c653127, 0x0, 0x0, - 0xbfecccccccccccfa, 0x3ffc044c0e2800d4, + 0xbfecccccccccccef, 0x3ffc044c0e2800d4, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3ffbe95119e378c2, + 0xbfecccccccccccc4, 0x3ffbe95119e378d8, 0x0, 0x0, - 0xbfeccccccccccd18, 0x3ffbce7f191fe5e5, + 0xbfecccccccccccbb, 0x3ffbce7f191fe5c1, 0x0, 0x0, - 0xbfecccccccccccdd, 0x3ffbb3d5a6b4d313, + 0xbfeccccccccccc73, 0x3ffbb3d5a6b4d321, 0x0, 0x0, - 0xbfecccccccccccf2, 0x3ffb99545ec3b31c, + 0xbfecccccccccccc7, 0x3ffb99545ec3b312, 0x0, 0x0, - 0xbfecccccccccccd9, 0x3ffb7efadeb29f06, + 0xbfecccccccccccd5, 0x3ffb7efadeb29f09, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3ffb64c8c5273255, + 0xbfeccccccccccce8, 0x3ffb64c8c5273229, 0x0, 0x0, - 0xbfeccccccccccce3, 0x3ffb4abdb2017da1, + 0xbfecccccccccccec, 0x3ffb4abdb2017da2, 0x0, 0x0, - 0xbfeccccccccccd2a, 0x3ffb30d94657138a, + 0xbfecccccccccccb6, 0x3ffb30d946571378, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3ffb171b246e2bc9, + 0xbfecccccccccccb8, 0x3ffb171b246e2be2, 0x0, 0x0, - 0xbfeccccccccccd04, 0x3ffafd82efb8dea2, + 0xbfecccccccccce12, 0x3ffafd82efb8de40, 0x0, 0x0, - 0xbfecccccccccccd9, 0x3ffae4104cd077ac, + 0xbfeccccccccccd01, 0x3ffae4104cd07776, 0x0, 0x0, - 0xbfeccccccccccc9a, 0x3ffacac2e170dd34, + 0xbfecccccccccccd7, 0x3ffacac2e170dd3c, 0x0, 0x0, - 0xbfeccccccccccd03, 0x3ffab19a54740f64, + 0xbfeccccccccccce0, 0x3ffab19a54740f7a, 0x0, 0x0, - 0xbfecccccccccccbc, 0x3ffa98964dcdbbb6, + 0xbfeccccccccccce1, 0x3ffa98964dcdbbba, 0x0, 0x0, - 0xbfecccccccccccc1, 0x3ffa7fb67686e557, + 0xbfecccccccccccd8, 0x3ffa7fb67686e57a, 0x0, 0x0, - 0xbfecccccccccccbc, 0x3ffa66fa78b9a30d, + 0xbfecccccccccccb9, 0x3ffa66fa78b9a2f7, 0x0, 0x0, - 0xbfeccccccccccc70, 0x3ffa4e61ff8cef46, + 0xbfecccccccccccb0, 0x3ffa4e61ff8cef36, 0x0, 0x0, - 0xbfeccccccccccc93, 0x3ffa35ecb7308dda, + 0xbfeccccccccccce9, 0x3ffa35ecb7308de1, 0x0, 0x0, - 0xbfecccccccccccf1, 0x3ffa1d9a4cd90468, + 0xbfecccccccccccc1, 0x3ffa1d9a4cd90482, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3ffa056a6ebba34c, + 0xbfecccccccccccd7, 0x3ffa056a6ebba346, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3ff9ed5ccc0aa486, + 0xbfecccccccccccd6, 0x3ff9ed5ccc0aa4ad, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3ff9d57114f15ad1, + 0xbfeccccccccccc9a, 0x3ff9d57114f15ade, 0x0, 0x0, - 0xbfecccccccccccc5, 0x3ff9bda6fa907159, + 0xbfecccccccccccba, 0x3ff9bda6fa90714c, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3ff9a5fe2efa3f04, + 0xbfecccccccccccd2, 0x3ff9a5fe2efa3f00, 0x0, 0x0, - 0xbfecccccccccccb0, 0x3ff98e76652f2835, + 0xbfecccccccccccd1, 0x3ff98e76652f2840, 0x0, 0x0, - 0xbfeccccccccccc72, 0x3ff9770f511a13cc, + 0xbfecccccccccccbb, 0x3ff9770f511a141a, 0x0, 0x0, - 0xbfeccccccccccc94, 0x3ff95fc8a78cedb8, + 0xbfecccccccccccbb, 0x3ff95fc8a78ced9f, 0x0, 0x0, - 0xbfeccccccccccce6, 0x3ff948a21e3d3a38, + 0xbfecccccccccccd5, 0x3ff948a21e3d3a42, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3ff9319b6bc0badc, + 0xbfecccccccccccb7, 0x3ff9319b6bc0bae2, 0x0, 0x0, - 0xbfecccccccccccf4, 0x3ff91ab4478a1e74, + 0xbfecccccccccccf0, 0x3ff91ab4478a1e84, 0x0, 0x0, - 0xbfecccccccccccec, 0x3ff903ec69e5c44e, + 0xbfecccccccccccdb, 0x3ff903ec69e5c444, 0x0, 0x0, - 0xbfecccccccccccfe, 0x3ff8ed438bf68a48, + 0xbfecccccccccccd7, 0x3ff8ed438bf68a6a, 0x0, 0x0, - 0xbfeccccccccccc98, 0x3ff8d6b967b2acb8, + 0xbfecccccccccccdd, 0x3ff8d6b967b2ac98, 0x0, 0x0, - 0xbfeccccccccccbf9, 0x3ff8c04db7e0b0e4, + 0xbfecccccccccccb5, 0x3ff8c04db7e0b082, 0x0, 0x0, - 0xbfecccccccccccae, 0x3ff8aa0038145efa, + 0xbfecccccccccccb6, 0x3ff8aa0038145ef8, 0x0, 0x0, - 0xbfecccccccccccee, 0x3ff893d0a4abcb72, + 0xbfecccccccccccd1, 0x3ff893d0a4abcb9e, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3ff87dbebacc6990, + 0xbfeccccccccccccc, 0x3ff87dbebacc697c, 0x0, 0x0, - 0xbfecccccccccccac, 0x3ff867ca38602c1c, + 0xbfecccccccccccb1, 0x3ff867ca38602c04, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3ff851f2dc12b574, + 0xbfecccccccccccc1, 0x3ff851f2dc12b571, 0x0, 0x0, - 0xbfeccccccccccce5, 0x3ff83c38654e90a0, + 0xbfecccccccccccc9, 0x3ff83c38654e9097, 0x0, 0x0, - 0xbfecccccccccccab, 0x3ff8269a943a7860, + 0xbfeccccccccccca8, 0x3ff8269a943a7846, 0x0, 0x0, - 0xbfeccccccccccc66, 0x3ff8111929b6a8fa, + 0xbfecccccccccccad, 0x3ff8111929b6a897, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3ff7fbb3e75a3efc, + 0xbfecccccccccccd2, 0x3ff7fbb3e75a3f28, 0x0, 0x0, - 0xbfecccccccccccb2, 0x3ff7e66a8f70a10e, + 0xbfecccccccccccd2, 0x3ff7e66a8f70a126, 0x0, 0x0, - 0xbfecccccccccccdd, 0x3ff7d13ce4f6f3de, + 0xbfecccccccccccc4, 0x3ff7d13ce4f6f3bb, 0x0, 0x0, - 0xbfeccccccccccd12, 0x3ff7bc2aab9999f7, + 0xbfecccccccccccc4, 0x3ff7bc2aab9999e2, 0x0, 0x0, - 0xbfecccccccccccba, 0x3ff7a733a7b1bf0d, + 0xbfecccccccccccc7, 0x3ff7a733a7b1bf3b, 0x0, 0x0, - 0xbfecccccccccccce, 0x3ff792579e42eca3, + 0xbfecccccccccccc9, 0x3ff792579e42ecb2, 0x0, 0x0, - 0xbfecccccccccccba, 0x3ff77d9654f8a968, + 0xbfeccccccccccccb, 0x3ff77d9654f8a932, 0x0, 0x0, - 0xbfeccccccccccc8d, 0x3ff768ef9224225d, + 0xbfecccccccccccde, 0x3ff768ef92242212, 0x0, 0x0, - 0xbfecccccccccccbe, 0x3ff754631cb9df17, + 0xbfeccccccccccc8a, 0x3ff754631cb9df33, 0x0, 0x0, - 0xbfecccccccccccb2, 0x3ff73ff0bc4f8028, + 0xbfecccccccccccb4, 0x3ff73ff0bc4f8025, 0x0, 0x0, - 0xbfeccccccccccce7, 0x3ff72b9839198312, + 0xbfecccccccccccc3, 0x3ff72b9839198320, 0x0, 0x0, - 0xbfecccccccccccd9, 0x3ff717595be914d5, + 0xbfecccccccccccf0, 0x3ff717595be9152e, 0x0, 0x0, - 0xbfecccccccccccb1, 0x3ff70333ee29ebee, + 0xbfecccccccccccb8, 0x3ff70333ee29ebee, 0x0, 0x0, - 0xbfeccccccccccd9f, 0x3ff6ef27b9e027e6, + 0xbfecccccccccccc4, 0x3ff6ef27b9e027fc, 0x0, 0x0, - 0xbfeccccccccccd1a, 0x3ff6db3489a64086, + 0xbfecccccccccccde, 0x3ff6db3489a6406a, 0x0, 0x0, - 0xbfeccccccccccc46, 0x3ff6c75a28aaf6d2, + 0xbfeccccccccccc54, 0x3ff6c75a28aaf69b, 0x0, 0x0, - 0xbfecccccccccccb0, 0x3ff6b39862af538c, + 0xbfeccccccccccc8e, 0x3ff6b39862af535b, 0x0, 0x0, - 0xbfeccccccccccc22, 0x3ff69fef0404ab60, + 0xbfeccccccccccceb, 0x3ff69fef0404ab32, 0x0, 0x0, - 0xbfeccccccccccc90, 0x3ff68c5dd98aac62, + 0xbfecccccccccccd3, 0x3ff68c5dd98aac74, 0x0, 0x0, - 0xbfecccccccccccfb, 0x3ff678e4b0ad73c5, + 0xbfeccccccccccce6, 0x3ff678e4b0ad73ce, 0x0, 0x0, - 0xbfeccccccccccca4, 0x3ff665835763a9a0, + 0xbfecccccccccccfe, 0x3ff665835763a9a4, 0x0, 0x0, - 0xbfecccccccccccba, 0x3ff652399c2ca76c, + 0xbfecccccccccccc4, 0x3ff652399c2ca73d, 0x0, 0x0, - 0xbfeccccccccccd17, 0x3ff63f074e0ea32a, + 0xbfeccccccccccccc, 0x3ff63f074e0ea324, 0x0, 0x0, - 0xbfeccccccccccd54, 0x3ff62bec3c94e51a, + 0xbfecccccccccccd5, 0x3ff62bec3c94e4f6, 0x0, 0x0, - 0xbfeccccccccccd0c, 0x3ff618e837ce00de, + 0xbfecccccccccccc5, 0x3ff618e837ce00dc, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3ff605fb104a1a16, + 0xbfecccccccccccc7, 0x3ff605fb104a1a21, 0x0, 0x0, - 0xbfecccccccccccf6, 0x3ff5f32497192cb3, + 0xbfeccccccccccce7, 0x3ff5f32497192cdc, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3ff5e0649dc95e1d, + 0xbfecccccccccccf1, 0x3ff5e0649dc95e2e, 0x0, 0x0, - 0xbfeccccccccccd14, 0x3ff5cdbaf66553c5, + 0xbfecccccccccccb1, 0x3ff5cdbaf66553b7, 0x0, 0x0, - 0xbfeccccccccccd18, 0x3ff5bb27737291bc, + 0xbfeccccccccccc90, 0x3ff5bb2773729190, 0x0, 0x0, - 0xbfeccccccccccd07, 0x3ff5a8a9e7efdfca, + 0xbfecccccccccccf5, 0x3ff5a8a9e7efdf6a, 0x0, 0x0, - 0xbfecccccccccce2d, 0x3ff596422753b205, + 0xbfeccccccccccbc7, 0x3ff596422753b17e, 0x0, 0x0, - 0xbfeccccccccccd01, 0x3ff583f0058a9d98, + 0xbfeccccccccccc0d, 0x3ff583f0058a9d88, 0x0, 0x0, - 0xbfeccccccccccc90, 0x3ff571b356f5ce6a, + 0xbfeccccccccccce6, 0x3ff571b356f5ce46, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3ff55f8bf06983ec, + 0xbfeccccccccccccd, 0x3ff55f8bf06983f2, 0x0, 0x0, - 0xbfeccccccccccc9f, 0x3ff54d79a72b9612, + 0xbfecccccccccccec, 0x3ff54d79a72b9616, 0x0, 0x0, - 0xbfeccccccccccd0b, 0x3ff53b7c50f1fe32, + 0xbfecccccccccccae, 0x3ff53b7c50f1fe50, 0x0, 0x0, - 0xbfeccccccccccd13, 0x3ff52993c3e166d8, + 0xbfecccccccccccd2, 0x3ff52993c3e166bd, 0x0, 0x0, - 0xbfeccccccccccd06, 0x3ff517bfd68bbf10, + 0xbfecccccccccccc2, 0x3ff517bfd68bbf15, 0x0, 0x0, - 0xbfeccccccccccd4d, 0x3ff506005feed71a, + 0xbfecccccccccccc1, 0x3ff506005feed708, 0x0, 0x0, - 0xbfeccccccccccca8, 0x3ff4f4553772feb8, + 0xbfecccccccccccb1, 0x3ff4f4553772fea8, 0x0, 0x0, - 0xbfecccccccccccb7, 0x3ff4e2be34e9aaf7, + 0xbfecccccccccccc8, 0x3ff4e2be34e9aae4, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3ff4d13b308c2066, + 0xbfecccccccccccd4, 0x3ff4d13b308c2076, 0x0, 0x0, - 0xbfecccccccccccca, 0x3ff4bfcc02fa23d0, + 0xbfecccccccccccca, 0x3ff4bfcc02fa23de, 0x0, 0x0, - 0xbfecccccccccccb1, 0x3ff4ae708538adcc, + 0xbfecccccccccccd2, 0x3ff4ae708538adcc, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3ff49d2890b0a595, + 0xbfecccccccccccbd, 0x3ff49d2890b0a58f, 0x0, 0x0, - 0xbfeccccccccccce3, 0x3ff48bf3ff2d9ed2, + 0xbfecccccccccccc5, 0x3ff48bf3ff2d9ee6, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3ff47ad2aadc9e86, + 0xbfeccccccccccc6d, 0x3ff47ad2aadc9e58, 0x0, 0x0, - 0xbfecccccccccccb5, 0x3ff469c46e4ae188, + 0xbfecccccccccccaa, 0x3ff469c46e4ae144, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3ff458c92464aa5e, + 0xbfeccccccccccccf, 0x3ff458c92464aa76, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3ff447e0a874145a, + 0xbfecccccccccccc0, 0x3ff447e0a8741462, 0x0, 0x0, - 0xbfecccccccccccaf, 0x3ff4370ad61fe67b, + 0xbfecccccccccccf4, 0x3ff4370ad61fe669, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3ff42647896a700a, + 0xbfeccccccccccccf, 0x3ff42647896a7002, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3ff415969eb06701, + 0xbfecccccccccccd0, 0x3ff415969eb066f8, 0x0, 0x0, - 0xbfeccccccccccce3, 0x3ff404f7f2a7ca9f, + 0xbfecccccccccccc6, 0x3ff404f7f2a7ca9c, 0x0, 0x0, - 0xbfeccccccccccd1a, 0x3ff3f46b625ecb62, + 0xbfecccccccccccd5, 0x3ff3f46b625ecb39, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3ff3e3f0cb3ab52e, + 0xbfecccccccccccd7, 0x3ff3e3f0cb3ab530, 0x0, 0x0, - 0xbfecccccccccccc0, 0x3ff3d3880af6e0a5, + 0xbfecccccccccccc7, 0x3ff3d3880af6e0b2, 0x0, 0x0, - 0xbfecccccccccccca, 0x3ff3c330ffa3a474, + 0xbfeccccccccccccb, 0x3ff3c330ffa3a46e, 0x0, 0x0, - 0xbfeccccccccccce1, 0x3ff3b2eb87a54e30, + 0xbfeccccccccccca4, 0x3ff3b2eb87a54e26, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3ff3a2b781b31c95, + 0xbfecccccccccccc9, 0x3ff3a2b781b31c94, 0x0, 0x0, - 0xbfecccccccccccf0, 0x3ff39294ccd63f2c, + 0xbfecccccccccccc2, 0x3ff39294ccd63f12, 0x0, 0x0, - 0xbfecccccccccccee, 0x3ff382834868d816, + 0xbfecccccccccccec, 0x3ff382834868d81c, 0x0, 0x0, - 0xbfeccccccccccca9, 0x3ff37282d41503d2, + 0xbfecccccccccccf7, 0x3ff37282d41503c4, 0x0, 0x0, - 0xbfeccccccccccd43, 0x3ff362934fd3e120, + 0xbfeccccccccccca7, 0x3ff362934fd3e163, 0x0, 0x0, - 0xbfecccccccccccf4, 0x3ff352b49beca0d6, + 0xbfeccccccccccce4, 0x3ff352b49beca0e2, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3ff342e698f39437, + 0xbfecccccccccccd0, 0x3ff342e698f39456, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3ff3332927c943ce, + 0xbfecccccccccccc8, 0x3ff3332927c943f2, 0x0, 0x0, - 0xbfecccccccccccee, 0x3ff3237c2999854e, + 0xbfecccccccccccc1, 0x3ff3237c2999854a, 0x0, 0x0, - 0xbfecccccccccccb6, 0x3ff313df7fda9788, + 0xbfecccccccccccd0, 0x3ff313df7fda978a, 0x0, 0x0, - 0xbfecccccccccccda, 0x3ff304530c4c407c, + 0xbfeccccccccccccd, 0x3ff304530c4c4063, 0x0, 0x0, - 0xbfecccccccccccf8, 0x3ff2f4d6b0f6ee90, + 0xbfecccccccccccae, 0x3ff2f4d6b0f6ee71, 0x0, 0x0, - 0xbfecccccccccccba, 0x3ff2e56a502addaa, + 0xbfecccccccccccae, 0x3ff2e56a502add8a, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3ff2d60dcc7f3dd0, + 0xbfecccccccccccd7, 0x3ff2d60dcc7f3dce, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3ff2c6c108d16047, + 0xbfeccccccccccce0, 0x3ff2c6c108d1601e, 0x0, 0x0, - 0xbfecccccccccccd9, 0x3ff2b783e843e1f1, + 0xbfeccccccccccca8, 0x3ff2b783e843e1f2, 0x0, 0x0, - 0xbfecccccccccccb6, 0x3ff2a8564e3ddef8, + 0xbfecccccccccccb7, 0x3ff2a8564e3ddef0, 0x0, 0x0, - 0xbfecccccccccccdf, 0x3ff299381e6a24c1, + 0xbfeccccccccccccd, 0x3ff299381e6a24bd, 0x0, 0x0, - 0xbfeccccccccccd03, 0x3ff28a293cb668b0, + 0xbfecccccccccccae, 0x3ff28a293cb668ae, 0x0, 0x0, - 0xbfecccccccccccdf, 0x3ff27b298d5281a9, + 0xbfeccccccccccca1, 0x3ff27b298d528152, 0x0, 0x0, - 0xbfeccccccccccd2c, 0x3ff26c38f4afa34a, + 0xbfecccccccccccd2, 0x3ff26c38f4afa362, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3ff25d57577f9e50, + 0xbfecccccccccccd1, 0x3ff25d57577f9e46, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3ff24e849ab41f80, + 0xbfecccccccccccd4, 0x3ff24e849ab41f81, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3ff23fc0a37df5a2, + 0xbfecccccccccccb4, 0x3ff23fc0a37df5bb, 0x0, 0x0, - 0xbfecccccccccccda, 0x3ff2310b574c579c, + 0xbfecccccccccccdf, 0x3ff2310b574c57ab, 0x0, 0x0, - 0xbfeccccccccccceb, 0x3ff222649bcc2c89, + 0xbfecccccccccccc8, 0x3ff222649bcc2c85, 0x0, 0x0, - 0xbfeccccccccccd08, 0x3ff213cc56e758b2, + 0xbfecccccccccccb2, 0x3ff213cc56e758b4, 0x0, 0x0, - 0xbfeccccccccccd11, 0x3ff205426ec40b00, + 0xbfecccccccccccc6, 0x3ff205426ec40ab0, 0x0, 0x0, - 0xbfecccccccccccf9, 0x3ff1f6c6c9c40d46, + 0xbfeccccccccccc93, 0x3ff1f6c6c9c40d2a, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3ff1e8594e84178e, + 0xbfecccccccccccda, 0x3ff1e8594e84177d, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3ff1d9f9e3db2519, + 0xbfecccccccccccc9, 0x3ff1d9f9e3db252a, 0x0, 0x0, - 0xbfecccccccccccdd, 0x3ff1cba870d9cc37, + 0xbfeccccccccccca6, 0x3ff1cba870d9cc34, 0x0, 0x0, - 0xbfecccccccccccde, 0x3ff1bd64dcc9979e, + 0xbfecccccccccccd4, 0x3ff1bd64dcc997b6, 0x0, 0x0, - 0xbfeccccccccccd11, 0x3ff1af2f0f2c6280, + 0xbfecccccccccccbf, 0x3ff1af2f0f2c62a6, 0x0, 0x0, - 0xbfecccccccccccfa, 0x3ff1a106efbbb77e, + 0xbfeccccccccccc4a, 0x3ff1a106efbbb760, 0x0, 0x0, - 0xbfeccccccccccdce, 0x3ff192ec66682fd8, + 0xbfeccccccccccbc2, 0x3ff192ec66682fc6, 0x0, 0x0, - 0xbfeccccccccccc8c, 0x3ff184df5b58d6f6, + 0xbfeccccccccccd08, 0x3ff184df5b58d6e7, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3ff176dfb6ea8f04, + 0xbfeccccccccccca7, 0x3ff176dfb6ea8efa, 0x0, 0x0, - 0xbfecccccccccccdd, 0x3ff168ed61af772b, + 0xbfeccccccccccca6, 0x3ff168ed61af773d, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3ff15b08446e54c5, + 0xbfecccccccccccb4, 0x3ff15b08446e54b6, 0x0, 0x0, - 0xbfecccccccccccb9, 0x3ff14d304821fd8c, + 0xbfecccccccccccb2, 0x3ff14d304821fd9e, 0x0, 0x0, - 0xbfecccccccccccb3, 0x3ff13f6555f8c4fa, + 0xbfecccccccccccc0, 0x3ff13f6555f8c4dc, 0x0, 0x0, - 0xbfecccccccccccff, 0x3ff131a75753ea5a, + 0xbfecccccccccccbe, 0x3ff131a75753ea56, 0x0, 0x0, - 0xbfecccccccccccfc, 0x3ff123f635c70a06, + 0xbfecccccccccccc4, 0x3ff123f635c70a0c, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3ff11651db178f92, + 0xbfeccccccccccce8, 0x3ff11651db178f80, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3ff108ba313c2980, + 0xbfecccccccccccc9, 0x3ff108ba313c2973, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3ff0fb2f225c4090, + 0xbfecccccccccccc8, 0x3ff0fb2f225c4094, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3ff0edb098cf6eeb, + 0xbfecccccccccccda, 0x3ff0edb098cf6ef8, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3ff0e03e7f1cf9db, + 0xbfecccccccccccaa, 0x3ff0e03e7f1cf9f6, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3ff0d2d8bffb4e04, + 0xbfecccccccccccdd, 0x3ff0d2d8bffb4e0a, 0x0, 0x0, - 0xbfeccccccccccceb, 0x3ff0c57f464f7b1c, + 0xbfeccccccccccccc, 0x3ff0c57f464f7b36, 0x0, 0x0, - 0xbfecccccccccccc5, 0x3ff0b831fd2cb442, + 0xbfecccccccccccec, 0x3ff0b831fd2cb4b8, 0x0, 0x0, - 0xbfeccccccccccce6, 0x3ff0aaf0cfd3d07e, + 0xbfecccccccccccd2, 0x3ff0aaf0cfd3d0a8, 0x0, 0x0, - 0xbfecccccccccccda, 0x3ff09dbba9b2cb20, + 0xbfecccccccccccda, 0x3ff09dbba9b2cb0c, 0x0, 0x0, - 0xbfecccccccccccec, 0x3ff09092766449a0, + 0xbfecccccccccccc5, 0x3ff090927664498d, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3ff0837521af1fda, + 0xbfecccccccccccfa, 0x3ff0837521af1fe6, 0x0, 0x0, - 0xbfecccccccccccb9, 0x3ff076639785d801, + 0xbfecccccccccccf3, 0x3ff076639785d81b, 0x0, 0x0, - 0xbfecccccccccccc0, 0x3ff0695dc40639eb, + 0xbfecccccccccccbf, 0x3ff0695dc40639dd, 0x0, 0x0, - 0xbfecccccccccccce, 0x3ff05c639378d597, + 0xbfecccccccccccd7, 0x3ff05c639378d5a2, 0x0, 0x0, - 0xbfecccccccccccf8, 0x3ff04f74f2508f2e, + 0xbfeccccccccccc9b, 0x3ff04f74f2508f5e, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3ff04291cd2a2bb5, + 0xbfecccccccccccbc, 0x3ff04291cd2a2b9a, 0x0, 0x0, - 0xbfecccccccccccef, 0x3ff035ba10cbde97, + 0xbfecccccccccccba, 0x3ff035ba10cbdeab, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3ff028edaa24db7b, + 0xbfeccccccccccccd, 0x3ff028edaa24db78, 0x0, 0x0, - 0xbfecccccccccccb8, 0x3ff01c2c864ce59e, + 0xbfecccccccccccd5, 0x3ff01c2c864ce58c, 0x0, 0x0, - 0xbfecccccccccccdf, 0x3ff00f769283e3dc, + 0xbfecccccccccccf3, 0x3ff00f769283e3c1, 0x0, 0x0, - 0xbfeccccccccccd18, 0x3ff002cbbc3173e7, + 0xbfecccccccccccb8, 0x3ff002cbbc3173f8, 0x0, 0x0, - 0xbfecccccccccccfd, 0x3fefec57e1c9013e, + 0xbfecccccccccccd6, 0x3fefec57e1c900fc, 0x0, 0x0, - 0xbfeccccccccccd46, 0x3fefd32e3ca5af1a, + 0xbfeccccccccccc41, 0x3fefd32e3ca5af0c, 0x0, 0x0, - 0xbfeccccccccccd27, 0x3fefba1a64b18480, + 0xbfeccccccccccca0, 0x3fefba1a64b1850a, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fefa11c35f13e38, + 0xbfecccccccccccdd, 0x3fefa11c35f13e34, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fef88338cb4f72a, + 0xbfeccccccccccccc, 0x3fef88338cb4f712, 0x0, 0x0, - 0xbfeccccccccccce2, 0x3fef6f604597619c, + 0xbfeccccccccccca2, 0x3fef6f60459761a9, 0x0, 0x0, - 0xbfeccccccccccc96, 0x3fef56a23d7d0064, + 0xbfecccccccccccaa, 0x3fef56a23d7d0090, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3fef3df9519364d6, + 0xbfecccccccccccb9, 0x3fef3df9519364b4, 0x0, 0x0, - 0xbfecccccccccccda, 0x3fef25655f506bb0, + 0xbfecccccccccccd1, 0x3fef25655f506bec, 0x0, 0x0, - 0xbfeccccccccccd12, 0x3fef0ce6447181d8, + 0xbfeccccccccccca7, 0x3fef0ce644718139, 0x0, 0x0, - 0xbfecccccccccccca, 0x3feef47bdefae3a4, + 0xbfeccccccccccc97, 0x3feef47bdefae40c, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3feedc260d36e8d4, + 0xbfecccccccccccc6, 0x3feedc260d36e8de, 0x0, 0x0, - 0xbfecccccccccccb6, 0x3feec3e4adb5474c, + 0xbfecccccccccccc9, 0x3feec3e4adb5479c, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3feeabb79f4a620c, + 0xbfecccccccccccda, 0x3feeabb79f4a61c8, 0x0, 0x0, - 0xbfecccccccccccdd, 0x3fee939ec10e922c, + 0xbfecccccccccccee, 0x3fee939ec10e91f8, 0x0, 0x0, - 0xbfecccccccccccc0, 0x3fee7b99f25d795c, + 0xbfecccccccccccc5, 0x3fee7b99f25d797a, 0x0, 0x0, - 0xbfecccccccccccf1, 0x3fee63a912d551bc, + 0xbfeccccccccccccd, 0x3fee63a912d551cd, 0x0, 0x0, - 0xbfeccccccccccd30, 0x3fee4bcc02563f90, + 0xbfeccccccccccca0, 0x3fee4bcc02563ff2, 0x0, 0x0, - 0xbfeccccccccccca1, 0x3fee3402a101a9c8, + 0xbfecccccccccccec, 0x3fee3402a101a8f3, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fee1c4ccf398d90, + 0xbfecccccccccccb3, 0x3fee1c4ccf398d82, 0x0, 0x0, - 0xbfecccccccccccd3, 0x3fee04aa6d9fdbe4, + 0xbfecccccccccccc0, 0x3fee04aa6d9fdbda, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3feded1b5d15d240, + 0xbfecccccccccccc3, 0x3feded1b5d15d217, 0x0, 0x0, - 0xbfeccccccccccca5, 0x3fedd59f7ebb5818, + 0xbfeccccccccccccc, 0x3fedd59f7ebb5820, 0x0, 0x0, - 0xbfecccccccccccb9, 0x3fedbe36b3ee5fe0, + 0xbfecccccccccccbc, 0x3fedbe36b3ee5ffe, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3feda6e0de4a4680, + 0xbfecccccccccccf1, 0x3feda6e0de4a4680, 0x0, 0x0, - 0xbfeccccccccccce3, 0x3fed8f9ddfa73720, + 0xbfecccccccccccbf, 0x3fed8f9ddfa73728, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3fed786d9a199178, + 0xbfeccccccccccca4, 0x3fed786d9a1991b8, 0x0, 0x0, - 0xbfecccccccccccfc, 0x3fed614feff14e28, + 0xbfeccccccccccc8c, 0x3fed614feff14e3b, 0x0, 0x0, - 0xbfeccccccccccca9, 0x3fed4a44c3b96950, + 0xbfecccccccccccb0, 0x3fed4a44c3b96977, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fed334bf8374d30, + 0xbfeccccccccccc6c, 0x3fed334bf8374ce9, 0x0, 0x0, - 0xbfeccccccccccd15, 0x3fed1c65706a3bd0, + 0xbfeccccccccccc72, 0x3fed1c65706a3be5, 0x0, 0x0, - 0xbfecccccccccccf1, 0x3fed05910f8ac040, + 0xbfeccccccccccc99, 0x3fed05910f8ac086, 0x0, 0x0, - 0xbfeccccccccccc8c, 0x3feceeceb90a1cc0, + 0xbfeccccccccccccc, 0x3feceeceb90a1da2, 0x0, 0x0, - 0xbfeccccccccccc3c, 0x3fecd81e5091bb00, + 0xbfeccccccccccab2, 0x3fecd81e5091ba77, 0x0, 0x0, - 0xbfecccccccccccb5, 0x3fecc17fba02a075, + 0xbfecccccccccccd2, 0x3fecc17fba02a065, 0x0, 0x0, - 0xbfeccccccccccd5c, 0x3fecaaf2d974e574, + 0xbfeccccccccccd4a, 0x3fecaaf2d974e584, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fec947793372537, + 0xbfecccccccccccc6, 0x3fec94779337257d, 0x0, 0x0, - 0xbfeccccccccccd16, 0x3fec7e0dcbcdfa92, + 0xbfeccccccccccca9, 0x3fec7e0dcbcdfad1, 0x0, 0x0, - 0xbfecccccccccccc1, 0x3fec67b567f378fb, + 0xbfecccccccccccea, 0x3fec67b567f378fc, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fec516e4c96a605, + 0xbfecccccccccccbf, 0x3fec516e4c96a61a, 0x0, 0x0, - 0xbfeccccccccccc90, 0x3fec3b385edaf71f, + 0xbfecccccccccccb2, 0x3fec3b385edaf710, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fec25138417cf86, + 0xbfecccccccccccc4, 0x3fec25138417cf41, 0x0, 0x0, - 0xbfeccccccccccc9a, 0x3fec0effa1d7fe94, + 0xbfeccccccccccd2f, 0x3fec0effa1d7fe55, 0x0, 0x0, - 0xbfeccccccccccce2, 0x3febf8fc9dd94279, + 0xbfecccccccccccda, 0x3febf8fc9dd9424d, 0x0, 0x0, - 0xbfeccccccccccce8, 0x3febe30a5e0bca0a, + 0xbfecccccccccccb7, 0x3febe30a5e0bc9da, 0x0, 0x0, - 0xbfeccccccccccce8, 0x3febcd28c891b8aa, + 0xbfecccccccccccab, 0x3febcd28c891b876, 0x0, 0x0, - 0xbfecccccccccccba, 0x3febb757c3beab24, + 0xbfeccccccccccd08, 0x3febb757c3beab0e, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3feba19736173f96, + 0xbfecccccccccccde, 0x3feba19736173ff0, 0x0, 0x0, - 0xbfeccccccccccca5, 0x3feb8be706509ce1, + 0xbfeccccccccccce0, 0x3feb8be706509cc2, 0x0, 0x0, - 0xbfeccccccccccd46, 0x3feb76471b4ffad0, + 0xbfeccccccccccc72, 0x3feb76471b4ffb13, 0x0, 0x0, - 0xbfecccccccccccf6, 0x3feb60b75c2a3074, + 0xbfecccccccccccab, 0x3feb60b75c2a3088, 0x0, 0x0, - 0xbfecccccccccccc0, 0x3feb4b37b0233ce4, + 0xbfecccccccccccd6, 0x3feb4b37b0233cde, 0x0, 0x0, - 0xbfeccccccccccca7, 0x3feb35c7feadd53e, + 0xbfecccccccccccd8, 0x3feb35c7feadd54d, 0x0, 0x0, - 0xbfeccccccccccd00, 0x3feb20682f6af529, + 0xbfecccccccccccd9, 0x3feb20682f6af556, 0x0, 0x0, - 0xbfecccccccccccbe, 0x3feb0b182a296dce, + 0xbfecccccccccccd0, 0x3feb0b182a296de4, 0x0, 0x0, - 0xbfecccccccccccbf, 0x3feaf5d7d6e57610, + 0xbfecccccccccccce, 0x3feaf5d7d6e57630, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3feae0a71dc83f1c, + 0xbfecccccccccccda, 0x3feae0a71dc83f25, 0x0, 0x0, - 0xbfeccccccccccd01, 0x3feacb85e72786b2, + 0xbfecccccccccccd7, 0x3feacb85e72786d6, 0x0, 0x0, - 0xbfecccccccccccee, 0x3feab6741b852c4b, + 0xbfeccccccccccca5, 0x3feab6741b852c54, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3feaa171a38ec823, + 0xbfecccccccccccd0, 0x3feaa171a38ec82a, 0x0, 0x0, - 0xbfecccccccccccf4, 0x3fea8c7e681d410c, + 0xbfecccccccccccd5, 0x3fea8c7e681d412e, 0x0, 0x0, - 0xbfeccccccccccd13, 0x3fea779a52346650, + 0xbfeccccccccccd05, 0x3fea779a52346644, 0x0, 0x0, - 0xbfecccccccccccf2, 0x3fea62c54b02883c, + 0xbfeccccccccccd03, 0x3fea62c54b02883f, 0x0, 0x0, - 0xbfeccccccccccd23, 0x3fea4dff3be013f6, + 0xbfecccccccccccea, 0x3fea4dff3be01458, 0x0, 0x0, - 0xbfecccccccccccfc, 0x3fea39480e4f2ee8, + 0xbfecccccccccccb6, 0x3fea39480e4f2ea0, 0x0, 0x0, - 0xbfeccccccccccdbc, 0x3fea249fabfb5184, + 0xbfeccccccccccca0, 0x3fea249fabfb5248, 0x0, 0x0, - 0xbfecccccccccccb8, 0x3fea1005feb8eb78, + 0xbfeccccccccccc2a, 0x3fea1005feb8eb5d, 0x0, 0x0, - 0xbfeccccccccccce6, 0x3fe9fb7af084fa0c, + 0xbfecccccccccccc0, 0x3fe9fb7af084fa32, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3fe9e6fe6b84b094, + 0xbfeccccccccccce3, 0x3fe9e6fe6b84b0a4, 0x0, 0x0, - 0xbfecccccccccccec, 0x3fe9d2905a051440, + 0xbfecccccccccccbc, 0x3fe9d2905a051475, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3fe9be30a67aa102, + 0xbfecccccccccccc8, 0x3fe9be30a67aa107, 0x0, 0x0, - 0xbfeccccccccccc88, 0x3fe9a9df3b80ebb1, + 0xbfecccccccccccc2, 0x3fe9a9df3b80ec23, 0x0, 0x0, - 0xbfecccccccccccfb, 0x3fe9959c03da47a8, + 0xbfecccccccccccc2, 0x3fe9959c03da47bf, 0x0, 0x0, - 0xbfeccccccccccd2b, 0x3fe98166ea6f699a, + 0xbfeccccccccccd0a, 0x3fe98166ea6f69df, 0x0, 0x0, - 0xbfeccccccccccc96, 0x3fe96d3fda4f10b9, + 0xbfecccccccccccf4, 0x3fe96d3fda4f111e, 0x0, 0x0, - 0xbfecccccccccccee, 0x3fe95926beadac00, + 0xbfecccccccccccbe, 0x3fe95926beadac78, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fe9451b82e503bc, + 0xbfecccccccccccc3, 0x3fe9451b82e503e0, 0x0, 0x0, - 0xbfecccccccccccaf, 0x3fe9311e1273e0da, + 0xbfeccccccccccce1, 0x3fe9311e1273e0ab, 0x0, 0x0, - 0xbfecccccccccccbe, 0x3fe91d2e58fdb8c5, + 0xbfecccccccccccb8, 0x3fe91d2e58fdb912, 0x0, 0x0, - 0xbfecccccccccccb6, 0x3fe9094c424a5814, + 0xbfecccccccccccbc, 0x3fe9094c424a5852, 0x0, 0x0, - 0xbfeccccccccccc64, 0x3fe8f577ba458e08, + 0xbfecccccccccccc0, 0x3fe8f577ba458e16, 0x0, 0x0, - 0xbfecccccccccccbc, 0x3fe8e1b0acfed8bf, + 0xbfecccccccccccf6, 0x3fe8e1b0acfed8cd, 0x0, 0x0, - 0xbfeccccccccccc5e, 0x3fe8cdf706a91509, + 0xbfeccccccccccd10, 0x3fe8cdf706a91466, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fe8ba4ab39a2916, + 0xbfecccccccccccc8, 0x3fe8ba4ab39a290b, 0x0, 0x0, - 0xbfeccccccccccd18, 0x3fe8a6aba04ab9e8, + 0xbfecccccccccccd6, 0x3fe8a6aba04ab98c, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3fe89319b955d474, + 0xbfecccccccccccb2, 0x3fe89319b955d45c, 0x0, 0x0, - 0xbfeccccccccccd10, 0x3fe87f94eb78a54e, + 0xbfecccccccccccf4, 0x3fe87f94eb78a560, 0x0, 0x0, - 0xbfeccccccccccca7, 0x3fe86c1d2392263e, + 0xbfecccccccccccde, 0x3fe86c1d23922694, 0x0, 0x0, - 0xbfeccccccccccc96, 0x3fe858b24ea2d352, + 0xbfeccccccccccce1, 0x3fe858b24ea2d368, 0x0, 0x0, - 0xbfeccccccccccc2c, 0x3fe8455459cc5c28, + 0xbfecccccccccccc2, 0x3fe8455459cc5cc2, 0x0, 0x0, - 0xbfeccccccccccd28, 0x3fe8320332515d08, + 0xbfeccccccccccca0, 0x3fe8320332515cc8, 0x0, 0x0, - 0xbfeccccccccccc90, 0x3fe81ebec5950c2c, + 0xbfeccccccccccce1, 0x3fe81ebec5950c2e, 0x0, 0x0, - 0xbfeccccccccccca5, 0x3fe80b87011af92e, + 0xbfeccccccccccce4, 0x3fe80b87011af961, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fe7f85bd286bc9a, + 0xbfeccccccccccce3, 0x3fe7f85bd286bcb9, 0x0, 0x0, - 0xbfeccccccccccce4, 0x3fe7e53d279bb2c3, + 0xbfecccccccccccd6, 0x3fe7e53d279bb2ef, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fe7d22aee3cb2b4, + 0xbfecccccccccccf6, 0x3fe7d22aee3cb2de, 0x0, 0x0, - 0xbfecccccccccccf4, 0x3fe7bf25146bc820, + 0xbfecccccccccccb8, 0x3fe7bf25146bc862, 0x0, 0x0, - 0xbfeccccccccccdf5, 0x3fe7ac2b8849ec8a, + 0xbfeccccccccccd13, 0x3fe7ac2b8849ee10, 0x0, 0x0, - 0xbfeccccccccccc30, 0x3fe7993e3816c42d, + 0xbfecccccccccccec, 0x3fe7993e3816c432, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fe7865d12305189, + 0xbfecccccccccccde, 0x3fe7865d12305194, 0x0, 0x0, - 0xbfeccccccccccce6, 0x3fe773880512bc82, + 0xbfecccccccccccba, 0x3fe773880512bcb4, 0x0, 0x0, - 0xbfeccccccccccd04, 0x3fe760beff580675, + 0xbfecccccccccccb4, 0x3fe760beff5806b8, 0x0, 0x0, - 0xbfecccccccccccde, 0x3fe74e01efb7cb27, + 0xbfeccccccccccce6, 0x3fe74e01efb7cb22, 0x0, 0x0, - 0xbfecccccccccccc1, 0x3fe73b50c506fd2c, + 0xbfeccccccccccce2, 0x3fe73b50c506fd4c, 0x0, 0x0, - 0xbfeccccccccccd4d, 0x3fe728ab6e37a63e, + 0xbfecccccccccccde, 0x3fe728ab6e37a638, 0x0, 0x0, - 0xbfeccccccccccdde, 0x3fe71611da58a4ee, + 0xbfecccccccccccd8, 0x3fe71611da58a517, 0x0, 0x0, - 0xbfecccccccccccac, 0x3fe70383f8956df8, + 0xbfeccccccccccd04, 0x3fe70383f8956e17, 0x0, 0x0, - 0xbfecccccccccccda, 0x3fe6f101b835cbe4, + 0xbfecccccccccccd6, 0x3fe6f101b835cbc8, 0x0, 0x0, - 0xbfeccccccccccceb, 0x3fe6de8b089da11e, + 0xbfecccccccccccd8, 0x3fe6de8b089da0fb, 0x0, 0x0, - 0xbfecccccccccccaa, 0x3fe6cc1fd94ca927, + 0xbfecccccccccccc7, 0x3fe6cc1fd94ca900, 0x0, 0x0, - 0xbfecccccccccccb9, 0x3fe6b9c019de3bba, + 0xbfeccccccccccc9c, 0x3fe6b9c019de3ba0, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3fe6a76bba091022, + 0xbfecccccccccccc0, 0x3fe6a76bba091010, 0x0, 0x0, - 0xbfeccccccccccca9, 0x3fe69522a99efff1, + 0xbfeccccccccccce2, 0x3fe69522a99effe8, 0x0, 0x0, - 0xbfecccccccccccb0, 0x3fe682e4d88cccb1, + 0xbfeccccccccccd11, 0x3fe682e4d88cccb6, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fe670b236d9e41c, + 0xbfecccccccccccd6, 0x3fe670b236d9e41e, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3fe65e8ab4a82618, + 0xbfecccccccccccc1, 0x3fe65e8ab4a82608, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fe64c6e4233aab0, + 0xbfecccccccccccc2, 0x3fe64c6e4233aa97, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fe63a5ccfd2886e, + 0xbfecccccccccccd3, 0x3fe63a5ccfd28888, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3fe628564df49d15, + 0xbfeccccccccccce0, 0x3fe628564df49d16, 0x0, 0x0, - 0xbfecccccccccccd9, 0x3fe6165aad2353f0, + 0xbfeccccccccccccb, 0x3fe6165aad2353aa, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3fe60469de016e58, + 0xbfecccccccccccbf, 0x3fe60469de016e96, 0x0, 0x0, - 0xbfeccccccccccd26, 0x3fe5f283d14acf06, + 0xbfeccccccccccd0c, 0x3fe5f283d14acec8, 0x0, 0x0, - 0xbfeccccccccccc83, 0x3fe5e0a877d440e0, + 0xbfecccccccccccd6, 0x3fe5e0a877d4412a, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fe5ced7c28b4188, + 0xbfecccccccccccbb, 0x3fe5ced7c28b4185, 0x0, 0x0, - 0xbfeccccccccccca3, 0x3fe5bd11a275cd3f, + 0xbfeccccccccccce2, 0x3fe5bd11a275cd51, 0x0, 0x0, - 0xbfecccccccccccd3, 0x3fe5ab5608b2298a, + 0xbfeccccccccccc85, 0x3fe5ab5608b229a8, 0x0, 0x0, - 0xbfeccccccccccca4, 0x3fe599a4e676b023, + 0xbfeccccccccccca3, 0x3fe599a4e676b048, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fe587fe2d119c36, + 0xbfecccccccccccf9, 0x3fe587fe2d119c4d, 0x0, 0x0, - 0xbfeccccccccccd1f, 0x3fe57661cde8d644, + 0xbfeccccccccccc98, 0x3fe57661cde8d66e, 0x0, 0x0, - 0xbfeccccccccccda1, 0x3fe564cfba79c11a, + 0xbfeccccccccccd05, 0x3fe564cfba79c278, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fe55347e4590ae9, + 0xbfeccccccccccd37, 0x3fe55347e4590b1a, 0x0, 0x0, - 0xbfecccccccccccb0, 0x3fe541ca3d32741b, + 0xbfecccccccccccd9, 0x3fe541ca3d327436, 0x0, 0x0, - 0xbfecccccccccccdf, 0x3fe53056b6c8a5bb, + 0xbfecccccccccccba, 0x3fe53056b6c8a59a, 0x0, 0x0, - 0xbfecccccccccccb9, 0x3fe51eed42f4fbc4, + 0xbfecccccccccccc5, 0x3fe51eed42f4fbda, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3fe50d8dd3a757f8, + 0xbfeccccccccccd01, 0x3fe50d8dd3a757f3, 0x0, 0x0, - 0xbfeccccccccccca5, 0x3fe4fc385ae5eeec, + 0xbfeccccccccccce3, 0x3fe4fc385ae5eede, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fe4eaeccacd1aa1, + 0xbfecccccccccccda, 0x3fe4eaeccacd1aa8, 0x0, 0x0, - 0xbfeccccccccccc9d, 0x3fe4d9ab158f2b5e, + 0xbfeccccccccccce5, 0x3fe4d9ab158f2b4e, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fe4c8732d74381e, + 0xbfeccccccccccc87, 0x3fe4c8732d7437f6, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3fe4b74504d9f131, + 0xbfecccccccccccd1, 0x3fe4b74504d9f126, 0x0, 0x0, - 0xbfecccccccccccaf, 0x3fe4a6208e3372b9, + 0xbfecccccccccccb8, 0x3fe4a6208e3372bc, 0x0, 0x0, - 0xbfeccccccccccce7, 0x3fe49505bc091786, + 0xbfeccccccccccd0f, 0x3fe49505bc09179a, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fe483f480f84b71, + 0xbfeccccccccccca0, 0x3fe483f480f84b74, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fe472eccfb36034, + 0xbfecccccccccccc8, 0x3fe472eccfb3604f, 0x0, 0x0, - 0xbfecccccccccccf8, 0x3fe461ee9b0160c1, + 0xbfecccccccccccaf, 0x3fe461ee9b0160df, 0x0, 0x0, - 0xbfecccccccccccfb, 0x3fe450f9d5bde57b, + 0xbfeccccccccccce3, 0x3fe450f9d5bde60b, 0x0, 0x0, - 0xbfecccccccccccb1, 0x3fe4400e72d8eac0, + 0xbfeccccccccccccd, 0x3fe4400e72d8ea80, 0x0, 0x0, - 0xbfecccccccccccbd, 0x3fe42f2c6556a484, + 0xbfeccccccccccccf, 0x3fe42f2c6556a462, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3fe41e53a04f536b, + 0xbfeccccccccccccd, 0x3fe41e53a04f5389, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fe40d8416ef1e64, + 0xbfecccccccccccdc, 0x3fe40d8416ef1e25, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3fe3fcbdbc75e4f4, + 0xbfecccccccccccfd, 0x3fe3fcbdbc75e4f0, 0x0, 0x0, - 0xbfecccccccccccdd, 0x3fe3ec0084371980, + 0xbfecccccccccccd8, 0x3fe3ec008437196a, 0x0, 0x0, - 0xbfecccccccccccb4, 0x3fe3db4c6199962e, + 0xbfeccccccccccccc, 0x3fe3db4c61999624, 0x0, 0x0, - 0xbfecccccccccccfb, 0x3fe3caa148177624, + 0xbfecccccccccccd8, 0x3fe3caa148177654, 0x0, 0x0, - 0xbfeccccccccccc97, 0x3fe3b9ff2b3ded7a, + 0xbfecccccccccccca, 0x3fe3b9ff2b3ded54, 0x0, 0x0, - 0xbfecccccccccccb0, 0x3fe3a965fead200c, + 0xbfecccccccccccb5, 0x3fe3a965fead2021, 0x0, 0x0, - 0xbfeccccccccccc95, 0x3fe398d5b617fcb4, + 0xbfecccccccccccc8, 0x3fe398d5b617fcb2, 0x0, 0x0, - 0xbfecccccccccccad, 0x3fe3884e454414b0, + 0xbfecccccccccccac, 0x3fe3884e454414aa, 0x0, 0x0, - 0xbfeccccccccccc91, 0x3fe377cfa0097594, + 0xbfecccccccccccdc, 0x3fe377cfa00975a6, 0x0, 0x0, - 0xbfeccccccccccc69, 0x3fe36759ba528418, + 0xbfecccccccccccd3, 0x3fe36759ba52843a, 0x0, 0x0, - 0xbfeccccccccccc5c, 0x3fe356ec881bd3e0, + 0xbfecccccccccccb8, 0x3fe356ec881bd4ff, 0x0, 0x0, - 0xbfecccccccccca3c, 0x3fe34687fd740800, + 0xbfeccccccccccd35, 0x3fe34687fd740901, 0x0, 0x0, - 0xbfecccccccccccf5, 0x3fe3362c0e7ba14f, + 0xbfeccccccccccca7, 0x3fe3362c0e7ba219, 0x0, 0x0, - 0xbfecccccccccccb4, 0x3fe325d8af64ee36, + 0xbfeccccccccccc88, 0x3fe325d8af64ee3c, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fe3158dd473cf16, + 0xbfecccccccccccc9, 0x3fe3158dd473cf23, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fe3054b71fda345, + 0xbfecccccccccccd7, 0x3fe3054b71fda34c, 0x0, 0x0, - 0xbfeccccccccccceb, 0x3fe2f5117c691dee, + 0xbfeccccccccccccf, 0x3fe2f5117c691daa, 0x0, 0x0, - 0xbfecccccccccccda, 0x3fe2e4dfe82e23eb, + 0xbfeccccccccccccd, 0x3fe2e4dfe82e23ec, 0x0, 0x0, - 0xbfeccccccccccce8, 0x3fe2d4b6a9d5aa12, + 0xbfecccccccccccbe, 0x3fe2d4b6a9d5aa1a, 0x0, 0x0, - 0xbfecccccccccccb8, 0x3fe2c495b5f990a7, + 0xbfecccccccccccf5, 0x3fe2c495b5f9905e, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3fe2b47d01448120, + 0xbfeccccccccccce5, 0x3fe2b47d01448180, 0x0, 0x0, - 0xbfecccccccccccf0, 0x3fe2a46c8071cd76, + 0xbfecccccccccccd0, 0x3fe2a46c8071cda3, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3fe29464284d4df2, + 0xbfecccccccccccdd, 0x3fe29464284d4e0e, 0x0, 0x0, - 0xbfecccccccccccfc, 0x3fe28463edb33e44, + 0xbfeccccccccccce9, 0x3fe28463edb33e16, 0x0, 0x0, - 0xbfecccccccccccb6, 0x3fe2746bc5901d0c, + 0xbfecccccccccccdf, 0x3fe2746bc5901d42, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fe2647ba4e08c31, + 0xbfecccccccccccc2, 0x3fe2647ba4e08c6b, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fe2549380b12f31, + 0xbfecccccccccccf8, 0x3fe2549380b12f03, 0x0, 0x0, - 0xbfeccccccccccced, 0x3fe244b34e1e89d6, + 0xbfeccccccccccc8c, 0x3fe244b34e1e894d, 0x0, 0x0, - 0xbfecccccccccccf7, 0x3fe234db0254e291, + 0xbfeccccccccccd33, 0x3fe234db0254e233, 0x0, 0x0, - 0xbfecccccccccccfc, 0x3fe2250a929020ab, + 0xbfecccccccccccd9, 0x3fe2250a929020b6, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fe21541f41bae74, + 0xbfecccccccccccd6, 0x3fe21541f41bae81, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3fe205811c525925, + 0xbfecccccccccccf2, 0x3fe205811c5258ec, 0x0, 0x0, - 0xbfecccccccccccf6, 0x3fe1f5c8009e3157, + 0xbfeccccccccccc9c, 0x3fe1f5c8009e314b, 0x0, 0x0, - 0xbfecccccccccccaf, 0x3fe1e61696786e13, + 0xbfecccccccccccbe, 0x3fe1e61696786df4, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fe1d66cd3694dcf, + 0xbfecccccccccccd6, 0x3fe1d66cd3694db8, 0x0, 0x0, - 0xbfeccccccccccc9c, 0x3fe1c6caad07f81b, + 0xbfecccccccccccc9, 0x3fe1c6caad07f7d9, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fe1b73018fa5f35, + 0xbfecccccccccccb3, 0x3fe1b73018fa5f12, 0x0, 0x0, - 0xbfecccccccccccb4, 0x3fe1a79d0cf52433, + 0xbfecccccccccccdf, 0x3fe1a79d0cf52426, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fe198117ebb78f0, + 0xbfecccccccccccc5, 0x3fe198117ebb78da, 0x0, 0x0, - 0xbfeccccccccccc97, 0x3fe1888d641f0250, + 0xbfecccccccccccea, 0x3fe1888d641f0257, 0x0, 0x0, - 0xbfeccccccccccc86, 0x3fe17910b2ffbc63, + 0xbfeccccccccccca4, 0x3fe17910b2ffbc94, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3fe1699b614bddea, + 0xbfecccccccccccd6, 0x3fe1699b614bde06, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3fe15a2d64ffbafe, + 0xbfecccccccccccd2, 0x3fe15a2d64ffbb68, 0x0, 0x0, - 0xbfeccccccccccbea, 0x3fe14ac6b425aac8, + 0xbfeccccccccccc38, 0x3fe14ac6b425abc8, 0x0, 0x0, - 0xbfecccccccccccb0, 0x3fe13b6744d5ea89, + 0xbfeccccccccccd75, 0x3fe13b6744d5eb0b, 0x0, 0x0, - 0xbfeccccccccccced, 0x3fe12c0f0d368394, + 0xbfecccccccccccc3, 0x3fe12c0f0d36837f, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fe11cbe037b2ba6, + 0xbfecccccccccccf4, 0x3fe11cbe037b2b9d, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fe10d741de5300e, + 0xbfeccccccccccc80, 0x3fe10d741de5301e, 0x0, 0x0, - 0xbfecccccccccccf6, 0x3fe0fe3152c3573c, + 0xbfecccccccccccf8, 0x3fe0fe3152c35761, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fe0eef59871c61a, + 0xbfecccccccccccd2, 0x3fe0eef59871c630, 0x0, 0x0, - 0xbfecccccccccccb8, 0x3fe0dfc0e559e762, + 0xbfecccccccccccb7, 0x3fe0dfc0e559e76b, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fe0d0932ff24fda, + 0xbfeccccccccccd12, 0x3fe0d0932ff24fbd, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3fe0c16c6ebea584, + 0xbfeccccccccccced, 0x3fe0c16c6ebea584, 0x0, 0x0, - 0xbfeccccccccccc8d, 0x3fe0b24c984f8584, + 0xbfeccccccccccccb, 0x3fe0b24c984f858a, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fe0a333a3426b1d, + 0xbfeccccccccccccc, 0x3fe0a333a3426b2d, 0x0, 0x0, - 0xbfeccccccccccca2, 0x3fe09421864195c8, + 0xbfeccccccccccca2, 0x3fe09421864195b8, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fe085163803f02b, + 0xbfecccccccccccfd, 0x3fe085163803f022, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3fe07611af4cf8d4, + 0xbfecccccccccccde, 0x3fe07611af4cf8ce, 0x0, 0x0, - 0xbfecccccccccccb4, 0x3fe06713e2eca758, + 0xbfeccccccccccccb, 0x3fe06713e2eca70f, 0x0, 0x0, - 0xbfeccccccccccc8b, 0x3fe0581cc9bf5594, + 0xbfeccccccccccce2, 0x3fe0581cc9bf5598, 0x0, 0x0, - 0xbfecccccccccccae, 0x3fe0492c5aada778, + 0xbfecccccccccccfa, 0x3fe0492c5aada7ae, 0x0, 0x0, - 0xbfecccccccccccb8, 0x3fe03a428cac71ca, + 0xbfecccccccccccc2, 0x3fe03a428cac71da, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fe02b5f56bca40a, + 0xbfecccccccccccb6, 0x3fe02b5f56bca3f0, 0x0, 0x0, - 0xbfecccccccccccec, 0x3fe01c82afeb2f22, + 0xbfecccccccccccc1, 0x3fe01c82afeb2f3f, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fe00dac8f50f010, + 0xbfecccccccccccbf, 0x3fe00dac8f50f057, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fdffdb9d8252f2e, + 0xbfecccccccccccd8, 0x3fdffdb9d8252eee, 0x0, 0x0, - 0xbfecccccccccccf3, 0x3fdfe0277ac1238c, + 0xbfecccccccccccd9, 0x3fdfe0277ac123a2, 0x0, 0x0, - 0xbfeccccccccccd5a, 0x3fdfc2a1f4ede586, + 0xbfecccccccccccc4, 0x3fdfc2a1f4ede5f4, 0x0, 0x0, - 0xbfecccccccccccbb, 0x3fdfa529353abb44, + 0xbfeccccccccccc96, 0x3fdfa529353abb42, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fdf87bd2a4ddcac, + 0xbfeccccccccccca8, 0x3fdf87bd2a4ddc30, 0x0, 0x0, - 0xbfeccccccccccca4, 0x3fdf6a5dc2e446f6, + 0xbfecccccccccccc7, 0x3fdf6a5dc2e44626, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3fdf4d0aedd191d4, + 0xbfeccccccccccd03, 0x3fdf4d0aedd19140, 0x0, 0x0, - 0xbfecccccccccccad, 0x3fdf2fc499ffc3fc, + 0xbfecccccccccccc7, 0x3fdf2fc499ffc3f4, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fdf128ab66f265a, + 0xbfecccccccccccd4, 0x3fdf128ab66f25ec, 0x0, 0x0, - 0xbfeccccccccccc9c, 0x3fdef55d323618a0, + 0xbfeccccccccccccd, 0x3fdef55d3236193c, 0x0, 0x0, - 0xbfeccccccccccd84, 0x3fded83bfc80e9ec, + 0xbfeccccccccccd1d, 0x3fded83bfc80e8aa, 0x0, 0x0, - 0xbfeccccccccccc7f, 0x3fdebb270491a8da, + 0xbfeccccccccccc90, 0x3fdebb270491a8b0, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fde9e1e39c00426, + 0xbfeccccccccccce9, 0x3fde9e1e39c00454, 0x0, 0x0, - 0xbfecccccccccccea, 0x3fde81218b79121e, + 0xbfecccccccccccbc, 0x3fde81218b791204, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3fde6430e93f33cc, + 0xbfeccccccccccd03, 0x3fde6430e93f33d2, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fde474c42a9e63c, + 0xbfecccccccccccdb, 0x3fde474c42a9e622, 0x0, 0x0, - 0xbfeccccccccccc8d, 0x3fde2a7387659ca4, + 0xbfeccccccccccce8, 0x3fde2a7387659d20, 0x0, 0x0, - 0xbfecccccccccccfa, 0x3fde0da6a733967e, + 0xbfeccccccccccce6, 0x3fde0da6a7339744, 0x0, 0x0, - 0xbfeccccccccccd8f, 0x3fddf0e591e9b7c4, + 0xbfeccccccccccca8, 0x3fddf0e591e9b8c4, 0x0, 0x0, - 0xbfecccccccccccb2, 0x3fddd43037726372, + 0xbfeccccccccccce8, 0x3fddd43037726366, 0x0, 0x0, - 0xbfecccccccccccbd, 0x3fddb78687cc4fa4, + 0xbfecccccccccccc0, 0x3fddb78687cc4fee, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3fdd9ae8730a637e, + 0xbfeccccccccccce7, 0x3fdd9ae8730a6404, 0x0, 0x0, - 0xbfecccccccccccf4, 0x3fdd7e55e9538f14, + 0xbfecccccccccccc6, 0x3fdd7e55e9538f40, 0x0, 0x0, - 0xbfeccccccccccca2, 0x3fdd61cedae2a494, + 0xbfecccccccccccd1, 0x3fdd61cedae2a3dc, 0x0, 0x0, - 0xbfeccccccccccca3, 0x3fdd455338063048, + 0xbfeccccccccccce1, 0x3fdd455338063098, 0x0, 0x0, - 0xbfeccccccccccced, 0x3fdd28e2f120585c, + 0xbfeccccccccccce6, 0x3fdd28e2f1205910, 0x0, 0x0, - 0xbfeccccccccccd27, 0x3fdd0c7df6a6b346, + 0xbfeccccccccccc8e, 0x3fdd0c7df6a6b364, 0x0, 0x0, - 0xbfeccccccccccd19, 0x3fdcf024392221a4, + 0xbfecccccccccccbe, 0x3fdcf024392221ac, 0x0, 0x0, - 0xbfecccccccccccdd, 0x3fdcd3d5a92eb080, + 0xbfecccccccccccb8, 0x3fdcd3d5a92eaff4, 0x0, 0x0, - 0xbfecccccccccccc1, 0x3fdcb792377b67f4, + 0xbfecccccccccccc1, 0x3fdcb792377b6860, 0x0, 0x0, - 0xbfeccccccccccce3, 0x3fdc9b59d4ca36c0, + 0xbfecccccccccccea, 0x3fdc9b59d4ca36c4, 0x0, 0x0, - 0xbfecccccccccccdd, 0x3fdc7f2c71efc122, + 0xbfeccccccccccccd, 0x3fdc7f2c71efc16c, 0x0, 0x0, - 0xbfecccccccccccda, 0x3fdc6309ffd345ec, + 0xbfecccccccccccd0, 0x3fdc6309ffd34644, 0x0, 0x0, - 0xbfeccccccccccca9, 0x3fdc46f26f6e756c, + 0xbfeccccccccccce3, 0x3fdc46f26f6e764c, 0x0, 0x0, - 0xbfeccccccccccc3f, 0x3fdc2ae5b1cd50ac, + 0xbfecccccccccccad, 0x3fdc2ae5b1cd53f8, 0x0, 0x0, - 0xbfecccccccccccbf, 0x3fdc0ee3b80e0f28, + 0xbfeccccccccccca9, 0x3fdc0ee3b80e0eaa, 0x0, 0x0, - 0xbfeccccccccccce2, 0x3fdbf2ec7360e31a, + 0xbfeccccccccccce7, 0x3fdbf2ec7360e3ca, 0x0, 0x0, - 0xbfeccccccccccce2, 0x3fdbd6ffd507f6f8, + 0xbfecccccccccccda, 0x3fdbd6ffd507f6ec, 0x0, 0x0, - 0xbfecccccccccccda, 0x3fdbbb1dce5735b4, + 0xbfeccccccccccccf, 0x3fdbbb1dce5735ba, 0x0, 0x0, - 0xbfecccccccccccec, 0x3fdb9f4650b43276, + 0xbfeccccccccccca7, 0x3fdb9f4650b4328c, 0x0, 0x0, - 0xbfecccccccccccf1, 0x3fdb83794d960260, + 0xbfecccccccccccd1, 0x3fdb83794d9601e2, 0x0, 0x0, - 0xbfeccccccccccc8f, 0x3fdb67b6b6852158, + 0xbfecccccccccccdc, 0x3fdb67b6b6852034, 0x0, 0x0, - 0xbfeccccccccccd10, 0x3fdb4bfe7d1b474a, + 0xbfecccccccccccf0, 0x3fdb4bfe7d1b4678, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fdb305093035482, + 0xbfecccccccccccca, 0x3fdb3050930353a4, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fdb14ace9f92608, + 0xbfeccccccccccce2, 0x3fdb14ace9f924f0, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3fdaf91373c97ab8, + 0xbfecccccccccccd7, 0x3fdaf91373c97a3c, 0x0, 0x0, - 0xbfeccccccccccccf, 0x3fdadd842251d2c2, + 0xbfeccccccccccce0, 0x3fdadd842251d2f4, 0x0, 0x0, - 0xbfecccccccccccf0, 0x3fdac1fee78050f4, + 0xbfecccccccccccd1, 0x3fdac1fee7805106, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3fdaa683b55396ec, + 0xbfecccccccccccdb, 0x3fdaa683b553977e, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3fda8b127ddaac0c, + 0xbfecccccccccccb1, 0x3fda8b127ddaacc8, 0x0, 0x0, - 0xbfeccccccccccd5f, 0x3fda6fab3334d854, + 0xbfecccccccccccb3, 0x3fda6fab3334dab6, 0x0, 0x0, - 0xbfecccccccccccad, 0x3fda544dc79190d4, + 0xbfeccccccccccd07, 0x3fda544dc79190ca, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3fda38fa2d304540, + 0xbfecccccccccccba, 0x3fda38fa2d30457c, 0x0, 0x0, - 0xbfecccccccccccaf, 0x3fda1db05660562c, + 0xbfecccccccccccdd, 0x3fda1db05660562e, 0x0, 0x0, - 0xbfecccccccccccc4, 0x3fda02703580eaf8, + 0xbfecccccccccccd2, 0x3fda02703580eb00, 0x0, 0x0, - 0xbfecccccccccccb8, 0x3fd9e739bd00da64, + 0xbfeccccccccccd1d, 0x3fd9e739bd00da98, 0x0, 0x0, - 0xbfeccccccccccc77, 0x3fd9cc0cdf5e8854, + 0xbfecccccccccccbe, 0x3fd9cc0cdf5e8864, 0x0, 0x0, - 0xbfeccccccccccc5b, 0x3fd9b0e98f27cac6, + 0xbfecccccccccccdf, 0x3fd9b0e98f27cb18, 0x0, 0x0, - 0xbfeccccccccccbc1, 0x3fd995cfbef9cc82, + 0xbfeccccccccccd28, 0x3fd995cfbef9ccde, 0x0, 0x0, - 0xbfecccccccccccb7, 0x3fd97abf6180f0fc, + 0xbfecccccccccccb3, 0x3fd97abf6180f052, 0x0, 0x0, - 0xbfeccccccccccc67, 0x3fd95fb86978b618, + 0xbfecccccccccccd4, 0x3fd95fb86978b574, 0x0, 0x0, - 0xbfecccccccccccf5, 0x3fd944bac9ab95ca, + 0xbfecccccccccccce, 0x3fd944bac9ab95dc, 0x0, 0x0, - 0xbfeccccccccccc92, 0x3fd929c674f2f1b6, + 0xbfeccccccccccccf, 0x3fd929c674f2f100, 0x0, 0x0, - 0xbfeccccccccccce4, 0x3fd90edb5e36edb2, + 0xbfeccccccccccce9, 0x3fd90edb5e36ed30, 0x0, 0x0, - 0xbfecccccccccccab, 0x3fd8f3f9786e5904, + 0xbfecccccccccccc7, 0x3fd8f3f9786e5870, 0x0, 0x0, - 0xbfeccccccccccc86, 0x3fd8d920b69e922c, + 0xbfecccccccccccf4, 0x3fd8d920b69e924c, 0x0, 0x0, - 0xbfeccccccccccc6c, 0x3fd8be510bdb6cb4, + 0xbfecccccccccccac, 0x3fd8be510bdb6d5c, 0x0, 0x0, - 0xbfecccccccccccf4, 0x3fd8a38a6b4712e2, + 0xbfecccccccccccbf, 0x3fd8a38a6b471314, 0x0, 0x0, - 0xbfecccccccccccf8, 0x3fd888ccc811ebac, + 0xbfecccccccccccfb, 0x3fd888ccc811eb40, 0x0, 0x0, - 0xbfecccccccccccfa, 0x3fd86e18157a80b8, + 0xbfeccccccccccccf, 0x3fd86e18157a8030, 0x0, 0x0, - 0xbfeccccccccccd21, 0x3fd8536c46cd65bc, + 0xbfeccccccccccd09, 0x3fd8536c46cd6560, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3fd838c94f65199c, + 0xbfeccccccccccca7, 0x3fd838c94f651990, 0x0, 0x0, - 0xbfeccccccccccd00, 0x3fd81e2f22a9ee80, + 0xbfecccccccccccd6, 0x3fd81e2f22a9ede0, 0x0, 0x0, - 0xbfecccccccccccad, 0x3fd8039db411f336, + 0xbfeccccccccccd41, 0x3fd8039db411f0e0, 0x0, 0x0, - 0xbfeccccccccccb92, 0x3fd7e914f720d344, + 0xbfeccccccccccdf1, 0x3fd7e914f720cdc0, 0x0, 0x0, - 0xbfeccccccccccc14, 0x3fd7ce94df67b2f0, + 0xbfeccccccccccdcb, 0x3fd7ce94df67b1aa, 0x0, 0x0, - 0xbfecccccccccccae, 0x3fd7b41d60853e14, + 0xbfeccccccccccc96, 0x3fd7b41d60853e92, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3fd799ae6e2562c4, + 0xbfecccccccccccc8, 0x3fd799ae6e2563d8, 0x0, 0x0, - 0xbfeccccccccccc95, 0x3fd77f47fc0149e8, + 0xbfeccccccccccce8, 0x3fd77f47fc014a02, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fd764e9fddf3d32, + 0xbfecccccccccccc1, 0x3fd764e9fddf3cb8, 0x0, 0x0, - 0xbfeccccccccccd02, 0x3fd74a9467929038, + 0xbfecccccccccccdc, 0x3fd74a9467929012, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fd730472cfb8648, + 0xbfecccccccccccbd, 0x3fd730472cfb8628, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3fd71602420738c0, + 0xbfecccccccccccf8, 0x3fd7160242073838, 0x0, 0x0, - 0xbfecccccccccccc5, 0x3fd6fbc59aaf8152, + 0xbfeccccccccccce4, 0x3fd6fbc59aaf8112, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3fd6e1912afadf90, + 0xbfecccccccccccdb, 0x3fd6e1912afadfd2, 0x0, 0x0, - 0xbfecccccccccccb1, 0x3fd6c764e6fc6328, + 0xbfecccccccccccdc, 0x3fd6c764e6fc6306, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3fd6ad40c2d39236, + 0xbfecccccccccccb9, 0x3fd6ad40c2d3920a, 0x0, 0x0, - 0xbfecccccccccccb8, 0x3fd69324b2ac5290, + 0xbfeccccccccccc9d, 0x3fd69324b2ac52bc, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fd67910aabed468, + 0xbfeccccccccccce9, 0x3fd67910aabed3f8, 0x0, 0x0, - 0xbfeccccccccccca6, 0x3fd65f049f4f75e8, + 0xbfecccccccccccc9, 0x3fd65f049f4f75f4, 0x0, 0x0, - 0xbfeccccccccccd54, 0x3fd6450084aeb320, + 0xbfecccccccccccd0, 0x3fd6450084aeb2be, 0x0, 0x0, - 0xbfecccccccccccd9, 0x3fd62b044f3908e8, + 0xbfeccccccccccd23, 0x3fd62b044f3908e6, 0x0, 0x0, - 0xbfecccccccccccf3, 0x3fd6110ff356e1bc, + 0xbfecccccccccccce, 0x3fd6110ff356e158, 0x0, 0x0, - 0xbfeccccccccccc93, 0x3fd5f723657c7df8, + 0xbfecccccccccccc9, 0x3fd5f723657c7d54, 0x0, 0x0, - 0xbfecccccccccccbb, 0x3fd5dd3e9a29dcfc, + 0xbfecccccccccccab, 0x3fd5dd3e9a29dcc4, 0x0, 0x0, - 0xbfeccccccccccca6, 0x3fd5c36185eaa90c, + 0xbfecccccccccccd5, 0x3fd5c36185eaa87c, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3fd5a98c1d561ec8, + 0xbfeccccccccccccf, 0x3fd5a98c1d561e78, 0x0, 0x0, - 0xbfecccccccccccae, 0x3fd58fbe550ef790, + 0xbfecccccccccccce, 0x3fd58fbe550ef798, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fd575f821c35618, + 0xbfeccccccccccca6, 0x3fd575f821c355fc, 0x0, 0x0, - 0xbfeccccccccccce2, 0x3fd55c39782cad80, + 0xbfeccccccccccc9a, 0x3fd55c39782cad84, 0x0, 0x0, - 0xbfecccccccccccc5, 0x3fd542824d0fad30, + 0xbfecccccccccccaa, 0x3fd542824d0fad28, 0x0, 0x0, - 0xbfecccccccccccec, 0x3fd528d2953c2d10, + 0xbfecccccccccccd4, 0x3fd528d2953c2cf8, 0x0, 0x0, - 0xbfeccccccccccce7, 0x3fd50f2a458d157c, + 0xbfecccccccccccd1, 0x3fd50f2a458d15ac, 0x0, 0x0, - 0xbfecccccccccccec, 0x3fd4f58952e84d24, + 0xbfecccccccccccb3, 0x3fd4f58952e84c58, 0x0, 0x0, - 0xbfecccccccccccff, 0x3fd4dbefb23ea008, + 0xbfecccccccccccc3, 0x3fd4dbefb23ea000, 0x0, 0x0, - 0xbfecccccccccccfe, 0x3fd4c25d588bb000, + 0xbfecccccccccccb8, 0x3fd4c25d588bb024, 0x0, 0x0, - 0xbfeccccccccccd03, 0x3fd4a8d23ad5dad8, + 0xbfeccccccccccca5, 0x3fd4a8d23ad5dc30, 0x0, 0x0, - 0xbfecccccccccccab, 0x3fd48f4e4e2e2c30, + 0xbfeccccccccccca9, 0x3fd48f4e4e2e2db0, 0x0, 0x0, - 0xbfecccccccccccd6, 0x3fd475d187b043c0, + 0xbfecccccccccccc3, 0x3fd475d187b04344, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fd45c5bdc823d0c, + 0xbfecccccccccccdb, 0x3fd45c5bdc823d10, 0x0, 0x0, - 0xbfecccccccccccde, 0x3fd442ed41d4a8ec, + 0xbfecccccccccccc1, 0x3fd442ed41d4a91c, 0x0, 0x0, - 0xbfecccccccccccde, 0x3fd42985ace26dac, + 0xbfecccccccccccdc, 0x3fd42985ace26d28, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fd4102512f0b710, + 0xbfecccccccccccc0, 0x3fd4102512f0b6e8, 0x0, 0x0, - 0xbfecccccccccccbe, 0x3fd3f6cb694ee328, + 0xbfecccccccccccba, 0x3fd3f6cb694ee3a8, 0x0, 0x0, - 0xbfeccccccccccca4, 0x3fd3dd78a556702c, + 0xbfecccccccccccca, 0x3fd3dd78a55670a8, 0x0, 0x0, - 0xbfecccccccccccd1, 0x3fd3c42cbc6ae3e0, + 0xbfecccccccccccc1, 0x3fd3c42cbc6ae3e8, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fd3aae7a3f9bd40, + 0xbfecccccccccccd7, 0x3fd3aae7a3f9bd30, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fd391a9517a6010, + 0xbfecccccccccccbe, 0x3fd391a9517a5fb8, 0x0, 0x0, - 0xbfeccccccccccced, 0x3fd37871ba6e005c, + 0xbfecccccccccccf3, 0x3fd37871ba6e0090, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3fd35f40d45f9020, + 0xbfeccccccccccccf, 0x3fd35f40d45f904c, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fd3461694e3af80, + 0xbfecccccccccccbf, 0x3fd3461694e3aff8, 0x0, 0x0, - 0xbfeccccccccccc8c, 0x3fd32cf2f1989530, + 0xbfecccccccccccb1, 0x3fd32cf2f1989598, 0x0, 0x0, - 0xbfeccccccccccd0b, 0x3fd313d5e025ff7c, + 0xbfeccccccccccc31, 0x3fd313d5e025fe10, 0x0, 0x0, - 0xbfecccccccccccbe, 0x3fd2fabf563d1c90, + 0xbfeccccccccccc81, 0x3fd2fabf563d1be8, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fd2e1af4998819c, + 0xbfecccccccccccc4, 0x3fd2e1af499881ac, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fd2c8a5affc1144, + 0xbfecccccccccccd5, 0x3fd2c8a5affc10f8, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fd2afa27f34e9fc, + 0xbfeccccccccccca9, 0x3fd2afa27f34ea00, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3fd296a5ad1956b4, + 0xbfeccccccccccce3, 0x3fd296a5ad195750, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fd27daf2f88bc64, + 0xbfecccccccccccdb, 0x3fd27daf2f88bc60, 0x0, 0x0, - 0xbfeccccccccccc99, 0x3fd264befc6b8548, + 0xbfecccccccccccc7, 0x3fd264befc6b852c, 0x0, 0x0, - 0xbfecccccccccccc2, 0x3fd24bd509b3132c, + 0xbfeccccccccccce3, 0x3fd24bd509b313b8, 0x0, 0x0, - 0xbfecccccccccccbb, 0x3fd232f14d59ac08, + 0xbfecccccccccccbb, 0x3fd232f14d59abdc, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fd21a13bd62696c, + 0xbfecccccccccccc7, 0x3fd21a13bd6269b4, 0x0, 0x0, - 0xbfecccccccccccdd, 0x3fd2013c4fd925e0, + 0xbfecccccccccccdd, 0x3fd2013c4fd925fc, 0x0, 0x0, - 0xbfecccccccccccb8, 0x3fd1e86afad26bdc, + 0xbfecccccccccccc4, 0x3fd1e86afad26ba8, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fd1cf9fb46b66bc, + 0xbfeccccccccccce3, 0x3fd1cf9fb46b66d4, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fd1b6da72c9ce10, + 0xbfeccccccccccd0e, 0x3fd1b6da72c9ce80, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fd19e1b2c1bd978, + 0xbfeccccccccccc89, 0x3fd19e1b2c1bd9ec, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3fd18561d6982d00, + 0xbfeccccccccccbcd, 0x3fd18561d6982be4, 0x0, 0x0, - 0xbfeccccccccccd0f, 0x3fd16cae687dc538, + 0xbfeccccccccccc41, 0x3fd16cae687dc570, 0x0, 0x0, - 0xbfecccccccccccf0, 0x3fd15400d813ee28, + 0xbfeccccccccccce3, 0x3fd15400d813ee04, 0x0, 0x0, - 0xbfeccccccccccce6, 0x3fd13b591baa2d78, + 0xbfecccccccccccd2, 0x3fd13b591baa2d68, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fd122b7299832e0, + 0xbfecccccccccccc1, 0x3fd122b729983270, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3fd10a1af83dc85c, + 0xbfeccccccccccce9, 0x3fd10a1af83dc88c, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fd0f1847e02c38c, + 0xbfecccccccccccd2, 0x3fd0f1847e02c358, 0x0, 0x0, - 0xbfecccccccccccda, 0x3fd0d8f3b156f1e4, + 0xbfecccccccccccdb, 0x3fd0d8f3b156f1f0, 0x0, 0x0, - 0xbfeccccccccccd52, 0x3fd0c06888b20c68, + 0xbfeccccccccccd1f, 0x3fd0c06888b20c40, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3fd0a7e2fa93a4e8, + 0xbfeccccccccccd05, 0x3fd0a7e2fa93a5b4, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3fd08f62fd8319d0, + 0xbfecccccccccccc2, 0x3fd08f62fd831a44, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3fd076e8880f81e0, + 0xbfecccccccccccc6, 0x3fd076e8880f8214, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fd05e7390cf9f24, + 0xbfecccccccccccdc, 0x3fd05e7390cf9fbc, 0x0, 0x0, - 0xbfeccccccccccce5, 0x3fd046040e61d0f4, + 0xbfecccccccccccb6, 0x3fd046040e61d0c0, 0x0, 0x0, - 0xbfecccccccccccbf, 0x3fd02d99f76c0060, + 0xbfecccccccccccb2, 0x3fd02d99f76c0050, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fd01535429b93c0, + 0xbfecccccccccccde, 0x3fd01535429b941c, 0x0, 0x0, - 0xbfeccccccccccd3e, 0x3fcff9abcd4abf08, + 0xbfeccccccccccc60, 0x3fcff9abcd4ac1b0, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3fcfc8f7b48b2e70, + 0xbfecccccccccccec, 0x3fcfc8f7b48b3038, 0x0, 0x0, - 0xbfecccccccccccb2, 0x3fcf984e287f77e8, + 0xbfecccccccccccc4, 0x3fcf984e287f77d0, 0x0, 0x0, - 0xbfeccccccccccce9, 0x3fcf67af16bd1c68, + 0xbfecccccccccccc0, 0x3fcf67af16bd1c50, 0x0, 0x0, - 0xbfeccccccccccc8a, 0x3fcf371a6ce803f0, + 0xbfeccccccccccccc, 0x3fcf371a6ce803c0, 0x0, 0x0, - 0xbfecccccccccccde, 0x3fcf069018b25890, + 0xbfecccccccccccd9, 0x3fcf069018b25898, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fced61007dc6de0, + 0xbfecccccccccccc7, 0x3fced61007dc6d48, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3fcea59a28349ec0, + 0xbfecccccccccccde, 0x3fcea59a28349e68, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fce752e679733a0, + 0xbfecccccccccccd8, 0x3fce752e67973480, 0x0, 0x0, - 0xbfeccccccccccca8, 0x3fce44ccb3ee4ad8, + 0xbfecccccccccccbe, 0x3fce44ccb3ee4960, 0x0, 0x0, - 0xbfecccccccccccd3, 0x3fce1474fb31a8f8, + 0xbfecccccccccccc4, 0x3fce1474fb31a8e8, 0x0, 0x0, - 0xbfecccccccccccb5, 0x3fcde4272b66b630, + 0xbfecccccccccccc6, 0x3fcde4272b66b6b8, 0x0, 0x0, - 0xbfecccccccccccee, 0x3fcdb3e332a04e90, + 0xbfecccccccccccca, 0x3fcdb3e332a04fa8, 0x0, 0x0, - 0xbfecccccccccccaa, 0x3fcd83a8fefeaac0, + 0xbfecccccccccccc7, 0x3fcd83a8fefeac88, 0x0, 0x0, - 0xbfeccccccccccc8d, 0x3fcd53787eaf4710, + 0xbfecccccccccccd8, 0x3fcd53787eaf4880, 0x0, 0x0, - 0xbfeccccccccccc5e, 0x3fcd23519fecc540, + 0xbfeccccccccccccc, 0x3fcd23519fecc7a8, 0x0, 0x0, - 0xbfeccccccccccbd6, 0x3fccf33450fecb60, + 0xbfeccccccccccce4, 0x3fccf33450fed078, 0x0, 0x0, - 0xbfeccccccccccd00, 0x3fccc3208039fe10, + 0xbfeccccccccccc67, 0x3fccc3208039fff0, 0x0, 0x0, - 0xbfecccccccccccc5, 0x3fcc93161bffba98, + 0xbfeccccccccccccf, 0x3fcc93161bffba58, 0x0, 0x0, - 0xbfecccccccccccdc, 0x3fcc631512be24d8, + 0xbfecccccccccccbf, 0x3fcc631512be2468, 0x0, 0x0, - 0xbfecccccccccccbf, 0x3fcc331d52effb10, + 0xbfecccccccccccbf, 0x3fcc331d52effa88, 0x0, 0x0, - 0xbfeccccccccccd11, 0x3fcc032ecb1c78c0, + 0xbfeccccccccccce4, 0x3fcc032ecb1c7860, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3fcbd34969d73fe0, + 0xbfecccccccccccb6, 0x3fcbd34969d74070, 0x0, 0x0, - 0xbfeccccccccccca9, 0x3fcba36d1dc03d38, + 0xbfeccccccccccce2, 0x3fcba36d1dc03ca8, 0x0, 0x0, - 0xbfeccccccccccd0b, 0x3fcb7399d58389e8, + 0xbfeccccccccccc8d, 0x3fcb7399d5838c50, 0x0, 0x0, - 0xbfecccccccccccf6, 0x3fcb43cf7fd95c60, + 0xbfeccccccccccc8b, 0x3fcb43cf7fd95d40, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3fcb140e0b85daa0, + 0xbfecccccccccccd1, 0x3fcb140e0b85dae8, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3fcae45567591150, + 0xbfeccccccccccccc, 0x3fcae45567591240, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3fcab4a5822ed428, + 0xbfecccccccccccd5, 0x3fcab4a5822ed430, 0x0, 0x0, - 0xbfecccccccccccf1, 0x3fca84fe4aeea000, + 0xbfecccccccccccff, 0x3fca84fe4aee9f70, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fca555fb08b8410, + 0xbfeccccccccccce2, 0x3fca555fb08b8468, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3fca25c9a20409d0, + 0xbfecccccccccccc7, 0x3fca25c9a20409d0, 0x0, 0x0, - 0xbfeccccccccccd0b, 0x3fc9f63c0e621890, + 0xbfecccccccccccad, 0x3fc9f63c0e6217c0, 0x0, 0x0, - 0xbfecccccccccccec, 0x3fc9c6b6e4bad898, + 0xbfeccccccccccc9f, 0x3fc9c6b6e4bad7a0, 0x0, 0x0, - 0xbfecccccccccccfb, 0x3fc9973a142ea988, + 0xbfecccccccccccbc, 0x3fc9973a142ea8a0, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fc967c58be8eec0, + 0xbfecccccccccccc0, 0x3fc967c58be8eed0, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3fc938593b201098, + 0xbfecccccccccccef, 0x3fc938593b2011e8, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fc908f511155380, + 0xbfecccccccccccde, 0x3fc908f511155420, 0x0, 0x0, - 0xbfeccccccccccd00, 0x3fc8d998fd14c2a0, + 0xbfecccccccccccb9, 0x3fc8d998fd14c2c8, 0x0, 0x0, - 0xbfeccccccccccce0, 0x3fc8aa44ee751940, + 0xbfecccccccccccd0, 0x3fc8aa44ee7518f0, 0x0, 0x0, - 0xbfeccccccccccd06, 0x3fc87af8d497a5c0, + 0xbfecccccccccccfc, 0x3fc87af8d497a710, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fc84bb49ee83bc0, + 0xbfecccccccccccde, 0x3fc84bb49ee83c00, 0x0, 0x0, - 0xbfeccccccccccce5, 0x3fc81c783cdd0b10, + 0xbfecccccccccccb9, 0x3fc81c783cdd0a90, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fc7ed439df69410, + 0xbfecccccccccccdf, 0x3fc7ed439df69330, 0x0, 0x0, - 0xbfeccccccccccca6, 0x3fc7be16b1bf8b90, + 0xbfeccccccccccc97, 0x3fc7be16b1bf8be0, 0x0, 0x0, - 0xbfeccccccccccd10, 0x3fc78ef167ccc4b0, + 0xbfeccccccccccc7d, 0x3fc78ef167ccc4a0, 0x0, 0x0, - 0xbfeccccccccccd12, 0x3fc75fd3afbd1820, + 0xbfecccccccccccb4, 0x3fc75fd3afbd1680, 0x0, 0x0, - 0xbfeccccccccccd45, 0x3fc730bd79394100, + 0xbfeccccccccccd00, 0x3fc730bd79394220, 0x0, 0x0, - 0xbfeccccccccccd3a, 0x3fc701aeb3f3e2e0, + 0xbfeccccccccccc9b, 0x3fc701aeb3f3dd40, 0x0, 0x0, - 0xbfeccccccccccc5e, 0x3fc6d2a74fa94ba0, + 0xbfecccccccccce06, 0x3fc6d2a74fa94960, 0x0, 0x0, - 0xbfecccccccccccbb, 0x3fc6a3a73c1f6e70, + 0xbfeccccccccccc7a, 0x3fc6a3a73c1f6d60, 0x0, 0x0, - 0xbfecccccccccccbb, 0x3fc674ae6925e1a0, + 0xbfecccccccccccbd, 0x3fc674ae6925e1a0, 0x0, 0x0, - 0xbfeccccccccccce1, 0x3fc645bcc695a390, + 0xbfeccccccccccceb, 0x3fc645bcc695a3c0, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fc616d244511400, + 0xbfecccccccccccfd, 0x3fc616d244511400, 0x0, 0x0, - 0xbfecccccccccccae, 0x3fc5e7eed243dcc0, + 0xbfecccccccccccde, 0x3fc5e7eed243dd50, 0x0, 0x0, - 0xbfeccccccccccc92, 0x3fc5b9126062d980, + 0xbfecccccccccccce, 0x3fc5b9126062d9e0, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fc58a3cdeac0030, + 0xbfecccccccccccd7, 0x3fc58a3cdeabffd0, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fc55b6e3d2649a0, + 0xbfeccccccccccc85, 0x3fc55b6e3d264900, 0x0, 0x0, - 0xbfecccccccccccda, 0x3fc52ca66be1a170, + 0xbfeccccccccccccd, 0x3fc52ca66be1a0d0, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3fc4fde55af6c2e0, + 0xbfecccccccccccc8, 0x3fc4fde55af6c310, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fc4cf2afa872f60, + 0xbfecccccccccccb0, 0x3fc4cf2afa872f60, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fc4a0773abd0f60, + 0xbfeccccccccccc8b, 0x3fc4a0773abd0fd0, 0x0, 0x0, - 0xbfeccccccccccced, 0x3fc471ca0bcb2010, + 0xbfecccccccccccc0, 0x3fc471ca0bcb2030, 0x0, 0x0, - 0xbfeccccccccccce5, 0x3fc443235dec9a90, + 0xbfeccccccccccccb, 0x3fc443235dec9a80, 0x0, 0x0, - 0xbfeccccccccccc6e, 0x3fc4148321652160, + 0xbfeccccccccccd38, 0x3fc4148321652020, 0x0, 0x0, - 0xbfeccccccccccd0b, 0x3fc3e5e94680a5f0, + 0xbfecccccccccccd9, 0x3fc3e5e94680a6c0, 0x0, 0x0, - 0xbfeccccccccccd08, 0x3fc3b755bd935660, + 0xbfeccccccccccccb, 0x3fc3b755bd935790, 0x0, 0x0, - 0xbfecccccccccccbe, 0x3fc388c876f98850, + 0xbfecccccccccccbe, 0x3fc388c876f987c0, 0x0, 0x0, - 0xbfecccccccccccd8, 0x3fc35a4163179aa0, + 0xbfecccccccccccc3, 0x3fc35a4163179b70, 0x0, 0x0, - 0xbfecccccccccccb3, 0x3fc32bc07259ed20, + 0xbfecccccccccccf5, 0x3fc32bc07259edc0, 0x0, 0x0, - 0xbfeccccccccccc8e, 0x3fc2fd459534c040, + 0xbfecccccccccccdf, 0x3fc2fd459534c1a0, 0x0, 0x0, - 0xbfecccccccccccaa, 0x3fc2ced0bc2425f0, + 0xbfecccccccccccd6, 0x3fc2ced0bc2425b0, 0x0, 0x0, - 0xbfecccccccccccde, 0x3fc2a061d7abe6b0, + 0xbfecccccccccccac, 0x3fc2a061d7abe4a0, 0x0, 0x0, - 0xbfecccccccccccb6, 0x3fc271f8d8576bf0, + 0xbfeccccccccccc9e, 0x3fc271f8d8576c00, 0x0, 0x0, - 0xbfeccccccccccd1b, 0x3fc24395aeb9b770, + 0xbfecccccccccccdf, 0x3fc24395aeb9b8a0, 0x0, 0x0, - 0xbfecccccccccccb4, 0x3fc215384b6d3f40, + 0xbfeccccccccccccb, 0x3fc215384b6d3fe0, 0x0, 0x0, - 0xbfeccccccccccd15, 0x3fc1e6e09f13dcd0, + 0xbfecccccccccccd7, 0x3fc1e6e09f13dd80, 0x0, 0x0, - 0xbfecccccccccccb2, 0x3fc1b88e9a56b9f0, + 0xbfecccccccccccfc, 0x3fc1b88e9a56bc00, 0x0, 0x0, - 0xbfeccccccccccd17, 0x3fc18a422de63d40, + 0xbfeccccccccccce2, 0x3fc18a422de63f90, 0x0, 0x0, - 0xbfecccccccccccb5, 0x3fc15bfb4a79f2c0, + 0xbfeccccccccccc9a, 0x3fc15bfb4a79f350, 0x0, 0x0, - 0xbfecccccccccce29, 0x3fc12db9e0d06cb0, + 0xbfeccccccccccc72, 0x3fc12db9e0d07470, 0x0, 0x0, - 0xbfecccccccccccf7, 0x3fc0ff7de1af5700, + 0xbfeccccccccccc53, 0x3fc0ff7de1af5460, 0x0, 0x0, - 0xbfecccccccccccb5, 0x3fc0d1473de31a40, + 0xbfecccccccccccb6, 0x3fc0d1473de31cf0, 0x0, 0x0, - 0xbfeccccccccccd0c, 0x3fc0a315e63f1c50, + 0xbfecccccccccccba, 0x3fc0a315e63f1b10, 0x0, 0x0, - 0xbfeccccccccccc01, 0x3fc074e9cb9d5c60, + 0xbfecccccccccccc8, 0x3fc074e9cb9d5f90, 0x0, 0x0, - 0xbfecccccccccccb9, 0x3fc046c2dedea780, + 0xbfeccccccccccce1, 0x3fc046c2dedea770, 0x0, 0x0, - 0xbfeccccccccccbe0, 0x3fc018a110ea42e0, + 0xbfecccccccccccb6, 0x3fc018a110ea44b0, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3fbfd508a55c1200, + 0xbfecccccccccccd5, 0x3fbfd508a55c1140, 0x0, 0x0, - 0xbfeccccccccccb96, 0x3fbf78d92a3c66a0, + 0xbfeccccccccccccb, 0x3fbf78d92a3c6900, 0x0, 0x0, - 0xbfecccccccccccfd, 0x3fbf1cb3926ac040, + 0xbfeccccccccccd14, 0x3fbf1cb3926ac1a0, 0x0, 0x0, - 0xbfeccccccccccc09, 0x3fbec097bfe8daa0, + 0xbfeccccccccccccd, 0x3fbec097bfe8d780, 0x0, 0x0, - 0xbfeccccccccccca6, 0x3fbe648594c4ce20, + 0xbfecccccccccccc2, 0x3fbe648594c4cea0, 0x0, 0x0, - 0xbfeccccccccccc5b, 0x3fbe087cf3190200, + 0xbfecccccccccccea, 0x3fbe087cf318fc20, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fbdac7dbd0bd000, + 0xbfecccccccccccc7, 0x3fbdac7dbd0bcf20, 0x0, 0x0, - 0xbfeccccccccccc75, 0x3fbd5087d4cfa0c0, + 0xbfecccccccccccdd, 0x3fbd5087d4cf9ea0, 0x0, 0x0, - 0xbfecccccccccccb8, 0x3fbcf49b1ca285a0, + 0xbfecccccccccccca, 0x3fbcf49b1ca28420, 0x0, 0x0, - 0xbfeccccccccccd03, 0x3fbc98b776ce3e80, + 0xbfeccccccccccccb, 0x3fbc98b776ce3900, 0x0, 0x0, - 0xbfeccccccccccd00, 0x3fbc3cdcc5a7ebe0, + 0xbfecccccccccccc2, 0x3fbc3cdcc5a7e820, 0x0, 0x0, - 0xbfeccccccccccd1c, 0x3fbbe10aeb900de0, + 0xbfecccccccccccdd, 0x3fbbe10aeb900e40, 0x0, 0x0, - 0xbfecccccccccccc8, 0x3fbb8541caf24a00, + 0xbfecccccccccccd2, 0x3fbb8541caf24a00, 0x0, 0x0, - 0xbfeccccccccccc7b, 0x3fbb298146453f80, + 0xbfecccccccccccc0, 0x3fbb298146453e40, 0x0, 0x0, - 0xbfecccccccccccd5, 0x3fbacdc9400a6540, + 0xbfecccccccccccd5, 0x3fbacdc9400a6460, 0x0, 0x0, - 0xbfeccccccccccc97, 0x3fba72199acde4e0, + 0xbfeccccccccccccb, 0x3fba72199acde5a0, 0x0, 0x0, - 0xbfecccccccccccaf, 0x3fba167239267ea0, + 0xbfecccccccccccc9, 0x3fba167239268020, 0x0, 0x0, - 0xbfeccccccccccca1, 0x3fb9bad2fdb54ee0, + 0xbfecccccccccccc7, 0x3fb9bad2fdb54f40, 0x0, 0x0, - 0xbfeccccccccccd08, 0x3fb95f3bcb25b440, + 0xbfeccccccccccd1e, 0x3fb95f3bcb25b6c0, 0x0, 0x0, - 0xbfeccccccccccca4, 0x3fb903ac842d2080, + 0xbfecccccccccccd5, 0x3fb903ac842d2040, 0x0, 0x0, - 0xbfecccccccccccb0, 0x3fb8a8250b8b0180, + 0xbfecccccccccccdb, 0x3fb8a8250b8b0200, 0x0, 0x0, - 0xbfeccccccccccccb, 0x3fb84ca544088e00, + 0xbfecccccccccccf3, 0x3fb84ca544088c80, 0x0, 0x0, - 0xbfecccccccccccaf, 0x3fb7f12d1078a080, + 0xbfeccccccccccce4, 0x3fb7f12d1078a100, 0x0, 0x0, - 0xbfecccccccccccb2, 0x3fb795bc53b79980, + 0xbfecccccccccccb7, 0x3fb795bc53b79a00, 0x0, 0x0, - 0xbfeccccccccccc6d, 0x3fb73a52f0ab3240, + 0xbfeccccccccccce2, 0x3fb73a52f0ab3840, 0x0, 0x0, - 0xbfeccccccccccc7f, 0x3fb6def0ca425f40, + 0xbfecccccccccccda, 0x3fb6def0ca426800, 0x0, 0x0, - 0xbfeccccccccccd18, 0x3fb68395c3752000, + 0xbfeccccccccccc8e, 0x3fb68395c3752540, 0x0, 0x0, - 0xbfeccccccccccd01, 0x3fb62841bf446100, + 0xbfeccccccccccce7, 0x3fb62841bf446000, 0x0, 0x0, - 0xbfecccccccccccf3, 0x3fb5ccf4a0b9d040, + 0xbfeccccccccccce4, 0x3fb5ccf4a0b9cf40, 0x0, 0x0, - 0xbfeccccccccccc97, 0x3fb571ae4ae7c340, + 0xbfeccccccccccce8, 0x3fb571ae4ae7c380, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fb5166ea0e90600, + 0xbfeccccccccccca5, 0x3fb5166ea0e903c0, 0x0, 0x0, - 0xbfecccccccccccb7, 0x3fb4bb3585e0bd40, + 0xbfecccccccccccad, 0x3fb4bb3585e0bac0, 0x0, 0x0, - 0xbfeccccccccccc8e, 0x3fb46002dcfa3a80, + 0xbfecccccccccccd6, 0x3fb46002dcfa3a80, 0x0, 0x0, - 0xbfeccccccccccc36, 0x3fb404d68968e6c0, + 0xbfeccccccccccc84, 0x3fb404d68968e6c0, 0x0, 0x0, - 0xbfeccccccccccd00, 0x3fb3a9b06e680a00, + 0xbfecccccccccccb3, 0x3fb3a9b06e680800, 0x0, 0x0, - 0xbfecccccccccccda, 0x3fb34e906f3aa7c0, + 0xbfecccccccccccf0, 0x3fb34e906f3aa800, 0x0, 0x0, - 0xbfecccccccccccd0, 0x3fb2f3766f2b7500, + 0xbfecccccccccccdc, 0x3fb2f3766f2b7580, 0x0, 0x0, - 0xbfeccccccccccccd, 0x3fb29862518c9380, + 0xbfeccccccccccccb, 0x3fb29862518c94c0, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fb23d53f9b78000, + 0xbfeccccccccccc74, 0x3fb23d53f9b77f80, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fb1e24b4b0cdf00, + 0xbfecccccccccccd4, 0x3fb1e24b4b0ce000, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fb1874828f46d80, + 0xbfecccccccccccb4, 0x3fb1874828f46e40, 0x0, 0x0, - 0xbfeccccccccccc51, 0x3fb12c4a76dccc40, + 0xbfecccccccccccab, 0x3fb12c4a76dcc800, 0x0, 0x0, - 0xbfecccccccccccba, 0x3fb0d152183b5900, + 0xbfeccccccccccc65, 0x3fb0d152183b5700, 0x0, 0x0, - 0xbfecccccccccccd2, 0x3fb0765ef08c2080, + 0xbfecccccccccccdc, 0x3fb0765ef08c2040, 0x0, 0x0, - 0xbfeccccccccccca8, 0x3fb01b70e3519cc0, + 0xbfecccccccccccc2, 0x3fb01b70e3519d00, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3faf810fa8295c00, + 0xbfecccccccccccf9, 0x3faf810fa8295780, 0x0, 0x0, - 0xbfeccccccccccd07, 0x3faecb474cc8ae80, + 0xbfecccccccccccfa, 0x3faecb474cc8af80, 0x0, 0x0, - 0xbfecccccccccccda, 0x3fae15887bab7a80, + 0xbfecccccccccccd7, 0x3fae15887bab7d00, 0x0, 0x0, - 0xbfecccccccccccf4, 0x3fad5fd2fc07d180, + 0xbfecccccccccccc3, 0x3fad5fd2fc07d100, 0x0, 0x0, - 0xbfeccccccccccd0c, 0x3facaa26951f6000, + 0xbfeccccccccccd00, 0x3facaa26951f4f80, 0x0, 0x0, - 0xbfeccccccccccd0b, 0x3fabf4830e3efa80, + 0xbfecccccccccccbd, 0x3fabf4830e3ef900, 0x0, 0x0, - 0xbfeccccccccccca9, 0x3fab3ee82ebeb080, + 0xbfecccccccccccd7, 0x3fab3ee82ebeaf80, 0x0, 0x0, - 0xbfecccccccccccb4, 0x3faa8955be012800, + 0xbfecccccccccccc6, 0x3faa8955be012600, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3fa9d3cb83738a00, + 0xbfecccccccccccc7, 0x3fa9d3cb83738700, 0x0, 0x0, - 0xbfeccccccccccc9b, 0x3fa91e49468d2200, + 0xbfecccccccccccb7, 0x3fa91e49468d1f00, 0x0, 0x0, - 0xbfecccccccccccb6, 0x3fa868cececf3200, + 0xbfeccccccccccceb, 0x3fa868cececf2f00, 0x0, 0x0, - 0xbfecccccccccccc7, 0x3fa7b35be3c49400, + 0xbfecccccccccccd1, 0x3fa7b35be3c49300, 0x0, 0x0, - 0xbfeccccccccccbf0, 0x3fa6fdf04d017c00, + 0xbfeccccccccccbc5, 0x3fa6fdf04d016a00, 0x0, 0x0, - 0xbfecccccccccccab, 0x3fa6488bd2234200, + 0xbfeccccccccccc8a, 0x3fa6488bd2233b00, 0x0, 0x0, - 0xbfecccccccccccbe, 0x3fa5932e3acfda00, + 0xbfecccccccccccba, 0x3fa5932e3acfd700, 0x0, 0x0, - 0xbfeccccccccccccc, 0x3fa4ddd74eb60500, + 0xbfecccccccccccd1, 0x3fa4ddd74eb60500, 0x0, 0x0, - 0xbfecccccccccccce, 0x3fa42886d58c9e00, + 0xbfecccccccccccd9, 0x3fa42886d58c9e00, 0x0, 0x0, - 0xbfeccccccccccd06, 0x3fa3733c97127800, + 0xbfeccccccccccce6, 0x3fa3733c97127c00, 0x0, 0x0, - 0xbfecccccccccccdd, 0x3fa2bdf85b0e2600, + 0xbfecccccccccccda, 0x3fa2bdf85b0e2a00, 0x0, 0x0, - 0xbfecccccccccccca, 0x3fa208b9e94dae00, + 0xbfeccccccccccca4, 0x3fa208b9e94db000, 0x0, 0x0, - 0xbfeccccccccccc9a, 0x3fa1538109a62e00, + 0xbfeccccccccccccf, 0x3fa1538109a63100, 0x0, 0x0, - 0xbfeccccccccccd0e, 0x3fa09e4d83f3c000, + 0xbfeccccccccccd00, 0x3fa09e4d83f3c200, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3f9fd23e40320200, + 0xbfeccccccccccce8, 0x3f9fd23e40320000, 0x0, 0x0, - 0xbfeccccccccccce2, 0x3f9e67eb4bfdf200, + 0xbfecccccccccccd3, 0x3f9e67eb4bfdee00, 0x0, 0x0, - 0xbfecccccccccccaf, 0x3f9cfda1bb296e00, + 0xbfecccccccccccc3, 0x3f9cfda1bb296800, 0x0, 0x0, - 0xbfecccccccccccd9, 0x3f9b93611d9e4400, + 0xbfeccccccccccd08, 0x3f9b93611d9e4000, 0x0, 0x0, - 0xbfeccccccccccce4, 0x3f9a292903514400, + 0xbfecccccccccccbb, 0x3f9a292903513e00, 0x0, 0x0, - 0xbfeccccccccccce5, 0x3f98bef8fc41c000, + 0xbfecccccccccccd0, 0x3f98bef8fc41bc00, 0x0, 0x0, - 0xbfecccccccccccb0, 0x3f9754d09878f400, + 0xbfecccccccccccda, 0x3f9754d098791000, 0x0, 0x0, - 0xbfeccccccccccd09, 0x3f95eaaf6809d000, + 0xbfeccccccccccd05, 0x3f95eaaf6809e400, 0x0, 0x0, - 0xbfecccccccccccdb, 0x3f948094fb0fd800, + 0xbfecccccccccccbf, 0x3f948094fb0fe000, 0x0, 0x0, - 0xbfecccccccccccd7, 0x3f931680e1af0800, + 0xbfecccccccccccc3, 0x3f931680e1af0c00, 0x0, 0x0, - 0xbfecccccccccccc6, 0x3f91ac72ac132400, + 0xbfeccccccccccd1e, 0x3f91ac72ac132c00, 0x0, 0x0, - 0xbfecccccccccccdd, 0x3f904269ea6f5400, + 0xbfecccccccccccbe, 0x3f904269ea6f5400, 0x0, 0x0, - 0xbfecccccccccccc9, 0x3f8db0cc59faa000, + 0xbfeccccccccccce7, 0x3f8db0cc59faa800, 0x0, 0x0, - 0xbfeccccccccccce2, 0x3f8adcce07fa4800, + 0xbfeccccccccccce9, 0x3f8adcce07fa4800, 0x0, 0x0, - 0xbfecccccccccccc3, 0x3f8808d7ff68d000, + 0xbfecccccccccccc5, 0x3f8808d7ff68d000, 0x0, 0x0, - 0xbfecccccccccccc5, 0x3f8534e960dbd000, + 0xbfecccccccccccee, 0x3f8534e960dbc000, 0x0, 0x0, - 0xbfecccccccccccd4, 0x3f8261014cf1e000, + 0xbfecccccccccccdc, 0x3f8261014cf1d000, 0x0, 0x0, - 0xbfecccccccccccf9, 0x3f7f1a3dc8a36000, + 0xbfecccccccccccc4, 0x3f7f1a3dc8a3a000, 0x0, 0x0, - 0xbfeccccccccccd05, 0x3f7972828f528000, + 0xbfeccccccccccd06, 0x3f7972828f528000, 0x0, 0x0, - 0xbfeccccccccccd05, 0x3f73cacf2f57c000, + 0xbfeccccccccccccf, 0x3f73cacf2f578000, 0x0, 0x0, - 0xbfeccccccccccd31, 0x3f6c4643d4488000, + 0xbfecccccccccccb1, 0x3f6c4643d4498000, 0x0, 0x0, - 0xbfeccccccccccd4c, 0x3f60f6f202620000, + 0xbfeccccccccccd7b, 0x3f60f6f202620000, 0x0, 0x0, - 0xbfecccccccccce3c, 0x3f469e95afe00000, + 0xbfeccccccccccd7b, 0x3f469e95afe00000, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbf469e95afe00000, + 0xbfecccccccccccab, 0xbf469e95afe00000, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbf60f6f202620000, + 0xbfecccccccccccd3, 0xbf60f6f202620000, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbf6c4643d4490000, + 0xbfeccccccccccccd, 0xbf6c4643d4488000, 0x0, 0x0, - 0xbfeccccccccccca8, 0xbf73cacf2f580000, + 0xbfeccccccccccc76, 0xbf73cacf2f578000, 0x0, 0x0, - 0xbfecccccccccccca, 0xbf7972828f528000, + 0xbfecccccccccccac, 0xbf7972828f528000, 0x0, 0x0, - 0xbfecccccccccccc1, 0xbf7f1a3dc8a34000, + 0xbfecccccccccccb4, 0xbf7f1a3dc8a36000, 0x0, 0x0, - 0xbfecccccccccccdf, 0xbf8261014cf1c000, + 0xbfeccccccccccce0, 0xbf8261014cf1c000, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbf8534e960dbb000, + 0xbfecccccccccccd3, 0xbf8534e960dbc000, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbf8808d7ff68b000, + 0xbfecccccccccccb9, 0xbf8808d7ff68c000, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbf8adcce07fa3000, + 0xbfeccccccccccccc, 0xbf8adcce07fa4000, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbf8db0cc59fa9800, + 0xbfecccccccccccd2, 0xbf8db0cc59fa9800, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbf904269ea6f5000, + 0xbfecccccccccccba, 0xbf904269ea6f4800, 0x0, 0x0, - 0xbfecccccccccccb0, 0xbf91ac72ac132800, + 0xbfecccccccccccba, 0xbf91ac72ac132400, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbf931680e1af0c00, + 0xbfecccccccccccce, 0xbf931680e1af0800, 0x0, 0x0, - 0xbfecccccccccccda, 0xbf948094fb0fdc00, + 0xbfeccccccccccce2, 0xbf948094fb0fd800, 0x0, 0x0, - 0xbfecccccccccccf6, 0xbf95eaaf6809e000, + 0xbfeccccccccccc9e, 0xbf95eaaf6809dc00, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbf9754d098790c00, + 0xbfeccccccccccc9c, 0xbf9754d09878f800, 0x0, 0x0, - 0xbfeccccccccccca4, 0xbf98bef8fc41b400, + 0xbfecccccccccccc4, 0xbf98bef8fc41bc00, 0x0, 0x0, - 0xbfeccccccccccced, 0xbf9a292903513c00, + 0xbfecccccccccccb5, 0xbf9a292903514200, 0x0, 0x0, - 0xbfecccccccccccad, 0xbf9b93611d9e3e00, + 0xbfecccccccccccc9, 0xbf9b93611d9e4a00, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbf9cfda1bb296a00, + 0xbfeccccccccccca8, 0xbf9cfda1bb296c00, 0x0, 0x0, - 0xbfeccccccccccce9, 0xbf9e67eb4bfdea00, + 0xbfecccccccccccd8, 0xbf9e67eb4bfdea00, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbf9fd23e40320400, + 0xbfecccccccccccdb, 0xbf9fd23e40320000, 0x0, 0x0, - 0xbfeccccccccccce7, 0xbfa09e4d83f3c300, + 0xbfeccccccccccc97, 0xbfa09e4d83f3be00, 0x0, 0x0, - 0xbfeccccccccccca1, 0xbfa1538109a63200, + 0xbfeccccccccccca1, 0xbfa1538109a62e00, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfa208b9e94db000, + 0xbfecccccccccccd0, 0xbfa208b9e94db000, 0x0, 0x0, - 0xbfecccccccccccae, 0xbfa2bdf85b0e2600, + 0xbfecccccccccccc9, 0xbfa2bdf85b0e2c00, 0x0, 0x0, - 0xbfecccccccccccb5, 0xbfa3733c97127500, + 0xbfecccccccccccb7, 0xbfa3733c97127b00, 0x0, 0x0, - 0xbfecccccccccccba, 0xbfa42886d58c9c00, + 0xbfecccccccccccd4, 0xbfa42886d58c9c00, 0x0, 0x0, - 0xbfecccccccccccb9, 0xbfa4ddd74eb60300, + 0xbfecccccccccccc2, 0xbfa4ddd74eb60700, 0x0, 0x0, - 0xbfecccccccccccac, 0xbfa5932e3acfd400, + 0xbfeccccccccccc92, 0xbfa5932e3acfdb00, 0x0, 0x0, - 0xbfeccccccccccc10, 0xbfa6488bd2233200, + 0xbfeccccccccccd40, 0xbfa6488bd2233b00, 0x0, 0x0, - 0xbfeccccccccccd06, 0xbfa6fdf04d016d00, + 0xbfeccccccccccd0d, 0xbfa6fdf04d017400, 0x0, 0x0, - 0xbfeccccccccccc9c, 0xbfa7b35be3c48b00, + 0xbfeccccccccccce6, 0xbfa7b35be3c49400, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbfa868cececf3300, + 0xbfecccccccccccd1, 0xbfa868cececf3200, 0x0, 0x0, - 0xbfecccccccccccae, 0xbfa91e49468d1d00, + 0xbfecccccccccccc7, 0xbfa91e49468d2300, 0x0, 0x0, - 0xbfeccccccccccce1, 0xbfa9d3cb83738800, + 0xbfeccccccccccd19, 0xbfa9d3cb83738900, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbfaa8955be012500, + 0xbfeccccccccccccd, 0xbfaa8955be012780, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfab3ee82ebeb100, + 0xbfeccccccccccce3, 0xbfab3ee82ebeaf00, 0x0, 0x0, - 0xbfecccccccccccac, 0xbfabf4830e3ef680, + 0xbfecccccccccccdf, 0xbfabf4830e3efc00, 0x0, 0x0, - 0xbfecccccccccccde, 0xbfacaa26951f5800, + 0xbfecccccccccccf2, 0xbfacaa26951f5580, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfad5fd2fc07d180, + 0xbfecccccccccccc2, 0xbfad5fd2fc07d080, 0x0, 0x0, - 0xbfecccccccccccb0, 0xbfae15887bab7d00, + 0xbfecccccccccccde, 0xbfae15887bab7a00, 0x0, 0x0, - 0xbfeccccccccccca8, 0xbfaecb474cc8ab80, + 0xbfecccccccccccba, 0xbfaecb474cc8ae00, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfaf810fa8295980, + 0xbfecccccccccccc0, 0xbfaf810fa8295880, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfb01b70e3519d80, + 0xbfecccccccccccc0, 0xbfb01b70e3519e00, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbfb0765ef08c1e80, + 0xbfeccccccccccce8, 0xbfb0765ef08c1f80, 0x0, 0x0, - 0xbfeccccccccccc9c, 0xbfb0d152183b58c0, + 0xbfecccccccccccbe, 0xbfb0d152183b5840, 0x0, 0x0, - 0xbfecccccccccccdb, 0xbfb12c4a76dcc900, + 0xbfeccccccccccd35, 0xbfb12c4a76dccd80, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfb1874828f46d80, + 0xbfecccccccccccca, 0xbfb1874828f46d00, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbfb1e24b4b0ce000, + 0xbfecccccccccccc0, 0xbfb1e24b4b0cdf40, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfb23d53f9b77e80, + 0xbfecccccccccccea, 0xbfb23d53f9b77f80, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfb29862518c94c0, + 0xbfecccccccccccf2, 0xbfb29862518c9580, 0x0, 0x0, - 0xbfeccccccccccc9d, 0xbfb2f3766f2b7600, + 0xbfecccccccccccd6, 0xbfb2f3766f2b7500, 0x0, 0x0, - 0xbfeccccccccccc86, 0xbfb34e906f3aa680, + 0xbfecccccccccccee, 0xbfb34e906f3aa7c0, 0x0, 0x0, - 0xbfeccccccccccc6a, 0xbfb3a9b06e680480, + 0xbfecccccccccccde, 0xbfb3a9b06e680700, 0x0, 0x0, - 0xbfeccccccccccc9b, 0xbfb404d68968e2c0, + 0xbfecccccccccccde, 0xbfb404d68968e2c0, 0x0, 0x0, - 0xbfeccccccccccc9c, 0xbfb46002dcfa3a80, + 0xbfecccccccccccda, 0xbfb46002dcfa3b00, 0x0, 0x0, - 0xbfecccccccccccb9, 0xbfb4bb3585e0bb40, + 0xbfecccccccccccb7, 0xbfb4bb3585e0bb40, 0x0, 0x0, - 0xbfeccccccccccca1, 0xbfb5166ea0e90300, + 0xbfecccccccccccaf, 0xbfb5166ea0e904c0, 0x0, 0x0, - 0xbfecccccccccccad, 0xbfb571ae4ae7bf80, + 0xbfeccccccccccd01, 0xbfb571ae4ae7c0c0, 0x0, 0x0, - 0xbfeccccccccccca4, 0xbfb5ccf4a0b9ce40, + 0xbfecccccccccccbe, 0xbfb5ccf4a0b9cec0, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfb62841bf445d40, + 0xbfecccccccccccb4, 0xbfb62841bf445f40, 0x0, 0x0, - 0xbfeccccccccccb91, 0xbfb68395c3751ec0, + 0xbfeccccccccccd36, 0xbfb68395c3751e40, 0x0, 0x0, - 0xbfeccccccccccc87, 0xbfb6def0ca426380, + 0xbfeccccccccccd08, 0xbfb6def0ca425e80, 0x0, 0x0, - 0xbfeccccccccccca1, 0xbfb73a52f0ab3540, + 0xbfecccccccccccbe, 0xbfb73a52f0ab33c0, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfb795bc53b79980, + 0xbfeccccccccccccc, 0xbfb795bc53b79980, 0x0, 0x0, - 0xbfeccccccccccd03, 0xbfb7f12d10789ec0, + 0xbfecccccccccccca, 0xbfb7f12d10789f80, 0x0, 0x0, - 0xbfecccccccccccf1, 0xbfb84ca544088b40, + 0xbfecccccccccccf0, 0xbfb84ca544088bc0, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbfb8a8250b8b0100, + 0xbfecccccccccccd2, 0xbfb8a8250b8b0100, 0x0, 0x0, - 0xbfeccccccccccce5, 0xbfb903ac842d1e00, + 0xbfecccccccccccb8, 0xbfb903ac842d2140, 0x0, 0x0, - 0xbfecccccccccccf4, 0xbfb95f3bcb25b340, + 0xbfeccccccccccd01, 0xbfb95f3bcb25b0c0, 0x0, 0x0, - 0xbfecccccccccccae, 0xbfb9bad2fdb55000, + 0xbfeccccccccccca1, 0xbfb9bad2fdb54d80, 0x0, 0x0, - 0xbfecccccccccccb2, 0xbfba167239267e20, + 0xbfecccccccccccb6, 0xbfba167239267fa0, 0x0, 0x0, - 0xbfecccccccccccb3, 0xbfba72199acde5c0, + 0xbfeccccccccccccf, 0xbfba72199acde580, 0x0, 0x0, - 0xbfecccccccccccfb, 0xbfbacdc9400a6160, + 0xbfecccccccccccd0, 0xbfbacdc9400a6240, 0x0, 0x0, - 0xbfeccccccccccce9, 0xbfbb298146453d40, + 0xbfecccccccccccec, 0xbfbb298146453e60, 0x0, 0x0, - 0xbfeccccccccccd16, 0xbfbb8541caf24aa0, + 0xbfeccccccccccca2, 0xbfbb8541caf249e0, 0x0, 0x0, - 0xbfeccccccccccd02, 0xbfbbe10aeb900e80, + 0xbfecccccccccccc1, 0xbfbbe10aeb900f80, 0x0, 0x0, - 0xbfecccccccccccfb, 0xbfbc3cdcc5a7e780, + 0xbfecccccccccccb2, 0xbfbc3cdcc5a7e920, 0x0, 0x0, - 0xbfecccccccccccbc, 0xbfbc98b776ce37a0, + 0xbfecccccccccccac, 0xbfbc98b776ce3a80, 0x0, 0x0, - 0xbfeccccccccccc41, 0xbfbcf49b1ca28460, + 0xbfecccccccccccd3, 0xbfbcf49b1ca28540, 0x0, 0x0, - 0xbfecccccccccccbb, 0xbfbd5087d4cf9ec0, + 0xbfecccccccccccbf, 0xbfbd5087d4cf9ec0, 0x0, 0x0, - 0xbfeccccccccccc79, 0xbfbdac7dbd0bcd80, + 0xbfecccccccccccb6, 0xbfbdac7dbd0bcf60, 0x0, 0x0, - 0xbfecccccccccccf6, 0xbfbe087cf318fce0, + 0xbfecccccccccccd5, 0xbfbe087cf318fca0, 0x0, 0x0, - 0xbfeccccccccccc47, 0xbfbe648594c4ca00, + 0xbfecccccccccccd4, 0xbfbe648594c4ce40, 0x0, 0x0, - 0xbfecccccccccccee, 0xbfbec097bfe8d6e0, + 0xbfecccccccccccd2, 0xbfbec097bfe8d8c0, 0x0, 0x0, - 0xbfecccccccccccd4, 0xbfbf1cb3926ab7e0, + 0xbfecccccccccccdc, 0xbfbf1cb3926ac0c0, 0x0, 0x0, - 0xbfecccccccccccfb, 0xbfbf78d92a3c6a40, + 0xbfeccccccccccc9e, 0xbfbf78d92a3c6900, 0x0, 0x0, - 0xbfecccccccccccf4, 0xbfbfd508a55c09a0, + 0xbfecccccccccccb6, 0xbfbfd508a55c1260, 0x0, 0x0, - 0xbfecccccccccccde, 0xbfc018a110ea4480, + 0xbfeccccccccccccd, 0xbfc018a110ea4500, 0x0, 0x0, - 0xbfeccccccccccd75, 0xbfc046c2dedea380, + 0xbfecccccccccccde, 0xbfc046c2dedea800, 0x0, 0x0, - 0xbfeccccccccccca3, 0xbfc074e9cb9d5fb0, + 0xbfeccccccccccce6, 0xbfc074e9cb9d60d0, 0x0, 0x0, - 0xbfeccccccccccd88, 0xbfc0a315e63f17f0, + 0xbfecccccccccccc4, 0xbfc0a315e63f19f0, 0x0, 0x0, - 0xbfeccccccccccd19, 0xbfc0d1473de31cf0, + 0xbfeccccccccccd02, 0xbfc0d1473de31c90, 0x0, 0x0, - 0xbfeccccccccccd1b, 0xbfc0ff7de1af5010, + 0xbfeccccccccccd36, 0xbfc0ff7de1af5480, 0x0, 0x0, - 0xbfecccccccccccb0, 0xbfc12db9e0d07120, + 0xbfeccccccccccd48, 0xbfc12db9e0d07390, 0x0, 0x0, - 0xbfeccccccccccd4f, 0xbfc15bfb4a79f440, + 0xbfecccccccccccce, 0xbfc15bfb4a79f280, 0x0, 0x0, - 0xbfeccccccccccca0, 0xbfc18a422de63ff0, + 0xbfecccccccccccc2, 0xbfc18a422de63f10, 0x0, 0x0, - 0xbfeccccccccccd1f, 0xbfc1b88e9a56bc70, + 0xbfecccccccccccda, 0xbfc1b88e9a56bc80, 0x0, 0x0, - 0xbfecccccccccccb9, 0xbfc1e6e09f13dd60, + 0xbfecccccccccccb9, 0xbfc1e6e09f13dda0, 0x0, 0x0, - 0xbfecccccccccccdb, 0xbfc215384b6d41e0, + 0xbfecccccccccccd1, 0xbfc215384b6d4010, 0x0, 0x0, - 0xbfecccccccccccf3, 0xbfc24395aeb9b8f0, + 0xbfecccccccccccda, 0xbfc24395aeb9b8c0, 0x0, 0x0, - 0xbfeccccccccccc85, 0xbfc271f8d8576dc0, + 0xbfecccccccccccf8, 0xbfc271f8d8576d30, 0x0, 0x0, - 0xbfecccccccccccb1, 0xbfc2a061d7abe5b0, + 0xbfeccccccccccd0c, 0xbfc2a061d7abe550, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbfc2ced0bc242510, + 0xbfecccccccccccbe, 0xbfc2ced0bc242600, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfc2fd459534c110, + 0xbfecccccccccccd0, 0xbfc2fd459534c190, 0x0, 0x0, - 0xbfecccccccccccff, 0xbfc32bc07259ed40, + 0xbfecccccccccccde, 0xbfc32bc07259edb0, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbfc35a4163179c90, + 0xbfeccccccccccc9e, 0xbfc35a4163179be0, 0x0, 0x0, - 0xbfeccccccccccd39, 0xbfc388c876f987c0, + 0xbfecccccccccccca, 0xbfc388c876f98860, 0x0, 0x0, - 0xbfeccccccccccc99, 0xbfc3b755bd9357b0, + 0xbfecccccccccccc3, 0xbfc3b755bd935740, 0x0, 0x0, - 0xbfeccccccccccd2a, 0xbfc3e5e94680a6e0, + 0xbfeccccccccccc2e, 0xbfc3e5e94680a760, 0x0, 0x0, - 0xbfecccccccccccb1, 0xbfc4148321652160, + 0xbfecccccccccccc4, 0xbfc41483216520c0, 0x0, 0x0, - 0xbfeccccccccccceb, 0xbfc443235dec9bd0, + 0xbfecccccccccccbb, 0xbfc443235dec9b20, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfc471ca0bcb1f70, + 0xbfecccccccccccea, 0xbfc471ca0bcb1ff0, 0x0, 0x0, - 0xbfecccccccccccb6, 0xbfc4a0773abd0f90, + 0xbfeccccccccccca3, 0xbfc4a0773abd0f50, 0x0, 0x0, - 0xbfecccccccccccbf, 0xbfc4cf2afa872f00, + 0xbfecccccccccccea, 0xbfc4cf2afa872f40, 0x0, 0x0, - 0xbfecccccccccccb5, 0xbfc4fde55af6c350, + 0xbfecccccccccccb2, 0xbfc4fde55af6c320, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfc52ca66be1a080, + 0xbfecccccccccccce, 0xbfc52ca66be1a0a0, 0x0, 0x0, - 0xbfecccccccccccd7, 0xbfc55b6e3d264990, + 0xbfecccccccccccce, 0xbfc55b6e3d264940, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfc58a3cdeabffc0, + 0xbfecccccccccccee, 0xbfc58a3cdeac0010, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfc5b9126062da60, + 0xbfeccccccccccce7, 0xbfc5b9126062d950, 0x0, 0x0, - 0xbfeccccccccccce5, 0xbfc5e7eed243ddf0, + 0xbfecccccccccccb2, 0xbfc5e7eed243dd50, 0x0, 0x0, - 0xbfeccccccccccd15, 0xbfc616d244511520, + 0xbfecccccccccccc6, 0xbfc616d244511530, 0x0, 0x0, - 0xbfecccccccccccf1, 0xbfc645bcc695a4f0, + 0xbfecccccccccccd6, 0xbfc645bcc695a490, 0x0, 0x0, - 0xbfeccccccccccce9, 0xbfc674ae6925e1e0, + 0xbfecccccccccccdc, 0xbfc674ae6925e080, 0x0, 0x0, - 0xbfecccccccccccac, 0xbfc6a3a73c1f6d40, + 0xbfeccccccccccd04, 0xbfc6a3a73c1f6b50, 0x0, 0x0, - 0xbfeccccccccccd7c, 0xbfc6d2a74fa94200, + 0xbfeccccccccccc28, 0xbfc6d2a74fa94480, 0x0, 0x0, - 0xbfeccccccccccd49, 0xbfc701aeb3f3d8b0, + 0xbfeccccccccccb7a, 0xbfc701aeb3f3dad0, 0x0, 0x0, - 0xbfeccccccccccca5, 0xbfc730bd793940c0, + 0xbfeccccccccccd28, 0xbfc730bd793940e0, 0x0, 0x0, - 0xbfecccccccccccf4, 0xbfc75fd3afbd1600, + 0xbfecccccccccccd4, 0xbfc75fd3afbd1660, 0x0, 0x0, - 0xbfecccccccccccce, 0xbfc78ef167ccc520, + 0xbfecccccccccccfc, 0xbfc78ef167ccc5c0, 0x0, 0x0, - 0xbfecccccccccccb0, 0xbfc7be16b1bf8c60, + 0xbfecccccccccccca, 0xbfc7be16b1bf8c60, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfc7ed439df692a0, + 0xbfecccccccccccc6, 0xbfc7ed439df69360, 0x0, 0x0, - 0xbfeccccccccccd0e, 0xbfc81c783cdd0b60, + 0xbfeccccccccccccc, 0xbfc81c783cdd0a50, 0x0, 0x0, - 0xbfeccccccccccd53, 0xbfc84bb49ee83c80, + 0xbfecccccccccccd2, 0xbfc84bb49ee83ba0, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfc87af8d497a750, + 0xbfeccccccccccce5, 0xbfc87af8d497a660, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfc8aa44ee751910, + 0xbfeccccccccccce0, 0xbfc8aa44ee751910, 0x0, 0x0, - 0xbfeccccccccccca6, 0xbfc8d998fd14c2d8, + 0xbfecccccccccccd4, 0xbfc8d998fd14c2e0, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbfc908f511155430, + 0xbfeccccccccccce0, 0xbfc908f511155390, 0x0, 0x0, - 0xbfecccccccccccb0, 0xbfc938593b2011f0, + 0xbfecccccccccccaa, 0xbfc938593b2011f0, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfc967c58be8efb0, + 0xbfecccccccccccc4, 0xbfc967c58be8ef40, 0x0, 0x0, - 0xbfecccccccccccba, 0xbfc9973a142ea900, + 0xbfecccccccccccfe, 0xbfc9973a142ea890, 0x0, 0x0, - 0xbfeccccccccccd35, 0xbfc9c6b6e4bad908, + 0xbfecccccccccccde, 0xbfc9c6b6e4bad8e0, 0x0, 0x0, - 0xbfecccccccccccab, 0xbfc9f63c0e621810, + 0xbfecccccccccccd8, 0xbfc9f63c0e621860, 0x0, 0x0, - 0xbfecccccccccccb0, 0xbfca25c9a20408f0, + 0xbfecccccccccccee, 0xbfca25c9a2040988, 0x0, 0x0, - 0xbfeccccccccccce3, 0xbfca555fb08b83f0, + 0xbfeccccccccccce6, 0xbfca555fb08b8470, 0x0, 0x0, - 0xbfeccccccccccd01, 0xbfca84fe4aeea060, + 0xbfeccccccccccccf, 0xbfca84fe4aee9f10, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbfcab4a5822ed480, + 0xbfeccccccccccccb, 0xbfcab4a5822ed5c0, 0x0, 0x0, - 0xbfecccccccccccf3, 0xbfcae455675911e0, + 0xbfecccccccccccde, 0xbfcae45567591250, 0x0, 0x0, - 0xbfeccccccccccce0, 0xbfcb140e0b85daf0, + 0xbfecccccccccccbf, 0xbfcb140e0b85db30, 0x0, 0x0, - 0xbfeccccccccccd2b, 0xbfcb43cf7fd95d10, + 0xbfeccccccccccce9, 0xbfcb43cf7fd95c70, 0x0, 0x0, - 0xbfeccccccccccc87, 0xbfcb7399d5838ac8, + 0xbfeccccccccccce8, 0xbfcb7399d5838b10, 0x0, 0x0, - 0xbfeccccccccccc90, 0xbfcba36d1dc03cf0, + 0xbfecccccccccccbb, 0xbfcba36d1dc03d40, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfcbd34969d73fe0, + 0xbfecccccccccccc8, 0xbfcbd34969d74010, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfcc032ecb1c7868, + 0xbfeccccccccccca9, 0xbfcc032ecb1c7900, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfcc331d52eff9c0, + 0xbfecccccccccccbd, 0xbfcc331d52effaf8, 0x0, 0x0, - 0xbfeccccccccccce9, 0xbfcc631512be23e8, + 0xbfecccccccccccd9, 0xbfcc631512be2510, 0x0, 0x0, - 0xbfeccccccccccc8f, 0xbfcc93161bffb928, + 0xbfecccccccccccf0, 0xbfcc93161bffb910, 0x0, 0x0, - 0xbfeccccccccccc4a, 0xbfccc3208039f8e8, + 0xbfeccccccccccdf4, 0xbfccc3208039fa70, 0x0, 0x0, - 0xbfeccccccccccc9e, 0xbfccf33450fed048, + 0xbfeccccccccccd46, 0xbfccf33450fecef0, 0x0, 0x0, - 0xbfeccccccccccca8, 0xbfcd23519fecc6b0, + 0xbfecccccccccccc3, 0xbfcd23519fecc630, 0x0, 0x0, - 0xbfecccccccccccbf, 0xbfcd53787eaf48b8, + 0xbfecccccccccccd5, 0xbfcd53787eaf4890, 0x0, 0x0, - 0xbfecccccccccccdb, 0xbfcd83a8fefeab58, + 0xbfecccccccccccc1, 0xbfcd83a8fefeab38, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbfcdb3e332a04ee0, + 0xbfeccccccccccce4, 0xbfcdb3e332a04e78, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbfcde4272b66b648, + 0xbfeccccccccccccd, 0xbfcde4272b66b6c8, 0x0, 0x0, - 0xbfecccccccccccc1, 0xbfce1474fb31a940, + 0xbfeccccccccccce6, 0xbfce1474fb31a9b8, 0x0, 0x0, - 0xbfeccccccccccca6, 0xbfce44ccb3ee49e8, + 0xbfecccccccccccdc, 0xbfce44ccb3ee49d0, 0x0, 0x0, - 0xbfecccccccccccdd, 0xbfce752e67973350, + 0xbfecccccccccccc4, 0xbfce752e679734c8, 0x0, 0x0, - 0xbfecccccccccccbc, 0xbfcea59a28349e58, + 0xbfeccccccccccccd, 0xbfcea59a28349e28, 0x0, 0x0, - 0xbfecccccccccccdb, 0xbfced61007dc6cd0, + 0xbfecccccccccccca, 0xbfced61007dc6d40, 0x0, 0x0, - 0xbfecccccccccccbb, 0xbfcf069018b25828, + 0xbfecccccccccccdf, 0xbfcf069018b258b0, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfcf371a6ce80390, + 0xbfeccccccccccce1, 0xbfcf371a6ce80378, 0x0, 0x0, - 0xbfecccccccccccee, 0xbfcf67af16bd1c78, + 0xbfecccccccccccdb, 0xbfcf67af16bd1ca0, 0x0, 0x0, - 0xbfecccccccccccee, 0xbfcf984e287f77d8, + 0xbfeccccccccccce1, 0xbfcf984e287f7660, 0x0, 0x0, - 0xbfecccccccccccb6, 0xbfcfc8f7b48b3008, + 0xbfeccccccccccce3, 0xbfcfc8f7b48b2ff8, 0x0, 0x0, - 0xbfeccccccccccca3, 0xbfcff9abcd4ac1a0, + 0xbfecccccccccccc0, 0xbfcff9abcd4ac008, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfd01535429b9480, + 0xbfecccccccccccec, 0xbfd01535429b9420, 0x0, 0x0, - 0xbfecccccccccccba, 0xbfd02d99f76c0060, + 0xbfecccccccccccd4, 0xbfd02d99f76c0038, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbfd046040e61d164, + 0xbfecccccccccccd0, 0xbfd046040e61d184, 0x0, 0x0, - 0xbfecccccccccccaf, 0xbfd05e7390cf9f9c, + 0xbfecccccccccccda, 0xbfd05e7390cfa030, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfd076e8880f8198, + 0xbfecccccccccccbd, 0xbfd076e8880f81e4, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfd08f62fd831a34, + 0xbfecccccccccccd9, 0xbfd08f62fd831a18, 0x0, 0x0, - 0xbfecccccccccccdd, 0xbfd0a7e2fa93a5f8, + 0xbfeccccccccccc7c, 0xbfd0a7e2fa93a568, 0x0, 0x0, - 0xbfeccccccccccce4, 0xbfd0c06888b20cb4, + 0xbfeccccccccccc90, 0xbfd0c06888b20c28, 0x0, 0x0, - 0xbfecccccccccccbf, 0xbfd0d8f3b156f1f4, + 0xbfecccccccccccd7, 0xbfd0d8f3b156f1ec, 0x0, 0x0, - 0xbfeccccccccccced, 0xbfd0f1847e02c328, + 0xbfecccccccccccdb, 0xbfd0f1847e02c390, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbfd10a1af83dc890, + 0xbfecccccccccccb8, 0xbfd10a1af83dc90c, 0x0, 0x0, - 0xbfeccccccccccd04, 0xbfd122b72998322c, + 0xbfecccccccccccb5, 0xbfd122b7299832d8, 0x0, 0x0, - 0xbfeccccccccccd01, 0xbfd13b591baa2d44, + 0xbfecccccccccccde, 0xbfd13b591baa2d54, 0x0, 0x0, - 0xbfeccccccccccd39, 0xbfd15400d813eeb4, + 0xbfecccccccccccee, 0xbfd15400d813ee98, 0x0, 0x0, - 0xbfeccccccccccd8a, 0xbfd16cae687dc4d4, + 0xbfeccccccccccdc9, 0xbfd16cae687dc608, 0x0, 0x0, - 0xbfeccccccccccc7f, 0xbfd18561d6982cb8, + 0xbfeccccccccccd39, 0xbfd18561d6982c60, 0x0, 0x0, - 0xbfecccccccccccb3, 0xbfd19e1b2c1bda58, + 0xbfeccccccccccca4, 0xbfd19e1b2c1bda6c, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfd1b6da72c9ce88, + 0xbfecccccccccccce, 0xbfd1b6da72c9ce74, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbfd1cf9fb46b6630, + 0xbfecccccccccccf3, 0xbfd1cf9fb46b66e8, 0x0, 0x0, - 0xbfeccccccccccce0, 0xbfd1e86afad26bc8, + 0xbfecccccccccccaa, 0xbfd1e86afad26bb8, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfd2013c4fd9262c, + 0xbfecccccccccccad, 0xbfd2013c4fd925fc, 0x0, 0x0, - 0xbfeccccccccccce2, 0xbfd21a13bd6269e0, + 0xbfecccccccccccbe, 0xbfd21a13bd626a0c, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbfd232f14d59ad00, + 0xbfeccccccccccca0, 0xbfd232f14d59ac34, 0x0, 0x0, - 0xbfeccccccccccccf, 0xbfd24bd509b31354, + 0xbfecccccccccccc8, 0xbfd24bd509b313bc, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbfd264befc6b8584, + 0xbfecccccccccccbc, 0xbfd264befc6b8550, 0x0, 0x0, - 0xbfecccccccccccd7, 0xbfd27daf2f88bcd0, + 0xbfecccccccccccbe, 0xbfd27daf2f88bc5c, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbfd296a5ad195758, + 0xbfeccccccccccce4, 0xbfd296a5ad19576c, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbfd2afa27f34ead4, + 0xbfecccccccccccc7, 0xbfd2afa27f34e9f0, 0x0, 0x0, - 0xbfecccccccccccdf, 0xbfd2c8a5affc1148, + 0xbfecccccccccccd6, 0xbfd2c8a5affc10d8, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbfd2e1af49988170, + 0xbfecccccccccccf0, 0xbfd2e1af49988110, 0x0, 0x0, - 0xbfeccccccccccc7b, 0xbfd2fabf563d1c00, + 0xbfeccccccccccd2f, 0xbfd2fabf563d1c0c, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfd313d5e025fd64, + 0xbfeccccccccccd27, 0xbfd313d5e025fdc0, 0x0, 0x0, - 0xbfecccccccccccea, 0xbfd32cf2f19894fc, + 0xbfecccccccccccdd, 0xbfd32cf2f19894c8, 0x0, 0x0, - 0xbfecccccccccccb3, 0xbfd3461694e3af98, + 0xbfecccccccccccd1, 0xbfd3461694e3afe0, 0x0, 0x0, - 0xbfecccccccccccf5, 0xbfd35f40d45f90b0, + 0xbfecccccccccccba, 0xbfd35f40d45f903c, 0x0, 0x0, - 0xbfecccccccccccb5, 0xbfd37871ba6e0038, + 0xbfecccccccccccba, 0xbfd37871ba6e002c, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbfd391a9517a5fe4, + 0xbfecccccccccccb5, 0xbfd391a9517a5fc4, 0x0, 0x0, - 0xbfecccccccccccb5, 0xbfd3aae7a3f9bcfc, + 0xbfecccccccccccc9, 0xbfd3aae7a3f9bd0c, 0x0, 0x0, - 0xbfecccccccccccb8, 0xbfd3c42cbc6ae328, + 0xbfecccccccccccd9, 0xbfd3c42cbc6ae3cc, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbfd3dd78a5567020, + 0xbfecccccccccccea, 0xbfd3dd78a5566fa0, 0x0, 0x0, - 0xbfeccccccccccce2, 0xbfd3f6cb694ee398, + 0xbfecccccccccccc2, 0xbfd3f6cb694ee398, 0x0, 0x0, - 0xbfecccccccccccf4, 0xbfd4102512f0b714, + 0xbfecccccccccccf5, 0xbfd4102512f0b6bc, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfd42985ace26cfc, + 0xbfecccccccccccd6, 0xbfd42985ace26d90, 0x0, 0x0, - 0xbfecccccccccccfd, 0xbfd442ed41d4a864, + 0xbfecccccccccccda, 0xbfd442ed41d4a8d8, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfd45c5bdc823d40, + 0xbfecccccccccccca, 0xbfd45c5bdc823d20, 0x0, 0x0, - 0xbfeccccccccccd20, 0xbfd475d187b04374, + 0xbfeccccccccccd02, 0xbfd475d187b04380, 0x0, 0x0, - 0xbfeccccccccccd1b, 0xbfd48f4e4e2e2d14, + 0xbfeccccccccccd1e, 0xbfd48f4e4e2e2d74, 0x0, 0x0, - 0xbfeccccccccccceb, 0xbfd4a8d23ad5de24, + 0xbfeccccccccccd14, 0xbfd4a8d23ad5dcd8, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfd4c25d588bafc8, + 0xbfeccccccccccccc, 0xbfd4c25d588bb01c, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfd4dbefb23e9fb0, + 0xbfecccccccccccbd, 0xbfd4dbefb23ea008, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbfd4f58952e84cf8, + 0xbfeccccccccccc92, 0xbfd4f58952e84cc0, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfd50f2a458d1518, + 0xbfecccccccccccbf, 0xbfd50f2a458d1570, 0x0, 0x0, - 0xbfecccccccccccad, 0xbfd528d2953c2d14, + 0xbfeccccccccccccf, 0xbfd528d2953c2d08, 0x0, 0x0, - 0xbfecccccccccccdb, 0xbfd542824d0fad1c, + 0xbfeccccccccccce7, 0xbfd542824d0fad3c, 0x0, 0x0, - 0xbfeccccccccccc98, 0xbfd55c39782cad54, + 0xbfecccccccccccd7, 0xbfd55c39782cad68, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfd575f821c3562c, + 0xbfeccccccccccd0b, 0xbfd575f821c355a0, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfd58fbe550ef7d0, + 0xbfecccccccccccee, 0xbfd58fbe550ef7d4, 0x0, 0x0, - 0xbfeccccccccccce7, 0xbfd5a98c1d561e6c, + 0xbfecccccccccccdb, 0xbfd5a98c1d561e84, 0x0, 0x0, - 0xbfecccccccccccdd, 0xbfd5c36185eaa90c, + 0xbfecccccccccccaa, 0xbfd5c36185eaa8c0, 0x0, 0x0, - 0xbfeccccccccccd08, 0xbfd5dd3e9a29dc74, + 0xbfecccccccccccd9, 0xbfd5dd3e9a29dc90, 0x0, 0x0, - 0xbfecccccccccccce, 0xbfd5f723657c7d0c, + 0xbfecccccccccccce, 0xbfd5f723657c7d54, 0x0, 0x0, - 0xbfecccccccccccfa, 0xbfd6110ff356e178, + 0xbfeccccccccccce7, 0xbfd6110ff356e158, 0x0, 0x0, - 0xbfeccccccccccc5e, 0xbfd62b044f390906, + 0xbfeccccccccccc5c, 0xbfd62b044f390806, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfd6450084aeb2a4, + 0xbfeccccccccccc8f, 0xbfd6450084aeb27a, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfd65f049f4f75d0, + 0xbfeccccccccccce4, 0xbfd65f049f4f75d4, 0x0, 0x0, - 0xbfeccccccccccce3, 0xbfd67910aabed3fa, + 0xbfecccccccccccc6, 0xbfd67910aabed41c, 0x0, 0x0, - 0xbfecccccccccccf4, 0xbfd69324b2ac52f6, + 0xbfecccccccccccbb, 0xbfd69324b2ac5228, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbfd6ad40c2d391d2, + 0xbfecccccccccccf1, 0xbfd6ad40c2d39200, 0x0, 0x0, - 0xbfeccccccccccd0d, 0xbfd6c764e6fc62d0, + 0xbfecccccccccccbf, 0xbfd6c764e6fc6380, 0x0, 0x0, - 0xbfeccccccccccce7, 0xbfd6e1912afadf9c, + 0xbfeccccccccccce4, 0xbfd6e1912afadf8c, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfd6fbc59aaf8138, + 0xbfecccccccccccec, 0xbfd6fbc59aaf817c, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfd716024207395a, + 0xbfeccccccccccccf, 0xbfd7160242073934, 0x0, 0x0, - 0xbfeccccccccccc8e, 0xbfd730472cfb868c, + 0xbfeccccccccccd03, 0xbfd730472cfb8650, 0x0, 0x0, - 0xbfecccccccccccec, 0xbfd74a9467929030, + 0xbfecccccccccccbf, 0xbfd74a9467929090, 0x0, 0x0, - 0xbfeccccccccccc7d, 0xbfd764e9fddf3d4c, + 0xbfeccccccccccce9, 0xbfd764e9fddf3ca0, 0x0, 0x0, - 0xbfecccccccccccbb, 0xbfd77f47fc014a58, + 0xbfeccccccccccd27, 0xbfd77f47fc014990, 0x0, 0x0, - 0xbfeccccccccccc9c, 0xbfd799ae6e25653c, + 0xbfecccccccccccb6, 0xbfd799ae6e256420, 0x0, 0x0, - 0xbfeccccccccccd0e, 0xbfd7b41d60853fd6, + 0xbfecccccccccccc1, 0xbfd7b41d60853ee0, 0x0, 0x0, - 0xbfecccccccccce65, 0xbfd7ce94df67b514, + 0xbfecccccccccccf1, 0xbfd7ce94df67afc0, 0x0, 0x0, - 0xbfeccccccccccd7c, 0xbfd7e914f720caac, + 0xbfeccccccccccbcb, 0xbfd7e914f720cc3a, 0x0, 0x0, - 0xbfeccccccccccd06, 0xbfd8039db411f0c8, + 0xbfecccccccccccf0, 0xbfd8039db411f0de, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfd81e2f22a9ee18, + 0xbfecccccccccccc8, 0xbfd81e2f22a9ed7c, 0x0, 0x0, - 0xbfecccccccccccf0, 0xbfd838c94f651860, + 0xbfeccccccccccc95, 0xbfd838c94f6518d6, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbfd8536c46cd64b2, + 0xbfeccccccccccd01, 0xbfd8536c46cd64f0, 0x0, 0x0, - 0xbfeccccccccccc94, 0xbfd86e18157a8038, + 0xbfecccccccccccc6, 0xbfd86e18157a807e, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbfd888ccc811eafc, + 0xbfeccccccccccccb, 0xbfd888ccc811eb08, 0x0, 0x0, - 0xbfeccccccccccc8f, 0xbfd8a38a6b471178, + 0xbfeccccccccccce5, 0xbfd8a38a6b471210, 0x0, 0x0, - 0xbfecccccccccccf1, 0xbfd8be510bdb6cf2, + 0xbfeccccccccccd08, 0xbfd8be510bdb6c66, 0x0, 0x0, - 0xbfecccccccccccaf, 0xbfd8d920b69e92d0, + 0xbfeccccccccccccf, 0xbfd8d920b69e922a, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfd8f3f9786e58dc, + 0xbfecccccccccccc0, 0xbfd8f3f9786e5862, 0x0, 0x0, - 0xbfeccccccccccca8, 0xbfd90edb5e36ecf2, + 0xbfecccccccccccd9, 0xbfd90edb5e36ed32, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbfd929c674f2f078, + 0xbfecccccccccccbf, 0xbfd929c674f2f14c, 0x0, 0x0, - 0xbfeccccccccccc87, 0xbfd944bac9ab95ac, + 0xbfeccccccccccce4, 0xbfd944bac9ab9608, 0x0, 0x0, - 0xbfecccccccccccf1, 0xbfd95fb86978b58c, + 0xbfecccccccccccc2, 0xbfd95fb86978b5b4, 0x0, 0x0, - 0xbfeccccccccccc13, 0xbfd97abf6180ef9c, + 0xbfecccccccccccf0, 0xbfd97abf6180f106, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbfd995cfbef9cdb4, + 0xbfecccccccccccf3, 0xbfd995cfbef9cd4e, 0x0, 0x0, - 0xbfeccccccccccce9, 0xbfd9b0e98f27ca82, + 0xbfecccccccccccce, 0xbfd9b0e98f27cae8, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbfd9cc0cdf5e886c, + 0xbfecccccccccccd6, 0xbfd9cc0cdf5e8870, 0x0, 0x0, - 0xbfeccccccccccd1f, 0xbfd9e739bd00da24, + 0xbfeccccccccccced, 0xbfd9e739bd00da68, 0x0, 0x0, - 0xbfeccccccccccce4, 0xbfda02703580eb2a, + 0xbfecccccccccccc7, 0xbfda02703580eb38, 0x0, 0x0, - 0xbfeccccccccccd3a, 0xbfda1db0566055f6, + 0xbfecccccccccccba, 0xbfda1db056605626, 0x0, 0x0, - 0xbfeccccccccccd2e, 0xbfda38fa2d3044f6, + 0xbfecccccccccccce, 0xbfda38fa2d3045a6, 0x0, 0x0, - 0xbfeccccccccccd90, 0xbfda544dc7918fee, + 0xbfecccccccccccdd, 0xbfda544dc7919178, 0x0, 0x0, - 0xbfecccccccccccdd, 0xbfda6fab3334db56, + 0xbfecccccccccccad, 0xbfda6fab3334db60, 0x0, 0x0, - 0xbfecccccccccccc1, 0xbfda8b127ddaace0, + 0xbfeccccccccccce6, 0xbfda8b127ddaacd0, 0x0, 0x0, - 0xbfecccccccccccb9, 0xbfdaa683b5539754, + 0xbfecccccccccccc4, 0xbfdaa683b5539790, 0x0, 0x0, - 0xbfeccccccccccc93, 0xbfdac1fee78050cc, + 0xbfeccccccccccc95, 0xbfdac1fee7805080, 0x0, 0x0, - 0xbfecccccccccccce, 0xbfdadd842251d274, + 0xbfeccccccccccceb, 0xbfdadd842251d2e2, 0x0, 0x0, - 0xbfecccccccccccb9, 0xbfdaf91373c97aa0, + 0xbfecccccccccccc6, 0xbfdaf91373c97a50, 0x0, 0x0, - 0xbfecccccccccccba, 0xbfdb14ace9f925b8, + 0xbfecccccccccccb6, 0xbfdb14ace9f92570, 0x0, 0x0, - 0xbfeccccccccccd36, 0xbfdb305093035448, + 0xbfeccccccccccc8b, 0xbfdb3050930354c4, 0x0, 0x0, - 0xbfecccccccccccce, 0xbfdb4bfe7d1b45f0, + 0xbfeccccccccccce0, 0xbfdb4bfe7d1b46bc, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfdb67b6b68520b0, + 0xbfecccccccccccc8, 0xbfdb67b6b685203c, 0x0, 0x0, - 0xbfecccccccccccbb, 0xbfdb83794d960202, + 0xbfecccccccccccd0, 0xbfdb83794d960278, 0x0, 0x0, - 0xbfeccccccccccd11, 0xbfdb9f4650b431bc, + 0xbfecccccccccccc9, 0xbfdb9f4650b43276, 0x0, 0x0, - 0xbfecccccccccccbc, 0xbfdbbb1dce57351c, + 0xbfecccccccccccce, 0xbfdbbb1dce573590, 0x0, 0x0, - 0xbfecccccccccccf8, 0xbfdbd6ffd507f72c, + 0xbfecccccccccccda, 0xbfdbd6ffd507f700, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfdbf2ec7360e316, + 0xbfecccccccccccbf, 0xbfdbf2ec7360e3c4, 0x0, 0x0, - 0xbfeccccccccccc74, 0xbfdc0ee3b80e0cec, + 0xbfecccccccccccd6, 0xbfdc0ee3b80e0f6c, 0x0, 0x0, - 0xbfeccccccccccca5, 0xbfdc2ae5b1cd53a0, + 0xbfecccccccccccd2, 0xbfdc2ae5b1cd53d4, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbfdc46f26f6e76d8, + 0xbfecccccccccccb9, 0xbfdc46f26f6e761c, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbfdc6309ffd346b0, + 0xbfecccccccccccc3, 0xbfdc6309ffd346a0, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfdc7f2c71efc254, + 0xbfecccccccccccd0, 0xbfdc7f2c71efc1c2, 0x0, 0x0, - 0xbfeccccccccccccf, 0xbfdc9b59d4ca378c, + 0xbfecccccccccccbb, 0xbfdc9b59d4ca36fc, 0x0, 0x0, - 0xbfecccccccccccec, 0xbfdcb792377b68a8, + 0xbfecccccccccccbf, 0xbfdcb792377b6868, 0x0, 0x0, - 0xbfeccccccccccd0e, 0xbfdcd3d5a92eb030, + 0xbfecccccccccccff, 0xbfdcd3d5a92eb020, 0x0, 0x0, - 0xbfeccccccccccd9e, 0xbfdcf02439222290, + 0xbfeccccccccccc97, 0xbfdcf024392223a0, 0x0, 0x0, - 0xbfeccccccccccc98, 0xbfdd0c7df6a6b49c, + 0xbfecccccccccccda, 0xbfdd0c7df6a6b4ac, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbfdd28e2f12058bc, + 0xbfecccccccccccc9, 0xbfdd28e2f12058d4, 0x0, 0x0, - 0xbfecccccccccccbf, 0xbfdd4553380630d8, + 0xbfecccccccccccd9, 0xbfdd455338063058, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfdd61cedae2a43c, + 0xbfeccccccccccd16, 0xbfdd61cedae2a416, 0x0, 0x0, - 0xbfecccccccccccf1, 0xbfdd7e55e9538f28, + 0xbfeccccccccccce6, 0xbfdd7e55e9538f84, 0x0, 0x0, - 0xbfecccccccccccf2, 0xbfdd9ae8730a63ce, + 0xbfecccccccccccd5, 0xbfdd9ae8730a63c0, 0x0, 0x0, - 0xbfeccccccccccccf, 0xbfddb78687cc4fb8, + 0xbfeccccccccccce8, 0xbfddb78687cc4fba, 0x0, 0x0, - 0xbfeccccccccccd48, 0xbfddd430377263ec, + 0xbfeccccccccccced, 0xbfddd43037726384, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbfddf0e591e9b92c, + 0xbfecccccccccccaf, 0xbfddf0e591e9b92c, 0x0, 0x0, - 0xbfeccccccccccca6, 0xbfde0da6a73396f8, + 0xbfecccccccccccf1, 0xbfde0da6a7339732, 0x0, 0x0, - 0xbfeccccccccccce5, 0xbfde2a7387659cf8, + 0xbfecccccccccccbf, 0xbfde2a7387659cec, 0x0, 0x0, - 0xbfecccccccccccac, 0xbfde474c42a9e6ec, + 0xbfeccccccccccc74, 0xbfde474c42a9e6b4, 0x0, 0x0, - 0xbfeccccccccccca9, 0xbfde6430e93f340c, + 0xbfecccccccccccbe, 0xbfde6430e93f3406, 0x0, 0x0, - 0xbfeccccccccccca4, 0xbfde81218b7912a6, + 0xbfecccccccccccb0, 0xbfde81218b7912b2, 0x0, 0x0, - 0xbfecccccccccccbc, 0xbfde9e1e39c00534, + 0xbfecccccccccccac, 0xbfde9e1e39c004d8, 0x0, 0x0, - 0xbfeccccccccccc8e, 0xbfdebb270491ac06, + 0xbfeccccccccccc02, 0xbfdebb270491abd0, 0x0, 0x0, - 0xbfeccccccccccd29, 0xbfded83bfc80eafa, + 0xbfeccccccccccd25, 0xbfded83bfc80eb48, 0x0, 0x0, - 0xbfecccccccccccec, 0xbfdef55d323618be, + 0xbfeccccccccccc97, 0xbfdef55d323618b8, 0x0, 0x0, - 0xbfecccccccccccb9, 0xbfdf128ab66f2616, + 0xbfecccccccccccd8, 0xbfdf128ab66f2630, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfdf2fc499ffc3ea, + 0xbfecccccccccccb5, 0xbfdf2fc499ffc406, 0x0, 0x0, - 0xbfecccccccccccd7, 0xbfdf4d0aedd19164, + 0xbfecccccccccccbc, 0xbfdf4d0aedd19186, 0x0, 0x0, - 0xbfeccccccccccca4, 0xbfdf6a5dc2e44644, + 0xbfecccccccccccd3, 0xbfdf6a5dc2e44664, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfdf87bd2a4ddc58, + 0xbfecccccccccccde, 0xbfdf87bd2a4ddc3e, 0x0, 0x0, - 0xbfecccccccccccf3, 0xbfdfa529353abca8, + 0xbfecccccccccccfb, 0xbfdfa529353abb4c, 0x0, 0x0, - 0xbfeccccccccccce7, 0xbfdfc2a1f4ede600, + 0xbfeccccccccccd35, 0xbfdfc2a1f4ede606, 0x0, 0x0, - 0xbfeccccccccccced, 0xbfdfe0277ac12388, + 0xbfecccccccccccc9, 0xbfdfe0277ac1238e, 0x0, 0x0, - 0xbfecccccccccccb9, 0xbfdffdb9d8252ef6, + 0xbfecccccccccccce, 0xbfdffdb9d8252eb4, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbfe00dac8f50f046, + 0xbfecccccccccccde, 0xbfe00dac8f50f084, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbfe01c82afeb2f52, + 0xbfecccccccccccd8, 0xbfe01c82afeb2f48, 0x0, 0x0, - 0xbfecccccccccccde, 0xbfe02b5f56bca3df, + 0xbfecccccccccccb2, 0xbfe02b5f56bca3e0, 0x0, 0x0, - 0xbfecccccccccccaa, 0xbfe03a428cac71d2, + 0xbfeccccccccccccd, 0xbfe03a428cac71e0, 0x0, 0x0, - 0xbfeccccccccccd5a, 0xbfe0492c5aada82c, + 0xbfeccccccccccceb, 0xbfe0492c5aada737, 0x0, 0x0, - 0xbfecccccccccccea, 0xbfe0581cc9bf55bf, + 0xbfeccccccccccc93, 0xbfe0581cc9bf5596, 0x0, 0x0, - 0xbfecccccccccccde, 0xbfe06713e2eca747, + 0xbfecccccccccccc3, 0xbfe06713e2eca744, 0x0, 0x0, - 0xbfecccccccccccae, 0xbfe07611af4cf904, + 0xbfeccccccccccccd, 0xbfe07611af4cf8c9, 0x0, 0x0, - 0xbfecccccccccccae, 0xbfe085163803f058, + 0xbfecccccccccccc8, 0xbfe085163803f051, 0x0, 0x0, - 0xbfeccccccccccce2, 0xbfe094218641959d, + 0xbfecccccccccccb7, 0xbfe0942186419597, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfe0a333a3426b29, + 0xbfeccccccccccce3, 0xbfe0a333a3426b1b, 0x0, 0x0, - 0xbfeccccccccccd00, 0xbfe0b24c984f8568, + 0xbfecccccccccccc3, 0xbfe0b24c984f85ad, 0x0, 0x0, - 0xbfeccccccccccca7, 0xbfe0c16c6ebea5a7, + 0xbfecccccccccccc3, 0xbfe0c16c6ebea585, 0x0, 0x0, - 0xbfeccccccccccce6, 0xbfe0d0932ff24fa0, + 0xbfeccccccccccce0, 0xbfe0d0932ff24fdc, 0x0, 0x0, - 0xbfecccccccccccea, 0xbfe0dfc0e559e74c, + 0xbfecccccccccccc7, 0xbfe0dfc0e559e75c, 0x0, 0x0, - 0xbfecccccccccccce, 0xbfe0eef59871c649, + 0xbfecccccccccccbc, 0xbfe0eef59871c641, 0x0, 0x0, - 0xbfecccccccccccf4, 0xbfe0fe3152c35724, + 0xbfecccccccccccd9, 0xbfe0fe3152c35761, 0x0, 0x0, - 0xbfecccccccccccba, 0xbfe10d741de5308f, + 0xbfecccccccccccb7, 0xbfe10d741de53036, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbfe11cbe037b2b97, + 0xbfecccccccccccbb, 0xbfe11cbe037b2bd2, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbfe12c0f0d368379, + 0xbfecccccccccccf4, 0xbfe12c0f0d3683c8, 0x0, 0x0, - 0xbfeccccccccccc7a, 0xbfe13b6744d5ea84, + 0xbfeccccccccccdcd, 0xbfe13b6744d5eb6e, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfe14ac6b425abd3, + 0xbfeccccccccccc20, 0xbfe14ac6b425ab77, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfe15a2d64ffbb44, + 0xbfeccccccccccce2, 0xbfe15a2d64ffbb17, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbfe1699b614bddeb, + 0xbfecccccccccccce, 0xbfe1699b614bddee, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfe17910b2ffbc96, + 0xbfeccccccccccca4, 0xbfe17910b2ffbc34, 0x0, 0x0, - 0xbfeccccccccccd08, 0xbfe1888d641f0242, + 0xbfecccccccccccf1, 0xbfe1888d641f024a, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfe198117ebb78f2, + 0xbfecccccccccccb9, 0xbfe198117ebb7904, 0x0, 0x0, - 0xbfecccccccccccde, 0xbfe1a79d0cf52460, + 0xbfecccccccccccf3, 0xbfe1a79d0cf52451, 0x0, 0x0, - 0xbfeccccccccccca5, 0xbfe1b73018fa5f12, + 0xbfeccccccccccc86, 0xbfe1b73018fa5ee0, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbfe1c6caad07f79e, + 0xbfecccccccccccc2, 0xbfe1c6caad07f7c6, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbfe1d66cd3694dc7, + 0xbfecccccccccccb4, 0xbfe1d66cd3694dde, 0x0, 0x0, - 0xbfecccccccccccbf, 0xbfe1e61696786df5, + 0xbfecccccccccccdd, 0xbfe1e61696786e20, 0x0, 0x0, - 0xbfeccccccccccce1, 0xbfe1f5c8009e30fe, + 0xbfecccccccccccb2, 0xbfe1f5c8009e310c, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbfe205811c5258cd, + 0xbfecccccccccccfc, 0xbfe205811c5258bc, 0x0, 0x0, - 0xbfeccccccccccc97, 0xbfe21541f41baebb, + 0xbfecccccccccccdc, 0xbfe21541f41bae7c, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbfe2250a929020ab, + 0xbfeccccccccccc9a, 0xbfe2250a929020bd, 0x0, 0x0, - 0xbfeccccccccccd52, 0xbfe234db0254e281, + 0xbfecccccccccccf0, 0xbfe234db0254e24e, 0x0, 0x0, - 0xbfecccccccccccb8, 0xbfe244b34e1e89c4, + 0xbfecccccccccccaa, 0xbfe244b34e1e89fe, 0x0, 0x0, - 0xbfecccccccccccb2, 0xbfe2549380b12f3d, + 0xbfecccccccccccbd, 0xbfe2549380b12ef3, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfe2647ba4e08c84, + 0xbfecccccccccccc3, 0xbfe2647ba4e08c61, 0x0, 0x0, - 0xbfecccccccccccb7, 0xbfe2746bc5901d1e, + 0xbfecccccccccccbe, 0xbfe2746bc5901d00, 0x0, 0x0, - 0xbfeccccccccccca4, 0xbfe28463edb33e37, + 0xbfecccccccccccf6, 0xbfe28463edb33e1e, 0x0, 0x0, - 0xbfecccccccccccba, 0xbfe29464284d4e67, + 0xbfecccccccccccd0, 0xbfe29464284d4e16, 0x0, 0x0, - 0xbfecccccccccccab, 0xbfe2a46c8071cdc8, + 0xbfecccccccccccc0, 0xbfe2a46c8071cdaa, 0x0, 0x0, - 0xbfecccccccccccf4, 0xbfe2b47d014480f4, + 0xbfecccccccccccc1, 0xbfe2b47d014480e7, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbfe2c495b5f98fe0, + 0xbfecccccccccccbd, 0xbfe2c495b5f99015, 0x0, 0x0, - 0xbfecccccccccccb3, 0xbfe2d4b6a9d5aa24, + 0xbfecccccccccccd5, 0xbfe2d4b6a9d5aa00, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbfe2e4dfe82e23f6, + 0xbfecccccccccccc9, 0xbfe2e4dfe82e23e3, 0x0, 0x0, - 0xbfeccccccccccc7c, 0xbfe2f5117c691d92, + 0xbfecccccccccccb1, 0xbfe2f5117c691dbc, 0x0, 0x0, - 0xbfeccccccccccca0, 0xbfe3054b71fda2e2, + 0xbfecccccccccccc1, 0xbfe3054b71fda368, 0x0, 0x0, - 0xbfeccccccccccc4c, 0xbfe3158dd473cf58, + 0xbfecccccccccccdc, 0xbfe3158dd473cec1, 0x0, 0x0, - 0xbfeccccccccccc93, 0xbfe325d8af64ee94, + 0xbfecccccccccccbb, 0xbfe325d8af64ee3b, 0x0, 0x0, - 0xbfeccccccccccc0d, 0xbfe3362c0e7ba24a, + 0xbfeccccccccccca5, 0xbfe3362c0e7ba048, 0x0, 0x0, - 0xbfeccccccccccc95, 0xbfe34687fd74084f, + 0xbfecccccccccccb9, 0xbfe34687fd740776, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfe356ec881bd47c, + 0xbfeccccccccccd06, 0xbfe356ec881bd468, 0x0, 0x0, - 0xbfecccccccccccb2, 0xbfe36759ba5283f4, + 0xbfeccccccccccce1, 0xbfe36759ba5283e8, 0x0, 0x0, - 0xbfecccccccccccf7, 0xbfe377cfa00975b5, + 0xbfecccccccccccae, 0xbfe377cfa00975c9, 0x0, 0x0, - 0xbfeccccccccccce7, 0xbfe3884e45441468, + 0xbfeccccccccccce8, 0xbfe3884e454414a9, 0x0, 0x0, - 0xbfecccccccccccaf, 0xbfe398d5b617fcd5, + 0xbfeccccccccccce8, 0xbfe398d5b617fcc6, 0x0, 0x0, - 0xbfecccccccccccde, 0xbfe3a965fead2054, + 0xbfeccccccccccce2, 0xbfe3a965fead200e, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbfe3b9ff2b3ded14, + 0xbfeccccccccccc6d, 0xbfe3b9ff2b3ded99, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfe3caa148177630, + 0xbfecccccccccccd1, 0xbfe3caa14817765b, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbfe3db4c61999626, + 0xbfecccccccccccd0, 0xbfe3db4c619995ff, 0x0, 0x0, - 0xbfeccccccccccce0, 0xbfe3ec0084371951, + 0xbfecccccccccccd2, 0xbfe3ec008437196c, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfe3fcbdbc75e4f7, + 0xbfecccccccccccb4, 0xbfe3fcbdbc75e4db, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbfe40d8416ef1e2c, + 0xbfeccccccccccc9c, 0xbfe40d8416ef1e37, 0x0, 0x0, - 0xbfeccccccccccccf, 0xbfe41e53a04f5372, + 0xbfecccccccccccd7, 0xbfe41e53a04f5386, 0x0, 0x0, - 0xbfeccccccccccd13, 0xbfe42f2c6556a444, + 0xbfecccccccccccb7, 0xbfe42f2c6556a479, 0x0, 0x0, - 0xbfeccccccccccd34, 0xbfe4400e72d8eb57, + 0xbfecccccccccccdb, 0xbfe4400e72d8ead7, 0x0, 0x0, - 0xbfecccccccccccb9, 0xbfe450f9d5bde617, + 0xbfeccccccccccca8, 0xbfe450f9d5bde63d, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfe461ee9b01609c, + 0xbfecccccccccccbf, 0xbfe461ee9b0160ac, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfe472eccfb3606c, + 0xbfeccccccccccccc, 0xbfe472eccfb3604b, 0x0, 0x0, - 0xbfecccccccccccb3, 0xbfe483f480f84ba2, + 0xbfecccccccccccbc, 0xbfe483f480f84b4a, 0x0, 0x0, - 0xbfecccccccccccc1, 0xbfe49505bc09176b, + 0xbfeccccccccccce5, 0xbfe49505bc091784, 0x0, 0x0, - 0xbfeccccccccccce6, 0xbfe4a6208e3372aa, + 0xbfecccccccccccc4, 0xbfe4a6208e3372c7, 0x0, 0x0, - 0xbfecccccccccccdb, 0xbfe4b74504d9f12e, + 0xbfecccccccccccca, 0xbfe4b74504d9f11f, 0x0, 0x0, - 0xbfeccccccccccce2, 0xbfe4c8732d74379c, + 0xbfecccccccccccd5, 0xbfe4c8732d743822, 0x0, 0x0, - 0xbfeccccccccccce0, 0xbfe4d9ab158f2b15, + 0xbfeccccccccccd13, 0xbfe4d9ab158f2b54, 0x0, 0x0, - 0xbfecccccccccccb0, 0xbfe4eaeccacd1a76, + 0xbfecccccccccccd3, 0xbfe4eaeccacd1a94, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbfe4fc385ae5eea4, + 0xbfecccccccccccc3, 0xbfe4fc385ae5eebc, 0x0, 0x0, - 0xbfecccccccccccbd, 0xbfe50d8dd3a757af, + 0xbfeccccccccccd06, 0xbfe50d8dd3a757e5, 0x0, 0x0, - 0xbfecccccccccccf2, 0xbfe51eed42f4fbd2, + 0xbfecccccccccccd9, 0xbfe51eed42f4fbed, 0x0, 0x0, - 0xbfecccccccccccbc, 0xbfe53056b6c8a56f, + 0xbfecccccccccccc0, 0xbfe53056b6c8a5a5, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbfe541ca3d3273fd, + 0xbfeccccccccccd0c, 0xbfe541ca3d327424, 0x0, 0x0, - 0xbfeccccccccccc19, 0xbfe55347e4590a5c, + 0xbfeccccccccccd21, 0xbfe55347e4590a8d, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbfe564cfba79c271, + 0xbfeccccccccccca3, 0xbfe564cfba79c23e, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbfe57661cde8d699, + 0xbfecccccccccccca, 0xbfe57661cde8d683, 0x0, 0x0, - 0xbfeccccccccccce4, 0xbfe587fe2d119c66, + 0xbfecccccccccccdc, 0xbfe587fe2d119c67, 0x0, 0x0, - 0xbfecccccccccccfb, 0xbfe599a4e676b018, + 0xbfecccccccccccf0, 0xbfe599a4e676b079, 0x0, 0x0, - 0xbfecccccccccccaa, 0xbfe5ab5608b2299b, + 0xbfeccccccccccca7, 0xbfe5ab5608b22995, 0x0, 0x0, - 0xbfecccccccccccb2, 0xbfe5bd11a275cd54, + 0xbfecccccccccccc8, 0xbfe5bd11a275cd4d, 0x0, 0x0, - 0xbfecccccccccccce, 0xbfe5ced7c28b4167, + 0xbfecccccccccccc1, 0xbfe5ced7c28b416e, 0x0, 0x0, - 0xbfeccccccccccd00, 0xbfe5e0a877d440f0, + 0xbfeccccccccccc5a, 0xbfe5e0a877d440e2, 0x0, 0x0, - 0xbfeccccccccccd0a, 0xbfe5f283d14acf61, + 0xbfecccccccccccbe, 0xbfe5f283d14aceeb, 0x0, 0x0, - 0xbfecccccccccccb8, 0xbfe60469de016e8d, + 0xbfecccccccccccdf, 0xbfe60469de016ea3, 0x0, 0x0, - 0xbfeccccccccccce4, 0xbfe6165aad2353b6, + 0xbfecccccccccccd4, 0xbfe6165aad2353bd, 0x0, 0x0, - 0xbfecccccccccccb9, 0xbfe628564df49cde, + 0xbfeccccccccccce2, 0xbfe628564df49cdc, 0x0, 0x0, - 0xbfeccccccccccca2, 0xbfe63a5ccfd28854, + 0xbfecccccccccccc9, 0xbfe63a5ccfd28854, 0x0, 0x0, - 0xbfecccccccccccbf, 0xbfe64c6e4233aa96, + 0xbfecccccccccccbb, 0xbfe64c6e4233aa7a, 0x0, 0x0, - 0xbfeccccccccccca3, 0xbfe65e8ab4a82633, + 0xbfecccccccccccb6, 0xbfe65e8ab4a825fd, 0x0, 0x0, - 0xbfeccccccccccc83, 0xbfe670b236d9e512, + 0xbfeccccccccccc3f, 0xbfe670b236d9e3ef, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbfe682e4d88ccc78, + 0xbfecccccccccccac, 0xbfe682e4d88ccc99, 0x0, 0x0, - 0xbfecccccccccccb4, 0xbfe69522a99effd8, + 0xbfecccccccccccd1, 0xbfe69522a99efff0, 0x0, 0x0, - 0xbfecccccccccccbb, 0xbfe6a76bba09101b, + 0xbfecccccccccccc0, 0xbfe6a76bba090ff2, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbfe6b9c019de3bb0, + 0xbfecccccccccccfe, 0xbfe6b9c019de3b96, 0x0, 0x0, - 0xbfecccccccccccb6, 0xbfe6cc1fd94ca91d, + 0xbfeccccccccccd07, 0xbfe6cc1fd94ca936, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfe6de8b089da0e2, + 0xbfecccccccccccdc, 0xbfe6de8b089da102, 0x0, 0x0, - 0xbfecccccccccccf8, 0xbfe6f101b835cc3d, + 0xbfecccccccccccd2, 0xbfe6f101b835cbf0, 0x0, 0x0, - 0xbfeccccccccccda9, 0xbfe70383f8956e08, + 0xbfecccccccccccea, 0xbfe70383f8956e55, 0x0, 0x0, - 0xbfeccccccccccd01, 0xbfe71611da58a4eb, + 0xbfecccccccccccad, 0xbfe71611da58a4d3, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbfe728ab6e37a645, + 0xbfecccccccccccc6, 0xbfe728ab6e37a656, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfe73b50c506fd5e, + 0xbfecccccccccccd5, 0xbfe73b50c506fd5c, 0x0, 0x0, - 0xbfecccccccccccf5, 0xbfe74e01efb7cb06, + 0xbfecccccccccccc6, 0xbfe74e01efb7cb39, 0x0, 0x0, - 0xbfeccccccccccd06, 0xbfe760beff58066d, + 0xbfecccccccccccc0, 0xbfe760beff5806b4, 0x0, 0x0, - 0xbfeccccccccccd09, 0xbfe773880512bc61, + 0xbfecccccccccccb1, 0xbfe773880512bcb4, 0x0, 0x0, - 0xbfecccccccccccfa, 0xbfe7865d1230516d, + 0xbfeccccccccccd12, 0xbfe7865d12305188, 0x0, 0x0, - 0xbfeccccccccccbe6, 0xbfe7993e3816c3df, + 0xbfecccccccccccb2, 0xbfe7993e3816c434, 0x0, 0x0, - 0xbfeccccccccccd6c, 0xbfe7ac2b8849ecd4, + 0xbfecccccccccccb4, 0xbfe7ac2b8849ecd6, 0x0, 0x0, - 0xbfeccccccccccc9e, 0xbfe7bf25146bc84f, + 0xbfecccccccccccc1, 0xbfe7bf25146bc873, 0x0, 0x0, - 0xbfeccccccccccced, 0xbfe7d22aee3cb2fe, + 0xbfecccccccccccde, 0xbfe7d22aee3cb2e2, 0x0, 0x0, - 0xbfeccccccccccc79, 0xbfe7e53d279bb2f2, + 0xbfecccccccccccb4, 0xbfe7e53d279bb2cb, 0x0, 0x0, - 0xbfecccccccccccd9, 0xbfe7f85bd286bcb9, + 0xbfecccccccccccfe, 0xbfe7f85bd286bced, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfe80b87011af934, + 0xbfecccccccccccc0, 0xbfe80b87011af958, 0x0, 0x0, - 0xbfeccccccccccc97, 0xbfe81ebec5950c3d, + 0xbfecccccccccccc6, 0xbfe81ebec5950c4d, 0x0, 0x0, - 0xbfeccccccccccc24, 0xbfe8320332515cbc, + 0xbfecccccccccccb4, 0xbfe8320332515ca9, 0x0, 0x0, - 0xbfecccccccccccb1, 0xbfe8455459cc5c43, + 0xbfecccccccccccee, 0xbfe8455459cc5c68, 0x0, 0x0, - 0xbfeccccccccccce5, 0xbfe858b24ea2d351, + 0xbfecccccccccccd1, 0xbfe858b24ea2d35e, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbfe86c1d23922689, + 0xbfecccccccccccd0, 0xbfe86c1d23922689, 0x0, 0x0, - 0xbfecccccccccccfb, 0xbfe87f94eb78a566, + 0xbfecccccccccccbe, 0xbfe87f94eb78a580, 0x0, 0x0, - 0xbfecccccccccccb8, 0xbfe89319b955d45e, + 0xbfeccccccccccca8, 0xbfe89319b955d465, 0x0, 0x0, - 0xbfeccccccccccd10, 0xbfe8a6aba04ab968, + 0xbfecccccccccccd7, 0xbfe8a6aba04ab973, 0x0, 0x0, - 0xbfeccccccccccd5b, 0xbfe8ba4ab39a2931, + 0xbfeccccccccccccc, 0xbfe8ba4ab39a2933, 0x0, 0x0, - 0xbfeccccccccccd55, 0xbfe8cdf706a91514, + 0xbfecccccccccccd0, 0xbfe8cdf706a9141f, 0x0, 0x0, - 0xbfecccccccccccfe, 0xbfe8e1b0acfed95c, + 0xbfecccccccccccca, 0xbfe8e1b0acfed919, 0x0, 0x0, - 0xbfeccccccccccd0a, 0xbfe8f577ba458de0, + 0xbfeccccccccccce8, 0xbfe8f577ba458e19, 0x0, 0x0, - 0xbfeccccccccccc8c, 0xbfe9094c424a58d0, + 0xbfecccccccccccbd, 0xbfe9094c424a5842, 0x0, 0x0, - 0xbfeccccccccccca0, 0xbfe91d2e58fdb8fc, + 0xbfeccccccccccca6, 0xbfe91d2e58fdb8fb, 0x0, 0x0, - 0xbfecccccccccccb1, 0xbfe9311e1273e0f2, + 0xbfecccccccccccf9, 0xbfe9311e1273e126, 0x0, 0x0, - 0xbfeccccccccccd00, 0xbfe9451b82e503ae, + 0xbfeccccccccccccf, 0xbfe9451b82e503ba, 0x0, 0x0, - 0xbfecccccccccccce, 0xbfe95926beadac9e, + 0xbfeccccccccccce7, 0xbfe95926beadac7b, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbfe96d3fda4f1184, + 0xbfeccccccccccc9b, 0xbfe96d3fda4f10bb, 0x0, 0x0, - 0xbfeccccccccccce1, 0xbfe98166ea6f6a0a, + 0xbfeccccccccccc8a, 0xbfe98166ea6f69d4, 0x0, 0x0, - 0xbfecccccccccccaf, 0xbfe9959c03da474e, + 0xbfecccccccccccdc, 0xbfe9959c03da47b6, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbfe9a9df3b80ec06, + 0xbfecccccccccccd9, 0xbfe9a9df3b80ec19, 0x0, 0x0, - 0xbfeccccccccccd08, 0xbfe9be30a67aa10c, + 0xbfeccccccccccd25, 0xbfe9be30a67aa121, 0x0, 0x0, - 0xbfecccccccccccff, 0xbfe9d2905a051458, + 0xbfeccccccccccca9, 0xbfe9d2905a051482, 0x0, 0x0, - 0xbfeccccccccccd48, 0xbfe9e6fe6b84b0be, + 0xbfeccccccccccca2, 0xbfe9e6fe6b84b08f, 0x0, 0x0, - 0xbfeccccccccccd1d, 0xbfe9fb7af084fa3e, + 0xbfeccccccccccc92, 0xbfe9fb7af084fa3c, 0x0, 0x0, - 0xbfeccccccccccdb6, 0xbfea1005feb8eb2a, + 0xbfeccccccccccd13, 0xbfea1005feb8eafc, 0x0, 0x0, - 0xbfeccccccccccce7, 0xbfea249fabfb51f0, + 0xbfeccccccccccd60, 0xbfea249fabfb522a, 0x0, 0x0, - 0xbfecccccccccccfa, 0xbfea39480e4f2ec8, + 0xbfecccccccccccd7, 0xbfea39480e4f2ec4, 0x0, 0x0, - 0xbfeccccccccccce2, 0xbfea4dff3be0144a, + 0xbfecccccccccccbc, 0xbfea4dff3be01432, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfea62c54b02885c, + 0xbfeccccccccccca2, 0xbfea62c54b028879, 0x0, 0x0, - 0xbfecccccccccccb6, 0xbfea779a52346624, + 0xbfecccccccccccb6, 0xbfea779a52346650, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbfea8c7e681d4116, + 0xbfecccccccccccdb, 0xbfea8c7e681d4114, 0x0, 0x0, - 0xbfecccccccccccea, 0xbfeaa171a38ec820, + 0xbfecccccccccccc5, 0xbfeaa171a38ec82c, 0x0, 0x0, - 0xbfeccccccccccc82, 0xbfeab6741b852ce8, + 0xbfeccccccccccc85, 0xbfeab6741b852c99, 0x0, 0x0, - 0xbfeccccccccccc9a, 0xbfeacb85e72786d4, + 0xbfeccccccccccd09, 0xbfeacb85e72786fc, 0x0, 0x0, - 0xbfeccccccccccce3, 0xbfeae0a71dc83f44, + 0xbfecccccccccccd2, 0xbfeae0a71dc83f2e, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbfeaf5d7d6e5762c, + 0xbfeccccccccccceb, 0xbfeaf5d7d6e5761c, 0x0, 0x0, - 0xbfecccccccccccbb, 0xbfeb0b182a296dcc, + 0xbfecccccccccccda, 0xbfeb0b182a296dc8, 0x0, 0x0, - 0xbfecccccccccccdd, 0xbfeb20682f6af56c, + 0xbfeccccccccccccc, 0xbfeb20682f6af578, 0x0, 0x0, - 0xbfecccccccccccf0, 0xbfeb35c7feadd54c, + 0xbfecccccccccccf3, 0xbfeb35c7feadd55a, 0x0, 0x0, - 0xbfecccccccccccb1, 0xbfeb4b37b0233cfc, + 0xbfecccccccccccd9, 0xbfeb4b37b0233ced, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfeb60b75c2a3150, + 0xbfeccccccccccd06, 0xbfeb60b75c2a30f2, 0x0, 0x0, - 0xbfeccccccccccca1, 0xbfeb76471b4ffb68, + 0xbfecccccccccccec, 0xbfeb76471b4ffb33, 0x0, 0x0, - 0xbfeccccccccccceb, 0xbfeb8be706509cf0, + 0xbfeccccccccccce1, 0xbfeb8be706509cc2, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbfeba19736173fc4, + 0xbfecccccccccccc0, 0xbfeba19736173fba, 0x0, 0x0, - 0xbfecccccccccccb6, 0xbfebb757c3beab00, + 0xbfecccccccccccc3, 0xbfebb757c3beab57, 0x0, 0x0, - 0xbfeccccccccccd05, 0xbfebcd28c891b858, + 0xbfecccccccccccb6, 0xbfebcd28c891b880, 0x0, 0x0, - 0xbfecccccccccccf9, 0xbfebe30a5e0bc9e0, + 0xbfecccccccccccd2, 0xbfebe30a5e0bc9de, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbfebf8fc9dd94240, + 0xbfecccccccccccc3, 0xbfebf8fc9dd94240, 0x0, 0x0, - 0xbfeccccccccccca3, 0xbfec0effa1d7fea0, + 0xbfecccccccccccd5, 0xbfec0effa1d7fe28, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbfec25138417cef8, + 0xbfeccccccccccc8e, 0xbfec25138417cf38, 0x0, 0x0, - 0xbfecccccccccccfc, 0xbfec3b385edaf728, + 0xbfecccccccccccba, 0xbfec3b385edaf6fb, 0x0, 0x0, - 0xbfeccccccccccd29, 0xbfec516e4c96a5d0, + 0xbfecccccccccccde, 0xbfec516e4c96a5b7, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbfec67b567f378b0, + 0xbfecccccccccccc6, 0xbfec67b567f37969, 0x0, 0x0, - 0xbfeccccccccccd15, 0xbfec7e0dcbcdfad0, + 0xbfeccccccccccccc, 0xbfec7e0dcbcdfae5, 0x0, 0x0, - 0xbfecccccccccccf1, 0xbfec947793372540, + 0xbfecccccccccccf3, 0xbfec947793372586, 0x0, 0x0, - 0xbfeccccccccccd8c, 0xbfecaaf2d974e5c0, + 0xbfeccccccccccc16, 0xbfecaaf2d974e5a2, 0x0, 0x0, - 0xbfecccccccccd03c, 0xbfecc17fba029f00, + 0xbfeccccccccccef0, 0xbfecc17fba02a277, 0x0, 0x0, - 0xbfecccccccccccb5, 0xbfecd81e5091bc75, + 0xbfecccccccccccd2, 0xbfecd81e5091bc65, 0x0, 0x0, - 0xbfeccccccccccc5c, 0xbfeceeceb90a1d74, + 0xbfeccccccccccc4a, 0xbfeceeceb90a1d84, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbfed05910f8ac0b7, + 0xbfecccccccccccc6, 0xbfed05910f8ac07d, 0x0, 0x0, - 0xbfeccccccccccc96, 0xbfed1c65706a3c12, + 0xbfeccccccccccd29, 0xbfed1c65706a3bd1, 0x0, 0x0, - 0xbfecccccccccccc1, 0xbfed334bf8374cfb, + 0xbfecccccccccccea, 0xbfed334bf8374cfc, 0x0, 0x0, - 0xbfecccccccccccca, 0xbfed4a44c3b96985, + 0xbfecccccccccccbf, 0xbfed4a44c3b9699a, 0x0, 0x0, - 0xbfecccccccccccd0, 0xbfed614feff14e5f, + 0xbfecccccccccccf2, 0xbfed614feff14e50, 0x0, 0x0, - 0xbfecccccccccccce, 0xbfed786d9a199186, + 0xbfecccccccccccc4, 0xbfed786d9a1991c1, 0x0, 0x0, - 0xbfeccccccccccd1a, 0xbfed8f9ddfa73794, + 0xbfecccccccccccef, 0xbfed8f9ddfa73755, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbfeda6e0de4a4659, + 0xbfecccccccccccda, 0xbfeda6e0de4a468d, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbfedbe36b3ee5fca, + 0xbfecccccccccccb7, 0xbfedbe36b3ee601a, 0x0, 0x0, - 0xbfeccccccccccca8, 0xbfedd59f7ebb582a, + 0xbfecccccccccccab, 0xbfedd59f7ebb5856, 0x0, 0x0, - 0xbfecccccccccccda, 0xbfeded1b5d15d2a4, + 0xbfecccccccccccc8, 0xbfeded1b5d15d26e, 0x0, 0x0, - 0xbfeccccccccccd12, 0xbfee04aa6d9fdc16, + 0xbfecccccccccccde, 0xbfee04aa6d9fdbf0, 0x0, 0x0, - 0xbfeccccccccccd05, 0xbfee1c4ccf398da1, + 0xbfeccccccccccce0, 0xbfee1c4ccf398d42, 0x0, 0x0, - 0xbfeccccccccccce6, 0xbfee3402a101a9d0, + 0xbfecccccccccccf2, 0xbfee3402a101a993, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbfee4bcc02563f34, + 0xbfecccccccccccab, 0xbfee4bcc02564028, 0x0, 0x0, - 0xbfeccccccccccd00, 0xbfee63a912d55184, + 0xbfecccccccccccd6, 0xbfee63a912d5519e, 0x0, 0x0, - 0xbfecccccccccccd7, 0xbfee7b99f25d797e, + 0xbfecccccccccccd8, 0xbfee7b99f25d798d, 0x0, 0x0, - 0xbfeccccccccccce0, 0xbfee939ec10e9219, + 0xbfecccccccccccc9, 0xbfee939ec10e91f6, 0x0, 0x0, - 0xbfecccccccccccae, 0xbfeeabb79f4a61ee, + 0xbfecccccccccccb0, 0xbfeeabb79f4a6204, 0x0, 0x0, - 0xbfecccccccccccef, 0xbfeec3e4adb547b0, + 0xbfecccccccccccce, 0xbfeec3e4adb54790, 0x0, 0x0, - 0xbfecccccccccccdb, 0xbfeedc260d36e8dc, + 0xbfecccccccccccba, 0xbfeedc260d36e8c5, 0x0, 0x0, - 0xbfeccccccccccca1, 0xbfeef47bdefae372, + 0xbfecccccccccccc7, 0xbfeef47bdefae3f6, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbfef0ce64471815b, + 0xbfecccccccccccf5, 0xbfef0ce644718154, 0x0, 0x0, - 0xbfecccccccccccb7, 0xbfef25655f506c03, + 0xbfecccccccccccd0, 0xbfef25655f506bba, 0x0, 0x0, - 0xbfeccccccccccce4, 0xbfef3df9519364fc, + 0xbfecccccccccccc5, 0xbfef3df9519364be, 0x0, 0x0, - 0xbfecccccccccccb3, 0xbfef56a23d7d0060, + 0xbfeccccccccccce5, 0xbfef56a23d7d0094, 0x0, 0x0, - 0xbfecccccccccccf2, 0xbfef6f604597618c, + 0xbfecccccccccccd3, 0xbfef6f60459761af, 0x0, 0x0, - 0xbfecccccccccccf3, 0xbfef88338cb4f756, + 0xbfecccccccccccda, 0xbfef88338cb4f738, 0x0, 0x0, - 0xbfecccccccccccbc, 0xbfefa11c35f13e68, + 0xbfecccccccccccd6, 0xbfefa11c35f13e30, 0x0, 0x0, - 0xbfeccccccccccddc, 0xbfefba1a64b184b4, + 0xbfecccccccccccc0, 0xbfefba1a64b18448, 0x0, 0x0, - 0xbfeccccccccccc98, 0xbfefd32e3ca5af68, + 0xbfecccccccccccca, 0xbfefd32e3ca5aebd, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbfefec57e1c9010c, + 0xbfecccccccccccb0, 0xbfefec57e1c90132, 0x0, 0x0, - 0xbfecccccccccccb1, 0xbff002cbbc317402, + 0xbfecccccccccccd3, 0xbff002cbbc3173fa, 0x0, 0x0, - 0xbfecccccccccccac, 0xbff00f769283e3d0, + 0xbfecccccccccccbc, 0xbff00f769283e3ea, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbff01c2c864ce591, + 0xbfeccccccccccca8, 0xbff01c2c864ce5b4, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbff028edaa24db68, + 0xbfecccccccccccea, 0xbff028edaa24db8a, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbff035ba10cbdea0, + 0xbfecccccccccccca, 0xbff035ba10cbdeac, 0x0, 0x0, - 0xbfeccccccccccc73, 0xbff04291cd2a2bc5, + 0xbfeccccccccccd12, 0xbff04291cd2a2b90, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbff04f74f2508f58, + 0xbfecccccccccccfc, 0xbff04f74f2508f67, 0x0, 0x0, - 0xbfecccccccccccde, 0xbff05c639378d5b0, + 0xbfecccccccccccee, 0xbff05c639378d5a8, 0x0, 0x0, - 0xbfecccccccccccce, 0xbff0695dc40639fe, + 0xbfeccccccccccccb, 0xbff0695dc40639e0, 0x0, 0x0, - 0xbfecccccccccccdf, 0xbff076639785d81d, + 0xbfeccccccccccce1, 0xbff076639785d806, 0x0, 0x0, - 0xbfecccccccccccce, 0xbff0837521af1fee, + 0xbfecccccccccccb8, 0xbff0837521af1ff1, 0x0, 0x0, - 0xbfecccccccccccde, 0xbff090927664498a, + 0xbfecccccccccccbc, 0xbff0909276644981, 0x0, 0x0, - 0xbfeccccccccccce4, 0xbff09dbba9b2cb04, + 0xbfecccccccccccd8, 0xbff09dbba9b2cb17, 0x0, 0x0, - 0xbfeccccccccccccc, 0xbff0aaf0cfd3d09c, + 0xbfeccccccccccc9e, 0xbff0aaf0cfd3d056, 0x0, 0x0, - 0xbfecccccccccccae, 0xbff0b831fd2cb494, + 0xbfecccccccccccb0, 0xbff0b831fd2cb493, 0x0, 0x0, - 0xbfecccccccccccc6, 0xbff0c57f464f7b2b, + 0xbfecccccccccccc0, 0xbff0c57f464f7b46, 0x0, 0x0, - 0xbfecccccccccccb8, 0xbff0d2d8bffb4e18, + 0xbfecccccccccccd6, 0xbff0d2d8bffb4e12, 0x0, 0x0, - 0xbfecccccccccccc8, 0xbff0e03e7f1cfa0a, + 0xbfecccccccccccb2, 0xbff0e03e7f1cf9fe, 0x0, 0x0, - 0xbfecccccccccccf8, 0xbff0edb098cf6f1f, + 0xbfecccccccccccbc, 0xbff0edb098cf6ee4, 0x0, 0x0, - 0xbfeccccccccccce7, 0xbff0fb2f225c408b, + 0xbfecccccccccccce, 0xbff0fb2f225c4092, 0x0, 0x0, - 0xbfeccccccccccc9e, 0xbff108ba313c2971, + 0xbfecccccccccccd1, 0xbff108ba313c2974, 0x0, 0x0, - 0xbfecccccccccccb4, 0xbff11651db178f40, + 0xbfecccccccccccf2, 0xbff11651db178f89, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbff123f635c709fc, + 0xbfecccccccccccd0, 0xbff123f635c70a14, 0x0, 0x0, - 0xbfecccccccccccf0, 0xbff131a75753ea52, + 0xbfecccccccccccc9, 0xbff131a75753ea67, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbff13f6555f8c507, + 0xbfecccccccccccd4, 0xbff13f6555f8c4f0, 0x0, 0x0, - 0xbfeccccccccccce2, 0xbff14d304821fd8d, + 0xbfecccccccccccdb, 0xbff14d304821fdac, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbff15b08446e54da, + 0xbfecccccccccccd6, 0xbff15b08446e54c0, 0x0, 0x0, - 0xbfeccccccccccd06, 0xbff168ed61af774a, + 0xbfeccccccccccce6, 0xbff168ed61af773b, 0x0, 0x0, - 0xbfeccccccccccd04, 0xbff176dfb6ea8ed8, + 0xbfeccccccccccd08, 0xbff176dfb6ea8f15, 0x0, 0x0, - 0xbfeccccccccccd85, 0xbff184df5b58d6f1, + 0xbfeccccccccccdc3, 0xbff184df5b58d648, 0x0, 0x0, - 0xbfeccccccccccd10, 0xbff192ec66682f76, + 0xbfeccccccccccc6c, 0xbff192ec66682f85, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbff1a106efbbb744, + 0xbfecccccccccccde, 0xbff1a106efbbb752, 0x0, 0x0, - 0xbfecccccccccccee, 0xbff1af2f0f2c62a1, + 0xbfecccccccccccda, 0xbff1af2f0f2c6292, 0x0, 0x0, - 0xbfecccccccccccb4, 0xbff1bd64dcc9979e, + 0xbfecccccccccccd4, 0xbff1bd64dcc997ac, 0x0, 0x0, - 0xbfecccccccccccce, 0xbff1cba870d9cc48, + 0xbfecccccccccccae, 0xbff1cba870d9cc49, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbff1d9f9e3db2522, + 0xbfecccccccccccc2, 0xbff1d9f9e3db2532, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbff1e8594e84179b, + 0xbfecccccccccccc6, 0xbff1e8594e841792, 0x0, 0x0, - 0xbfecccccccccccce, 0xbff1f6c6c9c40d6b, + 0xbfecccccccccccd8, 0xbff1f6c6c9c40d12, 0x0, 0x0, - 0xbfeccccccccccc94, 0xbff205426ec40adc, + 0xbfecccccccccccfc, 0xbff205426ec40afc, 0x0, 0x0, - 0xbfeccccccccccce2, 0xbff213cc56e758b6, + 0xbfecccccccccccce, 0xbff213cc56e758a8, 0x0, 0x0, - 0xbfecccccccccccb7, 0xbff222649bcc2c8f, + 0xbfecccccccccccbc, 0xbff222649bcc2c8c, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbff2310b574c57a6, + 0xbfecccccccccccc7, 0xbff2310b574c57a0, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbff23fc0a37df5bb, + 0xbfeccccccccccccc, 0xbff23fc0a37df5a4, 0x0, 0x0, - 0xbfecccccccccccc4, 0xbff24e849ab41f8d, + 0xbfecccccccccccd0, 0xbff24e849ab41f78, 0x0, 0x0, - 0xbfeccccccccccced, 0xbff25d57577f9e26, + 0xbfecccccccccccee, 0xbff25d57577f9e36, 0x0, 0x0, - 0xbfecccccccccccd4, 0xbff26c38f4afa36a, + 0xbfeccccccccccd05, 0xbff26c38f4afa347, 0x0, 0x0, - 0xbfeccccccccccc54, 0xbff27b298d528192, + 0xbfecccccccccccc2, 0xbff27b298d528171, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbff28a293cb668a8, + 0xbfeccccccccccccd, 0xbff28a293cb6689e, 0x0, 0x0, - 0xbfecccccccccccb9, 0xbff299381e6a24d0, + 0xbfecccccccccccb6, 0xbff299381e6a24c6, 0x0, 0x0, - 0xbfecccccccccccc1, 0xbff2a8564e3ddf03, + 0xbfecccccccccccfb, 0xbff2a8564e3ddef6, 0x0, 0x0, - 0xbfecccccccccccdd, 0xbff2b783e843e206, + 0xbfeccccccccccce0, 0xbff2b783e843e1ff, 0x0, 0x0, - 0xbfecccccccccccf9, 0xbff2c6c108d1603a, + 0xbfeccccccccccccf, 0xbff2c6c108d1601d, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbff2d60dcc7f3de2, + 0xbfecccccccccccbf, 0xbff2d60dcc7f3ddb, 0x0, 0x0, - 0xbfecccccccccccae, 0xbff2e56a502add87, + 0xbfecccccccccccd4, 0xbff2e56a502add80, 0x0, 0x0, - 0xbfecccccccccccbf, 0xbff2f4d6b0f6ee36, + 0xbfeccccccccccd02, 0xbff2f4d6b0f6ee5b, 0x0, 0x0, - 0xbfeccccccccccce4, 0xbff304530c4c4070, + 0xbfecccccccccccdf, 0xbff304530c4c4066, 0x0, 0x0, - 0xbfecccccccccccd7, 0xbff313df7fda9788, + 0xbfecccccccccccd2, 0xbff313df7fda9788, 0x0, 0x0, - 0xbfeccccccccccce3, 0xbff3237c29998543, + 0xbfecccccccccccdd, 0xbff3237c29998548, 0x0, 0x0, - 0xbfecccccccccccb4, 0xbff3332927c943ce, + 0xbfecccccccccccdb, 0xbff3332927c943ce, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbff342e698f3943b, + 0xbfecccccccccccd1, 0xbff342e698f39444, 0x0, 0x0, - 0xbfecccccccccccef, 0xbff352b49beca0b6, + 0xbfecccccccccccc8, 0xbff352b49beca0b7, 0x0, 0x0, - 0xbfeccccccccccdc9, 0xbff362934fd3e121, + 0xbfecccccccccccc5, 0xbff362934fd3e176, 0x0, 0x0, - 0xbfeccccccccccc61, 0xbff37282d41503f8, + 0xbfecccccccccccef, 0xbff37282d41503bd, 0x0, 0x0, - 0xbfecccccccccccb4, 0xbff382834868d81e, + 0xbfeccccccccccccd, 0xbff382834868d82b, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbff39294ccd63f24, + 0xbfeccccccccccce2, 0xbff39294ccd63f15, 0x0, 0x0, - 0xbfecccccccccccdd, 0xbff3a2b781b31c8e, + 0xbfeccccccccccd01, 0xbff3a2b781b31c8f, 0x0, 0x0, - 0xbfecccccccccccc5, 0xbff3b2eb87a54e38, + 0xbfeccccccccccca1, 0xbff3b2eb87a54e18, 0x0, 0x0, - 0xbfecccccccccccb9, 0xbff3c330ffa3a468, + 0xbfeccccccccccccf, 0xbff3c330ffa3a47b, 0x0, 0x0, - 0xbfeccccccccccce0, 0xbff3d3880af6e0be, + 0xbfecccccccccccba, 0xbff3d3880af6e0a4, 0x0, 0x0, - 0xbfeccccccccccd09, 0xbff3e3f0cb3ab525, + 0xbfecccccccccccfd, 0xbff3e3f0cb3ab531, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbff3f46b625ecb4f, + 0xbfeccccccccccccf, 0xbff3f46b625ecb49, 0x0, 0x0, - 0xbfecccccccccccde, 0xbff404f7f2a7caa8, + 0xbfecccccccccccb1, 0xbff404f7f2a7caa9, 0x0, 0x0, - 0xbfeccccccccccca7, 0xbff415969eb066fc, + 0xbfecccccccccccec, 0xbff415969eb066f6, 0x0, 0x0, - 0xbfecccccccccccab, 0xbff42647896a7011, + 0xbfecccccccccccbf, 0xbff42647896a7019, 0x0, 0x0, - 0xbfecccccccccccb0, 0xbff4370ad61fe67c, + 0xbfecccccccccccbc, 0xbff4370ad61fe68c, 0x0, 0x0, - 0xbfecccccccccccfd, 0xbff447e0a8741466, + 0xbfecccccccccccd4, 0xbff447e0a8741462, 0x0, 0x0, - 0xbfeccccccccccd04, 0xbff458c92464aa9c, + 0xbfecccccccccccc7, 0xbff458c92464aa82, 0x0, 0x0, - 0xbfeccccccccccd4b, 0xbff469c46e4ae118, + 0xbfecccccccccccf7, 0xbff469c46e4ae16c, 0x0, 0x0, - 0xbfeccccccccccce9, 0xbff47ad2aadc9e38, + 0xbfecccccccccccd9, 0xbff47ad2aadc9e70, 0x0, 0x0, - 0xbfecccccccccccd1, 0xbff48bf3ff2d9f06, + 0xbfecccccccccccc3, 0xbff48bf3ff2d9eff, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbff49d2890b0a59c, + 0xbfecccccccccccc9, 0xbff49d2890b0a590, 0x0, 0x0, - 0xbfecccccccccccec, 0xbff4ae708538adea, + 0xbfeccccccccccce4, 0xbff4ae708538adbc, 0x0, 0x0, - 0xbfeccccccccccce5, 0xbff4bfcc02fa23cc, + 0xbfeccccccccccc95, 0xbff4bfcc02fa23ce, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbff4d13b308c20a4, + 0xbfeccccccccccccc, 0xbff4d13b308c206f, 0x0, 0x0, - 0xbfeccccccccccd04, 0xbff4e2be34e9ab21, + 0xbfecccccccccccd4, 0xbff4e2be34e9aae6, 0x0, 0x0, - 0xbfeccccccccccdab, 0xbff4f4553772fef2, + 0xbfeccccccccccce8, 0xbff4f4553772fea0, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbff506005feed73f, + 0xbfecccccccccccea, 0xbff506005feed756, 0x0, 0x0, - 0xbfeccccccccccc88, 0xbff517bfd68bbf1a, + 0xbfecccccccccccbd, 0xbff517bfd68bbf14, 0x0, 0x0, - 0xbfecccccccccccbd, 0xbff52993c3e166d2, + 0xbfecccccccccccd4, 0xbff52993c3e166b9, 0x0, 0x0, - 0xbfeccccccccccca5, 0xbff53b7c50f1fe4c, + 0xbfecccccccccccd8, 0xbff53b7c50f1fe61, 0x0, 0x0, - 0xbfeccccccccccc81, 0xbff54d79a72b961e, + 0xbfeccccccccccccc, 0xbff54d79a72b9616, 0x0, 0x0, - 0xbfeccccccccccc79, 0xbff55f8bf06983dc, + 0xbfecccccccccccc7, 0xbff55f8bf06983eb, 0x0, 0x0, - 0xbfecccccccccccfc, 0xbff571b356f5ced0, + 0xbfecccccccccccac, 0xbff571b356f5ce6c, 0x0, 0x0, - 0xbfeccccccccccc7c, 0xbff583f0058a9f20, + 0xbfeccccccccccd41, 0xbff583f0058a9d96, 0x0, 0x0, - 0xbfeccccccccccc9d, 0xbff596422753b1ac, + 0xbfeccccccccccd87, 0xbff596422753b1ba, 0x0, 0x0, - 0xbfecccccccccccf8, 0xbff5a8a9e7efdf1d, + 0xbfecccccccccccb0, 0xbff5a8a9e7efdf5a, 0x0, 0x0, - 0xbfecccccccccccad, 0xbff5bb27737291a5, + 0xbfecccccccccccb5, 0xbff5bb27737291a0, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbff5cdbaf66553b8, + 0xbfecccccccccccc3, 0xbff5cdbaf6655388, 0x0, 0x0, - 0xbfeccccccccccc97, 0xbff5e0649dc95e25, + 0xbfeccccccccccd23, 0xbff5e0649dc95e15, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbff5f32497192cd0, + 0xbfecccccccccccc5, 0xbff5f32497192cc8, 0x0, 0x0, - 0xbfecccccccccccd4, 0xbff605fb104a1a41, + 0xbfeccccccccccce6, 0xbff605fb104a1a1b, 0x0, 0x0, - 0xbfeccccccccccd64, 0xbff618e837ce0126, + 0xbfecccccccccccfd, 0xbff618e837ce00d3, 0x0, 0x0, - 0xbfeccccccccccca3, 0xbff62bec3c94e4c0, + 0xbfecccccccccccb9, 0xbff62bec3c94e4d2, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbff63f074e0ea333, + 0xbfecccccccccccd4, 0xbff63f074e0ea312, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbff652399c2ca72f, + 0xbfeccccccccccccd, 0xbff652399c2ca73b, 0x0, 0x0, - 0xbfecccccccccccf4, 0xbff665835763a946, + 0xbfecccccccccccf1, 0xbff665835763a99b, 0x0, 0x0, - 0xbfecccccccccccee, 0xbff678e4b0ad73b2, + 0xbfecccccccccccbb, 0xbff678e4b0ad73ad, 0x0, 0x0, - 0xbfeccccccccccc24, 0xbff68c5dd98aac5e, + 0xbfeccccccccccce2, 0xbff68c5dd98aac5e, 0x0, 0x0, - 0xbfeccccccccccc6e, 0xbff69fef0404ab60, + 0xbfecccccccccccd0, 0xbff69fef0404ab26, 0x0, 0x0, - 0xbfeccccccccccd7d, 0xbff6b39862af5395, + 0xbfeccccccccccd30, 0xbff6b39862af5350, 0x0, 0x0, - 0xbfecccccccccccf3, 0xbff6c75a28aaf62e, + 0xbfeccccccccccd0b, 0xbff6c75a28aaf68a, 0x0, 0x0, - 0xbfeccccccccccd88, 0xbff6db3489a64076, + 0xbfecccccccccccd9, 0xbff6db3489a64071, 0x0, 0x0, - 0xbfecccccccccccca, 0xbff6ef27b9e027dd, + 0xbfecccccccccccc2, 0xbff6ef27b9e02804, 0x0, 0x0, - 0xbfeccccccccccc9b, 0xbff70333ee29ebe2, + 0xbfecccccccccccb2, 0xbff70333ee29ebe2, 0x0, 0x0, - 0xbfecccccccccccea, 0xbff717595be9152c, + 0xbfecccccccccccd8, 0xbff717595be91516, 0x0, 0x0, - 0xbfeccccccccccd07, 0xbff72b983919833e, + 0xbfecccccccccccda, 0xbff72b9839198306, 0x0, 0x0, - 0xbfeccccccccccc52, 0xbff73ff0bc4f8036, + 0xbfecccccccccccc6, 0xbff73ff0bc4f8024, 0x0, 0x0, - 0xbfeccccccccccca0, 0xbff754631cb9dfaa, + 0xbfecccccccccccd1, 0xbff754631cb9df2e, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbff768ef92242236, + 0xbfecccccccccccff, 0xbff768ef9224221b, 0x0, 0x0, - 0xbfecccccccccccd2, 0xbff77d9654f8a942, + 0xbfecccccccccccd7, 0xbff77d9654f8a92b, 0x0, 0x0, - 0xbfecccccccccccb6, 0xbff792579e42ec9c, + 0xbfecccccccccccc5, 0xbff792579e42ecab, 0x0, 0x0, - 0xbfecccccccccccbd, 0xbff7a733a7b1bf26, + 0xbfecccccccccccc0, 0xbff7a733a7b1bf0a, 0x0, 0x0, - 0xbfecccccccccccde, 0xbff7bc2aab9999fa, + 0xbfeccccccccccce6, 0xbff7bc2aab9999d4, 0x0, 0x0, - 0xbfeccccccccccc81, 0xbff7d13ce4f6f3f1, + 0xbfeccccccccccca4, 0xbff7d13ce4f6f3d3, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbff7e66a8f70a111, + 0xbfecccccccccccd2, 0xbff7e66a8f70a120, 0x0, 0x0, - 0xbfeccccccccccc42, 0xbff7fbb3e75a3f70, + 0xbfeccccccccccd18, 0xbff7fbb3e75a3f92, 0x0, 0x0, - 0xbfecccccccccccb4, 0xbff8111929b6a8d4, + 0xbfecccccccccccb3, 0xbff8111929b6a8a8, 0x0, 0x0, - 0xbfecccccccccccab, 0xbff8269a943a782e, + 0xbfeccccccccccce3, 0xbff8269a943a782c, 0x0, 0x0, - 0xbfecccccccccccd5, 0xbff83c38654e9095, + 0xbfecccccccccccf6, 0xbff83c38654e90a8, 0x0, 0x0, - 0xbfeccccccccccceb, 0xbff851f2dc12b571, + 0xbfeccccccccccd00, 0xbff851f2dc12b581, 0x0, 0x0, - 0xbfecccccccccccea, 0xbff867ca38602c06, + 0xbfecccccccccccb4, 0xbff867ca38602c12, 0x0, 0x0, - 0xbfecccccccccccca, 0xbff87dbebacc696b, + 0xbfecccccccccccde, 0xbff87dbebacc6988, 0x0, 0x0, - 0xbfeccccccccccc7a, 0xbff893d0a4abcb95, + 0xbfecccccccccccdb, 0xbff893d0a4abcba2, 0x0, 0x0, - 0xbfeccccccccccc54, 0xbff8aa0038145ecd, + 0xbfecccccccccccc4, 0xbff8aa0038145ef2, 0x0, 0x0, - 0xbfecccccccccccb5, 0xbff8c04db7e0b06a, + 0xbfeccccccccccce1, 0xbff8c04db7e0b06a, 0x0, 0x0, - 0xbfeccccccccccceb, 0xbff8d6b967b2acb0, + 0xbfeccccccccccccd, 0xbff8d6b967b2ac9f, 0x0, 0x0, - 0xbfeccccccccccca2, 0xbff8ed438bf68a6e, + 0xbfecccccccccccce, 0xbff8ed438bf68a5a, 0x0, 0x0, - 0xbfeccccccccccd04, 0xbff903ec69e5c452, + 0xbfecccccccccccc0, 0xbff903ec69e5c450, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbff91ab4478a1e82, + 0xbfecccccccccccdf, 0xbff91ab4478a1e83, 0x0, 0x0, - 0xbfeccccccccccceb, 0xbff9319b6bc0bad2, + 0xbfecccccccccccc0, 0xbff9319b6bc0bacf, 0x0, 0x0, - 0xbfeccccccccccc90, 0xbff948a21e3d3a48, + 0xbfecccccccccccdb, 0xbff948a21e3d3a34, 0x0, 0x0, - 0xbfeccccccccccc63, 0xbff95fc8a78ced6a, + 0xbfecccccccccccc6, 0xbff95fc8a78ced54, 0x0, 0x0, - 0xbfecccccccccccf2, 0xbff9770f511a13a8, + 0xbfeccccccccccce0, 0xbff9770f511a13c9, 0x0, 0x0, - 0xbfecccccccccccd4, 0xbff98e76652f2863, + 0xbfecccccccccccc2, 0xbff98e76652f2855, 0x0, 0x0, - 0xbfeccccccccccced, 0xbff9a5fe2efa3ef7, + 0xbfecccccccccccd0, 0xbff9a5fe2efa3f08, 0x0, 0x0, - 0xbfecccccccccccdc, 0xbff9bda6fa907193, + 0xbfecccccccccccd5, 0xbff9bda6fa90719c, 0x0, 0x0, - 0xbfecccccccccccb8, 0xbff9d57114f15b00, + 0xbfecccccccccccb5, 0xbff9d57114f15afc, 0x0, 0x0, - 0xbfecccccccccccb9, 0xbff9ed5ccc0aa49e, + 0xbfeccccccccccccc, 0xbff9ed5ccc0aa4a0, 0x0, 0x0, - 0xbfeccccccccccc7d, 0xbffa056a6ebba34d, + 0xbfecccccccccccaf, 0xbffa056a6ebba348, 0x0, 0x0, - 0xbfeccccccccccc42, 0xbffa1d9a4cd9044e, + 0xbfeccccccccccc9c, 0xbffa1d9a4cd9046d, 0x0, 0x0, - 0xbfecccccccccccc9, 0xbffa35ecb7308df9, + 0xbfecccccccccccd4, 0xbffa35ecb7308df4, 0x0, 0x0, - 0xbfeccccccccccca5, 0xbffa4e61ff8cef2d, + 0xbfecccccccccccb4, 0xbffa4e61ff8cef40, 0x0, 0x0, - 0xbfecccccccccccce, 0xbffa66fa78b9a308, + 0xbfecccccccccccdd, 0xbffa66fa78b9a2fe, 0x0, 0x0, - 0xbfeccccccccccced, 0xbffa7fb67686e587, + 0xbfecccccccccccb7, 0xbffa7fb67686e560, 0x0, 0x0, - 0xbfeccccccccccd05, 0xbffa98964dcdbbc9, + 0xbfecccccccccccdf, 0xbffa98964dcdbbb9, 0x0, 0x0, - 0xbfecccccccccccb6, 0xbffab19a54740f96, + 0xbfecccccccccccd0, 0xbffab19a54740f83, 0x0, 0x0, - 0xbfeccccccccccd30, 0xbffacac2e170dd60, + 0xbfecccccccccccc9, 0xbffacac2e170dd35, 0x0, 0x0, - 0xbfecccccccccccc2, 0xbffae4104cd07809, + 0xbfeccccccccccb9f, 0xbffae4104cd07792, 0x0, 0x0, - 0xbfeccccccccccccd, 0xbffafd82efb8dea2, + 0xbfeccccccccccca0, 0xbffafd82efb8ded8, 0x0, 0x0, - 0xbfecccccccccccfa, 0xbffb171b246e2ba4, + 0xbfeccccccccccca9, 0xbffb171b246e2bbb, 0x0, 0x0, - 0xbfecccccccccccbe, 0xbffb30d946571384, + 0xbfecccccccccccd4, 0xbffb30d946571379, 0x0, 0x0, - 0xbfecccccccccccd4, 0xbffb4abdb2017dad, + 0xbfecccccccccccef, 0xbffb4abdb2017d96, 0x0, 0x0, - 0xbfeccccccccccce4, 0xbffb64c8c5273245, + 0xbfecccccccccccb1, 0xbffb64c8c5273240, 0x0, 0x0, - 0xbfeccccccccccc9b, 0xbffb7efadeb29eff, + 0xbfecccccccccccd6, 0xbffb7efadeb29f06, 0x0, 0x0, - 0xbfeccccccccccce2, 0xbffb99545ec3b2fe, + 0xbfeccccccccccce4, 0xbffb99545ec3b30b, 0x0, 0x0, - 0xbfeccccccccccd05, 0xbffbb3d5a6b4d339, + 0xbfecccccccccccd2, 0xbffbb3d5a6b4d307, 0x0, 0x0, - 0xbfeccccccccccca6, 0xbffbce7f191fe5b0, + 0xbfeccccccccccd30, 0xbffbce7f191fe5a8, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbffbe95119e378e3, + 0xbfeccccccccccce2, 0xbffbe95119e378d0, 0x0, 0x0, - 0xbfecccccccccccd3, 0xbffc044c0e2800ec, + 0xbfecccccccccccd5, 0xbffc044c0e2800cb, 0x0, 0x0, - 0xbfecccccccccccc0, 0xbffc1f705c6530fb, + 0xbfecccccccccccd6, 0xbffc1f705c65310c, 0x0, 0x0, - 0xbfecccccccccccb2, 0xbffc3abe6c67700f, + 0xbfecccccccccccc5, 0xbffc3abe6c676ff9, 0x0, 0x0, - 0xbfeccccccccccced, 0xbffc5636a75566a6, + 0xbfeccccccccccccb, 0xbffc5636a75566ba, 0x0, 0x0, - 0xbfecccccccccccad, 0xbffc71d977b5aabf, + 0xbfecccccccccccc8, 0xbffc71d977b5aabc, 0x0, 0x0, - 0xbfecccccccccccef, 0xbffc8da749748716, + 0xbfeccccccccccca0, 0xbffc8da7497486cf, 0x0, 0x0, - 0xbfecccccccccccc7, 0xbffca9a089e9df6b, + 0xbfecccccccccccdc, 0xbffca9a089e9df53, 0x0, 0x0, - 0xbfecccccccccccaf, 0xbffcc5c5a7df34be, + 0xbfeccccccccccce6, 0xbffcc5c5a7df34b5, 0x0, 0x0, - 0xbfecccccccccccad, 0xbffce2171395c5bb, + 0xbfecccccccccccc5, 0xbffce2171395c5c6, 0x0, 0x0, - 0xbfecccccccccccd7, 0xbffcfe953ecccfaa, + 0xbfecccccccccccd6, 0xbffcfe953ecccfa5, 0x0, 0x0, - 0xbfecccccccccccaf, 0xbffd1b409cc7eebc, + 0xbfeccccccccccce7, 0xbffd1b409cc7eecd, 0x0, 0x0, - 0xbfecccccccccccd4, 0xbffd3819a255a101, + 0xbfecccccccccccd2, 0xbffd3819a255a103, 0x0, 0x0, - 0xbfeccccccccccccb, 0xbffd5520c5d5e819, + 0xbfeccccccccccce3, 0xbffd5520c5d5e80f, 0x0, 0x0, - 0xbfecccccccccccab, 0xbffd72567f411015, + 0xbfeccccccccccce9, 0xbffd72567f410fb8, 0x0, 0x0, - 0xbfeccccccccccd0d, 0xbffd8fbb482e96da, + 0xbfecccccccccccbb, 0xbffd8fbb482e96da, 0x0, 0x0, - 0xbfeccccccccccce2, 0xbffdad4f9bdc3b08, + 0xbfecccccccccccbd, 0xbffdad4f9bdc3b0a, 0x0, 0x0, - 0xbfecccccccccccee, 0xbffdcb13f7352bf6, + 0xbfecccccccccccc8, 0xbffdcb13f7352bf5, 0x0, 0x0, - 0xbfeccccccccccce0, 0xbffde908d8d9616f, + 0xbfeccccccccccd01, 0xbffde908d8d9617c, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbffe072ec1251aee, + 0xbfeccccccccccce1, 0xbffe072ec1251afb, 0x0, 0x0, - 0xbfeccccccccccd1f, 0xbffe258632388470, + 0xbfecccccccccccbf, 0xbffe25863238844e, 0x0, 0x0, - 0xbfeccccccccccd29, 0xbffe440fafff84e4, + 0xbfecccccccccccc4, 0xbffe440fafff84d9, 0x0, 0x0, - 0xbfeccccccccccd3c, 0xbffe62cbc039b74e, + 0xbfeccccccccccd18, 0xbffe62cbc039b710, 0x0, 0x0, - 0xbfeccccccccccc52, 0xbffe81baea828aa8, + 0xbfeccccccccccc9e, 0xbffe81baea828a73, 0x0, 0x0, - 0xbfecccccccccccd6, 0xbffea0ddb859948e, + 0xbfecccccccccccbe, 0xbffea0ddb8599488, 0x0, 0x0, - 0xbfeccccccccccce6, 0xbffec034b52b06e2, + 0xbfecccccccccccb3, 0xbffec034b52b06c9, 0x0, 0x0, - 0xbfecccccccccccc1, 0xbffedfc06e585b76, + 0xbfecccccccccccd0, 0xbffedfc06e585b6d, 0x0, 0x0, - 0xbfecccccccccccd8, 0xbffeff8173412b99, + 0xbfecccccccccccd1, 0xbffeff8173412b90, 0x0, 0x0, - 0xbfeccccccccccc9d, 0xbfff1f78554c3639, + 0xbfecccccccccccbb, 0xbfff1f78554c363c, 0x0, 0x0, - 0xbfecccccccccccc3, 0xbfff3fa5a7f099dd, + 0xbfeccccccccccccd, 0xbfff3fa5a7f099de, 0x0, 0x0, - 0xbfeccccccccccc89, 0xbfff600a00bf3fcb, + 0xbfeccccccccccce3, 0xbfff600a00bf3ffa, 0x0, 0x0, - 0xbfeccccccccccd03, 0xbfff80a5f76c7a63, + 0xbfeccccccccccca7, 0xbfff80a5f76c7a9a, 0x0, 0x0, - 0xbfeccccccccccca5, 0xbfffa17a25d9db34, + 0xbfecccccccccccc2, 0xbfffa17a25d9db41, 0x0, 0x0, - 0xbfecccccccccccb1, 0xbfffc28728203ad9, + 0xbfecccccccccccc9, 0xbfffc28728203ae4, 0x0, 0x0, - 0xbfeccccccccccce8, 0xbfffe3cd9c99fd8a, + 0xbfeccccccccccce2, 0xbfffe3cd9c99fd90, 0x0, 0x0, - 0xbfecccccccccccde, 0xc00002a711f6c70a, + 0xbfeccccccccccc95, 0xc00002a711f6c6fd, 0x0, 0x0, - 0xbfecccccccccccbd, 0xc0001384b08c099a, + 0xbfeccccccccccce6, 0xc0001384b08c098e, 0x0, 0x0, - 0xbfeccccccccccced, 0xc000247ffcbc31c4, + 0xbfecccccccccccbf, 0xc000247ffcbc31bd, 0x0, 0x0, - 0xbfecccccccccccf7, 0xc00035994a6d1a07, + 0xbfeccccccccccc58, 0xc00035994a6d1a22, 0x0, 0x0, - 0xbfecccccccccccdf, 0xc00046d0eec0c4b0, + 0xbfecccccccccccc3, 0xc00046d0eec0c4ac, 0x0, 0x0, - 0xbfecccccccccccdf, 0xc0005827401b329d, + 0xbfecccccccccccd4, 0xc0005827401b32a6, 0x0, 0x0, - 0xbfecccccccccccaf, 0xc000699c96285e2d, + 0xbfecccccccccccc6, 0xc000699c96285e3e, 0x0, 0x0, - 0xbfecccccccccccd2, 0xc0007b3149e25608, + 0xbfeccccccccccce7, 0xc0007b3149e25610, 0x0, 0x0, - 0xbfeccccccccccd00, 0xc0008ce5b5977bf7, + 0xbfeccccccccccce9, 0xc0008ce5b5977bee, 0x0, 0x0, - 0xbfecccccccccccef, 0xc0009eba34f0e7c2, + 0xbfecccccccccccc7, 0xc0009eba34f0e7ce, 0x0, 0x0, - 0xbfecccccccccccee, 0xc000b0af24f8eed4, + 0xbfecccccccccccc4, 0xc000b0af24f8eeca, 0x0, 0x0, - 0xbfecccccccccccb8, 0xc000c2c4e421d154, + 0xbfecccccccccccac, 0xc000c2c4e421d17c, 0x0, 0x0, - 0xbfecccccccccccbe, 0xc000d4fbd24c8fa4, + 0xbfecccccccccccff, 0xc000d4fbd24c8f96, 0x0, 0x0, - 0xbfeccccccccccca0, 0xc000e75450cfe5aa, + 0xbfecccccccccccbb, 0xc000e75450cfe5ac, 0x0, 0x0, - 0xbfecccccccccccee, 0xc000f9cec27f7104, + 0xbfecccccccccccaf, 0xc000f9cec27f710a, 0x0, 0x0, - 0xbfecccccccccccbb, 0xc0010c6b8bb300a6, + 0xbfeccccccccccc89, 0xc0010c6b8bb30094, 0x0, 0x0, - 0xbfeccccccccccc5e, 0xc0011f2b124e0f50, + 0xbfeccccccccccce7, 0xc0011f2b124e0f3e, 0x0, 0x0, - 0xbfeccccccccccca0, 0xc001320dbdc76b71, + 0xbfecccccccccccd6, 0xc001320dbdc76b74, 0x0, 0x0, - 0xbfeccccccccccc35, 0xc0014513f7310bb1, + 0xbfecccccccccccc1, 0xc0014513f7310bc4, 0x0, 0x0, - 0xbfeccccccccccb92, 0xc001583e294013d0, + 0xbfecccccccccccf1, 0xc001583e29401308, 0x0, 0x0, - 0xbfeccccccccccd88, 0xc0016b8cc055062e, + 0xbfeccccccccccdc3, 0xc0016b8cc0550603, 0x0, 0x0, - 0xbfecccccccccccfe, 0xc0017f002a842ccc, + 0xbfecccccccccccf6, 0xc0017f002a842cea, 0x0, 0x0, - 0xbfeccccccccccccd, 0xc0019298d79e303c, + 0xbfecccccccccccd0, 0xc0019298d79e3039, 0x0, 0x0, - 0xbfecccccccccccff, 0xc001a6573938e34b, + 0xbfeccccccccccd38, 0xc001a6573938e33e, 0x0, 0x0, - 0xbfecccccccccccdc, 0xc001ba3bc2b8472a, + 0xbfeccccccccccc9b, 0xc001ba3bc2b8471e, 0x0, 0x0, - 0xbfecccccccccccd2, 0xc001ce46e957c467, + 0xbfecccccccccccc0, 0xc001ce46e957c46c, 0x0, 0x0, - 0xbfeccccccccccc96, 0xc001e27924339dab, + 0xbfecccccccccccef, 0xc001e27924339dab, 0x0, 0x0, - 0xbfeccccccccccd09, 0xc001f6d2ec529c6c, + 0xbfeccccccccccd08, 0xc001f6d2ec529c8c, 0x0, 0x0, - 0xbfeccccccccccceb, 0xc0020b54bcaffaa2, + 0xbfecccccccccccd8, 0xc0020b54bcaffa9e, 0x0, 0x0, - 0xbfecccccccccccd1, 0xc0021fff1245885e, + 0xbfecccccccccccc1, 0xc0021fff12458860, 0x0, 0x0, - 0xbfecccccccccccbb, 0xc00234d26c16131a, + 0xbfecccccccccccd0, 0xc00234d26c16131b, 0x0, 0x0, - 0xbfeccccccccccccc, 0xc00249cf4b380c9d, + 0xbfeccccccccccccd, 0xc00249cf4b380c96, 0x0, 0x0, - 0xbfecccccccccccb4, 0xc0025ef632e07621, + 0xbfecccccccccccd3, 0xc0025ef632e0762c, 0x0, 0x0, - 0xbfecccccccccccb8, 0xc0027447a86e1048, + 0xbfecccccccccccdb, 0xc0027447a86e1056, 0x0, 0x0, - 0xbfeccccccccccc9c, 0xc00289c43374d204, + 0xbfecccccccccccb5, 0xc00289c43374d20c, 0x0, 0x0, - 0xbfecccccccccccc0, 0xc0029f6c5dc9a8f0, + 0xbfecccccccccccde, 0xc0029f6c5dc9a8f4, 0x0, 0x0, - 0xbfecccccccccccdd, 0xc002b540b38e84f8, + 0xbfecccccccccccd1, 0xc002b540b38e84fc, 0x0, 0x0, - 0xbfecccccccccccfb, 0xc002cb41c33eb1be, + 0xbfecccccccccccd0, 0xc002cb41c33eb1bc, 0x0, 0x0, - 0xbfeccccccccccccf, 0xc002e1701dbb7faa, + 0xbfecccccccccccbf, 0xc002e1701dbb7fba, 0x0, 0x0, - 0xbfeccccccccccccd, 0xc002f7cc56593f72, + 0xbfeccccccccccc9b, 0xc002f7cc56593f64, 0x0, 0x0, - 0xbfecccccccccccea, 0xc0030e5702ec9178, + 0xbfecccccccccccb3, 0xc0030e5702ec917e, 0x0, 0x0, - 0xbfecccccccccccb8, 0xc0032510bbd80de1, + 0xbfeccccccccccceb, 0xc0032510bbd80dd9, 0x0, 0x0, - 0xbfecccccccccccb0, 0xc0033bfa1c1a44ea, + 0xbfecccccccccccbc, 0xc0033bfa1c1a44f9, 0x0, 0x0, - 0xbfeccccccccccc6f, 0xc0035313c15c1cd5, + 0xbfecccccccccccbc, 0xc0035313c15c1cfe, 0x0, 0x0, - 0xbfeccccccccccc96, 0xc0036a5e4bff8f00, + 0xbfeccccccccccccc, 0xc0036a5e4bff8efe, 0x0, 0x0, - 0xbfeccccccccccc8b, 0xc00381da5f2ec5ea, + 0xbfecccccccccccce, 0xc00381da5f2ec5e0, 0x0, 0x0, - 0xbfeccccccccccc96, 0xc0039988a0eba29f, + 0xbfeccccccccccce2, 0xc0039988a0eba29e, 0x0, 0x0, - 0xbfecccccccccccad, 0xc003b169ba1fa8cc, + 0xbfeccccccccccce5, 0xc003b169ba1fa8da, 0x0, 0x0, - 0xbfecccccccccccb6, 0xc003c97e56ac5710, + 0xbfeccccccccccccd, 0xc003c97e56ac5709, 0x0, 0x0, - 0xbfeccccccccccc95, 0xc003e1c7257bed45, + 0xbfecccccccccccd9, 0xc003e1c7257bed48, 0x0, 0x0, - 0xbfeccccccccccc90, 0xc003fa44d892a6a2, + 0xbfecccccccccccf0, 0xc003fa44d892a698, 0x0, 0x0, - 0xbfeccccccccccaf3, 0xc00412f82520682b, + 0xbfeccccccccccd1b, 0xc00412f825206828, 0x0, 0x0, - 0xbfecccccccccccbb, 0xc0042be1c392e8e4, + 0xbfeccccccccccc4b, 0xc0042be1c392e8db, 0x0, 0x0, - 0xbfeccccccccccccc, 0xc00445026fa85936, + 0xbfecccccccccccd1, 0xc00445026fa85926, 0x0, 0x0, - 0xbfeccccccccccca6, 0xc0045e5ae882884a, + 0xbfeccccccccccccb, 0xc0045e5ae8828855, 0x0, 0x0, - 0xbfecccccccccccc8, 0xc00477ebf0ba9262, + 0xbfeccccccccccce1, 0xc00477ebf0ba9256, 0x0, 0x0, - 0xbfecccccccccccd4, 0xc00491b64e7515b6, + 0xbfecccccccccccc2, 0xc00491b64e75159c, 0x0, 0x0, - 0xbfecccccccccccde, 0xc004abbacb76f80e, + 0xbfecccccccccccc0, 0xc004abbacb76f81f, 0x0, 0x0, - 0xbfecccccccccccc0, 0xc004c5fa353abd43, + 0xbfecccccccccccb4, 0xc004c5fa353abd54, 0x0, 0x0, - 0xbfecccccccccccdc, 0xc004e0755d0675b0, + 0xbfeccccccccccd02, 0xc004e0755d0675e9, 0x0, 0x0, - 0xbfecccccccccccad, 0xc004fb2d180249ad, + 0xbfecccccccccccdd, 0xc004fb2d18024997, 0x0, 0x0, - 0xbfecccccccccccd0, 0xc00516223f4fa420, + 0xbfeccccccccccce3, 0xc00516223f4fa429, 0x0, 0x0, - 0xbfeccccccccccced, 0xc0053155b02107e8, + 0xbfecccccccccccda, 0xc0053155b02107e9, 0x0, 0x0, - 0xbfeccccccccccca1, 0xc0054cc84bd28cac, + 0xbfeccccccccccceb, 0xc0054cc84bd28cb0, 0x0, 0x0, - 0xbfecccccccccccad, 0xc005687af8031163, + 0xbfeccccccccccca1, 0xc005687af8031158, 0x0, 0x0, - 0xbfeccccccccccd0b, 0xc005846e9eae2482, + 0xbfeccccccccccce3, 0xc005846e9eae2481, 0x0, 0x0, - 0xbfeccccccccccd00, 0xc005a0a42e46aaf1, + 0xbfecccccccccccd1, 0xc005a0a42e46aaf8, 0x0, 0x0, - 0xbfeccccccccccd0b, 0xc005bd1c99d24b74, + 0xbfeccccccccccca5, 0xc005bd1c99d24b6f, 0x0, 0x0, - 0xbfeccccccccccce6, 0xc005d9d8d905a46e, + 0xbfeccccccccccd03, 0xc005d9d8d905a477, 0x0, 0x0, - 0xbfeccccccccccc82, 0xc005f6d9e8615412, + 0xbfeccccccccccce4, 0xc005f6d9e861540e, 0x0, 0x0, - 0xbfeccccccccccc8e, 0xc0061420c94fd966, + 0xbfeccccccccccce1, 0xc0061420c94fd96a, 0x0, 0x0, - 0xbfecccccccccccac, 0xc00631ae8244555a, + 0xbfecccccccccccd3, 0xc00631ae8244557a, 0x0, 0x0, - 0xbfecccccccccccd4, 0xc0064f841eda34f0, + 0xbfeccccccccccccf, 0xc0064f841eda34f5, 0x0, 0x0, - 0xbfecccccccccccac, 0xc0066da2aff5c9d2, + 0xbfecccccccccccc1, 0xc0066da2aff5c9de, 0x0, 0x0, - 0xbfecccccccccccb3, 0xc0068c0b4be5dddf, + 0xbfecccccccccccc5, 0xc0068c0b4be5dde4, 0x0, 0x0, - 0xbfecccccccccccc2, 0xc006aabf0e864566, + 0xbfeccccccccccc7d, 0xc006aabf0e864575, 0x0, 0x0, - 0xbfecccccccccccc3, 0xc006c9bf19637d5b, + 0xbfeccccccccccccf, 0xc006c9bf19637d58, 0x0, 0x0, - 0xbfecccccccccccbc, 0xc006e90c93df5c3c, + 0xbfecccccccccccc9, 0xc006e90c93df5c4c, 0x0, 0x0, - 0xbfecccccccccccfd, 0xc00708a8ab56e0f8, + 0xbfeccccccccccccf, 0xc00708a8ab56e0f2, 0x0, 0x0, - 0xbfeccccccccccd2e, 0xc00728949349286a, + 0xbfecccccccccccd8, 0xc00728949349286b, 0x0, 0x0, - 0xbfecccccccccccc0, 0xc00748d1857f95ea, + 0xbfecccccccccccd7, 0xc00748d1857f95e6, 0x0, 0x0, - 0xbfecccccccccccee, 0xc0076960c23738b2, + 0xbfeccccccccccce0, 0xc0076960c23738be, 0x0, 0x0, - 0xbfeccccccccccc3e, 0xc0078a43904b7985, + 0xbfecccccccccccfb, 0xc0078a43904b798a, 0x0, 0x0, - 0xbfeccccccccccd18, 0xc007ab7b3d621d36, + 0xbfeccccccccccd0f, 0xc007ab7b3d621d14, 0x0, 0x0, - 0xbfecccccccccccdf, 0xc007cd091e18a749, + 0xbfecccccccccccc5, 0xc007cd091e18a764, 0x0, 0x0, - 0xbfeccccccccccc52, 0xc007eeee8e332dad, + 0xbfecccccccccccc3, 0xc007eeee8e332dc2, 0x0, 0x0, - 0xbfeccccccccccd0a, 0xc008112cf0cca319, + 0xbfecccccccccccb6, 0xc008112cf0cca310, 0x0, 0x0, - 0xbfeccccccccccc7e, 0xc00833c5b088ae4a, + 0xbfeccccccccccc9d, 0xc00833c5b088ae5c, 0x0, 0x0, - 0xbfecccccccccccdd, 0xc00856ba3fc7199c, + 0xbfecccccccccccd3, 0xc00856ba3fc7199c, 0x0, 0x0, - 0xbfeccccccccccdd4, 0xc0087a0c18d8e810, + 0xbfecccccccccccca, 0xc0087a0c18d8e832, 0x0, 0x0, - 0xbfecccccccccccc8, 0xc0089dbcbe3724a4, + 0xbfeccccccccccccb, 0xc0089dbcbe3724a8, 0x0, 0x0, - 0xbfecccccccccccd8, 0xc008c1cdbabb76f1, + 0xbfeccccccccccccd, 0xc008c1cdbabb76dd, 0x0, 0x0, - 0xbfeccccccccccca5, 0xc008e640a1da9395, + 0xbfeccccccccccce9, 0xc008e640a1da9396, 0x0, 0x0, - 0xbfeccccccccccc81, 0xc0090b170fe098a7, + 0xbfecccccccccccd6, 0xc0090b170fe098f0, 0x0, 0x0, - 0xbfecccccccccccb9, 0xc0093052aa2f67ee, + 0xbfecccccccccccee, 0xc0093052aa2f67ec, 0x0, 0x0, - 0xbfeccccccccccdba, 0xc00955f51f7f11ee, + 0xbfeccccccccccca4, 0xc00955f51f7f11e2, 0x0, 0x0, - 0xbfecccccccccccc5, 0xc0097c0028206d26, + 0xbfecccccccccccb8, 0xc0097c0028206d10, 0x0, 0x0, - 0xbfeccccccccccd57, 0xc009a2758641e55e, + 0xbfecccccccccccea, 0xc009a2758641e554, 0x0, 0x0, - 0xbfeccccccccccc95, 0xc009c9570636a182, + 0xbfecccccccccccc8, 0xc009c9570636a190, 0x0, 0x0, - 0xbfecccccccccccfe, 0xc009f0a67ec0134a, + 0xbfeccccccccccca6, 0xc009f0a67ec0133b, 0x0, 0x0, - 0xbfecccccccccccaa, 0xc00a1865d15a0a17, + 0xbfecccccccccccbe, 0xc00a1865d15a0a20, 0x0, 0x0, - 0xbfecccccccccccca, 0xc00a4096ea8965b4, + 0xbfecccccccccccd0, 0xc00a4096ea89659f, 0x0, 0x0, - 0xbfecccccccccccf5, 0xc00a693bc22d7f90, + 0xbfeccccccccccccc, 0xc00a693bc22d7f91, 0x0, 0x0, - 0xbfeccccccccccc64, 0xc00a92565bd46a1f, + 0xbfeccccccccccca4, 0xc00a92565bd46a16, 0x0, 0x0, - 0xbfecccccccccccc0, 0xc00abbe8c71221f1, + 0xbfecccccccccccc5, 0xc00abbe8c71221f0, 0x0, 0x0, - 0xbfecccccccccccc2, 0xc00ae5f51fdad144, + 0xbfecccccccccccd7, 0xc00ae5f51fdad146, 0x0, 0x0, - 0xbfeccccccccccce3, 0xc00b107d8ee044b0, + 0xbfecccccccccccbe, 0xc00b107d8ee044ba, 0x0, 0x0, - 0xbfeccccccccccd02, 0xc00b3b8449f2b412, + 0xbfecccccccccccbc, 0xc00b3b8449f2b448, 0x0, 0x0, - 0xbfeccccccccccce0, 0xc00b670b94650358, + 0xbfeccccccccccca4, 0xc00b670b94650369, 0x0, 0x0, - 0xbfeccccccccccd15, 0xc00b9315bf749f3e, + 0xbfeccccccccccce8, 0xc00b9315bf749f3e, 0x0, 0x0, - 0xbfecccccccccccad, 0xc00bbfa52ab51ecf, + 0xbfecccccccccccd6, 0xc00bbfa52ab51eda, 0x0, 0x0, - 0xbfecccccccccccca, 0xc00becbc447fd208, + 0xbfecccccccccccec, 0xc00becbc447fd1f4, 0x0, 0x0, - 0xbfecccccccccccc8, 0xc00c1a5d8a676748, + 0xbfeccccccccccce1, 0xc00c1a5d8a676742, 0x0, 0x0, - 0xbfeccccccccccca7, 0xc00c488b89afd7a1, + 0xbfecccccccccccd8, 0xc00c488b89afd787, 0x0, 0x0, - 0xbfecccccccccccc2, 0xc00c7748dfcac5b0, + 0xbfeccccccccccce8, 0xc00c7748dfcac5ba, 0x0, 0x0, - 0xbfeccccccccccc2e, 0xc00ca6983ad88520, + 0xbfecccccccccccce, 0xc00ca6983ad88528, 0x0, 0x0, - 0xbfeccccccccccce8, 0xc00cd67c5a2dfa3f, + 0xbfeccccccccccce3, 0xc00cd67c5a2dfa5f, 0x0, 0x0, - 0xbfecccccccccccd7, 0xc00d06f80edf8ce0, + 0xbfeccccccccccce5, 0xc00d06f80edf8cd8, 0x0, 0x0, - 0xbfecccccccccccd6, 0xc00d380e3c5164c2, + 0xbfecccccccccccbf, 0xc00d380e3c5164c0, 0x0, 0x0, - 0xbfeccccccccccd23, 0xc00d69c1d8cd2f2f, + 0xbfeccccccccccccd, 0xc00d69c1d8cd2f22, 0x0, 0x0, - 0xbfecccccccccccc1, 0xc00d9c15ee1daada, + 0xbfeccccccccccce4, 0xc00d9c15ee1daad3, 0x0, 0x0, - 0xbfeccccccccccccd, 0xc00dcf0d9a303e41, + 0xbfecccccccccccd0, 0xc00dcf0d9a303e43, 0x0, 0x0, - 0xbfeccccccccccca3, 0xc00e02ac0fbcdfb0, + 0xbfeccccccccccce8, 0xc00e02ac0fbcdfb8, 0x0, 0x0, - 0xbfecccccccccccbf, 0xc00e36f496f497ba, + 0xbfeccccccccccce7, 0xc00e36f496f497c0, 0x0, 0x0, - 0xbfecccccccccccca, 0xc00e6bea8e36ed4e, + 0xbfecccccccccccbd, 0xc00e6bea8e36ed4a, 0x0, 0x0, - 0xbfeccccccccccce5, 0xc00ea1916ace8d2e, + 0xbfeccccccccccccb, 0xc00ea1916ace8d14, 0x0, 0x0, - 0xbfecccccccccccc3, 0xc00ed7ecb9b583d1, + 0xbfecccccccccccac, 0xc00ed7ecb9b583d6, 0x0, 0x0, - 0xbfeccccccccccca1, 0xc00f0f0020616588, + 0xbfeccccccccccc9d, 0xc00f0f0020616567, 0x0, 0x0, - 0xbfecccccccccccc9, 0xc00f46cf5d97c2d0, + 0xbfeccccccccccca5, 0xc00f46cf5d97c2dd, 0x0, 0x0, - 0xbfecccccccccccd6, 0xc00f7f5e4a4b52cd, + 0xbfecccccccccccce, 0xc00f7f5e4a4b52ce, 0x0, 0x0, - 0xbfecccccccccccd8, 0xc00fb8b0da8239e7, + 0xbfecccccccccccb1, 0xc00fb8b0da8239e3, 0x0, 0x0, - 0xbfeccccccccccc51, 0xc00ff2cb1e45e1d3, + 0xbfecccccccccccd7, 0xc00ff2cb1e45e1f6, 0x0, 0x0, - 0xbfeccccccccccd40, 0xc01016d8a14e6c76, + 0xbfeccccccccccce9, 0xc01016d8a14e6c70, 0x0, 0x0, - 0xbfecccccccccccd5, 0xc01034b3c9479aaf, + 0xbfeccccccccccce4, 0xc01034b3c9479aaf, 0x0, 0x0, - 0xbfecccccccccccba, 0xc01052f93c1b0269, + 0xbfeccccccccccce2, 0xc01052f93c1b026a, 0x0, 0x0, - 0xbfecccccccccccd6, 0xc01071ab3eeb2925, + 0xbfeccccccccccccd, 0xc01071ab3eeb291b, 0x0, 0x0, - 0xbfecccccccccccd8, 0xc01090cc27842c11, + 0xbfecccccccccccbe, 0xc01090cc27842c10, 0x0, 0x0, - 0xbfecccccccccccd0, 0xc010b05e5cf5beb1, + 0xbfeccccccccccce7, 0xc010b05e5cf5beaa, 0x0, 0x0, - 0xbfecccccccccccee, 0xc010d0645833e0c0, + 0xbfecccccccccccdc, 0xc010d0645833e0bc, 0x0, 0x0, - 0xbfeccccccccccd1e, 0xc010f0e0a4bea54e, + 0xbfecccccccccccee, 0xc010f0e0a4bea548, 0x0, 0x0, - 0xbfecccccccccccc6, 0xc01111d5e151677c, + 0xbfeccccccccccd08, 0xc01111d5e151677a, 0x0, 0x0, - 0xbfecccccccccccd1, 0xc0113346c099cfc0, + 0xbfecccccccccccd3, 0xc0113346c099cfc0, 0x0, 0x0, - 0xbfecccccccccccfe, 0xc011553609f713be, + 0xbfecccccccccccc9, 0xc011553609f713be, 0x0, 0x0, - 0xbfeccccccccccd0a, 0xc01177a69a41de4c, + 0xbfeccccccccccceb, 0xc01177a69a41de47, 0x0, 0x0, - 0xbfeccccccccccce0, 0xc0119a9b649d5710, + 0xbfeccccccccccca5, 0xc0119a9b649d5704, 0x0, 0x0, - 0xbfeccccccccccd0e, 0xc011be177351c615, + 0xbfecccccccccccd8, 0xc011be177351c60e, 0x0, 0x0, - 0xbfecccccccccccd1, 0xc011e21de8b15928, + 0xbfeccccccccccd60, 0xc011e21de8b1590c, 0x0, 0x0, - 0xbfeccccccccccefc, 0xc01206b2000796bf, + 0xbfecccccccccce21, 0xc01206b2000796a0, 0x0, 0x0, - 0xbfeccccccccccd3c, 0xc0122bd70e9416d7, + 0xbfeccccccccccc44, 0xc0122bd70e9416d8, 0x0, 0x0, - 0xbfecccccccccccf9, 0xc012519084911f8c, + 0xbfecccccccccccca, 0xc012519084911fa1, 0x0, 0x0, - 0xbfecccccccccccf5, 0xc01277e1ee46cf59, + 0xbfecccccccccccc5, 0xc01277e1ee46cf59, 0x0, 0x0, - 0xbfeccccccccccccd, 0xc0129ecef52b8ab2, + 0xbfeccccccccccceb, 0xc0129ecef52b8ab6, 0x0, 0x0, - 0xbfecccccccccccda, 0xc012c65b61126cf8, + 0xbfeccccccccccccd, 0xc012c65b61126cf5, 0x0, 0x0, - 0xbfeccccccccccd04, 0xc012ee8b1968896a, + 0xbfeccccccccccce4, 0xc012ee8b1968896a, 0x0, 0x0, - 0xbfeccccccccccce2, 0xc01317622681d6b4, + 0xbfecccccccccccc6, 0xc01317622681d6b9, 0x0, 0x0, - 0xbfecccccccccccf1, 0xc01340e4b2f6ae9c, + 0xbfecccccccccccbb, 0xc01340e4b2f6ae86, 0x0, 0x0, - 0xbfecccccccccccf2, 0xc0136b170d12d927, + 0xbfeccccccccccc61, 0xc0136b170d12d92a, 0x0, 0x0, - 0xbfecccccccccccd8, 0xc01395fda8572ebc, + 0xbfecccccccccccd3, 0xc01395fda8572ebc, 0x0, 0x0, - 0xbfecccccccccccb9, 0xc013c19d1f0ee9e7, + 0xbfecccccccccccca, 0xc013c19d1f0ee9e4, 0x0, 0x0, - 0xbfeccccccccccca8, 0xc013edfa33f9da1d, + 0xbfeccccccccccce2, 0xc013edfa33f9da15, 0x0, 0x0, - 0xbfecccccccccccc8, 0xc0141b19d40cb9cb, + 0xbfecccccccccccaf, 0xc0141b19d40cb9c8, 0x0, 0x0, - 0xbfeccccccccccca1, 0xc01449011849034c, + 0xbfecccccccccccb0, 0xc01449011849034a, 0x0, 0x0, - 0xbfecccccccccccd5, 0xc01477b547adb6a4, + 0xbfecccccccccccc9, 0xc01477b547adb6a4, 0x0, 0x0, - 0xbfecccccccccccb6, 0xc014a73bd9429e1d, + 0xbfeccccccccccc8c, 0xc014a73bd9429e18, 0x0, 0x0, - 0xbfecccccccccccbf, 0xc014d79a763fbb62, + 0xbfecccccccccccf9, 0xc014d79a763fbb62, 0x0, 0x0, - 0xbfecccccccccccec, 0xc01508d6fc52a573, + 0xbfeccccccccccccb, 0xc01508d6fc52a57a, 0x0, 0x0, - 0xbfecccccccccccca, 0xc0153af78003c1ca, + 0xbfecccccccccccca, 0xc0153af78003c1cb, 0x0, 0x0, - 0xbfecccccccccccd2, 0xc0156e024f3d66d5, + 0xbfecccccccccccd1, 0xc0156e024f3d66d2, 0x0, 0x0, - 0xbfeccccccccccc9b, 0xc015a1fdf3f71c78, + 0xbfeccccccccccc83, 0xc015a1fdf3f71c7c, 0x0, 0x0, - 0xbfecccccccccccaa, 0xc015d6f137075bbd, + 0xbfecccccccccccc9, 0xc015d6f137075bc0, 0x0, 0x0, - 0xbfeccccccccccca4, 0xc0160ce3231e5958, + 0xbfecccccccccccd6, 0xc0160ce3231e5952, 0x0, 0x0, - 0xbfeccccccccccca2, 0xc01643db07ec9d1a, + 0xbfecccccccccccea, 0xc01643db07ec9d13, 0x0, 0x0, - 0xbfecccccccccccce, 0xc0167be07d785b4e, + 0xbfecccccccccccb4, 0xc0167be07d785b46, 0x0, 0x0, - 0xbfeccccccccccc95, 0xc016b4fb67a4c1f6, + 0xbfeccccccccccccf, 0xc016b4fb67a4c1ef, 0x0, 0x0, - 0xbfecccccccccccd4, 0xc016ef33f9eeab66, + 0xbfeccccccccccccb, 0xc016ef33f9eeab60, 0x0, 0x0, - 0xbfecccccccccccb1, 0xc0172a92bb626f02, + 0xbfeccccccccccce7, 0xc0172a92bb626ef3, 0x0, 0x0, - 0xbfecccccccccccaa, 0xc01767208aced43c, + 0xbfecccccccccccda, 0xc01767208aced436, 0x0, 0x0, - 0xbfecccccccccccd9, 0xc017a4e6a3398060, + 0xbfecccccccccccdc, 0xc017a4e6a339805c, 0x0, 0x0, - 0xbfecccccccccccd7, 0xc017e3eea0999234, + 0xbfeccccccccccca6, 0xc017e3eea0999226, 0x0, 0x0, - 0xbfeccccccccccc85, 0xc018244284dd8386, + 0xbfecccccccccccc6, 0xc018244284dd8344, 0x0, 0x0, - 0xbfecccccccccccbf, 0xc01865ecbd41d348, + 0xbfecccccccccccdb, 0xc01865ecbd41d344, 0x0, 0x0, - 0xbfeccccccccccccf, 0xc018a8f827fe7832, + 0xbfecccccccccccf4, 0xc018a8f827fe7836, 0x0, 0x0, - 0xbfecccccccccccc4, 0xc018ed701a51945a, + 0xbfecccccccccccc6, 0xc018ed701a519454, 0x0, 0x0, - 0xbfeccccccccccc91, 0xc019336066ee7f9d, + 0xbfecccccccccccd4, 0xc019336066ee7fa2, 0x0, 0x0, - 0xbfecccccccccccd3, 0xc0197ad564d8d198, + 0xbfeccccccccccc97, 0xc0197ad564d8d19e, 0x0, 0x0, - 0xbfecccccccccccc4, 0xc019c3dbf6b3c683, + 0xbfecccccccccccc6, 0xc019c3dbf6b3c67e, 0x0, 0x0, - 0xbfecccccccccccb9, 0xc01a0e81928f195c, + 0xbfecccccccccccad, 0xc01a0e81928f195c, 0x0, 0x0, - 0xbfecccccccccccf6, 0xc01a5ad44a3b3f54, + 0xbfecccccccccccc5, 0xc01a5ad44a3b3f60, 0x0, 0x0, - 0xbfecccccccccccf3, 0xc01aa8e2d42fd89b, + 0xbfeccccccccccc98, 0xc01aa8e2d42fd8a4, 0x0, 0x0, - 0xbfecccccccccccef, 0xc01af8bc95102cb6, + 0xbfecccccccccccf5, 0xc01af8bc95102cb0, 0x0, 0x0, - 0xbfecccccccccccae, 0xc01b4a71a9daa10e, + 0xbfecccccccccccce, 0xc01b4a71a9daa108, 0x0, 0x0, - 0xbfeccccccccccc8b, 0xc01b9e12f2d155a4, + 0xbfecccccccccccd4, 0xc01b9e12f2d155b0, 0x0, 0x0, - 0xbfecccccccccccdc, 0xc01bf3b21f2b6c30, + 0xbfecccccccccccf5, 0xc01bf3b21f2b6c2e, 0x0, 0x0, - 0xbfecccccccccccd5, 0xc01c4b61b9a00017, + 0xbfeccccccccccce3, 0xc01c4b61b9a00010, 0x0, 0x0, - 0xbfecccccccccccc2, 0xc01ca53535dd8308, + 0xbfecccccccccccca, 0xc01ca53535dd8306, 0x0, 0x0, - 0xbfecccccccccccb3, 0xc01d0140ff020ba6, + 0xbfeccccccccccced, 0xc01d0140ff020ba2, 0x0, 0x0, - 0xbfeccccccccccccc, 0xc01d5f9a872b35d6, + 0xbfecccccccccccf0, 0xc01d5f9a872b35d4, 0x0, 0x0, - 0xbfeccccccccccd08, 0xc01dc05858368368, + 0xbfecccccccccccf9, 0xc01dc0585836836d, 0x0, 0x0, - 0xbfecccccccccccba, 0xc01e239225cdbdc6, + 0xbfecccccccccccd2, 0xc01e239225cdbdc8, 0x0, 0x0, - 0xbfeccccccccccccb, 0xc01e8960e0ddb920, + 0xbfecccccccccccd6, 0xc01e8960e0ddb91f, 0x0, 0x0, - 0xbfecccccccccccb3, 0xc01ef1decc991339, + 0xbfecccccccccccd5, 0xc01ef1decc991336, 0x0, 0x0, - 0xbfecccccccccccbf, 0xc01f5d27952c2212, + 0xbfeccccccccccce1, 0xc01f5d27952c2216, 0x0, 0x0, - 0xbfecccccccccccf1, 0xc01fcb58684b5412, + 0xbfecccccccccccc3, 0xc01fcb58684b5418, 0x0, 0x0, - 0xbfecccccccccccd9, 0xc0201e4807e4e864, + 0xbfeccccccccccd21, 0xc0201e4807e4e85a, 0x0, 0x0, - 0xbfecccccccccccb2, 0xc02058778735a438, + 0xbfeccccccccccce6, 0xc02058778735a436, 0x0, 0x0, - 0xbfeccccccccccca6, 0xc020944bdf94d5a9, + 0xbfecccccccccccdb, 0xc020944bdf94d5a6, 0x0, 0x0, - 0xbfecccccccccccc8, 0xc020d1d73b97017b, + 0xbfeccccccccccc97, 0xc020d1d73b970180, 0x0, 0x0, - 0xbfeccccccccccc97, 0xc021112cd56188de, + 0xbfeccccccccccc65, 0xc021112cd56188d8, 0x0, 0x0, - 0xbfecccccccccccbd, 0xc02152610ac85aa3, + 0xbfeccccccccccc94, 0xc02152610ac85aa4, 0x0, 0x0, - 0xbfeccccccccccca0, 0xc0219589733c476d, + 0xbfecccccccccccb1, 0xc0219589733c476a, 0x0, 0x0, - 0xbfeccccccccccce7, 0xc021dabcf7bb9f62, + 0xbfecccccccccccd6, 0xc021dabcf7bb9f5c, 0x0, 0x0, - 0xbfeccccccccccd3d, 0xc0222213ecfcead6, + 0xbfeccccccccccc52, 0xc0222213ecfceaba, 0x0, 0x0, - 0xbfecccccccccccd0, 0xc0226ba8301295da, + 0xbfecccccccccccde, 0xc0226ba8301295d6, 0x0, 0x0, - 0xbfecccccccccccf3, 0xc022b79545ce73a0, + 0xbfeccccccccccced, 0xc022b79545ce73a2, 0x0, 0x0, - 0xbfecccccccccccaf, 0xc02305f87d35349e, + 0xbfecccccccccccd8, 0xc02305f87d3534a2, 0x0, 0x0, - 0xbfeccccccccccd13, 0xc02356f1155c85e8, + 0xbfecccccccccccf4, 0xc02356f1155c85e5, 0x0, 0x0, - 0xbfecccccccccccb0, 0xc023aaa0671abefa, + 0xbfecccccccccccbb, 0xc023aaa0671abefa, 0x0, 0x0, - 0xbfecccccccccccb7, 0xc024012a12fd17ec, + 0xbfeccccccccccd07, 0xc024012a12fd17ec, 0x0, 0x0, - 0xbfecccccccccccd8, 0xc0245ab43409a693, + 0xbfecccccccccccca, 0xc0245ab43409a695, 0x0, 0x0, - 0xbfecccccccccccfa, 0xc024b76797e54064, + 0xbfecccccccccccd8, 0xc024b76797e54066, 0x0, 0x0, - 0xbfecccccccccccd2, 0xc025176ffd0b4b14, + 0xbfeccccccccccd07, 0xc025176ffd0b4b16, 0x0, 0x0, - 0xbfecccccccccccd0, 0xc0257afc57df12c2, + 0xbfecccccccccccda, 0xc0257afc57df12c4, 0x0, 0x0, - 0xbfecccccccccccc2, 0xc025e23f1f7c142c, + 0xbfecccccccccccb4, 0xc025e23f1f7c142f, 0x0, 0x0, - 0xbfecccccccccccb1, 0xc0264d6ea34d9fc0, + 0xbfecccccccccccfd, 0xc0264d6ea34d9fba, 0x0, 0x0, - 0xbfeccccccccccc86, 0xc026bcc56a9f4c96, + 0xbfecccccccccccce, 0xc026bcc56a9f4c91, 0x0, 0x0, - 0xbfeccccccccccc9c, 0xc02730829f88166a, + 0xbfeccccccccccce0, 0xc02730829f88166a, 0x0, 0x0, - 0xbfecccccccccccd4, 0xc027a8ea86cb316f, + 0xbfecccccccccccc0, 0xc027a8ea86cb3172, 0x0, 0x0, - 0xbfeccccccccccc61, 0xc0282647068d6c86, + 0xbfeccccccccccd05, 0xc0282647068d6c81, 0x0, 0x0, - 0xbfecccccccccccca, 0xc028a8e83e0e9fd6, + 0xbfeccccccccccccb, 0xc028a8e83e0e9fd2, 0x0, 0x0, - 0xbfeccccccccccca2, 0xc029312530f6e7a1, + 0xbfecccccccccccc6, 0xc029312530f6e7a0, 0x0, 0x0, - 0xbfeccccccccccca8, 0xc029bf5c893ab72a, + 0xbfecccccccccccd8, 0xc029bf5c893ab72a, 0x0, 0x0, - 0xbfeccccccccccc74, 0xc02a53f573236c6a, + 0xbfeccccccccccc9f, 0xc02a53f573236c68, 0x0, 0x0, - 0xbfecccccccccccab, 0xc02aef6097b15974, + 0xbfecccccccccccc2, 0xc02aef6097b15974, 0x0, 0x0, - 0xbfecccccccccccae, 0xc02b92193a56f04e, + 0xbfeccccccccccc9f, 0xc02b92193a56f053, 0x0, 0x0, - 0xbfeccccccccccca8, 0xc02c3ca680036d5e, + 0xbfecccccccccccc3, 0xc02c3ca680036d61, 0x0, 0x0, - 0xbfeccccccccccc54, 0xc02cef9ce6a0dd72, + 0xbfeccccccccccc8e, 0xc02cef9ce6a0dd6c, 0x0, 0x0, - 0xbfeccccccccccca7, 0xc02dab9ff59b8f7e, + 0xbfeccccccccccc6d, 0xc02dab9ff59b8f7d, 0x0, 0x0, - 0xbfecccccccccccbd, 0xc02e716431d1c098, + 0xbfeccccccccccce3, 0xc02e716431d1c092, 0x0, 0x0, - 0xbfecccccccccccb8, 0xc02f41b16180aa1a, + 0xbfecccccccccccb0, 0xc02f41b16180aa14, 0x0, 0x0, - 0xbfecccccccccccdc, 0xc0300eb297c30fb3, + 0xbfecccccccccccff, 0xc0300eb297c30fb2, 0x0, 0x0, - 0xbfeccccccccccc73, 0xc03082bb20617228, + 0xbfeccccccccccccd, 0xc03082bb2061722a, 0x0, 0x0, - 0xbfecccccccccccaa, 0xc030fd7be962e275, + 0xbfeccccccccccceb, 0xc030fd7be962e272, 0x0, 0x0, - 0xbfeccccccccccc83, 0xc0317f8f00378e3c, + 0xbfeccccccccccc77, 0xc0317f8f00378e3a, 0x0, 0x0, - 0xbfeccccccccccc8c, 0xc03209a168261360, + 0xbfeccccccccccca7, 0xc03209a16826134b, 0x0, 0x0, - 0xbfecccccccccccb3, 0xc0329c761cbece7b, + 0xbfeccccccccccc0e, 0xc0329c761cbece7a, 0x0, 0x0, - 0xbfecccccccccccb6, 0xc03338e9abdf8da7, + 0xbfecccccccccccba, 0xc03338e9abdf8da4, 0x0, 0x0, - 0xbfeccccccccccca8, 0xc033dff68b3e84c4, + 0xbfecccccccccccbb, 0xc033dff68b3e84c6, 0x0, 0x0, - 0xbfeccccccccccc96, 0xc03492ba578bc6ef, + 0xbfecccccccccccab, 0xc03492ba578bc6ef, 0x0, 0x0, - 0xbfecccccccccccb6, 0xc035527c389eb4d4, + 0xbfecccccccccccae, 0xc035527c389eb4d4, 0x0, 0x0, - 0xbfeccccccccccc79, 0xc03620b4b817f811, + 0xbfeccccccccccce6, 0xc03620b4b817f811, 0x0, 0x0, - 0xbfeccccccccccc7a, 0xc036ff1770299b8b, + 0xbfecccccccccccd2, 0xc036ff1770299b8a, 0x0, 0x0, - 0xbfeccccccccccc7a, 0xc037ef9f196b923f, + 0xbfeccccccccccca1, 0xc037ef9f196b923e, 0x0, 0x0, - 0xbfeccccccccccc96, 0xc038f49cac8f5afe, + 0xbfecccccccccccbc, 0xc038f49cac8f5afb, 0x0, 0x0, - 0xbfeccccccccccc9f, 0xc03a10ca8d10587e, + 0xbfeccccccccccce8, 0xc03a10ca8d10587c, 0x0, 0x0, - 0xbfeccccccccccc8a, 0xc03b47650d332402, + 0xbfeccccccccccca5, 0xc03b47650d332404, 0x0, 0x0, - 0xbfeccccccccccc77, 0xc03c9c4a1ee57558, + 0xbfecccccccccccf1, 0xc03c9c4a1ee57558, 0x0, 0x0, - 0xbfeccccccccccc81, 0xc03e1422c4e2ef81, + 0xbfecccccccccccf2, 0xc03e1422c4e2ef82, 0x0, 0x0, - 0xbfeccccccccccc6c, 0xc03fb499f4a797b1, + 0xbfeccccccccccd15, 0xc03fb499f4a797b2, 0x0, 0x0, - 0xbfeccccccccccc5d, 0xc040c25324c11d3d, + 0xbfeccccccccccce6, 0xc040c25324c11d3e, 0x0, 0x0, - 0xbfeccccccccccbf0, 0xc041c6774233d806, + 0xbfecccccccccce00, 0xc041c6774233d804, 0x0, 0x0, - 0xbfeccccccccccc99, 0xc042ec2a79774ee2, + 0xbfeccccccccccc4f, 0xc042ec2a79774ee4, 0x0, 0x0, - 0xbfeccccccccccc7b, 0xc0443a5e42a9253f, + 0xbfeccccccccccced, 0xc0443a5e42a9253f, 0x0, 0x0, - 0xbfeccccccccccc4f, 0xc045ba12be3b5a05, + 0xbfeccccccccccc95, 0xc045ba12be3b5a06, 0x0, 0x0, - 0xbfeccccccccccc46, 0xc04777295eaf9f90, + 0xbfeccccccccccc68, 0xc04777295eaf9f90, 0x0, 0x0, - 0xbfeccccccccccc4d, 0xc04981a57b930dd0, + 0xbfeccccccccccc64, 0xc04981a57b930dd0, 0x0, 0x0, - 0xbfeccccccccccc29, 0xc04befa413e515be, + 0xbfeccccccccccce7, 0xc04befa413e515be, 0x0, 0x0, - 0xbfeccccccccccc02, 0xc04ee091ba6ea2ba, + 0xbfeccccccccccc33, 0xc04ee091ba6ea2bc, 0x0, 0x0, - 0xbfeccccccccccc43, 0xc0514152583a6d88, + 0xbfeccccccccccc97, 0xc0514152583a6d86, 0x0, 0x0, - 0xbfeccccccccccc15, 0xc0538e5c57b0a392, + 0xbfeccccccccccd1c, 0xc0538e5c57b0a391, 0x0, 0x0, - 0xbfeccccccccccba4, 0xc05690a22c6ee736, + 0xbfeccccccccccd0a, 0xc05690a22c6ee736, 0x0, 0x0, - 0xbfeccccccccccb99, 0xc05aaafea7e4b54a, + 0xbfeccccccccccc6a, 0xc05aaafea7e4b54c, 0x0, 0x0, - 0xbfeccccccccccb25, 0xc0604c15c7477295, + 0xbfecccccccccccac, 0xc0604c15c7477295, 0x0, 0x0, - 0xbfeccccccccccaa5, 0xc064f4249e29f05c, + 0xbfeccccccccccccf, 0xc064f4249e29f05e, 0x0, 0x0, - 0xbfecccccccccc931, 0xc06d55d5e9ab64d4, + 0xbfecccccccccce1b, 0xc06d55d5e9ab64d4, 0x0, 0x0, - 0xbfecccccccccc7cc, 0xc07872374985ccc9, + 0xbfeccccccccccaa7, 0xc07872374985cccb, 0x0, 0x0, - 0xbfecccccccccba3c, 0xc09255ab59b0d91d + 0xbfeccccccccccaa7, 0xc09255ab59b0d91e };