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,0x3e10aca8,0x3e075347,2
3
+ np.float32,0x3f776e66,0x3f2d2003,2
4
+ np.float32,0xbf34e8ce,0xbf9cfd5c,2
5
+ np.float32,0xbf0260ee,0xbf363f69,2
6
+ np.float32,0x3ed285e8,0x3eb05870,2
7
+ np.float32,0x262b88,0x262b88,2
8
+ np.float32,0x3eeffd6c,0x3ec4cfdb,2
9
+ np.float32,0x3ee86808,0x3ebf9f54,2
10
+ np.float32,0x3f36eba8,0x3f0a0524,2
11
+ np.float32,0xbf1c047a,0xbf70afc7,2
12
+ np.float32,0x3ead2916,0x3e952902,2
13
+ np.float32,0x61c9c9,0x61c9c9,2
14
+ np.float32,0xff7fffff,0xffc00000,2
15
+ np.float32,0x7f64ee52,0x42b138e0,2
16
+ np.float32,0x7ed00b1e,0x42afa4ff,2
17
+ np.float32,0x3db53340,0x3dada0b2,2
18
+ np.float32,0x3e6b0a4a,0x3e5397a4,2
19
+ np.float32,0x7ed5d64f,0x42afb310,2
20
+ np.float32,0xbf12bc5f,0xbf59f5ee,2
21
+ np.float32,0xbda12710,0xbda7d8b5,2
22
+ np.float32,0xbe2e89d8,0xbe3f5a9f,2
23
+ np.float32,0x3f5bee75,0x3f1ebea4,2
24
+ np.float32,0x9317a,0x9317a,2
25
+ np.float32,0x7ee00130,0x42afcad8,2
26
+ np.float32,0x7ef0d16d,0x42afefe7,2
27
+ np.float32,0xbec7463a,0xbefc6a44,2
28
+ np.float32,0xbf760ecc,0xc04fe59c,2
29
+ np.float32,0xbecacb3c,0xbf011ae3,2
30
+ np.float32,0x3ead92be,0x3e9577f0,2
31
+ np.float32,0xbf41510d,0xbfb41b3a,2
32
+ np.float32,0x7f71d489,0x42b154f1,2
33
+ np.float32,0x8023bcd5,0x8023bcd5,2
34
+ np.float32,0x801d33d8,0x801d33d8,2
35
+ np.float32,0x3f3f545d,0x3f0ee0d4,2
36
+ np.float32,0xbf700682,0xc0318c25,2
37
+ np.float32,0xbe54e990,0xbe6eb0a3,2
38
+ np.float32,0x7f0289bf,0x42b01941,2
39
+ np.float32,0xbd61ac90,0xbd682113,2
40
+ np.float32,0xbf2ff310,0xbf94cd6f,2
41
+ np.float32,0x7f10064a,0x42b04b98,2
42
+ np.float32,0x804d0d6d,0x804d0d6d,2
43
+ np.float32,0x80317b0a,0x80317b0a,2
44
+ np.float32,0xbddfef18,0xbded2640,2
45
+ np.float32,0x3f00c9ab,0x3ed0a5bd,2
46
+ np.float32,0x7f04b905,0x42b021c1,2
47
+ np.float32,0x7fc00000,0x7fc00000,2
48
+ np.float32,0x6524c4,0x6524c4,2
49
+ np.float32,0x3da08ae0,0x3d9a8f88,2
50
+ np.float32,0x293ea9,0x293ea9,2
51
+ np.float32,0x71499e,0x71499e,2
52
+ np.float32,0xbf14f54d,0xbf5f38a5,2
53
+ np.float32,0x806e60f5,0x806e60f5,2
54
+ np.float32,0x3f5f34bb,0x3f207fff,2
55
+ np.float32,0x80513427,0x80513427,2
56
+ np.float32,0x7f379670,0x42b0c7dc,2
57
+ np.float32,0x3efba888,0x3eccb20b,2
58
+ np.float32,0x3eeadd1b,0x3ec14f4b,2
59
+ np.float32,0x7ec5a27f,0x42af8ab8,2
60
+ np.float32,0x3f2afe4e,0x3f02f7a2,2
61
+ np.float32,0x5591c8,0x5591c8,2
62
+ np.float32,0x3dbb7240,0x3db35bab,2
63
+ np.float32,0x805b911b,0x805b911b,2
64
+ np.float32,0x800000,0x800000,2
65
+ np.float32,0x7e784c04,0x42ae9cab,2
66
+ np.float32,0x7ebaae14,0x42af6d86,2
67
+ np.float32,0xbec84f7a,0xbefe1d42,2
68
+ np.float32,0x7cea8281,0x42aa56bf,2
69
+ np.float32,0xbf542cf6,0xbfe1eb1b,2
70
+ np.float32,0xbf6bfb13,0xc0231a5b,2
71
+ np.float32,0x7d6eeaef,0x42abc32c,2
72
+ np.float32,0xbf062f6b,0xbf3e2000,2
73
+ np.float32,0x8073d8e9,0x8073d8e9,2
74
+ np.float32,0xbea4db14,0xbec6f485,2
75
+ np.float32,0x7d7e8d62,0x42abe3a0,2
76
+ np.float32,0x7e8fc34e,0x42aee7c6,2
77
+ np.float32,0x7dcbb0c3,0x42acd464,2
78
+ np.float32,0x7e123c,0x7e123c,2
79
+ np.float32,0x3d77af62,0x3d707c34,2
80
+ np.float32,0x498cc8,0x498cc8,2
81
+ np.float32,0x7f4e2206,0x42b1032a,2
82
+ np.float32,0x3f734e0a,0x3f2b04a1,2
83
+ np.float32,0x8053a9d0,0x8053a9d0,2
84
+ np.float32,0xbe8a67e0,0xbea15be9,2
85
+ np.float32,0xbf78e0ea,0xc065409e,2
86
+ np.float32,0x352bdd,0x352bdd,2
87
+ np.float32,0x3ee42be7,0x3ebcb38a,2
88
+ np.float32,0x7f482d10,0x42b0f427,2
89
+ np.float32,0xbf23155e,0xbf81b993,2
90
+ np.float32,0x594920,0x594920,2
91
+ np.float32,0x63f53f,0x63f53f,2
92
+ np.float32,0x363592,0x363592,2
93
+ np.float32,0x7dafbb78,0x42ac88cc,2
94
+ np.float32,0x7f69516c,0x42b14298,2
95
+ np.float32,0x3e1d5be2,0x3e126131,2
96
+ np.float32,0x410c23,0x410c23,2
97
+ np.float32,0x7ec9563c,0x42af9439,2
98
+ np.float32,0xbedd3a0e,0xbf10d705,2
99
+ np.float32,0x7f7c4f1f,0x42b16aa8,2
100
+ np.float32,0xbe99b34e,0xbeb6c2d3,2
101
+ np.float32,0x6cdc84,0x6cdc84,2
102
+ np.float32,0x5b3bbe,0x5b3bbe,2
103
+ np.float32,0x252178,0x252178,2
104
+ np.float32,0x7d531865,0x42ab83c8,2
105
+ np.float32,0xbf565b44,0xbfe873bf,2
106
+ np.float32,0x5977ce,0x5977ce,2
107
+ np.float32,0x588a58,0x588a58,2
108
+ np.float32,0x3eae7054,0x3e961d51,2
109
+ np.float32,0x725049,0x725049,2
110
+ np.float32,0x7f2b9386,0x42b0a538,2
111
+ np.float32,0xbe674714,0xbe831245,2
112
+ np.float32,0x8044f0d8,0x8044f0d8,2
113
+ np.float32,0x800a3c21,0x800a3c21,2
114
+ np.float32,0x807b275b,0x807b275b,2
115
+ np.float32,0xbf2463b6,0xbf83896e,2
116
+ np.float32,0x801cca42,0x801cca42,2
117
+ np.float32,0xbf28f2d0,0xbf8a121a,2
118
+ np.float32,0x3f4168c2,0x3f1010ce,2
119
+ np.float32,0x6f91a1,0x6f91a1,2
120
+ np.float32,0xbf2b9eeb,0xbf8e0fc5,2
121
+ np.float32,0xbea4c858,0xbec6d8e4,2
122
+ np.float32,0xbf7abba0,0xc0788e88,2
123
+ np.float32,0x802f18f7,0x802f18f7,2
124
+ np.float32,0xbf7f6c75,0xc0c3145c,2
125
+ np.float32,0xbe988210,0xbeb50f5e,2
126
+ np.float32,0xbf219b7e,0xbf7f6a3b,2
127
+ np.float32,0x7f800000,0x7f800000,2
128
+ np.float32,0x7f7fffff,0x42b17218,2
129
+ np.float32,0xbdca8d90,0xbdd5487e,2
130
+ np.float32,0xbef683b0,0xbf2821b0,2
131
+ np.float32,0x8043e648,0x8043e648,2
132
+ np.float32,0xbf4319a4,0xbfb7cd1b,2
133
+ np.float32,0x62c2b2,0x62c2b2,2
134
+ np.float32,0xbf479ccd,0xbfc1a7b1,2
135
+ np.float32,0x806c8a32,0x806c8a32,2
136
+ np.float32,0x7f004447,0x42b01045,2
137
+ np.float32,0x3f737d36,0x3f2b1ccf,2
138
+ np.float32,0x3ee71f24,0x3ebebced,2
139
+ np.float32,0x3ea0b6b4,0x3e8bc606,2
140
+ np.float32,0x358fd7,0x358fd7,2
141
+ np.float32,0xbe69780c,0xbe847d17,2
142
+ np.float32,0x7f6bed18,0x42b14849,2
143
+ np.float32,0xbf6a5113,0xc01dfe1d,2
144
+ np.float32,0xbf255693,0xbf84de88,2
145
+ np.float32,0x7f34acac,0x42b0bfac,2
146
+ np.float32,0xbe8a3b6a,0xbea11efe,2
147
+ np.float32,0x3f470d84,0x3f1342ab,2
148
+ np.float32,0xbf2cbde3,0xbf8fc602,2
149
+ np.float32,0x47c103,0x47c103,2
150
+ np.float32,0xe3c94,0xe3c94,2
151
+ np.float32,0xbec07afa,0xbef1693a,2
152
+ np.float32,0x6a9cfe,0x6a9cfe,2
153
+ np.float32,0xbe4339e0,0xbe5899da,2
154
+ np.float32,0x7ea9bf1e,0x42af3cd6,2
155
+ np.float32,0x3f6378b4,0x3f22c4c4,2
156
+ np.float32,0xbd989ff0,0xbd9e9c77,2
157
+ np.float32,0xbe6f2f50,0xbe88343d,2
158
+ np.float32,0x3f7f2ac5,0x3f310764,2
159
+ np.float32,0x3f256704,0x3eff2fb2,2
160
+ np.float32,0x80786aca,0x80786aca,2
161
+ np.float32,0x65d02f,0x65d02f,2
162
+ np.float32,0x50d1c3,0x50d1c3,2
163
+ np.float32,0x3f4a9d76,0x3f1541b4,2
164
+ np.float32,0x802cf491,0x802cf491,2
165
+ np.float32,0x3e935cec,0x3e81829b,2
166
+ np.float32,0x3e2ad478,0x3e1dfd81,2
167
+ np.float32,0xbf107cbd,0xbf54bef2,2
168
+ np.float32,0xbf58c02e,0xbff007fe,2
169
+ np.float32,0x80090808,0x80090808,2
170
+ np.float32,0x805d1f66,0x805d1f66,2
171
+ np.float32,0x6aec95,0x6aec95,2
172
+ np.float32,0xbee3fc6e,0xbf16dc73,2
173
+ np.float32,0x7f63314b,0x42b134f9,2
174
+ np.float32,0x550443,0x550443,2
175
+ np.float32,0xbefa8174,0xbf2c026e,2
176
+ np.float32,0x3f7fb380,0x3f314bd5,2
177
+ np.float32,0x80171f2c,0x80171f2c,2
178
+ np.float32,0x3f2f56ae,0x3f058f2d,2
179
+ np.float32,0x3eacaecb,0x3e94cd97,2
180
+ np.float32,0xbe0c4f0c,0xbe16e69d,2
181
+ np.float32,0x3f48e4cb,0x3f144b42,2
182
+ np.float32,0x7f03efe2,0x42b01eb7,2
183
+ np.float32,0xbf1019ac,0xbf53dbe9,2
184
+ np.float32,0x3e958524,0x3e832eb5,2
185
+ np.float32,0xbf1b23c6,0xbf6e72f2,2
186
+ np.float32,0x12c554,0x12c554,2
187
+ np.float32,0x7dee588c,0x42ad24d6,2
188
+ np.float32,0xbe8c216c,0xbea3ba70,2
189
+ np.float32,0x804553cb,0x804553cb,2
190
+ np.float32,0xbe446324,0xbe5a0966,2
191
+ np.float32,0xbef7150a,0xbf28adff,2
192
+ np.float32,0xbf087282,0xbf42ec6e,2
193
+ np.float32,0x3eeef15c,0x3ec41937,2
194
+ np.float32,0x61bbd2,0x61bbd2,2
195
+ np.float32,0x3e51b28d,0x3e3ec538,2
196
+ np.float32,0x57e869,0x57e869,2
197
+ np.float32,0x7e5e7711,0x42ae646c,2
198
+ np.float32,0x8050b173,0x8050b173,2
199
+ np.float32,0xbf63c90c,0xc00d2438,2
200
+ np.float32,0xbeba774c,0xbee7dcf8,2
201
+ np.float32,0x8016faac,0x8016faac,2
202
+ np.float32,0xbe8b448c,0xbea28aaf,2
203
+ np.float32,0x3e8cd448,0x3e78d29e,2
204
+ np.float32,0x80484e02,0x80484e02,2
205
+ np.float32,0x3f63ba68,0x3f22e78c,2
206
+ np.float32,0x2e87bb,0x2e87bb,2
207
+ np.float32,0x230496,0x230496,2
208
+ np.float32,0x1327b2,0x1327b2,2
209
+ np.float32,0xbf046c56,0xbf3a72d2,2
210
+ np.float32,0x3ecefe60,0x3eadd69a,2
211
+ np.float32,0x49c56e,0x49c56e,2
212
+ np.float32,0x3df22d60,0x3de4e550,2
213
+ np.float32,0x3f67c19d,0x3f250707,2
214
+ np.float32,0x3f20eb9c,0x3ef9b624,2
215
+ np.float32,0x3f05ca75,0x3ed742fa,2
216
+ np.float32,0xbe8514f8,0xbe9a1d45,2
217
+ np.float32,0x8070a003,0x8070a003,2
218
+ np.float32,0x7e49650e,0x42ae317a,2
219
+ np.float32,0x3de16ce9,0x3dd5dc3e,2
220
+ np.float32,0xbf4ae952,0xbfc95f1f,2
221
+ np.float32,0xbe44dd84,0xbe5aa0db,2
222
+ np.float32,0x803c3bc0,0x803c3bc0,2
223
+ np.float32,0x3eebb9e8,0x3ec1e692,2
224
+ np.float32,0x80588275,0x80588275,2
225
+ np.float32,0xbea1e69a,0xbec29d86,2
226
+ np.float32,0x3f7b4bf8,0x3f2f154c,2
227
+ np.float32,0x7eb47ecc,0x42af5c46,2
228
+ np.float32,0x3d441e00,0x3d3f911a,2
229
+ np.float32,0x7f54d40e,0x42b11388,2
230
+ np.float32,0xbf47f17e,0xbfc26882,2
231
+ np.float32,0x3ea7da57,0x3e912db4,2
232
+ np.float32,0x3f59cc7b,0x3f1d984e,2
233
+ np.float32,0x570e08,0x570e08,2
234
+ np.float32,0x3e99560c,0x3e8620a2,2
235
+ np.float32,0x3ecfbd14,0x3eae5e55,2
236
+ np.float32,0x7e86be08,0x42aec698,2
237
+ np.float32,0x3f10f28a,0x3ee5b5d3,2
238
+ np.float32,0x7f228722,0x42b0897a,2
239
+ np.float32,0x3f4b979b,0x3f15cd30,2
240
+ np.float32,0xbf134283,0xbf5b30f9,2
241
+ np.float32,0x3f2ae16a,0x3f02e64f,2
242
+ np.float32,0x3e98e158,0x3e85c6cc,2
243
+ np.float32,0x7ec39f27,0x42af857a,2
244
+ np.float32,0x3effedb0,0x3ecf8cea,2
245
+ np.float32,0xbd545620,0xbd5a09c1,2
246
+ np.float32,0x503a28,0x503a28,2
247
+ np.float32,0x3f712744,0x3f29e9a1,2
248
+ np.float32,0x3edc6194,0x3eb748b1,2
249
+ np.float32,0xbf4ec1e5,0xbfd2ff5f,2
250
+ np.float32,0x3f46669e,0x3f12e4b5,2
251
+ np.float32,0xabad3,0xabad3,2
252
+ np.float32,0x80000000,0x80000000,2
253
+ np.float32,0x803f2e6d,0x803f2e6d,2
254
+ np.float32,0xbf431542,0xbfb7c3e6,2
255
+ np.float32,0x3f6f2d53,0x3f28e496,2
256
+ np.float32,0x546bd8,0x546bd8,2
257
+ np.float32,0x25c80a,0x25c80a,2
258
+ np.float32,0x3e50883c,0x3e3dcd7e,2
259
+ np.float32,0xbf5fa2ba,0xc0045c14,2
260
+ np.float32,0x80271c07,0x80271c07,2
261
+ np.float32,0x8043755d,0x8043755d,2
262
+ np.float32,0xbf3c5cea,0xbfaa5ee9,2
263
+ np.float32,0x3f2fea38,0x3f05e6af,2
264
+ np.float32,0x6da3dc,0x6da3dc,2
265
+ np.float32,0xbf095945,0xbf44dc70,2
266
+ np.float32,0xbe33d584,0xbe45c1f5,2
267
+ np.float32,0x7eb41b2e,0x42af5b2b,2
268
+ np.float32,0xbf0feb74,0xbf537242,2
269
+ np.float32,0xbe96225a,0xbeb1b0b1,2
270
+ np.float32,0x3f63b95f,0x3f22e700,2
271
+ np.float32,0x0,0x0,2
272
+ np.float32,0x3e20b0cc,0x3e154374,2
273
+ np.float32,0xbf79880c,0xc06b6801,2
274
+ np.float32,0xbea690b6,0xbec97b93,2
275
+ np.float32,0xbf3e11ca,0xbfada449,2
276
+ np.float32,0x7e7e6292,0x42aea912,2
277
+ np.float32,0x3e793350,0x3e5f0b7b,2
278
+ np.float32,0x802e7183,0x802e7183,2
279
+ np.float32,0x3f1b3695,0x3ef2a788,2
280
+ np.float32,0x801efa20,0x801efa20,2
281
+ np.float32,0x3f1ec43a,0x3ef70f42,2
282
+ np.float32,0xbf12c5ed,0xbf5a0c52,2
283
+ np.float32,0x8005e99c,0x8005e99c,2
284
+ np.float32,0xbf79f5e7,0xc06fcca5,2
285
+ np.float32,0x3ecbaf50,0x3eab7a03,2
286
+ np.float32,0x46b0fd,0x46b0fd,2
287
+ np.float32,0x3edb9023,0x3eb6b631,2
288
+ np.float32,0x7f24bc41,0x42b09063,2
289
+ np.float32,0xbd8d9328,0xbd92b4c6,2
290
+ np.float32,0x3f2c5d7f,0x3f03c9d9,2
291
+ np.float32,0x807bebc9,0x807bebc9,2
292
+ np.float32,0x7f797a99,0x42b164e2,2
293
+ np.float32,0x756e3c,0x756e3c,2
294
+ np.float32,0x80416f8a,0x80416f8a,2
295
+ np.float32,0x3e0d512a,0x3e04611a,2
296
+ np.float32,0x3f7be3e6,0x3f2f61ec,2
297
+ np.float32,0x80075c41,0x80075c41,2
298
+ np.float32,0xbe850294,0xbe9a046c,2
299
+ np.float32,0x684679,0x684679,2
300
+ np.float32,0x3eb393c4,0x3e99eed2,2
301
+ np.float32,0x3f4177c6,0x3f10195b,2
302
+ np.float32,0x3dd1f402,0x3dc7dfe5,2
303
+ np.float32,0x3ef484d4,0x3ec7e2e1,2
304
+ np.float32,0x53eb8f,0x53eb8f,2
305
+ np.float32,0x7f072cb6,0x42b02b20,2
306
+ np.float32,0xbf1b6b55,0xbf6f28d4,2
307
+ np.float32,0xbd8a98d8,0xbd8f827d,2
308
+ np.float32,0x3eafb418,0x3e970e96,2
309
+ np.float32,0x6555af,0x6555af,2
310
+ np.float32,0x7dd5118e,0x42aceb6f,2
311
+ np.float32,0x800a13f7,0x800a13f7,2
312
+ np.float32,0x331a9d,0x331a9d,2
313
+ np.float32,0x8063773f,0x8063773f,2
314
+ np.float32,0x3e95e068,0x3e837553,2
315
+ np.float32,0x80654b32,0x80654b32,2
316
+ np.float32,0x3dabe0e0,0x3da50bb3,2
317
+ np.float32,0xbf6283c3,0xc00a5280,2
318
+ np.float32,0x80751cc5,0x80751cc5,2
319
+ np.float32,0x3f668eb6,0x3f2465c0,2
320
+ np.float32,0x3e13c058,0x3e0a048c,2
321
+ np.float32,0x77780c,0x77780c,2
322
+ np.float32,0x3f7d6e48,0x3f302868,2
323
+ np.float32,0x7e31f9e3,0x42adf22f,2
324
+ np.float32,0x246c7b,0x246c7b,2
325
+ np.float32,0xbe915bf0,0xbeaafa6c,2
326
+ np.float32,0xbf800000,0xff800000,2
327
+ np.float32,0x3f698f42,0x3f25f8e0,2
328
+ np.float32,0x7e698885,0x42ae7d48,2
329
+ np.float32,0x3f5bbd42,0x3f1ea42c,2
330
+ np.float32,0x5b8444,0x5b8444,2
331
+ np.float32,0xbf6065f6,0xc005e2c6,2
332
+ np.float32,0xbeb95036,0xbee60dad,2
333
+ np.float32,0xbf44f846,0xbfbbcade,2
334
+ np.float32,0xc96e5,0xc96e5,2
335
+ np.float32,0xbf213e90,0xbf7e6eae,2
336
+ np.float32,0xbeb309cc,0xbedc4fe6,2
337
+ np.float32,0xbe781cf4,0xbe8e0fe6,2
338
+ np.float32,0x7f0cf0db,0x42b04083,2
339
+ np.float32,0xbf7b6143,0xc08078f9,2
340
+ np.float32,0x80526fc6,0x80526fc6,2
341
+ np.float32,0x3f092bf3,0x3edbaeec,2
342
+ np.float32,0x3ecdf154,0x3ead16df,2
343
+ np.float32,0x2fe85b,0x2fe85b,2
344
+ np.float32,0xbf5100a0,0xbfd8f871,2
345
+ np.float32,0xbec09d40,0xbef1a028,2
346
+ np.float32,0x5e6a85,0x5e6a85,2
347
+ np.float32,0xbec0e2a0,0xbef20f6b,2
348
+ np.float32,0x3f72e788,0x3f2ad00d,2
349
+ np.float32,0x880a6,0x880a6,2
350
+ np.float32,0x3d9e90bf,0x3d98b9fc,2
351
+ np.float32,0x15cf25,0x15cf25,2
352
+ np.float32,0x10171b,0x10171b,2
353
+ np.float32,0x805cf1aa,0x805cf1aa,2
354
+ np.float32,0x3f19bd36,0x3ef0d0d2,2
355
+ np.float32,0x3ebe2bda,0x3ea1b774,2
356
+ np.float32,0xbecd8192,0xbf035c49,2
357
+ np.float32,0x3e2ce508,0x3e1fc21b,2
358
+ np.float32,0x290f,0x290f,2
359
+ np.float32,0x803b679f,0x803b679f,2
360
+ np.float32,0x1,0x1,2
361
+ np.float32,0x807a9c76,0x807a9c76,2
362
+ np.float32,0xbf65fced,0xc01257f8,2
363
+ np.float32,0x3f783414,0x3f2d8475,2
364
+ np.float32,0x3f2d9d92,0x3f0488da,2
365
+ np.float32,0xbddb5798,0xbde80018,2
366
+ np.float32,0x3e91afb8,0x3e8034e7,2
367
+ np.float32,0xbf1b775a,0xbf6f476d,2
368
+ np.float32,0xbf73a32c,0xc041f3ba,2
369
+ np.float32,0xbea39364,0xbec5121b,2
370
+ np.float32,0x80375b94,0x80375b94,2
371
+ np.float32,0x3f331252,0x3f07c3e9,2
372
+ np.float32,0xbf285774,0xbf892e74,2
373
+ np.float32,0x3e699bb8,0x3e526d55,2
374
+ np.float32,0x3f08208a,0x3eda523a,2
375
+ np.float32,0xbf42fb4a,0xbfb78d60,2
376
+ np.float32,0x8029c894,0x8029c894,2
377
+ np.float32,0x3e926c0c,0x3e80c76e,2
378
+ np.float32,0x801e4715,0x801e4715,2
379
+ np.float32,0x3e4b36d8,0x3e395ffd,2
380
+ np.float32,0x8041556b,0x8041556b,2
381
+ np.float32,0xbf2d99ba,0xbf9119bd,2
382
+ np.float32,0x3ed83ea8,0x3eb46250,2
383
+ np.float32,0xbe94a280,0xbeaf92b4,2
384
+ np.float32,0x7f4c7a64,0x42b0ff0a,2
385
+ np.float32,0x806d4022,0x806d4022,2
386
+ np.float32,0xbed382f8,0xbf086d26,2
387
+ np.float32,0x1846fe,0x1846fe,2
388
+ np.float32,0xbe702558,0xbe88d4d8,2
389
+ np.float32,0xbe650ee0,0xbe81a3cc,2
390
+ np.float32,0x3ee9d088,0x3ec0970c,2
391
+ np.float32,0x7f6d4498,0x42b14b30,2
392
+ np.float32,0xbef9f9e6,0xbf2b7ddb,2
393
+ np.float32,0xbf70c384,0xc0349370,2
394
+ np.float32,0xbeff9e9e,0xbf3110c8,2
395
+ np.float32,0xbef06372,0xbf224aa9,2
396
+ np.float32,0xbf15a692,0xbf60e1fa,2
397
+ np.float32,0x8058c117,0x8058c117,2
398
+ np.float32,0xbd9f74b8,0xbda6017b,2
399
+ np.float32,0x801bf130,0x801bf130,2
400
+ np.float32,0x805da84c,0x805da84c,2
401
+ np.float32,0xff800000,0xffc00000,2
402
+ np.float32,0xbeb01de2,0xbed7d6d6,2
403
+ np.float32,0x8077de08,0x8077de08,2
404
+ np.float32,0x3e327668,0x3e2482c1,2
405
+ np.float32,0xbe7add88,0xbe8fe1ab,2
406
+ np.float32,0x805a3c2e,0x805a3c2e,2
407
+ np.float32,0x80326a73,0x80326a73,2
408
+ np.float32,0x800b8a34,0x800b8a34,2
409
+ np.float32,0x8048c83a,0x8048c83a,2
410
+ np.float32,0xbf3799d6,0xbfa1a975,2
411
+ np.float32,0x807649c7,0x807649c7,2
412
+ np.float32,0x3dfdbf90,0x3def3798,2
413
+ np.float32,0xbf1b538a,0xbf6eec4c,2
414
+ np.float32,0xbf1e5989,0xbf76baa0,2
415
+ np.float32,0xc7a80,0xc7a80,2
416
+ np.float32,0x8001be54,0x8001be54,2
417
+ np.float32,0x3f435bbc,0x3f112c6d,2
418
+ np.float32,0xbeabcff8,0xbed151d1,2
419
+ np.float32,0x7de20c78,0x42ad09b7,2
420
+ np.float32,0x3f0e6d2e,0x3ee27b1e,2
421
+ np.float32,0xbf0cb352,0xbf4c3267,2
422
+ np.float32,0x7f6ec06f,0x42b14e61,2
423
+ np.float32,0x7f6fa8ef,0x42b15053,2
424
+ np.float32,0xbf3d2a6a,0xbfabe623,2
425
+ np.float32,0x7f077a4c,0x42b02c46,2
426
+ np.float32,0xbf2a68dc,0xbf8c3cc4,2
427
+ np.float32,0x802a5dbe,0x802a5dbe,2
428
+ np.float32,0x807f631c,0x807f631c,2
429
+ np.float32,0x3dc9b8,0x3dc9b8,2
430
+ np.float32,0x3ebdc1b7,0x3ea16a0a,2
431
+ np.float32,0x7ef29dab,0x42aff3b5,2
432
+ np.float32,0x3e8ab1cc,0x3e757806,2
433
+ np.float32,0x3f27e88e,0x3f011c6d,2
434
+ np.float32,0x3cfd1455,0x3cf93fb5,2
435
+ np.float32,0x7f7eebf5,0x42b16fef,2
436
+ np.float32,0x3c9b2140,0x3c99ade9,2
437
+ np.float32,0x7e928601,0x42aef183,2
438
+ np.float32,0xbd7d2db0,0xbd82abae,2
439
+ np.float32,0x3e6f0df3,0x3e56da20,2
440
+ np.float32,0x7d36a2fc,0x42ab39a3,2
441
+ np.float32,0xbf49d3a2,0xbfc6c859,2
442
+ np.float32,0x7ee541d3,0x42afd6b6,2
443
+ np.float32,0x80753dc0,0x80753dc0,2
444
+ np.float32,0x3f4ce486,0x3f16865d,2
445
+ np.float32,0x39e701,0x39e701,2
446
+ np.float32,0x3f3d9ede,0x3f0de5fa,2
447
+ np.float32,0x7fafb2,0x7fafb2,2
448
+ np.float32,0x3e013fdc,0x3df37090,2
449
+ np.float32,0x807b6a2c,0x807b6a2c,2
450
+ np.float32,0xbe86800a,0xbe9c08c7,2
451
+ np.float32,0x7f40f080,0x42b0e14d,2
452
+ np.float32,0x7eef5afe,0x42afecc8,2
453
+ np.float32,0x7ec30052,0x42af83da,2
454
+ np.float32,0x3eacf768,0x3e9503e1,2
455
+ np.float32,0x7f13ef0e,0x42b0594e,2
456
+ np.float32,0x80419f4a,0x80419f4a,2
457
+ np.float32,0xbf485932,0xbfc3562a,2
458
+ np.float32,0xbe8a24d6,0xbea10011,2
459
+ np.float32,0xbda791c0,0xbdaed2bc,2
460
+ np.float32,0x3e9b5169,0x3e87a67d,2
461
+ np.float32,0x807dd882,0x807dd882,2
462
+ np.float32,0x7f40170e,0x42b0df0a,2
463
+ np.float32,0x7f02f7f9,0x42b01af1,2
464
+ np.float32,0x3ea38bf9,0x3e8decde,2
465
+ np.float32,0x3e2e7ce8,0x3e211ed4,2
466
+ np.float32,0x70a7a6,0x70a7a6,2
467
+ np.float32,0x7d978592,0x42ac3ce7,2
468
+ np.float32,0x804d12d0,0x804d12d0,2
469
+ np.float32,0x80165dc8,0x80165dc8,2
470
+ np.float32,0x80000001,0x80000001,2
471
+ np.float32,0x3e325da0,0x3e246da6,2
472
+ np.float32,0xbe063bb8,0xbe0fe281,2
473
+ np.float32,0x160b8,0x160b8,2
474
+ np.float32,0xbe5687a4,0xbe70bbef,2
475
+ np.float32,0x7f11ab34,0x42b05168,2
476
+ np.float32,0xc955c,0xc955c,2
477
+ np.float32,0xbea0003a,0xbebfd826,2
478
+ np.float32,0x3f7fbdd9,0x3f315102,2
479
+ np.float32,0xbe61aefc,0xbe7ef121,2
480
+ np.float32,0xbf1b9873,0xbf6f9bc3,2
481
+ np.float32,0x3a6d14,0x3a6d14,2
482
+ np.float32,0xbf1ad3b4,0xbf6da808,2
483
+ np.float32,0x3ed2dd24,0x3eb0963d,2
484
+ np.float32,0xbe81a4ca,0xbe957d52,2
485
+ np.float32,0x7f1be3e9,0x42b07421,2
486
+ np.float32,0x7f5ce943,0x42b1269e,2
487
+ np.float32,0x7eebcbdf,0x42afe51d,2
488
+ np.float32,0x807181b5,0x807181b5,2
489
+ np.float32,0xbecb03ba,0xbf0149ad,2
490
+ np.float32,0x42edb8,0x42edb8,2
491
+ np.float32,0xbf3aeec8,0xbfa7b13f,2
492
+ np.float32,0xbd0c4f00,0xbd0ec4a0,2
493
+ np.float32,0x3e48d260,0x3e376070,2
494
+ np.float32,0x1a9731,0x1a9731,2
495
+ np.float32,0x7f323be4,0x42b0b8b5,2
496
+ np.float32,0x1a327f,0x1a327f,2
497
+ np.float32,0x17f1fc,0x17f1fc,2
498
+ np.float32,0xbf2f4f9b,0xbf93c91a,2
499
+ np.float32,0x3ede8934,0x3eb8c9c3,2
500
+ np.float32,0xbf56aaac,0xbfe968bb,2
501
+ np.float32,0x3e22cb5a,0x3e17148c,2
502
+ np.float32,0x7d9def,0x7d9def,2
503
+ np.float32,0x8045b963,0x8045b963,2
504
+ np.float32,0x77404f,0x77404f,2
505
+ np.float32,0x7e2c9efb,0x42ade28b,2
506
+ np.float32,0x8058ad89,0x8058ad89,2
507
+ np.float32,0x7f4139,0x7f4139,2
508
+ np.float32,0x8020e12a,0x8020e12a,2
509
+ np.float32,0x800c9daa,0x800c9daa,2
510
+ np.float32,0x7f2c5ac5,0x42b0a789,2
511
+ np.float32,0x3f04a47b,0x3ed5c043,2
512
+ np.float32,0x804692d5,0x804692d5,2
513
+ np.float32,0xbf6e7fa4,0xc02bb493,2
514
+ np.float32,0x80330756,0x80330756,2
515
+ np.float32,0x7f3e29ad,0x42b0d9e1,2
516
+ np.float32,0xbebf689a,0xbeefb24d,2
517
+ np.float32,0x3f29a86c,0x3f022a56,2
518
+ np.float32,0x3e3bd1c0,0x3e2c72b3,2
519
+ np.float32,0x3f78f2e8,0x3f2de546,2
520
+ np.float32,0x3f3709be,0x3f0a16af,2
521
+ np.float32,0x3e11f150,0x3e086f97,2
522
+ np.float32,0xbf5867ad,0xbfeee8a0,2
523
+ np.float32,0xbebfb328,0xbef0296c,2
524
+ np.float32,0x2f7f15,0x2f7f15,2
525
+ np.float32,0x805cfe84,0x805cfe84,2
526
+ np.float32,0xbf504e01,0xbfd71589,2
527
+ np.float32,0x3ee0903c,0x3eba330c,2
528
+ np.float32,0xbd838990,0xbd87f399,2
529
+ np.float32,0x3f14444e,0x3ee9ee7d,2
530
+ np.float32,0x7e352583,0x42adfb3a,2
531
+ np.float32,0x7e76f824,0x42ae99ec,2
532
+ np.float32,0x3f772d00,0x3f2cfebf,2
533
+ np.float32,0x801f7763,0x801f7763,2
534
+ np.float32,0x3f760bf5,0x3f2c6b87,2
535
+ np.float32,0xbf0bb696,0xbf4a03a5,2
536
+ np.float32,0x3f175d2c,0x3eedd6d2,2
537
+ np.float32,0xbf5723f8,0xbfeae288,2
538
+ np.float32,0x24de0a,0x24de0a,2
539
+ np.float32,0x3cd73f80,0x3cd47801,2
540
+ np.float32,0x7f013305,0x42b013fa,2
541
+ np.float32,0x3e3ad425,0x3e2b9c50,2
542
+ np.float32,0x7d3d16,0x7d3d16,2
543
+ np.float32,0x3ef49738,0x3ec7ef54,2
544
+ np.float32,0x3f5b8612,0x3f1e8678,2
545
+ np.float32,0x7f0eeb5c,0x42b047a7,2
546
+ np.float32,0x7e9d7cb0,0x42af1675,2
547
+ np.float32,0xbdd1cfb0,0xbddd5aa0,2
548
+ np.float32,0xbf645dba,0xc00e78fe,2
549
+ np.float32,0x3f511174,0x3f18d56c,2
550
+ np.float32,0x3d91ad00,0x3d8cba62,2
551
+ np.float32,0x805298da,0x805298da,2
552
+ np.float32,0xbedb6af4,0xbf0f4090,2
553
+ np.float32,0x3d23b1ba,0x3d208205,2
554
+ np.float32,0xbea5783e,0xbec7dc87,2
555
+ np.float32,0x79d191,0x79d191,2
556
+ np.float32,0x3e894413,0x3e7337da,2
557
+ np.float32,0x80800000,0x80800000,2
558
+ np.float32,0xbf34a8d3,0xbf9c907b,2
559
+ np.float32,0x3bae779a,0x3bae011f,2
560
+ np.float32,0x8049284d,0x8049284d,2
561
+ np.float32,0x3eb42cc4,0x3e9a600b,2
562
+ np.float32,0x3da1e2d0,0x3d9bce5f,2
563
+ np.float32,0x3f364b8a,0x3f09a7af,2
564
+ np.float32,0x3d930b10,0x3d8e0118,2
565
+ np.float32,0x8061f8d7,0x8061f8d7,2
566
+ np.float32,0x3f473213,0x3f13573b,2
567
+ np.float32,0x3f1e2a38,0x3ef65102,2
568
+ np.float32,0x8068f7d9,0x8068f7d9,2
569
+ np.float32,0x3f181ef8,0x3eeeca2c,2
570
+ np.float32,0x3eeb6168,0x3ec1a9f5,2
571
+ np.float32,0xc2db6,0xc2db6,2
572
+ np.float32,0x3ef7b578,0x3eca0a69,2
573
+ np.float32,0xbf5b5a84,0xbff8d075,2
574
+ np.float32,0x7f479d5f,0x42b0f2b7,2
575
+ np.float32,0x3e6f3c24,0x3e56ff92,2
576
+ np.float32,0x3f45543a,0x3f1249f0,2
577
+ np.float32,0xbea7c1fa,0xbecb40d2,2
578
+ np.float32,0x7de082,0x7de082,2
579
+ np.float32,0x383729,0x383729,2
580
+ np.float32,0xbd91cb90,0xbd973eb3,2
581
+ np.float32,0x7f320218,0x42b0b80f,2
582
+ np.float32,0x5547f2,0x5547f2,2
583
+ np.float32,0x291fe4,0x291fe4,2
584
+ np.float32,0xbe078ba0,0xbe11655f,2
585
+ np.float32,0x7e0c0658,0x42ad7764,2
586
+ np.float32,0x7e129a2b,0x42ad8ee5,2
587
+ np.float32,0x3f7c96d4,0x3f2fbc0c,2
588
+ np.float32,0x3f800000,0x3f317218,2
589
+ np.float32,0x7f131754,0x42b05662,2
590
+ np.float32,0x15f833,0x15f833,2
591
+ np.float32,0x80392ced,0x80392ced,2
592
+ np.float32,0x3f7c141a,0x3f2f7a36,2
593
+ np.float32,0xbf71c03f,0xc038dcfd,2
594
+ np.float32,0xbe14fb2c,0xbe20fff3,2
595
+ np.float32,0xbee0bac6,0xbf13f14c,2
596
+ np.float32,0x801a32dd,0x801a32dd,2
597
+ np.float32,0x8e12d,0x8e12d,2
598
+ np.float32,0x3f48c606,0x3f143a04,2
599
+ np.float32,0x7f418af5,0x42b0e2e6,2
600
+ np.float32,0x3f1f2918,0x3ef78bb7,2
601
+ np.float32,0x11141b,0x11141b,2
602
+ np.float32,0x3e9fc9e8,0x3e8b11ad,2
603
+ np.float32,0xbea5447a,0xbec79010,2
604
+ np.float32,0xbe31d904,0xbe4359db,2
605
+ np.float32,0x80184667,0x80184667,2
606
+ np.float32,0xbf00503c,0xbf3212c2,2
607
+ np.float32,0x3e0328cf,0x3df6d425,2
608
+ np.float32,0x7ee8e1b7,0x42afdebe,2
609
+ np.float32,0xbef95e24,0xbf2ae5db,2
610
+ np.float32,0x7f3e4eed,0x42b0da45,2
611
+ np.float32,0x3f43ee85,0x3f117fa0,2
612
+ np.float32,0xbcfa2ac0,0xbcfe10fe,2
613
+ np.float32,0x80162774,0x80162774,2
614
+ np.float32,0x372e8b,0x372e8b,2
615
+ np.float32,0x3f263802,0x3f0016b0,2
616
+ np.float32,0x8008725f,0x8008725f,2
617
+ np.float32,0x800beb40,0x800beb40,2
618
+ np.float32,0xbe93308e,0xbead8a77,2
619
+ np.float32,0x3d8a4240,0x3d85cab8,2
620
+ np.float32,0x80179de0,0x80179de0,2
621
+ np.float32,0x7f4a98f2,0x42b0fa4f,2
622
+ np.float32,0x3f0d214e,0x3ee0cff1,2
623
+ np.float32,0x80536c2c,0x80536c2c,2
624
+ np.float32,0x7e7038ed,0x42ae8bbe,2
625
+ np.float32,0x7f345af9,0x42b0bec4,2
626
+ np.float32,0xbf243219,0xbf83442f,2
627
+ np.float32,0x7e0d5555,0x42ad7c27,2
628
+ np.float32,0x762e95,0x762e95,2
629
+ np.float32,0x7ebf4548,0x42af79f6,2
630
+ np.float32,0x8079639e,0x8079639e,2
631
+ np.float32,0x3ef925c0,0x3ecb0260,2
632
+ np.float32,0x3f708695,0x3f2996d6,2
633
+ np.float32,0xfca9f,0xfca9f,2
634
+ np.float32,0x8060dbf4,0x8060dbf4,2
635
+ np.float32,0x4c8840,0x4c8840,2
636
+ np.float32,0xbea922ee,0xbecd4ed5,2
637
+ np.float32,0xbf4f28a9,0xbfd40b98,2
638
+ np.float32,0xbe25ad48,0xbe34ba1b,2
639
+ np.float32,0x3f2fb254,0x3f05c58c,2
640
+ np.float32,0x3f73bcc2,0x3f2b3d5f,2
641
+ np.float32,0xbf479a07,0xbfc1a165,2
642
+ np.float32,0xbeb9a808,0xbee69763,2
643
+ np.float32,0x7eb16a65,0x42af5376,2
644
+ np.float32,0xbeb3e442,0xbedda042,2
645
+ np.float32,0x3d8f439c,0x3d8a79ac,2
646
+ np.float32,0x80347516,0x80347516,2
647
+ np.float32,0x3e8a0c5d,0x3e74738c,2
648
+ np.float32,0xbf0383a4,0xbf389289,2
649
+ np.float32,0x806be8f5,0x806be8f5,2
650
+ np.float32,0x8023f0c5,0x8023f0c5,2
651
+ np.float32,0x2060e9,0x2060e9,2
652
+ np.float32,0xbf759eba,0xc04d239f,2
653
+ np.float32,0x3d84cc5a,0x3d80ab96,2
654
+ np.float32,0xbf57746b,0xbfebdf87,2
655
+ np.float32,0x3e418417,0x3e31401f,2
656
+ np.float32,0xaecce,0xaecce,2
657
+ np.float32,0x3cd1766f,0x3cced45c,2
658
+ np.float32,0x53724a,0x53724a,2
659
+ np.float32,0x3f773710,0x3f2d03de,2
660
+ np.float32,0x8013d040,0x8013d040,2
661
+ np.float32,0x4d0eb2,0x4d0eb2,2
662
+ np.float32,0x8014364a,0x8014364a,2
663
+ np.float32,0x7f3c56c9,0x42b0d4f2,2
664
+ np.float32,0x3eee1e1c,0x3ec3891a,2
665
+ np.float32,0xbdda3eb8,0xbde6c5a0,2
666
+ np.float32,0x26ef4a,0x26ef4a,2
667
+ np.float32,0x7ed3370c,0x42afacbf,2
668
+ np.float32,0xbf06e31b,0xbf3f9ab7,2
669
+ np.float32,0xbe3185f0,0xbe42f556,2
670
+ np.float32,0x3dcf9abe,0x3dc5be41,2
671
+ np.float32,0xbf3696d9,0xbf9fe2bd,2
672
+ np.float32,0x3e68ee50,0x3e51e01a,2
673
+ np.float32,0x3f3d4cc2,0x3f0db6ca,2
674
+ np.float32,0x7fa00000,0x7fe00000,2
675
+ np.float32,0xbf03070c,0xbf3792d0,2
676
+ np.float32,0x3ea79e6c,0x3e910092,2
677
+ np.float32,0xbf1a393a,0xbf6c2251,2
678
+ np.float32,0x3f41eb0e,0x3f105afc,2
679
+ np.float32,0x3ceadb2f,0x3ce78d79,2
680
+ np.float32,0xbf5dc105,0xc000be2c,2
681
+ np.float32,0x7ebb5a0e,0x42af6f5c,2
682
+ np.float32,0xbf7c44eb,0xc0875058,2
683
+ np.float32,0x6aaaf4,0x6aaaf4,2
684
+ np.float32,0x807d8f23,0x807d8f23,2
685
+ np.float32,0xbee6b142,0xbf194fef,2
686
+ np.float32,0xbe83f256,0xbe989526,2
687
+ np.float32,0x7d588e,0x7d588e,2
688
+ np.float32,0x7cc80131,0x42aa0542,2
689
+ np.float32,0x3e0ab198,0x3e02124f,2
690
+ np.float32,0xbf6e64db,0xc02b52eb,2
691
+ np.float32,0x3d238b56,0x3d205d1b,2
692
+ np.float32,0xbeb408e2,0xbeddd8bc,2
693
+ np.float32,0x3f78340d,0x3f2d8471,2
694
+ np.float32,0x806162a3,0x806162a3,2
695
+ np.float32,0x804e484f,0x804e484f,2
696
+ np.float32,0xbeb8c576,0xbee53466,2
697
+ np.float32,0x807aab15,0x807aab15,2
698
+ np.float32,0x3f523e20,0x3f197ab8,2
699
+ np.float32,0xbf009190,0xbf3295de,2
700
+ np.float32,0x3df43da5,0x3de6bd82,2
701
+ np.float32,0x7f639aea,0x42b135e6,2
702
+ np.float32,0x3f1e638a,0x3ef697da,2
703
+ np.float32,0xbf4884de,0xbfc3bac3,2
704
+ np.float32,0xbe9336b6,0xbead931b,2
705
+ np.float32,0x6daf7f,0x6daf7f,2
706
+ np.float32,0xbf1fc152,0xbf7a70b1,2
707
+ np.float32,0x3f103720,0x3ee4c649,2
708
+ np.float32,0x3eeaa227,0x3ec126df,2
709
+ np.float32,0x7f7ea945,0x42b16f69,2
710
+ np.float32,0x3d3cd800,0x3d389ead,2
711
+ np.float32,0x3f3d7268,0x3f0dcc6e,2
712
+ np.float32,0xbf3c1b41,0xbfa9e2e3,2
713
+ np.float32,0x3ecf3818,0x3eadffb2,2
714
+ np.float32,0x3f1af312,0x3ef25372,2
715
+ np.float32,0x48fae4,0x48fae4,2
716
+ np.float64,0x7fedaa1ee4fb543d,0x40862da7ca7c308e,1
717
+ np.float64,0x8007d2d810efa5b1,0x8007d2d810efa5b1,1
718
+ np.float64,0x3fc385e069270bc0,0x3fc22b8884cf2c3b,1
719
+ np.float64,0x68ed4130d1da9,0x68ed4130d1da9,1
720
+ np.float64,0x8008e93e58d1d27d,0x8008e93e58d1d27d,1
721
+ np.float64,0xbfd3d62852a7ac50,0xbfd7be3a7ad1af02,1
722
+ np.float64,0xbfc1fa0ba923f418,0xbfc35f0f19447df7,1
723
+ np.float64,0xbfe01b8cec20371a,0xbfe6658c7e6c8e50,1
724
+ np.float64,0xbfeda81a147b5034,0xc004e9c94f2b91c1,1
725
+ np.float64,0xbfe1c36a97e386d5,0xbfe9ead4d6beaa92,1
726
+ np.float64,0x3fe50be51f2a17ca,0x3fe02c8067d9e5c5,1
727
+ np.float64,0x3febed4d3337da9a,0x3fe413956466134f,1
728
+ np.float64,0x80068ea59ced1d4c,0x80068ea59ced1d4c,1
729
+ np.float64,0x3febe77d5877cefb,0x3fe4107ac088bc71,1
730
+ np.float64,0x800ae77617d5ceed,0x800ae77617d5ceed,1
731
+ np.float64,0x3fd0546b60a0a8d7,0x3fcd16c2e995ab23,1
732
+ np.float64,0xbfe33e1476667c29,0xbfed6d7faec4db2f,1
733
+ np.float64,0x3fe9d2fd51b3a5fb,0x3fe2eef834310219,1
734
+ np.float64,0x8004249878284932,0x8004249878284932,1
735
+ np.float64,0xbfd5b485c72b690c,0xbfda828ccc6a7a5c,1
736
+ np.float64,0x7fcd6e6b6b3adcd6,0x408622807f04768e,1
737
+ np.float64,0x3fd7f9c32caff386,0x3fd45d024514b8da,1
738
+ np.float64,0x7f87eb9d702fd73a,0x40860aa99fcff27f,1
739
+ np.float64,0xbfc5d1f6fb2ba3ec,0xbfc7ec367cb3fecc,1
740
+ np.float64,0x8008316a44d062d5,0x8008316a44d062d5,1
741
+ np.float64,0xbfd54e4358aa9c86,0xbfd9e889d2998a4a,1
742
+ np.float64,0xda65facdb4cc0,0xda65facdb4cc0,1
743
+ np.float64,0x3fc5b4f6f32b69f0,0x3fc40d13aa8e248b,1
744
+ np.float64,0x3fd825a5d5b04b4c,0x3fd47ce73e04d3ff,1
745
+ np.float64,0x7ac9d56ef593b,0x7ac9d56ef593b,1
746
+ np.float64,0xbfd0a51977214a32,0xbfd34702071428be,1
747
+ np.float64,0x3fd21f620b243ec4,0x3fcfea0c02193640,1
748
+ np.float64,0x3fe6fb3f1b2df67e,0x3fe151ffb18c983b,1
749
+ np.float64,0x700de022e01bd,0x700de022e01bd,1
750
+ np.float64,0xbfbb76b81236ed70,0xbfbd0d31deea1ec7,1
751
+ np.float64,0x3fecfc3856f9f870,0x3fe4a2fcadf221e0,1
752
+ np.float64,0x3fede286517bc50c,0x3fe51af2fbd6ef63,1
753
+ np.float64,0x7fdc8da96c391b52,0x408627ce09cfef2b,1
754
+ np.float64,0x8000edfcfb81dbfb,0x8000edfcfb81dbfb,1
755
+ np.float64,0x8009ebc42af3d789,0x8009ebc42af3d789,1
756
+ np.float64,0x7fd658aaf8acb155,0x408625d80cd1ccc9,1
757
+ np.float64,0x3feea584a37d4b09,0x3fe57f29a73729cd,1
758
+ np.float64,0x4cfe494699fca,0x4cfe494699fca,1
759
+ np.float64,0xbfe9d96460b3b2c9,0xbffa62ecfa026c77,1
760
+ np.float64,0x7fdb3852c3b670a5,0x4086276c191dc9b1,1
761
+ np.float64,0xbfe4d1fc9ee9a3f9,0xbff0d37ce37cf479,1
762
+ np.float64,0xffefffffffffffff,0xfff8000000000000,1
763
+ np.float64,0xbfd1c43d7fa3887a,0xbfd4cfbefb5f2c43,1
764
+ np.float64,0x3fec4a8e0d78951c,0x3fe4453a82ca2570,1
765
+ np.float64,0x7fafed74583fdae8,0x4086181017b8dac9,1
766
+ np.float64,0x80076c4ebcced89e,0x80076c4ebcced89e,1
767
+ np.float64,0x8001a9aa7b235356,0x8001a9aa7b235356,1
768
+ np.float64,0x121260fe2424d,0x121260fe2424d,1
769
+ np.float64,0x3fddd028e3bba052,0x3fd87998c4c43c5b,1
770
+ np.float64,0x800ed1cf4a9da39f,0x800ed1cf4a9da39f,1
771
+ np.float64,0xbfef2e63d7fe5cc8,0xc00d53480b16971b,1
772
+ np.float64,0xbfedde3309fbbc66,0xc005ab55b7a7c127,1
773
+ np.float64,0x3fda3e1e85b47c3d,0x3fd5fddafd8d6729,1
774
+ np.float64,0x8007c6443c6f8c89,0x8007c6443c6f8c89,1
775
+ np.float64,0xbfe101705f2202e0,0xbfe8420817665121,1
776
+ np.float64,0x7fe0bff3c1e17fe7,0x4086291539c56d80,1
777
+ np.float64,0x7fe6001dab6c003a,0x40862b43aa7cb060,1
778
+ np.float64,0x7fbdecf7de3bd9ef,0x40861d170b1c51a5,1
779
+ np.float64,0xbfc0fd508c21faa0,0xbfc23a5876e99fa3,1
780
+ np.float64,0xbfcf6eb14f3edd64,0xbfd208cbf742c8ea,1
781
+ np.float64,0x3f6d40ea403a81d5,0x3f6d33934ab8e799,1
782
+ np.float64,0x7fc32600b6264c00,0x40861f10302357e0,1
783
+ np.float64,0x3fd05870baa0b0e0,0x3fcd1d2af420fac7,1
784
+ np.float64,0x80051d5120aa3aa3,0x80051d5120aa3aa3,1
785
+ np.float64,0x3fdb783fcfb6f080,0x3fd6db229658c083,1
786
+ np.float64,0x3fe0b61199e16c24,0x3fdae41e277be2eb,1
787
+ np.float64,0x3daf62167b5ed,0x3daf62167b5ed,1
788
+ np.float64,0xbfec3c53b6f878a7,0xc0011f0ce7a78a2a,1
789
+ np.float64,0x800fc905161f920a,0x800fc905161f920a,1
790
+ np.float64,0x3fdc7b9cc138f73a,0x3fd78f9c2360e661,1
791
+ np.float64,0x7fe4079e97a80f3c,0x40862a83795f2443,1
792
+ np.float64,0x8010000000000000,0x8010000000000000,1
793
+ np.float64,0x7fe6da5345adb4a6,0x40862b9183c1e4b0,1
794
+ np.float64,0xbfd0a76667214ecc,0xbfd34a1e0c1f6186,1
795
+ np.float64,0x37fb0b906ff62,0x37fb0b906ff62,1
796
+ np.float64,0x7fe170e59fa2e1ca,0x408629680a55e5c5,1
797
+ np.float64,0x3fea900c77752019,0x3fe356eec75aa345,1
798
+ np.float64,0x3fc575c63a2aeb8c,0x3fc3d701167d76b5,1
799
+ np.float64,0x3fe8b45da87168bc,0x3fe24ecbb778fd44,1
800
+ np.float64,0xbfcb990ab5373214,0xbfcf1596c076813c,1
801
+ np.float64,0xf146fdfbe28e0,0xf146fdfbe28e0,1
802
+ np.float64,0x8001fcd474c3f9aa,0x8001fcd474c3f9aa,1
803
+ np.float64,0xbfe9b555eeb36aac,0xbffa0630c3bb485b,1
804
+ np.float64,0x800f950be83f2a18,0x800f950be83f2a18,1
805
+ np.float64,0x7feb0e03ab761c06,0x40862ceb30e36887,1
806
+ np.float64,0x7fca51bd4a34a37a,0x4086219b9dfd35c9,1
807
+ np.float64,0xbfdc27c34cb84f86,0xbfe28ccde8d6bc08,1
808
+ np.float64,0x80009ce1714139c4,0x80009ce1714139c4,1
809
+ np.float64,0x8005290fb1ea5220,0x8005290fb1ea5220,1
810
+ np.float64,0xbfee81e6473d03cd,0xc00885972ca1699b,1
811
+ np.float64,0x7fcfb11a373f6233,0x408623180b8f75d9,1
812
+ np.float64,0xbfcb9c4bfd373898,0xbfcf19bd25881928,1
813
+ np.float64,0x7feaec5885f5d8b0,0x40862ce136050e6c,1
814
+ np.float64,0x8009e17a4a53c2f5,0x8009e17a4a53c2f5,1
815
+ np.float64,0xbfe1cceb9e6399d7,0xbfea0038bd3def20,1
816
+ np.float64,0x8009170bd7122e18,0x8009170bd7122e18,1
817
+ np.float64,0xb2b6f7f1656df,0xb2b6f7f1656df,1
818
+ np.float64,0x3fc75bfd1f2eb7f8,0x3fc574c858332265,1
819
+ np.float64,0x3fa24c06ec249800,0x3fa1fa462ffcb8ec,1
820
+ np.float64,0xaa9a4d2d5534a,0xaa9a4d2d5534a,1
821
+ np.float64,0xbfd7b76208af6ec4,0xbfdda0c3200dcc9f,1
822
+ np.float64,0x7f8cbab73039756d,0x40860c20cba57a94,1
823
+ np.float64,0x3fdbcf9f48b79f3f,0x3fd71827a60e8b6d,1
824
+ np.float64,0xbfdd60f71a3ac1ee,0xbfe3a94bc8cf134d,1
825
+ np.float64,0xb9253589724a7,0xb9253589724a7,1
826
+ np.float64,0xbfcf28e37e3e51c8,0xbfd1da9977b741e3,1
827
+ np.float64,0x80011457f7e228b1,0x80011457f7e228b1,1
828
+ np.float64,0x7fec33df737867be,0x40862d404a897122,1
829
+ np.float64,0xae55f8f95cabf,0xae55f8f95cabf,1
830
+ np.float64,0xbfc1ab9397235728,0xbfc303e5533d4a5f,1
831
+ np.float64,0x7fef0f84b3be1f08,0x40862e05f9ba7118,1
832
+ np.float64,0x7fdc94f328b929e5,0x408627d01449d825,1
833
+ np.float64,0x3fee1b598c7c36b3,0x3fe53847be166834,1
834
+ np.float64,0x3fee8326f37d064e,0x3fe56d96f3fbcf43,1
835
+ np.float64,0x3fe7b18a83ef6316,0x3fe1bb6a6d48c675,1
836
+ np.float64,0x3fe5db969c6bb72e,0x3fe0a8d7d151996c,1
837
+ np.float64,0x3e3391d27c673,0x3e3391d27c673,1
838
+ np.float64,0x3fe79a46d76f348e,0x3fe1ae09a96ea628,1
839
+ np.float64,0x7ff4000000000000,0x7ffc000000000000,1
840
+ np.float64,0x7fe57d6505aafac9,0x40862b13925547f1,1
841
+ np.float64,0x3fc433371d28666e,0x3fc2c196a764c47b,1
842
+ np.float64,0x8008dbf69cd1b7ee,0x8008dbf69cd1b7ee,1
843
+ np.float64,0xbfe744f459ee89e8,0xbff4c847ad3ee152,1
844
+ np.float64,0x80098aa245331545,0x80098aa245331545,1
845
+ np.float64,0x6747112ece8e3,0x6747112ece8e3,1
846
+ np.float64,0x5d342a40ba69,0x5d342a40ba69,1
847
+ np.float64,0xf7a17739ef42f,0xf7a17739ef42f,1
848
+ np.float64,0x3fe1b34a9d236695,0x3fdc2d7c4e2c347a,1
849
+ np.float64,0x7fb53bf5ec2a77eb,0x40861a585ec8f7ff,1
850
+ np.float64,0xbfe6256f1cec4ade,0xbff2d89a36be65ae,1
851
+ np.float64,0xb783bc9b6f078,0xb783bc9b6f078,1
852
+ np.float64,0xbfedf74a3bfbee94,0xc0060bb6f2bc11ef,1
853
+ np.float64,0x3fda2a5eccb454be,0x3fd5efd7f18b8e81,1
854
+ np.float64,0xbfb3838ab2270718,0xbfb44c337fbca3c3,1
855
+ np.float64,0x3fb4ac6dc22958e0,0x3fb3e194ca01a502,1
856
+ np.float64,0x76c11aaaed824,0x76c11aaaed824,1
857
+ np.float64,0x80025bb1af04b764,0x80025bb1af04b764,1
858
+ np.float64,0x3fdc02740ab804e8,0x3fd73b8cd6f95f19,1
859
+ np.float64,0x3fe71856f5ee30ae,0x3fe162e9fafb4428,1
860
+ np.float64,0x800236f332646de7,0x800236f332646de7,1
861
+ np.float64,0x7fe13fd9d2e27fb3,0x408629516b42a317,1
862
+ np.float64,0x7fdf6bbd34bed779,0x40862892069d805c,1
863
+ np.float64,0x3fd4727beba8e4f8,0x3fd1be5b48d9e282,1
864
+ np.float64,0x800e0fac9e5c1f59,0x800e0fac9e5c1f59,1
865
+ np.float64,0xfb54423ff6a89,0xfb54423ff6a89,1
866
+ np.float64,0x800fbf7ed47f7efe,0x800fbf7ed47f7efe,1
867
+ np.float64,0x3fe9d41fa2f3a840,0x3fe2ef98dc1fd463,1
868
+ np.float64,0x800d733e805ae67d,0x800d733e805ae67d,1
869
+ np.float64,0x3feebe4c46fd7c98,0x3fe58bcf7f47264e,1
870
+ np.float64,0x7fe1ab77b5e356ee,0x40862982bb3dce34,1
871
+ np.float64,0xbfdddac05abbb580,0xbfe41aa45f72d5a2,1
872
+ np.float64,0x3fe14219dee28434,0x3fdb9b137d1f1220,1
873
+ np.float64,0x3fe25d3d5a24ba7b,0x3fdd06e1cf32d35a,1
874
+ np.float64,0x8000fa4fbe81f4a0,0x8000fa4fbe81f4a0,1
875
+ np.float64,0x3fe303e23e6607c4,0x3fddd94982efa9f1,1
876
+ np.float64,0x3fe89cf5d83139ec,0x3fe24193a2e12f75,1
877
+ np.float64,0x3fe9b36ef87366de,0x3fe2dd7cdc25a4a5,1
878
+ np.float64,0xbfdb8b38f8371672,0xbfe2023ba7e002bb,1
879
+ np.float64,0xafc354955f86b,0xafc354955f86b,1
880
+ np.float64,0xbfe2f3d49e65e7a9,0xbfecb557a94123d3,1
881
+ np.float64,0x800496617c092cc4,0x800496617c092cc4,1
882
+ np.float64,0x32db0cfa65b62,0x32db0cfa65b62,1
883
+ np.float64,0xbfd893bfa2b12780,0xbfdf02a8c1e545aa,1
884
+ np.float64,0x7fd5ac927d2b5924,0x408625997e7c1f9b,1
885
+ np.float64,0x3fde9defb8bd3be0,0x3fd9056190986349,1
886
+ np.float64,0x80030cfeb54619fe,0x80030cfeb54619fe,1
887
+ np.float64,0x3fcba85b273750b8,0x3fc90a5ca976594f,1
888
+ np.float64,0x3fe98f6f5cf31edf,0x3fe2c97fcb4eca25,1
889
+ np.float64,0x3fe33dbf90667b80,0x3fde21b83321b993,1
890
+ np.float64,0x3fe4686636e8d0cc,0x3fdf928cdca751b3,1
891
+ np.float64,0x80018ade6ce315be,0x80018ade6ce315be,1
892
+ np.float64,0x7fa9af70c8335ee1,0x408616528cd5a906,1
893
+ np.float64,0x3fbeb460aa3d68c0,0x3fbcff96b00a2193,1
894
+ np.float64,0x7fa82c869830590c,0x408615d6598d9368,1
895
+ np.float64,0xd08c0e6fa1182,0xd08c0e6fa1182,1
896
+ np.float64,0x3fef4eb750fe9d6f,0x3fe5d522fd4e7f64,1
897
+ np.float64,0xbfc586f5492b0dec,0xbfc791eaae92aad1,1
898
+ np.float64,0x7fede64ac7bbcc95,0x40862db7f444fa7b,1
899
+ np.float64,0x3fe540003d6a8000,0x3fe04bdfc2916a0b,1
900
+ np.float64,0x8009417fe6f28300,0x8009417fe6f28300,1
901
+ np.float64,0x3fe6959cf16d2b3a,0x3fe116a1ce01887b,1
902
+ np.float64,0x3fb0a40036214800,0x3fb01f447778219a,1
903
+ np.float64,0x3feff26e91ffe4dd,0x3fe627798fc859a7,1
904
+ np.float64,0x7fed8e46cd7b1c8d,0x40862da044a1d102,1
905
+ np.float64,0x7fec4eb774f89d6e,0x40862d47e43edb53,1
906
+ np.float64,0x3fe800e5e07001cc,0x3fe1e8e2b9105fc2,1
907
+ np.float64,0x800f4eb2f9be9d66,0x800f4eb2f9be9d66,1
908
+ np.float64,0x800611659bcc22cc,0x800611659bcc22cc,1
909
+ np.float64,0x3fd66e65d2acdccc,0x3fd33ad63a5e1000,1
910
+ np.float64,0x800a9085b7f5210c,0x800a9085b7f5210c,1
911
+ np.float64,0x7fdf933a3fbf2673,0x4086289c0e292f2b,1
912
+ np.float64,0x1cd1ba7a39a38,0x1cd1ba7a39a38,1
913
+ np.float64,0xbfefd0b10fffa162,0xc0149ded900ed851,1
914
+ np.float64,0xbfe8c63485b18c69,0xbff7cf3078b1574f,1
915
+ np.float64,0x3fecde56ca79bcae,0x3fe4934afbd7dda9,1
916
+ np.float64,0x8006cd6888cd9ad2,0x8006cd6888cd9ad2,1
917
+ np.float64,0x3fd7a391c2af4724,0x3fd41e2f74df2329,1
918
+ np.float64,0x3fe6a8ad58ed515a,0x3fe121ccfb28e6f5,1
919
+ np.float64,0x7fe18a80dd631501,0x40862973c09086b9,1
920
+ np.float64,0xbf74fd6d8029fb00,0xbf750b3e368ebe6b,1
921
+ np.float64,0x3fdd35e93dba6bd4,0x3fd810071faaffad,1
922
+ np.float64,0x3feb0d8f57361b1f,0x3fe39b3abdef8b7a,1
923
+ np.float64,0xbfd5ec7288abd8e6,0xbfdad764df0d2ca1,1
924
+ np.float64,0x7fdc848272b90904,0x408627cb78f3fb9e,1
925
+ np.float64,0x800ed3eda91da7db,0x800ed3eda91da7db,1
926
+ np.float64,0x3fefac64857f58c9,0x3fe60459dbaad1ba,1
927
+ np.float64,0x3fd1df7a5ba3bef4,0x3fcf864a39b926ff,1
928
+ np.float64,0xfe26ca4bfc4da,0xfe26ca4bfc4da,1
929
+ np.float64,0xbfd1099f8da21340,0xbfd3cf6e6efe934b,1
930
+ np.float64,0xbfe15de9a7a2bbd4,0xbfe909cc895f8795,1
931
+ np.float64,0x3fe89714ed712e2a,0x3fe23e40d31242a4,1
932
+ np.float64,0x800387113e470e23,0x800387113e470e23,1
933
+ np.float64,0x3fe4f80730e9f00e,0x3fe0208219314cf1,1
934
+ np.float64,0x2f95a97c5f2b6,0x2f95a97c5f2b6,1
935
+ np.float64,0x800ea7cdd87d4f9c,0x800ea7cdd87d4f9c,1
936
+ np.float64,0xbf64b967c0297300,0xbf64c020a145b7a5,1
937
+ np.float64,0xbfc5a91a342b5234,0xbfc7bafd77a61d81,1
938
+ np.float64,0xbfe2226fe76444e0,0xbfeac33eb1d1b398,1
939
+ np.float64,0x3fc6aaa8d42d5552,0x3fc4de79f5c68cd4,1
940
+ np.float64,0x3fe54fd4c1ea9faa,0x3fe05561a9a5922b,1
941
+ np.float64,0x80029c1f75653840,0x80029c1f75653840,1
942
+ np.float64,0xbfcb4a84a2369508,0xbfceb1a23bac3995,1
943
+ np.float64,0x80010abeff02157f,0x80010abeff02157f,1
944
+ np.float64,0x7f92d12cf825a259,0x40860e49bde3a5b6,1
945
+ np.float64,0x800933e7027267ce,0x800933e7027267ce,1
946
+ np.float64,0x3fc022b12e204562,0x3fbe64acc53ed887,1
947
+ np.float64,0xbfe35f938de6bf27,0xbfedc1f3e443c016,1
948
+ np.float64,0x1f8d9bae3f1b4,0x1f8d9bae3f1b4,1
949
+ np.float64,0x3fe552f22ceaa5e4,0x3fe057404072350f,1
950
+ np.float64,0xbfa73753442e6ea0,0xbfa7c24a100190f1,1
951
+ np.float64,0x7fb3e2982827c52f,0x408619d1efa676b6,1
952
+ np.float64,0xbfd80cb7a5301970,0xbfde28e65f344f33,1
953
+ np.float64,0xbfcde835973bd06c,0xbfd10806fba46c8f,1
954
+ np.float64,0xbfd4e3c749a9c78e,0xbfd949aff65de39c,1
955
+ np.float64,0x3fcb4b9d6f36973b,0x3fc8be02ad6dc0d3,1
956
+ np.float64,0x1a63000034c7,0x1a63000034c7,1
957
+ np.float64,0x7fdc9c751e3938e9,0x408627d22df71959,1
958
+ np.float64,0x3fd74f3f712e9e7f,0x3fd3e07df0c37ec1,1
959
+ np.float64,0xbfceab74d33d56e8,0xbfd187e99bf82903,1
960
+ np.float64,0x7ff0000000000000,0x7ff0000000000000,1
961
+ np.float64,0xbfb2cca466259948,0xbfb3868208e8de30,1
962
+ np.float64,0x800204688b8408d2,0x800204688b8408d2,1
963
+ np.float64,0x3e4547407c8aa,0x3e4547407c8aa,1
964
+ np.float64,0xbfe4668846e8cd10,0xbff03c85189f3818,1
965
+ np.float64,0x800dd350245ba6a0,0x800dd350245ba6a0,1
966
+ np.float64,0xbfbc13c160382780,0xbfbdbd56ce996d16,1
967
+ np.float64,0x7fe25a628a24b4c4,0x408629d06eb2d64d,1
968
+ np.float64,0x3fd19dabbc233b57,0x3fcf1f3ed1d34c8c,1
969
+ np.float64,0x547e20faa8fc5,0x547e20faa8fc5,1
970
+ np.float64,0xbfe19392c6232726,0xbfe97ffe4f303335,1
971
+ np.float64,0x3f87f9f6702ff400,0x3f87d64fb471bb04,1
972
+ np.float64,0x9dfc52db3bf8b,0x9dfc52db3bf8b,1
973
+ np.float64,0x800e1f5a9adc3eb5,0x800e1f5a9adc3eb5,1
974
+ np.float64,0xbfddbd09c8bb7a14,0xbfe3fed7d7cffc70,1
975
+ np.float64,0xbfeda71af87b4e36,0xc004e6631c514544,1
976
+ np.float64,0xbfdbfcfe1bb7f9fc,0xbfe266b5d4a56265,1
977
+ np.float64,0x3fe4ee78cd69dcf2,0x3fe01abba4e81fc9,1
978
+ np.float64,0x800f13b820de2770,0x800f13b820de2770,1
979
+ np.float64,0x3f861e09702c3c00,0x3f85ffae83b02c4f,1
980
+ np.float64,0xbfc0972479212e48,0xbfc1c4bf70b30cbc,1
981
+ np.float64,0x7fef057ef57e0afd,0x40862e036479f6a9,1
982
+ np.float64,0x8bdbabe517b76,0x8bdbabe517b76,1
983
+ np.float64,0xbfec495417f892a8,0xc0013ade88746d18,1
984
+ np.float64,0x3fec680ab3f8d015,0x3fe454dd304b560d,1
985
+ np.float64,0xbfae7ce60c3cf9d0,0xbfaf6eef15bbe56b,1
986
+ np.float64,0x3fec314124786282,0x3fe437ca06294f5a,1
987
+ np.float64,0x7fd5ed05b82bda0a,0x408625b125518e58,1
988
+ np.float64,0x3feac9f02f3593e0,0x3fe3768104dd5cb7,1
989
+ np.float64,0x0,0x0,1
990
+ np.float64,0xbfddd2abd5bba558,0xbfe41312b8ea20de,1
991
+ np.float64,0xbfedf9558c7bf2ab,0xc00613c53e0bb33a,1
992
+ np.float64,0x3fef245ffefe48c0,0x3fe5bfb4dfe3b7a5,1
993
+ np.float64,0x7fe178604922f0c0,0x4086296b77d5eaef,1
994
+ np.float64,0x10000000000000,0x10000000000000,1
995
+ np.float64,0x7fed026766ba04ce,0x40862d7a0dc45643,1
996
+ np.float64,0xbfde27d8c3bc4fb2,0xbfe46336b6447697,1
997
+ np.float64,0x3fe9485d9cb290bb,0x3fe2a1e4b6419423,1
998
+ np.float64,0xbfe27b8a7464f715,0xbfeb9382f5b16f65,1
999
+ np.float64,0x5c34d274b869b,0x5c34d274b869b,1
1000
+ np.float64,0xbfeee0b7453dc16f,0xc00acdb46459b6e6,1
1001
+ np.float64,0x7fe3dfb4d4e7bf69,0x40862a73785fdf12,1
1002
+ np.float64,0xb4635eef68c6c,0xb4635eef68c6c,1
1003
+ np.float64,0xbfe522a2c82a4546,0xbff148912a59a1d6,1
1004
+ np.float64,0x8009ba38a9737472,0x8009ba38a9737472,1
1005
+ np.float64,0xbfc056ff3820ae00,0xbfc17b2205fa180d,1
1006
+ np.float64,0x7fe1c8b8a0239170,0x4086298feeee6133,1
1007
+ np.float64,0x3fe2d2c6b9e5a58e,0x3fdd9b907471031b,1
1008
+ np.float64,0x3fa0a161bc2142c0,0x3fa05db36f6a073b,1
1009
+ np.float64,0x3fdef4268ebde84c,0x3fd93f980794d1e7,1
1010
+ np.float64,0x800ecd9fe2fd9b40,0x800ecd9fe2fd9b40,1
1011
+ np.float64,0xbfc9fbd45e33f7a8,0xbfcd0afc47c340f6,1
1012
+ np.float64,0x3fe8c3035b718606,0x3fe2570eb65551a1,1
1013
+ np.float64,0xbfe78c4ad2ef1896,0xbff54d25b3328742,1
1014
+ np.float64,0x8006f5dcf8adebbb,0x8006f5dcf8adebbb,1
1015
+ np.float64,0x800301dca2a603ba,0x800301dca2a603ba,1
1016
+ np.float64,0xad4289e55a851,0xad4289e55a851,1
1017
+ np.float64,0x80037764f9e6eecb,0x80037764f9e6eecb,1
1018
+ np.float64,0xbfe73575b26e6aec,0xbff4abfb5e985c62,1
1019
+ np.float64,0xbfc6cb91652d9724,0xbfc91a8001b33ec2,1
1020
+ np.float64,0xbfe3a918ffe75232,0xbfee7e6e4fd34c53,1
1021
+ np.float64,0x9bc84e2b3790a,0x9bc84e2b3790a,1
1022
+ np.float64,0x7fdeec303cbdd85f,0x408628714a49d996,1
1023
+ np.float64,0x3fe1d1dcb763a3ba,0x3fdc54ce060dc7f4,1
1024
+ np.float64,0x8008ae6432b15cc9,0x8008ae6432b15cc9,1
1025
+ np.float64,0x3fd8022fa2b00460,0x3fd46322bf02a609,1
1026
+ np.float64,0xbfc55b64472ab6c8,0xbfc75d9568f462e0,1
1027
+ np.float64,0xbfe8b165437162ca,0xbff7a15e2ead645f,1
1028
+ np.float64,0x7f759330feeb3,0x7f759330feeb3,1
1029
+ np.float64,0xbfd504f68eaa09ee,0xbfd97b06c01d7473,1
1030
+ np.float64,0x54702d5aa8e06,0x54702d5aa8e06,1
1031
+ np.float64,0xbfed1779337a2ef2,0xc0032f7109ef5a51,1
1032
+ np.float64,0xe248bd4dc4918,0xe248bd4dc4918,1
1033
+ np.float64,0xbfd8c59150318b22,0xbfdf53bca6ca8b1e,1
1034
+ np.float64,0xbfe3b9d942e773b2,0xbfeea9fcad277ba7,1
1035
+ np.float64,0x800934ec127269d9,0x800934ec127269d9,1
1036
+ np.float64,0xbfbb7f535a36fea8,0xbfbd16d61b6c52b8,1
1037
+ np.float64,0xccb185a199631,0xccb185a199631,1
1038
+ np.float64,0x3fe3dda76fe7bb4e,0x3fdee83bc6094301,1
1039
+ np.float64,0xbfe0c902f5e19206,0xbfe7ca7c0e888006,1
1040
+ np.float64,0xbfefeed08cbfdda1,0xc018aadc483c8724,1
1041
+ np.float64,0x7fd0c05c52a180b8,0x40862389daf64aac,1
1042
+ np.float64,0xbfd28e3323a51c66,0xbfd5e9ba278fb685,1
1043
+ np.float64,0xbef4103b7de82,0xbef4103b7de82,1
1044
+ np.float64,0x3fe7661fd12ecc40,0x3fe18ff7dfb696e2,1
1045
+ np.float64,0x3fddd5f2f0bbabe4,0x3fd87d8bb6719c3b,1
1046
+ np.float64,0x800b3914cfd6722a,0x800b3914cfd6722a,1
1047
+ np.float64,0xf3f09a97e7e14,0xf3f09a97e7e14,1
1048
+ np.float64,0x7f97092b502e1256,0x40860fe8054cf54e,1
1049
+ np.float64,0xbfdbec7917b7d8f2,0xbfe2580b4b792c79,1
1050
+ np.float64,0x7fe7ff215aaffe42,0x40862bf5887fa062,1
1051
+ np.float64,0x80080186e570030e,0x80080186e570030e,1
1052
+ np.float64,0xbfc27f05e624fe0c,0xbfc3fa214be4adc4,1
1053
+ np.float64,0x3fe4481be1689038,0x3fdf6b11e9c4ca72,1
1054
+ np.float64,0x3fd642cc9cac8598,0x3fd31a857fe70227,1
1055
+ np.float64,0xbef8782d7df0f,0xbef8782d7df0f,1
1056
+ np.float64,0x8003077dc2e60efc,0x8003077dc2e60efc,1
1057
+ np.float64,0x80083eb5a2507d6c,0x80083eb5a2507d6c,1
1058
+ np.float64,0x800e8d1eb77d1a3e,0x800e8d1eb77d1a3e,1
1059
+ np.float64,0xbfc7737cd22ee6f8,0xbfc9e7716f03f1fc,1
1060
+ np.float64,0xbfe9a2b4ddf3456a,0xbff9d71664a8fc78,1
1061
+ np.float64,0x7fe67c7d322cf8f9,0x40862b7066465194,1
1062
+ np.float64,0x3fec080ce2b8101a,0x3fe421dac225be46,1
1063
+ np.float64,0xbfe6d27beb6da4f8,0xbff3fbb1add521f7,1
1064
+ np.float64,0x3fdd4f96ceba9f2e,0x3fd821a638986dbe,1
1065
+ np.float64,0x3fbd89f1303b13e2,0x3fbbf49223a9d002,1
1066
+ np.float64,0xbfe94e2b9d329c57,0xbff907e549c534f5,1
1067
+ np.float64,0x3fe2f2cc51e5e599,0x3fddc3d6b4a834a1,1
1068
+ np.float64,0xfdcb5b49fb96c,0xfdcb5b49fb96c,1
1069
+ np.float64,0xbfea7108fa74e212,0xbffc01b392f4897b,1
1070
+ np.float64,0x3fd38baef7a7175c,0x3fd10e7fd3b958dd,1
1071
+ np.float64,0x3fa75bf9cc2eb800,0x3fa6d792ecdedb8e,1
1072
+ np.float64,0x7fd19fd20aa33fa3,0x408623f1e2cd04c3,1
1073
+ np.float64,0x3fd62c708dac58e0,0x3fd309ec7818d16e,1
1074
+ np.float64,0x3fdf489047be9120,0x3fd978640617c758,1
1075
+ np.float64,0x1,0x1,1
1076
+ np.float64,0xbfe21e7c3ea43cf8,0xbfeaba21320697d3,1
1077
+ np.float64,0xbfd3649047a6c920,0xbfd71a6f14223744,1
1078
+ np.float64,0xbfd68ca68c2d194e,0xbfdbcce6784e5d44,1
1079
+ np.float64,0x3fdb26b0ea364d62,0x3fd6a1f86f64ff74,1
1080
+ np.float64,0xbfd843821cb08704,0xbfde80e90805ab3f,1
1081
+ np.float64,0x3fd508a27aaa1144,0x3fd22fc203a7b9d8,1
1082
+ np.float64,0xbfdb951c7eb72a38,0xbfe20aeaec13699b,1
1083
+ np.float64,0x3fef556ba57eaad7,0x3fe5d8865cce0a6d,1
1084
+ np.float64,0x3fd0d224b3a1a448,0x3fcdde7be5d7e21e,1
1085
+ np.float64,0x8007ff272baffe4f,0x8007ff272baffe4f,1
1086
+ np.float64,0x3fe1c7bddf638f7c,0x3fdc47cc6cf2f5cd,1
1087
+ np.float64,0x7ff8000000000000,0x7ff8000000000000,1
1088
+ np.float64,0x2016d560402f,0x2016d560402f,1
1089
+ np.float64,0xbfcca10be9394218,0xbfd033f36b94fc54,1
1090
+ np.float64,0xbfdb833628b7066c,0xbfe1fb344b840c70,1
1091
+ np.float64,0x3fd8529cb3b0a539,0x3fd49d847fe77218,1
1092
+ np.float64,0xbfc0b0ebab2161d8,0xbfc1e260c60ffd1b,1
1093
+ np.float64,0xbfea8b9a79f51735,0xbffc4ee6be8a0fa2,1
1094
+ np.float64,0x7feca8fab7f951f4,0x40862d613e454646,1
1095
+ np.float64,0x7fd8c52d82318a5a,0x408626aaf37423a3,1
1096
+ np.float64,0xbfe364ad4526c95a,0xbfedcee39bc93ff5,1
1097
+ np.float64,0x800b78161256f02d,0x800b78161256f02d,1
1098
+ np.float64,0xbfd55f0153aabe02,0xbfda01a78f72d494,1
1099
+ np.float64,0x800315a5f0662b4d,0x800315a5f0662b4d,1
1100
+ np.float64,0x7fe4c0dca02981b8,0x40862acc27e4819f,1
1101
+ np.float64,0x8009825c703304b9,0x8009825c703304b9,1
1102
+ np.float64,0x3fe6e94e1cadd29c,0x3fe1478ccc634f49,1
1103
+ np.float64,0x7fe622d8586c45b0,0x40862b504177827e,1
1104
+ np.float64,0x3fe4458600688b0c,0x3fdf67e79a84b953,1
1105
+ np.float64,0xbfdd75d8a1baebb2,0xbfe3bc9e6ca1bbb5,1
1106
+ np.float64,0x3fde789c6bbcf138,0x3fd8ec1d435531b3,1
1107
+ np.float64,0x3fe7052b94ee0a58,0x3fe157c5c4418dc1,1
1108
+ np.float64,0x7fef31652abe62c9,0x40862e0eaeabcfc0,1
1109
+ np.float64,0x3fe279691ee4f2d2,0x3fdd2aa41eb43cd4,1
1110
+ np.float64,0xbfd533fa95aa67f6,0xbfd9c12f516d29d7,1
1111
+ np.float64,0x3fe6d057f96da0b0,0x3fe138fd96693a6a,1
1112
+ np.float64,0x800bad984f775b31,0x800bad984f775b31,1
1113
+ np.float64,0x7fdd6fdba4badfb6,0x4086280c73d8ef97,1
1114
+ np.float64,0x7fe9b5c0eef36b81,0x40862c82c6f57a53,1
1115
+ np.float64,0x8000bc02ece17807,0x8000bc02ece17807,1
1116
+ np.float64,0xbff0000000000000,0xfff0000000000000,1
1117
+ np.float64,0xbfed430be3fa8618,0xc003aaf338c75b3c,1
1118
+ np.float64,0x3fee17b759fc2f6f,0x3fe53668696bf48b,1
1119
+ np.float64,0x3f8d4cf9d03a9a00,0x3f8d17d2f532afdc,1
1120
+ np.float64,0x8005d6257b8bac4c,0x8005d6257b8bac4c,1
1121
+ np.float64,0xbfd17a6df9a2f4dc,0xbfd469e3848adc6e,1
1122
+ np.float64,0xb28a293965145,0xb28a293965145,1
1123
+ np.float64,0xbfe7d011e42fa024,0xbff5cf818998c8ec,1
1124
+ np.float64,0xbfe74f0f136e9e1e,0xbff4dad6ebb0443c,1
1125
+ np.float64,0x800f249fc9be4940,0x800f249fc9be4940,1
1126
+ np.float64,0x2542f8fe4a860,0x2542f8fe4a860,1
1127
+ np.float64,0xc48d40cd891a8,0xc48d40cd891a8,1
1128
+ np.float64,0x3fe4e64bc8e9cc98,0x3fe015c9eb3caa53,1
1129
+ np.float64,0x3fd33881eca67104,0x3fd0cea886be2457,1
1130
+ np.float64,0xbfd01748fba02e92,0xbfd28875959e6901,1
1131
+ np.float64,0x7fb7ab01f22f5603,0x40861b369927bf53,1
1132
+ np.float64,0xbfe340274ce6804e,0xbfed72b39f0ebb24,1
1133
+ np.float64,0x7fc16c0c3422d817,0x40861e4eaf1a286c,1
1134
+ np.float64,0x3fc26944a324d288,0x3fc133a77b356ac4,1
1135
+ np.float64,0xa149d7134293b,0xa149d7134293b,1
1136
+ np.float64,0x800837382d106e71,0x800837382d106e71,1
1137
+ np.float64,0x797d1740f2fa4,0x797d1740f2fa4,1
1138
+ np.float64,0xc3f15b7787e2c,0xc3f15b7787e2c,1
1139
+ np.float64,0x80cad1b90195a,0x80cad1b90195a,1
1140
+ np.float64,0x3fdd8f1142bb1e23,0x3fd84d21490d1ce6,1
1141
+ np.float64,0xbfbde6c9123bcd90,0xbfbfcc030a86836a,1
1142
+ np.float64,0x8007f77e032feefd,0x8007f77e032feefd,1
1143
+ np.float64,0x3fe74fed1c6e9fda,0x3fe18322cf19cb61,1
1144
+ np.float64,0xbfd8a40bbcb14818,0xbfdf1d23520ba74b,1
1145
+ np.float64,0xbfeb7a0e6076f41d,0xbfff4ddfb926efa5,1
1146
+ np.float64,0xbfcb8c5f663718c0,0xbfcf0570f702bda9,1
1147
+ np.float64,0xf668cd97ecd1a,0xf668cd97ecd1a,1
1148
+ np.float64,0xbfe92accf572559a,0xbff8b4393878ffdb,1
1149
+ np.float64,0xbfeaa955567552ab,0xbffca70c7d73eee5,1
1150
+ np.float64,0xbfe083a14f610742,0xbfe739d84bc35077,1
1151
+ np.float64,0x78290568f0521,0x78290568f0521,1
1152
+ np.float64,0x3fe94bae2372975c,0x3fe2a3beac5c9858,1
1153
+ np.float64,0x3fca4fbab9349f78,0x3fc7edbca2492acb,1
1154
+ np.float64,0x8000000000000000,0x8000000000000000,1
1155
+ np.float64,0x7fb9eb505433d6a0,0x40861bf0adedb74d,1
1156
+ np.float64,0x7fdc66f72a38cded,0x408627c32aeecf0f,1
1157
+ np.float64,0x2e8e6f445d1cf,0x2e8e6f445d1cf,1
1158
+ np.float64,0xbfec43195af88633,0xc0012d7e3f91b7e8,1
1159
+ np.float64,0x7fcdb971e93b72e3,0x40862294c9e3a7bc,1
1160
+ np.float64,0x800cabc461195789,0x800cabc461195789,1
1161
+ np.float64,0x2c79709c58f2f,0x2c79709c58f2f,1
1162
+ np.float64,0x8005d772d3cbaee6,0x8005d772d3cbaee6,1
1163
+ np.float64,0x3fe84d8c03709b18,0x3fe21490ce3673dd,1
1164
+ np.float64,0x7fe5578adc2aaf15,0x40862b056e8437d4,1
1165
+ np.float64,0xbf91298c58225320,0xbf914ec86c32d11f,1
1166
+ np.float64,0xc7ed2b6d8fda6,0xc7ed2b6d8fda6,1
1167
+ np.float64,0x2761404c4ec29,0x2761404c4ec29,1
1168
+ np.float64,0x3fbad3c48835a789,0x3fb9833c02385305,1
1169
+ np.float64,0x3fa46fee5428dfe0,0x3fa40a357fb24c23,1
1170
+ np.float64,0xbfe3900c6fe72019,0xbfee3dba29dd9d43,1
1171
+ np.float64,0x3fe7a9e41a6f53c8,0x3fe1b704dfb9884b,1
1172
+ np.float64,0xbfe74a7a1eee94f4,0xbff4d269cacb1f29,1
1173
+ np.float64,0xbfee609c72fcc139,0xc007da8499d34123,1
1174
+ np.float64,0x3fef2d5fc23e5ac0,0x3fe5c44414e59cb4,1
1175
+ np.float64,0xbfd7bdc0402f7b80,0xbfddaae1e7bb78fb,1
1176
+ np.float64,0xd71ee01dae3dc,0xd71ee01dae3dc,1
1177
+ np.float64,0x3fe98cbcdef3197a,0x3fe2c7ffe33c4541,1
1178
+ np.float64,0x8000f8dbb3a1f1b8,0x8000f8dbb3a1f1b8,1
1179
+ np.float64,0x3fe3e98ad567d316,0x3fdef6e58058313f,1
1180
+ np.float64,0x41ad0bfc835a2,0x41ad0bfc835a2,1
1181
+ np.float64,0x7fdcc2dc0d3985b7,0x408627dce39f77af,1
1182
+ np.float64,0xbfe47b980de8f730,0xbff059acdccd6e2b,1
1183
+ np.float64,0xbfef49b6577e936d,0xc00e714f46b2ccc1,1
1184
+ np.float64,0x3fac31816c386300,0x3fab71cb92b0db8f,1
1185
+ np.float64,0x3fe59097e76b2130,0x3fe07c299fd1127c,1
1186
+ np.float64,0xbfecf0df5cf9e1bf,0xc002c7ebdd65039c,1
1187
+ np.float64,0x3fd2b7d0b6a56fa1,0x3fd06b638990ae02,1
1188
+ np.float64,0xbfeb68deecf6d1be,0xbfff1187e042d3e4,1
1189
+ np.float64,0x3fd44a9771a8952f,0x3fd1a01867c5e302,1
1190
+ np.float64,0xf79a9dedef354,0xf79a9dedef354,1
1191
+ np.float64,0x800c25a170d84b43,0x800c25a170d84b43,1
1192
+ np.float64,0x3ff0000000000000,0x3fe62e42fefa39ef,1
1193
+ np.float64,0x3fbff4f7623fe9f0,0x3fbe1d3878f4c417,1
1194
+ np.float64,0xd284c845a5099,0xd284c845a5099,1
1195
+ np.float64,0xbfe3c7815f678f02,0xbfeecdab5ca2e651,1
1196
+ np.float64,0x3fc19c934e233927,0x3fc08036104b1f23,1
1197
+ np.float64,0x800b6096de16c12e,0x800b6096de16c12e,1
1198
+ np.float64,0xbfe962a67e32c54d,0xbff9392313a112a1,1
1199
+ np.float64,0x2b9d0116573a1,0x2b9d0116573a1,1
1200
+ np.float64,0x3fcab269ed3564d4,0x3fc83f7e1c3095b7,1
1201
+ np.float64,0x3fc8c78d86318f1b,0x3fc6a6cde5696f99,1
1202
+ np.float64,0xd5b1e9b5ab63d,0xd5b1e9b5ab63d,1
1203
+ np.float64,0xbfed802a47fb0054,0xc00465cad3b5b0ef,1
1204
+ np.float64,0xbfd73aaf08ae755e,0xbfdcdbd62b8af271,1
1205
+ np.float64,0xbfd4f13c0229e278,0xbfd95dacff79e570,1
1206
+ np.float64,0xbfe9622808f2c450,0xbff937f13c397e8d,1
1207
+ np.float64,0xbfeddfa62efbbf4c,0xc005b0c835eed829,1
1208
+ np.float64,0x3fd65663d4acacc8,0x3fd3290cd0e675dc,1
1209
+ np.float64,0x8005e890f1abd123,0x8005e890f1abd123,1
1210
+ np.float64,0xbfe924919fb24923,0xbff8a5a827a28756,1
1211
+ np.float64,0x3fe8cdf490719be9,0x3fe25d39535e8366,1
1212
+ np.float64,0x7fc229e6ff2453cd,0x40861ea40ef87a5a,1
1213
+ np.float64,0x3fe5cf53ceeb9ea8,0x3fe0a18e0b65f27e,1
1214
+ np.float64,0xa79cf6fb4f39f,0xa79cf6fb4f39f,1
1215
+ np.float64,0x7fddbb3c0f3b7677,0x40862820d5edf310,1
1216
+ np.float64,0x3e1011de7c203,0x3e1011de7c203,1
1217
+ np.float64,0x3fc0b59a83216b38,0x3fbf6916510ff411,1
1218
+ np.float64,0x8647f98d0c8ff,0x8647f98d0c8ff,1
1219
+ np.float64,0x8005dad33ecbb5a7,0x8005dad33ecbb5a7,1
1220
+ np.float64,0x8a80d0631501a,0x8a80d0631501a,1
1221
+ np.float64,0xbfe18f7d6ee31efb,0xbfe976f06713afc1,1
1222
+ np.float64,0xbfe06eaed560dd5e,0xbfe70eac696933e6,1
1223
+ np.float64,0xbfed8ef93c7b1df2,0xc00495bfa3195b53,1
1224
+ np.float64,0x3febe9c24677d385,0x3fe411b10db16c42,1
1225
+ np.float64,0x7fd5d80c1fabb017,0x408625a97a7787ba,1
1226
+ np.float64,0x3fca79b59334f368,0x3fc8108a521341dc,1
1227
+ np.float64,0xbfccf8db4339f1b8,0xbfd06c9a5424aadb,1
1228
+ np.float64,0xbfea5ac5a574b58b,0xbffbc21d1405d840,1
1229
+ np.float64,0x800ce2bf4b19c57f,0x800ce2bf4b19c57f,1
1230
+ np.float64,0xbfe8df896d31bf13,0xbff807ab38ac41ab,1
1231
+ np.float64,0x3feab83da9f5707c,0x3fe36cdd827c0eff,1
1232
+ np.float64,0x3fee717683bce2ed,0x3fe564879171719b,1
1233
+ np.float64,0x80025e5577c4bcac,0x80025e5577c4bcac,1
1234
+ np.float64,0x3fe3e5378e67ca70,0x3fdef1902c5d1efd,1
1235
+ np.float64,0x3fa014bb7c202980,0x3f9faacf9238d499,1
1236
+ np.float64,0x3fddbf5e16bb7ebc,0x3fd86e2311cb0f6d,1
1237
+ np.float64,0x3fd24e50e6a49ca0,0x3fd0198f04f82186,1
1238
+ np.float64,0x656b5214cad6b,0x656b5214cad6b,1
1239
+ np.float64,0x8b0a4bfd1614a,0x8b0a4bfd1614a,1
1240
+ np.float64,0xbfeeb6bd9e7d6d7b,0xc009b669285e319e,1
1241
+ np.float64,0x8000000000000001,0x8000000000000001,1
1242
+ np.float64,0xbfe719feceee33fe,0xbff47a4c8cbf0cca,1
1243
+ np.float64,0xbfd14fa8c8a29f52,0xbfd42f27b1aced39,1
1244
+ np.float64,0x7fec9dcb80f93b96,0x40862d5e1e70bbb9,1
1245
+ np.float64,0x7fecacb826f9596f,0x40862d6249746915,1
1246
+ np.float64,0x973459f52e68b,0x973459f52e68b,1
1247
+ np.float64,0x7f40a59e00214b3b,0x4085f194f45f82b1,1
1248
+ np.float64,0x7fc5dbaec32bb75d,0x4086201f3e7065d9,1
1249
+ np.float64,0x82d0801305a10,0x82d0801305a10,1
1250
+ np.float64,0x7fec81c0f4790381,0x40862d5643c0fc85,1
1251
+ np.float64,0xbfe2d81e9ee5b03d,0xbfec71a8e864ea40,1
1252
+ np.float64,0x6c545c9ad8a8c,0x6c545c9ad8a8c,1
1253
+ np.float64,0x3f9be95a5037d2b5,0x3f9b89b48ac8f5d8,1
1254
+ np.float64,0x8000cae9702195d4,0x8000cae9702195d4,1
1255
+ np.float64,0xbfd375f45126ebe8,0xbfd733677e54a80d,1
1256
+ np.float64,0x3fd29a5b81a534b7,0x3fd05494bf200278,1
1257
+ np.float64,0xfff0000000000000,0xfff8000000000000,1
1258
+ np.float64,0x7fca8fc195351f82,0x408621ae61aa6c13,1
1259
+ np.float64,0x1b28e2ae3651d,0x1b28e2ae3651d,1
1260
+ np.float64,0x3fe7fdbd14effb7a,0x3fe1e714884b46a8,1
1261
+ np.float64,0x3fdf1ce068be39c0,0x3fd95b054e0fad3d,1
1262
+ np.float64,0x3fe79f9a636f3f34,0x3fe1b11a40c00b3e,1
1263
+ np.float64,0x3fe60eb7036c1d6e,0x3fe0c72a02176874,1
1264
+ np.float64,0x229da17e453b5,0x229da17e453b5,1
1265
+ np.float64,0x3fc1a921b5235240,0x3fc08b3f35e47fb1,1
1266
+ np.float64,0xbb92d2af7725b,0xbb92d2af7725b,1
1267
+ np.float64,0x3fe4110cb1e8221a,0x3fdf2787de6c73f7,1
1268
+ np.float64,0xbfbc87771a390ef0,0xbfbe3f6e95622363,1
1269
+ np.float64,0xbfe74025dfee804c,0xbff4bf7b1895e697,1
1270
+ np.float64,0x964eb6592c9d7,0x964eb6592c9d7,1
1271
+ np.float64,0x3f951689b82a2d00,0x3f94dfb38d746fdf,1
1272
+ np.float64,0x800356271be6ac4f,0x800356271be6ac4f,1
1273
+ np.float64,0x7fefffffffffffff,0x40862e42fefa39ef,1
1274
+ np.float64,0xbfed5ce250fab9c5,0xc003f7ddfeb94345,1
1275
+ np.float64,0x3fec3d5dc1387abc,0x3fe43e39c02d86f4,1
1276
+ np.float64,0x3999897e73332,0x3999897e73332,1
1277
+ np.float64,0xbfdcb57744b96aee,0xbfe30c4b98f3d088,1
1278
+ np.float64,0x7f961fb0b82c3f60,0x40860f9549c3a380,1
1279
+ np.float64,0x67d6efcacfadf,0x67d6efcacfadf,1
1280
+ np.float64,0x8002c9498f859294,0x8002c9498f859294,1
1281
+ np.float64,0xbfa3033800260670,0xbfa35fe3bf43e188,1
1282
+ np.float64,0xbfeab2fc157565f8,0xbffcc413c486b4eb,1
1283
+ np.float64,0x3fe25e62f364bcc6,0x3fdd0856e19e3430,1
1284
+ np.float64,0x7fb2f42dda25e85b,0x4086196fb34a65fd,1
1285
+ np.float64,0x3fe0f1a5af61e34c,0x3fdb3235a1786efb,1
1286
+ np.float64,0x800a340ca1f4681a,0x800a340ca1f4681a,1
1287
+ np.float64,0x7c20b9def8418,0x7c20b9def8418,1
1288
+ np.float64,0xdf0842a1be109,0xdf0842a1be109,1
1289
+ np.float64,0x3fe9f22cc2f3e45a,0x3fe300359b842bf0,1
1290
+ np.float64,0x3fe389ed73e713da,0x3fde809780fe4432,1
1291
+ np.float64,0x9500fb932a020,0x9500fb932a020,1
1292
+ np.float64,0x3fd8a21ffdb14440,0x3fd4d70862345d86,1
1293
+ np.float64,0x800d99c15cbb3383,0x800d99c15cbb3383,1
1294
+ np.float64,0x3fd96c98c932d932,0x3fd568959c9b028f,1
1295
+ np.float64,0x7fc228483a24508f,0x40861ea358420976,1
1296
+ np.float64,0x7fc6737bef2ce6f7,0x408620560ffc6a98,1
1297
+ np.float64,0xbfb2c27cee2584f8,0xbfb37b8cc7774b5f,1
1298
+ np.float64,0xbfd18409f9230814,0xbfd4771d1a9a24fb,1
1299
+ np.float64,0x3fb53cb3f42a7968,0x3fb466f06f88044b,1
1300
+ np.float64,0x3fef61d0187ec3a0,0x3fe5dec8a9d13dd9,1
1301
+ np.float64,0x3fe59a6ffd2b34e0,0x3fe0820a99c6143d,1
1302
+ np.float64,0x3fce18aff43c3160,0x3fcb07c7b523f0d1,1
1303
+ np.float64,0xbfb1319a62226338,0xbfb1cc62f31b2b40,1
1304
+ np.float64,0xa00cce6d4019a,0xa00cce6d4019a,1
1305
+ np.float64,0x80068ae8e0ed15d3,0x80068ae8e0ed15d3,1
1306
+ np.float64,0x3fecef353239de6a,0x3fe49c280adc607b,1
1307
+ np.float64,0x3fdf1a7fb0be34ff,0x3fd9596bafe2d766,1
1308
+ np.float64,0x3feb5e12eeb6bc26,0x3fe3c6be3ede8d07,1
1309
+ np.float64,0x3fdeff5cd43dfeba,0x3fd947262ec96b05,1
1310
+ np.float64,0x3f995e75e832bd00,0x3f990f511f4c7f1c,1
1311
+ np.float64,0xbfeb5b3ed0b6b67e,0xbffee24fc0fc2881,1
1312
+ np.float64,0x7fb82aad0a305559,0x40861b614d901182,1
1313
+ np.float64,0xbfe5c3a4926b8749,0xbff23cd0ad144fe6,1
1314
+ np.float64,0x3fef47da373e8fb4,0x3fe5d1aaa4031993,1
1315
+ np.float64,0x7fc6a8c3872d5186,0x40862068f5ca84be,1
1316
+ np.float64,0x7fc0c2276221844e,0x40861dff2566d001,1
1317
+ np.float64,0x7fc9ce7d28339cf9,0x40862173541f84d1,1
1318
+ np.float64,0x3fce2c34933c5869,0x3fcb179428ad241d,1
1319
+ np.float64,0xbfcf864c293f0c98,0xbfd21872c4821cfc,1
1320
+ np.float64,0x3fc51fd1f82a3fa4,0x3fc38d4f1685c166,1
1321
+ np.float64,0xbfe2707b70a4e0f7,0xbfeb795fbd5bb444,1
1322
+ np.float64,0x46629b568cc54,0x46629b568cc54,1
1323
+ np.float64,0x7fe5f821f32bf043,0x40862b40c2cdea3f,1
1324
+ np.float64,0x3fedd2c9457ba592,0x3fe512ce92394526,1
1325
+ np.float64,0x7fe6dcb8ceadb971,0x40862b925a7dc05d,1
1326
+ np.float64,0x3fd1b983b4a37307,0x3fcf4ae2545cf64e,1
1327
+ np.float64,0xbfe1c93104639262,0xbfe9f7d28e4c0c82,1
1328
+ np.float64,0x995ebc2932bd8,0x995ebc2932bd8,1
1329
+ np.float64,0x800a4c3ee614987e,0x800a4c3ee614987e,1
1330
+ np.float64,0x3fbb58766e36b0f0,0x3fb9fb3b9810ec16,1
1331
+ np.float64,0xbfe36d636666dac7,0xbfede5080f69053c,1
1332
+ np.float64,0x3f4feee1003fddc2,0x3f4feae5f05443d1,1
1333
+ np.float64,0x3fed0b772ffa16ee,0x3fe4aafb924903c6,1
1334
+ np.float64,0x800bb3faef3767f6,0x800bb3faef3767f6,1
1335
+ np.float64,0x3fe285cda5e50b9c,0x3fdd3a58df06c427,1
1336
+ np.float64,0x7feb9d560bb73aab,0x40862d152362bb94,1
1337
+ np.float64,0x3fecd1f447f9a3e9,0x3fe48cc78288cb3f,1
1338
+ np.float64,0x3fca927b0c3524f6,0x3fc8250f49ba28df,1
1339
+ np.float64,0x7fcc19944e383328,0x40862221b02fcf43,1
1340
+ np.float64,0xbfd8ddf41db1bbe8,0xbfdf7b92073ff2fd,1
1341
+ np.float64,0x80006fe736e0dfcf,0x80006fe736e0dfcf,1
1342
+ np.float64,0x800bbeb66d577d6d,0x800bbeb66d577d6d,1
1343
+ np.float64,0xbfe4329353e86526,0xbfefeaf19ab92b42,1
1344
+ np.float64,0x2fad72805f5af,0x2fad72805f5af,1
1345
+ np.float64,0x3fe1b827aa637050,0x3fdc33bf46012c0d,1
1346
+ np.float64,0x3fc3f3f8e227e7f2,0x3fc28aeb86d65278,1
1347
+ np.float64,0x3fec018933780312,0x3fe41e619aa4285c,1
1348
+ np.float64,0xbfd92428e0b24852,0xbfdfeecb08d154df,1
1349
+ np.float64,0x2d7046845ae0a,0x2d7046845ae0a,1
1350
+ np.float64,0x7fde7fd2233cffa3,0x408628550f8a948f,1
1351
+ np.float64,0x8000a32cd241465a,0x8000a32cd241465a,1
1352
+ np.float64,0x8004267a45084cf5,0x8004267a45084cf5,1
1353
+ np.float64,0xbfe6b422556d6844,0xbff3c71f67661e6e,1
1354
+ np.float64,0x3fe3a37d922746fb,0x3fdea04e04d6195c,1
1355
+ np.float64,0xbfddcc54b53b98aa,0xbfe40d2389cdb848,1
1356
+ np.float64,0x3fe18b4b92a31697,0x3fdbf9e68cbf5794,1
1357
+ np.float64,0x7fc9c5b2ee338b65,0x408621709a17a47a,1
1358
+ np.float64,0x1ebd1ce03d7b,0x1ebd1ce03d7b,1
1359
+ np.float64,0x8008a6fc39d14df9,0x8008a6fc39d14df9,1
1360
+ np.float64,0x3fec11384c782270,0x3fe426bdaedd2965,1
1361
+ np.float64,0x3fefc28344ff8507,0x3fe60f75d34fc3d2,1
1362
+ np.float64,0xc35f379786be7,0xc35f379786be7,1
1363
+ np.float64,0x3feef51f4a7dea3e,0x3fe5a7b95d7786b5,1
1364
+ np.float64,0x3fec9b9f0379373e,0x3fe4702477abbb63,1
1365
+ np.float64,0x3fde94f8cdbd29f0,0x3fd8ff50f7df0a6f,1
1366
+ np.float64,0xbfed32d1cdfa65a4,0xc0037c1470f6f979,1
1367
+ np.float64,0x800d3ba44f5a7749,0x800d3ba44f5a7749,1
1368
+ np.float64,0x3fe3c56c8fe78ad9,0x3fdeca4eb9bb8918,1
1369
+ np.float64,0xbfe7c97242ef92e4,0xbff5c2950dfd6f69,1
1370
+ np.float64,0xbd9440057b288,0xbd9440057b288,1
1371
+ np.float64,0x7feb2fc111f65f81,0x40862cf524bd2001,1
1372
+ np.float64,0x800a431e2df4863d,0x800a431e2df4863d,1
1373
+ np.float64,0x80038a3b79e71478,0x80038a3b79e71478,1
1374
+ np.float64,0x80000c93d4601928,0x80000c93d4601928,1
1375
+ np.float64,0x7fe9fec022f3fd7f,0x40862c995db8ada0,1
1376
+ np.float64,0x3fead0129c35a025,0x3fe379d7a92c8f79,1
1377
+ np.float64,0x3fdd8cbaf7bb1974,0x3fd84b87ff0c26c7,1
1378
+ np.float64,0x3fe8fb7c60b1f6f9,0x3fe276d5339e7135,1
1379
+ np.float64,0x85a255e10b44b,0x85a255e10b44b,1
1380
+ np.float64,0xbfe507c23fea0f84,0xbff1212d2260022a,1
1381
+ np.float64,0x3fc5487c7b2a90f9,0x3fc3b03222d3d148,1
1382
+ np.float64,0x7fec0bdcb8f817b8,0x40862d34e8fd11e7,1
1383
+ np.float64,0xbfc5f34b4f2be698,0xbfc8146a899c7a0c,1
1384
+ np.float64,0xbfa2a49c14254940,0xbfa2fdab2eae3826,1
1385
+ np.float64,0x800ec52f15dd8a5e,0x800ec52f15dd8a5e,1
1386
+ np.float64,0xbfe3ba4b12a77496,0xbfeeab256b3e9422,1
1387
+ np.float64,0x80034d6c7ba69ada,0x80034d6c7ba69ada,1
1388
+ np.float64,0x7fd394d4202729a7,0x408624c98a216742,1
1389
+ np.float64,0xbfd4493a38289274,0xbfd865d67af2de91,1
1390
+ np.float64,0xe47d6203c8fad,0xe47d6203c8fad,1
1391
+ np.float64,0x98eb4e4b31d6a,0x98eb4e4b31d6a,1
1392
+ np.float64,0x4507fb128a100,0x4507fb128a100,1
1393
+ np.float64,0xbfc77032e42ee064,0xbfc9e36ab747a14d,1
1394
+ np.float64,0xa1f8a03b43f14,0xa1f8a03b43f14,1
1395
+ np.float64,0xbfc3d4da8527a9b4,0xbfc58c27af2476b0,1
1396
+ np.float64,0x3fc0eb7d6921d6fb,0x3fbfc858a077ed61,1
1397
+ np.float64,0x7fddb2e9403b65d2,0x4086281e98443709,1
1398
+ np.float64,0xbfa7ea62942fd4c0,0xbfa87dfd06b05d2a,1
1399
+ np.float64,0xbfe7d5c5426fab8a,0xbff5daa969c6d9e5,1
1400
+ np.float64,0x3fbf7cba0c3ef974,0x3fbdb23cd8fe875b,1
1401
+ np.float64,0x7fe92021eb324043,0x40862c53aee8b154,1
1402
+ np.float64,0x7fefbaa1827f7542,0x40862e3194737072,1
1403
+ np.float64,0x3fc6f82c402df059,0x3fc520432cbc533f,1
1404
+ np.float64,0x7fb37679a826ecf2,0x408619a5f857e27f,1
1405
+ np.float64,0x79ec1528f3d83,0x79ec1528f3d83,1
1406
+ np.float64,0x3fbefe1d0c3dfc3a,0x3fbd41650ba2c893,1
1407
+ np.float64,0x3fc3e5e11827cbc2,0x3fc27eb9b47c9c42,1
1408
+ np.float64,0x16aed1922d5db,0x16aed1922d5db,1
1409
+ np.float64,0x800124f7e58249f1,0x800124f7e58249f1,1
1410
+ np.float64,0x8004f7d12489efa3,0x8004f7d12489efa3,1
1411
+ np.float64,0x3fef80b8e27f0172,0x3fe5ee5fd43322c6,1
1412
+ np.float64,0xbfe7740c88eee819,0xbff51f823c8da14d,1
1413
+ np.float64,0xbfe6e1f1f6edc3e4,0xbff416bcb1302e7c,1
1414
+ np.float64,0x8001a2c4a7e3458a,0x8001a2c4a7e3458a,1
1415
+ np.float64,0x3fe861e155f0c3c2,0x3fe2201d3000c329,1
1416
+ np.float64,0x3fd00a101a201420,0x3fcca01087dbd728,1
1417
+ np.float64,0x7fdf0eb1133e1d61,0x4086287a327839b8,1
1418
+ np.float64,0x95e3ffdb2bc80,0x95e3ffdb2bc80,1
1419
+ np.float64,0x3fd87a1e8230f43d,0x3fd4ba1eb9be1270,1
1420
+ np.float64,0x3fedc4792afb88f2,0x3fe50b6529080f73,1
1421
+ np.float64,0x7fc9e81fa833d03e,0x4086217b428cc6ff,1
1422
+ np.float64,0xbfd21f1ba5a43e38,0xbfd54e048b988e09,1
1423
+ np.float64,0xbfbf52af5a3ea560,0xbfc0b4ab3b81fafc,1
1424
+ np.float64,0x7fe475f8e268ebf1,0x40862aaf14fee029,1
1425
+ np.float64,0x3fcf56899f3ead10,0x3fcc081de28ae9cf,1
1426
+ np.float64,0x917d407122fa8,0x917d407122fa8,1
1427
+ np.float64,0x22e23e3245c49,0x22e23e3245c49,1
1428
+ np.float64,0xbfeec2814f3d8503,0xc00a00ecca27b426,1
1429
+ np.float64,0xbfd97fee1c32ffdc,0xbfe04351dfe306ec,1