numpy 2.4.2__cp313-cp313t-win32.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (929) hide show
  1. numpy/__config__.py +170 -0
  2. numpy/__config__.pyi +108 -0
  3. numpy/__init__.cython-30.pxd +1242 -0
  4. numpy/__init__.pxd +1155 -0
  5. numpy/__init__.py +942 -0
  6. numpy/__init__.pyi +6202 -0
  7. numpy/_array_api_info.py +346 -0
  8. numpy/_array_api_info.pyi +206 -0
  9. numpy/_configtool.py +39 -0
  10. numpy/_configtool.pyi +1 -0
  11. numpy/_core/__init__.py +203 -0
  12. numpy/_core/__init__.pyi +666 -0
  13. numpy/_core/_add_newdocs.py +7151 -0
  14. numpy/_core/_add_newdocs.pyi +2 -0
  15. numpy/_core/_add_newdocs_scalars.py +381 -0
  16. numpy/_core/_add_newdocs_scalars.pyi +16 -0
  17. numpy/_core/_asarray.py +130 -0
  18. numpy/_core/_asarray.pyi +43 -0
  19. numpy/_core/_dtype.py +366 -0
  20. numpy/_core/_dtype.pyi +56 -0
  21. numpy/_core/_dtype_ctypes.py +120 -0
  22. numpy/_core/_dtype_ctypes.pyi +83 -0
  23. numpy/_core/_exceptions.py +162 -0
  24. numpy/_core/_exceptions.pyi +54 -0
  25. numpy/_core/_internal.py +968 -0
  26. numpy/_core/_internal.pyi +61 -0
  27. numpy/_core/_methods.py +252 -0
  28. numpy/_core/_methods.pyi +22 -0
  29. numpy/_core/_multiarray_tests.cp313t-win32.lib +0 -0
  30. numpy/_core/_multiarray_tests.cp313t-win32.pyd +0 -0
  31. numpy/_core/_multiarray_umath.cp313t-win32.lib +0 -0
  32. numpy/_core/_multiarray_umath.cp313t-win32.pyd +0 -0
  33. numpy/_core/_operand_flag_tests.cp313t-win32.lib +0 -0
  34. numpy/_core/_operand_flag_tests.cp313t-win32.pyd +0 -0
  35. numpy/_core/_rational_tests.cp313t-win32.lib +0 -0
  36. numpy/_core/_rational_tests.cp313t-win32.pyd +0 -0
  37. numpy/_core/_simd.cp313t-win32.lib +0 -0
  38. numpy/_core/_simd.cp313t-win32.pyd +0 -0
  39. numpy/_core/_simd.pyi +35 -0
  40. numpy/_core/_string_helpers.py +100 -0
  41. numpy/_core/_string_helpers.pyi +12 -0
  42. numpy/_core/_struct_ufunc_tests.cp313t-win32.lib +0 -0
  43. numpy/_core/_struct_ufunc_tests.cp313t-win32.pyd +0 -0
  44. numpy/_core/_type_aliases.py +131 -0
  45. numpy/_core/_type_aliases.pyi +86 -0
  46. numpy/_core/_ufunc_config.py +515 -0
  47. numpy/_core/_ufunc_config.pyi +69 -0
  48. numpy/_core/_umath_tests.cp313t-win32.lib +0 -0
  49. numpy/_core/_umath_tests.cp313t-win32.pyd +0 -0
  50. numpy/_core/_umath_tests.pyi +47 -0
  51. numpy/_core/arrayprint.py +1779 -0
  52. numpy/_core/arrayprint.pyi +158 -0
  53. numpy/_core/cversions.py +13 -0
  54. numpy/_core/defchararray.py +1414 -0
  55. numpy/_core/defchararray.pyi +1150 -0
  56. numpy/_core/einsumfunc.py +1650 -0
  57. numpy/_core/einsumfunc.pyi +184 -0
  58. numpy/_core/fromnumeric.py +4233 -0
  59. numpy/_core/fromnumeric.pyi +1735 -0
  60. numpy/_core/function_base.py +547 -0
  61. numpy/_core/function_base.pyi +276 -0
  62. numpy/_core/getlimits.py +462 -0
  63. numpy/_core/getlimits.pyi +124 -0
  64. numpy/_core/include/numpy/__multiarray_api.c +376 -0
  65. numpy/_core/include/numpy/__multiarray_api.h +1628 -0
  66. numpy/_core/include/numpy/__ufunc_api.c +55 -0
  67. numpy/_core/include/numpy/__ufunc_api.h +349 -0
  68. numpy/_core/include/numpy/_neighborhood_iterator_imp.h +90 -0
  69. numpy/_core/include/numpy/_numpyconfig.h +33 -0
  70. numpy/_core/include/numpy/_public_dtype_api_table.h +86 -0
  71. numpy/_core/include/numpy/arrayobject.h +7 -0
  72. numpy/_core/include/numpy/arrayscalars.h +198 -0
  73. numpy/_core/include/numpy/dtype_api.h +547 -0
  74. numpy/_core/include/numpy/halffloat.h +70 -0
  75. numpy/_core/include/numpy/ndarrayobject.h +304 -0
  76. numpy/_core/include/numpy/ndarraytypes.h +1982 -0
  77. numpy/_core/include/numpy/npy_2_compat.h +249 -0
  78. numpy/_core/include/numpy/npy_2_complexcompat.h +28 -0
  79. numpy/_core/include/numpy/npy_3kcompat.h +374 -0
  80. numpy/_core/include/numpy/npy_common.h +989 -0
  81. numpy/_core/include/numpy/npy_cpu.h +126 -0
  82. numpy/_core/include/numpy/npy_endian.h +79 -0
  83. numpy/_core/include/numpy/npy_math.h +602 -0
  84. numpy/_core/include/numpy/npy_no_deprecated_api.h +20 -0
  85. numpy/_core/include/numpy/npy_os.h +42 -0
  86. numpy/_core/include/numpy/numpyconfig.h +185 -0
  87. numpy/_core/include/numpy/random/LICENSE.txt +21 -0
  88. numpy/_core/include/numpy/random/bitgen.h +20 -0
  89. numpy/_core/include/numpy/random/distributions.h +209 -0
  90. numpy/_core/include/numpy/random/libdivide.h +2079 -0
  91. numpy/_core/include/numpy/ufuncobject.h +343 -0
  92. numpy/_core/include/numpy/utils.h +37 -0
  93. numpy/_core/lib/npy-pkg-config/mlib.ini +12 -0
  94. numpy/_core/lib/npy-pkg-config/npymath.ini +20 -0
  95. numpy/_core/lib/npymath.lib +0 -0
  96. numpy/_core/lib/pkgconfig/numpy.pc +7 -0
  97. numpy/_core/memmap.py +363 -0
  98. numpy/_core/memmap.pyi +3 -0
  99. numpy/_core/multiarray.py +1740 -0
  100. numpy/_core/multiarray.pyi +1328 -0
  101. numpy/_core/numeric.py +2771 -0
  102. numpy/_core/numeric.pyi +1276 -0
  103. numpy/_core/numerictypes.py +633 -0
  104. numpy/_core/numerictypes.pyi +196 -0
  105. numpy/_core/overrides.py +188 -0
  106. numpy/_core/overrides.pyi +47 -0
  107. numpy/_core/printoptions.py +32 -0
  108. numpy/_core/printoptions.pyi +28 -0
  109. numpy/_core/records.py +1088 -0
  110. numpy/_core/records.pyi +340 -0
  111. numpy/_core/shape_base.py +996 -0
  112. numpy/_core/shape_base.pyi +182 -0
  113. numpy/_core/strings.py +1813 -0
  114. numpy/_core/strings.pyi +536 -0
  115. numpy/_core/tests/_locales.py +72 -0
  116. numpy/_core/tests/_natype.py +144 -0
  117. numpy/_core/tests/data/astype_copy.pkl +0 -0
  118. numpy/_core/tests/data/generate_umath_validation_data.cpp +170 -0
  119. numpy/_core/tests/data/recarray_from_file.fits +0 -0
  120. numpy/_core/tests/data/umath-validation-set-README.txt +15 -0
  121. numpy/_core/tests/data/umath-validation-set-arccos.csv +1429 -0
  122. numpy/_core/tests/data/umath-validation-set-arccosh.csv +1429 -0
  123. numpy/_core/tests/data/umath-validation-set-arcsin.csv +1429 -0
  124. numpy/_core/tests/data/umath-validation-set-arcsinh.csv +1429 -0
  125. numpy/_core/tests/data/umath-validation-set-arctan.csv +1429 -0
  126. numpy/_core/tests/data/umath-validation-set-arctanh.csv +1429 -0
  127. numpy/_core/tests/data/umath-validation-set-cbrt.csv +1429 -0
  128. numpy/_core/tests/data/umath-validation-set-cos.csv +1375 -0
  129. numpy/_core/tests/data/umath-validation-set-cosh.csv +1429 -0
  130. numpy/_core/tests/data/umath-validation-set-exp.csv +412 -0
  131. numpy/_core/tests/data/umath-validation-set-exp2.csv +1429 -0
  132. numpy/_core/tests/data/umath-validation-set-expm1.csv +1429 -0
  133. numpy/_core/tests/data/umath-validation-set-log.csv +271 -0
  134. numpy/_core/tests/data/umath-validation-set-log10.csv +1629 -0
  135. numpy/_core/tests/data/umath-validation-set-log1p.csv +1429 -0
  136. numpy/_core/tests/data/umath-validation-set-log2.csv +1629 -0
  137. numpy/_core/tests/data/umath-validation-set-sin.csv +1370 -0
  138. numpy/_core/tests/data/umath-validation-set-sinh.csv +1429 -0
  139. numpy/_core/tests/data/umath-validation-set-tan.csv +1429 -0
  140. numpy/_core/tests/data/umath-validation-set-tanh.csv +1429 -0
  141. numpy/_core/tests/examples/cython/checks.pyx +374 -0
  142. numpy/_core/tests/examples/cython/meson.build +43 -0
  143. numpy/_core/tests/examples/cython/setup.py +39 -0
  144. numpy/_core/tests/examples/limited_api/limited_api1.c +15 -0
  145. numpy/_core/tests/examples/limited_api/limited_api2.pyx +11 -0
  146. numpy/_core/tests/examples/limited_api/limited_api_latest.c +19 -0
  147. numpy/_core/tests/examples/limited_api/meson.build +63 -0
  148. numpy/_core/tests/examples/limited_api/setup.py +24 -0
  149. numpy/_core/tests/test__exceptions.py +90 -0
  150. numpy/_core/tests/test_abc.py +54 -0
  151. numpy/_core/tests/test_api.py +655 -0
  152. numpy/_core/tests/test_argparse.py +90 -0
  153. numpy/_core/tests/test_array_api_info.py +113 -0
  154. numpy/_core/tests/test_array_coercion.py +928 -0
  155. numpy/_core/tests/test_array_interface.py +222 -0
  156. numpy/_core/tests/test_arraymethod.py +84 -0
  157. numpy/_core/tests/test_arrayobject.py +95 -0
  158. numpy/_core/tests/test_arrayprint.py +1324 -0
  159. numpy/_core/tests/test_casting_floatingpoint_errors.py +154 -0
  160. numpy/_core/tests/test_casting_unittests.py +955 -0
  161. numpy/_core/tests/test_conversion_utils.py +209 -0
  162. numpy/_core/tests/test_cpu_dispatcher.py +48 -0
  163. numpy/_core/tests/test_cpu_features.py +450 -0
  164. numpy/_core/tests/test_custom_dtypes.py +393 -0
  165. numpy/_core/tests/test_cython.py +352 -0
  166. numpy/_core/tests/test_datetime.py +2792 -0
  167. numpy/_core/tests/test_defchararray.py +858 -0
  168. numpy/_core/tests/test_deprecations.py +460 -0
  169. numpy/_core/tests/test_dlpack.py +190 -0
  170. numpy/_core/tests/test_dtype.py +2110 -0
  171. numpy/_core/tests/test_einsum.py +1351 -0
  172. numpy/_core/tests/test_errstate.py +131 -0
  173. numpy/_core/tests/test_extint128.py +217 -0
  174. numpy/_core/tests/test_finfo.py +86 -0
  175. numpy/_core/tests/test_function_base.py +504 -0
  176. numpy/_core/tests/test_getlimits.py +171 -0
  177. numpy/_core/tests/test_half.py +593 -0
  178. numpy/_core/tests/test_hashtable.py +36 -0
  179. numpy/_core/tests/test_indexerrors.py +122 -0
  180. numpy/_core/tests/test_indexing.py +1692 -0
  181. numpy/_core/tests/test_item_selection.py +167 -0
  182. numpy/_core/tests/test_limited_api.py +102 -0
  183. numpy/_core/tests/test_longdouble.py +370 -0
  184. numpy/_core/tests/test_mem_overlap.py +933 -0
  185. numpy/_core/tests/test_mem_policy.py +453 -0
  186. numpy/_core/tests/test_memmap.py +248 -0
  187. numpy/_core/tests/test_multiarray.py +11008 -0
  188. numpy/_core/tests/test_multiprocessing.py +55 -0
  189. numpy/_core/tests/test_multithreading.py +406 -0
  190. numpy/_core/tests/test_nditer.py +3533 -0
  191. numpy/_core/tests/test_nep50_promotions.py +287 -0
  192. numpy/_core/tests/test_numeric.py +4301 -0
  193. numpy/_core/tests/test_numerictypes.py +650 -0
  194. numpy/_core/tests/test_overrides.py +800 -0
  195. numpy/_core/tests/test_print.py +202 -0
  196. numpy/_core/tests/test_protocols.py +46 -0
  197. numpy/_core/tests/test_records.py +544 -0
  198. numpy/_core/tests/test_regression.py +2677 -0
  199. numpy/_core/tests/test_scalar_ctors.py +203 -0
  200. numpy/_core/tests/test_scalar_methods.py +328 -0
  201. numpy/_core/tests/test_scalarbuffer.py +153 -0
  202. numpy/_core/tests/test_scalarinherit.py +105 -0
  203. numpy/_core/tests/test_scalarmath.py +1168 -0
  204. numpy/_core/tests/test_scalarprint.py +403 -0
  205. numpy/_core/tests/test_shape_base.py +904 -0
  206. numpy/_core/tests/test_simd.py +1345 -0
  207. numpy/_core/tests/test_simd_module.py +105 -0
  208. numpy/_core/tests/test_stringdtype.py +1855 -0
  209. numpy/_core/tests/test_strings.py +1523 -0
  210. numpy/_core/tests/test_ufunc.py +3405 -0
  211. numpy/_core/tests/test_umath.py +4962 -0
  212. numpy/_core/tests/test_umath_accuracy.py +132 -0
  213. numpy/_core/tests/test_umath_complex.py +631 -0
  214. numpy/_core/tests/test_unicode.py +369 -0
  215. numpy/_core/umath.py +60 -0
  216. numpy/_core/umath.pyi +232 -0
  217. numpy/_distributor_init.py +15 -0
  218. numpy/_distributor_init.pyi +1 -0
  219. numpy/_expired_attrs_2_0.py +78 -0
  220. numpy/_expired_attrs_2_0.pyi +61 -0
  221. numpy/_globals.py +121 -0
  222. numpy/_globals.pyi +17 -0
  223. numpy/_pyinstaller/__init__.py +0 -0
  224. numpy/_pyinstaller/__init__.pyi +0 -0
  225. numpy/_pyinstaller/hook-numpy.py +36 -0
  226. numpy/_pyinstaller/hook-numpy.pyi +6 -0
  227. numpy/_pyinstaller/tests/__init__.py +16 -0
  228. numpy/_pyinstaller/tests/pyinstaller-smoke.py +32 -0
  229. numpy/_pyinstaller/tests/test_pyinstaller.py +35 -0
  230. numpy/_pytesttester.py +201 -0
  231. numpy/_pytesttester.pyi +18 -0
  232. numpy/_typing/__init__.py +173 -0
  233. numpy/_typing/_add_docstring.py +153 -0
  234. numpy/_typing/_array_like.py +106 -0
  235. numpy/_typing/_char_codes.py +213 -0
  236. numpy/_typing/_dtype_like.py +114 -0
  237. numpy/_typing/_extended_precision.py +15 -0
  238. numpy/_typing/_nbit.py +19 -0
  239. numpy/_typing/_nbit_base.py +94 -0
  240. numpy/_typing/_nbit_base.pyi +39 -0
  241. numpy/_typing/_nested_sequence.py +79 -0
  242. numpy/_typing/_scalars.py +20 -0
  243. numpy/_typing/_shape.py +8 -0
  244. numpy/_typing/_ufunc.py +7 -0
  245. numpy/_typing/_ufunc.pyi +975 -0
  246. numpy/_utils/__init__.py +95 -0
  247. numpy/_utils/__init__.pyi +28 -0
  248. numpy/_utils/_convertions.py +18 -0
  249. numpy/_utils/_convertions.pyi +4 -0
  250. numpy/_utils/_inspect.py +192 -0
  251. numpy/_utils/_inspect.pyi +70 -0
  252. numpy/_utils/_pep440.py +486 -0
  253. numpy/_utils/_pep440.pyi +118 -0
  254. numpy/char/__init__.py +2 -0
  255. numpy/char/__init__.pyi +111 -0
  256. numpy/conftest.py +248 -0
  257. numpy/core/__init__.py +33 -0
  258. numpy/core/__init__.pyi +0 -0
  259. numpy/core/_dtype.py +10 -0
  260. numpy/core/_dtype.pyi +0 -0
  261. numpy/core/_dtype_ctypes.py +10 -0
  262. numpy/core/_dtype_ctypes.pyi +0 -0
  263. numpy/core/_internal.py +27 -0
  264. numpy/core/_multiarray_umath.py +57 -0
  265. numpy/core/_utils.py +21 -0
  266. numpy/core/arrayprint.py +10 -0
  267. numpy/core/defchararray.py +10 -0
  268. numpy/core/einsumfunc.py +10 -0
  269. numpy/core/fromnumeric.py +10 -0
  270. numpy/core/function_base.py +10 -0
  271. numpy/core/getlimits.py +10 -0
  272. numpy/core/multiarray.py +25 -0
  273. numpy/core/numeric.py +12 -0
  274. numpy/core/numerictypes.py +10 -0
  275. numpy/core/overrides.py +10 -0
  276. numpy/core/overrides.pyi +7 -0
  277. numpy/core/records.py +10 -0
  278. numpy/core/shape_base.py +10 -0
  279. numpy/core/umath.py +10 -0
  280. numpy/ctypeslib/__init__.py +13 -0
  281. numpy/ctypeslib/__init__.pyi +15 -0
  282. numpy/ctypeslib/_ctypeslib.py +603 -0
  283. numpy/ctypeslib/_ctypeslib.pyi +236 -0
  284. numpy/doc/ufuncs.py +138 -0
  285. numpy/dtypes.py +41 -0
  286. numpy/dtypes.pyi +630 -0
  287. numpy/exceptions.py +246 -0
  288. numpy/exceptions.pyi +27 -0
  289. numpy/f2py/__init__.py +86 -0
  290. numpy/f2py/__init__.pyi +5 -0
  291. numpy/f2py/__main__.py +5 -0
  292. numpy/f2py/__version__.py +1 -0
  293. numpy/f2py/__version__.pyi +1 -0
  294. numpy/f2py/_backends/__init__.py +9 -0
  295. numpy/f2py/_backends/__init__.pyi +5 -0
  296. numpy/f2py/_backends/_backend.py +44 -0
  297. numpy/f2py/_backends/_backend.pyi +46 -0
  298. numpy/f2py/_backends/_distutils.py +76 -0
  299. numpy/f2py/_backends/_distutils.pyi +13 -0
  300. numpy/f2py/_backends/_meson.py +244 -0
  301. numpy/f2py/_backends/_meson.pyi +62 -0
  302. numpy/f2py/_backends/meson.build.template +58 -0
  303. numpy/f2py/_isocbind.py +62 -0
  304. numpy/f2py/_isocbind.pyi +13 -0
  305. numpy/f2py/_src_pyf.py +247 -0
  306. numpy/f2py/_src_pyf.pyi +28 -0
  307. numpy/f2py/auxfuncs.py +1004 -0
  308. numpy/f2py/auxfuncs.pyi +262 -0
  309. numpy/f2py/capi_maps.py +811 -0
  310. numpy/f2py/capi_maps.pyi +33 -0
  311. numpy/f2py/cb_rules.py +665 -0
  312. numpy/f2py/cb_rules.pyi +17 -0
  313. numpy/f2py/cfuncs.py +1563 -0
  314. numpy/f2py/cfuncs.pyi +31 -0
  315. numpy/f2py/common_rules.py +143 -0
  316. numpy/f2py/common_rules.pyi +9 -0
  317. numpy/f2py/crackfortran.py +3725 -0
  318. numpy/f2py/crackfortran.pyi +266 -0
  319. numpy/f2py/diagnose.py +149 -0
  320. numpy/f2py/diagnose.pyi +1 -0
  321. numpy/f2py/f2py2e.py +788 -0
  322. numpy/f2py/f2py2e.pyi +74 -0
  323. numpy/f2py/f90mod_rules.py +269 -0
  324. numpy/f2py/f90mod_rules.pyi +16 -0
  325. numpy/f2py/func2subr.py +329 -0
  326. numpy/f2py/func2subr.pyi +7 -0
  327. numpy/f2py/rules.py +1629 -0
  328. numpy/f2py/rules.pyi +41 -0
  329. numpy/f2py/setup.cfg +3 -0
  330. numpy/f2py/src/fortranobject.c +1436 -0
  331. numpy/f2py/src/fortranobject.h +173 -0
  332. numpy/f2py/symbolic.py +1518 -0
  333. numpy/f2py/symbolic.pyi +219 -0
  334. numpy/f2py/tests/__init__.py +16 -0
  335. numpy/f2py/tests/src/abstract_interface/foo.f90 +34 -0
  336. numpy/f2py/tests/src/abstract_interface/gh18403_mod.f90 +6 -0
  337. numpy/f2py/tests/src/array_from_pyobj/wrapmodule.c +235 -0
  338. numpy/f2py/tests/src/assumed_shape/.f2py_f2cmap +1 -0
  339. numpy/f2py/tests/src/assumed_shape/foo_free.f90 +34 -0
  340. numpy/f2py/tests/src/assumed_shape/foo_mod.f90 +41 -0
  341. numpy/f2py/tests/src/assumed_shape/foo_use.f90 +19 -0
  342. numpy/f2py/tests/src/assumed_shape/precision.f90 +4 -0
  343. numpy/f2py/tests/src/block_docstring/foo.f +6 -0
  344. numpy/f2py/tests/src/callback/foo.f +62 -0
  345. numpy/f2py/tests/src/callback/gh17797.f90 +7 -0
  346. numpy/f2py/tests/src/callback/gh18335.f90 +17 -0
  347. numpy/f2py/tests/src/callback/gh25211.f +10 -0
  348. numpy/f2py/tests/src/callback/gh25211.pyf +18 -0
  349. numpy/f2py/tests/src/callback/gh26681.f90 +18 -0
  350. numpy/f2py/tests/src/cli/gh_22819.pyf +6 -0
  351. numpy/f2py/tests/src/cli/hi77.f +3 -0
  352. numpy/f2py/tests/src/cli/hiworld.f90 +3 -0
  353. numpy/f2py/tests/src/common/block.f +11 -0
  354. numpy/f2py/tests/src/common/gh19161.f90 +10 -0
  355. numpy/f2py/tests/src/crackfortran/accesstype.f90 +13 -0
  356. numpy/f2py/tests/src/crackfortran/common_with_division.f +17 -0
  357. numpy/f2py/tests/src/crackfortran/data_common.f +8 -0
  358. numpy/f2py/tests/src/crackfortran/data_multiplier.f +5 -0
  359. numpy/f2py/tests/src/crackfortran/data_stmts.f90 +20 -0
  360. numpy/f2py/tests/src/crackfortran/data_with_comments.f +8 -0
  361. numpy/f2py/tests/src/crackfortran/foo_deps.f90 +6 -0
  362. numpy/f2py/tests/src/crackfortran/gh15035.f +16 -0
  363. numpy/f2py/tests/src/crackfortran/gh17859.f +12 -0
  364. numpy/f2py/tests/src/crackfortran/gh22648.pyf +7 -0
  365. numpy/f2py/tests/src/crackfortran/gh23533.f +5 -0
  366. numpy/f2py/tests/src/crackfortran/gh23598.f90 +4 -0
  367. numpy/f2py/tests/src/crackfortran/gh23598Warn.f90 +11 -0
  368. numpy/f2py/tests/src/crackfortran/gh23879.f90 +20 -0
  369. numpy/f2py/tests/src/crackfortran/gh27697.f90 +12 -0
  370. numpy/f2py/tests/src/crackfortran/gh2848.f90 +13 -0
  371. numpy/f2py/tests/src/crackfortran/operators.f90 +49 -0
  372. numpy/f2py/tests/src/crackfortran/privatemod.f90 +11 -0
  373. numpy/f2py/tests/src/crackfortran/publicmod.f90 +10 -0
  374. numpy/f2py/tests/src/crackfortran/pubprivmod.f90 +10 -0
  375. numpy/f2py/tests/src/crackfortran/unicode_comment.f90 +4 -0
  376. numpy/f2py/tests/src/f2cmap/.f2py_f2cmap +1 -0
  377. numpy/f2py/tests/src/f2cmap/isoFortranEnvMap.f90 +9 -0
  378. numpy/f2py/tests/src/isocintrin/isoCtests.f90 +34 -0
  379. numpy/f2py/tests/src/kind/foo.f90 +20 -0
  380. numpy/f2py/tests/src/mixed/foo.f +5 -0
  381. numpy/f2py/tests/src/mixed/foo_fixed.f90 +8 -0
  382. numpy/f2py/tests/src/mixed/foo_free.f90 +8 -0
  383. numpy/f2py/tests/src/modules/gh25337/data.f90 +8 -0
  384. numpy/f2py/tests/src/modules/gh25337/use_data.f90 +6 -0
  385. numpy/f2py/tests/src/modules/gh26920/two_mods_with_no_public_entities.f90 +21 -0
  386. numpy/f2py/tests/src/modules/gh26920/two_mods_with_one_public_routine.f90 +21 -0
  387. numpy/f2py/tests/src/modules/module_data_docstring.f90 +12 -0
  388. numpy/f2py/tests/src/modules/use_modules.f90 +20 -0
  389. numpy/f2py/tests/src/negative_bounds/issue_20853.f90 +7 -0
  390. numpy/f2py/tests/src/parameter/constant_array.f90 +45 -0
  391. numpy/f2py/tests/src/parameter/constant_both.f90 +57 -0
  392. numpy/f2py/tests/src/parameter/constant_compound.f90 +15 -0
  393. numpy/f2py/tests/src/parameter/constant_integer.f90 +22 -0
  394. numpy/f2py/tests/src/parameter/constant_non_compound.f90 +23 -0
  395. numpy/f2py/tests/src/parameter/constant_real.f90 +23 -0
  396. numpy/f2py/tests/src/quoted_character/foo.f +14 -0
  397. numpy/f2py/tests/src/regression/AB.inc +1 -0
  398. numpy/f2py/tests/src/regression/assignOnlyModule.f90 +25 -0
  399. numpy/f2py/tests/src/regression/datonly.f90 +17 -0
  400. numpy/f2py/tests/src/regression/f77comments.f +26 -0
  401. numpy/f2py/tests/src/regression/f77fixedform.f95 +5 -0
  402. numpy/f2py/tests/src/regression/f90continuation.f90 +9 -0
  403. numpy/f2py/tests/src/regression/incfile.f90 +5 -0
  404. numpy/f2py/tests/src/regression/inout.f90 +9 -0
  405. numpy/f2py/tests/src/regression/lower_f2py_fortran.f90 +5 -0
  406. numpy/f2py/tests/src/regression/mod_derived_types.f90 +23 -0
  407. numpy/f2py/tests/src/return_character/foo77.f +45 -0
  408. numpy/f2py/tests/src/return_character/foo90.f90 +48 -0
  409. numpy/f2py/tests/src/return_complex/foo77.f +45 -0
  410. numpy/f2py/tests/src/return_complex/foo90.f90 +48 -0
  411. numpy/f2py/tests/src/return_integer/foo77.f +56 -0
  412. numpy/f2py/tests/src/return_integer/foo90.f90 +59 -0
  413. numpy/f2py/tests/src/return_logical/foo77.f +56 -0
  414. numpy/f2py/tests/src/return_logical/foo90.f90 +59 -0
  415. numpy/f2py/tests/src/return_real/foo77.f +45 -0
  416. numpy/f2py/tests/src/return_real/foo90.f90 +48 -0
  417. numpy/f2py/tests/src/routines/funcfortranname.f +5 -0
  418. numpy/f2py/tests/src/routines/funcfortranname.pyf +11 -0
  419. numpy/f2py/tests/src/routines/subrout.f +4 -0
  420. numpy/f2py/tests/src/routines/subrout.pyf +10 -0
  421. numpy/f2py/tests/src/size/foo.f90 +44 -0
  422. numpy/f2py/tests/src/string/char.f90 +29 -0
  423. numpy/f2py/tests/src/string/fixed_string.f90 +34 -0
  424. numpy/f2py/tests/src/string/gh24008.f +8 -0
  425. numpy/f2py/tests/src/string/gh24662.f90 +7 -0
  426. numpy/f2py/tests/src/string/gh25286.f90 +14 -0
  427. numpy/f2py/tests/src/string/gh25286.pyf +12 -0
  428. numpy/f2py/tests/src/string/gh25286_bc.pyf +12 -0
  429. numpy/f2py/tests/src/string/scalar_string.f90 +9 -0
  430. numpy/f2py/tests/src/string/string.f +12 -0
  431. numpy/f2py/tests/src/value_attrspec/gh21665.f90 +9 -0
  432. numpy/f2py/tests/test_abstract_interface.py +26 -0
  433. numpy/f2py/tests/test_array_from_pyobj.py +678 -0
  434. numpy/f2py/tests/test_assumed_shape.py +50 -0
  435. numpy/f2py/tests/test_block_docstring.py +20 -0
  436. numpy/f2py/tests/test_callback.py +263 -0
  437. numpy/f2py/tests/test_character.py +641 -0
  438. numpy/f2py/tests/test_common.py +23 -0
  439. numpy/f2py/tests/test_crackfortran.py +421 -0
  440. numpy/f2py/tests/test_data.py +71 -0
  441. numpy/f2py/tests/test_docs.py +66 -0
  442. numpy/f2py/tests/test_f2cmap.py +17 -0
  443. numpy/f2py/tests/test_f2py2e.py +983 -0
  444. numpy/f2py/tests/test_isoc.py +56 -0
  445. numpy/f2py/tests/test_kind.py +52 -0
  446. numpy/f2py/tests/test_mixed.py +35 -0
  447. numpy/f2py/tests/test_modules.py +83 -0
  448. numpy/f2py/tests/test_parameter.py +129 -0
  449. numpy/f2py/tests/test_pyf_src.py +43 -0
  450. numpy/f2py/tests/test_quoted_character.py +18 -0
  451. numpy/f2py/tests/test_regression.py +187 -0
  452. numpy/f2py/tests/test_return_character.py +48 -0
  453. numpy/f2py/tests/test_return_complex.py +67 -0
  454. numpy/f2py/tests/test_return_integer.py +55 -0
  455. numpy/f2py/tests/test_return_logical.py +65 -0
  456. numpy/f2py/tests/test_return_real.py +109 -0
  457. numpy/f2py/tests/test_routines.py +29 -0
  458. numpy/f2py/tests/test_semicolon_split.py +75 -0
  459. numpy/f2py/tests/test_size.py +45 -0
  460. numpy/f2py/tests/test_string.py +100 -0
  461. numpy/f2py/tests/test_symbolic.py +500 -0
  462. numpy/f2py/tests/test_value_attrspec.py +15 -0
  463. numpy/f2py/tests/util.py +442 -0
  464. numpy/f2py/use_rules.py +99 -0
  465. numpy/f2py/use_rules.pyi +9 -0
  466. numpy/fft/__init__.py +213 -0
  467. numpy/fft/__init__.pyi +38 -0
  468. numpy/fft/_helper.py +235 -0
  469. numpy/fft/_helper.pyi +44 -0
  470. numpy/fft/_pocketfft.py +1693 -0
  471. numpy/fft/_pocketfft.pyi +137 -0
  472. numpy/fft/_pocketfft_umath.cp313t-win32.lib +0 -0
  473. numpy/fft/_pocketfft_umath.cp313t-win32.pyd +0 -0
  474. numpy/fft/tests/__init__.py +0 -0
  475. numpy/fft/tests/test_helper.py +167 -0
  476. numpy/fft/tests/test_pocketfft.py +589 -0
  477. numpy/lib/__init__.py +97 -0
  478. numpy/lib/__init__.pyi +52 -0
  479. numpy/lib/_array_utils_impl.py +62 -0
  480. numpy/lib/_array_utils_impl.pyi +10 -0
  481. numpy/lib/_arraypad_impl.py +926 -0
  482. numpy/lib/_arraypad_impl.pyi +88 -0
  483. numpy/lib/_arraysetops_impl.py +1158 -0
  484. numpy/lib/_arraysetops_impl.pyi +462 -0
  485. numpy/lib/_arrayterator_impl.py +224 -0
  486. numpy/lib/_arrayterator_impl.pyi +45 -0
  487. numpy/lib/_datasource.py +700 -0
  488. numpy/lib/_datasource.pyi +30 -0
  489. numpy/lib/_format_impl.py +1036 -0
  490. numpy/lib/_format_impl.pyi +56 -0
  491. numpy/lib/_function_base_impl.py +5760 -0
  492. numpy/lib/_function_base_impl.pyi +2324 -0
  493. numpy/lib/_histograms_impl.py +1085 -0
  494. numpy/lib/_histograms_impl.pyi +40 -0
  495. numpy/lib/_index_tricks_impl.py +1048 -0
  496. numpy/lib/_index_tricks_impl.pyi +267 -0
  497. numpy/lib/_iotools.py +900 -0
  498. numpy/lib/_iotools.pyi +116 -0
  499. numpy/lib/_nanfunctions_impl.py +2006 -0
  500. numpy/lib/_nanfunctions_impl.pyi +48 -0
  501. numpy/lib/_npyio_impl.py +2583 -0
  502. numpy/lib/_npyio_impl.pyi +299 -0
  503. numpy/lib/_polynomial_impl.py +1465 -0
  504. numpy/lib/_polynomial_impl.pyi +338 -0
  505. numpy/lib/_scimath_impl.py +642 -0
  506. numpy/lib/_scimath_impl.pyi +93 -0
  507. numpy/lib/_shape_base_impl.py +1289 -0
  508. numpy/lib/_shape_base_impl.pyi +236 -0
  509. numpy/lib/_stride_tricks_impl.py +582 -0
  510. numpy/lib/_stride_tricks_impl.pyi +73 -0
  511. numpy/lib/_twodim_base_impl.py +1201 -0
  512. numpy/lib/_twodim_base_impl.pyi +408 -0
  513. numpy/lib/_type_check_impl.py +710 -0
  514. numpy/lib/_type_check_impl.pyi +348 -0
  515. numpy/lib/_ufunclike_impl.py +199 -0
  516. numpy/lib/_ufunclike_impl.pyi +60 -0
  517. numpy/lib/_user_array_impl.py +310 -0
  518. numpy/lib/_user_array_impl.pyi +226 -0
  519. numpy/lib/_utils_impl.py +784 -0
  520. numpy/lib/_utils_impl.pyi +22 -0
  521. numpy/lib/_version.py +153 -0
  522. numpy/lib/_version.pyi +17 -0
  523. numpy/lib/array_utils.py +7 -0
  524. numpy/lib/array_utils.pyi +6 -0
  525. numpy/lib/format.py +24 -0
  526. numpy/lib/format.pyi +24 -0
  527. numpy/lib/introspect.py +94 -0
  528. numpy/lib/introspect.pyi +3 -0
  529. numpy/lib/mixins.py +180 -0
  530. numpy/lib/mixins.pyi +78 -0
  531. numpy/lib/npyio.py +1 -0
  532. numpy/lib/npyio.pyi +5 -0
  533. numpy/lib/recfunctions.py +1681 -0
  534. numpy/lib/recfunctions.pyi +444 -0
  535. numpy/lib/scimath.py +13 -0
  536. numpy/lib/scimath.pyi +12 -0
  537. numpy/lib/stride_tricks.py +1 -0
  538. numpy/lib/stride_tricks.pyi +4 -0
  539. numpy/lib/tests/__init__.py +0 -0
  540. numpy/lib/tests/data/py2-np0-objarr.npy +0 -0
  541. numpy/lib/tests/data/py2-objarr.npy +0 -0
  542. numpy/lib/tests/data/py2-objarr.npz +0 -0
  543. numpy/lib/tests/data/py3-objarr.npy +0 -0
  544. numpy/lib/tests/data/py3-objarr.npz +0 -0
  545. numpy/lib/tests/data/python3.npy +0 -0
  546. numpy/lib/tests/data/win64python2.npy +0 -0
  547. numpy/lib/tests/test__datasource.py +328 -0
  548. numpy/lib/tests/test__iotools.py +358 -0
  549. numpy/lib/tests/test__version.py +64 -0
  550. numpy/lib/tests/test_array_utils.py +32 -0
  551. numpy/lib/tests/test_arraypad.py +1427 -0
  552. numpy/lib/tests/test_arraysetops.py +1302 -0
  553. numpy/lib/tests/test_arrayterator.py +45 -0
  554. numpy/lib/tests/test_format.py +1054 -0
  555. numpy/lib/tests/test_function_base.py +4756 -0
  556. numpy/lib/tests/test_histograms.py +855 -0
  557. numpy/lib/tests/test_index_tricks.py +693 -0
  558. numpy/lib/tests/test_io.py +2857 -0
  559. numpy/lib/tests/test_loadtxt.py +1099 -0
  560. numpy/lib/tests/test_mixins.py +215 -0
  561. numpy/lib/tests/test_nanfunctions.py +1438 -0
  562. numpy/lib/tests/test_packbits.py +376 -0
  563. numpy/lib/tests/test_polynomial.py +325 -0
  564. numpy/lib/tests/test_recfunctions.py +1042 -0
  565. numpy/lib/tests/test_regression.py +231 -0
  566. numpy/lib/tests/test_shape_base.py +813 -0
  567. numpy/lib/tests/test_stride_tricks.py +655 -0
  568. numpy/lib/tests/test_twodim_base.py +559 -0
  569. numpy/lib/tests/test_type_check.py +473 -0
  570. numpy/lib/tests/test_ufunclike.py +97 -0
  571. numpy/lib/tests/test_utils.py +80 -0
  572. numpy/lib/user_array.py +1 -0
  573. numpy/lib/user_array.pyi +1 -0
  574. numpy/linalg/__init__.py +95 -0
  575. numpy/linalg/__init__.pyi +71 -0
  576. numpy/linalg/_linalg.py +3657 -0
  577. numpy/linalg/_linalg.pyi +548 -0
  578. numpy/linalg/_umath_linalg.cp313t-win32.lib +0 -0
  579. numpy/linalg/_umath_linalg.cp313t-win32.pyd +0 -0
  580. numpy/linalg/_umath_linalg.pyi +60 -0
  581. numpy/linalg/lapack_lite.cp313t-win32.lib +0 -0
  582. numpy/linalg/lapack_lite.cp313t-win32.pyd +0 -0
  583. numpy/linalg/lapack_lite.pyi +143 -0
  584. numpy/linalg/tests/__init__.py +0 -0
  585. numpy/linalg/tests/test_deprecations.py +21 -0
  586. numpy/linalg/tests/test_linalg.py +2442 -0
  587. numpy/linalg/tests/test_regression.py +182 -0
  588. numpy/ma/API_CHANGES.txt +135 -0
  589. numpy/ma/LICENSE +24 -0
  590. numpy/ma/README.rst +236 -0
  591. numpy/ma/__init__.py +53 -0
  592. numpy/ma/__init__.pyi +458 -0
  593. numpy/ma/core.py +8929 -0
  594. numpy/ma/core.pyi +3733 -0
  595. numpy/ma/extras.py +2266 -0
  596. numpy/ma/extras.pyi +297 -0
  597. numpy/ma/mrecords.py +762 -0
  598. numpy/ma/mrecords.pyi +96 -0
  599. numpy/ma/tests/__init__.py +0 -0
  600. numpy/ma/tests/test_arrayobject.py +40 -0
  601. numpy/ma/tests/test_core.py +6008 -0
  602. numpy/ma/tests/test_deprecations.py +65 -0
  603. numpy/ma/tests/test_extras.py +1945 -0
  604. numpy/ma/tests/test_mrecords.py +495 -0
  605. numpy/ma/tests/test_old_ma.py +939 -0
  606. numpy/ma/tests/test_regression.py +83 -0
  607. numpy/ma/tests/test_subclassing.py +469 -0
  608. numpy/ma/testutils.py +294 -0
  609. numpy/ma/testutils.pyi +69 -0
  610. numpy/matlib.py +380 -0
  611. numpy/matlib.pyi +580 -0
  612. numpy/matrixlib/__init__.py +12 -0
  613. numpy/matrixlib/__init__.pyi +3 -0
  614. numpy/matrixlib/defmatrix.py +1119 -0
  615. numpy/matrixlib/defmatrix.pyi +218 -0
  616. numpy/matrixlib/tests/__init__.py +0 -0
  617. numpy/matrixlib/tests/test_defmatrix.py +455 -0
  618. numpy/matrixlib/tests/test_interaction.py +360 -0
  619. numpy/matrixlib/tests/test_masked_matrix.py +240 -0
  620. numpy/matrixlib/tests/test_matrix_linalg.py +110 -0
  621. numpy/matrixlib/tests/test_multiarray.py +17 -0
  622. numpy/matrixlib/tests/test_numeric.py +18 -0
  623. numpy/matrixlib/tests/test_regression.py +31 -0
  624. numpy/polynomial/__init__.py +187 -0
  625. numpy/polynomial/__init__.pyi +31 -0
  626. numpy/polynomial/_polybase.py +1191 -0
  627. numpy/polynomial/_polybase.pyi +262 -0
  628. numpy/polynomial/_polytypes.pyi +501 -0
  629. numpy/polynomial/chebyshev.py +2001 -0
  630. numpy/polynomial/chebyshev.pyi +180 -0
  631. numpy/polynomial/hermite.py +1738 -0
  632. numpy/polynomial/hermite.pyi +106 -0
  633. numpy/polynomial/hermite_e.py +1640 -0
  634. numpy/polynomial/hermite_e.pyi +106 -0
  635. numpy/polynomial/laguerre.py +1673 -0
  636. numpy/polynomial/laguerre.pyi +100 -0
  637. numpy/polynomial/legendre.py +1603 -0
  638. numpy/polynomial/legendre.pyi +100 -0
  639. numpy/polynomial/polynomial.py +1625 -0
  640. numpy/polynomial/polynomial.pyi +109 -0
  641. numpy/polynomial/polyutils.py +759 -0
  642. numpy/polynomial/polyutils.pyi +307 -0
  643. numpy/polynomial/tests/__init__.py +0 -0
  644. numpy/polynomial/tests/test_chebyshev.py +618 -0
  645. numpy/polynomial/tests/test_classes.py +613 -0
  646. numpy/polynomial/tests/test_hermite.py +553 -0
  647. numpy/polynomial/tests/test_hermite_e.py +554 -0
  648. numpy/polynomial/tests/test_laguerre.py +535 -0
  649. numpy/polynomial/tests/test_legendre.py +566 -0
  650. numpy/polynomial/tests/test_polynomial.py +691 -0
  651. numpy/polynomial/tests/test_polyutils.py +123 -0
  652. numpy/polynomial/tests/test_printing.py +557 -0
  653. numpy/polynomial/tests/test_symbol.py +217 -0
  654. numpy/py.typed +0 -0
  655. numpy/random/LICENSE.md +71 -0
  656. numpy/random/__init__.pxd +14 -0
  657. numpy/random/__init__.py +213 -0
  658. numpy/random/__init__.pyi +124 -0
  659. numpy/random/_bounded_integers.cp313t-win32.lib +0 -0
  660. numpy/random/_bounded_integers.cp313t-win32.pyd +0 -0
  661. numpy/random/_bounded_integers.pxd +38 -0
  662. numpy/random/_bounded_integers.pyi +1 -0
  663. numpy/random/_common.cp313t-win32.lib +0 -0
  664. numpy/random/_common.cp313t-win32.pyd +0 -0
  665. numpy/random/_common.pxd +110 -0
  666. numpy/random/_common.pyi +16 -0
  667. numpy/random/_examples/cffi/extending.py +44 -0
  668. numpy/random/_examples/cffi/parse.py +53 -0
  669. numpy/random/_examples/cython/extending.pyx +77 -0
  670. numpy/random/_examples/cython/extending_distributions.pyx +117 -0
  671. numpy/random/_examples/cython/meson.build +53 -0
  672. numpy/random/_examples/numba/extending.py +86 -0
  673. numpy/random/_examples/numba/extending_distributions.py +67 -0
  674. numpy/random/_generator.cp313t-win32.lib +0 -0
  675. numpy/random/_generator.cp313t-win32.pyd +0 -0
  676. numpy/random/_generator.pyi +862 -0
  677. numpy/random/_mt19937.cp313t-win32.lib +0 -0
  678. numpy/random/_mt19937.cp313t-win32.pyd +0 -0
  679. numpy/random/_mt19937.pyi +27 -0
  680. numpy/random/_pcg64.cp313t-win32.lib +0 -0
  681. numpy/random/_pcg64.cp313t-win32.pyd +0 -0
  682. numpy/random/_pcg64.pyi +41 -0
  683. numpy/random/_philox.cp313t-win32.lib +0 -0
  684. numpy/random/_philox.cp313t-win32.pyd +0 -0
  685. numpy/random/_philox.pyi +36 -0
  686. numpy/random/_pickle.py +88 -0
  687. numpy/random/_pickle.pyi +43 -0
  688. numpy/random/_sfc64.cp313t-win32.lib +0 -0
  689. numpy/random/_sfc64.cp313t-win32.pyd +0 -0
  690. numpy/random/_sfc64.pyi +25 -0
  691. numpy/random/bit_generator.cp313t-win32.lib +0 -0
  692. numpy/random/bit_generator.cp313t-win32.pyd +0 -0
  693. numpy/random/bit_generator.pxd +40 -0
  694. numpy/random/bit_generator.pyi +123 -0
  695. numpy/random/c_distributions.pxd +119 -0
  696. numpy/random/lib/npyrandom.lib +0 -0
  697. numpy/random/mtrand.cp313t-win32.lib +0 -0
  698. numpy/random/mtrand.cp313t-win32.pyd +0 -0
  699. numpy/random/mtrand.pyi +759 -0
  700. numpy/random/tests/__init__.py +0 -0
  701. numpy/random/tests/data/__init__.py +0 -0
  702. numpy/random/tests/data/generator_pcg64_np121.pkl.gz +0 -0
  703. numpy/random/tests/data/generator_pcg64_np126.pkl.gz +0 -0
  704. numpy/random/tests/data/mt19937-testset-1.csv +1001 -0
  705. numpy/random/tests/data/mt19937-testset-2.csv +1001 -0
  706. numpy/random/tests/data/pcg64-testset-1.csv +1001 -0
  707. numpy/random/tests/data/pcg64-testset-2.csv +1001 -0
  708. numpy/random/tests/data/pcg64dxsm-testset-1.csv +1001 -0
  709. numpy/random/tests/data/pcg64dxsm-testset-2.csv +1001 -0
  710. numpy/random/tests/data/philox-testset-1.csv +1001 -0
  711. numpy/random/tests/data/philox-testset-2.csv +1001 -0
  712. numpy/random/tests/data/sfc64-testset-1.csv +1001 -0
  713. numpy/random/tests/data/sfc64-testset-2.csv +1001 -0
  714. numpy/random/tests/data/sfc64_np126.pkl.gz +0 -0
  715. numpy/random/tests/test_direct.py +595 -0
  716. numpy/random/tests/test_extending.py +131 -0
  717. numpy/random/tests/test_generator_mt19937.py +2825 -0
  718. numpy/random/tests/test_generator_mt19937_regressions.py +221 -0
  719. numpy/random/tests/test_random.py +1724 -0
  720. numpy/random/tests/test_randomstate.py +2099 -0
  721. numpy/random/tests/test_randomstate_regression.py +213 -0
  722. numpy/random/tests/test_regression.py +175 -0
  723. numpy/random/tests/test_seed_sequence.py +79 -0
  724. numpy/random/tests/test_smoke.py +882 -0
  725. numpy/rec/__init__.py +2 -0
  726. numpy/rec/__init__.pyi +23 -0
  727. numpy/strings/__init__.py +2 -0
  728. numpy/strings/__init__.pyi +97 -0
  729. numpy/testing/__init__.py +22 -0
  730. numpy/testing/__init__.pyi +107 -0
  731. numpy/testing/_private/__init__.py +0 -0
  732. numpy/testing/_private/__init__.pyi +0 -0
  733. numpy/testing/_private/extbuild.py +250 -0
  734. numpy/testing/_private/extbuild.pyi +25 -0
  735. numpy/testing/_private/utils.py +2830 -0
  736. numpy/testing/_private/utils.pyi +505 -0
  737. numpy/testing/overrides.py +84 -0
  738. numpy/testing/overrides.pyi +10 -0
  739. numpy/testing/print_coercion_tables.py +207 -0
  740. numpy/testing/print_coercion_tables.pyi +26 -0
  741. numpy/testing/tests/__init__.py +0 -0
  742. numpy/testing/tests/test_utils.py +2123 -0
  743. numpy/tests/__init__.py +0 -0
  744. numpy/tests/test__all__.py +10 -0
  745. numpy/tests/test_configtool.py +51 -0
  746. numpy/tests/test_ctypeslib.py +383 -0
  747. numpy/tests/test_lazyloading.py +42 -0
  748. numpy/tests/test_matlib.py +59 -0
  749. numpy/tests/test_numpy_config.py +47 -0
  750. numpy/tests/test_numpy_version.py +54 -0
  751. numpy/tests/test_public_api.py +807 -0
  752. numpy/tests/test_reloading.py +76 -0
  753. numpy/tests/test_scripts.py +48 -0
  754. numpy/tests/test_warnings.py +79 -0
  755. numpy/typing/__init__.py +233 -0
  756. numpy/typing/__init__.pyi +3 -0
  757. numpy/typing/mypy_plugin.py +200 -0
  758. numpy/typing/tests/__init__.py +0 -0
  759. numpy/typing/tests/data/fail/arithmetic.pyi +126 -0
  760. numpy/typing/tests/data/fail/array_constructors.pyi +34 -0
  761. numpy/typing/tests/data/fail/array_like.pyi +15 -0
  762. numpy/typing/tests/data/fail/array_pad.pyi +6 -0
  763. numpy/typing/tests/data/fail/arrayprint.pyi +15 -0
  764. numpy/typing/tests/data/fail/arrayterator.pyi +14 -0
  765. numpy/typing/tests/data/fail/bitwise_ops.pyi +17 -0
  766. numpy/typing/tests/data/fail/char.pyi +63 -0
  767. numpy/typing/tests/data/fail/chararray.pyi +61 -0
  768. numpy/typing/tests/data/fail/comparisons.pyi +27 -0
  769. numpy/typing/tests/data/fail/constants.pyi +3 -0
  770. numpy/typing/tests/data/fail/datasource.pyi +16 -0
  771. numpy/typing/tests/data/fail/dtype.pyi +17 -0
  772. numpy/typing/tests/data/fail/einsumfunc.pyi +12 -0
  773. numpy/typing/tests/data/fail/flatiter.pyi +38 -0
  774. numpy/typing/tests/data/fail/fromnumeric.pyi +148 -0
  775. numpy/typing/tests/data/fail/histograms.pyi +12 -0
  776. numpy/typing/tests/data/fail/index_tricks.pyi +14 -0
  777. numpy/typing/tests/data/fail/lib_function_base.pyi +60 -0
  778. numpy/typing/tests/data/fail/lib_polynomial.pyi +29 -0
  779. numpy/typing/tests/data/fail/lib_utils.pyi +3 -0
  780. numpy/typing/tests/data/fail/lib_version.pyi +6 -0
  781. numpy/typing/tests/data/fail/linalg.pyi +52 -0
  782. numpy/typing/tests/data/fail/ma.pyi +155 -0
  783. numpy/typing/tests/data/fail/memmap.pyi +5 -0
  784. numpy/typing/tests/data/fail/modules.pyi +17 -0
  785. numpy/typing/tests/data/fail/multiarray.pyi +52 -0
  786. numpy/typing/tests/data/fail/ndarray.pyi +11 -0
  787. numpy/typing/tests/data/fail/ndarray_misc.pyi +49 -0
  788. numpy/typing/tests/data/fail/nditer.pyi +8 -0
  789. numpy/typing/tests/data/fail/nested_sequence.pyi +17 -0
  790. numpy/typing/tests/data/fail/npyio.pyi +24 -0
  791. numpy/typing/tests/data/fail/numerictypes.pyi +5 -0
  792. numpy/typing/tests/data/fail/random.pyi +62 -0
  793. numpy/typing/tests/data/fail/rec.pyi +17 -0
  794. numpy/typing/tests/data/fail/scalars.pyi +86 -0
  795. numpy/typing/tests/data/fail/shape.pyi +7 -0
  796. numpy/typing/tests/data/fail/shape_base.pyi +8 -0
  797. numpy/typing/tests/data/fail/stride_tricks.pyi +9 -0
  798. numpy/typing/tests/data/fail/strings.pyi +52 -0
  799. numpy/typing/tests/data/fail/testing.pyi +28 -0
  800. numpy/typing/tests/data/fail/twodim_base.pyi +39 -0
  801. numpy/typing/tests/data/fail/type_check.pyi +12 -0
  802. numpy/typing/tests/data/fail/ufunc_config.pyi +21 -0
  803. numpy/typing/tests/data/fail/ufunclike.pyi +21 -0
  804. numpy/typing/tests/data/fail/ufuncs.pyi +17 -0
  805. numpy/typing/tests/data/fail/warnings_and_errors.pyi +5 -0
  806. numpy/typing/tests/data/misc/extended_precision.pyi +9 -0
  807. numpy/typing/tests/data/mypy.ini +8 -0
  808. numpy/typing/tests/data/pass/arithmetic.py +614 -0
  809. numpy/typing/tests/data/pass/array_constructors.py +138 -0
  810. numpy/typing/tests/data/pass/array_like.py +43 -0
  811. numpy/typing/tests/data/pass/arrayprint.py +37 -0
  812. numpy/typing/tests/data/pass/arrayterator.py +28 -0
  813. numpy/typing/tests/data/pass/bitwise_ops.py +131 -0
  814. numpy/typing/tests/data/pass/comparisons.py +316 -0
  815. numpy/typing/tests/data/pass/dtype.py +57 -0
  816. numpy/typing/tests/data/pass/einsumfunc.py +36 -0
  817. numpy/typing/tests/data/pass/flatiter.py +26 -0
  818. numpy/typing/tests/data/pass/fromnumeric.py +272 -0
  819. numpy/typing/tests/data/pass/index_tricks.py +62 -0
  820. numpy/typing/tests/data/pass/lib_user_array.py +22 -0
  821. numpy/typing/tests/data/pass/lib_utils.py +19 -0
  822. numpy/typing/tests/data/pass/lib_version.py +18 -0
  823. numpy/typing/tests/data/pass/literal.py +52 -0
  824. numpy/typing/tests/data/pass/ma.py +199 -0
  825. numpy/typing/tests/data/pass/mod.py +149 -0
  826. numpy/typing/tests/data/pass/modules.py +45 -0
  827. numpy/typing/tests/data/pass/multiarray.py +77 -0
  828. numpy/typing/tests/data/pass/ndarray_conversion.py +81 -0
  829. numpy/typing/tests/data/pass/ndarray_misc.py +199 -0
  830. numpy/typing/tests/data/pass/ndarray_shape_manipulation.py +47 -0
  831. numpy/typing/tests/data/pass/nditer.py +4 -0
  832. numpy/typing/tests/data/pass/numeric.py +90 -0
  833. numpy/typing/tests/data/pass/numerictypes.py +17 -0
  834. numpy/typing/tests/data/pass/random.py +1498 -0
  835. numpy/typing/tests/data/pass/recfunctions.py +164 -0
  836. numpy/typing/tests/data/pass/scalars.py +249 -0
  837. numpy/typing/tests/data/pass/shape.py +19 -0
  838. numpy/typing/tests/data/pass/simple.py +170 -0
  839. numpy/typing/tests/data/pass/ufunc_config.py +64 -0
  840. numpy/typing/tests/data/pass/ufunclike.py +52 -0
  841. numpy/typing/tests/data/pass/ufuncs.py +16 -0
  842. numpy/typing/tests/data/pass/warnings_and_errors.py +6 -0
  843. numpy/typing/tests/data/reveal/arithmetic.pyi +719 -0
  844. numpy/typing/tests/data/reveal/array_api_info.pyi +70 -0
  845. numpy/typing/tests/data/reveal/array_constructors.pyi +279 -0
  846. numpy/typing/tests/data/reveal/arraypad.pyi +27 -0
  847. numpy/typing/tests/data/reveal/arrayprint.pyi +25 -0
  848. numpy/typing/tests/data/reveal/arraysetops.pyi +74 -0
  849. numpy/typing/tests/data/reveal/arrayterator.pyi +27 -0
  850. numpy/typing/tests/data/reveal/bitwise_ops.pyi +166 -0
  851. numpy/typing/tests/data/reveal/char.pyi +225 -0
  852. numpy/typing/tests/data/reveal/chararray.pyi +138 -0
  853. numpy/typing/tests/data/reveal/comparisons.pyi +264 -0
  854. numpy/typing/tests/data/reveal/constants.pyi +14 -0
  855. numpy/typing/tests/data/reveal/ctypeslib.pyi +81 -0
  856. numpy/typing/tests/data/reveal/datasource.pyi +23 -0
  857. numpy/typing/tests/data/reveal/dtype.pyi +132 -0
  858. numpy/typing/tests/data/reveal/einsumfunc.pyi +39 -0
  859. numpy/typing/tests/data/reveal/emath.pyi +54 -0
  860. numpy/typing/tests/data/reveal/fft.pyi +37 -0
  861. numpy/typing/tests/data/reveal/flatiter.pyi +86 -0
  862. numpy/typing/tests/data/reveal/fromnumeric.pyi +347 -0
  863. numpy/typing/tests/data/reveal/getlimits.pyi +53 -0
  864. numpy/typing/tests/data/reveal/histograms.pyi +25 -0
  865. numpy/typing/tests/data/reveal/index_tricks.pyi +70 -0
  866. numpy/typing/tests/data/reveal/lib_function_base.pyi +409 -0
  867. numpy/typing/tests/data/reveal/lib_polynomial.pyi +147 -0
  868. numpy/typing/tests/data/reveal/lib_utils.pyi +17 -0
  869. numpy/typing/tests/data/reveal/lib_version.pyi +20 -0
  870. numpy/typing/tests/data/reveal/linalg.pyi +154 -0
  871. numpy/typing/tests/data/reveal/ma.pyi +1098 -0
  872. numpy/typing/tests/data/reveal/matrix.pyi +73 -0
  873. numpy/typing/tests/data/reveal/memmap.pyi +19 -0
  874. numpy/typing/tests/data/reveal/mod.pyi +178 -0
  875. numpy/typing/tests/data/reveal/modules.pyi +51 -0
  876. numpy/typing/tests/data/reveal/multiarray.pyi +197 -0
  877. numpy/typing/tests/data/reveal/nbit_base_example.pyi +20 -0
  878. numpy/typing/tests/data/reveal/ndarray_assignability.pyi +82 -0
  879. numpy/typing/tests/data/reveal/ndarray_conversion.pyi +83 -0
  880. numpy/typing/tests/data/reveal/ndarray_misc.pyi +246 -0
  881. numpy/typing/tests/data/reveal/ndarray_shape_manipulation.pyi +47 -0
  882. numpy/typing/tests/data/reveal/nditer.pyi +49 -0
  883. numpy/typing/tests/data/reveal/nested_sequence.pyi +25 -0
  884. numpy/typing/tests/data/reveal/npyio.pyi +83 -0
  885. numpy/typing/tests/data/reveal/numeric.pyi +170 -0
  886. numpy/typing/tests/data/reveal/numerictypes.pyi +16 -0
  887. numpy/typing/tests/data/reveal/polynomial_polybase.pyi +217 -0
  888. numpy/typing/tests/data/reveal/polynomial_polyutils.pyi +218 -0
  889. numpy/typing/tests/data/reveal/polynomial_series.pyi +138 -0
  890. numpy/typing/tests/data/reveal/random.pyi +1546 -0
  891. numpy/typing/tests/data/reveal/rec.pyi +171 -0
  892. numpy/typing/tests/data/reveal/scalars.pyi +191 -0
  893. numpy/typing/tests/data/reveal/shape.pyi +13 -0
  894. numpy/typing/tests/data/reveal/shape_base.pyi +52 -0
  895. numpy/typing/tests/data/reveal/stride_tricks.pyi +27 -0
  896. numpy/typing/tests/data/reveal/strings.pyi +196 -0
  897. numpy/typing/tests/data/reveal/testing.pyi +198 -0
  898. numpy/typing/tests/data/reveal/twodim_base.pyi +225 -0
  899. numpy/typing/tests/data/reveal/type_check.pyi +67 -0
  900. numpy/typing/tests/data/reveal/ufunc_config.pyi +29 -0
  901. numpy/typing/tests/data/reveal/ufunclike.pyi +31 -0
  902. numpy/typing/tests/data/reveal/ufuncs.pyi +142 -0
  903. numpy/typing/tests/data/reveal/warnings_and_errors.pyi +11 -0
  904. numpy/typing/tests/test_isfile.py +38 -0
  905. numpy/typing/tests/test_runtime.py +110 -0
  906. numpy/typing/tests/test_typing.py +205 -0
  907. numpy/version.py +11 -0
  908. numpy/version.pyi +9 -0
  909. numpy-2.4.2.dist-info/METADATA +139 -0
  910. numpy-2.4.2.dist-info/RECORD +929 -0
  911. numpy-2.4.2.dist-info/WHEEL +4 -0
  912. numpy-2.4.2.dist-info/entry_points.txt +13 -0
  913. numpy-2.4.2.dist-info/licenses/LICENSE.txt +914 -0
  914. numpy-2.4.2.dist-info/licenses/numpy/_core/include/numpy/libdivide/LICENSE.txt +21 -0
  915. numpy-2.4.2.dist-info/licenses/numpy/_core/src/common/pythoncapi-compat/COPYING +14 -0
  916. numpy-2.4.2.dist-info/licenses/numpy/_core/src/highway/LICENSE +371 -0
  917. numpy-2.4.2.dist-info/licenses/numpy/_core/src/multiarray/dragon4_LICENSE.txt +27 -0
  918. numpy-2.4.2.dist-info/licenses/numpy/_core/src/npysort/x86-simd-sort/LICENSE.md +28 -0
  919. numpy-2.4.2.dist-info/licenses/numpy/_core/src/umath/svml/LICENSE +30 -0
  920. numpy-2.4.2.dist-info/licenses/numpy/fft/pocketfft/LICENSE.md +25 -0
  921. numpy-2.4.2.dist-info/licenses/numpy/linalg/lapack_lite/LICENSE.txt +48 -0
  922. numpy-2.4.2.dist-info/licenses/numpy/ma/LICENSE +24 -0
  923. numpy-2.4.2.dist-info/licenses/numpy/random/LICENSE.md +71 -0
  924. numpy-2.4.2.dist-info/licenses/numpy/random/src/distributions/LICENSE.md +61 -0
  925. numpy-2.4.2.dist-info/licenses/numpy/random/src/mt19937/LICENSE.md +61 -0
  926. numpy-2.4.2.dist-info/licenses/numpy/random/src/pcg64/LICENSE.md +22 -0
  927. numpy-2.4.2.dist-info/licenses/numpy/random/src/philox/LICENSE.md +31 -0
  928. numpy-2.4.2.dist-info/licenses/numpy/random/src/sfc64/LICENSE.md +27 -0
  929. numpy-2.4.2.dist-info/licenses/numpy/random/src/splitmix64/LICENSE.md +9 -0
@@ -0,0 +1,1429 @@
1
+ dtype,input,output,ulperrortol
2
+ np.float32,0xbe7d3a7c,0xbe7fe217,4
3
+ np.float32,0x3dc102f0,0x3dc14c60,4
4
+ np.float32,0xbe119c28,0xbe121aef,4
5
+ np.float32,0xbe51cd68,0xbe534c75,4
6
+ np.float32,0x3c04a300,0x3c04a35f,4
7
+ np.float32,0xbf4f0b62,0xbf712a69,4
8
+ np.float32,0x3ef61a5c,0x3f005cf6,4
9
+ np.float32,0xbf13024c,0xbf1c97df,4
10
+ np.float32,0x3e93b580,0x3e95d6b5,4
11
+ np.float32,0x3e44e7b8,0x3e4623a5,4
12
+ np.float32,0xbe35df20,0xbe36d773,4
13
+ np.float32,0x3eecd2c0,0x3ef633cf,4
14
+ np.float32,0x3f2772ba,0x3f36862a,4
15
+ np.float32,0x3e211ea8,0x3e21cac5,4
16
+ np.float32,0x3e3b3d90,0x3e3c4cc6,4
17
+ np.float32,0x3f37c962,0x3f4d018c,4
18
+ np.float32,0x3e92ad88,0x3e94c31a,4
19
+ np.float32,0x3f356ffc,0x3f49a766,4
20
+ np.float32,0x3f487ba2,0x3f665254,4
21
+ np.float32,0x3f061c46,0x3f0d27ae,4
22
+ np.float32,0xbee340a2,0xbeeb7722,4
23
+ np.float32,0xbe85aede,0xbe874026,4
24
+ np.float32,0x3f34cf9a,0x3f48c474,4
25
+ np.float32,0x3e29a690,0x3e2a6fbd,4
26
+ np.float32,0xbeb29428,0xbeb669d1,4
27
+ np.float32,0xbe606d40,0xbe624370,4
28
+ np.float32,0x3dae6860,0x3dae9e85,4
29
+ np.float32,0xbf04872b,0xbf0b4d25,4
30
+ np.float32,0x3f2080e2,0x3f2d7ab0,4
31
+ np.float32,0xbec77dcc,0xbecceb27,4
32
+ np.float32,0x3e0dda10,0x3e0e4f38,4
33
+ np.float32,0xbefaf970,0xbf03262c,4
34
+ np.float32,0x3f576a0c,0x3f7ffee6,4
35
+ np.float32,0x3f222382,0x3f2f95d6,4
36
+ np.float32,0x7fc00000,0x7fc00000,4
37
+ np.float32,0x3e41c468,0x3e42f14e,4
38
+ np.float32,0xbf2f64dd,0xbf4139a8,4
39
+ np.float32,0xbf60ef90,0xbf895956,4
40
+ np.float32,0xbf67c855,0xbf90eff0,4
41
+ np.float32,0xbed35aee,0xbed9df00,4
42
+ np.float32,0xbf2c7d92,0xbf3d448f,4
43
+ np.float32,0x3f7b1604,0x3faff122,4
44
+ np.float32,0xbf7c758b,0xbfb3bf87,4
45
+ np.float32,0x3ecda1c8,0x3ed39acf,4
46
+ np.float32,0x3f3af8ae,0x3f519fcb,4
47
+ np.float32,0xbf16e6a3,0xbf2160fd,4
48
+ np.float32,0x3f0c97d2,0x3f14d668,4
49
+ np.float32,0x3f0a8060,0x3f1257b9,4
50
+ np.float32,0x3f27905a,0x3f36ad57,4
51
+ np.float32,0x3eeaeba4,0x3ef40efe,4
52
+ np.float32,0x3e58dde0,0x3e5a8580,4
53
+ np.float32,0xbf0cabe2,0xbf14ee6b,4
54
+ np.float32,0xbe805ca8,0xbe81bf03,4
55
+ np.float32,0x3f5462ba,0x3f7a7b85,4
56
+ np.float32,0xbee235d0,0xbeea4d8b,4
57
+ np.float32,0xbe880cb0,0xbe89b426,4
58
+ np.float32,0x80000001,0x80000001,4
59
+ np.float32,0x3f208c00,0x3f2d88f6,4
60
+ np.float32,0xbf34f3d2,0xbf48f7a2,4
61
+ np.float32,0x3f629428,0x3f8b1763,4
62
+ np.float32,0xbf52a900,0xbf776b4a,4
63
+ np.float32,0xbd17f8d0,0xbd1801be,4
64
+ np.float32,0xbef7cada,0xbf0153d1,4
65
+ np.float32,0x3f7d3b90,0x3fb63967,4
66
+ np.float32,0xbd6a20b0,0xbd6a4160,4
67
+ np.float32,0x3f740496,0x3fa1beb7,4
68
+ np.float32,0x3ed8762c,0x3edf7dd9,4
69
+ np.float32,0x3f53b066,0x3f793d42,4
70
+ np.float32,0xbe9de718,0xbea084f9,4
71
+ np.float32,0x3ea3ae90,0x3ea69b4b,4
72
+ np.float32,0x3f1b8f00,0x3f273183,4
73
+ np.float32,0x3f5cd6ac,0x3f852ead,4
74
+ np.float32,0x3f29d510,0x3f39b169,4
75
+ np.float32,0x3ee2a934,0x3eeace33,4
76
+ np.float32,0x3eecac94,0x3ef608c2,4
77
+ np.float32,0xbea915e2,0xbeac5203,4
78
+ np.float32,0xbd316e90,0xbd317cc8,4
79
+ np.float32,0xbf70b495,0xbf9c97b6,4
80
+ np.float32,0xbe80d976,0xbe823ff3,4
81
+ np.float32,0x3e9205f8,0x3e94143f,4
82
+ np.float32,0x3f49247e,0x3f676296,4
83
+ np.float32,0x3d9030c0,0x3d904f50,4
84
+ np.float32,0x3e4df058,0x3e4f5a5c,4
85
+ np.float32,0xbe1fd360,0xbe207b58,4
86
+ np.float32,0xbf69dc7c,0xbf937006,4
87
+ np.float32,0x3f36babe,0x3f4b7df3,4
88
+ np.float32,0xbe8c9758,0xbe8e6bb7,4
89
+ np.float32,0xbf4de72d,0xbf6f3c20,4
90
+ np.float32,0xbecdad68,0xbed3a780,4
91
+ np.float32,0xbf73e2cf,0xbfa18702,4
92
+ np.float32,0xbece16a8,0xbed41a75,4
93
+ np.float32,0x3f618a96,0x3f89fc6d,4
94
+ np.float32,0xbf325853,0xbf454ea9,4
95
+ np.float32,0x3f138568,0x3f1d3828,4
96
+ np.float32,0xbf56a6e9,0xbf7e9748,4
97
+ np.float32,0x3ef5d594,0x3f0035bf,4
98
+ np.float32,0xbf408220,0xbf59dfaa,4
99
+ np.float32,0xbed120e6,0xbed76dd5,4
100
+ np.float32,0xbf6dbda5,0xbf986cee,4
101
+ np.float32,0x3f744a38,0x3fa23282,4
102
+ np.float32,0xbe4b56d8,0xbe4cb329,4
103
+ np.float32,0x3f54c5f2,0x3f7b2d97,4
104
+ np.float32,0xbd8b1c90,0xbd8b3801,4
105
+ np.float32,0x3ee19a48,0x3ee9a03b,4
106
+ np.float32,0x3f48460e,0x3f65fc3d,4
107
+ np.float32,0x3eb541c0,0x3eb9461e,4
108
+ np.float32,0xbea7d098,0xbeaaf98c,4
109
+ np.float32,0xbda99e40,0xbda9d00c,4
110
+ np.float32,0xbefb2ca6,0xbf03438d,4
111
+ np.float32,0x3f4256be,0x3f5cab0b,4
112
+ np.float32,0xbdbdb198,0xbdbdf74d,4
113
+ np.float32,0xbf325b5f,0xbf4552e9,4
114
+ np.float32,0xbf704d1a,0xbf9c00b4,4
115
+ np.float32,0x3ebb1d04,0x3ebf8cf8,4
116
+ np.float32,0xbed03566,0xbed66bf1,4
117
+ np.float32,0x3e8fcee8,0x3e91c501,4
118
+ np.float32,0xbf2e1eec,0xbf3f7b9d,4
119
+ np.float32,0x3f33c4d2,0x3f474cac,4
120
+ np.float32,0x3f598ef4,0x3f8201b4,4
121
+ np.float32,0x3e09bb30,0x3e0a2660,4
122
+ np.float32,0x3ed4e228,0x3edb8cdb,4
123
+ np.float32,0x3eb7a190,0x3ebbd0a1,4
124
+ np.float32,0xbd9ae630,0xbd9b0c18,4
125
+ np.float32,0x3f43020e,0x3f5db2d7,4
126
+ np.float32,0xbec06ac0,0xbec542d4,4
127
+ np.float32,0x3f3dfde0,0x3f561674,4
128
+ np.float32,0xbf64084a,0xbf8cabe6,4
129
+ np.float32,0xbd6f95b0,0xbd6fb8b7,4
130
+ np.float32,0x3f268640,0x3f354e2d,4
131
+ np.float32,0xbe72b4bc,0xbe7509b2,4
132
+ np.float32,0xbf3414fa,0xbf47bd5a,4
133
+ np.float32,0xbf375218,0xbf4c566b,4
134
+ np.float32,0x3f203c1a,0x3f2d2273,4
135
+ np.float32,0xbd503530,0xbd504c2b,4
136
+ np.float32,0xbc45e540,0xbc45e67b,4
137
+ np.float32,0xbf175c4f,0xbf21f2c6,4
138
+ np.float32,0x3f7432a6,0x3fa20b2b,4
139
+ np.float32,0xbf43367f,0xbf5e03d8,4
140
+ np.float32,0x3eb3997c,0x3eb780c4,4
141
+ np.float32,0x3e5574c8,0x3e570878,4
142
+ np.float32,0xbf04b57b,0xbf0b8349,4
143
+ np.float32,0x3f6216d8,0x3f8a914b,4
144
+ np.float32,0xbf57a237,0xbf80337d,4
145
+ np.float32,0xbee1403a,0xbee93bee,4
146
+ np.float32,0xbeaf9b9a,0xbeb33f3b,4
147
+ np.float32,0xbf109374,0xbf19a223,4
148
+ np.float32,0xbeae6824,0xbeb1f810,4
149
+ np.float32,0xbcff9320,0xbcff9dbe,4
150
+ np.float32,0x3ed205c0,0x3ed868a9,4
151
+ np.float32,0x3d897c30,0x3d8996ad,4
152
+ np.float32,0xbf2899d2,0xbf380d4c,4
153
+ np.float32,0xbf54cb0b,0xbf7b36c2,4
154
+ np.float32,0x3ea8e8ec,0x3eac2262,4
155
+ np.float32,0x3ef5e1a0,0x3f003c9d,4
156
+ np.float32,0xbf00c81e,0xbf06f1e2,4
157
+ np.float32,0xbf346775,0xbf483181,4
158
+ np.float32,0x3f7a4fe4,0x3fae077c,4
159
+ np.float32,0x3f00776e,0x3f06948f,4
160
+ np.float32,0xbe0a3078,0xbe0a9cbc,4
161
+ np.float32,0xbeba0b06,0xbebe66be,4
162
+ np.float32,0xbdff4e38,0xbdfff8b2,4
163
+ np.float32,0xbe927f70,0xbe9492ff,4
164
+ np.float32,0x3ebb07e0,0x3ebf7642,4
165
+ np.float32,0x3ebcf8e0,0x3ec18c95,4
166
+ np.float32,0x3f49bdfc,0x3f685b51,4
167
+ np.float32,0x3cbc29c0,0x3cbc2dfd,4
168
+ np.float32,0xbe9e951a,0xbea13bf1,4
169
+ np.float32,0xbe8c237c,0xbe8df33d,4
170
+ np.float32,0x3e17f198,0x3e1881c4,4
171
+ np.float32,0xbd0b5220,0xbd0b5902,4
172
+ np.float32,0xbf34c4a2,0xbf48b4f5,4
173
+ np.float32,0xbedaa814,0xbee1ea94,4
174
+ np.float32,0x3ebf5d6c,0x3ec42053,4
175
+ np.float32,0x3cd04b40,0x3cd050ff,4
176
+ np.float32,0xbec33fe0,0xbec85244,4
177
+ np.float32,0xbf00b27a,0xbf06d8d8,4
178
+ np.float32,0x3f15d7be,0x3f201243,4
179
+ np.float32,0xbe3debd0,0xbe3f06f7,4
180
+ np.float32,0xbea81704,0xbeab4418,4
181
+ np.float32,0x1,0x1,4
182
+ np.float32,0x3f49e6ba,0x3f689d8b,4
183
+ np.float32,0x3f351030,0x3f491fc0,4
184
+ np.float32,0x3e607de8,0x3e625482,4
185
+ np.float32,0xbe8dbbe4,0xbe8f9c0e,4
186
+ np.float32,0x3edbf350,0x3ee35924,4
187
+ np.float32,0xbf0c84c4,0xbf14bf9c,4
188
+ np.float32,0x3eb218b0,0x3eb5e61a,4
189
+ np.float32,0x3e466dd0,0x3e47b138,4
190
+ np.float32,0xbe8ece94,0xbe90ba01,4
191
+ np.float32,0xbe82ec2a,0xbe84649a,4
192
+ np.float32,0xbf7e1f10,0xbfb98b9e,4
193
+ np.float32,0xbf2d00ea,0xbf3df688,4
194
+ np.float32,0x3db7cdd0,0x3db80d36,4
195
+ np.float32,0xbe388b98,0xbe398f25,4
196
+ np.float32,0xbd86cb40,0xbd86e436,4
197
+ np.float32,0x7f7fffff,0x7fc00000,4
198
+ np.float32,0x3f472a60,0x3f6436c6,4
199
+ np.float32,0xbf5b2c1d,0xbf838d87,4
200
+ np.float32,0x3f0409ea,0x3f0abad8,4
201
+ np.float32,0x3f47dd0e,0x3f6553f0,4
202
+ np.float32,0x3e3eab00,0x3e3fc98a,4
203
+ np.float32,0xbf7c2a7f,0xbfb2e19b,4
204
+ np.float32,0xbeda0048,0xbee13112,4
205
+ np.float32,0x3f46600a,0x3f62f5b2,4
206
+ np.float32,0x3f45aef4,0x3f61de43,4
207
+ np.float32,0x3dd40a50,0x3dd46bc4,4
208
+ np.float32,0xbf6cdd0b,0xbf974191,4
209
+ np.float32,0x3f78de4c,0x3faac725,4
210
+ np.float32,0x3f3c39a4,0x3f53777f,4
211
+ np.float32,0xbe2a30ec,0xbe2afc0b,4
212
+ np.float32,0xbf3c0ef0,0xbf533887,4
213
+ np.float32,0x3ecb6548,0x3ed12a53,4
214
+ np.float32,0x3eb994e8,0x3ebde7fc,4
215
+ np.float32,0x3d4c1ee0,0x3d4c3487,4
216
+ np.float32,0xbf52cb6d,0xbf77a7eb,4
217
+ np.float32,0x3eb905d4,0x3ebd4e80,4
218
+ np.float32,0x3e712428,0x3e736d72,4
219
+ np.float32,0xbf79ee6e,0xbfad22be,4
220
+ np.float32,0x3de6f8b0,0x3de776c1,4
221
+ np.float32,0x3e9b2898,0x3e9da325,4
222
+ np.float32,0x3ea09b20,0x3ea35d20,4
223
+ np.float32,0x3d0ea9a0,0x3d0eb103,4
224
+ np.float32,0xbd911500,0xbd913423,4
225
+ np.float32,0x3e004618,0x3e009c97,4
226
+ np.float32,0x3f5e0e5a,0x3f86654c,4
227
+ np.float32,0x3f2e6300,0x3f3fd88b,4
228
+ np.float32,0x3e0cf5d0,0x3e0d68c3,4
229
+ np.float32,0x3d6a16c0,0x3d6a376c,4
230
+ np.float32,0x3f7174aa,0x3f9db53c,4
231
+ np.float32,0xbe04bba0,0xbe051b81,4
232
+ np.float32,0xbe6fdcb4,0xbe721c92,4
233
+ np.float32,0x3f4379f0,0x3f5e6c31,4
234
+ np.float32,0xbf680098,0xbf913257,4
235
+ np.float32,0xbf3c31ca,0xbf536bea,4
236
+ np.float32,0x3f59db58,0x3f824a4e,4
237
+ np.float32,0xbf3ffc84,0xbf591554,4
238
+ np.float32,0x3d1d5160,0x3d1d5b48,4
239
+ np.float32,0x3f6c64ae,0x3f96a3da,4
240
+ np.float32,0xbf1b49fd,0xbf26daaa,4
241
+ np.float32,0x3ec80be0,0x3ecd8576,4
242
+ np.float32,0x3f3becc0,0x3f530629,4
243
+ np.float32,0xbea93890,0xbeac76c1,4
244
+ np.float32,0x3f5b3acc,0x3f839bbd,4
245
+ np.float32,0xbf5d6818,0xbf85bef9,4
246
+ np.float32,0x3f794266,0x3fab9fa6,4
247
+ np.float32,0xbee8eb7c,0xbef1cf3b,4
248
+ np.float32,0xbf360a06,0xbf4a821e,4
249
+ np.float32,0x3f441cf6,0x3f5f693d,4
250
+ np.float32,0x3e60de40,0x3e62b742,4
251
+ np.float32,0xbebb3d7e,0xbebfafdc,4
252
+ np.float32,0x3e56a3a0,0x3e583e28,4
253
+ np.float32,0x3f375bfe,0x3f4c6499,4
254
+ np.float32,0xbf384d7d,0xbf4dbf9a,4
255
+ np.float32,0x3efb03a4,0x3f032c06,4
256
+ np.float32,0x3f1d5d10,0x3f29794d,4
257
+ np.float32,0xbe25f7dc,0xbe26b41d,4
258
+ np.float32,0x3f6d2f88,0x3f97aebb,4
259
+ np.float32,0xbe9fa100,0xbea255cb,4
260
+ np.float32,0xbf21dafa,0xbf2f382a,4
261
+ np.float32,0x3d3870e0,0x3d3880d9,4
262
+ np.float32,0x3eeaf00c,0x3ef413f4,4
263
+ np.float32,0xbc884ea0,0xbc88503c,4
264
+ np.float32,0xbf7dbdad,0xbfb80b6d,4
265
+ np.float32,0xbf4eb713,0xbf709b46,4
266
+ np.float32,0xbf1c0ad4,0xbf27cd92,4
267
+ np.float32,0x3f323088,0x3f451737,4
268
+ np.float32,0x3e405d88,0x3e4183e1,4
269
+ np.float32,0x3d7ad580,0x3d7afdb4,4
270
+ np.float32,0xbf207338,0xbf2d6927,4
271
+ np.float32,0xbecf7948,0xbed59e1a,4
272
+ np.float32,0x3f16ff94,0x3f217fde,4
273
+ np.float32,0xbdf19588,0xbdf225dd,4
274
+ np.float32,0xbf4d9654,0xbf6eb442,4
275
+ np.float32,0xbf390b9b,0xbf4ed220,4
276
+ np.float32,0xbe155a74,0xbe15e354,4
277
+ np.float32,0x3f519e4c,0x3f759850,4
278
+ np.float32,0xbee3f08c,0xbeec3b84,4
279
+ np.float32,0xbf478be7,0xbf64d23b,4
280
+ np.float32,0xbefdee50,0xbf04d92a,4
281
+ np.float32,0x3e8def78,0x3e8fd1bc,4
282
+ np.float32,0x3e3df2a8,0x3e3f0dee,4
283
+ np.float32,0xbf413e22,0xbf5afd97,4
284
+ np.float32,0xbf1b8bc4,0xbf272d71,4
285
+ np.float32,0xbf31e5be,0xbf44af22,4
286
+ np.float32,0x3de7e080,0x3de86010,4
287
+ np.float32,0xbf5ddf7e,0xbf863645,4
288
+ np.float32,0x3f3eba6a,0x3f57306e,4
289
+ np.float32,0xff7fffff,0x7fc00000,4
290
+ np.float32,0x3ec22d5c,0x3ec72973,4
291
+ np.float32,0x80800000,0x80800000,4
292
+ np.float32,0x3f032e0c,0x3f09ba82,4
293
+ np.float32,0x3d74bd60,0x3d74e2b7,4
294
+ np.float32,0xbea0d61e,0xbea39b42,4
295
+ np.float32,0xbefdfa78,0xbf04e02a,4
296
+ np.float32,0x3e5cb220,0x3e5e70ec,4
297
+ np.float32,0xbe239e54,0xbe2452a4,4
298
+ np.float32,0x3f452738,0x3f61090e,4
299
+ np.float32,0x3e99a2e0,0x3e9c0a66,4
300
+ np.float32,0x3e4394d8,0x3e44ca5f,4
301
+ np.float32,0x3f4472e2,0x3f5fef14,4
302
+ np.float32,0xbf46bc70,0xbf638814,4
303
+ np.float32,0xbf0b910f,0xbf139c7a,4
304
+ np.float32,0x3f36b4a6,0x3f4b753f,4
305
+ np.float32,0x3e0bf478,0x3e0c64f6,4
306
+ np.float32,0x3ce02480,0x3ce02ba9,4
307
+ np.float32,0xbd904b10,0xbd9069b1,4
308
+ np.float32,0xbf7f5d72,0xbfc00b70,4
309
+ np.float32,0x3f62127e,0x3f8a8ca8,4
310
+ np.float32,0xbf320253,0xbf44d6e4,4
311
+ np.float32,0x3f2507be,0x3f335833,4
312
+ np.float32,0x3f299284,0x3f395887,4
313
+ np.float32,0xbd8211b0,0xbd82281d,4
314
+ np.float32,0xbd3374c0,0xbd338376,4
315
+ np.float32,0x3f36c56a,0x3f4b8d30,4
316
+ np.float32,0xbf51f704,0xbf76331f,4
317
+ np.float32,0xbe9871ca,0xbe9acab2,4
318
+ np.float32,0xbe818d8c,0xbe82fa0f,4
319
+ np.float32,0x3f08b958,0x3f103c18,4
320
+ np.float32,0x3f22559a,0x3f2fd698,4
321
+ np.float32,0xbf11f388,0xbf1b4db8,4
322
+ np.float32,0x3ebe1990,0x3ec2c359,4
323
+ np.float32,0xbe75ab38,0xbe7816b6,4
324
+ np.float32,0x3e96102c,0x3e984c99,4
325
+ np.float32,0xbe80d9d2,0xbe824052,4
326
+ np.float32,0x3ef47588,0x3efeda7f,4
327
+ np.float32,0xbe45e524,0xbe4725ea,4
328
+ np.float32,0x3f7f9e7a,0x3fc213ff,4
329
+ np.float32,0x3f1d3c36,0x3f294faa,4
330
+ np.float32,0xbf3c58db,0xbf53a591,4
331
+ np.float32,0x3f0d3d20,0x3f159c69,4
332
+ np.float32,0x3f744be6,0x3fa23552,4
333
+ np.float32,0x3f2e0cea,0x3f3f630e,4
334
+ np.float32,0x3e193c10,0x3e19cff7,4
335
+ np.float32,0xbf4150ac,0xbf5b19dd,4
336
+ np.float32,0xbf145f72,0xbf1e4355,4
337
+ np.float32,0xbb76cc00,0xbb76cc26,4
338
+ np.float32,0x3f756780,0x3fa41b3e,4
339
+ np.float32,0x3ea9b868,0x3eacfe3c,4
340
+ np.float32,0x3d07c920,0x3d07cf7f,4
341
+ np.float32,0xbf2263d4,0xbf2fe8ff,4
342
+ np.float32,0x3e53b3f8,0x3e553daa,4
343
+ np.float32,0xbf785be8,0xbfa9b5ba,4
344
+ np.float32,0x3f324f7a,0x3f454254,4
345
+ np.float32,0xbf2188f2,0xbf2ece5b,4
346
+ np.float32,0xbe33781c,0xbe3466a2,4
347
+ np.float32,0xbd3cf120,0xbd3d024c,4
348
+ np.float32,0x3f06b18a,0x3f0dd70f,4
349
+ np.float32,0x3f40d63e,0x3f5a5f6a,4
350
+ np.float32,0x3f752340,0x3fa3a41e,4
351
+ np.float32,0xbe1cf1c0,0xbe1d90bc,4
352
+ np.float32,0xbf02d948,0xbf0957d7,4
353
+ np.float32,0x3f73bed0,0x3fa14bf7,4
354
+ np.float32,0x3d914920,0x3d916864,4
355
+ np.float32,0x7fa00000,0x7fe00000,4
356
+ np.float32,0xbe67a5d8,0xbe69aba7,4
357
+ np.float32,0x3f689c4a,0x3f91eb9f,4
358
+ np.float32,0xbf196e00,0xbf248601,4
359
+ np.float32,0xbf50dacb,0xbf7444fe,4
360
+ np.float32,0x3f628b86,0x3f8b0e1e,4
361
+ np.float32,0x3f6ee2f2,0x3f99fe7f,4
362
+ np.float32,0x3ee5df40,0x3eee6492,4
363
+ np.float32,0x3f501746,0x3f72f41b,4
364
+ np.float32,0xbf1f0f18,0xbf2ba164,4
365
+ np.float32,0xbf1a8bfd,0xbf25ec01,4
366
+ np.float32,0xbd4926f0,0xbd493ba9,4
367
+ np.float32,0xbf4e364f,0xbf6fc17b,4
368
+ np.float32,0x3e50c578,0x3e523ed4,4
369
+ np.float32,0x3f65bf10,0x3f8e95ce,4
370
+ np.float32,0xbe8d75a2,0xbe8f52f2,4
371
+ np.float32,0xbf3f557e,0xbf581962,4
372
+ np.float32,0xbeff2bfc,0xbf05903a,4
373
+ np.float32,0x3f5e8bde,0x3f86e3d8,4
374
+ np.float32,0xbf7a0012,0xbfad4b9b,4
375
+ np.float32,0x3edefce0,0x3ee6b790,4
376
+ np.float32,0xbf0003de,0xbf060f09,4
377
+ np.float32,0x3efc4650,0x3f03e548,4
378
+ np.float32,0x3f4582e4,0x3f6198f5,4
379
+ np.float32,0x3f10086c,0x3f18f9d0,4
380
+ np.float32,0x3f1cd304,0x3f28ca77,4
381
+ np.float32,0x3f683366,0x3f916e8d,4
382
+ np.float32,0xbed49392,0xbedb3675,4
383
+ np.float32,0xbf6fe5f6,0xbf9b6c0e,4
384
+ np.float32,0xbf59b416,0xbf8224f6,4
385
+ np.float32,0x3d20c960,0x3d20d3f4,4
386
+ np.float32,0x3f6b00d6,0x3f94dbe7,4
387
+ np.float32,0x3f6c26ae,0x3f965352,4
388
+ np.float32,0xbf370ea6,0xbf4bf5dd,4
389
+ np.float32,0x3dfe7230,0x3dff1af1,4
390
+ np.float32,0xbefc21a8,0xbf03d038,4
391
+ np.float32,0x3f16a990,0x3f21156a,4
392
+ np.float32,0xbef8ac0c,0xbf01d48f,4
393
+ np.float32,0x3f170de8,0x3f21919d,4
394
+ np.float32,0x3db9ef80,0x3dba3122,4
395
+ np.float32,0x3d696400,0x3d698461,4
396
+ np.float32,0x3f007aa2,0x3f069843,4
397
+ np.float32,0x3f22827c,0x3f3010a9,4
398
+ np.float32,0x3f3650dc,0x3f4ae6f1,4
399
+ np.float32,0xbf1d8037,0xbf29a5e1,4
400
+ np.float32,0xbf08fdc4,0xbf108d0e,4
401
+ np.float32,0xbd8df350,0xbd8e1079,4
402
+ np.float32,0xbf36bb32,0xbf4b7e98,4
403
+ np.float32,0x3f2e3756,0x3f3f9ced,4
404
+ np.float32,0x3d5a6f20,0x3d5a89aa,4
405
+ np.float32,0x3f55d568,0x3f7d1889,4
406
+ np.float32,0x3e1ed110,0x3e1f75d9,4
407
+ np.float32,0x3e7386b8,0x3e75e1dc,4
408
+ np.float32,0x3f48ea0e,0x3f670434,4
409
+ np.float32,0x3e921fb0,0x3e942f14,4
410
+ np.float32,0xbf0d4d0b,0xbf15af7f,4
411
+ np.float32,0x3f179ed2,0x3f224549,4
412
+ np.float32,0xbf3a328e,0xbf507e6d,4
413
+ np.float32,0xbf74591a,0xbfa24b6e,4
414
+ np.float32,0x3ec7d1c4,0x3ecd4657,4
415
+ np.float32,0xbf6ecbed,0xbf99de85,4
416
+ np.float32,0x3db0bd00,0x3db0f559,4
417
+ np.float32,0x7f800000,0x7fc00000,4
418
+ np.float32,0x3e0373b8,0x3e03d0d6,4
419
+ np.float32,0xbf439784,0xbf5e9a04,4
420
+ np.float32,0xbef97a9e,0xbf024ac6,4
421
+ np.float32,0x3e4d71a8,0x3e4ed90a,4
422
+ np.float32,0xbf14d868,0xbf1ed7e3,4
423
+ np.float32,0xbf776870,0xbfa7ce37,4
424
+ np.float32,0xbe32a500,0xbe339038,4
425
+ np.float32,0xbf326d8a,0xbf456c3d,4
426
+ np.float32,0xbe9b758c,0xbe9df3e7,4
427
+ np.float32,0x3d9515a0,0x3d95376a,4
428
+ np.float32,0x3e3f7320,0x3e40953e,4
429
+ np.float32,0xbee57e7e,0xbeedf84f,4
430
+ np.float32,0x3e821e94,0x3e838ffd,4
431
+ np.float32,0x3f74beaa,0x3fa2f721,4
432
+ np.float32,0xbe9b7672,0xbe9df4d9,4
433
+ np.float32,0x3f4041fc,0x3f597e71,4
434
+ np.float32,0xbe9ea7c4,0xbea14f92,4
435
+ np.float32,0xbf800000,0xbfc90fdb,4
436
+ np.float32,0x3e04fb90,0x3e055bfd,4
437
+ np.float32,0xbf14d3d6,0xbf1ed245,4
438
+ np.float32,0xbe84ebec,0xbe86763e,4
439
+ np.float32,0x3f08e568,0x3f107039,4
440
+ np.float32,0x3d8dc9e0,0x3d8de6ef,4
441
+ np.float32,0x3ea4549c,0x3ea74a94,4
442
+ np.float32,0xbebd2806,0xbec1bf51,4
443
+ np.float32,0x3f311a26,0x3f439498,4
444
+ np.float32,0xbf3d2222,0xbf54cf7e,4
445
+ np.float32,0x3e00c500,0x3e011c81,4
446
+ np.float32,0xbe35ed1c,0xbe36e5a9,4
447
+ np.float32,0xbd4ec020,0xbd4ed6a0,4
448
+ np.float32,0x3e1eb088,0x3e1f54eb,4
449
+ np.float32,0x3cf94840,0x3cf9521a,4
450
+ np.float32,0xbf010c5d,0xbf0740e0,4
451
+ np.float32,0xbf3bd63b,0xbf52e502,4
452
+ np.float32,0x3f233f30,0x3f310542,4
453
+ np.float32,0x3ea24128,0x3ea519d7,4
454
+ np.float32,0x3f478b38,0x3f64d124,4
455
+ np.float32,0x3f1e0c6c,0x3f2a57ec,4
456
+ np.float32,0xbf3ad294,0xbf51680a,4
457
+ np.float32,0x3ede0554,0x3ee5a4b4,4
458
+ np.float32,0x3e451a98,0x3e46577d,4
459
+ np.float32,0x3f520164,0x3f764542,4
460
+ np.float32,0x0,0x0,4
461
+ np.float32,0xbd056cd0,0xbd0572db,4
462
+ np.float32,0xbf58b018,0xbf812f5e,4
463
+ np.float32,0x3e036eb0,0x3e03cbc3,4
464
+ np.float32,0x3d1377a0,0x3d137fc9,4
465
+ np.float32,0xbf692d3a,0xbf929a2c,4
466
+ np.float32,0xbec60fb8,0xbecb5dea,4
467
+ np.float32,0x3ed23340,0x3ed89a8e,4
468
+ np.float32,0x3c87f040,0x3c87f1d9,4
469
+ np.float32,0x3dac62f0,0x3dac9737,4
470
+ np.float32,0xbed97c16,0xbee09f02,4
471
+ np.float32,0xbf2d5f3c,0xbf3e769c,4
472
+ np.float32,0xbc3b7c40,0xbc3b7d4c,4
473
+ np.float32,0x3ed998ec,0x3ee0bedd,4
474
+ np.float32,0x3dd86630,0x3dd8cdcb,4
475
+ np.float32,0x3e8b4304,0x3e8d09ea,4
476
+ np.float32,0x3f51e6b0,0x3f761697,4
477
+ np.float32,0x3ec51f24,0x3eca5923,4
478
+ np.float32,0xbf647430,0xbf8d2307,4
479
+ np.float32,0x3f253d9c,0x3f339eb2,4
480
+ np.float32,0x3dc969d0,0x3dc9bd4b,4
481
+ np.float32,0xbc2f1300,0xbc2f13da,4
482
+ np.float32,0xbf170007,0xbf21806d,4
483
+ np.float32,0x3f757d10,0x3fa4412e,4
484
+ np.float32,0xbe7864ac,0xbe7ae564,4
485
+ np.float32,0x3f2ffe90,0x3f420cfb,4
486
+ np.float32,0xbe576138,0xbe590012,4
487
+ np.float32,0xbf517a21,0xbf755959,4
488
+ np.float32,0xbf159cfe,0xbf1fc9d5,4
489
+ np.float32,0xbf638b2a,0xbf8c22cf,4
490
+ np.float32,0xff800000,0x7fc00000,4
491
+ np.float32,0x3ed19ca0,0x3ed7f569,4
492
+ np.float32,0x3f7c4460,0x3fb32d26,4
493
+ np.float32,0x3ebfae6c,0x3ec477ab,4
494
+ np.float32,0x3dd452d0,0x3dd4b4a8,4
495
+ np.float32,0x3f471482,0x3f6413fb,4
496
+ np.float32,0xbf49d704,0xbf6883fe,4
497
+ np.float32,0xbd42c4e0,0xbd42d7af,4
498
+ np.float32,0xbeb02994,0xbeb3d668,4
499
+ np.float32,0x3f4d1fd8,0x3f6dedd2,4
500
+ np.float32,0x3efb591c,0x3f035d11,4
501
+ np.float32,0x80000000,0x80000000,4
502
+ np.float32,0xbf50f782,0xbf7476ad,4
503
+ np.float32,0x3d7232c0,0x3d7256f0,4
504
+ np.float32,0x3f649460,0x3f8d46bb,4
505
+ np.float32,0x3f5561bc,0x3f7c46a9,4
506
+ np.float32,0x3e64f6a0,0x3e66ea5d,4
507
+ np.float32,0x3e5b0470,0x3e5cb8f9,4
508
+ np.float32,0xbe9b6b2c,0xbe9de904,4
509
+ np.float32,0x3f6c33f4,0x3f966486,4
510
+ np.float32,0x3f5cee54,0x3f854613,4
511
+ np.float32,0x3ed3e044,0x3eda716e,4
512
+ np.float32,0xbf3cac7f,0xbf542131,4
513
+ np.float32,0x3c723500,0x3c723742,4
514
+ np.float32,0x3de59900,0x3de614d3,4
515
+ np.float32,0xbdf292f8,0xbdf32517,4
516
+ np.float32,0x3f05c8b2,0x3f0cc59b,4
517
+ np.float32,0xbf1ab182,0xbf261b14,4
518
+ np.float32,0xbda396f0,0xbda3c39a,4
519
+ np.float32,0xbf270ed0,0xbf360231,4
520
+ np.float32,0x3f2063e6,0x3f2d557e,4
521
+ np.float32,0x3c550280,0x3c550409,4
522
+ np.float32,0xbe103b48,0xbe10b679,4
523
+ np.float32,0xbebae390,0xbebf4f40,4
524
+ np.float32,0x3f3bc868,0x3f52d0aa,4
525
+ np.float32,0xbd62f880,0xbd631647,4
526
+ np.float32,0xbe7a38f4,0xbe7cc833,4
527
+ np.float32,0x3f09d796,0x3f118f39,4
528
+ np.float32,0xbf5fa558,0xbf8802d0,4
529
+ np.float32,0x3f111cc8,0x3f1a48b0,4
530
+ np.float32,0x3e831958,0x3e849356,4
531
+ np.float32,0xbf614dbd,0xbf89bc3b,4
532
+ np.float32,0xbd521510,0xbd522cac,4
533
+ np.float32,0x3f05af22,0x3f0ca7a0,4
534
+ np.float32,0xbf1ac60e,0xbf2634df,4
535
+ np.float32,0xbf6bd05e,0xbf95e3fe,4
536
+ np.float32,0xbd1fa6e0,0xbd1fb13b,4
537
+ np.float32,0xbeb82f7a,0xbebc68b1,4
538
+ np.float32,0xbd92aaf8,0xbd92cb23,4
539
+ np.float32,0xbe073a54,0xbe079fbf,4
540
+ np.float32,0xbf198655,0xbf24a468,4
541
+ np.float32,0x3f62f6d8,0x3f8b81ba,4
542
+ np.float32,0x3eef4310,0x3ef8f4f9,4
543
+ np.float32,0x3e8988e0,0x3e8b3eae,4
544
+ np.float32,0xbf3ddba5,0xbf55e367,4
545
+ np.float32,0x3dc6d2e0,0x3dc7232b,4
546
+ np.float32,0xbf31040e,0xbf437601,4
547
+ np.float32,0x3f1bb74a,0x3f276442,4
548
+ np.float32,0xbf0075d2,0xbf0692b3,4
549
+ np.float32,0xbf606ce0,0xbf88d0ff,4
550
+ np.float32,0xbf083856,0xbf0fa39d,4
551
+ np.float32,0xbdb25b20,0xbdb2950a,4
552
+ np.float32,0xbeb86860,0xbebca5ae,4
553
+ np.float32,0x3de83160,0x3de8b176,4
554
+ np.float32,0xbf33a98f,0xbf472664,4
555
+ np.float32,0x3e7795f8,0x3e7a1058,4
556
+ np.float32,0x3e0ca6f8,0x3e0d192a,4
557
+ np.float32,0xbf1aef60,0xbf2668c3,4
558
+ np.float32,0xbda53b58,0xbda5695e,4
559
+ np.float32,0xbf178096,0xbf221fc5,4
560
+ np.float32,0xbf0a4159,0xbf120ccf,4
561
+ np.float32,0x3f7bca36,0x3fb1d0df,4
562
+ np.float32,0xbef94360,0xbf022b26,4
563
+ np.float32,0xbef16f36,0xbefb6ad6,4
564
+ np.float32,0x3f53a7e6,0x3f792e25,4
565
+ np.float32,0xbf7c536f,0xbfb35993,4
566
+ np.float32,0xbe84aaa0,0xbe8632a2,4
567
+ np.float32,0x3ecb3998,0x3ed0fab9,4
568
+ np.float32,0x3f539304,0x3f79090a,4
569
+ np.float32,0xbf3c7816,0xbf53d3b3,4
570
+ np.float32,0xbe7a387c,0xbe7cc7b7,4
571
+ np.float32,0x3f7000e4,0x3f9b92b1,4
572
+ np.float32,0x3e08fd70,0x3e0966e5,4
573
+ np.float32,0x3db97ba0,0x3db9bcc8,4
574
+ np.float32,0xbee99056,0xbef2886a,4
575
+ np.float32,0xbf0668da,0xbf0d819e,4
576
+ np.float32,0x3e58a408,0x3e5a4a51,4
577
+ np.float32,0x3f3440b8,0x3f47faed,4
578
+ np.float32,0xbf19a2ce,0xbf24c7ff,4
579
+ np.float32,0xbe75e990,0xbe7856ee,4
580
+ np.float32,0x3f3c865c,0x3f53e8cb,4
581
+ np.float32,0x3e5e03d0,0x3e5fcac9,4
582
+ np.float32,0x3edb8e34,0x3ee2e932,4
583
+ np.float32,0xbf7e1f5f,0xbfb98ce4,4
584
+ np.float32,0xbf7372ff,0xbfa0d0ae,4
585
+ np.float32,0xbf3ee850,0xbf577548,4
586
+ np.float32,0x3ef19658,0x3efb9737,4
587
+ np.float32,0xbe8088de,0xbe81ecaf,4
588
+ np.float32,0x800000,0x800000,4
589
+ np.float32,0xbde39dd8,0xbde4167a,4
590
+ np.float32,0xbf065d7a,0xbf0d7441,4
591
+ np.float32,0xbde52c78,0xbde5a79b,4
592
+ np.float32,0xbe3a28c0,0xbe3b333e,4
593
+ np.float32,0x3f6e8b3c,0x3f998516,4
594
+ np.float32,0x3f3485c2,0x3f485c39,4
595
+ np.float32,0x3e6f2c68,0x3e71673e,4
596
+ np.float32,0xbe4ec9cc,0xbe50385e,4
597
+ np.float32,0xbf1c3bb0,0xbf280b39,4
598
+ np.float32,0x3ec8ea18,0x3ece76f7,4
599
+ np.float32,0x3e26b5f8,0x3e2774c9,4
600
+ np.float32,0x3e1e4a38,0x3e1eed5c,4
601
+ np.float32,0xbee7a106,0xbef05c6b,4
602
+ np.float32,0xbf305928,0xbf4289d8,4
603
+ np.float32,0x3f0c431c,0x3f147118,4
604
+ np.float32,0xbe57ba6c,0xbe595b52,4
605
+ np.float32,0x3eabc9cc,0x3eaf2fc7,4
606
+ np.float32,0xbef1ed24,0xbefbf9ae,4
607
+ np.float32,0xbf61b576,0xbf8a29cc,4
608
+ np.float32,0x3e9c1ff4,0x3e9ea6cb,4
609
+ np.float32,0x3f6c53b2,0x3f968dbe,4
610
+ np.float32,0x3e2d1b80,0x3e2df156,4
611
+ np.float32,0x3e9f2f70,0x3ea1de4a,4
612
+ np.float32,0xbf5861ee,0xbf80e61a,4
613
+ np.float32,0x3f429144,0x3f5d0505,4
614
+ np.float32,0x3e235cc8,0x3e24103e,4
615
+ np.float32,0xbf354879,0xbf496f6a,4
616
+ np.float32,0xbf20a146,0xbf2da447,4
617
+ np.float32,0x3e8d8968,0x3e8f6785,4
618
+ np.float32,0x3f3fbc94,0x3f58b4c1,4
619
+ np.float32,0x3f2c5f50,0x3f3d1b9f,4
620
+ np.float32,0x3f7bf0f8,0x3fb23d23,4
621
+ np.float32,0xbf218282,0xbf2ec60f,4
622
+ np.float32,0x3f2545aa,0x3f33a93e,4
623
+ np.float32,0xbf4b17be,0xbf6a9018,4
624
+ np.float32,0xbb9df700,0xbb9df728,4
625
+ np.float32,0x3f685d54,0x3f91a06c,4
626
+ np.float32,0x3efdfe2c,0x3f04e24c,4
627
+ np.float32,0x3ef1c5a0,0x3efbccd9,4
628
+ np.float32,0xbf41d731,0xbf5be76e,4
629
+ np.float32,0x3ebd1360,0x3ec1a919,4
630
+ np.float32,0xbf706bd4,0xbf9c2d58,4
631
+ np.float32,0x3ea525e4,0x3ea8279d,4
632
+ np.float32,0xbe51f1b0,0xbe537186,4
633
+ np.float32,0x3f5e8cf6,0x3f86e4f4,4
634
+ np.float32,0xbdad2520,0xbdad5a19,4
635
+ np.float32,0xbf5c5704,0xbf84b0e5,4
636
+ np.float32,0x3f47b54e,0x3f65145e,4
637
+ np.float32,0x3eb4fc78,0x3eb8fc0c,4
638
+ np.float32,0x3dca1450,0x3dca68a1,4
639
+ np.float32,0x3eb02a74,0x3eb3d757,4
640
+ np.float32,0x3f74ae6a,0x3fa2db75,4
641
+ np.float32,0x3f800000,0x3fc90fdb,4
642
+ np.float32,0xbdb46a00,0xbdb4a5f2,4
643
+ np.float32,0xbe9f2ba6,0xbea1da4e,4
644
+ np.float32,0x3f0afa70,0x3f12e8f7,4
645
+ np.float32,0xbf677b20,0xbf909547,4
646
+ np.float32,0x3eff9188,0x3f05cacf,4
647
+ np.float32,0x3f720562,0x3f9e911b,4
648
+ np.float32,0xbf7180d8,0xbf9dc794,4
649
+ np.float32,0xbee7d076,0xbef0919d,4
650
+ np.float32,0x3f0432ce,0x3f0aea95,4
651
+ np.float32,0x3f3bc4c8,0x3f52cb54,4
652
+ np.float32,0xbea72f30,0xbeaa4ebe,4
653
+ np.float32,0x3e90ed00,0x3e92ef33,4
654
+ np.float32,0xbda63670,0xbda6654a,4
655
+ np.float32,0xbf5a6f85,0xbf82d7e0,4
656
+ np.float32,0x3e6e8808,0x3e70be34,4
657
+ np.float32,0xbf4f3822,0xbf71768f,4
658
+ np.float32,0x3e5c8a68,0x3e5e483f,4
659
+ np.float32,0xbf0669d4,0xbf0d82c4,4
660
+ np.float32,0xbf79f77c,0xbfad37b0,4
661
+ np.float32,0x3f25c82c,0x3f345453,4
662
+ np.float32,0x3f1b2948,0x3f26b188,4
663
+ np.float32,0x3ef7e288,0x3f016159,4
664
+ np.float32,0x3c274280,0x3c27433e,4
665
+ np.float32,0xbf4c8fa0,0xbf6cfd5e,4
666
+ np.float32,0x3ea4ccb4,0x3ea7c966,4
667
+ np.float32,0xbf7b157e,0xbfafefca,4
668
+ np.float32,0xbee4c2b0,0xbeed264d,4
669
+ np.float32,0xbc1fd640,0xbc1fd6e6,4
670
+ np.float32,0x3e892308,0x3e8ad4f6,4
671
+ np.float32,0xbf3f69c7,0xbf5837ed,4
672
+ np.float32,0x3ec879e8,0x3ecdfd05,4
673
+ np.float32,0x3f07a8c6,0x3f0efa30,4
674
+ np.float32,0x3f67b880,0x3f90dd4d,4
675
+ np.float32,0x3e8a11c8,0x3e8bccd5,4
676
+ np.float32,0x3f7df6fc,0x3fb8e935,4
677
+ np.float32,0xbef3e498,0xbefe3599,4
678
+ np.float32,0xbf18ad7d,0xbf2395d8,4
679
+ np.float32,0x3f2bce74,0x3f3c57f5,4
680
+ np.float32,0xbf38086e,0xbf4d5c2e,4
681
+ np.float32,0x3f772d7a,0x3fa75c35,4
682
+ np.float32,0xbf3b6e24,0xbf524c00,4
683
+ np.float32,0xbdd39108,0xbdd3f1d4,4
684
+ np.float32,0xbf691f6b,0xbf928974,4
685
+ np.float32,0x3f146188,0x3f1e45e4,4
686
+ np.float32,0xbf56045b,0xbf7d6e03,4
687
+ np.float32,0xbf4b2ee4,0xbf6ab622,4
688
+ np.float32,0xbf3fa3f6,0xbf588f9d,4
689
+ np.float32,0x3f127bb0,0x3f1bf398,4
690
+ np.float32,0x3ed858a0,0x3edf5d3e,4
691
+ np.float32,0xbd6de3b0,0xbd6e05fa,4
692
+ np.float32,0xbecc662c,0xbed24261,4
693
+ np.float32,0xbd6791d0,0xbd67b170,4
694
+ np.float32,0xbf146016,0xbf1e441e,4
695
+ np.float32,0xbf61f04c,0xbf8a6841,4
696
+ np.float32,0xbe7f16d0,0xbe80e6e7,4
697
+ np.float32,0xbebf93e6,0xbec45b10,4
698
+ np.float32,0xbe8a59fc,0xbe8c17d1,4
699
+ np.float32,0xbebc7a0c,0xbec10426,4
700
+ np.float32,0xbf2a682e,0xbf3a7649,4
701
+ np.float32,0xbe18d0cc,0xbe19637b,4
702
+ np.float32,0x3d7f5100,0x3d7f7b66,4
703
+ np.float32,0xbf10f5fa,0xbf1a1998,4
704
+ np.float32,0x3f25e956,0x3f347fdc,4
705
+ np.float32,0x3e6e8658,0x3e70bc78,4
706
+ np.float32,0x3f21a5de,0x3f2ef3a5,4
707
+ np.float32,0xbf4e71d4,0xbf702607,4
708
+ np.float32,0xbf49d6b6,0xbf688380,4
709
+ np.float32,0xbdb729c0,0xbdb7687c,4
710
+ np.float32,0xbf63e1f4,0xbf8c81c7,4
711
+ np.float32,0x3dda6cb0,0x3ddad73e,4
712
+ np.float32,0x3ee1bc40,0x3ee9c612,4
713
+ np.float32,0x3ebdb5f8,0x3ec2581b,4
714
+ np.float32,0x3f7d9576,0x3fb77646,4
715
+ np.float32,0x3e087140,0x3e08d971,4
716
+ np.float64,0xbfdba523cfb74a48,0xbfdc960ddd9c0506,1
717
+ np.float64,0x3fb51773622a2ee0,0x3fb51d93f77089d5,1
718
+ np.float64,0x3fc839f6d33073f0,0x3fc85f9a47dfe8e6,1
719
+ np.float64,0xbfecba2d82f9745b,0xbff1d55416c6c993,1
720
+ np.float64,0x3fd520fe47aa41fc,0x3fd58867f1179634,1
721
+ np.float64,0x3fe1b369c56366d4,0x3fe2c1ac9dd2c45a,1
722
+ np.float64,0xbfec25a7cd784b50,0xbff133417389b12d,1
723
+ np.float64,0xbfd286342ea50c68,0xbfd2cb0bca22e66d,1
724
+ np.float64,0x3fd5f6fe5eabedfc,0x3fd66bad16680d08,1
725
+ np.float64,0xbfe863a87570c751,0xbfebbb9b637eb6dc,1
726
+ np.float64,0x3fc97f5b4d32feb8,0x3fc9ab5066d8eaec,1
727
+ np.float64,0xbfcb667af936ccf4,0xbfcb9d3017047a1d,1
728
+ np.float64,0xbfd1b7b9afa36f74,0xbfd1f3c175706154,1
729
+ np.float64,0x3fef97385b7f2e70,0x3ff6922a1a6c709f,1
730
+ np.float64,0xbfd13e4205a27c84,0xbfd1757c993cdb74,1
731
+ np.float64,0xbfd18d88aca31b12,0xbfd1c7dd75068f7d,1
732
+ np.float64,0x3fe040ce0f60819c,0x3fe10c59d2a27089,1
733
+ np.float64,0xbfddc7deddbb8fbe,0xbfdef9de5baecdda,1
734
+ np.float64,0xbfcf6e96193edd2c,0xbfcfc1bb7396b9a3,1
735
+ np.float64,0x3fd544f494aa89e8,0x3fd5ae850e2b37dd,1
736
+ np.float64,0x3fe15b381fe2b670,0x3fe25841c7bfe2af,1
737
+ np.float64,0xbfde793420bcf268,0xbfdfc2ddc7b4a341,1
738
+ np.float64,0x3fd0d5db30a1abb8,0x3fd1092cef4aa4fb,1
739
+ np.float64,0x3fe386a08c670d42,0x3fe50059bbf7f491,1
740
+ np.float64,0xbfe0aae3a96155c8,0xbfe1880ef13e95ce,1
741
+ np.float64,0xbfe80eeb03f01dd6,0xbfeb39e9f107e944,1
742
+ np.float64,0xbfd531af3caa635e,0xbfd59a178f17552a,1
743
+ np.float64,0x3fcced14ab39da28,0x3fcd2d9a806337ef,1
744
+ np.float64,0xbfdb4c71bcb698e4,0xbfdc33d9d9daf708,1
745
+ np.float64,0xbfde7375ecbce6ec,0xbfdfbc5611bc48ff,1
746
+ np.float64,0x3fecc5707a798ae0,0x3ff1e2268d778017,1
747
+ np.float64,0x3fe8f210a1f1e422,0x3fec9b3349a5baa2,1
748
+ np.float64,0x3fe357f9b8e6aff4,0x3fe4c5a0b89a9228,1
749
+ np.float64,0xbfe0f863b761f0c8,0xbfe1e3283494c3d4,1
750
+ np.float64,0x3fd017c395a02f88,0x3fd044761f2f4a66,1
751
+ np.float64,0x3febeb4746f7d68e,0x3ff0f6b955e7feb6,1
752
+ np.float64,0xbfbdaaeeae3b55e0,0xbfbdbc0950109261,1
753
+ np.float64,0xbfea013095f40261,0xbfee5b8fe8ad8593,1
754
+ np.float64,0xbfe9f87b7973f0f7,0xbfee4ca3a8438d72,1
755
+ np.float64,0x3fd37f77cfa6fef0,0x3fd3d018c825f057,1
756
+ np.float64,0x3fb0799cee20f340,0x3fb07c879e7cb63f,1
757
+ np.float64,0xbfdcfd581cb9fab0,0xbfde15e35314b52d,1
758
+ np.float64,0xbfd49781b8a92f04,0xbfd4f6fa1516fefc,1
759
+ np.float64,0x3fb3fcb6d627f970,0x3fb401ed44a713a8,1
760
+ np.float64,0x3fd5737ef8aae6fc,0x3fd5dfe42d4416c7,1
761
+ np.float64,0x7ff4000000000000,0x7ffc000000000000,1
762
+ np.float64,0xbfe56ae780ead5cf,0xbfe776ea5721b900,1
763
+ np.float64,0x3fd4567786a8acf0,0x3fd4b255421c161a,1
764
+ np.float64,0x3fef6fb58cfedf6c,0x3ff62012dfcf0a33,1
765
+ np.float64,0xbfd1dbcd3da3b79a,0xbfd2194fd628f74d,1
766
+ np.float64,0x3fd9350016b26a00,0x3fd9e8b01eb023e9,1
767
+ np.float64,0xbfe4fb3a69e9f675,0xbfe6e1d2c9eca56c,1
768
+ np.float64,0x3fe9fe0f73f3fc1e,0x3fee5631cfd39772,1
769
+ np.float64,0xbfd51c1bc6aa3838,0xbfd5833b3bd53543,1
770
+ np.float64,0x3fc64158e12c82b0,0x3fc65e7352f237d7,1
771
+ np.float64,0x3fd0d8ee1ba1b1dc,0x3fd10c5c99a16f0e,1
772
+ np.float64,0x3fd5554e15aaaa9c,0x3fd5bfdb9ec9e873,1
773
+ np.float64,0x3fe61ce209ec39c4,0x3fe869bc4c28437d,1
774
+ np.float64,0xbfe4e42c8c69c859,0xbfe6c356dac7e2db,1
775
+ np.float64,0xbfe157021062ae04,0xbfe2533ed39f4212,1
776
+ np.float64,0x3fe844066cf0880c,0x3feb8aea0b7bd0a4,1
777
+ np.float64,0x3fe55016586aa02c,0x3fe752e4b2a67b9f,1
778
+ np.float64,0x3fdabce619b579cc,0x3fdb95809bc789d9,1
779
+ np.float64,0x3fee03bae37c0776,0x3ff3778ba38ca882,1
780
+ np.float64,0xbfeb2f5844f65eb0,0xbff03dd1b767d3c8,1
781
+ np.float64,0x3fedcfdbaffb9fb8,0x3ff32e81d0639164,1
782
+ np.float64,0x3fe06fc63ee0df8c,0x3fe142fc27f92eaf,1
783
+ np.float64,0x3fe7ce90fd6f9d22,0x3fead8f832bbbf5d,1
784
+ np.float64,0xbfbc0015ce380028,0xbfbc0e7470e06e86,1
785
+ np.float64,0xbfe9b3de90f367bd,0xbfedd857931dfc6b,1
786
+ np.float64,0xbfcb588f5936b120,0xbfcb8ef0124a4f21,1
787
+ np.float64,0x3f8d376a503a6f00,0x3f8d37ab43e7988d,1
788
+ np.float64,0xbfdb123a40b62474,0xbfdbf38b6cf5db92,1
789
+ np.float64,0xbfee7da6be7cfb4e,0xbff433042cd9d5eb,1
790
+ np.float64,0xbfc4c9e01b2993c0,0xbfc4e18dbafe37ef,1
791
+ np.float64,0x3fedd42faffba860,0x3ff334790cd18a19,1
792
+ np.float64,0x3fe9cdf772f39bee,0x3fee044f87b856ab,1
793
+ np.float64,0x3fe0245881e048b2,0x3fe0eb5a1f739c8d,1
794
+ np.float64,0xbfe4712bd9e8e258,0xbfe62cb3d82034aa,1
795
+ np.float64,0x3fe9a16b46f342d6,0x3fedb972b2542551,1
796
+ np.float64,0xbfe57ab4536af568,0xbfe78c34b03569c2,1
797
+ np.float64,0x3fb6d6ceb22dada0,0x3fb6de976964d6dd,1
798
+ np.float64,0x3fc3ac23a3275848,0x3fc3c02de53919b8,1
799
+ np.float64,0xbfccb531e7396a64,0xbfccf43ec69f6281,1
800
+ np.float64,0xbfd2f07fc8a5e100,0xbfd33a35a8c41b62,1
801
+ np.float64,0xbfe3e5dd04e7cbba,0xbfe57940157c27ba,1
802
+ np.float64,0x3feefe40757dfc80,0x3ff51bc72b846af6,1
803
+ np.float64,0x8000000000000001,0x8000000000000001,1
804
+ np.float64,0x3fecb7b766796f6e,0x3ff1d28972a0fc7e,1
805
+ np.float64,0xbfea1bf1357437e2,0xbfee89a6532bfd71,1
806
+ np.float64,0xbfca3983b7347308,0xbfca696463b791ef,1
807
+ np.float64,0x10000000000000,0x10000000000000,1
808
+ np.float64,0xbf886b45d030d680,0xbf886b6bbc04314b,1
809
+ np.float64,0x3fd5224bb5aa4498,0x3fd589c92e82218f,1
810
+ np.float64,0xbfec799874f8f331,0xbff18d5158b8e640,1
811
+ np.float64,0xbf88124410302480,0xbf88126863350a16,1
812
+ np.float64,0xbfe37feaaa66ffd6,0xbfe4f7e24382e79d,1
813
+ np.float64,0x3fd777eca1aeefd8,0x3fd8076ead6d55dc,1
814
+ np.float64,0x3fecaaeb3af955d6,0x3ff1c4159fa3e965,1
815
+ np.float64,0xbfeb81e4e6f703ca,0xbff08d4e4c77fada,1
816
+ np.float64,0xbfd7d0a0edafa142,0xbfd866e37010312e,1
817
+ np.float64,0x3feda48c00fb4918,0x3ff2f3fd33c36307,1
818
+ np.float64,0x3feb87ecc4770fda,0x3ff09336e490deda,1
819
+ np.float64,0xbfefd78ad27faf16,0xbff78abbafb50ac1,1
820
+ np.float64,0x3fe58e918c6b1d24,0x3fe7a70b38cbf016,1
821
+ np.float64,0x3fda163b95b42c78,0x3fdade86b88ba4ee,1
822
+ np.float64,0x3fe8fc1aaf71f836,0x3fecab3f93b59df5,1
823
+ np.float64,0xbf8de56f903bcac0,0xbf8de5b527cec797,1
824
+ np.float64,0xbfec112db2f8225b,0xbff11dd648de706f,1
825
+ np.float64,0x3fc3214713264290,0x3fc333b1c862f7d0,1
826
+ np.float64,0xbfeb5e5836f6bcb0,0xbff06ac364b49177,1
827
+ np.float64,0x3fc23d9777247b30,0x3fc24d8ae3bcb615,1
828
+ np.float64,0xbfdf0eed65be1dda,0xbfe036cea9b9dfb6,1
829
+ np.float64,0xbfb2d5c85a25ab90,0xbfb2da24bb409ff3,1
830
+ np.float64,0xbfecdda0c3f9bb42,0xbff1fdf94fc6e89e,1
831
+ np.float64,0x3fdfe79154bfcf24,0x3fe0b338e0476a9d,1
832
+ np.float64,0xbfd712ac6bae2558,0xbfd79abde21f287b,1
833
+ np.float64,0x3fea3f148a747e2a,0x3feec6bed9d4fa04,1
834
+ np.float64,0x3fd4879e4ca90f3c,0x3fd4e632fa4e2edd,1
835
+ np.float64,0x3fe9137a9e7226f6,0x3fecd0c441088d6a,1
836
+ np.float64,0xbfc75bf4ef2eb7e8,0xbfc77da8347d742d,1
837
+ np.float64,0xbfd94090a0b28122,0xbfd9f5458816ed5a,1
838
+ np.float64,0x3fde439cbcbc8738,0x3fdf85fbf496b61f,1
839
+ np.float64,0xbfe18bacdce3175a,0xbfe29210e01237f7,1
840
+ np.float64,0xbfd58ec413ab1d88,0xbfd5fcd838f0a934,1
841
+ np.float64,0xbfeae5af2d75cb5e,0xbfeff1de1b4a06be,1
842
+ np.float64,0x3fb64d1a162c9a30,0x3fb65458fb831354,1
843
+ np.float64,0x3fc18b1e15231640,0x3fc1994c6ffd7a6a,1
844
+ np.float64,0xbfd7b881bcaf7104,0xbfd84ce89a9ee8c7,1
845
+ np.float64,0x3feb916a40f722d4,0x3ff09c8aa851d7c4,1
846
+ np.float64,0x3fdab5fbb5b56bf8,0x3fdb8de43961bbde,1
847
+ np.float64,0x3fe4f35402e9e6a8,0x3fe6d75dc5082894,1
848
+ np.float64,0x3fe2fdb2e5e5fb66,0x3fe454e32a5d2182,1
849
+ np.float64,0x3fe8607195f0c0e4,0x3febb6a4c3bf6a5c,1
850
+ np.float64,0x3fd543ca9aaa8794,0x3fd5ad49203ae572,1
851
+ np.float64,0x3fe8e05ca1f1c0ba,0x3fec7eff123dcc58,1
852
+ np.float64,0x3fe298b6ca65316e,0x3fe3d81d2927c4dd,1
853
+ np.float64,0x3fcfecea733fd9d8,0x3fd0220f1d0faf78,1
854
+ np.float64,0xbfe2e739f065ce74,0xbfe439004e73772a,1
855
+ np.float64,0xbfd1ae6b82a35cd8,0xbfd1ea129a5ee756,1
856
+ np.float64,0xbfeb7edff576fdc0,0xbff08a5a638b8a8b,1
857
+ np.float64,0x3fe5b645ff6b6c8c,0x3fe7dcee1faefe3f,1
858
+ np.float64,0xbfd478427ba8f084,0xbfd4d5fc7c239e60,1
859
+ np.float64,0xbfe39904e3e7320a,0xbfe517972b30b1e5,1
860
+ np.float64,0xbfd3b75b6ba76eb6,0xbfd40acf20a6e074,1
861
+ np.float64,0x3fd596267aab2c4c,0x3fd604b01faeaf75,1
862
+ np.float64,0x3fe134463762688c,0x3fe229fc36784a72,1
863
+ np.float64,0x3fd25dadf7a4bb5c,0x3fd2a0b9e04ea060,1
864
+ np.float64,0xbfc05d3e0b20ba7c,0xbfc068bd2bb9966f,1
865
+ np.float64,0x3f8cf517b039ea00,0x3f8cf556ed74b163,1
866
+ np.float64,0x3fda87361cb50e6c,0x3fdb5a75af897e7f,1
867
+ np.float64,0x3fe53e1926ea7c32,0x3fe73acf01b8ff31,1
868
+ np.float64,0x3fe2e94857e5d290,0x3fe43b8cc820f9c7,1
869
+ np.float64,0x3fd81fe6acb03fcc,0x3fd8bc623c0068cf,1
870
+ np.float64,0xbfddf662c3bbecc6,0xbfdf2e76dc90786e,1
871
+ np.float64,0x3fece174fbf9c2ea,0x3ff2026a1a889580,1
872
+ np.float64,0xbfdc83c5b8b9078c,0xbfdd8dcf6ee3b7da,1
873
+ np.float64,0x3feaf5448f75ea8a,0x3ff0075b108bcd0d,1
874
+ np.float64,0xbfebf32f7ef7e65f,0xbff0fed42aaa826a,1
875
+ np.float64,0x3fe389e5e8e713cc,0x3fe5047ade055ccb,1
876
+ np.float64,0x3f635cdcc026ba00,0x3f635cddeea082ce,1
877
+ np.float64,0x3fae580f543cb020,0x3fae5c9d5108a796,1
878
+ np.float64,0x3fec9fafce793f60,0x3ff1b77bec654f00,1
879
+ np.float64,0x3fb19d226e233a40,0x3fb1a0b32531f7ee,1
880
+ np.float64,0xbfdf9a71e7bf34e4,0xbfe086cef88626c7,1
881
+ np.float64,0x8010000000000000,0x8010000000000000,1
882
+ np.float64,0xbfef170ba2fe2e17,0xbff54ed4675f5b8a,1
883
+ np.float64,0xbfcc6e2f8f38dc60,0xbfccab65fc34d183,1
884
+ np.float64,0x3fee756c4bfcead8,0x3ff4258782c137e6,1
885
+ np.float64,0xbfd461c218a8c384,0xbfd4be3e391f0ff4,1
886
+ np.float64,0xbfe3b64686e76c8d,0xbfe53caa16d6c90f,1
887
+ np.float64,0xbfc1c65d8d238cbc,0xbfc1d51e58f82403,1
888
+ np.float64,0x3fe6e06c63edc0d8,0x3fe97cb832eeb6a2,1
889
+ np.float64,0xbfc9fc20b933f840,0xbfca2ab004312d85,1
890
+ np.float64,0xbfe29aa6df65354e,0xbfe3da7ecf3ba466,1
891
+ np.float64,0x3fea4df7d1749bf0,0x3feee0d448bd4746,1
892
+ np.float64,0xbfedec6161fbd8c3,0xbff3563e1d943aa2,1
893
+ np.float64,0x3fdb6f0437b6de08,0x3fdc5a1888b1213d,1
894
+ np.float64,0xbfe270cbd3e4e198,0xbfe3a72ac27a0b0c,1
895
+ np.float64,0xbfdfff8068bfff00,0xbfe0c1088e3b8983,1
896
+ np.float64,0xbfd28edbe6a51db8,0xbfd2d416c8ed363e,1
897
+ np.float64,0xbfb4e35f9229c6c0,0xbfb4e9531d2a737f,1
898
+ np.float64,0xbfee6727e97cce50,0xbff40e7717576e46,1
899
+ np.float64,0xbfddb5fbddbb6bf8,0xbfdee5aad78f5361,1
900
+ np.float64,0xbfdf9d3e9dbf3a7e,0xbfe0886b191f2957,1
901
+ np.float64,0x3fa57e77042afce0,0x3fa5801518ea9342,1
902
+ np.float64,0x3f95c4e4882b89c0,0x3f95c55003c8e714,1
903
+ np.float64,0x3fd9b10f61b36220,0x3fda6fe5d635a8aa,1
904
+ np.float64,0xbfe2973411652e68,0xbfe3d641fe9885fd,1
905
+ np.float64,0xbfee87bd5a7d0f7b,0xbff443bea81b3fff,1
906
+ np.float64,0x3f9ea064c83d40c0,0x3f9ea19025085b2f,1
907
+ np.float64,0xbfe4b823dfe97048,0xbfe689623d30dc75,1
908
+ np.float64,0xbfa06a326c20d460,0xbfa06aeacbcd3eb8,1
909
+ np.float64,0x3fe1e5c4c1e3cb8a,0x3fe2fe44b822f20e,1
910
+ np.float64,0x3f99dafaa833b600,0x3f99dbaec10a1a0a,1
911
+ np.float64,0xbfed7cb3877af967,0xbff2bfe9e556aaf9,1
912
+ np.float64,0x3fd604f2e2ac09e4,0x3fd67a89408ce6ba,1
913
+ np.float64,0x3fec57b60f78af6c,0x3ff16881f46d60f7,1
914
+ np.float64,0xbfea2e3a17745c74,0xbfeea95c7190fd42,1
915
+ np.float64,0xbfd60a7c37ac14f8,0xbfd6806ed642de35,1
916
+ np.float64,0xbfe544b9726a8973,0xbfe743ac399d81d7,1
917
+ np.float64,0xbfd13520faa26a42,0xbfd16c02034a8fe0,1
918
+ np.float64,0xbfea9ea59ff53d4b,0xbfef70538ee12e00,1
919
+ np.float64,0x3fd66633f8accc68,0x3fd6e23c13ab0e9e,1
920
+ np.float64,0xbfe4071bd3e80e38,0xbfe5a3c9ba897d81,1
921
+ np.float64,0xbfbe1659fa3c2cb0,0xbfbe2831d4fed196,1
922
+ np.float64,0xbfd3312777a6624e,0xbfd37df09b9baeba,1
923
+ np.float64,0x3fd13997caa27330,0x3fd170a4900c8907,1
924
+ np.float64,0xbfe7cbc235ef9784,0xbfead4c4d6cbf129,1
925
+ np.float64,0xbfe1456571628acb,0xbfe23e4ec768c8e2,1
926
+ np.float64,0xbfedf1a044fbe340,0xbff35da96773e176,1
927
+ np.float64,0x3fce38b1553c7160,0x3fce8270709774f9,1
928
+ np.float64,0xbfecb01761f9602f,0xbff1c9e9d382f1f8,1
929
+ np.float64,0xbfe0a03560e1406b,0xbfe17b8d5a1ca662,1
930
+ np.float64,0x3fe50f37cbea1e70,0x3fe6fc55e1ae7da6,1
931
+ np.float64,0xbfe12d64a0625aca,0xbfe221d3a7834e43,1
932
+ np.float64,0xbf6fb288403f6500,0xbf6fb28d6f389db6,1
933
+ np.float64,0x3fda831765b50630,0x3fdb55eecae58ca9,1
934
+ np.float64,0x3fe1a0fe4c6341fc,0x3fe2ab9564304425,1
935
+ np.float64,0xbfef2678a77e4cf1,0xbff56ff42b2797bb,1
936
+ np.float64,0xbfab269c1c364d40,0xbfab29df1cd48779,1
937
+ np.float64,0x3fe8ec82a271d906,0x3fec92567d7a6675,1
938
+ np.float64,0xbfc235115f246a24,0xbfc244ee567682ea,1
939
+ np.float64,0x3feef5bf8d7deb80,0x3ff50ad4875ee9bd,1
940
+ np.float64,0x3fe768b5486ed16a,0x3fea421356160e65,1
941
+ np.float64,0xbfd4255684a84aae,0xbfd47e8baf7ec7f6,1
942
+ np.float64,0x3fc7f67f2b2fed00,0x3fc81ae83cf92dd5,1
943
+ np.float64,0x3fe9b1b19a736364,0x3fedd4b0e24ee741,1
944
+ np.float64,0x3fb27eb9e624fd70,0x3fb282dacd89ce28,1
945
+ np.float64,0xbfd490b710a9216e,0xbfd4efcdeb213458,1
946
+ np.float64,0xbfd1347b2ca268f6,0xbfd16b55dece2d38,1
947
+ np.float64,0x3fc6a5668d2d4ad0,0x3fc6c41452c0c087,1
948
+ np.float64,0xbfca7b209f34f640,0xbfcaac710486f6bd,1
949
+ np.float64,0x3fc23a1a47247438,0x3fc24a047fd4c27a,1
950
+ np.float64,0x3fdb1413a8b62828,0x3fdbf595e2d994bc,1
951
+ np.float64,0xbfea69b396f4d367,0xbfef11bdd2b0709a,1
952
+ np.float64,0x3fd14c9958a29934,0x3fd1846161b10422,1
953
+ np.float64,0xbfe205f44be40be8,0xbfe325283aa3c6a8,1
954
+ np.float64,0x3fecd03c9ef9a07a,0x3ff1ee85aaf52a01,1
955
+ np.float64,0x3fe34281d7e68504,0x3fe4aab63e6de816,1
956
+ np.float64,0xbfe120e2376241c4,0xbfe213023ab03939,1
957
+ np.float64,0xbfe951edc4f2a3dc,0xbfed3615e38576f8,1
958
+ np.float64,0x3fe5a2286f6b4450,0x3fe7c196e0ec10ed,1
959
+ np.float64,0xbfed7a3e1f7af47c,0xbff2bcc0793555d2,1
960
+ np.float64,0x3fe050274960a04e,0x3fe11e2e256ea5cc,1
961
+ np.float64,0xbfcfa71f653f4e40,0xbfcffc11483d6a06,1
962
+ np.float64,0x3f6ead2e403d5a00,0x3f6ead32f314c052,1
963
+ np.float64,0x3fe3a2a026674540,0x3fe523bfe085f6ec,1
964
+ np.float64,0xbfe294a62e65294c,0xbfe3d31ebd0b4ca2,1
965
+ np.float64,0xbfb4894d06291298,0xbfb48ef4b8e256b8,1
966
+ np.float64,0xbfc0c042c1218084,0xbfc0cc98ac2767c4,1
967
+ np.float64,0xbfc6a32cb52d4658,0xbfc6c1d1597ed06b,1
968
+ np.float64,0xbfd30f7777a61eee,0xbfd35aa39fee34eb,1
969
+ np.float64,0x3fe7fc2c2eeff858,0x3feb1d8a558b5537,1
970
+ np.float64,0x7fefffffffffffff,0x7ff8000000000000,1
971
+ np.float64,0xbfdadf917bb5bf22,0xbfdbbbae9a9f67a0,1
972
+ np.float64,0xbfcf0395e13e072c,0xbfcf5366015f7362,1
973
+ np.float64,0xbfe8644c9170c899,0xbfebbc98e74a227d,1
974
+ np.float64,0x3fc3b2d8e52765b0,0x3fc3c6f7d44cffaa,1
975
+ np.float64,0x3fc57407b92ae810,0x3fc58e12ccdd47a1,1
976
+ np.float64,0x3fd56a560daad4ac,0x3fd5d62b8dfcc058,1
977
+ np.float64,0x3fd595deefab2bbc,0x3fd6046420b2f79b,1
978
+ np.float64,0xbfd5360f50aa6c1e,0xbfd59ebaacd815b8,1
979
+ np.float64,0x3fdfb6aababf6d54,0x3fe0970b8aac9f61,1
980
+ np.float64,0x3ff0000000000000,0x3ff921fb54442d18,1
981
+ np.float64,0xbfeb3a8958f67513,0xbff04872e8278c79,1
982
+ np.float64,0x3f9e1ea6683c3d40,0x3f9e1fc326186705,1
983
+ np.float64,0x3fe6b6d5986d6dac,0x3fe94175bd60b19d,1
984
+ np.float64,0xbfee4d90b77c9b21,0xbff3e60e9134edc2,1
985
+ np.float64,0x3fd806ce0cb00d9c,0x3fd8a14c4855a8f5,1
986
+ np.float64,0x3fd54acc75aa9598,0x3fd5b4b72fcbb5df,1
987
+ np.float64,0xbfe59761f16b2ec4,0xbfe7b2fa5d0244ac,1
988
+ np.float64,0xbfcd4fa3513a9f48,0xbfcd92d0814a5383,1
989
+ np.float64,0xbfdc827523b904ea,0xbfdd8c577b53053c,1
990
+ np.float64,0xbfd4bb7f34a976fe,0xbfd51d00d9a99360,1
991
+ np.float64,0xbfe818bc87f03179,0xbfeb48d1ea0199c5,1
992
+ np.float64,0xbfa8a2e15c3145c0,0xbfa8a5510ba0e45c,1
993
+ np.float64,0xbfb6d15f422da2c0,0xbfb6d922689da015,1
994
+ np.float64,0x3fcd04eaab3a09d8,0x3fcd46131746ef08,1
995
+ np.float64,0x3fcfb5cfbb3f6ba0,0x3fd0059d308237f3,1
996
+ np.float64,0x3fe8dcf609f1b9ec,0x3fec7997973010b6,1
997
+ np.float64,0xbfdf1834d7be306a,0xbfe03c1d4e2b48f0,1
998
+ np.float64,0x3fee82ae50fd055c,0x3ff43b545066fe1a,1
999
+ np.float64,0xbfde039c08bc0738,0xbfdf3d6ed4d2ee5c,1
1000
+ np.float64,0x3fec07389bf80e72,0x3ff1137ed0acd161,1
1001
+ np.float64,0xbfef44c010fe8980,0xbff5b488ad22a4c5,1
1002
+ np.float64,0x3f76e722e02dce00,0x3f76e72ab2759d88,1
1003
+ np.float64,0xbfcaa9e6053553cc,0xbfcadc41125fca93,1
1004
+ np.float64,0x3fed6088147ac110,0x3ff29c06c4ef35fc,1
1005
+ np.float64,0x3fd32bd836a657b0,0x3fd3785fdb75909f,1
1006
+ np.float64,0xbfeedbb1d97db764,0xbff4d87f6c82a93c,1
1007
+ np.float64,0xbfe40f31d5e81e64,0xbfe5ae292cf258a2,1
1008
+ np.float64,0x7ff8000000000000,0x7ff8000000000000,1
1009
+ np.float64,0xbfeb2b25bc76564c,0xbff039d81388550c,1
1010
+ np.float64,0x3fec5008fa78a012,0x3ff1604195801da3,1
1011
+ np.float64,0x3fce2d4f293c5aa0,0x3fce76b99c2db4da,1
1012
+ np.float64,0xbfdc435412b886a8,0xbfdd45e7b7813f1e,1
1013
+ np.float64,0x3fdf2c9d06be593c,0x3fe047cb03c141b6,1
1014
+ np.float64,0x3fddefc61ebbdf8c,0x3fdf26fb8fad9fae,1
1015
+ np.float64,0x3fab50218436a040,0x3fab537395eaf3bb,1
1016
+ np.float64,0xbfd5b95a8fab72b6,0xbfd62a191a59343a,1
1017
+ np.float64,0x3fdbf803b4b7f008,0x3fdcf211578e98c3,1
1018
+ np.float64,0xbfec8c255979184b,0xbff1a1bee108ed30,1
1019
+ np.float64,0x3fe33cdaffe679b6,0x3fe4a3a318cd994f,1
1020
+ np.float64,0x3fd8cf585cb19eb0,0x3fd97a408bf3c38c,1
1021
+ np.float64,0x3fe919dde07233bc,0x3fecdb0ea13a2455,1
1022
+ np.float64,0xbfd5ba35e4ab746c,0xbfd62b024805542d,1
1023
+ np.float64,0x3fd2f933e7a5f268,0x3fd343527565e97c,1
1024
+ np.float64,0xbfe5b9f8ddeb73f2,0xbfe7e1f772c3e438,1
1025
+ np.float64,0x3fe843cd92f0879c,0x3feb8a92d68eae3e,1
1026
+ np.float64,0xbfd096b234a12d64,0xbfd0c7beca2c6605,1
1027
+ np.float64,0xbfef3363da7e66c8,0xbff58c98dde6c27c,1
1028
+ np.float64,0x3fd51b01ddaa3604,0x3fd582109d89ead1,1
1029
+ np.float64,0x3fea0f10ff741e22,0x3fee736c2d2a2067,1
1030
+ np.float64,0x3fc276e7b724edd0,0x3fc28774520bc6d4,1
1031
+ np.float64,0xbfef9abc9f7f3579,0xbff69d49762b1889,1
1032
+ np.float64,0x3fe1539ec0e2a73e,0x3fe24f370b7687d0,1
1033
+ np.float64,0x3fad72350c3ae460,0x3fad765e7766682a,1
1034
+ np.float64,0x3fa289a47c251340,0x3fa28aae12f41646,1
1035
+ np.float64,0xbfe5c488e5eb8912,0xbfe7f05d7e7dcddb,1
1036
+ np.float64,0xbfc22ef1d7245de4,0xbfc23ebeb990a1b8,1
1037
+ np.float64,0x3fe59a0b80eb3418,0x3fe7b695fdcba1de,1
1038
+ np.float64,0xbfe9cad619f395ac,0xbfedff0514d91e2c,1
1039
+ np.float64,0x3fc8bc74eb3178e8,0x3fc8e48cb22da666,1
1040
+ np.float64,0xbfc5389a3f2a7134,0xbfc551cd6febc544,1
1041
+ np.float64,0x3fce82feb33d0600,0x3fceceecce2467ef,1
1042
+ np.float64,0x3fda346791b468d0,0x3fdaff95154a4ca6,1
1043
+ np.float64,0x3fd04501fea08a04,0x3fd073397b32607e,1
1044
+ np.float64,0xbfb6be498a2d7c90,0xbfb6c5f93aeb0e57,1
1045
+ np.float64,0x3fe1f030dd63e062,0x3fe30ad8fb97cce0,1
1046
+ np.float64,0xbfee3fb36dfc7f67,0xbff3d0a5e380b86f,1
1047
+ np.float64,0xbfa876773c30ecf0,0xbfa878d9d3df6a3f,1
1048
+ np.float64,0x3fdb58296eb6b054,0x3fdc40ceffb17f82,1
1049
+ np.float64,0xbfea16b5d8742d6c,0xbfee809b99fd6adc,1
1050
+ np.float64,0xbfdc5062b6b8a0c6,0xbfdd547623275fdb,1
1051
+ np.float64,0x3fef6db242fedb64,0x3ff61ab4cdaef467,1
1052
+ np.float64,0xbfc9f778f933eef0,0xbfca25eef1088167,1
1053
+ np.float64,0xbfd22063eba440c8,0xbfd260c8766c69cf,1
1054
+ np.float64,0x3fdd2379f2ba46f4,0x3fde40b025cb1ffa,1
1055
+ np.float64,0xbfea967af2f52cf6,0xbfef61a178774636,1
1056
+ np.float64,0x3fe4f5b49fe9eb6a,0x3fe6da8311a5520e,1
1057
+ np.float64,0x3feccde17b799bc2,0x3ff1ebd0ea228b71,1
1058
+ np.float64,0x3fe1bb76506376ec,0x3fe2cb56fca01840,1
1059
+ np.float64,0xbfef94e583ff29cb,0xbff68aeab8ba75a2,1
1060
+ np.float64,0x3fed024a55fa0494,0x3ff228ea5d456e9d,1
1061
+ np.float64,0xbfe877b2a8f0ef65,0xbfebdaa1a4712459,1
1062
+ np.float64,0x3fef687a8d7ed0f6,0x3ff60cf5fef8d448,1
1063
+ np.float64,0xbfeeb2dc8afd65b9,0xbff48dda6a906cd6,1
1064
+ np.float64,0x3fdb2e28aeb65c50,0x3fdc12620655eb7a,1
1065
+ np.float64,0x3fedc1863afb830c,0x3ff31ae823315e83,1
1066
+ np.float64,0xbfe6b1bb546d6376,0xbfe93a38163e3a59,1
1067
+ np.float64,0x3fe479c78468f390,0x3fe637e5c0fc5730,1
1068
+ np.float64,0x3fbad1fade35a3f0,0x3fbade9a43ca05cf,1
1069
+ np.float64,0xbfe2d1c563e5a38b,0xbfe41e712785900c,1
1070
+ np.float64,0xbfc08c33ed211868,0xbfc09817a752d500,1
1071
+ np.float64,0xbfecce0935f99c12,0xbff1ebfe84524037,1
1072
+ np.float64,0x3fce4ef0e73c9de0,0x3fce995638a3dc48,1
1073
+ np.float64,0xbfd2fb2343a5f646,0xbfd345592517ca18,1
1074
+ np.float64,0x3fd848f7cdb091f0,0x3fd8e8bee5f7b49a,1
1075
+ np.float64,0x3fe532b7d2ea6570,0x3fe72b9ac747926a,1
1076
+ np.float64,0x3fd616aadcac2d54,0x3fd68d692c5cad42,1
1077
+ np.float64,0x3fd7720eb3aee41c,0x3fd801206a0e1e43,1
1078
+ np.float64,0x3fee835a35fd06b4,0x3ff43c7175eb7a54,1
1079
+ np.float64,0xbfe2e8f70b65d1ee,0xbfe43b2800a947a7,1
1080
+ np.float64,0xbfed38f45d7a71e9,0xbff26acd6bde7174,1
1081
+ np.float64,0xbfc0c62661218c4c,0xbfc0d28964d66120,1
1082
+ np.float64,0x3fe97940bef2f282,0x3fed76b986a74ee3,1
1083
+ np.float64,0x3fc96f7dc532def8,0x3fc99b20044c8fcf,1
1084
+ np.float64,0xbfd60201eeac0404,0xbfd677675efaaedc,1
1085
+ np.float64,0x3fe63c0867ec7810,0x3fe894f060200140,1
1086
+ np.float64,0xbfef6144b37ec289,0xbff5fa589a515ba8,1
1087
+ np.float64,0xbfde2da0c8bc5b42,0xbfdf6d0b59e3232a,1
1088
+ np.float64,0xbfd7401612ae802c,0xbfd7cb74ddd413b9,1
1089
+ np.float64,0x3fe41c012de83802,0x3fe5be9d87da3f82,1
1090
+ np.float64,0x3fdf501609bea02c,0x3fe05c1d96a2270b,1
1091
+ np.float64,0x3fcf9fa1233f3f40,0x3fcff45598e72f07,1
1092
+ np.float64,0x3fd4e3895ea9c714,0x3fd547580d8392a2,1
1093
+ np.float64,0x3fe1e8ff5fe3d1fe,0x3fe3022a0b86a2ab,1
1094
+ np.float64,0xbfe0aa55956154ab,0xbfe18768823da589,1
1095
+ np.float64,0x3fb2a0aa26254150,0x3fb2a4e1faff1c93,1
1096
+ np.float64,0x3fd3823417a70468,0x3fd3d2f808dbb167,1
1097
+ np.float64,0xbfaed323643da640,0xbfaed7e9bef69811,1
1098
+ np.float64,0x3fe661e8c4ecc3d2,0x3fe8c9c535f43c16,1
1099
+ np.float64,0xbfa429777c2852f0,0xbfa42acd38ba02a6,1
1100
+ np.float64,0x3fb5993ea22b3280,0x3fb59fd353e47397,1
1101
+ np.float64,0x3fee62d21efcc5a4,0x3ff40788f9278ade,1
1102
+ np.float64,0xbf813fb810227f80,0xbf813fc56d8f3c53,1
1103
+ np.float64,0x3fd56205deaac40c,0x3fd5cd59671ef193,1
1104
+ np.float64,0x3fd31a4de5a6349c,0x3fd365fe401b66e8,1
1105
+ np.float64,0xbfec7cc7a478f98f,0xbff190cf69703ca4,1
1106
+ np.float64,0xbf755881a02ab100,0xbf755887f52e7794,1
1107
+ np.float64,0x3fdd1c92e6ba3924,0x3fde38efb4e8605c,1
1108
+ np.float64,0x3fdf49da80be93b4,0x3fe0588af8dd4a34,1
1109
+ np.float64,0x3fe1fcdbf2e3f9b8,0x3fe31a27b9d273f2,1
1110
+ np.float64,0x3fe2a0f18be541e4,0x3fe3e23b159ce20f,1
1111
+ np.float64,0xbfed0f1561fa1e2b,0xbff23820fc0a54ca,1
1112
+ np.float64,0x3fe34a006c669400,0x3fe4b419b9ed2b83,1
1113
+ np.float64,0xbfd51be430aa37c8,0xbfd583005a4d62e7,1
1114
+ np.float64,0x3fe5ec4e336bd89c,0x3fe826caad6b0f65,1
1115
+ np.float64,0xbfdad71b1fb5ae36,0xbfdbb25bef8b53d8,1
1116
+ np.float64,0xbfe8eac2d871d586,0xbfec8f8cac7952f9,1
1117
+ np.float64,0xbfe1d5aef663ab5e,0xbfe2eae14b7ccdfd,1
1118
+ np.float64,0x3fec11d3157823a6,0x3ff11e8279506753,1
1119
+ np.float64,0xbfe67ff1166cffe2,0xbfe8f3e61c1dfd32,1
1120
+ np.float64,0xbfd101eecda203de,0xbfd136e0e9557022,1
1121
+ np.float64,0x3fde6c9e5cbcd93c,0x3fdfb48ee7efe134,1
1122
+ np.float64,0x3fec3ede9c787dbe,0x3ff14dead1e5cc1c,1
1123
+ np.float64,0x3fe7a022086f4044,0x3fea93ce2980b161,1
1124
+ np.float64,0xbfc3b2b1b7276564,0xbfc3c6d02d60bb21,1
1125
+ np.float64,0x7ff0000000000000,0x7ff8000000000000,1
1126
+ np.float64,0x3fe60b5647ec16ac,0x3fe8517ef0544b40,1
1127
+ np.float64,0xbfd20ab654a4156c,0xbfd24a2f1b8e4932,1
1128
+ np.float64,0xbfe4aa1e2f69543c,0xbfe677005cbd2646,1
1129
+ np.float64,0xbfc831cc0b306398,0xbfc8574910d0b86d,1
1130
+ np.float64,0xbfc3143495262868,0xbfc3267961b79198,1
1131
+ np.float64,0x3fc14d64c1229ac8,0x3fc15afea90a319d,1
1132
+ np.float64,0x3fc0a5a207214b48,0x3fc0b1bd2f15c1b0,1
1133
+ np.float64,0xbfc0b8351521706c,0xbfc0c4792672d6db,1
1134
+ np.float64,0xbfdc383600b8706c,0xbfdd398429e163bd,1
1135
+ np.float64,0x3fd9e17321b3c2e8,0x3fdaa4c4d140a622,1
1136
+ np.float64,0xbfd44f079ea89e10,0xbfd4aa7d6deff4ab,1
1137
+ np.float64,0xbfc3de52a927bca4,0xbfc3f2f8f65f4c3f,1
1138
+ np.float64,0x3fe7779d566eef3a,0x3fea57f8592dbaad,1
1139
+ np.float64,0xbfe309039e661207,0xbfe462f47f9a64e5,1
1140
+ np.float64,0x3fd8e06d08b1c0dc,0x3fd98cc946e440a6,1
1141
+ np.float64,0x3fdde66c9ebbccd8,0x3fdf1c68009a8dc1,1
1142
+ np.float64,0x3fd4369c6ba86d38,0x3fd490bf460a69e4,1
1143
+ np.float64,0xbfe132252fe2644a,0xbfe22775e109cc2e,1
1144
+ np.float64,0x3fee15483c7c2a90,0x3ff39111de89036f,1
1145
+ np.float64,0xbfc1d5ee8123abdc,0xbfc1e4d66c6871a5,1
1146
+ np.float64,0x3fc851c52b30a388,0x3fc877d93fb4ae1a,1
1147
+ np.float64,0x3fdaade707b55bd0,0x3fdb85001661fffe,1
1148
+ np.float64,0xbfe79fb7f96f3f70,0xbfea9330ec27ac10,1
1149
+ np.float64,0xbfe8b0f725f161ee,0xbfec3411c0e4517a,1
1150
+ np.float64,0xbfea79f5f374f3ec,0xbfef2e9dd9270488,1
1151
+ np.float64,0x3fe0b5fe5b616bfc,0x3fe19512a36a4534,1
1152
+ np.float64,0xbfad7c622c3af8c0,0xbfad808fea96a804,1
1153
+ np.float64,0xbfe3e24dbce7c49c,0xbfe574b4c1ea9818,1
1154
+ np.float64,0xbfe80b038af01607,0xbfeb33fec279576a,1
1155
+ np.float64,0xbfef69e2ea7ed3c6,0xbff610a5593a18bc,1
1156
+ np.float64,0x3fdcc0bb39b98178,0x3fddd1f8c9a46430,1
1157
+ np.float64,0xbfba39976a347330,0xbfba4563bb5369a4,1
1158
+ np.float64,0xbfebf9768ef7f2ed,0xbff10548ab725f74,1
1159
+ np.float64,0xbfec21c066f84381,0xbff12f2803ba052f,1
1160
+ np.float64,0xbfca216a6b3442d4,0xbfca50c5e1e5748e,1
1161
+ np.float64,0x3fd5e40da4abc81c,0x3fd65783f9a22946,1
1162
+ np.float64,0x3fc235ca17246b98,0x3fc245a8f453173f,1
1163
+ np.float64,0x3fecb5b867796b70,0x3ff1d046a0bfda69,1
1164
+ np.float64,0x3fcb457fef368b00,0x3fcb7b6daa8165a7,1
1165
+ np.float64,0xbfa5ed6f7c2bdae0,0xbfa5ef27244e2e42,1
1166
+ np.float64,0x3fecf618a1f9ec32,0x3ff21a86cc104542,1
1167
+ np.float64,0x3fe9d95413f3b2a8,0x3fee178dcafa11fc,1
1168
+ np.float64,0xbfe93a5357f274a7,0xbfed0f9a565da84a,1
1169
+ np.float64,0xbfeb9e45ff773c8c,0xbff0a93cab8e258d,1
1170
+ np.float64,0x3fcbd9d0bd37b3a0,0x3fcc134e87cae241,1
1171
+ np.float64,0x3fe55d4db76aba9c,0x3fe764a0e028475a,1
1172
+ np.float64,0xbfc8a6fc71314df8,0xbfc8ceaafbfc59a7,1
1173
+ np.float64,0x3fe0615fa660c2c0,0x3fe1323611c4cbc2,1
1174
+ np.float64,0x3fb965558632cab0,0x3fb9700b84de20ab,1
1175
+ np.float64,0x8000000000000000,0x8000000000000000,1
1176
+ np.float64,0x3fe76776c6eeceee,0x3fea40403e24a9f1,1
1177
+ np.float64,0x3fe3b7f672676fec,0x3fe53ece71a1a1b1,1
1178
+ np.float64,0xbfa9b82ba4337050,0xbfa9baf15394ca64,1
1179
+ np.float64,0xbfe31faf49663f5e,0xbfe47f31b1ca73dc,1
1180
+ np.float64,0xbfcc4c6beb3898d8,0xbfcc88c5f814b2c1,1
1181
+ np.float64,0x3fd481530aa902a8,0x3fd4df8df03bc155,1
1182
+ np.float64,0x3fd47593b8a8eb28,0x3fd4d327ab78a1a8,1
1183
+ np.float64,0x3fd70e6ccbae1cd8,0x3fd7962fe8b63d46,1
1184
+ np.float64,0x3fd25191f7a4a324,0x3fd2941623c88e02,1
1185
+ np.float64,0x3fd0603ef0a0c07c,0x3fd08f64e97588dc,1
1186
+ np.float64,0xbfc653bae52ca774,0xbfc6711e5e0d8ea9,1
1187
+ np.float64,0xbfd11db8fea23b72,0xbfd153b63c6e8812,1
1188
+ np.float64,0xbfea9bde25f537bc,0xbfef6b52268e139a,1
1189
+ np.float64,0x1,0x1,1
1190
+ np.float64,0xbfefd3806d7fa701,0xbff776dcef9583ca,1
1191
+ np.float64,0xbfe0fb8cfde1f71a,0xbfe1e6e2e774a8f8,1
1192
+ np.float64,0x3fea384534f4708a,0x3feebadaa389be0d,1
1193
+ np.float64,0x3feff761c97feec4,0x3ff866157b9d072d,1
1194
+ np.float64,0x3fe7131ccb6e263a,0x3fe9c58b4389f505,1
1195
+ np.float64,0x3fe9084f7872109e,0x3fecbed0355dbc8f,1
1196
+ np.float64,0x3f708e89e0211d00,0x3f708e8cd4946b9e,1
1197
+ np.float64,0xbfe39185f067230c,0xbfe50e1cd178244d,1
1198
+ np.float64,0x3fd67cc1a9acf984,0x3fd6fa514784b48c,1
1199
+ np.float64,0xbfecaef005f95de0,0xbff1c89c9c3ef94a,1
1200
+ np.float64,0xbfe12eec81e25dd9,0xbfe223a4285bba9a,1
1201
+ np.float64,0x3fbe7f9faa3cff40,0x3fbe92363525068d,1
1202
+ np.float64,0xbfe1950b2b632a16,0xbfe29d45fc1e4ce9,1
1203
+ np.float64,0x3fe45049e6e8a094,0x3fe6020de759e383,1
1204
+ np.float64,0x3fe4d10c8969a21a,0x3fe6aa1fe42cbeb9,1
1205
+ np.float64,0xbfe9d04658f3a08d,0xbfee08370a0dbf0c,1
1206
+ np.float64,0x3fe14fb314e29f66,0x3fe24a8d73663521,1
1207
+ np.float64,0xbfef4abfe4fe9580,0xbff5c2c1ff1250ca,1
1208
+ np.float64,0xbfe6162b366c2c56,0xbfe86073ac3c6243,1
1209
+ np.float64,0x3feffe781e7ffcf0,0x3ff8d2cbedd6a1b5,1
1210
+ np.float64,0xbff0000000000000,0xbff921fb54442d18,1
1211
+ np.float64,0x3fc1dc45ad23b888,0x3fc1eb3d9bddda58,1
1212
+ np.float64,0xbfe793f6fcef27ee,0xbfea81c93d65aa64,1
1213
+ np.float64,0x3fdef6d2bbbdeda4,0x3fe029079d42efb5,1
1214
+ np.float64,0xbfdf0ac479be1588,0xbfe0346dbc95963f,1
1215
+ np.float64,0xbfd33927d7a67250,0xbfd38653f90a5b73,1
1216
+ np.float64,0xbfe248b072e49161,0xbfe37631ef6572e1,1
1217
+ np.float64,0xbfc8ceb6af319d6c,0xbfc8f7288657f471,1
1218
+ np.float64,0x3fdd7277fcbae4f0,0x3fde99886e6766ef,1
1219
+ np.float64,0xbfe0d30c6561a619,0xbfe1b72f90bf53d6,1
1220
+ np.float64,0xbfcb0fe07d361fc0,0xbfcb448e2eae9542,1
1221
+ np.float64,0xbfe351f57fe6a3eb,0xbfe4be13eef250f2,1
1222
+ np.float64,0x3fe85ec02cf0bd80,0x3febb407e2e52e4c,1
1223
+ np.float64,0x3fc8bc59b53178b0,0x3fc8e470f65800ec,1
1224
+ np.float64,0xbfd278d447a4f1a8,0xbfd2bd133c9c0620,1
1225
+ np.float64,0x3feda5cfd87b4ba0,0x3ff2f5ab4324f43f,1
1226
+ np.float64,0xbfd2b32a36a56654,0xbfd2fa09c36afd34,1
1227
+ np.float64,0xbfed4a81cb7a9504,0xbff28077a4f4fff4,1
1228
+ np.float64,0x3fdf079bf9be0f38,0x3fe0329f7fb13f54,1
1229
+ np.float64,0x3fd14097f6a28130,0x3fd177e9834ec23f,1
1230
+ np.float64,0xbfaeab11843d5620,0xbfaeafc5531eb6b5,1
1231
+ np.float64,0xbfac3f8c14387f20,0xbfac433893d53360,1
1232
+ np.float64,0xbfc139d7ed2273b0,0xbfc14743adbbe660,1
1233
+ np.float64,0x3fe78cb02cef1960,0x3fea7707f76edba9,1
1234
+ np.float64,0x3fefe16b41ffc2d6,0x3ff7bff36a7aa7b8,1
1235
+ np.float64,0x3fec5260d378a4c2,0x3ff162c588b0da38,1
1236
+ np.float64,0x3fedb146f17b628e,0x3ff304f90d3a15d1,1
1237
+ np.float64,0x3fd1fd45f7a3fa8c,0x3fd23c2dc3929e20,1
1238
+ np.float64,0x3fe0898a5ee11314,0x3fe1610c63e726eb,1
1239
+ np.float64,0x3fe7719946eee332,0x3fea4f205eecb59f,1
1240
+ np.float64,0x3fe955218972aa44,0x3fed3b530c1f7651,1
1241
+ np.float64,0x3fe0ccbf4461997e,0x3fe1afc7b4587836,1
1242
+ np.float64,0xbfe9204314f24086,0xbfece5605780e346,1
1243
+ np.float64,0xbfe552017feaa403,0xbfe755773cbd74d5,1
1244
+ np.float64,0x3fd8ce4b32b19c98,0x3fd9791c8dd44eae,1
1245
+ np.float64,0x3fef89acd9ff135a,0x3ff668f78adf7ced,1
1246
+ np.float64,0x3fc9d713ad33ae28,0x3fca04da6c293bbd,1
1247
+ np.float64,0xbfe22d9c4de45b38,0xbfe3553effadcf92,1
1248
+ np.float64,0x3fa5cda38c2b9b40,0x3fa5cf53c5787482,1
1249
+ np.float64,0x3fa878ebdc30f1e0,0x3fa87b4f2bf1d4c3,1
1250
+ np.float64,0x3fe8030353700606,0x3feb27e196928789,1
1251
+ np.float64,0x3fb50607222a0c10,0x3fb50c188ce391e6,1
1252
+ np.float64,0x3fd9ba4ab4b37494,0x3fda79fa8bd40f45,1
1253
+ np.float64,0x3fb564598e2ac8b0,0x3fb56abe42d1ba13,1
1254
+ np.float64,0xbfd1177c83a22efa,0xbfd14d3d7ef30cc4,1
1255
+ np.float64,0xbfd952cec7b2a59e,0xbfda09215d17c0ac,1
1256
+ np.float64,0x3fe1d8066663b00c,0x3fe2edb35770b8dd,1
1257
+ np.float64,0xbfc89427a3312850,0xbfc8bb7a7c389497,1
1258
+ np.float64,0xbfe86ebfd3f0dd80,0xbfebccc2ba0f506c,1
1259
+ np.float64,0x3fc390578b2720b0,0x3fc3a40cb7f5f728,1
1260
+ np.float64,0xbfd122f9b8a245f4,0xbfd15929dc57a897,1
1261
+ np.float64,0x3f8d0636d03a0c80,0x3f8d06767de576df,1
1262
+ np.float64,0xbfe4b55d8b696abb,0xbfe685be537a9637,1
1263
+ np.float64,0xbfdfd51cf9bfaa3a,0xbfe0a894fcff0c76,1
1264
+ np.float64,0xbfd37c1f52a6f83e,0xbfd3cc9593c37aad,1
1265
+ np.float64,0x3fd0e8283ea1d050,0x3fd11c25c800785a,1
1266
+ np.float64,0x3fd3160784a62c10,0x3fd36183a6c2880c,1
1267
+ np.float64,0x3fd4c66e57a98cdc,0x3fd5288fe3394eff,1
1268
+ np.float64,0x3fee2f7e3afc5efc,0x3ff3b8063eb30cdc,1
1269
+ np.float64,0xbfe526773a6a4cee,0xbfe71b4364215b18,1
1270
+ np.float64,0x3fea01181e740230,0x3fee5b65eccfd130,1
1271
+ np.float64,0xbfe51c03f76a3808,0xbfe70d5919d37587,1
1272
+ np.float64,0x3fd97e1375b2fc28,0x3fda3845da40b22b,1
1273
+ np.float64,0x3fd5c14a14ab8294,0x3fd632890d07ed03,1
1274
+ np.float64,0xbfec9b474279368e,0xbff1b28f50584fe3,1
1275
+ np.float64,0x3fe0139ca860273a,0x3fe0d7fc377f001c,1
1276
+ np.float64,0x3fdb080c9db61018,0x3fdbe85056358fa0,1
1277
+ np.float64,0xbfdd72ceb1bae59e,0xbfde99ea171661eb,1
1278
+ np.float64,0xbfe64e934fec9d26,0xbfe8aec2ef24be63,1
1279
+ np.float64,0x3fd1036a93a206d4,0x3fd1386adabe01bd,1
1280
+ np.float64,0x3febc9d4a5f793aa,0x3ff0d4c069f1e67d,1
1281
+ np.float64,0xbfe547a16fea8f43,0xbfe747902fe6fb4d,1
1282
+ np.float64,0x3fc289b0f9251360,0x3fc29a709de6bdd9,1
1283
+ np.float64,0xbfe694494a6d2892,0xbfe9108f3dc133e2,1
1284
+ np.float64,0x3fd827dfe4b04fc0,0x3fd8c4fe40532b91,1
1285
+ np.float64,0xbfe8b89418f17128,0xbfec400c5a334b2e,1
1286
+ np.float64,0x3fed5605147aac0a,0x3ff28ed1f612814a,1
1287
+ np.float64,0xbfed36af31fa6d5e,0xbff26804e1f71af0,1
1288
+ np.float64,0x3fdbb01c02b76038,0x3fdca2381558bbf0,1
1289
+ np.float64,0x3fe2a951666552a2,0x3fe3ec88f780f9e6,1
1290
+ np.float64,0x3fe662defbecc5be,0x3fe8cb1dbfca98ab,1
1291
+ np.float64,0x3fd098b1b3a13164,0x3fd0c9d064e4eaf2,1
1292
+ np.float64,0x3fefa10edeff421e,0x3ff6b1c6187b18a8,1
1293
+ np.float64,0xbfec4feb7a789fd7,0xbff16021ef37a219,1
1294
+ np.float64,0x3fd8e415bbb1c82c,0x3fd990c1f8b786bd,1
1295
+ np.float64,0xbfead5a09275ab41,0xbfefd44fab5b4f6e,1
1296
+ np.float64,0xbfe8666c16f0ccd8,0xbfebbfe0c9f2a9ae,1
1297
+ np.float64,0x3fdc962132b92c44,0x3fdda2525a6f406c,1
1298
+ np.float64,0xbfe2037f03e406fe,0xbfe3222ec2a3449e,1
1299
+ np.float64,0xbfec82c27e790585,0xbff197626ea9df1e,1
1300
+ np.float64,0x3fd2b4e03ca569c0,0x3fd2fbd3c7fda23e,1
1301
+ np.float64,0xbfe9b0dee5f361be,0xbfedd34f6d3dfe8a,1
1302
+ np.float64,0x3feef45cd17de8ba,0x3ff508180687b591,1
1303
+ np.float64,0x3f82c39bf0258700,0x3f82c3ad24c3b3f1,1
1304
+ np.float64,0xbfca848cfd350918,0xbfcab612ce258546,1
1305
+ np.float64,0x3fd6442aaaac8854,0x3fd6bdea54016e48,1
1306
+ np.float64,0x3fe550799e6aa0f4,0x3fe75369c9ea5b1e,1
1307
+ np.float64,0xbfe0e9d5a361d3ac,0xbfe1d20011139d89,1
1308
+ np.float64,0x3fbfc9ff1e3f9400,0x3fbfdf0ea6885c80,1
1309
+ np.float64,0xbfa187e8b4230fd0,0xbfa188c95072092e,1
1310
+ np.float64,0x3fcd28c9533a5190,0x3fcd6ae879c21b47,1
1311
+ np.float64,0x3fc6227ec52c4500,0x3fc63f1fbb441d29,1
1312
+ np.float64,0x3fe9b7a2ed736f46,0x3feddeab49b2d176,1
1313
+ np.float64,0x3fd4aee93da95dd4,0x3fd50fb3b71e0339,1
1314
+ np.float64,0xbfe164dacf62c9b6,0xbfe263bb2f7dd5d9,1
1315
+ np.float64,0x3fec62e525f8c5ca,0x3ff17496416d9921,1
1316
+ np.float64,0x3fdd363ee0ba6c7c,0x3fde55c6a49a5f86,1
1317
+ np.float64,0x3fe65cbf75ecb97e,0x3fe8c28d31ff3ebd,1
1318
+ np.float64,0xbfe76d27ca6eda50,0xbfea4899e3661425,1
1319
+ np.float64,0xbfc305738d260ae8,0xbfc3178dcfc9d30f,1
1320
+ np.float64,0xbfd3aa2a54a75454,0xbfd3fcf1e1ce8328,1
1321
+ np.float64,0x3fd1609fc9a2c140,0x3fd1992efa539b9f,1
1322
+ np.float64,0xbfac1291bc382520,0xbfac162cc7334b4d,1
1323
+ np.float64,0xbfedb461ea7b68c4,0xbff309247850455d,1
1324
+ np.float64,0xbfe8d2adf8f1a55c,0xbfec6947be90ba92,1
1325
+ np.float64,0xbfd7128965ae2512,0xbfd79a9855bcfc5a,1
1326
+ np.float64,0x3fe8deb09471bd62,0x3fec7c56b3aee531,1
1327
+ np.float64,0xbfe5f4d329ebe9a6,0xbfe8327ea8189af8,1
1328
+ np.float64,0xbfd3b46ac9a768d6,0xbfd407b80b12ff17,1
1329
+ np.float64,0x3fec899d7cf9133a,0x3ff19ef26baca36f,1
1330
+ np.float64,0xbfec192fd5783260,0xbff126306e507fd0,1
1331
+ np.float64,0x3fe945bdaef28b7c,0x3fed222f787310bf,1
1332
+ np.float64,0xbfeff9635d7ff2c7,0xbff87d6773f318eb,1
1333
+ np.float64,0xbfd604b81cac0970,0xbfd67a4aa852559a,1
1334
+ np.float64,0x3fcd1cc9d53a3990,0x3fcd5e962e237c24,1
1335
+ np.float64,0xbfed77b0fffaef62,0xbff2b97a1c9b6483,1
1336
+ np.float64,0xbfc9c69325338d28,0xbfc9f401500402fb,1
1337
+ np.float64,0xbfdf97e246bf2fc4,0xbfe0855601ea9db3,1
1338
+ np.float64,0x3fc7e6304f2fcc60,0x3fc80a4e718504cd,1
1339
+ np.float64,0x3fec3b599e7876b4,0x3ff14a2d1b9c68e6,1
1340
+ np.float64,0xbfe98618e1f30c32,0xbfed8bfbb31c394a,1
1341
+ np.float64,0xbfe59b3c0feb3678,0xbfe7b832d6df81de,1
1342
+ np.float64,0xbfe54ce2fe6a99c6,0xbfe74e9a85be4116,1
1343
+ np.float64,0x3fc9db49cb33b690,0x3fca092737ef500a,1
1344
+ np.float64,0xbfb4a922ae295248,0xbfb4aee4e39078a9,1
1345
+ np.float64,0xbfd0e542e0a1ca86,0xbfd11925208d66af,1
1346
+ np.float64,0x3fd70543f2ae0a88,0x3fd78c5e9238a3ee,1
1347
+ np.float64,0x3fd67f7a7facfef4,0x3fd6fd3998df8545,1
1348
+ np.float64,0xbfe40b643d6816c8,0xbfe5a947e427f298,1
1349
+ np.float64,0xbfcd85f69b3b0bec,0xbfcdcaa24b75f1a3,1
1350
+ np.float64,0x3fec705fb4f8e0c0,0x3ff1833c82163ee2,1
1351
+ np.float64,0x3fb37650ea26eca0,0x3fb37b20c16fb717,1
1352
+ np.float64,0x3fe5ebfa55ebd7f4,0x3fe826578d716e70,1
1353
+ np.float64,0x3fe991dfe5f323c0,0x3fed9f8a4bf1f588,1
1354
+ np.float64,0xbfd658bd0aacb17a,0xbfd6d3dd06e54900,1
1355
+ np.float64,0xbfc24860252490c0,0xbfc258701a0b9290,1
1356
+ np.float64,0xbfefb8d763ff71af,0xbff705b6ea4a569d,1
1357
+ np.float64,0x3fb8fcb4ae31f970,0x3fb906e809e7899f,1
1358
+ np.float64,0x3fce6343cb3cc688,0x3fceae41d1629625,1
1359
+ np.float64,0xbfd43d5a11a87ab4,0xbfd497da25687e07,1
1360
+ np.float64,0xbfe9568851f2ad11,0xbfed3d9e5fe83a76,1
1361
+ np.float64,0x3fe1b66153e36cc2,0x3fe2c53c7e016271,1
1362
+ np.float64,0x3fef27452bfe4e8a,0x3ff571b3486ed416,1
1363
+ np.float64,0x3fca87c0a7350f80,0x3fcab958a7bb82d4,1
1364
+ np.float64,0xbfd8776a8fb0eed6,0xbfd91afaf2f50edf,1
1365
+ np.float64,0x3fe9522a76f2a454,0x3fed3679264e1525,1
1366
+ np.float64,0x3fea14ff2cf429fe,0x3fee7da6431cc316,1
1367
+ np.float64,0x3fe970618bf2e0c4,0x3fed68154d54dd97,1
1368
+ np.float64,0x3fd3410cfca68218,0x3fd38e9b21792240,1
1369
+ np.float64,0xbf6a8070c0350100,0xbf6a8073c7c34517,1
1370
+ np.float64,0xbfbe449de23c8938,0xbfbe56c8e5e4d98b,1
1371
+ np.float64,0x3fedbc92e27b7926,0x3ff314313216d8e6,1
1372
+ np.float64,0xbfe3be4706677c8e,0xbfe546d3ceb85aea,1
1373
+ np.float64,0x3fe30cd6d76619ae,0x3fe467b6f2664a8d,1
1374
+ np.float64,0x3fd7d69b21afad38,0x3fd86d54284d05ad,1
1375
+ np.float64,0xbfe501001fea0200,0xbfe6e978afcff4d9,1
1376
+ np.float64,0xbfe44ba3d8e89748,0xbfe5fc0a31cd1e3e,1
1377
+ np.float64,0x3fec52f7c078a5f0,0x3ff16367acb209b2,1
1378
+ np.float64,0xbfcb19efcb3633e0,0xbfcb4ed9235a7d47,1
1379
+ np.float64,0xbfab86796c370cf0,0xbfab89df7bf15710,1
1380
+ np.float64,0xbfb962feda32c600,0xbfb96db1e1679c98,1
1381
+ np.float64,0x3fe0dd14e861ba2a,0x3fe1c2fc72810567,1
1382
+ np.float64,0x3fe41bcc6de83798,0x3fe5be59b7f9003b,1
1383
+ np.float64,0x3fc82f4c4f305e98,0x3fc854bd9798939f,1
1384
+ np.float64,0xbfcd143a613a2874,0xbfcd55cbd1619d84,1
1385
+ np.float64,0xbfd52da61baa5b4c,0xbfd595d0b3543439,1
1386
+ np.float64,0xbfb71b4a8e2e3698,0xbfb7235a4ab8432f,1
1387
+ np.float64,0xbfec141a19782834,0xbff120e1e39fc856,1
1388
+ np.float64,0xbfdba9319db75264,0xbfdc9a8ca2578bb2,1
1389
+ np.float64,0xbfbce5d74639cbb0,0xbfbcf5a4878cfa51,1
1390
+ np.float64,0x3fde67f7b3bccff0,0x3fdfaf45a9f843ad,1
1391
+ np.float64,0xbfe12d87bc625b10,0xbfe221fd4476eb71,1
1392
+ np.float64,0x3fe35b8f6be6b71e,0x3fe4ca20f65179e1,1
1393
+ np.float64,0xbfdbada1d3b75b44,0xbfdc9f78b19f93d1,1
1394
+ np.float64,0xbfc60159c52c02b4,0xbfc61d79b879f598,1
1395
+ np.float64,0x3fd6b81c38ad7038,0x3fd739c27bfa16d8,1
1396
+ np.float64,0xbfd646a253ac8d44,0xbfd6c08c19612bbb,1
1397
+ np.float64,0xbfe6babef0ed757e,0xbfe94703d0bfa311,1
1398
+ np.float64,0xbfed5671f1faace4,0xbff28f5a3f3683d0,1
1399
+ np.float64,0x3fc01d1e85203a40,0x3fc02817ec0dfd38,1
1400
+ np.float64,0xbfe9188a61f23115,0xbfecd8eb5da84223,1
1401
+ np.float64,0x3fdca3bab9b94774,0x3fddb1868660c239,1
1402
+ np.float64,0xbfa255750c24aaf0,0xbfa25675f7b36343,1
1403
+ np.float64,0x3fb3602db626c060,0x3fb364ed2d5b2876,1
1404
+ np.float64,0xbfd30a14bda6142a,0xbfd354ff703b8862,1
1405
+ np.float64,0xbfe1cfe381639fc7,0xbfe2e3e720b968c8,1
1406
+ np.float64,0xbfd2af6a4fa55ed4,0xbfd2f61e190bcd1f,1
1407
+ np.float64,0xbfe93c50937278a1,0xbfed12d64bb10d73,1
1408
+ np.float64,0x3fddd8bc44bbb178,0x3fdf0ced7f9005cc,1
1409
+ np.float64,0x3fdb2bc73cb65790,0x3fdc0fc0e18e425e,1
1410
+ np.float64,0xbfd073f6aba0e7ee,0xbfd0a3cb5468a961,1
1411
+ np.float64,0x3fed4bad7b7a975a,0x3ff281ebeb75e414,1
1412
+ np.float64,0xbfdc75b50bb8eb6a,0xbfdd7e1a7631cb22,1
1413
+ np.float64,0x3fd458a90fa8b154,0x3fd4b4a5817248ce,1
1414
+ np.float64,0x3feead5db57d5abc,0x3ff484286fab55ff,1
1415
+ np.float64,0x3fb3894382271280,0x3fb38e217b4e7905,1
1416
+ np.float64,0xffefffffffffffff,0x7ff8000000000000,1
1417
+ np.float64,0xbfe428212ae85042,0xbfe5ce36f226bea8,1
1418
+ np.float64,0xbfc08b39f7211674,0xbfc0971b93ebc7ad,1
1419
+ np.float64,0xbfc2e7cf5525cfa0,0xbfc2f994eb72b623,1
1420
+ np.float64,0xbfdb0d85afb61b0c,0xbfdbee5a2de3c5db,1
1421
+ np.float64,0xfff0000000000000,0x7ff8000000000000,1
1422
+ np.float64,0xbfd0d36af7a1a6d6,0xbfd106a5f05ef6ff,1
1423
+ np.float64,0xbfc333d0912667a0,0xbfc3467162b7289a,1
1424
+ np.float64,0x3fcdababc53b5758,0x3fcdf16458c20fa8,1
1425
+ np.float64,0x3fd0821b38a10438,0x3fd0b26e3e0b9185,1
1426
+ np.float64,0x0,0x0,1
1427
+ np.float64,0x3feb7f70edf6fee2,0x3ff08ae81854bf20,1
1428
+ np.float64,0x3fe6e075716dc0ea,0x3fe97cc5254be6ff,1
1429
+ np.float64,0x3fea13b682f4276e,0x3fee7b6f18073b5b,1