numpy 2.4.1__cp314-cp314t-win_arm64.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 (932) 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 +955 -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 +201 -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.cp314t-win_arm64.lib +0 -0
  30. numpy/_core/_multiarray_tests.cp314t-win_arm64.pyd +0 -0
  31. numpy/_core/_multiarray_umath.cp314t-win_arm64.lib +0 -0
  32. numpy/_core/_multiarray_umath.cp314t-win_arm64.pyd +0 -0
  33. numpy/_core/_operand_flag_tests.cp314t-win_arm64.lib +0 -0
  34. numpy/_core/_operand_flag_tests.cp314t-win_arm64.pyd +0 -0
  35. numpy/_core/_rational_tests.cp314t-win_arm64.lib +0 -0
  36. numpy/_core/_rational_tests.cp314t-win_arm64.pyd +0 -0
  37. numpy/_core/_simd.cp314t-win_arm64.lib +0 -0
  38. numpy/_core/_simd.cp314t-win_arm64.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.cp314t-win_arm64.lib +0 -0
  43. numpy/_core/_struct_ufunc_tests.cp314t-win_arm64.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.cp314t-win_arm64.lib +0 -0
  49. numpy/_core/_umath_tests.cp314t-win_arm64.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 +1316 -0
  101. numpy/_core/numeric.py +2758 -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 +373 -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 +17 -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 +59 -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 +75 -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 +377 -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 +4295 -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.cp314t-win_arm64.lib +0 -0
  473. numpy/fft/_pocketfft_umath.cp314t-win_arm64.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 +4750 -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.cp314t-win_arm64.lib +0 -0
  579. numpy/linalg/_umath_linalg.cp314t-win_arm64.pyd +0 -0
  580. numpy/linalg/_umath_linalg.pyi +60 -0
  581. numpy/linalg/lapack_lite.cp314t-win_arm64.lib +0 -0
  582. numpy/linalg/lapack_lite.cp314t-win_arm64.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 +3720 -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.cp314t-win_arm64.lib +0 -0
  660. numpy/random/_bounded_integers.cp314t-win_arm64.pyd +0 -0
  661. numpy/random/_bounded_integers.pxd +38 -0
  662. numpy/random/_bounded_integers.pyi +1 -0
  663. numpy/random/_common.cp314t-win_arm64.lib +0 -0
  664. numpy/random/_common.cp314t-win_arm64.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.cp314t-win_arm64.lib +0 -0
  675. numpy/random/_generator.cp314t-win_arm64.pyd +0 -0
  676. numpy/random/_generator.pyi +862 -0
  677. numpy/random/_mt19937.cp314t-win_arm64.lib +0 -0
  678. numpy/random/_mt19937.cp314t-win_arm64.pyd +0 -0
  679. numpy/random/_mt19937.pyi +27 -0
  680. numpy/random/_pcg64.cp314t-win_arm64.lib +0 -0
  681. numpy/random/_pcg64.cp314t-win_arm64.pyd +0 -0
  682. numpy/random/_pcg64.pyi +41 -0
  683. numpy/random/_philox.cp314t-win_arm64.lib +0 -0
  684. numpy/random/_philox.cp314t-win_arm64.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.cp314t-win_arm64.lib +0 -0
  689. numpy/random/_sfc64.cp314t-win_arm64.pyd +0 -0
  690. numpy/random/_sfc64.pyi +25 -0
  691. numpy/random/bit_generator.cp314t-win_arm64.lib +0 -0
  692. numpy/random/bit_generator.cp314t-win_arm64.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.cp314t-win_arm64.lib +0 -0
  698. numpy/random/mtrand.cp314t-win_arm64.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 +277 -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.1.dist-info/DELVEWHEEL +2 -0
  910. numpy-2.4.1.dist-info/METADATA +139 -0
  911. numpy-2.4.1.dist-info/RECORD +932 -0
  912. numpy-2.4.1.dist-info/WHEEL +4 -0
  913. numpy-2.4.1.dist-info/entry_points.txt +13 -0
  914. numpy-2.4.1.dist-info/licenses/LICENSE.txt +914 -0
  915. numpy-2.4.1.dist-info/licenses/numpy/_core/include/numpy/libdivide/LICENSE.txt +21 -0
  916. numpy-2.4.1.dist-info/licenses/numpy/_core/src/common/pythoncapi-compat/COPYING +14 -0
  917. numpy-2.4.1.dist-info/licenses/numpy/_core/src/highway/LICENSE +371 -0
  918. numpy-2.4.1.dist-info/licenses/numpy/_core/src/multiarray/dragon4_LICENSE.txt +27 -0
  919. numpy-2.4.1.dist-info/licenses/numpy/_core/src/npysort/x86-simd-sort/LICENSE.md +28 -0
  920. numpy-2.4.1.dist-info/licenses/numpy/_core/src/umath/svml/LICENSE +30 -0
  921. numpy-2.4.1.dist-info/licenses/numpy/fft/pocketfft/LICENSE.md +25 -0
  922. numpy-2.4.1.dist-info/licenses/numpy/linalg/lapack_lite/LICENSE.txt +48 -0
  923. numpy-2.4.1.dist-info/licenses/numpy/ma/LICENSE +24 -0
  924. numpy-2.4.1.dist-info/licenses/numpy/random/LICENSE.md +71 -0
  925. numpy-2.4.1.dist-info/licenses/numpy/random/src/distributions/LICENSE.md +61 -0
  926. numpy-2.4.1.dist-info/licenses/numpy/random/src/mt19937/LICENSE.md +61 -0
  927. numpy-2.4.1.dist-info/licenses/numpy/random/src/pcg64/LICENSE.md +22 -0
  928. numpy-2.4.1.dist-info/licenses/numpy/random/src/philox/LICENSE.md +31 -0
  929. numpy-2.4.1.dist-info/licenses/numpy/random/src/sfc64/LICENSE.md +27 -0
  930. numpy-2.4.1.dist-info/licenses/numpy/random/src/splitmix64/LICENSE.md +9 -0
  931. numpy.libs/msvcp140-5f1c5dd31916990d94181e07bc3afb32.dll +0 -0
  932. numpy.libs/scipy_openblas-7b69cbfd2599e6035f1310f2a72d59a6.dll +0 -0
@@ -0,0 +1,1429 @@
1
+ dtype,input,output,ulperrortol
2
+ np.float32,0xbddd7f50,0x3fd6eec2,3
3
+ np.float32,0xbe32a20c,0x3fdf8182,3
4
+ np.float32,0xbf607c09,0x4028f84f,3
5
+ np.float32,0x3f25d906,0x3f5db544,3
6
+ np.float32,0x3f01cec8,0x3f84febf,3
7
+ np.float32,0x3f1d5c6e,0x3f68a735,3
8
+ np.float32,0xbf0cab89,0x4009c36d,3
9
+ np.float32,0xbf176b40,0x400d0941,3
10
+ np.float32,0x3f3248b2,0x3f4ce6d4,3
11
+ np.float32,0x3f390b48,0x3f434e0d,3
12
+ np.float32,0xbe261698,0x3fddea43,3
13
+ np.float32,0x3f0e1154,0x3f7b848b,3
14
+ np.float32,0xbf379a3c,0x4017b764,3
15
+ np.float32,0xbeda6f2c,0x4000bd62,3
16
+ np.float32,0xbf6a0c3f,0x402e5d5a,3
17
+ np.float32,0x3ef1d700,0x3f8a17b7,3
18
+ np.float32,0xbf6f4f65,0x4031d30d,3
19
+ np.float32,0x3f2c9eee,0x3f54adfd,3
20
+ np.float32,0x3f3cfb18,0x3f3d8a1e,3
21
+ np.float32,0x3ba80800,0x3fc867d2,3
22
+ np.float32,0x3e723b08,0x3faa7e4d,3
23
+ np.float32,0xbf65820f,0x402bb054,3
24
+ np.float32,0xbee64e7a,0x40026410,3
25
+ np.float32,0x3cb15140,0x3fc64a87,3
26
+ np.float32,0x3f193660,0x3f6ddf2a,3
27
+ np.float32,0xbf0e5b52,0x400a44f7,3
28
+ np.float32,0x3ed55f14,0x3f920a4b,3
29
+ np.float32,0x3dd11a80,0x3fbbf85c,3
30
+ np.float32,0xbf4f5c4b,0x4020f4f9,3
31
+ np.float32,0x3f787532,0x3e792e87,3
32
+ np.float32,0x3f40e6ac,0x3f37a74f,3
33
+ np.float32,0x3f1c1318,0x3f6a47b6,3
34
+ np.float32,0xbe3c48d8,0x3fe0bb70,3
35
+ np.float32,0xbe94d4bc,0x3feed08e,3
36
+ np.float32,0xbe5c3688,0x3fe4ce26,3
37
+ np.float32,0xbf6fe026,0x403239cb,3
38
+ np.float32,0x3ea5983c,0x3f9ee7bf,3
39
+ np.float32,0x3f1471e6,0x3f73c5bb,3
40
+ np.float32,0x3f0e2622,0x3f7b6b87,3
41
+ np.float32,0xbf597180,0x40257ad1,3
42
+ np.float32,0xbeb5321c,0x3ff75d34,3
43
+ np.float32,0x3f5afcd2,0x3f0b6012,3
44
+ np.float32,0xbef2ff88,0x40042e14,3
45
+ np.float32,0xbedc747e,0x400104f5,3
46
+ np.float32,0xbee0c2f4,0x40019dfc,3
47
+ np.float32,0xbf152cd8,0x400c57dc,3
48
+ np.float32,0xbf6cf9e2,0x40303bbe,3
49
+ np.float32,0x3ed9cd74,0x3f90d1a1,3
50
+ np.float32,0xbf754406,0x4036767f,3
51
+ np.float32,0x3f59c5c2,0x3f0db42f,3
52
+ np.float32,0x3f2eefd8,0x3f518684,3
53
+ np.float32,0xbf156bf9,0x400c6b49,3
54
+ np.float32,0xbd550790,0x3fcfb8dc,3
55
+ np.float32,0x3ede58fc,0x3f8f8f77,3
56
+ np.float32,0xbf00ac19,0x40063c4b,3
57
+ np.float32,0x3f4d25ba,0x3f24280e,3
58
+ np.float32,0xbe9568be,0x3feef73c,3
59
+ np.float32,0x3f67d154,0x3ee05547,3
60
+ np.float32,0x3f617226,0x3efcb4f4,3
61
+ np.float32,0xbf3ab41a,0x4018d6cc,3
62
+ np.float32,0xbf3186fe,0x401592cd,3
63
+ np.float32,0x3de3ba50,0x3fbacca9,3
64
+ np.float32,0x3e789f98,0x3fa9ab97,3
65
+ np.float32,0x3f016e08,0x3f8536d8,3
66
+ np.float32,0x3e8b618c,0x3fa5c571,3
67
+ np.float32,0x3eff97bc,0x3f8628a9,3
68
+ np.float32,0xbf6729f0,0x402ca32f,3
69
+ np.float32,0xbebec146,0x3ff9eddc,3
70
+ np.float32,0x3ddb2e60,0x3fbb563a,3
71
+ np.float32,0x3caa8e40,0x3fc66595,3
72
+ np.float32,0xbf5973f2,0x40257bfa,3
73
+ np.float32,0xbdd82c70,0x3fd69916,3
74
+ np.float32,0xbedf4c82,0x400169ef,3
75
+ np.float32,0x3ef8f22c,0x3f881184,3
76
+ np.float32,0xbf1d74d4,0x400eedc9,3
77
+ np.float32,0x3f2e10a6,0x3f52b790,3
78
+ np.float32,0xbf08ecc0,0x4008a628,3
79
+ np.float32,0x3ecb7db4,0x3f94be9f,3
80
+ np.float32,0xbf052ded,0x40078bfc,3
81
+ np.float32,0x3f2ee78a,0x3f5191e4,3
82
+ np.float32,0xbf56f4e1,0x40245194,3
83
+ np.float32,0x3f600a3e,0x3f014a25,3
84
+ np.float32,0x3f3836f8,0x3f44808b,3
85
+ np.float32,0x3ecabfbc,0x3f94f25c,3
86
+ np.float32,0x3c70f500,0x3fc72dec,3
87
+ np.float32,0x3f17c444,0x3f6fabf0,3
88
+ np.float32,0xbf4c22a5,0x401f9a09,3
89
+ np.float32,0xbe4205dc,0x3fe1765a,3
90
+ np.float32,0x3ea49138,0x3f9f2d36,3
91
+ np.float32,0xbece0082,0x3ffe106b,3
92
+ np.float32,0xbe387578,0x3fe03eef,3
93
+ np.float32,0xbf2b6466,0x40137a30,3
94
+ np.float32,0xbe9dadb2,0x3ff12204,3
95
+ np.float32,0xbf56b3f2,0x402433bb,3
96
+ np.float32,0xbdf9b4d8,0x3fd8b51f,3
97
+ np.float32,0x3f58a596,0x3f0fd4b4,3
98
+ np.float32,0xbedf5748,0x40016b6e,3
99
+ np.float32,0x3f446442,0x3f32476f,3
100
+ np.float32,0x3f5be886,0x3f099658,3
101
+ np.float32,0x3ea1e44c,0x3f9fe1de,3
102
+ np.float32,0xbf11e9b8,0x400b585f,3
103
+ np.float32,0xbf231f8f,0x4010befb,3
104
+ np.float32,0xbf4395ea,0x401c2dd0,3
105
+ np.float32,0x3e9e7784,0x3fa0c8a6,3
106
+ np.float32,0xbe255184,0x3fddd14c,3
107
+ np.float32,0x3f70d25e,0x3eb13148,3
108
+ np.float32,0x3f220cdc,0x3f62a722,3
109
+ np.float32,0xbd027bf0,0x3fcd23e7,3
110
+ np.float32,0x3e4ef8b8,0x3faf02d2,3
111
+ np.float32,0xbf76fc6b,0x40380728,3
112
+ np.float32,0xbf57e761,0x4024c1cd,3
113
+ np.float32,0x3ed4fc20,0x3f922580,3
114
+ np.float32,0xbf09b64a,0x4008e1db,3
115
+ np.float32,0x3f21ca62,0x3f62fcf5,3
116
+ np.float32,0xbe55f610,0x3fe40170,3
117
+ np.float32,0xbc0def80,0x3fca2bbb,3
118
+ np.float32,0xbebc8764,0x3ff9547b,3
119
+ np.float32,0x3ec1b200,0x3f9766d1,3
120
+ np.float32,0xbf4ee44e,0x4020c1ee,3
121
+ np.float32,0xbea85852,0x3ff3f22a,3
122
+ np.float32,0xbf195c0c,0x400da3d3,3
123
+ np.float32,0xbf754b5d,0x40367ce8,3
124
+ np.float32,0xbdcbfe50,0x3fd5d52b,3
125
+ np.float32,0xbf1adb87,0x400e1be3,3
126
+ np.float32,0xbf6f8491,0x4031f898,3
127
+ np.float32,0xbf6f9ae7,0x4032086e,3
128
+ np.float32,0xbf52b3f0,0x40226790,3
129
+ np.float32,0xbf698452,0x402e09f4,3
130
+ np.float32,0xbf43dc9a,0x401c493a,3
131
+ np.float32,0xbf165f7f,0x400cb664,3
132
+ np.float32,0x3e635468,0x3fac682f,3
133
+ np.float32,0xbe8cf2b6,0x3fecc28a,3
134
+ np.float32,0x7f7fffff,0x7fc00000,3
135
+ np.float32,0xbf4c6513,0x401fb597,3
136
+ np.float32,0xbf02b8f8,0x4006d47e,3
137
+ np.float32,0x3ed3759c,0x3f9290c8,3
138
+ np.float32,0xbf2a7a5f,0x40132b98,3
139
+ np.float32,0xbae65000,0x3fc9496f,3
140
+ np.float32,0x3f65f5ea,0x3ee8ef07,3
141
+ np.float32,0xbe7712fc,0x3fe84106,3
142
+ np.float32,0xbb9ff700,0x3fc9afd2,3
143
+ np.float32,0x3d8d87a0,0x3fc03592,3
144
+ np.float32,0xbefc921c,0x40058c23,3
145
+ np.float32,0xbf286566,0x401279d8,3
146
+ np.float32,0x3f53857e,0x3f192eaf,3
147
+ np.float32,0xbee9b0f4,0x4002dd90,3
148
+ np.float32,0x3f4041f8,0x3f38a14a,3
149
+ np.float32,0x3f54ea96,0x3f16b02d,3
150
+ np.float32,0x3ea50ef8,0x3f9f0c01,3
151
+ np.float32,0xbeaad2dc,0x3ff49a4a,3
152
+ np.float32,0xbec428c8,0x3ffb636f,3
153
+ np.float32,0xbda46178,0x3fd358c7,3
154
+ np.float32,0xbefacfc4,0x40054b7f,3
155
+ np.float32,0xbf7068f9,0x40329c85,3
156
+ np.float32,0x3f70b850,0x3eb1caa7,3
157
+ np.float32,0x7fa00000,0x7fe00000,3
158
+ np.float32,0x80000000,0x3fc90fdb,3
159
+ np.float32,0x3f68d5c8,0x3edb7cf3,3
160
+ np.float32,0x3d9443d0,0x3fbfc98a,3
161
+ np.float32,0xff7fffff,0x7fc00000,3
162
+ np.float32,0xbeee7ba8,0x40038a5e,3
163
+ np.float32,0xbf0aaaba,0x40092a73,3
164
+ np.float32,0x3f36a4e8,0x3f46c0ee,3
165
+ np.float32,0x3ed268e4,0x3f92da82,3
166
+ np.float32,0xbee6002c,0x4002591b,3
167
+ np.float32,0xbe8f2752,0x3fed5576,3
168
+ np.float32,0x3f525912,0x3f1b40e0,3
169
+ np.float32,0xbe8e151e,0x3fed0e16,3
170
+ np.float32,0x1,0x3fc90fdb,3
171
+ np.float32,0x3ee23b84,0x3f8e7ae1,3
172
+ np.float32,0xbf5961ca,0x40257361,3
173
+ np.float32,0x3f6bbca0,0x3ecd14cd,3
174
+ np.float32,0x3e27b230,0x3fb4014d,3
175
+ np.float32,0xbf183bb8,0x400d49fc,3
176
+ np.float32,0x3f57759c,0x3f120b68,3
177
+ np.float32,0xbd6994c0,0x3fd05d84,3
178
+ np.float32,0xbf1dd684,0x400f0cc8,3
179
+ np.float32,0xbececc1c,0x3ffe480a,3
180
+ np.float32,0xbf48855f,0x401e206d,3
181
+ np.float32,0x3f28c922,0x3f59d382,3
182
+ np.float32,0xbf65c094,0x402bd3b0,3
183
+ np.float32,0x3f657d42,0x3eeb11dd,3
184
+ np.float32,0xbed32d4e,0x3fff7b15,3
185
+ np.float32,0xbf31af02,0x4015a0b1,3
186
+ np.float32,0x3d89eb00,0x3fc06f7f,3
187
+ np.float32,0x3dac2830,0x3fbe4a17,3
188
+ np.float32,0x3f7f7cb6,0x3d81a7df,3
189
+ np.float32,0xbedbb570,0x4000ea82,3
190
+ np.float32,0x3db37830,0x3fbdd4a8,3
191
+ np.float32,0xbf376f48,0x4017a7fd,3
192
+ np.float32,0x3f319f12,0x3f4dd2c9,3
193
+ np.float32,0x7fc00000,0x7fc00000,3
194
+ np.float32,0x3f1b4f70,0x3f6b3e31,3
195
+ np.float32,0x3e33c880,0x3fb278d1,3
196
+ np.float32,0x3f2796e0,0x3f5b69bd,3
197
+ np.float32,0x3f4915d6,0x3f2ad4d0,3
198
+ np.float32,0x3e4db120,0x3faf2ca0,3
199
+ np.float32,0x3ef03dd4,0x3f8a8ba9,3
200
+ np.float32,0x3e96ca88,0x3fa2cbf7,3
201
+ np.float32,0xbeb136ce,0x3ff64d2b,3
202
+ np.float32,0xbf2f3938,0x4014c75e,3
203
+ np.float32,0x3f769dde,0x3e8b0d76,3
204
+ np.float32,0x3f67cec8,0x3ee06148,3
205
+ np.float32,0x3f0a1ade,0x3f80204e,3
206
+ np.float32,0x3e4b9718,0x3faf7144,3
207
+ np.float32,0x3cccb480,0x3fc5dcf3,3
208
+ np.float32,0x3caeb740,0x3fc654f0,3
209
+ np.float32,0x3f684e0e,0x3ede0678,3
210
+ np.float32,0x3f0ba93c,0x3f7e6663,3
211
+ np.float32,0xbf12bbc4,0x400b985e,3
212
+ np.float32,0xbf2a8e1a,0x40133235,3
213
+ np.float32,0x3f42029c,0x3f35f5c5,3
214
+ np.float32,0x3eed1728,0x3f8b6f9c,3
215
+ np.float32,0xbe5779ac,0x3fe432fd,3
216
+ np.float32,0x3f6ed8b8,0x3ebc7e4b,3
217
+ np.float32,0x3eea25b0,0x3f8c43c7,3
218
+ np.float32,0x3f1988a4,0x3f6d786b,3
219
+ np.float32,0xbe751674,0x3fe7ff8a,3
220
+ np.float32,0xbe9f7418,0x3ff1997d,3
221
+ np.float32,0x3dca11d0,0x3fbc6979,3
222
+ np.float32,0x3f795226,0x3e6a6cab,3
223
+ np.float32,0xbea780e0,0x3ff3b926,3
224
+ np.float32,0xbed92770,0x4000901e,3
225
+ np.float32,0xbf3e9f8c,0x401a49f8,3
226
+ np.float32,0x3f0f7054,0x3f79ddb2,3
227
+ np.float32,0x3a99d400,0x3fc8e966,3
228
+ np.float32,0xbef082b0,0x4003d3c6,3
229
+ np.float32,0xbf0d0790,0x4009defb,3
230
+ np.float32,0xbf1649da,0x400cafb4,3
231
+ np.float32,0xbea5aca8,0x3ff33d5c,3
232
+ np.float32,0xbf4e1843,0x40206ba1,3
233
+ np.float32,0xbe3d7d5c,0x3fe0e2ad,3
234
+ np.float32,0xbf0e802d,0x400a500e,3
235
+ np.float32,0xbf0de8f0,0x400a2295,3
236
+ np.float32,0xbf3016ba,0x4015137e,3
237
+ np.float32,0x3f36b1ea,0x3f46ae5d,3
238
+ np.float32,0xbd27f170,0x3fce4fc7,3
239
+ np.float32,0x3e96ec54,0x3fa2c31f,3
240
+ np.float32,0x3eb4dfdc,0x3f9ad87d,3
241
+ np.float32,0x3f5cac6c,0x3f0815cc,3
242
+ np.float32,0xbf0489aa,0x40075bf1,3
243
+ np.float32,0x3df010c0,0x3fba05f5,3
244
+ np.float32,0xbf229f4a,0x4010956a,3
245
+ np.float32,0x3f75e474,0x3e905a99,3
246
+ np.float32,0xbcece6a0,0x3fccc397,3
247
+ np.float32,0xbdb41528,0x3fd454e7,3
248
+ np.float32,0x3ec8b2f8,0x3f958118,3
249
+ np.float32,0x3f5eaa70,0x3f041a1d,3
250
+ np.float32,0xbf32e1cc,0x40160b91,3
251
+ np.float32,0xbe8e6026,0x3fed219c,3
252
+ np.float32,0x3e6b3160,0x3fab65e3,3
253
+ np.float32,0x3e6d7460,0x3fab1b81,3
254
+ np.float32,0xbf13fbde,0x400bfa3b,3
255
+ np.float32,0xbe8235ec,0x3fe9f9e3,3
256
+ np.float32,0x3d71c4a0,0x3fc18096,3
257
+ np.float32,0x3eb769d0,0x3f9a2aa0,3
258
+ np.float32,0xbf68cb3b,0x402d99e4,3
259
+ np.float32,0xbd917610,0x3fd22932,3
260
+ np.float32,0x3d3cba60,0x3fc3297f,3
261
+ np.float32,0xbf383cbe,0x4017f1cc,3
262
+ np.float32,0xbeee96d0,0x40038e34,3
263
+ np.float32,0x3ec89cb4,0x3f958725,3
264
+ np.float32,0x3ebf92d8,0x3f97f95f,3
265
+ np.float32,0x3f30f3da,0x3f4ec021,3
266
+ np.float32,0xbd26b560,0x3fce45e4,3
267
+ np.float32,0xbec0eb12,0x3ffa8330,3
268
+ np.float32,0x3f6d592a,0x3ec4a6c1,3
269
+ np.float32,0x3ea6d39c,0x3f9e9463,3
270
+ np.float32,0x3e884184,0x3fa6951e,3
271
+ np.float32,0x3ea566c4,0x3f9ef4d1,3
272
+ np.float32,0x3f0c8f4c,0x3f7d5380,3
273
+ np.float32,0x3f28e1ba,0x3f59b2cb,3
274
+ np.float32,0x3f798538,0x3e66e1c3,3
275
+ np.float32,0xbe2889b8,0x3fde39b8,3
276
+ np.float32,0x3f3da05e,0x3f3c949c,3
277
+ np.float32,0x3f24d700,0x3f5f073e,3
278
+ np.float32,0xbe5b5768,0x3fe4b198,3
279
+ np.float32,0xbed3b03a,0x3fff9f05,3
280
+ np.float32,0x3e8a1c4c,0x3fa619eb,3
281
+ np.float32,0xbf075d24,0x40083030,3
282
+ np.float32,0x3f765648,0x3e8d1f52,3
283
+ np.float32,0xbf70fc5e,0x403308bb,3
284
+ np.float32,0x3f557ae8,0x3f15ab76,3
285
+ np.float32,0x3f02f7ea,0x3f84521c,3
286
+ np.float32,0x3f7ebbde,0x3dcbc5c5,3
287
+ np.float32,0xbefbdfc6,0x40057285,3
288
+ np.float32,0x3ec687ac,0x3f9617d9,3
289
+ np.float32,0x3e4831c8,0x3fafe01b,3
290
+ np.float32,0x3e25cde0,0x3fb43ea8,3
291
+ np.float32,0x3e4f2ab8,0x3faefc70,3
292
+ np.float32,0x3ea60ae4,0x3f9ec973,3
293
+ np.float32,0xbf1ed55f,0x400f5dde,3
294
+ np.float32,0xbf5ad4aa,0x40262479,3
295
+ np.float32,0x3e8b3594,0x3fa5d0de,3
296
+ np.float32,0x3f3a77aa,0x3f413c80,3
297
+ np.float32,0xbf07512b,0x40082ca9,3
298
+ np.float32,0x3f33d990,0x3f4ab5e5,3
299
+ np.float32,0x3f521556,0x3f1bb78f,3
300
+ np.float32,0xbecf6036,0x3ffe7086,3
301
+ np.float32,0x3db91bd0,0x3fbd7a11,3
302
+ np.float32,0x3ef63a74,0x3f88d839,3
303
+ np.float32,0xbf2f1116,0x4014b99c,3
304
+ np.float32,0xbf17fdc0,0x400d36b9,3
305
+ np.float32,0xbe87df2c,0x3feb7117,3
306
+ np.float32,0x80800000,0x3fc90fdb,3
307
+ np.float32,0x3ee24c1c,0x3f8e7641,3
308
+ np.float32,0x3f688dce,0x3edcd644,3
309
+ np.float32,0xbf0f4e1c,0x400a8e1b,3
310
+ np.float32,0x0,0x3fc90fdb,3
311
+ np.float32,0x3f786eba,0x3e7999d4,3
312
+ np.float32,0xbf404f80,0x401aeca8,3
313
+ np.float32,0xbe9ffb6a,0x3ff1bd18,3
314
+ np.float32,0x3f146bfc,0x3f73ccfd,3
315
+ np.float32,0xbe47d630,0x3fe233ee,3
316
+ np.float32,0xbe95847c,0x3feefe7c,3
317
+ np.float32,0xbf135df0,0x400bc9e5,3
318
+ np.float32,0x3ea19f3c,0x3f9ff411,3
319
+ np.float32,0x3f235e20,0x3f60f247,3
320
+ np.float32,0xbec789ec,0x3ffc4def,3
321
+ np.float32,0x3f04b656,0x3f834db6,3
322
+ np.float32,0x3dfaf440,0x3fb95679,3
323
+ np.float32,0xbe4a7f28,0x3fe28abe,3
324
+ np.float32,0x3ed4850c,0x3f92463b,3
325
+ np.float32,0x3ec4ba5c,0x3f9694dd,3
326
+ np.float32,0xbce24ca0,0x3fcc992b,3
327
+ np.float32,0xbf5b7c6e,0x402675a0,3
328
+ np.float32,0xbea3ce2a,0x3ff2bf04,3
329
+ np.float32,0x3db02c60,0x3fbe0998,3
330
+ np.float32,0x3c47b780,0x3fc78069,3
331
+ np.float32,0x3ed33b20,0x3f92a0d5,3
332
+ np.float32,0xbf4556d7,0x401cdcde,3
333
+ np.float32,0xbe1b6e28,0x3fdc90ec,3
334
+ np.float32,0xbf3289b7,0x4015ecd0,3
335
+ np.float32,0x3df3f240,0x3fb9c76d,3
336
+ np.float32,0x3eefa7d0,0x3f8ab61d,3
337
+ np.float32,0xbe945838,0x3feeb006,3
338
+ np.float32,0xbf0b1386,0x400949a3,3
339
+ np.float32,0x3f77e546,0x3e812cc1,3
340
+ np.float32,0x3e804ba0,0x3fa8a480,3
341
+ np.float32,0x3f43dcea,0x3f331a06,3
342
+ np.float32,0x3eb87450,0x3f99e33c,3
343
+ np.float32,0x3e5f4898,0x3facecea,3
344
+ np.float32,0x3f646640,0x3eeff10e,3
345
+ np.float32,0x3f1aa832,0x3f6c1051,3
346
+ np.float32,0xbebf6bfa,0x3ffa1bdc,3
347
+ np.float32,0xbb77f300,0x3fc98bd4,3
348
+ np.float32,0x3f3587fe,0x3f485645,3
349
+ np.float32,0x3ef85f34,0x3f883b8c,3
350
+ np.float32,0x3f50e584,0x3f1dc82c,3
351
+ np.float32,0x3f1d30a8,0x3f68deb0,3
352
+ np.float32,0x3ee75a78,0x3f8d0c86,3
353
+ np.float32,0x3f2c023a,0x3f5581e1,3
354
+ np.float32,0xbf074e34,0x40082bca,3
355
+ np.float32,0xbead71f0,0x3ff54c6d,3
356
+ np.float32,0xbf39ed88,0x40188e69,3
357
+ np.float32,0x3f5d2fe6,0x3f07118b,3
358
+ np.float32,0xbf1f79f8,0x400f9267,3
359
+ np.float32,0x3e900c58,0x3fa48e99,3
360
+ np.float32,0xbf759cb2,0x4036c47b,3
361
+ np.float32,0x3f63329c,0x3ef5359c,3
362
+ np.float32,0xbf5d6755,0x40276709,3
363
+ np.float32,0x3f2ce31c,0x3f54519a,3
364
+ np.float32,0x7f800000,0x7fc00000,3
365
+ np.float32,0x3f1bf50e,0x3f6a6d9a,3
366
+ np.float32,0x3f258334,0x3f5e25d8,3
367
+ np.float32,0xbf661a3f,0x402c06ac,3
368
+ np.float32,0x3d1654c0,0x3fc45cef,3
369
+ np.float32,0xbef14a36,0x4003f009,3
370
+ np.float32,0xbf356051,0x4016ec3a,3
371
+ np.float32,0x3f6ccc42,0x3ec79193,3
372
+ np.float32,0xbf2fe3d6,0x401501f9,3
373
+ np.float32,0x3deedc80,0x3fba195b,3
374
+ np.float32,0x3f2e5a28,0x3f52533e,3
375
+ np.float32,0x3e6b68b8,0x3fab5ec8,3
376
+ np.float32,0x3e458240,0x3fb037b7,3
377
+ np.float32,0xbf24bab0,0x401144cb,3
378
+ np.float32,0x3f600f4c,0x3f013fb2,3
379
+ np.float32,0x3f021a04,0x3f84d316,3
380
+ np.float32,0x3f741732,0x3e9cc948,3
381
+ np.float32,0x3f0788aa,0x3f81a5b0,3
382
+ np.float32,0x3f28802c,0x3f5a347c,3
383
+ np.float32,0x3c9eb400,0x3fc69500,3
384
+ np.float32,0x3e5d11e8,0x3fad357a,3
385
+ np.float32,0x3d921250,0x3fbfecb9,3
386
+ np.float32,0x3f354866,0x3f48b066,3
387
+ np.float32,0xbf72cf43,0x40346d84,3
388
+ np.float32,0x3eecdbb8,0x3f8b805f,3
389
+ np.float32,0xbee585d0,0x400247fd,3
390
+ np.float32,0x3e3607a8,0x3fb22fc6,3
391
+ np.float32,0xbf0cb7d6,0x4009c71c,3
392
+ np.float32,0xbf56b230,0x402432ec,3
393
+ np.float32,0xbf4ced02,0x401fee29,3
394
+ np.float32,0xbf3a325c,0x4018a776,3
395
+ np.float32,0x3ecae8bc,0x3f94e732,3
396
+ np.float32,0xbe48c7e8,0x3fe252bd,3
397
+ np.float32,0xbe175d7c,0x3fdc0d5b,3
398
+ np.float32,0x3ea78dac,0x3f9e632d,3
399
+ np.float32,0xbe7434a8,0x3fe7e279,3
400
+ np.float32,0x3f1f9e02,0x3f65c7b9,3
401
+ np.float32,0xbe150f2c,0x3fdbc2c2,3
402
+ np.float32,0x3ee13480,0x3f8ec423,3
403
+ np.float32,0x3ecb7d54,0x3f94beb9,3
404
+ np.float32,0x3f1cef42,0x3f693181,3
405
+ np.float32,0xbf1ec06a,0x400f5730,3
406
+ np.float32,0xbe112acc,0x3fdb44e8,3
407
+ np.float32,0xbe77b024,0x3fe85545,3
408
+ np.float32,0x3ec86fe0,0x3f959353,3
409
+ np.float32,0x3f36b326,0x3f46ac9a,3
410
+ np.float32,0x3e581a70,0x3fadd829,3
411
+ np.float32,0xbf032c0c,0x4006f5f9,3
412
+ np.float32,0xbf43b1fd,0x401c38b1,3
413
+ np.float32,0x3f3701b4,0x3f463c5c,3
414
+ np.float32,0x3f1a995a,0x3f6c22f1,3
415
+ np.float32,0xbf05de0b,0x4007bf97,3
416
+ np.float32,0x3d4bd960,0x3fc2b063,3
417
+ np.float32,0x3f0e1618,0x3f7b7ed0,3
418
+ np.float32,0x3edfd420,0x3f8f2628,3
419
+ np.float32,0xbf6662fe,0x402c3047,3
420
+ np.float32,0x3ec0690c,0x3f97bf9b,3
421
+ np.float32,0xbeaf4146,0x3ff5c7a0,3
422
+ np.float32,0x3f5e7764,0x3f04816d,3
423
+ np.float32,0xbedd192c,0x40011bc5,3
424
+ np.float32,0x3eb76350,0x3f9a2c5e,3
425
+ np.float32,0xbed8108c,0x400069a5,3
426
+ np.float32,0xbe59f31c,0x3fe48401,3
427
+ np.float32,0xbea3e1e6,0x3ff2c439,3
428
+ np.float32,0x3e26d1f8,0x3fb41db5,3
429
+ np.float32,0x3f3a0a7c,0x3f41dba5,3
430
+ np.float32,0x3ebae068,0x3f993ce4,3
431
+ np.float32,0x3f2d8e30,0x3f536942,3
432
+ np.float32,0xbe838bbe,0x3fea5247,3
433
+ np.float32,0x3ebe4420,0x3f98538f,3
434
+ np.float32,0xbcc59b80,0x3fcc265c,3
435
+ np.float32,0x3eebb5c8,0x3f8bd334,3
436
+ np.float32,0xbafc3400,0x3fc94ee8,3
437
+ np.float32,0xbf63ddc1,0x402ac683,3
438
+ np.float32,0xbeabdf80,0x3ff4e18f,3
439
+ np.float32,0x3ea863f0,0x3f9e2a78,3
440
+ np.float32,0x3f45b292,0x3f303bc1,3
441
+ np.float32,0xbe68aa60,0x3fe666bf,3
442
+ np.float32,0x3eb9de18,0x3f998239,3
443
+ np.float32,0xbf719d85,0x4033815e,3
444
+ np.float32,0x3edef9a8,0x3f8f62db,3
445
+ np.float32,0xbd7781c0,0x3fd0cd1e,3
446
+ np.float32,0x3f0b3b90,0x3f7ee92a,3
447
+ np.float32,0xbe3eb3b4,0x3fe10a27,3
448
+ np.float32,0xbf31a4c4,0x40159d23,3
449
+ np.float32,0x3e929434,0x3fa3e5b0,3
450
+ np.float32,0xbeb1a90e,0x3ff66b9e,3
451
+ np.float32,0xbeba9b5e,0x3ff8d048,3
452
+ np.float32,0xbf272a84,0x4012119e,3
453
+ np.float32,0x3f1ebbd0,0x3f66e889,3
454
+ np.float32,0x3ed3cdc8,0x3f927893,3
455
+ np.float32,0xbf50dfce,0x40219b58,3
456
+ np.float32,0x3f0c02de,0x3f7dfb62,3
457
+ np.float32,0xbf694de3,0x402de8d2,3
458
+ np.float32,0xbeaeb13e,0x3ff5a14f,3
459
+ np.float32,0xbf61aa7a,0x40299702,3
460
+ np.float32,0xbf13d159,0x400bed35,3
461
+ np.float32,0xbeecd034,0x40034e0b,3
462
+ np.float32,0xbe50c2e8,0x3fe35761,3
463
+ np.float32,0x3f714406,0x3eae8e57,3
464
+ np.float32,0xbf1ca486,0x400eabd8,3
465
+ np.float32,0x3f5858cc,0x3f106497,3
466
+ np.float32,0x3f670288,0x3ee41c84,3
467
+ np.float32,0xbf20bd2c,0x400ff9f5,3
468
+ np.float32,0xbe29afd8,0x3fde5eff,3
469
+ np.float32,0xbf635e6a,0x402a80f3,3
470
+ np.float32,0x3e82b7b0,0x3fa80446,3
471
+ np.float32,0x3e982e7c,0x3fa26ece,3
472
+ np.float32,0x3d9f0e00,0x3fbf1c6a,3
473
+ np.float32,0x3e8299b4,0x3fa80c07,3
474
+ np.float32,0xbf0529c1,0x40078ac3,3
475
+ np.float32,0xbf403b8a,0x401ae519,3
476
+ np.float32,0xbe57e09c,0x3fe44027,3
477
+ np.float32,0x3ea1c8f4,0x3f9fe913,3
478
+ np.float32,0xbe216a94,0x3fdd52d0,3
479
+ np.float32,0x3f59c442,0x3f0db709,3
480
+ np.float32,0xbd636260,0x3fd02bdd,3
481
+ np.float32,0xbdbbc788,0x3fd4d08d,3
482
+ np.float32,0x3dd19560,0x3fbbf0a3,3
483
+ np.float32,0x3f060ad4,0x3f828641,3
484
+ np.float32,0x3b102e00,0x3fc8c7c4,3
485
+ np.float32,0x3f42b3b8,0x3f34e5a6,3
486
+ np.float32,0x3f0255ac,0x3f84b071,3
487
+ np.float32,0xbf014898,0x40066996,3
488
+ np.float32,0x3e004dc0,0x3fb8fb51,3
489
+ np.float32,0xbf594ff8,0x40256af2,3
490
+ np.float32,0x3efafddc,0x3f877b80,3
491
+ np.float32,0xbf5f0780,0x40283899,3
492
+ np.float32,0x3ee95e54,0x3f8c7bcc,3
493
+ np.float32,0x3eba2f0c,0x3f996c80,3
494
+ np.float32,0x3f37721c,0x3f459b68,3
495
+ np.float32,0x3e2be780,0x3fb378bf,3
496
+ np.float32,0x3e550270,0x3fae3d69,3
497
+ np.float32,0x3e0f9500,0x3fb70e0a,3
498
+ np.float32,0xbf51974a,0x4021eaf4,3
499
+ np.float32,0x3f393832,0x3f430d05,3
500
+ np.float32,0x3f3df16a,0x3f3c1bd8,3
501
+ np.float32,0xbd662340,0x3fd041ed,3
502
+ np.float32,0x3f7e8418,0x3ddc9fce,3
503
+ np.float32,0xbf392734,0x40184672,3
504
+ np.float32,0x3ee3b278,0x3f8e124e,3
505
+ np.float32,0x3eed4808,0x3f8b61d2,3
506
+ np.float32,0xbf6fccbd,0x40322beb,3
507
+ np.float32,0x3e3ecdd0,0x3fb1123b,3
508
+ np.float32,0x3f4419e0,0x3f32bb45,3
509
+ np.float32,0x3f595e00,0x3f0e7914,3
510
+ np.float32,0xbe8c1486,0x3fec88c6,3
511
+ np.float32,0xbf800000,0x40490fdb,3
512
+ np.float32,0xbdaf5020,0x3fd4084d,3
513
+ np.float32,0xbf407660,0x401afb63,3
514
+ np.float32,0x3f0c3aa8,0x3f7db8b8,3
515
+ np.float32,0xbcdb5980,0x3fcc7d5b,3
516
+ np.float32,0x3f4738d4,0x3f2dd1ed,3
517
+ np.float32,0x3f4d7064,0x3f23ab14,3
518
+ np.float32,0xbeb1d576,0x3ff67774,3
519
+ np.float32,0xbf507166,0x40216bb3,3
520
+ np.float32,0x3e86484c,0x3fa71813,3
521
+ np.float32,0x3f09123e,0x3f80bd35,3
522
+ np.float32,0xbe9abe0e,0x3ff05cb2,3
523
+ np.float32,0x3f3019dc,0x3f4fed21,3
524
+ np.float32,0xbe99e00e,0x3ff0227d,3
525
+ np.float32,0xbf155ec5,0x400c6739,3
526
+ np.float32,0x3f5857ba,0x3f106698,3
527
+ np.float32,0x3edf619c,0x3f8f45fb,3
528
+ np.float32,0xbf5ab76a,0x40261664,3
529
+ np.float32,0x3e54b5a8,0x3fae4738,3
530
+ np.float32,0xbee92772,0x4002ca40,3
531
+ np.float32,0x3f2fd610,0x3f504a7a,3
532
+ np.float32,0xbf38521c,0x4017f97e,3
533
+ np.float32,0xff800000,0x7fc00000,3
534
+ np.float32,0x3e2da348,0x3fb34077,3
535
+ np.float32,0x3f2f85fa,0x3f50b894,3
536
+ np.float32,0x3e88f9c8,0x3fa66551,3
537
+ np.float32,0xbf61e570,0x4029b648,3
538
+ np.float32,0xbeab362c,0x3ff4b4a1,3
539
+ np.float32,0x3ec6c310,0x3f9607bd,3
540
+ np.float32,0x3f0d7bda,0x3f7c3810,3
541
+ np.float32,0xbeba5d36,0x3ff8bf99,3
542
+ np.float32,0x3f4b0554,0x3f27adda,3
543
+ np.float32,0x3f60f5dc,0x3efebfb3,3
544
+ np.float32,0x3f36ce2c,0x3f468603,3
545
+ np.float32,0xbe70afac,0x3fe76e8e,3
546
+ np.float32,0x3f673350,0x3ee339b5,3
547
+ np.float32,0xbe124cf0,0x3fdb698c,3
548
+ np.float32,0xbf1243dc,0x400b73d0,3
549
+ np.float32,0x3f3c8850,0x3f3e3407,3
550
+ np.float32,0x3ea02f24,0x3fa05500,3
551
+ np.float32,0xbeffed34,0x400607db,3
552
+ np.float32,0x3f5c75c2,0x3f08817c,3
553
+ np.float32,0x3f4b2fbe,0x3f27682d,3
554
+ np.float32,0x3ee47c34,0x3f8dd9f9,3
555
+ np.float32,0x3f50d48c,0x3f1de584,3
556
+ np.float32,0x3f12dc5e,0x3f75b628,3
557
+ np.float32,0xbefe7e4a,0x4005d2f4,3
558
+ np.float32,0xbec2e846,0x3ffb0cbc,3
559
+ np.float32,0xbedc3036,0x4000fb80,3
560
+ np.float32,0xbf48aedc,0x401e311f,3
561
+ np.float32,0x3f6e032e,0x3ec11363,3
562
+ np.float32,0xbf60de15,0x40292b72,3
563
+ np.float32,0x3f06585e,0x3f8258ba,3
564
+ np.float32,0x3ef49b98,0x3f894e66,3
565
+ np.float32,0x3cc5fe00,0x3fc5f7cf,3
566
+ np.float32,0xbf7525c5,0x40365c2c,3
567
+ np.float32,0x3f64f9f8,0x3eed5fb2,3
568
+ np.float32,0x3e8849c0,0x3fa692fb,3
569
+ np.float32,0x3e50c878,0x3faec79e,3
570
+ np.float32,0x3ed61530,0x3f91d831,3
571
+ np.float32,0xbf54872e,0x40233724,3
572
+ np.float32,0xbf52ee7f,0x4022815e,3
573
+ np.float32,0xbe708c24,0x3fe769fc,3
574
+ np.float32,0xbf26fc54,0x40120260,3
575
+ np.float32,0x3f226e8a,0x3f6228db,3
576
+ np.float32,0xbef30406,0x40042eb8,3
577
+ np.float32,0x3f5d996c,0x3f063f5f,3
578
+ np.float32,0xbf425f9c,0x401bb618,3
579
+ np.float32,0x3e4bb260,0x3faf6dc9,3
580
+ np.float32,0xbe52d5a4,0x3fe39b29,3
581
+ np.float32,0xbe169cf0,0x3fdbf505,3
582
+ np.float32,0xbedfc422,0x40017a8e,3
583
+ np.float32,0x3d8ffef0,0x3fc00e05,3
584
+ np.float32,0xbf12bdab,0x400b98f2,3
585
+ np.float32,0x3f295d0a,0x3f590e88,3
586
+ np.float32,0x3f49d8e4,0x3f2998aa,3
587
+ np.float32,0xbef914f4,0x40050c12,3
588
+ np.float32,0xbf4ea2b5,0x4020a61e,3
589
+ np.float32,0xbf3a89e5,0x4018c762,3
590
+ np.float32,0x3e8707b4,0x3fa6e67a,3
591
+ np.float32,0x3ac55400,0x3fc8de86,3
592
+ np.float32,0x800000,0x3fc90fdb,3
593
+ np.float32,0xbeb9762c,0x3ff8819b,3
594
+ np.float32,0xbebbe23c,0x3ff92815,3
595
+ np.float32,0xbf598c88,0x402587a1,3
596
+ np.float32,0x3e95d864,0x3fa30b4a,3
597
+ np.float32,0x3f7f6f40,0x3d882486,3
598
+ np.float32,0xbf53658c,0x4022b604,3
599
+ np.float32,0xbf2a35f2,0x401314ad,3
600
+ np.float32,0x3eb14380,0x3f9bcf28,3
601
+ np.float32,0x3f0e0c64,0x3f7b8a7a,3
602
+ np.float32,0x3d349920,0x3fc36a9a,3
603
+ np.float32,0xbec2092c,0x3ffad071,3
604
+ np.float32,0xbe1d08e8,0x3fdcc4e0,3
605
+ np.float32,0xbf008968,0x40063243,3
606
+ np.float32,0xbefad582,0x40054c51,3
607
+ np.float32,0xbe52d010,0x3fe39a72,3
608
+ np.float32,0x3f4afdac,0x3f27ba6b,3
609
+ np.float32,0x3f6c483c,0x3eca4408,3
610
+ np.float32,0xbef3cb68,0x40044b0c,3
611
+ np.float32,0x3e94687c,0x3fa36b6f,3
612
+ np.float32,0xbf64ae5c,0x402b39bb,3
613
+ np.float32,0xbf0022b4,0x40061497,3
614
+ np.float32,0x80000001,0x3fc90fdb,3
615
+ np.float32,0x3f25bcd0,0x3f5dda4b,3
616
+ np.float32,0x3ed91b40,0x3f9102d7,3
617
+ np.float32,0x3f800000,0x0,3
618
+ np.float32,0xbebc6aca,0x3ff94cca,3
619
+ np.float32,0x3f239e9a,0x3f609e7d,3
620
+ np.float32,0xbf7312be,0x4034a305,3
621
+ np.float32,0x3efd16d0,0x3f86e148,3
622
+ np.float32,0x3f52753a,0x3f1b0f72,3
623
+ np.float32,0xbde58960,0x3fd7702c,3
624
+ np.float32,0x3ef88580,0x3f883099,3
625
+ np.float32,0x3eebaefc,0x3f8bd51e,3
626
+ np.float32,0x3e877d2c,0x3fa6c807,3
627
+ np.float32,0x3f1a0324,0x3f6cdf32,3
628
+ np.float32,0xbedfe20a,0x40017eb6,3
629
+ np.float32,0x3f205a3c,0x3f64d69d,3
630
+ np.float32,0xbeed5b7c,0x400361b0,3
631
+ np.float32,0xbf69ba10,0x402e2ad0,3
632
+ np.float32,0x3c4fe200,0x3fc77014,3
633
+ np.float32,0x3f043310,0x3f839a69,3
634
+ np.float32,0xbeaf359a,0x3ff5c485,3
635
+ np.float32,0x3db3f110,0x3fbdcd12,3
636
+ np.float32,0x3e24af88,0x3fb462ed,3
637
+ np.float32,0xbf34e858,0x4016c1c8,3
638
+ np.float32,0x3f3334f2,0x3f4b9cd0,3
639
+ np.float32,0xbf145882,0x400c16a2,3
640
+ np.float32,0xbf541c38,0x40230748,3
641
+ np.float32,0x3eba7e10,0x3f99574b,3
642
+ np.float32,0xbe34c6e0,0x3fdfc731,3
643
+ np.float32,0xbe957abe,0x3feefbf0,3
644
+ np.float32,0xbf595a59,0x40256fdb,3
645
+ np.float32,0xbdedc7b8,0x3fd7f4f0,3
646
+ np.float32,0xbf627c02,0x402a06a9,3
647
+ np.float32,0x3f339b78,0x3f4b0d18,3
648
+ np.float32,0xbf2df6d2,0x40145929,3
649
+ np.float32,0x3f617726,0x3efc9fd8,3
650
+ np.float32,0xbee3a8fc,0x40020561,3
651
+ np.float32,0x3efe9f68,0x3f867043,3
652
+ np.float32,0xbf2c3e76,0x4013c3ba,3
653
+ np.float32,0xbf218f28,0x40103d84,3
654
+ np.float32,0xbf1ea847,0x400f4f7f,3
655
+ np.float32,0x3ded9160,0x3fba2e31,3
656
+ np.float32,0x3bce1b00,0x3fc841bf,3
657
+ np.float32,0xbe90566e,0x3feda46a,3
658
+ np.float32,0xbf5ea2ba,0x4028056b,3
659
+ np.float32,0x3f538e62,0x3f191ee6,3
660
+ np.float32,0xbf59e054,0x4025af74,3
661
+ np.float32,0xbe8c98ba,0x3fecab24,3
662
+ np.float32,0x3ee7bdb0,0x3f8cf0b7,3
663
+ np.float32,0xbf2eb828,0x40149b2b,3
664
+ np.float32,0xbe5eb904,0x3fe52068,3
665
+ np.float32,0xbf16b422,0x400cd08d,3
666
+ np.float32,0x3f1ab9b4,0x3f6bfa58,3
667
+ np.float32,0x3dc23040,0x3fbce82a,3
668
+ np.float32,0xbf29d9e7,0x4012f5e5,3
669
+ np.float32,0xbf38f30a,0x40183393,3
670
+ np.float32,0x3e88e798,0x3fa66a09,3
671
+ np.float32,0x3f1d07e6,0x3f69124f,3
672
+ np.float32,0xbe1d3d34,0x3fdccb7e,3
673
+ np.float32,0xbf1715be,0x400ceec2,3
674
+ np.float32,0x3f7a0eac,0x3e5d11f7,3
675
+ np.float32,0xbe764924,0x3fe82707,3
676
+ np.float32,0xbf01a1f8,0x4006837c,3
677
+ np.float32,0x3f2be730,0x3f55a661,3
678
+ np.float32,0xbf7bb070,0x403d4ce5,3
679
+ np.float32,0xbd602110,0x3fd011c9,3
680
+ np.float32,0x3f5d080c,0x3f07609d,3
681
+ np.float32,0xbda20400,0x3fd332d1,3
682
+ np.float32,0x3f1c62da,0x3f69e308,3
683
+ np.float32,0xbf2c6916,0x4013d223,3
684
+ np.float32,0xbf44f8fd,0x401cb816,3
685
+ np.float32,0x3f4da392,0x3f235539,3
686
+ np.float32,0x3e9e8aa0,0x3fa0c3a0,3
687
+ np.float32,0x3e9633c4,0x3fa2f366,3
688
+ np.float32,0xbf0422ab,0x40073ddd,3
689
+ np.float32,0x3f518386,0x3f1cb603,3
690
+ np.float32,0x3f24307a,0x3f5fe096,3
691
+ np.float32,0xbdfb4220,0x3fd8ce24,3
692
+ np.float32,0x3f179d28,0x3f6fdc7d,3
693
+ np.float32,0xbecc2df0,0x3ffd911e,3
694
+ np.float32,0x3f3dff0c,0x3f3c0782,3
695
+ np.float32,0xbf58c4d8,0x4025295b,3
696
+ np.float32,0xbdcf8438,0x3fd60dd3,3
697
+ np.float32,0xbeeaf1b2,0x40030aa7,3
698
+ np.float32,0xbf298a28,0x4012db45,3
699
+ np.float32,0x3f6c4dec,0x3eca2678,3
700
+ np.float32,0x3f4d1ac8,0x3f243a59,3
701
+ np.float32,0x3f62cdfa,0x3ef6e8f8,3
702
+ np.float32,0xbee8acce,0x4002b909,3
703
+ np.float32,0xbd5f2af0,0x3fd00a15,3
704
+ np.float32,0x3f5fde8e,0x3f01a453,3
705
+ np.float32,0x3e95233c,0x3fa33aa4,3
706
+ np.float32,0x3ecd2a60,0x3f9449be,3
707
+ np.float32,0x3f10aa86,0x3f78619d,3
708
+ np.float32,0x3f3888e8,0x3f440a70,3
709
+ np.float32,0x3eeb5bfc,0x3f8bec7d,3
710
+ np.float32,0xbe12d654,0x3fdb7ae6,3
711
+ np.float32,0x3eca3110,0x3f951931,3
712
+ np.float32,0xbe2d1b7c,0x3fdece05,3
713
+ np.float32,0xbf29e9db,0x4012fb3a,3
714
+ np.float32,0xbf0c50b8,0x4009a845,3
715
+ np.float32,0xbed9f0e4,0x4000abef,3
716
+ np.float64,0x3fd078ec5ba0f1d8,0x3ff4f7c00595a4d3,1
717
+ np.float64,0xbfdbc39743b7872e,0x400027f85bce43b2,1
718
+ np.float64,0xbfacd2707c39a4e0,0x3ffa08ae1075d766,1
719
+ np.float64,0xbfc956890f32ad14,0x3ffc52308e7285fd,1
720
+ np.float64,0xbf939c2298273840,0x3ff9706d18e6ea6b,1
721
+ np.float64,0xbfe0d7048961ae09,0x4000fff4406bd395,1
722
+ np.float64,0xbfe9d19b86f3a337,0x4004139bc683a69f,1
723
+ np.float64,0x3fd35c7f90a6b900,0x3ff437220e9123f8,1
724
+ np.float64,0x3fdddca171bbb944,0x3ff15da61e61ec08,1
725
+ np.float64,0x3feb300de9f6601c,0x3fe1c6fadb68cdca,1
726
+ np.float64,0xbfef1815327e302a,0x400739808fc6f964,1
727
+ np.float64,0xbfe332d78e6665af,0x4001b6c4ef922f7c,1
728
+ np.float64,0xbfedbf4dfb7b7e9c,0x40061cefed62a58b,1
729
+ np.float64,0xbfd8dcc7e3b1b990,0x3fff84307713c2c3,1
730
+ np.float64,0xbfedaf161c7b5e2c,0x400612027c1b2b25,1
731
+ np.float64,0xbfed9bde897b37bd,0x4006053f05bd7d26,1
732
+ np.float64,0xbfe081ebc26103d8,0x4000e70755eb66e0,1
733
+ np.float64,0xbfe0366f9c606cdf,0x4000d11212f29afd,1
734
+ np.float64,0xbfc7c115212f822c,0x3ffc1e8c9d58f7db,1
735
+ np.float64,0x3fd8dd9a78b1bb34,0x3ff2bf8d0f4c9376,1
736
+ np.float64,0xbfe54eff466a9dfe,0x4002655950b611f4,1
737
+ np.float64,0xbfe4aad987e955b3,0x40022efb19882518,1
738
+ np.float64,0x3f70231ca0204600,0x3ff911d834e7abf4,1
739
+ np.float64,0x3fede01d047bc03a,0x3fd773cecbd8561b,1
740
+ np.float64,0xbfd6a00d48ad401a,0x3ffee9fd7051633f,1
741
+ np.float64,0x3fd44f3d50a89e7c,0x3ff3f74dd0fc9c91,1
742
+ np.float64,0x3fe540f0d0ea81e2,0x3feb055a7c7d43d6,1
743
+ np.float64,0xbf3ba2e200374800,0x3ff923b582650c6c,1
744
+ np.float64,0x3fe93b2d3f72765a,0x3fe532fa15331072,1
745
+ np.float64,0x3fee8ce5a17d19cc,0x3fd35666eefbe336,1
746
+ np.float64,0x3fe55d5f8feabac0,0x3feadf3dcfe251d4,1
747
+ np.float64,0xbfd1d2ede8a3a5dc,0x3ffda600041ac884,1
748
+ np.float64,0xbfee41186e7c8231,0x40067a625cc6f64d,1
749
+ np.float64,0x3fe521a8b9ea4352,0x3feb2f1a6c8084e5,1
750
+ np.float64,0x3fc65378ef2ca6f0,0x3ff653dfe81ee9f2,1
751
+ np.float64,0x3fdaba0fbcb57420,0x3ff23d630995c6ba,1
752
+ np.float64,0xbfe6b7441d6d6e88,0x4002e182539a2994,1
753
+ np.float64,0x3fda00b6dcb4016c,0x3ff2703d516f28e7,1
754
+ np.float64,0xbfe8699f01f0d33e,0x400382326920ea9e,1
755
+ np.float64,0xbfef5889367eb112,0x4007832af5983793,1
756
+ np.float64,0x3fefb57c8aff6afa,0x3fc14700ab38dcef,1
757
+ np.float64,0xbfda0dfdaab41bfc,0x3fffd75b6fd497f6,1
758
+ np.float64,0xbfb059c36620b388,0x3ffa27c528b97a42,1
759
+ np.float64,0xbfdd450ab1ba8a16,0x40005dcac6ab50fd,1
760
+ np.float64,0xbfe54d6156ea9ac2,0x400264ce9f3f0fb9,1
761
+ np.float64,0xbfe076e94760edd2,0x4000e3d1374884da,1
762
+ np.float64,0xbfc063286720c650,0x3ffb2fd1d6bff0ef,1
763
+ np.float64,0xbfe24680f2e48d02,0x40016ddfbb5bcc0e,1
764
+ np.float64,0xbfdc9351d2b926a4,0x400044e3756fb765,1
765
+ np.float64,0x3fefb173d8ff62e8,0x3fc1bd5626f80850,1
766
+ np.float64,0x3fe77c117a6ef822,0x3fe7e57089bad2ec,1
767
+ np.float64,0xbfddbcebf7bb79d8,0x40006eadb60406b3,1
768
+ np.float64,0xbfecf6625ff9ecc5,0x40059e6c6961a6db,1
769
+ np.float64,0x3fdc8950b8b912a0,0x3ff1bcfb2e27795b,1
770
+ np.float64,0xbfeb2fa517765f4a,0x4004b00aee3e6888,1
771
+ np.float64,0x3fd0efc88da1df90,0x3ff4d8f7cbd8248a,1
772
+ np.float64,0xbfe6641a2becc834,0x4002c43362c1bd0f,1
773
+ np.float64,0xbfe28aec0fe515d8,0x400182c91d4df039,1
774
+ np.float64,0xbfd5ede8d0abdbd2,0x3ffeba7baef05ae8,1
775
+ np.float64,0xbfbd99702a3b32e0,0x3ffafca21c1053f1,1
776
+ np.float64,0x3f96f043f82de080,0x3ff8c6384d5eb610,1
777
+ np.float64,0xbfe5badbc9eb75b8,0x400289c8cd5873d1,1
778
+ np.float64,0x3fe5c6bf95eb8d80,0x3fea5093e9a3e43e,1
779
+ np.float64,0x3fb1955486232ab0,0x3ff8086d4c3e71d5,1
780
+ np.float64,0xbfea145f397428be,0x4004302237a35871,1
781
+ np.float64,0xbfdabe685db57cd0,0x400003e2e29725fb,1
782
+ np.float64,0xbfefc79758ff8f2f,0x400831814e23bfc8,1
783
+ np.float64,0x3fd7edb66cafdb6c,0x3ff3006c5123bfaf,1
784
+ np.float64,0xbfeaf7644bf5eec8,0x400495a7963ce4ed,1
785
+ np.float64,0x3fdf838d78bf071c,0x3ff0e527eed73800,1
786
+ np.float64,0xbfd1a0165ba3402c,0x3ffd98c5ab76d375,1
787
+ np.float64,0x3fd75b67a9aeb6d0,0x3ff327c8d80b17cf,1
788
+ np.float64,0x3fc2aa9647255530,0x3ff6ca854b157df1,1
789
+ np.float64,0xbfe0957fd4612b00,0x4000ecbf3932becd,1
790
+ np.float64,0x3fda1792c0b42f24,0x3ff269fbb2360487,1
791
+ np.float64,0x3fd480706ca900e0,0x3ff3ea53a6aa3ae8,1
792
+ np.float64,0xbfd0780ed9a0f01e,0x3ffd4bfd544c7d47,1
793
+ np.float64,0x3feeec0cd77dd81a,0x3fd0a8a241fdb441,1
794
+ np.float64,0x3fcfa933e93f5268,0x3ff5223478621a6b,1
795
+ np.float64,0x3fdad2481fb5a490,0x3ff236b86c6b2b49,1
796
+ np.float64,0x3fe03b129de07626,0x3ff09f21fb868451,1
797
+ np.float64,0xbfc01212cd202424,0x3ffb259a07159ae9,1
798
+ np.float64,0x3febdb912df7b722,0x3fe0768e20dac8c9,1
799
+ np.float64,0xbfbf2148763e4290,0x3ffb154c361ce5bf,1
800
+ np.float64,0xbfb1a7eb1e234fd8,0x3ffa3cb37ac4a176,1
801
+ np.float64,0xbfe26ad1ec64d5a4,0x400178f480ecce8d,1
802
+ np.float64,0x3fe6d1cd1b6da39a,0x3fe8dc20ec4dad3b,1
803
+ np.float64,0xbfede0e53dfbc1ca,0x4006340d3bdd7c97,1
804
+ np.float64,0xbfe8fd1bd9f1fa38,0x4003bc3477f93f40,1
805
+ np.float64,0xbfe329d0f26653a2,0x4001b3f345af5648,1
806
+ np.float64,0xbfe4bb20eee97642,0x40023451404d6d08,1
807
+ np.float64,0x3fb574832e2ae900,0x3ff7ca4bed0c7110,1
808
+ np.float64,0xbfdf3c098fbe7814,0x4000a525bb72d659,1
809
+ np.float64,0x3fa453e6d428a7c0,0x3ff87f512bb9b0c6,1
810
+ np.float64,0x3faaec888435d920,0x3ff84a7d9e4def63,1
811
+ np.float64,0xbfcdc240df3b8480,0x3ffce30ece754e7f,1
812
+ np.float64,0xbf8c3220f0386440,0x3ff95a600ae6e157,1
813
+ np.float64,0x3fe806076c700c0e,0x3fe71784a96c76eb,1
814
+ np.float64,0x3fedf9b0e17bf362,0x3fd6e35fc0a7b6c3,1
815
+ np.float64,0xbfe1b48422636908,0x400141bd8ed251bc,1
816
+ np.float64,0xbfe82e2817705c50,0x40036b5a5556d021,1
817
+ np.float64,0xbfc8ef8ff931df20,0x3ffc450ffae7ce58,1
818
+ np.float64,0xbfe919fa94f233f5,0x4003c7cce4697fe8,1
819
+ np.float64,0xbfc3ace4a72759c8,0x3ffb9a197bb22651,1
820
+ np.float64,0x3fe479f71ee8f3ee,0x3fec0bd2f59097aa,1
821
+ np.float64,0xbfeeb54a967d6a95,0x4006da12c83649c5,1
822
+ np.float64,0x3fe5e74ea8ebce9e,0x3fea2407cef0f08c,1
823
+ np.float64,0x3fb382baf2270570,0x3ff7e98213b921ba,1
824
+ np.float64,0xbfdd86fd3cbb0dfa,0x40006712952ddbcf,1
825
+ np.float64,0xbfd250eb52a4a1d6,0x3ffdc6d56253b1cd,1
826
+ np.float64,0x3fea30c4ed74618a,0x3fe3962deba4f30e,1
827
+ np.float64,0x3fc895963d312b30,0x3ff60a5d52fcbccc,1
828
+ np.float64,0x3fe9cc4f6273989e,0x3fe442740942c80f,1
829
+ np.float64,0xbfe8769f5cf0ed3f,0x4003873b4cb5bfce,1
830
+ np.float64,0xbfe382f3726705e7,0x4001cfeb3204d110,1
831
+ np.float64,0x3fbfe9a9163fd350,0x3ff7220bd2b97c8f,1
832
+ np.float64,0xbfca6162bb34c2c4,0x3ffc743f939358f1,1
833
+ np.float64,0x3fe127a014e24f40,0x3ff0147c4bafbc39,1
834
+ np.float64,0x3fee9cdd2a7d39ba,0x3fd2e9ef45ab122f,1
835
+ np.float64,0x3fa9ffb97c33ff80,0x3ff851e69fa3542c,1
836
+ np.float64,0x3fd378f393a6f1e8,0x3ff42faafa77de56,1
837
+ np.float64,0xbfe4df1e1669be3c,0x400240284df1c321,1
838
+ np.float64,0x3fed0ed79bfa1db0,0x3fdba89060aa96fb,1
839
+ np.float64,0x3fdef2ee52bde5dc,0x3ff10e942244f4f1,1
840
+ np.float64,0xbfdab38f3ab5671e,0x40000264d8d5b49b,1
841
+ np.float64,0x3fbe95a96e3d2b50,0x3ff73774cb59ce2d,1
842
+ np.float64,0xbfe945653af28aca,0x4003d9657bf129c2,1
843
+ np.float64,0xbfb18f3f2a231e80,0x3ffa3b27cba23f50,1
844
+ np.float64,0xbfef50bf22fea17e,0x40077998a850082c,1
845
+ np.float64,0xbfc52b8c212a5718,0x3ffbca8d6560a2da,1
846
+ np.float64,0x7ff8000000000000,0x7ff8000000000000,1
847
+ np.float64,0x3fc1e3a02d23c740,0x3ff6e3a5fcac12a4,1
848
+ np.float64,0xbfeb5e4ea5f6bc9d,0x4004c65abef9426f,1
849
+ np.float64,0xbfe425b132684b62,0x400203c29608b00d,1
850
+ np.float64,0xbfbfa1c19e3f4380,0x3ffb1d6367711158,1
851
+ np.float64,0x3fbba2776e3744f0,0x3ff766f6df586fad,1
852
+ np.float64,0xbfb5d0951e2ba128,0x3ffa7f712480b25e,1
853
+ np.float64,0xbfe949fdab7293fb,0x4003db4530a18507,1
854
+ np.float64,0xbfcf13519b3e26a4,0x3ffd0e6f0a6c38ee,1
855
+ np.float64,0x3f91e6d72823cdc0,0x3ff8da5f08909b6e,1
856
+ np.float64,0x3f78a2e360314600,0x3ff909586727caef,1
857
+ np.float64,0xbfe1ae7e8fe35cfd,0x40013fef082caaa3,1
858
+ np.float64,0x3fe97a6dd1f2f4dc,0x3fe4cb4b99863478,1
859
+ np.float64,0xbfcc1e1e69383c3c,0x3ffcad250a949843,1
860
+ np.float64,0x3faccb797c399700,0x3ff83b8066b49330,1
861
+ np.float64,0x3fe7a2647a6f44c8,0x3fe7acceae6ec425,1
862
+ np.float64,0xbfec3bfcf0f877fa,0x4005366af5a7175b,1
863
+ np.float64,0xbfe2310b94646217,0x400167588fceb228,1
864
+ np.float64,0x3feb167372762ce6,0x3fe1f74c0288fad8,1
865
+ np.float64,0xbfb722b4ee2e4568,0x3ffa94a81b94dfca,1
866
+ np.float64,0x3fc58da9712b1b50,0x3ff66cf8f072aa14,1
867
+ np.float64,0xbfe7fff9d6effff4,0x400359d01b8141de,1
868
+ np.float64,0xbfd56691c5aacd24,0x3ffe9686697797e8,1
869
+ np.float64,0x3fe3ab0557e7560a,0x3fed1593959ef8e8,1
870
+ np.float64,0x3fdd458995ba8b14,0x3ff1883d6f22a322,1
871
+ np.float64,0x3fe7bbed2cef77da,0x3fe786d618094cda,1
872
+ np.float64,0x3fa31a30c4263460,0x3ff88920b936fd79,1
873
+ np.float64,0x8010000000000000,0x3ff921fb54442d18,1
874
+ np.float64,0xbfdc5effbdb8be00,0x40003d95fe0dff11,1
875
+ np.float64,0x3febfdad7e77fb5a,0x3fe030b5297dbbdd,1
876
+ np.float64,0x3fe4f3f3b2e9e7e8,0x3feb6bc59eeb2be2,1
877
+ np.float64,0xbfe44469fd6888d4,0x40020daa5488f97a,1
878
+ np.float64,0xbfe19fddb0e33fbc,0x40013b8c902b167b,1
879
+ np.float64,0x3fa36ad17c26d5a0,0x3ff8869b3e828134,1
880
+ np.float64,0x3fcf23e6c93e47d0,0x3ff5336491a65d1e,1
881
+ np.float64,0xffefffffffffffff,0x7ff8000000000000,1
882
+ np.float64,0xbfe375f4cee6ebea,0x4001cbd2ba42e8b5,1
883
+ np.float64,0xbfaef1215c3de240,0x3ffa19ab02081189,1
884
+ np.float64,0xbfec39c59c78738b,0x4005353dc38e3d78,1
885
+ np.float64,0x7ff4000000000000,0x7ffc000000000000,1
886
+ np.float64,0xbfec09bb7b781377,0x40051c0a5754cb3a,1
887
+ np.float64,0x3fe8301f2870603e,0x3fe6d783c5ef0944,1
888
+ np.float64,0xbfed418c987a8319,0x4005cbae1b8693d1,1
889
+ np.float64,0xbfdc16e7adb82dd0,0x4000338b634eaf03,1
890
+ np.float64,0x3fd5d361bdaba6c4,0x3ff390899300a54c,1
891
+ np.float64,0xbff0000000000000,0x400921fb54442d18,1
892
+ np.float64,0x3fd5946232ab28c4,0x3ff3a14767813f29,1
893
+ np.float64,0x3fe833e5fef067cc,0x3fe6d1be720edf2d,1
894
+ np.float64,0x3fedf746a67bee8e,0x3fd6f127fdcadb7b,1
895
+ np.float64,0x3fd90353d3b206a8,0x3ff2b54f7d369ba9,1
896
+ np.float64,0x3fec4b4b72f89696,0x3fdf1b38d2e93532,1
897
+ np.float64,0xbfe9c67596f38ceb,0x40040ee5f524ce03,1
898
+ np.float64,0x3fd350d91aa6a1b4,0x3ff43a303c0da27f,1
899
+ np.float64,0x3fd062603ba0c4c0,0x3ff4fd9514b935d8,1
900
+ np.float64,0xbfe24c075f64980e,0x40016f8e9f2663b3,1
901
+ np.float64,0x3fdaa546eeb54a8c,0x3ff2431a88fef1d5,1
902
+ np.float64,0x3fe92b8151f25702,0x3fe54c67e005cbf9,1
903
+ np.float64,0xbfe1be8b8a637d17,0x400144c078f67c6e,1
904
+ np.float64,0xbfe468a1d7e8d144,0x40021964b118cbf4,1
905
+ np.float64,0xbfdc6de4fab8dbca,0x40003fa9e27893d8,1
906
+ np.float64,0xbfe3c2788ae784f1,0x4001e407ba3aa956,1
907
+ np.float64,0xbfe2bf1542e57e2a,0x400192d4a9072016,1
908
+ np.float64,0xbfe6982f4c6d305e,0x4002d681b1991bbb,1
909
+ np.float64,0x3fdbceb1c4b79d64,0x3ff1f0f117b9d354,1
910
+ np.float64,0x3fdb3705e7b66e0c,0x3ff21af01ca27ace,1
911
+ np.float64,0x3fe3e6358ee7cc6c,0x3fecca4585053983,1
912
+ np.float64,0xbfe16d6a9a62dad5,0x40012c7988aee247,1
913
+ np.float64,0xbfce66e4413ccdc8,0x3ffcf83b08043a0c,1
914
+ np.float64,0xbfeb6cd46876d9a9,0x4004cd61733bfb79,1
915
+ np.float64,0xbfdb1cdd64b639ba,0x400010e6cf087cb7,1
916
+ np.float64,0xbfe09e4e30e13c9c,0x4000ef5277c47721,1
917
+ np.float64,0xbfee88dd127d11ba,0x4006b3cd443643ac,1
918
+ np.float64,0xbf911e06c8223c00,0x3ff966744064fb05,1
919
+ np.float64,0xbfe8f22bc471e458,0x4003b7d5513af295,1
920
+ np.float64,0x3fe3d7329567ae66,0x3fecdd6c241f83ee,1
921
+ np.float64,0x3fc8a9404b315280,0x3ff607dc175edf3f,1
922
+ np.float64,0x3fe7eb80ad6fd702,0x3fe73f8fdb3e6a6c,1
923
+ np.float64,0x3fef0931e37e1264,0x3fcf7fde80a3c5ab,1
924
+ np.float64,0x3fe2ed3c3fe5da78,0x3fee038334cd1860,1
925
+ np.float64,0x3fe251fdb8e4a3fc,0x3feec26dc636ac31,1
926
+ np.float64,0x3feb239436764728,0x3fe1de9462455da7,1
927
+ np.float64,0xbfe63fd7eeec7fb0,0x4002b78cfa3d2fa6,1
928
+ np.float64,0x3fdd639cb5bac738,0x3ff17fc7d92b3eee,1
929
+ np.float64,0x3fd0a7a13fa14f44,0x3ff4eba95c559c84,1
930
+ np.float64,0x3fe804362d70086c,0x3fe71a44cd91ffa4,1
931
+ np.float64,0xbfe0fecf6e61fd9f,0x40010bac8edbdc4f,1
932
+ np.float64,0x3fcb74acfd36e958,0x3ff5ac84437f1b7c,1
933
+ np.float64,0x3fe55053e1eaa0a8,0x3feaf0bf76304c30,1
934
+ np.float64,0x3fc06b508d20d6a0,0x3ff7131da17f3902,1
935
+ np.float64,0x3fdd78750fbaf0ec,0x3ff179e97fbf7f65,1
936
+ np.float64,0x3fe44cb946689972,0x3fec46859b5da6be,1
937
+ np.float64,0xbfeb165a7ff62cb5,0x4004a41c9cc9589e,1
938
+ np.float64,0x3fe01ffb2b603ff6,0x3ff0aed52bf1c3c1,1
939
+ np.float64,0x3f983c60a83078c0,0x3ff8c107805715ab,1
940
+ np.float64,0x3fd8b5ff13b16c00,0x3ff2ca4a837a476a,1
941
+ np.float64,0x3fc80510a1300a20,0x3ff61cc3b4af470b,1
942
+ np.float64,0xbfd3935b06a726b6,0x3ffe1b3a2066f473,1
943
+ np.float64,0xbfdd4a1f31ba943e,0x40005e81979ed445,1
944
+ np.float64,0xbfa76afdd42ed600,0x3ff9dd63ffba72d2,1
945
+ np.float64,0x3fe7e06d496fc0da,0x3fe7503773566707,1
946
+ np.float64,0xbfea5fbfe874bf80,0x40045106af6c538f,1
947
+ np.float64,0x3fee000c487c0018,0x3fd6bef1f8779d88,1
948
+ np.float64,0xbfb39f4ee2273ea0,0x3ffa5c3f2b3888ab,1
949
+ np.float64,0x3feb9247b0772490,0x3fe1092d2905efce,1
950
+ np.float64,0x3fdaa39b4cb54738,0x3ff243901da0da17,1
951
+ np.float64,0x3fcd5b2b493ab658,0x3ff56e262e65b67d,1
952
+ np.float64,0x3fcf82512f3f04a0,0x3ff52738847c55f2,1
953
+ np.float64,0x3fe2af5e0c655ebc,0x3fee4ffab0c82348,1
954
+ np.float64,0xbfec0055d0f800ac,0x4005172d325933e8,1
955
+ np.float64,0x3fe71da9336e3b52,0x3fe86f2e12f6e303,1
956
+ np.float64,0x3fbefab0723df560,0x3ff731188ac716ec,1
957
+ np.float64,0xbfe11dca28623b94,0x400114d3d4ad370d,1
958
+ np.float64,0x3fbcbda8ca397b50,0x3ff755281078abd4,1
959
+ np.float64,0x3fe687c7126d0f8e,0x3fe945099a7855cc,1
960
+ np.float64,0xbfecde510579bca2,0x400590606e244591,1
961
+ np.float64,0xbfd72de681ae5bce,0x3fff0ff797ad1755,1
962
+ np.float64,0xbfe7c0f7386f81ee,0x40034226e0805309,1
963
+ np.float64,0x3fd8d55619b1aaac,0x3ff2c1cb3267b14e,1
964
+ np.float64,0x3fecd7a2ad79af46,0x3fdcabbffeaa279e,1
965
+ np.float64,0x3fee7fb1a8fcff64,0x3fd3ae620286fe19,1
966
+ np.float64,0xbfc5f3a3592be748,0x3ffbe3ed204d9842,1
967
+ np.float64,0x3fec9e5527793caa,0x3fddb00bc8687e4b,1
968
+ np.float64,0x3fc35dc70f26bb90,0x3ff6b3ded7191e33,1
969
+ np.float64,0x3fda91c07ab52380,0x3ff24878848fec8f,1
970
+ np.float64,0xbfe12cde1fe259bc,0x4001194ab99d5134,1
971
+ np.float64,0xbfd35ab736a6b56e,0x3ffe0c5ce8356d16,1
972
+ np.float64,0x3fc9c94123339280,0x3ff5e3239f3ad795,1
973
+ np.float64,0xbfe72f54926e5ea9,0x40030c95d1d02b56,1
974
+ np.float64,0xbfee283186fc5063,0x40066786bd0feb79,1
975
+ np.float64,0xbfe7b383f56f6708,0x40033d23ef0e903d,1
976
+ np.float64,0x3fd6037327ac06e8,0x3ff383bf2f311ddb,1
977
+ np.float64,0x3fe0e344b561c68a,0x3ff03cd90fd4ba65,1
978
+ np.float64,0xbfef0ff54b7e1feb,0x400730fa5fce381e,1
979
+ np.float64,0x3fd269929da4d324,0x3ff476b230136d32,1
980
+ np.float64,0xbfbc5fb9f638bf70,0x3ffae8e63a4e3234,1
981
+ np.float64,0xbfe2e8bc84e5d179,0x40019fb5874f4310,1
982
+ np.float64,0xbfd7017413ae02e8,0x3fff040d843c1531,1
983
+ np.float64,0x3fefd362fa7fa6c6,0x3fbababc3ddbb21d,1
984
+ np.float64,0x3fecb62ed3f96c5e,0x3fdd44ba77ccff94,1
985
+ np.float64,0xbfb16fad5222df58,0x3ffa392d7f02b522,1
986
+ np.float64,0x3fbcf4abc639e950,0x3ff751b23c40e27f,1
987
+ np.float64,0x3fe128adbce2515c,0x3ff013dc91db04b5,1
988
+ np.float64,0x3fa5dd9d842bbb40,0x3ff87300c88d512f,1
989
+ np.float64,0xbfe61efcaf6c3dfa,0x4002ac27117f87c9,1
990
+ np.float64,0x3feffe1233fffc24,0x3f9638d3796a4954,1
991
+ np.float64,0xbfe78548b66f0a92,0x40032c0447b7bfe2,1
992
+ np.float64,0x3fe7bd38416f7a70,0x3fe784e86d6546b6,1
993
+ np.float64,0x3fe0d6bc5961ad78,0x3ff0443899e747ac,1
994
+ np.float64,0xbfd0bb6e47a176dc,0x3ffd5d6dff390d41,1
995
+ np.float64,0xbfec1d16b8f83a2e,0x40052620378d3b78,1
996
+ np.float64,0x3fe9bbec20f377d8,0x3fe45e167c7a3871,1
997
+ np.float64,0xbfeed81d9dfdb03b,0x4006f9dec2db7310,1
998
+ np.float64,0xbfe1e35179e3c6a3,0x40014fd1b1186ac0,1
999
+ np.float64,0xbfc9c7e605338fcc,0x3ffc60a6bd1a7126,1
1000
+ np.float64,0x3feec92810fd9250,0x3fd1afde414ab338,1
1001
+ np.float64,0xbfeb9f1d90773e3b,0x4004e606b773f5b0,1
1002
+ np.float64,0x3fcbabdf6b3757c0,0x3ff5a573866404af,1
1003
+ np.float64,0x3fe9f4e1fff3e9c4,0x3fe3fd7b6712dd7b,1
1004
+ np.float64,0xbfe6c0175ded802e,0x4002e4a4dc12f3fe,1
1005
+ np.float64,0xbfeefc96f37df92e,0x40071d367cd721ff,1
1006
+ np.float64,0xbfeaab58dc7556b2,0x400472ce37e31e50,1
1007
+ np.float64,0xbfc62668772c4cd0,0x3ffbea5e6c92010a,1
1008
+ np.float64,0x3fafe055fc3fc0a0,0x3ff822ce6502519a,1
1009
+ np.float64,0x3fd7b648ffaf6c90,0x3ff30f5a42f11418,1
1010
+ np.float64,0xbfe934fe827269fd,0x4003d2b9fed9e6ad,1
1011
+ np.float64,0xbfe6d691f2edad24,0x4002eca6a4b1797b,1
1012
+ np.float64,0x3fc7e62ced2fcc58,0x3ff620b1f44398b7,1
1013
+ np.float64,0xbfc89be9f33137d4,0x3ffc3a67a497f59c,1
1014
+ np.float64,0xbfe7793d536ef27a,0x40032794bf14dd64,1
1015
+ np.float64,0x3fde55a02dbcab40,0x3ff13b5f82d223e4,1
1016
+ np.float64,0xbfc8eabd7b31d57c,0x3ffc4472a81cb6d0,1
1017
+ np.float64,0x3fddcb5468bb96a8,0x3ff162899c381f2e,1
1018
+ np.float64,0xbfec7554d8f8eaaa,0x40055550e18ec463,1
1019
+ np.float64,0x3fd0b6e8b6a16dd0,0x3ff4e7b4781a50e3,1
1020
+ np.float64,0x3fedaae01b7b55c0,0x3fd8964916cdf53d,1
1021
+ np.float64,0x3fe0870f8a610e20,0x3ff072e7db95c2a2,1
1022
+ np.float64,0xbfec3e3ce2787c7a,0x4005379d0f6be873,1
1023
+ np.float64,0xbfe65502586caa04,0x4002beecff89147f,1
1024
+ np.float64,0xbfe0df39a961be74,0x4001025e36d1c061,1
1025
+ np.float64,0xbfb5d8edbe2bb1d8,0x3ffa7ff72b7d6a2b,1
1026
+ np.float64,0xbfde89574bbd12ae,0x40008ba4cd74544d,1
1027
+ np.float64,0xbfe72938f0ee5272,0x40030a5efd1acb6d,1
1028
+ np.float64,0xbfcd500d133aa01c,0x3ffcd462f9104689,1
1029
+ np.float64,0x3fe0350766606a0e,0x3ff0a2a3664e2c14,1
1030
+ np.float64,0xbfc892fb573125f8,0x3ffc3944641cc69d,1
1031
+ np.float64,0xbfba7dc7c634fb90,0x3ffaca9a6a0ffe61,1
1032
+ np.float64,0xbfeac94478759289,0x40048068a8b83e45,1
1033
+ np.float64,0xbfe8f60c1af1ec18,0x4003b961995b6e51,1
1034
+ np.float64,0x3fea1c0817743810,0x3fe3ba28c1643cf7,1
1035
+ np.float64,0xbfe42a0fefe85420,0x4002052aadd77f01,1
1036
+ np.float64,0x3fd2c61c56a58c38,0x3ff45e84cb9a7fa9,1
1037
+ np.float64,0xbfd83fb7cdb07f70,0x3fff59ab4790074c,1
1038
+ np.float64,0x3fd95e630fb2bcc8,0x3ff29c8bee1335ad,1
1039
+ np.float64,0x3feee88f387dd11e,0x3fd0c3ad3ded4094,1
1040
+ np.float64,0x3fe061291160c252,0x3ff0890010199bbc,1
1041
+ np.float64,0xbfdc7db3b5b8fb68,0x400041dea3759443,1
1042
+ np.float64,0x3fee23b320fc4766,0x3fd5ee73d7aa5c56,1
1043
+ np.float64,0xbfdc25c590b84b8c,0x4000359cf98a00b4,1
1044
+ np.float64,0xbfd63cbfd2ac7980,0x3ffecf7b9cf99b3c,1
1045
+ np.float64,0xbfbeb3c29a3d6788,0x3ffb0e66ecc0fc3b,1
1046
+ np.float64,0xbfd2f57fd6a5eb00,0x3ffdf1d7c79e1532,1
1047
+ np.float64,0xbfab3eda9c367db0,0x3ff9fc0c875f42e9,1
1048
+ np.float64,0xbfe12df1c6e25be4,0x4001199c673e698c,1
1049
+ np.float64,0x3fef8ab23a7f1564,0x3fc5aff358c59f1c,1
1050
+ np.float64,0x3fe562f50feac5ea,0x3fead7bce205f7d9,1
1051
+ np.float64,0x3fdc41adbeb8835c,0x3ff1d0f71341b8f2,1
1052
+ np.float64,0x3fe2748967e4e912,0x3fee9837f970ff9e,1
1053
+ np.float64,0xbfdaa89d57b5513a,0x400000e3889ba4cf,1
1054
+ np.float64,0x3fdf2a137dbe5428,0x3ff0fecfbecbbf86,1
1055
+ np.float64,0xbfea1fdcd2f43fba,0x4004351974b32163,1
1056
+ np.float64,0xbfe34a93a3e69528,0x4001be323946a3e0,1
1057
+ np.float64,0x3fe929bacff25376,0x3fe54f47bd7f4cf2,1
1058
+ np.float64,0xbfd667fbd6accff8,0x3ffedb04032b3a1a,1
1059
+ np.float64,0xbfeb695796f6d2af,0x4004cbb08ec6f525,1
1060
+ np.float64,0x3fd204df2ea409c0,0x3ff490f51e6670f5,1
1061
+ np.float64,0xbfd89a2757b1344e,0x3fff722127b988c4,1
1062
+ np.float64,0xbfd0787187a0f0e4,0x3ffd4c16dbe94f32,1
1063
+ np.float64,0x3fd44239bfa88474,0x3ff3fabbfb24b1fa,1
1064
+ np.float64,0xbfeb0b3489f61669,0x40049ee33d811d33,1
1065
+ np.float64,0x3fdcf04eaab9e09c,0x3ff1a02a29996c4e,1
1066
+ np.float64,0x3fd4c51e4fa98a3c,0x3ff3d8302c68fc9a,1
1067
+ np.float64,0x3fd1346645a268cc,0x3ff4c72b4970ecaf,1
1068
+ np.float64,0x3fd6a89d09ad513c,0x3ff357af6520afac,1
1069
+ np.float64,0xbfba0f469a341e90,0x3ffac3a8f41bed23,1
1070
+ np.float64,0xbfe13f8ddce27f1c,0x40011ed557719fd6,1
1071
+ np.float64,0x3fd43e5e26a87cbc,0x3ff3fbc040fc30dc,1
1072
+ np.float64,0x3fe838125a707024,0x3fe6cb5c987248f3,1
1073
+ np.float64,0x3fe128c30c625186,0x3ff013cff238dd1b,1
1074
+ np.float64,0xbfcd4718833a8e30,0x3ffcd33c96bde6f9,1
1075
+ np.float64,0x3fe43fcd08e87f9a,0x3fec573997456ec1,1
1076
+ np.float64,0xbfe9a29104734522,0x4003ffd502a1b57f,1
1077
+ np.float64,0xbfe4709d7968e13b,0x40021bfc5cd55af4,1
1078
+ np.float64,0x3fd21c3925a43874,0x3ff48adf48556cbb,1
1079
+ np.float64,0x3fe9a521b2734a44,0x3fe4844fc054e839,1
1080
+ np.float64,0xbfdfa6a912bf4d52,0x4000b4730ad8521e,1
1081
+ np.float64,0x3fe3740702e6e80e,0x3fed5b106283b6ed,1
1082
+ np.float64,0x3fd0a3aa36a14754,0x3ff4ecb02a5e3f49,1
1083
+ np.float64,0x3fdcb903d0b97208,0x3ff1afa5d692c5b9,1
1084
+ np.float64,0xbfe7d67839efacf0,0x40034a3146abf6f2,1
1085
+ np.float64,0x3f9981c6d8330380,0x3ff8bbf1853d7b90,1
1086
+ np.float64,0xbfe9d4191673a832,0x400414a9ab453c5d,1
1087
+ np.float64,0x3fef0a1e5c7e143c,0x3fcf70b02a54c415,1
1088
+ np.float64,0xbfd996dee6b32dbe,0x3fffb6cf707ad8e4,1
1089
+ np.float64,0x3fe19bef17e337de,0x3fef9e70d4fcedae,1
1090
+ np.float64,0x3fe34a59716694b2,0x3fed8f6d5cfba474,1
1091
+ np.float64,0x3fdf27e27cbe4fc4,0x3ff0ff70500e0c7c,1
1092
+ np.float64,0xbfe19df87fe33bf1,0x40013afb401de24c,1
1093
+ np.float64,0xbfbdfd97ba3bfb30,0x3ffb02ef8c225e57,1
1094
+ np.float64,0xbfe3d3417267a683,0x4001e95ed240b0f8,1
1095
+ np.float64,0x3fe566498b6acc94,0x3fead342957d4910,1
1096
+ np.float64,0x3ff0000000000000,0x0,1
1097
+ np.float64,0x3feb329bd8766538,0x3fe1c2225aafe3b4,1
1098
+ np.float64,0xbfc19ca703233950,0x3ffb575b5df057b9,1
1099
+ np.float64,0x3fe755027d6eaa04,0x3fe81eb99c262e00,1
1100
+ np.float64,0xbfe6c2b8306d8570,0x4002e594199f9eec,1
1101
+ np.float64,0x3fd69438e6ad2870,0x3ff35d2275ae891d,1
1102
+ np.float64,0x3fda3e7285b47ce4,0x3ff25f5573dd47ae,1
1103
+ np.float64,0x3fe7928a166f2514,0x3fe7c4490ef4b9a9,1
1104
+ np.float64,0xbfd4eb71b9a9d6e4,0x3ffe75e8ccb74be1,1
1105
+ np.float64,0xbfcc3a07f1387410,0x3ffcb0b8af914a5b,1
1106
+ np.float64,0xbfe6e80225edd004,0x4002f2e26eae8999,1
1107
+ np.float64,0xbfb347728a268ee8,0x3ffa56bd526a12db,1
1108
+ np.float64,0x3fe5140ead6a281e,0x3feb4132c9140a1c,1
1109
+ np.float64,0xbfc147f125228fe4,0x3ffb4cab18b9050f,1
1110
+ np.float64,0xbfcb9145b537228c,0x3ffc9b1b6227a8c9,1
1111
+ np.float64,0xbfda84ef4bb509de,0x3ffff7f8a674e17d,1
1112
+ np.float64,0x3fd2eb6bbfa5d6d8,0x3ff454c225529d7e,1
1113
+ np.float64,0x3fe18c95f1e3192c,0x3fefb0cf0efba75a,1
1114
+ np.float64,0x3fe78606efef0c0e,0x3fe7d6c3a092d64c,1
1115
+ np.float64,0x3fbad5119a35aa20,0x3ff773dffe3ce660,1
1116
+ np.float64,0x3fd0cf5903a19eb4,0x3ff4e15fd21fdb42,1
1117
+ np.float64,0xbfd85ce90bb0b9d2,0x3fff618ee848e974,1
1118
+ np.float64,0x3fe90e11b9f21c24,0x3fe57be62f606f4a,1
1119
+ np.float64,0x3fd7a2040faf4408,0x3ff314ce85457ec2,1
1120
+ np.float64,0xbfd73fba69ae7f74,0x3fff14bff3504811,1
1121
+ np.float64,0x3fa04b4bd42096a0,0x3ff89f9b52f521a2,1
1122
+ np.float64,0xbfd7219ce5ae433a,0x3fff0cac0b45cc18,1
1123
+ np.float64,0xbfe0cf4661e19e8d,0x4000fdadb14e3c22,1
1124
+ np.float64,0x3fd07469fea0e8d4,0x3ff4f8eaa9b2394a,1
1125
+ np.float64,0x3f9b05c5d8360b80,0x3ff8b5e10672db5c,1
1126
+ np.float64,0x3fe4c25b916984b8,0x3febad29bd0e25e2,1
1127
+ np.float64,0xbfde8b4891bd1692,0x40008beb88d5c409,1
1128
+ np.float64,0xbfe199a7efe33350,0x400139b089aee21c,1
1129
+ np.float64,0x3fecdad25cf9b5a4,0x3fdc9d062867e8c3,1
1130
+ np.float64,0xbfe979b277f2f365,0x4003eedb061e25a4,1
1131
+ np.float64,0x3fc8c7311f318e60,0x3ff6040b9aeaad9d,1
1132
+ np.float64,0x3fd2b605b8a56c0c,0x3ff462b9a955c224,1
1133
+ np.float64,0x3fc073b6ad20e770,0x3ff7120e9f2fd63c,1
1134
+ np.float64,0xbfec60ede678c1dc,0x40054a3863e24dc2,1
1135
+ np.float64,0x3fe225171be44a2e,0x3feef910dca420ea,1
1136
+ np.float64,0xbfd7529762aea52e,0x3fff19d00661f650,1
1137
+ np.float64,0xbfd781783daf02f0,0x3fff2667b90be461,1
1138
+ np.float64,0x3fe3f6ec6d67edd8,0x3fecb4e814a2e33a,1
1139
+ np.float64,0x3fece6702df9cce0,0x3fdc6719d92a50d2,1
1140
+ np.float64,0xbfb5c602ce2b8c08,0x3ffa7ec761ba856a,1
1141
+ np.float64,0xbfd61f0153ac3e02,0x3ffec78e3b1a6c4d,1
1142
+ np.float64,0xbfec3462b2f868c5,0x400532630bbd7050,1
1143
+ np.float64,0xbfdd248485ba490a,0x400059391c07c1bb,1
1144
+ np.float64,0xbfd424921fa84924,0x3ffe416a85d1dcdf,1
1145
+ np.float64,0x3fbb23a932364750,0x3ff76eef79209f7f,1
1146
+ np.float64,0x3fca248b0f344918,0x3ff5d77c5c1b4e5e,1
1147
+ np.float64,0xbfe69af4a4ed35ea,0x4002d77c2e4fbd4e,1
1148
+ np.float64,0x3fdafe3cdcb5fc78,0x3ff22a9be6efbbf2,1
1149
+ np.float64,0xbfebba3377f77467,0x4004f3836e1fe71a,1
1150
+ np.float64,0xbfe650fae06ca1f6,0x4002bd851406377c,1
1151
+ np.float64,0x3fda630007b4c600,0x3ff2554f1832bd94,1
1152
+ np.float64,0xbfda8107d9b50210,0x3ffff6e6209659f3,1
1153
+ np.float64,0x3fea759a02f4eb34,0x3fe31d1a632c9aae,1
1154
+ np.float64,0x3fbf88149e3f1030,0x3ff728313aa12ccb,1
1155
+ np.float64,0x3f7196d2a0232e00,0x3ff910647e1914c1,1
1156
+ np.float64,0x3feeae51d17d5ca4,0x3fd2709698d31f6f,1
1157
+ np.float64,0xbfd73cd663ae79ac,0x3fff13f96300b55a,1
1158
+ np.float64,0x3fd4fc5f06a9f8c0,0x3ff3c99359854b97,1
1159
+ np.float64,0x3fb29f5d6e253ec0,0x3ff7f7c20e396b20,1
1160
+ np.float64,0xbfd757c82aaeaf90,0x3fff1b34c6141e98,1
1161
+ np.float64,0x3fc56fd4cf2adfa8,0x3ff670c145122909,1
1162
+ np.float64,0x3fc609a2f52c1348,0x3ff65d3ef3cade2c,1
1163
+ np.float64,0xbfe1de631163bcc6,0x40014e5528fadb73,1
1164
+ np.float64,0xbfe7eb4a726fd695,0x40035202f49d95c4,1
1165
+ np.float64,0xbfc9223771324470,0x3ffc4b84d5e263b9,1
1166
+ np.float64,0x3fee91a8a87d2352,0x3fd3364befde8de6,1
1167
+ np.float64,0x3fbc9784fe392f10,0x3ff7578e29f6a1b2,1
1168
+ np.float64,0xbfec627c2c78c4f8,0x40054b0ff2cb9c55,1
1169
+ np.float64,0xbfb8b406a6316810,0x3ffaadd97062fb8c,1
1170
+ np.float64,0xbfecf98384f9f307,0x4005a043d9110d79,1
1171
+ np.float64,0xbfe5834bab6b0698,0x400276f114aebee4,1
1172
+ np.float64,0xbfd90f391eb21e72,0x3fff91e26a8f48f3,1
1173
+ np.float64,0xbfee288ce2fc511a,0x400667cb09aa04b3,1
1174
+ np.float64,0x3fd5aa5e32ab54bc,0x3ff39b7080a52214,1
1175
+ np.float64,0xbfee7ef907fcfdf2,0x4006ab96a8eba4c5,1
1176
+ np.float64,0x3fd6097973ac12f4,0x3ff3822486978bd1,1
1177
+ np.float64,0xbfe02d14b8e05a2a,0x4000ce5be53047b1,1
1178
+ np.float64,0xbf9c629a6838c540,0x3ff993897728c3f9,1
1179
+ np.float64,0xbfee2024667c4049,0x40066188782fb1f0,1
1180
+ np.float64,0xbfa42a88fc285510,0x3ff9c35a4bbce104,1
1181
+ np.float64,0x3fa407af5c280f60,0x3ff881b360d8eea1,1
1182
+ np.float64,0x3fed0ba42cfa1748,0x3fdbb7d55609175f,1
1183
+ np.float64,0xbfdd0b5844ba16b0,0x400055b0bb59ebb2,1
1184
+ np.float64,0x3fd88d97e6b11b30,0x3ff2d53c1ecb8f8c,1
1185
+ np.float64,0xbfeb7a915ef6f523,0x4004d410812eb84c,1
1186
+ np.float64,0xbfb5f979ca2bf2f0,0x3ffa8201d73cd4ca,1
1187
+ np.float64,0x3fb3b65dd6276cc0,0x3ff7e64576199505,1
1188
+ np.float64,0x3fcd47a7793a8f50,0x3ff570a7b672f160,1
1189
+ np.float64,0xbfa41dd30c283ba0,0x3ff9c2f488127eb3,1
1190
+ np.float64,0x3fe4b1ea1f6963d4,0x3febc2bed7760427,1
1191
+ np.float64,0xbfdd0f81d2ba1f04,0x400056463724b768,1
1192
+ np.float64,0x3fd15d93f7a2bb28,0x3ff4bc7a24eacfd7,1
1193
+ np.float64,0xbfe3213af8e64276,0x4001b14579dfded3,1
1194
+ np.float64,0x3fd90dfbeab21bf8,0x3ff2b26a6c2c3bb3,1
1195
+ np.float64,0xbfd02d54bca05aaa,0x3ffd38ab3886b203,1
1196
+ np.float64,0x3fc218dcad2431b8,0x3ff6dced56d5b417,1
1197
+ np.float64,0x3fea5edf71f4bdbe,0x3fe3455ee09f27e6,1
1198
+ np.float64,0x3fa74319042e8640,0x3ff867d224545438,1
1199
+ np.float64,0x3fd970ad92b2e15c,0x3ff2979084815dc1,1
1200
+ np.float64,0x3fce0a4bf73c1498,0x3ff557a4df32df3e,1
1201
+ np.float64,0x3fef5c8e10feb91c,0x3fc99ca0eeaaebe4,1
1202
+ np.float64,0xbfedae997ffb5d33,0x400611af18f407ab,1
1203
+ np.float64,0xbfbcf07d6239e0f8,0x3ffaf201177a2d36,1
1204
+ np.float64,0xbfc3c52541278a4c,0x3ffb9d2af0408e4a,1
1205
+ np.float64,0x3fe4ef44e4e9de8a,0x3feb71f7331255e5,1
1206
+ np.float64,0xbfccd9f5f539b3ec,0x3ffcc53a99339592,1
1207
+ np.float64,0xbfda32c745b4658e,0x3fffe16e8727ef89,1
1208
+ np.float64,0xbfef54932a7ea926,0x40077e4605e61ca1,1
1209
+ np.float64,0x3fe9d4ae3573a95c,0x3fe4344a069a3fd0,1
1210
+ np.float64,0x3fda567e73b4acfc,0x3ff258bd77a663c7,1
1211
+ np.float64,0xbfd5bcac5eab7958,0x3ffead6379c19c52,1
1212
+ np.float64,0xbfee5e56f97cbcae,0x40069131fc54018d,1
1213
+ np.float64,0x3fc2d4413925a880,0x3ff6c54163816298,1
1214
+ np.float64,0xbfe9ddf6e873bbee,0x400418d8c722f7c5,1
1215
+ np.float64,0x3fdaf2a683b5e54c,0x3ff22dcda599d69c,1
1216
+ np.float64,0xbfca69789f34d2f0,0x3ffc7547ff10b1a6,1
1217
+ np.float64,0x3fed076f62fa0ede,0x3fdbcbda03c1d72a,1
1218
+ np.float64,0xbfcb38326f367064,0x3ffc8fb55dadeae5,1
1219
+ np.float64,0x3fe1938705e3270e,0x3fefa88130c5adda,1
1220
+ np.float64,0x3feaffae3b75ff5c,0x3fe221e3da537c7e,1
1221
+ np.float64,0x3fefc94acb7f9296,0x3fbd9a360ace67b4,1
1222
+ np.float64,0xbfe8bddeb0f17bbe,0x4003a316685c767e,1
1223
+ np.float64,0x3fbe10fbee3c21f0,0x3ff73fceb10650f5,1
1224
+ np.float64,0x3fde9126c1bd224c,0x3ff12a742f734d0a,1
1225
+ np.float64,0xbfe9686c91f2d0d9,0x4003e7bc6ee77906,1
1226
+ np.float64,0xbfb1ba4892237490,0x3ffa3dda064c2509,1
1227
+ np.float64,0xbfe2879100e50f22,0x400181c1a5b16f0f,1
1228
+ np.float64,0x3fd1cd40b6a39a80,0x3ff49f70e3064e95,1
1229
+ np.float64,0xbfc965869132cb0c,0x3ffc5419f3b43701,1
1230
+ np.float64,0x3fea7a6f2874f4de,0x3fe31480fb2dd862,1
1231
+ np.float64,0x3fc3bc56892778b0,0x3ff6a7e8fa0e8b0e,1
1232
+ np.float64,0x3fec1ed451f83da8,0x3fdfd78e564b8ad7,1
1233
+ np.float64,0x3feb77d16df6efa2,0x3fe13d083344e45e,1
1234
+ np.float64,0xbfe822e7c67045d0,0x400367104a830cf6,1
1235
+ np.float64,0x8000000000000001,0x3ff921fb54442d18,1
1236
+ np.float64,0xbfd4900918a92012,0x3ffe5dc0e19737b4,1
1237
+ np.float64,0x3fed184187fa3084,0x3fdb7b7a39f234f4,1
1238
+ np.float64,0x3fecef846179df08,0x3fdc3cb2228c3682,1
1239
+ np.float64,0xbfe2d2aed165a55e,0x400198e21c5b861b,1
1240
+ np.float64,0x7ff0000000000000,0x7ff8000000000000,1
1241
+ np.float64,0xbfee9409a07d2813,0x4006bd358232d073,1
1242
+ np.float64,0xbfecedc2baf9db86,0x4005995df566fc21,1
1243
+ np.float64,0x3fe6d857396db0ae,0x3fe8d2cb8794aa99,1
1244
+ np.float64,0xbf9a579e7834af40,0x3ff98b5cc8021e1c,1
1245
+ np.float64,0x3fc664fefb2cca00,0x3ff651a664ccf8fa,1
1246
+ np.float64,0xbfe8a7aa0e714f54,0x40039a5b4df938a0,1
1247
+ np.float64,0xbfdf27d380be4fa8,0x4000a241074dbae6,1
1248
+ np.float64,0x3fe00ddf55e01bbe,0x3ff0b94eb1ea1851,1
1249
+ np.float64,0x3feb47edbff68fdc,0x3fe199822d075959,1
1250
+ np.float64,0x3fb4993822293270,0x3ff7d80c838186d0,1
1251
+ np.float64,0xbfca2cd1473459a4,0x3ffc6d88c8de3d0d,1
1252
+ np.float64,0xbfea7d9c7674fb39,0x40045e4559e9e52d,1
1253
+ np.float64,0x3fe0dce425e1b9c8,0x3ff04099cab23289,1
1254
+ np.float64,0x3fd6bb7e97ad76fc,0x3ff352a30434499c,1
1255
+ np.float64,0x3fd4a4f16da949e4,0x3ff3e0b07432c9aa,1
1256
+ np.float64,0x8000000000000000,0x3ff921fb54442d18,1
1257
+ np.float64,0x3fe688f5b56d11ec,0x3fe9435f63264375,1
1258
+ np.float64,0xbfdf5a427ebeb484,0x4000a97a6c5d4abc,1
1259
+ np.float64,0xbfd1f3483fa3e690,0x3ffdae6c8a299383,1
1260
+ np.float64,0xbfeac920db759242,0x4004805862be51ec,1
1261
+ np.float64,0x3fef5bc711feb78e,0x3fc9ac40fba5b93b,1
1262
+ np.float64,0x3fe4bd9e12e97b3c,0x3febb363c787d381,1
1263
+ np.float64,0x3fef6a59ab7ed4b4,0x3fc880f1324eafce,1
1264
+ np.float64,0x3fc07a362120f470,0x3ff7113cf2c672b3,1
1265
+ np.float64,0xbfe4d6dbe2e9adb8,0x40023d6f6bea44b7,1
1266
+ np.float64,0xbfec2d6a15785ad4,0x40052eb425cc37a2,1
1267
+ np.float64,0x3fc90dae05321b60,0x3ff5fb10015d2934,1
1268
+ np.float64,0xbfa9239f74324740,0x3ff9eb2d057068ea,1
1269
+ np.float64,0xbfeb4fc8baf69f92,0x4004bf5e17fb08a4,1
1270
+ np.float64,0x0,0x3ff921fb54442d18,1
1271
+ np.float64,0x3faaf1884c35e320,0x3ff84a5591dbe1f3,1
1272
+ np.float64,0xbfed842561fb084b,0x4005f5c0a19116ce,1
1273
+ np.float64,0xbfc64850c32c90a0,0x3ffbeeac2ee70f9a,1
1274
+ np.float64,0x3fd7d879f5afb0f4,0x3ff306254c453436,1
1275
+ np.float64,0xbfdabaa586b5754c,0x4000035e6ac83a2b,1
1276
+ np.float64,0xbfebfeefa977fddf,0x4005167446fb9faf,1
1277
+ np.float64,0xbfe9383462727069,0x4003d407aa6a1577,1
1278
+ np.float64,0x3fe108dfb6e211c0,0x3ff026ac924b281d,1
1279
+ np.float64,0xbf85096df02a12c0,0x3ff94c0e60a22ede,1
1280
+ np.float64,0xbfe3121cd566243a,0x4001ac8f90db5882,1
1281
+ np.float64,0xbfd227f62aa44fec,0x3ffdbc26bb175dcc,1
1282
+ np.float64,0x3fd931af2cb26360,0x3ff2a8b62dfe003c,1
1283
+ np.float64,0xbfd9b794e3b36f2a,0x3fffbfbc89ec013d,1
1284
+ np.float64,0x3fc89b2e6f313660,0x3ff609a6e67f15f2,1
1285
+ np.float64,0x3fc0b14a8f216298,0x3ff70a4b6905aad2,1
1286
+ np.float64,0xbfeda11a657b4235,0x400608b3f9fff574,1
1287
+ np.float64,0xbfed2ee9ec7a5dd4,0x4005c040b7c02390,1
1288
+ np.float64,0xbfef7819d8fef034,0x4007ac6bf75cf09d,1
1289
+ np.float64,0xbfcc4720fb388e40,0x3ffcb2666a00b336,1
1290
+ np.float64,0xbfe05dec4be0bbd8,0x4000dc8a25ca3760,1
1291
+ np.float64,0x3fb093416e212680,0x3ff81897b6d8b374,1
1292
+ np.float64,0xbfc6ab89332d5714,0x3ffbfb4559d143e7,1
1293
+ np.float64,0x3fc51948512a3290,0x3ff67bb9df662c0a,1
1294
+ np.float64,0x3fed4d94177a9b28,0x3fda76c92f0c0132,1
1295
+ np.float64,0x3fdd195fbeba32c0,0x3ff194a5586dd18e,1
1296
+ np.float64,0x3fe3f82799e7f050,0x3fecb354c2faf55c,1
1297
+ np.float64,0x3fecac2169f95842,0x3fdd7222296cb7a7,1
1298
+ np.float64,0x3fe3d3f36fe7a7e6,0x3fece18f45e30dd7,1
1299
+ np.float64,0x3fe31ff63d663fec,0x3fedc46c77d30c6a,1
1300
+ np.float64,0xbfe3120c83e62419,0x4001ac8a7c4aa742,1
1301
+ np.float64,0x3fe7c1a7976f8350,0x3fe77e4a9307c9f8,1
1302
+ np.float64,0x3fe226fe9de44dfe,0x3feef6c0f3cb00fa,1
1303
+ np.float64,0x3fd5c933baab9268,0x3ff3933e8a37de42,1
1304
+ np.float64,0x3feaa98496f5530a,0x3fe2c003832ebf21,1
1305
+ np.float64,0xbfc6f80a2f2df014,0x3ffc04fd54cb1317,1
1306
+ np.float64,0x3fde5e18d0bcbc30,0x3ff138f7b32a2ca3,1
1307
+ np.float64,0xbfe30c8dd566191c,0x4001aad4af935a78,1
1308
+ np.float64,0x3fbe8d196e3d1a30,0x3ff737fec8149ecc,1
1309
+ np.float64,0x3feaee6731f5dcce,0x3fe241fa42cce22d,1
1310
+ np.float64,0x3fef9cc46cff3988,0x3fc3f17b708dbdbb,1
1311
+ np.float64,0xbfdb181bdeb63038,0x4000103ecf405602,1
1312
+ np.float64,0xbfc58de0ed2b1bc0,0x3ffbd704c14e15cd,1
1313
+ np.float64,0xbfee05d5507c0bab,0x40064e480faba6d8,1
1314
+ np.float64,0x3fe27d0ffa64fa20,0x3fee8dc71ef79f2c,1
1315
+ np.float64,0xbfe4f7ad4c69ef5a,0x400248456cd09a07,1
1316
+ np.float64,0xbfe4843e91e9087d,0x4002225f3e139c84,1
1317
+ np.float64,0x3fe7158b9c6e2b18,0x3fe87ae845c5ba96,1
1318
+ np.float64,0xbfea64316074c863,0x400452fd2bc23a44,1
1319
+ np.float64,0xbfc9f3ae4133e75c,0x3ffc663d482afa42,1
1320
+ np.float64,0xbfd5e18513abc30a,0x3ffeb72fc76d7071,1
1321
+ np.float64,0xbfd52f6438aa5ec8,0x3ffe87e5b18041e5,1
1322
+ np.float64,0xbfea970650f52e0d,0x400469a4a6758154,1
1323
+ np.float64,0xbfe44321b7e88644,0x40020d404a2141b1,1
1324
+ np.float64,0x3fdf5a39bbbeb474,0x3ff0f10453059dbd,1
1325
+ np.float64,0xbfa1d4069423a810,0x3ff9b0a2eacd2ce2,1
1326
+ np.float64,0xbfc36d16a326da2c,0x3ffb92077d41d26a,1
1327
+ np.float64,0x1,0x3ff921fb54442d18,1
1328
+ np.float64,0x3feb232a79764654,0x3fe1df5beeb249d0,1
1329
+ np.float64,0xbfed2003d5fa4008,0x4005b737c2727583,1
1330
+ np.float64,0x3fd5b093a3ab6128,0x3ff399ca2db1d96d,1
1331
+ np.float64,0x3fca692c3d34d258,0x3ff5ceb86b79223e,1
1332
+ np.float64,0x3fd6bbdf89ad77c0,0x3ff3528916df652d,1
1333
+ np.float64,0xbfefdadd46ffb5bb,0x40085ee735e19f19,1
1334
+ np.float64,0x3feb69fb2676d3f6,0x3fe157ee0c15691e,1
1335
+ np.float64,0x3fe44c931f689926,0x3fec46b6f5e3f265,1
1336
+ np.float64,0xbfc43ddbcb287bb8,0x3ffbac71d268d74d,1
1337
+ np.float64,0x3fe6e16d43edc2da,0x3fe8c5cf0f0daa66,1
1338
+ np.float64,0x3fe489efc76913e0,0x3febf704ca1ac2a6,1
1339
+ np.float64,0xbfe590aadceb2156,0x40027b764205cf78,1
1340
+ np.float64,0xbf782e8aa0305d00,0x3ff93a29e81928ab,1
1341
+ np.float64,0x3fedcb80cffb9702,0x3fd7e5d1f98a418b,1
1342
+ np.float64,0x3fe075858060eb0c,0x3ff07d23ab46b60f,1
1343
+ np.float64,0x3fe62a68296c54d0,0x3fe9c77f7068043b,1
1344
+ np.float64,0x3feff16a3c7fe2d4,0x3fae8e8a739cc67a,1
1345
+ np.float64,0xbfd6ed93e3addb28,0x3ffefebab206fa99,1
1346
+ np.float64,0x3fe40d8ccf681b1a,0x3fec97e9cd29966d,1
1347
+ np.float64,0x3fd6408210ac8104,0x3ff3737a7d374107,1
1348
+ np.float64,0x3fec8023b8f90048,0x3fde35ebfb2b3afd,1
1349
+ np.float64,0xbfe13babd4627758,0x40011dae5c07c56b,1
1350
+ np.float64,0xbfd2183e61a4307c,0x3ffdb80dd747cfbe,1
1351
+ np.float64,0x3feae8eb1d75d1d6,0x3fe24c1f6e42ae77,1
1352
+ np.float64,0xbfea559b9c74ab37,0x40044c8e5e123b20,1
1353
+ np.float64,0xbfd12c9d57a2593a,0x3ffd7ac6222f561c,1
1354
+ np.float64,0x3fe32eb697e65d6e,0x3fedb202693875b6,1
1355
+ np.float64,0xbfde0808c3bc1012,0x4000794bd8616ea3,1
1356
+ np.float64,0x3fe14958a06292b2,0x3ff0007b40ac648a,1
1357
+ np.float64,0x3fe3d388a6e7a712,0x3fece21751a6dd7c,1
1358
+ np.float64,0x3fe7ad7897ef5af2,0x3fe79c5b3da302a7,1
1359
+ np.float64,0x3fec75527e78eaa4,0x3fde655de0cf0508,1
1360
+ np.float64,0x3fea920d4c75241a,0x3fe2ea48f031d908,1
1361
+ np.float64,0x7fefffffffffffff,0x7ff8000000000000,1
1362
+ np.float64,0xbfc17a68cb22f4d0,0x3ffb530925f41aa0,1
1363
+ np.float64,0xbfe1c93166e39263,0x400147f3cb435dec,1
1364
+ np.float64,0x3feb97c402f72f88,0x3fe0fe5b561bf869,1
1365
+ np.float64,0x3fb58ff5162b1ff0,0x3ff7c8933fa969dc,1
1366
+ np.float64,0x3fe68e2beded1c58,0x3fe93c075283703b,1
1367
+ np.float64,0xbf94564cc828aca0,0x3ff97355e5ee35db,1
1368
+ np.float64,0x3fd31061c9a620c4,0x3ff44b150ec96998,1
1369
+ np.float64,0xbfc7d0c89f2fa190,0x3ffc208bf4eddc4d,1
1370
+ np.float64,0x3fe5736f1d6ae6de,0x3feac18f84992d1e,1
1371
+ np.float64,0x3fdb62e480b6c5c8,0x3ff20ecfdc4afe7c,1
1372
+ np.float64,0xbfc417228b282e44,0x3ffba78afea35979,1
1373
+ np.float64,0x3f8f5ba1303eb780,0x3ff8e343714630ff,1
1374
+ np.float64,0x3fe8e99126f1d322,0x3fe5b6511d4c0798,1
1375
+ np.float64,0xbfe2ec08a1e5d812,0x4001a0bb28a85875,1
1376
+ np.float64,0x3fea3b46cf74768e,0x3fe383dceaa74296,1
1377
+ np.float64,0xbfe008b5ed60116c,0x4000c3d62c275d40,1
1378
+ np.float64,0xbfcd9f8a4b3b3f14,0x3ffcde98d6484202,1
1379
+ np.float64,0xbfdb5fb112b6bf62,0x40001a22137ef1c9,1
1380
+ np.float64,0xbfe9079565f20f2b,0x4003c0670c92e401,1
1381
+ np.float64,0xbfce250dc53c4a1c,0x3ffcefc2b3dc3332,1
1382
+ np.float64,0x3fe9ba85d373750c,0x3fe4607131b28773,1
1383
+ np.float64,0x10000000000000,0x3ff921fb54442d18,1
1384
+ np.float64,0xbfeb9ef42c773de8,0x4004e5f239203ad8,1
1385
+ np.float64,0xbfd6bf457dad7e8a,0x3ffef2563d87b18d,1
1386
+ np.float64,0x3fe4de9aa5e9bd36,0x3feb87f97defb04a,1
1387
+ np.float64,0x3fedb4f67cfb69ec,0x3fd8603c465bffac,1
1388
+ np.float64,0x3fe7b6d9506f6db2,0x3fe78e670c7bdb67,1
1389
+ np.float64,0x3fe071717460e2e2,0x3ff07f84472d9cc5,1
1390
+ np.float64,0xbfed2e79dbfa5cf4,0x4005bffc6f9ad24f,1
1391
+ np.float64,0x3febb8adc377715c,0x3fe0bcebfbd45900,1
1392
+ np.float64,0xbfee2cffd87c5a00,0x40066b20a037c478,1
1393
+ np.float64,0x3fef7e358d7efc6c,0x3fc6d0ba71a542a8,1
1394
+ np.float64,0xbfef027eef7e04fe,0x400723291cb00a7a,1
1395
+ np.float64,0x3fac96da34392dc0,0x3ff83d260a936c6a,1
1396
+ np.float64,0x3fe9dba94a73b752,0x3fe428736b94885e,1
1397
+ np.float64,0x3fed37581efa6eb0,0x3fdae49dcadf1d90,1
1398
+ np.float64,0xbfe6e61037edcc20,0x4002f23031b8d522,1
1399
+ np.float64,0xbfdea7204dbd4e40,0x40008fe1f37918b7,1
1400
+ np.float64,0x3feb9f8edb773f1e,0x3fe0eef20bd4387b,1
1401
+ np.float64,0x3feeb0b6ed7d616e,0x3fd25fb3b7a525d6,1
1402
+ np.float64,0xbfd7ce9061af9d20,0x3fff3b25d531aa2b,1
1403
+ np.float64,0xbfc806b509300d6c,0x3ffc2768743a8360,1
1404
+ np.float64,0xbfa283882c250710,0x3ff9b61fda28914a,1
1405
+ np.float64,0x3fdec70050bd8e00,0x3ff11b1d769b578f,1
1406
+ np.float64,0xbfc858a44930b148,0x3ffc31d6758b4721,1
1407
+ np.float64,0x3fdc321150b86424,0x3ff1d5504c3c91e4,1
1408
+ np.float64,0x3fd9416870b282d0,0x3ff2a46f3a850f5b,1
1409
+ np.float64,0x3fdd756968baead4,0x3ff17ac510a5573f,1
1410
+ np.float64,0xbfedfd632cfbfac6,0x400648345a2f89b0,1
1411
+ np.float64,0x3fd6874285ad0e84,0x3ff36098ebff763f,1
1412
+ np.float64,0x3fe6daacc9edb55a,0x3fe8cf75fae1e35f,1
1413
+ np.float64,0x3fe53f19766a7e32,0x3feb07d0e97cd55b,1
1414
+ np.float64,0x3fd13cc36ca27988,0x3ff4c4ff801b1faa,1
1415
+ np.float64,0x3fe4f21cbce9e43a,0x3feb6e34a72ef529,1
1416
+ np.float64,0xbfc21c1cc9243838,0x3ffb67726394ca89,1
1417
+ np.float64,0x3fe947a3f2728f48,0x3fe51eae4660e23c,1
1418
+ np.float64,0xbfce78cd653cf19c,0x3ffcfa89194b3f5e,1
1419
+ np.float64,0x3fe756f049eeade0,0x3fe81be7f2d399e2,1
1420
+ np.float64,0xbfcc727cf138e4f8,0x3ffcb7f547841bb0,1
1421
+ np.float64,0xbfc2d8d58f25b1ac,0x3ffb7f496cc72458,1
1422
+ np.float64,0xbfcfd0e4653fa1c8,0x3ffd26e1309bc80b,1
1423
+ np.float64,0xbfe2126c106424d8,0x40015e0e01db6a4a,1
1424
+ np.float64,0x3fe580e4306b01c8,0x3feaaf683ce51aa5,1
1425
+ np.float64,0x3fcea8a1b93d5140,0x3ff543456c0d28c7,1
1426
+ np.float64,0xfff0000000000000,0x7ff8000000000000,1
1427
+ np.float64,0xbfd9d5da72b3abb4,0x3fffc8013113f968,1
1428
+ np.float64,0xbfe1fdfcea63fbfa,0x400157def2e4808d,1
1429
+ np.float64,0xbfc0022e0720045c,0x3ffb239963e7cbf2,1