15 #include "absl/strings/charconv.h"
22 #include "absl/base/casts.h"
23 #include "absl/numeric/bits.h"
24 #include "absl/numeric/int128.h"
25 #include "absl/strings/internal/charconv_bigint.h"
26 #include "absl/strings/internal/charconv_parse.h"
34 #ifdef ABSL_BIT_PACK_FLOATS
35 #error ABSL_BIT_PACK_FLOATS cannot be directly set
36 #elif defined(__x86_64__) || defined(_M_X64)
37 #define ABSL_BIT_PACK_FLOATS 1
63 template <
typename FloatType>
67 struct FloatTraits<double> {
70 static constexpr
int kTargetMantissaBits = 53;
77 static constexpr
int kMaxExponent = 971;
84 static constexpr
int kMinNormalExponent = -1074;
107 #ifndef ABSL_BIT_PACK_FLOATS
114 (
uint64_t(1) << (kTargetMantissaBits - 1)) - 1;
124 assert(
exponent == kMinNormalExponent);
127 return absl::bit_cast<double>(dbl);
128 #endif // ABSL_BIT_PACK_FLOATS
136 struct FloatTraits<float> {
137 static constexpr
int kTargetMantissaBits = 24;
138 static constexpr
int kMaxExponent = 104;
139 static constexpr
int kMinNormalExponent = -149;
147 #ifndef ABSL_BIT_PACK_FLOATS
154 (
uint32_t(1) << (kTargetMantissaBits - 1)) - 1;
164 assert(
exponent == kMinNormalExponent);
167 return absl::bit_cast<float>(flt);
168 #endif // ABSL_BIT_PACK_FLOATS
238 struct CalculatedFloat {
260 template <
typename FloatType>
262 const int normal_shift =
263 mantissa_width - FloatTraits<FloatType>::kTargetMantissaBits;
264 const int minimum_shift =
265 FloatTraits<FloatType>::kMinNormalExponent - binary_exponent;
266 return std::max(normal_shift, minimum_shift);
276 const int shift = current_bit_width -
bit_width;
284 template <
typename FloatType>
294 constexpr ptrdiff_t kNanBufferSize = 128;
295 volatile char n_char_sequence[kNanBufferSize];
296 if (
input.subrange_begin ==
nullptr) {
297 n_char_sequence[0] =
'\0';
299 ptrdiff_t nan_size =
input.subrange_end -
input.subrange_begin;
300 nan_size =
std::min(nan_size, kNanBufferSize - 1);
301 std::copy_n(
input.subrange_begin, nan_size, n_char_sequence);
302 n_char_sequence[nan_size] =
'\0';
304 char* nan_argument =
const_cast<char*
>(n_char_sequence);
305 *
value =
negative ? -FloatTraits<FloatType>::MakeNan(nan_argument)
306 : FloatTraits<
FloatType>::MakeNan(nan_argument);
310 *
value =
negative ? -std::numeric_limits<FloatType>::infinity()
314 if (
input.mantissa == 0) {
327 template <
typename FloatType>
331 result->ec = std::errc::result_out_of_range;
335 }
else if (calculated.mantissa == 0 || calculated.exponent ==
kUnderflow) {
336 result->ec = std::errc::result_out_of_range;
340 *
value = FloatTraits<FloatType>::Make(calculated.mantissa,
373 bool* output_exact) {
375 *output_exact = input_exact;
382 *output_exact =
true;
386 *output_exact =
true;
387 const uint128 shift_mask = (uint128(1) << shift) - 1;
388 const uint128 halfway_point = uint128(1) << (shift - 1);
390 const uint128 shifted_bits =
value & shift_mask;
392 if (shifted_bits > halfway_point) {
396 if (shifted_bits == halfway_point) {
403 if ((
value & 1) == 1 || !input_exact) {
408 if (!input_exact && shifted_bits == halfway_point - 1) {
410 *output_exact =
false;
430 const strings_internal::ParsedFloat& parsed_decimal) {
439 guess_mantissa = guess_mantissa * 2 + 1;
451 if (exact_exponent >= 0) {
456 if (exact_exponent > guess_exponent) {
457 lhs.
ShiftLeft(exact_exponent - guess_exponent);
459 rhs.ShiftLeft(guess_exponent - exact_exponent);
461 comparison =
Compare(lhs, rhs);
469 if (exact_exponent > guess_exponent) {
470 lhs.
ShiftLeft(exact_exponent - guess_exponent);
472 rhs.
ShiftLeft(guess_exponent - exact_exponent);
474 comparison =
Compare(lhs, rhs);
476 if (comparison < 0) {
478 }
else if (comparison > 0) {
485 return (guess_mantissa & 2) == 2;
499 template <
typename FloatType>
502 if (
mantissa ==
uint64_t(1) << FloatTraits<FloatType>::kTargetMantissaBits) {
506 if (
exponent > FloatTraits<FloatType>::kMaxExponent) {
517 template <
typename FloatType>
519 const strings_internal::ParsedFloat& parsed_hex) {
523 const int shift = NormalizedShiftSize<FloatType>(mantissa_width,
exponent);
527 true, &result_exact);
533 template <
typename FloatType>
535 const strings_internal::ParsedFloat& parsed_decimal) {
550 uint128 wide_binary_mantissa = parsed_decimal.mantissa;
561 if (parsed_decimal.subrange_begin) {
564 mantissa_exact =
false;
570 mantissa_exact =
false;
575 mantissa_width =
BitWidth(wide_binary_mantissa);
576 mantissa_exact =
true;
581 NormalizedShiftSize<FloatType>(mantissa_width, binary_exponent);
583 binary_exponent += shift;
585 mantissa_exact, &result_exact);
589 if (
MustRoundUp(binary_mantissa, binary_exponent, parsed_decimal)) {
590 binary_mantissa += 1;
594 return CalculatedFloatFromRawValues<FloatType>(binary_mantissa,
598 template <
typename FloatType>
614 const char* hex_first =
first + 2;
615 strings_internal::ParsedFloat hex_parse =
617 if (hex_parse.end ==
nullptr ||
627 result.ec = std::errc::invalid_argument;
635 result.ptr = hex_parse.end;
639 CalculatedFloat calculated =
640 CalculateFromParsedHexadecimal<FloatType>(hex_parse);
646 strings_internal::ParsedFloat hex_parse =
648 if (hex_parse.end ==
nullptr) {
649 result.ec = std::errc::invalid_argument;
652 result.ptr = hex_parse.end;
656 CalculatedFloat calculated =
657 CalculateFromParsedHexadecimal<FloatType>(hex_parse);
661 strings_internal::ParsedFloat decimal_parse =
663 if (decimal_parse.end ==
nullptr) {
664 result.ec = std::errc::invalid_argument;
667 result.ptr = decimal_parse.end;
671 CalculatedFloat calculated =
672 CalculateFromParsedDecimal<FloatType>(decimal_parse);
700 0xeef453d6923bd65aU, 0x9558b4661b6565f8U, 0xbaaee17fa23ebf76U,
701 0xe95a99df8ace6f53U, 0x91d8a02bb6c10594U, 0xb64ec836a47146f9U,
702 0xe3e27a444d8d98b7U, 0x8e6d8c6ab0787f72U, 0xb208ef855c969f4fU,
703 0xde8b2b66b3bc4723U, 0x8b16fb203055ac76U, 0xaddcb9e83c6b1793U,
704 0xd953e8624b85dd78U, 0x87d4713d6f33aa6bU, 0xa9c98d8ccb009506U,
705 0xd43bf0effdc0ba48U, 0x84a57695fe98746dU, 0xa5ced43b7e3e9188U,
706 0xcf42894a5dce35eaU, 0x818995ce7aa0e1b2U, 0xa1ebfb4219491a1fU,
707 0xca66fa129f9b60a6U, 0xfd00b897478238d0U, 0x9e20735e8cb16382U,
708 0xc5a890362fddbc62U, 0xf712b443bbd52b7bU, 0x9a6bb0aa55653b2dU,
709 0xc1069cd4eabe89f8U, 0xf148440a256e2c76U, 0x96cd2a865764dbcaU,
710 0xbc807527ed3e12bcU, 0xeba09271e88d976bU, 0x93445b8731587ea3U,
711 0xb8157268fdae9e4cU, 0xe61acf033d1a45dfU, 0x8fd0c16206306babU,
712 0xb3c4f1ba87bc8696U, 0xe0b62e2929aba83cU, 0x8c71dcd9ba0b4925U,
713 0xaf8e5410288e1b6fU, 0xdb71e91432b1a24aU, 0x892731ac9faf056eU,
714 0xab70fe17c79ac6caU, 0xd64d3d9db981787dU, 0x85f0468293f0eb4eU,
715 0xa76c582338ed2621U, 0xd1476e2c07286faaU, 0x82cca4db847945caU,
716 0xa37fce126597973cU, 0xcc5fc196fefd7d0cU, 0xff77b1fcbebcdc4fU,
717 0x9faacf3df73609b1U, 0xc795830d75038c1dU, 0xf97ae3d0d2446f25U,
718 0x9becce62836ac577U, 0xc2e801fb244576d5U, 0xf3a20279ed56d48aU,
719 0x9845418c345644d6U, 0xbe5691ef416bd60cU, 0xedec366b11c6cb8fU,
720 0x94b3a202eb1c3f39U, 0xb9e08a83a5e34f07U, 0xe858ad248f5c22c9U,
721 0x91376c36d99995beU, 0xb58547448ffffb2dU, 0xe2e69915b3fff9f9U,
722 0x8dd01fad907ffc3bU, 0xb1442798f49ffb4aU, 0xdd95317f31c7fa1dU,
723 0x8a7d3eef7f1cfc52U, 0xad1c8eab5ee43b66U, 0xd863b256369d4a40U,
724 0x873e4f75e2224e68U, 0xa90de3535aaae202U, 0xd3515c2831559a83U,
725 0x8412d9991ed58091U, 0xa5178fff668ae0b6U, 0xce5d73ff402d98e3U,
726 0x80fa687f881c7f8eU, 0xa139029f6a239f72U, 0xc987434744ac874eU,
727 0xfbe9141915d7a922U, 0x9d71ac8fada6c9b5U, 0xc4ce17b399107c22U,
728 0xf6019da07f549b2bU, 0x99c102844f94e0fbU, 0xc0314325637a1939U,
729 0xf03d93eebc589f88U, 0x96267c7535b763b5U, 0xbbb01b9283253ca2U,
730 0xea9c227723ee8bcbU, 0x92a1958a7675175fU, 0xb749faed14125d36U,
731 0xe51c79a85916f484U, 0x8f31cc0937ae58d2U, 0xb2fe3f0b8599ef07U,
732 0xdfbdcece67006ac9U, 0x8bd6a141006042bdU, 0xaecc49914078536dU,
733 0xda7f5bf590966848U, 0x888f99797a5e012dU, 0xaab37fd7d8f58178U,
734 0xd5605fcdcf32e1d6U, 0x855c3be0a17fcd26U, 0xa6b34ad8c9dfc06fU,
735 0xd0601d8efc57b08bU, 0x823c12795db6ce57U, 0xa2cb1717b52481edU,
736 0xcb7ddcdda26da268U, 0xfe5d54150b090b02U, 0x9efa548d26e5a6e1U,
737 0xc6b8e9b0709f109aU, 0xf867241c8cc6d4c0U, 0x9b407691d7fc44f8U,
738 0xc21094364dfb5636U, 0xf294b943e17a2bc4U, 0x979cf3ca6cec5b5aU,
739 0xbd8430bd08277231U, 0xece53cec4a314ebdU, 0x940f4613ae5ed136U,
740 0xb913179899f68584U, 0xe757dd7ec07426e5U, 0x9096ea6f3848984fU,
741 0xb4bca50b065abe63U, 0xe1ebce4dc7f16dfbU, 0x8d3360f09cf6e4bdU,
742 0xb080392cc4349decU, 0xdca04777f541c567U, 0x89e42caaf9491b60U,
743 0xac5d37d5b79b6239U, 0xd77485cb25823ac7U, 0x86a8d39ef77164bcU,
744 0xa8530886b54dbdebU, 0xd267caa862a12d66U, 0x8380dea93da4bc60U,
745 0xa46116538d0deb78U, 0xcd795be870516656U, 0x806bd9714632dff6U,
746 0xa086cfcd97bf97f3U, 0xc8a883c0fdaf7df0U, 0xfad2a4b13d1b5d6cU,
747 0x9cc3a6eec6311a63U, 0xc3f490aa77bd60fcU, 0xf4f1b4d515acb93bU,
748 0x991711052d8bf3c5U, 0xbf5cd54678eef0b6U, 0xef340a98172aace4U,
749 0x9580869f0e7aac0eU, 0xbae0a846d2195712U, 0xe998d258869facd7U,
750 0x91ff83775423cc06U, 0xb67f6455292cbf08U, 0xe41f3d6a7377eecaU,
751 0x8e938662882af53eU, 0xb23867fb2a35b28dU, 0xdec681f9f4c31f31U,
752 0x8b3c113c38f9f37eU, 0xae0b158b4738705eU, 0xd98ddaee19068c76U,
753 0x87f8a8d4cfa417c9U, 0xa9f6d30a038d1dbcU, 0xd47487cc8470652bU,
754 0x84c8d4dfd2c63f3bU, 0xa5fb0a17c777cf09U, 0xcf79cc9db955c2ccU,
755 0x81ac1fe293d599bfU, 0xa21727db38cb002fU, 0xca9cf1d206fdc03bU,
756 0xfd442e4688bd304aU, 0x9e4a9cec15763e2eU, 0xc5dd44271ad3cdbaU,
757 0xf7549530e188c128U, 0x9a94dd3e8cf578b9U, 0xc13a148e3032d6e7U,
758 0xf18899b1bc3f8ca1U, 0x96f5600f15a7b7e5U, 0xbcb2b812db11a5deU,
759 0xebdf661791d60f56U, 0x936b9fcebb25c995U, 0xb84687c269ef3bfbU,
760 0xe65829b3046b0afaU, 0x8ff71a0fe2c2e6dcU, 0xb3f4e093db73a093U,
761 0xe0f218b8d25088b8U, 0x8c974f7383725573U, 0xafbd2350644eeacfU,
762 0xdbac6c247d62a583U, 0x894bc396ce5da772U, 0xab9eb47c81f5114fU,
763 0xd686619ba27255a2U, 0x8613fd0145877585U, 0xa798fc4196e952e7U,
764 0xd17f3b51fca3a7a0U, 0x82ef85133de648c4U, 0xa3ab66580d5fdaf5U,
765 0xcc963fee10b7d1b3U, 0xffbbcfe994e5c61fU, 0x9fd561f1fd0f9bd3U,
766 0xc7caba6e7c5382c8U, 0xf9bd690a1b68637bU, 0x9c1661a651213e2dU,
767 0xc31bfa0fe5698db8U, 0xf3e2f893dec3f126U, 0x986ddb5c6b3a76b7U,
768 0xbe89523386091465U, 0xee2ba6c0678b597fU, 0x94db483840b717efU,
769 0xba121a4650e4ddebU, 0xe896a0d7e51e1566U, 0x915e2486ef32cd60U,
770 0xb5b5ada8aaff80b8U, 0xe3231912d5bf60e6U, 0x8df5efabc5979c8fU,
771 0xb1736b96b6fd83b3U, 0xddd0467c64bce4a0U, 0x8aa22c0dbef60ee4U,
772 0xad4ab7112eb3929dU, 0xd89d64d57a607744U, 0x87625f056c7c4a8bU,
773 0xa93af6c6c79b5d2dU, 0xd389b47879823479U, 0x843610cb4bf160cbU,
774 0xa54394fe1eedb8feU, 0xce947a3da6a9273eU, 0x811ccc668829b887U,
775 0xa163ff802a3426a8U, 0xc9bcff6034c13052U, 0xfc2c3f3841f17c67U,
776 0x9d9ba7832936edc0U, 0xc5029163f384a931U, 0xf64335bcf065d37dU,
777 0x99ea0196163fa42eU, 0xc06481fb9bcf8d39U, 0xf07da27a82c37088U,
778 0x964e858c91ba2655U, 0xbbe226efb628afeaU, 0xeadab0aba3b2dbe5U,
779 0x92c8ae6b464fc96fU, 0xb77ada0617e3bbcbU, 0xe55990879ddcaabdU,
780 0x8f57fa54c2a9eab6U, 0xb32df8e9f3546564U, 0xdff9772470297ebdU,
781 0x8bfbea76c619ef36U, 0xaefae51477a06b03U, 0xdab99e59958885c4U,
782 0x88b402f7fd75539bU, 0xaae103b5fcd2a881U, 0xd59944a37c0752a2U,
783 0x857fcae62d8493a5U, 0xa6dfbd9fb8e5b88eU, 0xd097ad07a71f26b2U,
784 0x825ecc24c873782fU, 0xa2f67f2dfa90563bU, 0xcbb41ef979346bcaU,
785 0xfea126b7d78186bcU, 0x9f24b832e6b0f436U, 0xc6ede63fa05d3143U,
786 0xf8a95fcf88747d94U, 0x9b69dbe1b548ce7cU, 0xc24452da229b021bU,
787 0xf2d56790ab41c2a2U, 0x97c560ba6b0919a5U, 0xbdb6b8e905cb600fU,
788 0xed246723473e3813U, 0x9436c0760c86e30bU, 0xb94470938fa89bceU,
789 0xe7958cb87392c2c2U, 0x90bd77f3483bb9b9U, 0xb4ecd5f01a4aa828U,
790 0xe2280b6c20dd5232U, 0x8d590723948a535fU, 0xb0af48ec79ace837U,
791 0xdcdb1b2798182244U, 0x8a08f0f8bf0f156bU, 0xac8b2d36eed2dac5U,
792 0xd7adf884aa879177U, 0x86ccbb52ea94baeaU, 0xa87fea27a539e9a5U,
793 0xd29fe4b18e88640eU, 0x83a3eeeef9153e89U, 0xa48ceaaab75a8e2bU,
794 0xcdb02555653131b6U, 0x808e17555f3ebf11U, 0xa0b19d2ab70e6ed6U,
795 0xc8de047564d20a8bU, 0xfb158592be068d2eU, 0x9ced737bb6c4183dU,
796 0xc428d05aa4751e4cU, 0xf53304714d9265dfU, 0x993fe2c6d07b7fabU,
797 0xbf8fdb78849a5f96U, 0xef73d256a5c0f77cU, 0x95a8637627989aadU,
798 0xbb127c53b17ec159U, 0xe9d71b689dde71afU, 0x9226712162ab070dU,
799 0xb6b00d69bb55c8d1U, 0xe45c10c42a2b3b05U, 0x8eb98a7a9a5b04e3U,
800 0xb267ed1940f1c61cU, 0xdf01e85f912e37a3U, 0x8b61313bbabce2c6U,
801 0xae397d8aa96c1b77U, 0xd9c7dced53c72255U, 0x881cea14545c7575U,
802 0xaa242499697392d2U, 0xd4ad2dbfc3d07787U, 0x84ec3c97da624ab4U,
803 0xa6274bbdd0fadd61U, 0xcfb11ead453994baU, 0x81ceb32c4b43fcf4U,
804 0xa2425ff75e14fc31U, 0xcad2f7f5359a3b3eU, 0xfd87b5f28300ca0dU,
805 0x9e74d1b791e07e48U, 0xc612062576589ddaU, 0xf79687aed3eec551U,
806 0x9abe14cd44753b52U, 0xc16d9a0095928a27U, 0xf1c90080baf72cb1U,
807 0x971da05074da7beeU, 0xbce5086492111aeaU, 0xec1e4a7db69561a5U,
808 0x9392ee8e921d5d07U, 0xb877aa3236a4b449U, 0xe69594bec44de15bU,
809 0x901d7cf73ab0acd9U, 0xb424dc35095cd80fU, 0xe12e13424bb40e13U,
810 0x8cbccc096f5088cbU, 0xafebff0bcb24aafeU, 0xdbe6fecebdedd5beU,
811 0x89705f4136b4a597U, 0xabcc77118461cefcU, 0xd6bf94d5e57a42bcU,
812 0x8637bd05af6c69b5U, 0xa7c5ac471b478423U, 0xd1b71758e219652bU,
813 0x83126e978d4fdf3bU, 0xa3d70a3d70a3d70aU, 0xccccccccccccccccU,
814 0x8000000000000000U, 0xa000000000000000U, 0xc800000000000000U,
815 0xfa00000000000000U, 0x9c40000000000000U, 0xc350000000000000U,
816 0xf424000000000000U, 0x9896800000000000U, 0xbebc200000000000U,
817 0xee6b280000000000U, 0x9502f90000000000U, 0xba43b74000000000U,
818 0xe8d4a51000000000U, 0x9184e72a00000000U, 0xb5e620f480000000U,
819 0xe35fa931a0000000U, 0x8e1bc9bf04000000U, 0xb1a2bc2ec5000000U,
820 0xde0b6b3a76400000U, 0x8ac7230489e80000U, 0xad78ebc5ac620000U,
821 0xd8d726b7177a8000U, 0x878678326eac9000U, 0xa968163f0a57b400U,
822 0xd3c21bcecceda100U, 0x84595161401484a0U, 0xa56fa5b99019a5c8U,
823 0xcecb8f27f4200f3aU, 0x813f3978f8940984U, 0xa18f07d736b90be5U,
824 0xc9f2c9cd04674edeU, 0xfc6f7c4045812296U, 0x9dc5ada82b70b59dU,
825 0xc5371912364ce305U, 0xf684df56c3e01bc6U, 0x9a130b963a6c115cU,
826 0xc097ce7bc90715b3U, 0xf0bdc21abb48db20U, 0x96769950b50d88f4U,
827 0xbc143fa4e250eb31U, 0xeb194f8e1ae525fdU, 0x92efd1b8d0cf37beU,
828 0xb7abc627050305adU, 0xe596b7b0c643c719U, 0x8f7e32ce7bea5c6fU,
829 0xb35dbf821ae4f38bU, 0xe0352f62a19e306eU, 0x8c213d9da502de45U,
830 0xaf298d050e4395d6U, 0xdaf3f04651d47b4cU, 0x88d8762bf324cd0fU,
831 0xab0e93b6efee0053U, 0xd5d238a4abe98068U, 0x85a36366eb71f041U,
832 0xa70c3c40a64e6c51U, 0xd0cf4b50cfe20765U, 0x82818f1281ed449fU,
833 0xa321f2d7226895c7U, 0xcbea6f8ceb02bb39U, 0xfee50b7025c36a08U,
834 0x9f4f2726179a2245U, 0xc722f0ef9d80aad6U, 0xf8ebad2b84e0d58bU,
835 0x9b934c3b330c8577U, 0xc2781f49ffcfa6d5U, 0xf316271c7fc3908aU,
836 0x97edd871cfda3a56U, 0xbde94e8e43d0c8ecU, 0xed63a231d4c4fb27U,
837 0x945e455f24fb1cf8U, 0xb975d6b6ee39e436U, 0xe7d34c64a9c85d44U,
838 0x90e40fbeea1d3a4aU, 0xb51d13aea4a488ddU, 0xe264589a4dcdab14U,
839 0x8d7eb76070a08aecU, 0xb0de65388cc8ada8U, 0xdd15fe86affad912U,
840 0x8a2dbf142dfcc7abU, 0xacb92ed9397bf996U, 0xd7e77a8f87daf7fbU,
841 0x86f0ac99b4e8dafdU, 0xa8acd7c0222311bcU, 0xd2d80db02aabd62bU,
842 0x83c7088e1aab65dbU, 0xa4b8cab1a1563f52U, 0xcde6fd5e09abcf26U,
843 0x80b05e5ac60b6178U, 0xa0dc75f1778e39d6U, 0xc913936dd571c84cU,
844 0xfb5878494ace3a5fU, 0x9d174b2dcec0e47bU, 0xc45d1df942711d9aU,
845 0xf5746577930d6500U, 0x9968bf6abbe85f20U, 0xbfc2ef456ae276e8U,
846 0xefb3ab16c59b14a2U, 0x95d04aee3b80ece5U, 0xbb445da9ca61281fU,
847 0xea1575143cf97226U, 0x924d692ca61be758U, 0xb6e0c377cfa2e12eU,
848 0xe498f455c38b997aU, 0x8edf98b59a373fecU, 0xb2977ee300c50fe7U,
849 0xdf3d5e9bc0f653e1U, 0x8b865b215899f46cU, 0xae67f1e9aec07187U,
850 0xda01ee641a708de9U, 0x884134fe908658b2U, 0xaa51823e34a7eedeU,
851 0xd4e5e2cdc1d1ea96U, 0x850fadc09923329eU, 0xa6539930bf6bff45U,
852 0xcfe87f7cef46ff16U, 0x81f14fae158c5f6eU, 0xa26da3999aef7749U,
853 0xcb090c8001ab551cU, 0xfdcb4fa002162a63U, 0x9e9f11c4014dda7eU,
854 0xc646d63501a1511dU, 0xf7d88bc24209a565U, 0x9ae757596946075fU,
855 0xc1a12d2fc3978937U, 0xf209787bb47d6b84U, 0x9745eb4d50ce6332U,
856 0xbd176620a501fbffU, 0xec5d3fa8ce427affU, 0x93ba47c980e98cdfU,
857 0xb8a8d9bbe123f017U, 0xe6d3102ad96cec1dU, 0x9043ea1ac7e41392U,
858 0xb454e4a179dd1877U, 0xe16a1dc9d8545e94U, 0x8ce2529e2734bb1dU,
859 0xb01ae745b101e9e4U, 0xdc21a1171d42645dU, 0x899504ae72497ebaU,
860 0xabfa45da0edbde69U, 0xd6f8d7509292d603U, 0x865b86925b9bc5c2U,
861 0xa7f26836f282b732U, 0xd1ef0244af2364ffU, 0x8335616aed761f1fU,
862 0xa402b9c5a8d3a6e7U, 0xcd036837130890a1U, 0x802221226be55a64U,
863 0xa02aa96b06deb0fdU, 0xc83553c5c8965d3dU, 0xfa42a8b73abbf48cU,
864 0x9c69a97284b578d7U, 0xc38413cf25e2d70dU, 0xf46518c2ef5b8cd1U,
865 0x98bf2f79d5993802U, 0xbeeefb584aff8603U, 0xeeaaba2e5dbf6784U,
866 0x952ab45cfa97a0b2U, 0xba756174393d88dfU, 0xe912b9d1478ceb17U,
867 0x91abb422ccb812eeU, 0xb616a12b7fe617aaU, 0xe39c49765fdf9d94U,
868 0x8e41ade9fbebc27dU, 0xb1d219647ae6b31cU, 0xde469fbd99a05fe3U,
869 0x8aec23d680043beeU, 0xada72ccc20054ae9U, 0xd910f7ff28069da4U,
870 0x87aa9aff79042286U, 0xa99541bf57452b28U, 0xd3fa922f2d1675f2U,
871 0x847c9b5d7c2e09b7U, 0xa59bc234db398c25U, 0xcf02b2c21207ef2eU,
872 0x8161afb94b44f57dU, 0xa1ba1ba79e1632dcU, 0xca28a291859bbf93U,
873 0xfcb2cb35e702af78U, 0x9defbf01b061adabU, 0xc56baec21c7a1916U,
874 0xf6c69a72a3989f5bU, 0x9a3c2087a63f6399U, 0xc0cb28a98fcf3c7fU,
875 0xf0fdf2d3f3c30b9fU, 0x969eb7c47859e743U, 0xbc4665b596706114U,
876 0xeb57ff22fc0c7959U, 0x9316ff75dd87cbd8U, 0xb7dcbf5354e9beceU,
877 0xe5d3ef282a242e81U, 0x8fa475791a569d10U, 0xb38d92d760ec4455U,
878 0xe070f78d3927556aU, 0x8c469ab843b89562U, 0xaf58416654a6babbU,
879 0xdb2e51bfe9d0696aU, 0x88fcf317f22241e2U, 0xab3c2fddeeaad25aU,
880 0xd60b3bd56a5586f1U, 0x85c7056562757456U, 0xa738c6bebb12d16cU,
881 0xd106f86e69d785c7U, 0x82a45b450226b39cU, 0xa34d721642b06084U,
882 0xcc20ce9bd35c78a5U, 0xff290242c83396ceU, 0x9f79a169bd203e41U,
883 0xc75809c42c684dd1U, 0xf92e0c3537826145U, 0x9bbcc7a142b17ccbU,
884 0xc2abf989935ddbfeU, 0xf356f7ebf83552feU, 0x98165af37b2153deU,
885 0xbe1bf1b059e9a8d6U, 0xeda2ee1c7064130cU, 0x9485d4d1c63e8be7U,
886 0xb9a74a0637ce2ee1U, 0xe8111c87c5c1ba99U, 0x910ab1d4db9914a0U,
887 0xb54d5e4a127f59c8U, 0xe2a0b5dc971f303aU, 0x8da471a9de737e24U,
888 0xb10d8e1456105dadU, 0xdd50f1996b947518U, 0x8a5296ffe33cc92fU,
889 0xace73cbfdc0bfb7bU, 0xd8210befd30efa5aU, 0x8714a775e3e95c78U,
890 0xa8d9d1535ce3b396U, 0xd31045a8341ca07cU, 0x83ea2b892091e44dU,
891 0xa4e4b66b68b65d60U, 0xce1de40642e3f4b9U, 0x80d2ae83e9ce78f3U,
892 0xa1075a24e4421730U, 0xc94930ae1d529cfcU, 0xfb9b7cd9a4a7443cU,
893 0x9d412e0806e88aa5U, 0xc491798a08a2ad4eU, 0xf5b5d7ec8acb58a2U,
894 0x9991a6f3d6bf1765U, 0xbff610b0cc6edd3fU, 0xeff394dcff8a948eU,
895 0x95f83d0a1fb69cd9U, 0xbb764c4ca7a4440fU, 0xea53df5fd18d5513U,
896 0x92746b9be2f8552cU, 0xb7118682dbb66a77U, 0xe4d5e82392a40515U,
897 0x8f05b1163ba6832dU, 0xb2c71d5bca9023f8U, 0xdf78e4b2bd342cf6U,
898 0x8bab8eefb6409c1aU, 0xae9672aba3d0c320U, 0xda3c0f568cc4f3e8U,
899 0x8865899617fb1871U, 0xaa7eebfb9df9de8dU, 0xd51ea6fa85785631U,
900 0x8533285c936b35deU, 0xa67ff273b8460356U, 0xd01fef10a657842cU,
901 0x8213f56a67f6b29bU, 0xa298f2c501f45f42U, 0xcb3f2f7642717713U,
902 0xfe0efb53d30dd4d7U, 0x9ec95d1463e8a506U, 0xc67bb4597ce2ce48U,
903 0xf81aa16fdc1b81daU, 0x9b10a4e5e9913128U, 0xc1d4ce1f63f57d72U,
904 0xf24a01a73cf2dccfU, 0x976e41088617ca01U, 0xbd49d14aa79dbc82U,
905 0xec9c459d51852ba2U, 0x93e1ab8252f33b45U, 0xb8da1662e7b00a17U,
906 0xe7109bfba19c0c9dU, 0x906a617d450187e2U, 0xb484f9dc9641e9daU,
907 0xe1a63853bbd26451U, 0x8d07e33455637eb2U, 0xb049dc016abc5e5fU,
908 0xdc5c5301c56b75f7U, 0x89b9b3e11b6329baU, 0xac2820d9623bf429U,
909 0xd732290fbacaf133U, 0x867f59a9d4bed6c0U, 0xa81f301449ee8c70U,
910 0xd226fc195c6a2f8cU, 0x83585d8fd9c25db7U, 0xa42e74f3d032f525U,
911 0xcd3a1230c43fb26fU, 0x80444b5e7aa7cf85U, 0xa0555e361951c366U,
912 0xc86ab5c39fa63440U, 0xfa856334878fc150U, 0x9c935e00d4b9d8d2U,
913 0xc3b8358109e84f07U, 0xf4a642e14c6262c8U, 0x98e7e9cccfbd7dbdU,
914 0xbf21e44003acdd2cU, 0xeeea5d5004981478U, 0x95527a5202df0ccbU,
915 0xbaa718e68396cffdU, 0xe950df20247c83fdU, 0x91d28b7416cdd27eU,
916 0xb6472e511c81471dU, 0xe3d8f9e563a198e5U, 0x8e679c2f5e44ff8fU,
920 -1200, -1196, -1193, -1190, -1186, -1183, -1180, -1176, -1173, -1170, -1166,
921 -1163, -1160, -1156, -1153, -1150, -1146, -1143, -1140, -1136, -1133, -1130,
922 -1127, -1123, -1120, -1117, -1113, -1110, -1107, -1103, -1100, -1097, -1093,
923 -1090, -1087, -1083, -1080, -1077, -1073, -1070, -1067, -1063, -1060, -1057,
924 -1053, -1050, -1047, -1043, -1040, -1037, -1034, -1030, -1027, -1024, -1020,
925 -1017, -1014, -1010, -1007, -1004, -1000, -997, -994, -990, -987, -984,
926 -980, -977, -974, -970, -967, -964, -960, -957, -954, -950, -947,
927 -944, -940, -937, -934, -931, -927, -924, -921, -917, -914, -911,
928 -907, -904, -901, -897, -894, -891, -887, -884, -881, -877, -874,
929 -871, -867, -864, -861, -857, -854, -851, -847, -844, -841, -838,
930 -834, -831, -828, -824, -821, -818, -814, -811, -808, -804, -801,
931 -798, -794, -791, -788, -784, -781, -778, -774, -771, -768, -764,
932 -761, -758, -754, -751, -748, -744, -741, -738, -735, -731, -728,
933 -725, -721, -718, -715, -711, -708, -705, -701, -698, -695, -691,
934 -688, -685, -681, -678, -675, -671, -668, -665, -661, -658, -655,
935 -651, -648, -645, -642, -638, -635, -632, -628, -625, -622, -618,
936 -615, -612, -608, -605, -602, -598, -595, -592, -588, -585, -582,
937 -578, -575, -572, -568, -565, -562, -558, -555, -552, -549, -545,
938 -542, -539, -535, -532, -529, -525, -522, -519, -515, -512, -509,
939 -505, -502, -499, -495, -492, -489, -485, -482, -479, -475, -472,
940 -469, -465, -462, -459, -455, -452, -449, -446, -442, -439, -436,
941 -432, -429, -426, -422, -419, -416, -412, -409, -406, -402, -399,
942 -396, -392, -389, -386, -382, -379, -376, -372, -369, -366, -362,
943 -359, -356, -353, -349, -346, -343, -339, -336, -333, -329, -326,
944 -323, -319, -316, -313, -309, -306, -303, -299, -296, -293, -289,
945 -286, -283, -279, -276, -273, -269, -266, -263, -259, -256, -253,
946 -250, -246, -243, -240, -236, -233, -230, -226, -223, -220, -216,
947 -213, -210, -206, -203, -200, -196, -193, -190, -186, -183, -180,
948 -176, -173, -170, -166, -163, -160, -157, -153, -150, -147, -143,
949 -140, -137, -133, -130, -127, -123, -120, -117, -113, -110, -107,
950 -103, -100, -97, -93, -90, -87, -83, -80, -77, -73, -70,
951 -67, -63, -60, -57, -54, -50, -47, -44, -40, -37, -34,
952 -30, -27, -24, -20, -17, -14, -10, -7, -4, 0, 3,
953 6, 10, 13, 16, 20, 23, 26, 30, 33, 36, 39,
954 43, 46, 49, 53, 56, 59, 63, 66, 69, 73, 76,
955 79, 83, 86, 89, 93, 96, 99, 103, 106, 109, 113,
956 116, 119, 123, 126, 129, 132, 136, 139, 142, 146, 149,
957 152, 156, 159, 162, 166, 169, 172, 176, 179, 182, 186,
958 189, 192, 196, 199, 202, 206, 209, 212, 216, 219, 222,
959 226, 229, 232, 235, 239, 242, 245, 249, 252, 255, 259,
960 262, 265, 269, 272, 275, 279, 282, 285, 289, 292, 295,
961 299, 302, 305, 309, 312, 315, 319, 322, 325, 328, 332,
962 335, 338, 342, 345, 348, 352, 355, 358, 362, 365, 368,
963 372, 375, 378, 382, 385, 388, 392, 395, 398, 402, 405,
964 408, 412, 415, 418, 422, 425, 428, 431, 435, 438, 441,
965 445, 448, 451, 455, 458, 461, 465, 468, 471, 475, 478,
966 481, 485, 488, 491, 495, 498, 501, 505, 508, 511, 515,
967 518, 521, 524, 528, 531, 534, 538, 541, 544, 548, 551,
968 554, 558, 561, 564, 568, 571, 574, 578, 581, 584, 588,
969 591, 594, 598, 601, 604, 608, 611, 614, 617, 621, 624,
970 627, 631, 634, 637, 641, 644, 647, 651, 654, 657, 661,
971 664, 667, 671, 674, 677, 681, 684, 687, 691, 694, 697,
972 701, 704, 707, 711, 714, 717, 720, 724, 727, 730, 734,
973 737, 740, 744, 747, 750, 754, 757, 760, 764, 767, 770,
974 774, 777, 780, 784, 787, 790, 794, 797, 800, 804, 807,
975 810, 813, 817, 820, 823, 827, 830, 833, 837, 840, 843,
976 847, 850, 853, 857, 860, 863, 867, 870, 873, 877, 880,
977 883, 887, 890, 893, 897, 900, 903, 907, 910, 913, 916,
978 920, 923, 926, 930, 933, 936, 940, 943, 946, 950, 953,