numpy 2.4.1__pp311-pypy311_pp73-macosx_14_0_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.
- numpy/__config__.py +170 -0
- numpy/__config__.pyi +108 -0
- numpy/__init__.cython-30.pxd +1242 -0
- numpy/__init__.pxd +1155 -0
- numpy/__init__.py +942 -0
- numpy/__init__.pyi +6202 -0
- numpy/_array_api_info.py +346 -0
- numpy/_array_api_info.pyi +206 -0
- numpy/_configtool.py +39 -0
- numpy/_configtool.pyi +1 -0
- numpy/_core/__init__.py +201 -0
- numpy/_core/__init__.pyi +666 -0
- numpy/_core/_add_newdocs.py +7151 -0
- numpy/_core/_add_newdocs.pyi +2 -0
- numpy/_core/_add_newdocs_scalars.py +381 -0
- numpy/_core/_add_newdocs_scalars.pyi +16 -0
- numpy/_core/_asarray.py +130 -0
- numpy/_core/_asarray.pyi +43 -0
- numpy/_core/_dtype.py +366 -0
- numpy/_core/_dtype.pyi +56 -0
- numpy/_core/_dtype_ctypes.py +120 -0
- numpy/_core/_dtype_ctypes.pyi +83 -0
- numpy/_core/_exceptions.py +162 -0
- numpy/_core/_exceptions.pyi +54 -0
- numpy/_core/_internal.py +968 -0
- numpy/_core/_internal.pyi +61 -0
- numpy/_core/_methods.py +252 -0
- numpy/_core/_methods.pyi +22 -0
- numpy/_core/_multiarray_tests.pypy311-pp73-darwin.so +0 -0
- numpy/_core/_multiarray_umath.pypy311-pp73-darwin.so +0 -0
- numpy/_core/_operand_flag_tests.pypy311-pp73-darwin.so +0 -0
- numpy/_core/_rational_tests.pypy311-pp73-darwin.so +0 -0
- numpy/_core/_simd.pyi +35 -0
- numpy/_core/_simd.pypy311-pp73-darwin.so +0 -0
- numpy/_core/_string_helpers.py +100 -0
- numpy/_core/_string_helpers.pyi +12 -0
- numpy/_core/_struct_ufunc_tests.pypy311-pp73-darwin.so +0 -0
- numpy/_core/_type_aliases.py +131 -0
- numpy/_core/_type_aliases.pyi +86 -0
- numpy/_core/_ufunc_config.py +515 -0
- numpy/_core/_ufunc_config.pyi +69 -0
- numpy/_core/_umath_tests.pyi +47 -0
- numpy/_core/_umath_tests.pypy311-pp73-darwin.so +0 -0
- numpy/_core/arrayprint.py +1779 -0
- numpy/_core/arrayprint.pyi +158 -0
- numpy/_core/cversions.py +13 -0
- numpy/_core/defchararray.py +1414 -0
- numpy/_core/defchararray.pyi +1150 -0
- numpy/_core/einsumfunc.py +1650 -0
- numpy/_core/einsumfunc.pyi +184 -0
- numpy/_core/fromnumeric.py +4233 -0
- numpy/_core/fromnumeric.pyi +1735 -0
- numpy/_core/function_base.py +547 -0
- numpy/_core/function_base.pyi +276 -0
- numpy/_core/getlimits.py +462 -0
- numpy/_core/getlimits.pyi +124 -0
- numpy/_core/include/numpy/__multiarray_api.c +376 -0
- numpy/_core/include/numpy/__multiarray_api.h +1628 -0
- numpy/_core/include/numpy/__ufunc_api.c +55 -0
- numpy/_core/include/numpy/__ufunc_api.h +349 -0
- numpy/_core/include/numpy/_neighborhood_iterator_imp.h +90 -0
- numpy/_core/include/numpy/_numpyconfig.h +33 -0
- numpy/_core/include/numpy/_public_dtype_api_table.h +86 -0
- numpy/_core/include/numpy/arrayobject.h +7 -0
- numpy/_core/include/numpy/arrayscalars.h +198 -0
- numpy/_core/include/numpy/dtype_api.h +547 -0
- numpy/_core/include/numpy/halffloat.h +70 -0
- numpy/_core/include/numpy/ndarrayobject.h +304 -0
- numpy/_core/include/numpy/ndarraytypes.h +1982 -0
- numpy/_core/include/numpy/npy_2_compat.h +249 -0
- numpy/_core/include/numpy/npy_2_complexcompat.h +28 -0
- numpy/_core/include/numpy/npy_3kcompat.h +374 -0
- numpy/_core/include/numpy/npy_common.h +989 -0
- numpy/_core/include/numpy/npy_cpu.h +126 -0
- numpy/_core/include/numpy/npy_endian.h +79 -0
- numpy/_core/include/numpy/npy_math.h +602 -0
- numpy/_core/include/numpy/npy_no_deprecated_api.h +20 -0
- numpy/_core/include/numpy/npy_os.h +42 -0
- numpy/_core/include/numpy/numpyconfig.h +185 -0
- numpy/_core/include/numpy/random/LICENSE.txt +21 -0
- numpy/_core/include/numpy/random/bitgen.h +20 -0
- numpy/_core/include/numpy/random/distributions.h +209 -0
- numpy/_core/include/numpy/random/libdivide.h +2079 -0
- numpy/_core/include/numpy/ufuncobject.h +343 -0
- numpy/_core/include/numpy/utils.h +37 -0
- numpy/_core/lib/libnpymath.a +0 -0
- numpy/_core/lib/npy-pkg-config/mlib.ini +12 -0
- numpy/_core/lib/npy-pkg-config/npymath.ini +20 -0
- numpy/_core/lib/pkgconfig/numpy.pc +7 -0
- numpy/_core/memmap.py +363 -0
- numpy/_core/memmap.pyi +3 -0
- numpy/_core/multiarray.py +1740 -0
- numpy/_core/multiarray.pyi +1316 -0
- numpy/_core/numeric.py +2758 -0
- numpy/_core/numeric.pyi +1276 -0
- numpy/_core/numerictypes.py +633 -0
- numpy/_core/numerictypes.pyi +196 -0
- numpy/_core/overrides.py +188 -0
- numpy/_core/overrides.pyi +47 -0
- numpy/_core/printoptions.py +32 -0
- numpy/_core/printoptions.pyi +28 -0
- numpy/_core/records.py +1088 -0
- numpy/_core/records.pyi +340 -0
- numpy/_core/shape_base.py +996 -0
- numpy/_core/shape_base.pyi +182 -0
- numpy/_core/strings.py +1813 -0
- numpy/_core/strings.pyi +536 -0
- numpy/_core/tests/_locales.py +72 -0
- numpy/_core/tests/_natype.py +144 -0
- numpy/_core/tests/data/astype_copy.pkl +0 -0
- numpy/_core/tests/data/generate_umath_validation_data.cpp +170 -0
- numpy/_core/tests/data/recarray_from_file.fits +0 -0
- numpy/_core/tests/data/umath-validation-set-README.txt +15 -0
- numpy/_core/tests/data/umath-validation-set-arccos.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arccosh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arcsin.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arcsinh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arctan.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arctanh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-cbrt.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-cos.csv +1375 -0
- numpy/_core/tests/data/umath-validation-set-cosh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-exp.csv +412 -0
- numpy/_core/tests/data/umath-validation-set-exp2.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-expm1.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-log.csv +271 -0
- numpy/_core/tests/data/umath-validation-set-log10.csv +1629 -0
- numpy/_core/tests/data/umath-validation-set-log1p.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-log2.csv +1629 -0
- numpy/_core/tests/data/umath-validation-set-sin.csv +1370 -0
- numpy/_core/tests/data/umath-validation-set-sinh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-tan.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-tanh.csv +1429 -0
- numpy/_core/tests/examples/cython/checks.pyx +373 -0
- numpy/_core/tests/examples/cython/meson.build +43 -0
- numpy/_core/tests/examples/cython/setup.py +39 -0
- numpy/_core/tests/examples/limited_api/limited_api1.c +17 -0
- numpy/_core/tests/examples/limited_api/limited_api2.pyx +11 -0
- numpy/_core/tests/examples/limited_api/limited_api_latest.c +19 -0
- numpy/_core/tests/examples/limited_api/meson.build +59 -0
- numpy/_core/tests/examples/limited_api/setup.py +24 -0
- numpy/_core/tests/test__exceptions.py +90 -0
- numpy/_core/tests/test_abc.py +54 -0
- numpy/_core/tests/test_api.py +655 -0
- numpy/_core/tests/test_argparse.py +90 -0
- numpy/_core/tests/test_array_api_info.py +113 -0
- numpy/_core/tests/test_array_coercion.py +928 -0
- numpy/_core/tests/test_array_interface.py +222 -0
- numpy/_core/tests/test_arraymethod.py +84 -0
- numpy/_core/tests/test_arrayobject.py +75 -0
- numpy/_core/tests/test_arrayprint.py +1324 -0
- numpy/_core/tests/test_casting_floatingpoint_errors.py +154 -0
- numpy/_core/tests/test_casting_unittests.py +955 -0
- numpy/_core/tests/test_conversion_utils.py +209 -0
- numpy/_core/tests/test_cpu_dispatcher.py +48 -0
- numpy/_core/tests/test_cpu_features.py +450 -0
- numpy/_core/tests/test_custom_dtypes.py +393 -0
- numpy/_core/tests/test_cython.py +352 -0
- numpy/_core/tests/test_datetime.py +2792 -0
- numpy/_core/tests/test_defchararray.py +858 -0
- numpy/_core/tests/test_deprecations.py +460 -0
- numpy/_core/tests/test_dlpack.py +190 -0
- numpy/_core/tests/test_dtype.py +2110 -0
- numpy/_core/tests/test_einsum.py +1351 -0
- numpy/_core/tests/test_errstate.py +131 -0
- numpy/_core/tests/test_extint128.py +217 -0
- numpy/_core/tests/test_finfo.py +86 -0
- numpy/_core/tests/test_function_base.py +504 -0
- numpy/_core/tests/test_getlimits.py +171 -0
- numpy/_core/tests/test_half.py +593 -0
- numpy/_core/tests/test_hashtable.py +36 -0
- numpy/_core/tests/test_indexerrors.py +122 -0
- numpy/_core/tests/test_indexing.py +1692 -0
- numpy/_core/tests/test_item_selection.py +167 -0
- numpy/_core/tests/test_limited_api.py +102 -0
- numpy/_core/tests/test_longdouble.py +370 -0
- numpy/_core/tests/test_mem_overlap.py +933 -0
- numpy/_core/tests/test_mem_policy.py +453 -0
- numpy/_core/tests/test_memmap.py +248 -0
- numpy/_core/tests/test_multiarray.py +11008 -0
- numpy/_core/tests/test_multiprocessing.py +55 -0
- numpy/_core/tests/test_multithreading.py +377 -0
- numpy/_core/tests/test_nditer.py +3533 -0
- numpy/_core/tests/test_nep50_promotions.py +287 -0
- numpy/_core/tests/test_numeric.py +4295 -0
- numpy/_core/tests/test_numerictypes.py +650 -0
- numpy/_core/tests/test_overrides.py +800 -0
- numpy/_core/tests/test_print.py +202 -0
- numpy/_core/tests/test_protocols.py +46 -0
- numpy/_core/tests/test_records.py +544 -0
- numpy/_core/tests/test_regression.py +2677 -0
- numpy/_core/tests/test_scalar_ctors.py +203 -0
- numpy/_core/tests/test_scalar_methods.py +328 -0
- numpy/_core/tests/test_scalarbuffer.py +153 -0
- numpy/_core/tests/test_scalarinherit.py +105 -0
- numpy/_core/tests/test_scalarmath.py +1168 -0
- numpy/_core/tests/test_scalarprint.py +403 -0
- numpy/_core/tests/test_shape_base.py +904 -0
- numpy/_core/tests/test_simd.py +1345 -0
- numpy/_core/tests/test_simd_module.py +105 -0
- numpy/_core/tests/test_stringdtype.py +1855 -0
- numpy/_core/tests/test_strings.py +1523 -0
- numpy/_core/tests/test_ufunc.py +3405 -0
- numpy/_core/tests/test_umath.py +4962 -0
- numpy/_core/tests/test_umath_accuracy.py +132 -0
- numpy/_core/tests/test_umath_complex.py +631 -0
- numpy/_core/tests/test_unicode.py +369 -0
- numpy/_core/umath.py +60 -0
- numpy/_core/umath.pyi +232 -0
- numpy/_distributor_init.py +15 -0
- numpy/_distributor_init.pyi +1 -0
- numpy/_expired_attrs_2_0.py +78 -0
- numpy/_expired_attrs_2_0.pyi +61 -0
- numpy/_globals.py +121 -0
- numpy/_globals.pyi +17 -0
- numpy/_pyinstaller/__init__.py +0 -0
- numpy/_pyinstaller/__init__.pyi +0 -0
- numpy/_pyinstaller/hook-numpy.py +36 -0
- numpy/_pyinstaller/hook-numpy.pyi +6 -0
- numpy/_pyinstaller/tests/__init__.py +16 -0
- numpy/_pyinstaller/tests/pyinstaller-smoke.py +32 -0
- numpy/_pyinstaller/tests/test_pyinstaller.py +35 -0
- numpy/_pytesttester.py +201 -0
- numpy/_pytesttester.pyi +18 -0
- numpy/_typing/__init__.py +173 -0
- numpy/_typing/_add_docstring.py +153 -0
- numpy/_typing/_array_like.py +106 -0
- numpy/_typing/_char_codes.py +213 -0
- numpy/_typing/_dtype_like.py +114 -0
- numpy/_typing/_extended_precision.py +15 -0
- numpy/_typing/_nbit.py +19 -0
- numpy/_typing/_nbit_base.py +94 -0
- numpy/_typing/_nbit_base.pyi +39 -0
- numpy/_typing/_nested_sequence.py +79 -0
- numpy/_typing/_scalars.py +20 -0
- numpy/_typing/_shape.py +8 -0
- numpy/_typing/_ufunc.py +7 -0
- numpy/_typing/_ufunc.pyi +975 -0
- numpy/_utils/__init__.py +95 -0
- numpy/_utils/__init__.pyi +28 -0
- numpy/_utils/_convertions.py +18 -0
- numpy/_utils/_convertions.pyi +4 -0
- numpy/_utils/_inspect.py +192 -0
- numpy/_utils/_inspect.pyi +70 -0
- numpy/_utils/_pep440.py +486 -0
- numpy/_utils/_pep440.pyi +118 -0
- numpy/char/__init__.py +2 -0
- numpy/char/__init__.pyi +111 -0
- numpy/conftest.py +248 -0
- numpy/core/__init__.py +33 -0
- numpy/core/__init__.pyi +0 -0
- numpy/core/_dtype.py +10 -0
- numpy/core/_dtype.pyi +0 -0
- numpy/core/_dtype_ctypes.py +10 -0
- numpy/core/_dtype_ctypes.pyi +0 -0
- numpy/core/_internal.py +27 -0
- numpy/core/_multiarray_umath.py +57 -0
- numpy/core/_utils.py +21 -0
- numpy/core/arrayprint.py +10 -0
- numpy/core/defchararray.py +10 -0
- numpy/core/einsumfunc.py +10 -0
- numpy/core/fromnumeric.py +10 -0
- numpy/core/function_base.py +10 -0
- numpy/core/getlimits.py +10 -0
- numpy/core/multiarray.py +25 -0
- numpy/core/numeric.py +12 -0
- numpy/core/numerictypes.py +10 -0
- numpy/core/overrides.py +10 -0
- numpy/core/overrides.pyi +7 -0
- numpy/core/records.py +10 -0
- numpy/core/shape_base.py +10 -0
- numpy/core/umath.py +10 -0
- numpy/ctypeslib/__init__.py +13 -0
- numpy/ctypeslib/__init__.pyi +15 -0
- numpy/ctypeslib/_ctypeslib.py +603 -0
- numpy/ctypeslib/_ctypeslib.pyi +236 -0
- numpy/distutils/__init__.py +64 -0
- numpy/distutils/__init__.pyi +4 -0
- numpy/distutils/__pycache__/conv_template.pypy311.pyc +0 -0
- numpy/distutils/_shell_utils.py +87 -0
- numpy/distutils/armccompiler.py +26 -0
- numpy/distutils/ccompiler.py +826 -0
- numpy/distutils/ccompiler_opt.py +2668 -0
- numpy/distutils/checks/cpu_asimd.c +27 -0
- numpy/distutils/checks/cpu_asimddp.c +16 -0
- numpy/distutils/checks/cpu_asimdfhm.c +19 -0
- numpy/distutils/checks/cpu_asimdhp.c +15 -0
- numpy/distutils/checks/cpu_avx.c +20 -0
- numpy/distutils/checks/cpu_avx2.c +20 -0
- numpy/distutils/checks/cpu_avx512_clx.c +22 -0
- numpy/distutils/checks/cpu_avx512_cnl.c +24 -0
- numpy/distutils/checks/cpu_avx512_icl.c +26 -0
- numpy/distutils/checks/cpu_avx512_knl.c +25 -0
- numpy/distutils/checks/cpu_avx512_knm.c +30 -0
- numpy/distutils/checks/cpu_avx512_skx.c +26 -0
- numpy/distutils/checks/cpu_avx512_spr.c +26 -0
- numpy/distutils/checks/cpu_avx512cd.c +20 -0
- numpy/distutils/checks/cpu_avx512f.c +20 -0
- numpy/distutils/checks/cpu_f16c.c +22 -0
- numpy/distutils/checks/cpu_fma3.c +22 -0
- numpy/distutils/checks/cpu_fma4.c +13 -0
- numpy/distutils/checks/cpu_lsx.c +11 -0
- numpy/distutils/checks/cpu_neon.c +19 -0
- numpy/distutils/checks/cpu_neon_fp16.c +11 -0
- numpy/distutils/checks/cpu_neon_vfpv4.c +21 -0
- numpy/distutils/checks/cpu_popcnt.c +32 -0
- numpy/distutils/checks/cpu_rvv.c +13 -0
- numpy/distutils/checks/cpu_sse.c +20 -0
- numpy/distutils/checks/cpu_sse2.c +20 -0
- numpy/distutils/checks/cpu_sse3.c +20 -0
- numpy/distutils/checks/cpu_sse41.c +20 -0
- numpy/distutils/checks/cpu_sse42.c +20 -0
- numpy/distutils/checks/cpu_ssse3.c +20 -0
- numpy/distutils/checks/cpu_sve.c +14 -0
- numpy/distutils/checks/cpu_vsx.c +21 -0
- numpy/distutils/checks/cpu_vsx2.c +13 -0
- numpy/distutils/checks/cpu_vsx3.c +13 -0
- numpy/distutils/checks/cpu_vsx4.c +14 -0
- numpy/distutils/checks/cpu_vx.c +16 -0
- numpy/distutils/checks/cpu_vxe.c +25 -0
- numpy/distutils/checks/cpu_vxe2.c +21 -0
- numpy/distutils/checks/cpu_xop.c +12 -0
- numpy/distutils/checks/extra_avx512bw_mask.c +18 -0
- numpy/distutils/checks/extra_avx512dq_mask.c +16 -0
- numpy/distutils/checks/extra_avx512f_reduce.c +41 -0
- numpy/distutils/checks/extra_vsx3_half_double.c +12 -0
- numpy/distutils/checks/extra_vsx4_mma.c +21 -0
- numpy/distutils/checks/extra_vsx_asm.c +36 -0
- numpy/distutils/checks/test_flags.c +1 -0
- numpy/distutils/command/__init__.py +41 -0
- numpy/distutils/command/autodist.py +148 -0
- numpy/distutils/command/bdist_rpm.py +22 -0
- numpy/distutils/command/build.py +62 -0
- numpy/distutils/command/build_clib.py +469 -0
- numpy/distutils/command/build_ext.py +752 -0
- numpy/distutils/command/build_py.py +31 -0
- numpy/distutils/command/build_scripts.py +49 -0
- numpy/distutils/command/build_src.py +773 -0
- numpy/distutils/command/config.py +516 -0
- numpy/distutils/command/config_compiler.py +126 -0
- numpy/distutils/command/develop.py +15 -0
- numpy/distutils/command/egg_info.py +25 -0
- numpy/distutils/command/install.py +79 -0
- numpy/distutils/command/install_clib.py +40 -0
- numpy/distutils/command/install_data.py +24 -0
- numpy/distutils/command/install_headers.py +25 -0
- numpy/distutils/command/sdist.py +27 -0
- numpy/distutils/conv_template.py +329 -0
- numpy/distutils/core.py +215 -0
- numpy/distutils/cpuinfo.py +683 -0
- numpy/distutils/exec_command.py +315 -0
- numpy/distutils/extension.py +101 -0
- numpy/distutils/fcompiler/__init__.py +1035 -0
- numpy/distutils/fcompiler/absoft.py +158 -0
- numpy/distutils/fcompiler/arm.py +71 -0
- numpy/distutils/fcompiler/compaq.py +120 -0
- numpy/distutils/fcompiler/environment.py +88 -0
- numpy/distutils/fcompiler/fujitsu.py +46 -0
- numpy/distutils/fcompiler/g95.py +42 -0
- numpy/distutils/fcompiler/gnu.py +555 -0
- numpy/distutils/fcompiler/hpux.py +41 -0
- numpy/distutils/fcompiler/ibm.py +97 -0
- numpy/distutils/fcompiler/intel.py +211 -0
- numpy/distutils/fcompiler/lahey.py +45 -0
- numpy/distutils/fcompiler/mips.py +54 -0
- numpy/distutils/fcompiler/nag.py +87 -0
- numpy/distutils/fcompiler/none.py +28 -0
- numpy/distutils/fcompiler/nv.py +53 -0
- numpy/distutils/fcompiler/pathf95.py +33 -0
- numpy/distutils/fcompiler/pg.py +128 -0
- numpy/distutils/fcompiler/sun.py +51 -0
- numpy/distutils/fcompiler/vast.py +52 -0
- numpy/distutils/from_template.py +261 -0
- numpy/distutils/fujitsuccompiler.py +28 -0
- numpy/distutils/intelccompiler.py +106 -0
- numpy/distutils/lib2def.py +116 -0
- numpy/distutils/line_endings.py +77 -0
- numpy/distutils/log.py +111 -0
- numpy/distutils/mingw/gfortran_vs2003_hack.c +6 -0
- numpy/distutils/mingw32ccompiler.py +620 -0
- numpy/distutils/misc_util.py +2484 -0
- numpy/distutils/msvc9compiler.py +63 -0
- numpy/distutils/msvccompiler.py +76 -0
- numpy/distutils/npy_pkg_config.py +441 -0
- numpy/distutils/numpy_distribution.py +17 -0
- numpy/distutils/pathccompiler.py +21 -0
- numpy/distutils/system_info.py +3267 -0
- numpy/distutils/tests/__init__.py +0 -0
- numpy/distutils/tests/test_build_ext.py +74 -0
- numpy/distutils/tests/test_ccompiler_opt.py +808 -0
- numpy/distutils/tests/test_ccompiler_opt_conf.py +176 -0
- numpy/distutils/tests/test_exec_command.py +217 -0
- numpy/distutils/tests/test_fcompiler.py +43 -0
- numpy/distutils/tests/test_fcompiler_gnu.py +55 -0
- numpy/distutils/tests/test_fcompiler_intel.py +30 -0
- numpy/distutils/tests/test_fcompiler_nagfor.py +22 -0
- numpy/distutils/tests/test_from_template.py +44 -0
- numpy/distutils/tests/test_log.py +34 -0
- numpy/distutils/tests/test_mingw32ccompiler.py +47 -0
- numpy/distutils/tests/test_misc_util.py +88 -0
- numpy/distutils/tests/test_npy_pkg_config.py +84 -0
- numpy/distutils/tests/test_shell_utils.py +79 -0
- numpy/distutils/tests/test_system_info.py +334 -0
- numpy/distutils/tests/utilities.py +90 -0
- numpy/distutils/unixccompiler.py +141 -0
- numpy/doc/ufuncs.py +138 -0
- numpy/dtypes.py +41 -0
- numpy/dtypes.pyi +630 -0
- numpy/exceptions.py +246 -0
- numpy/exceptions.pyi +27 -0
- numpy/f2py/__init__.py +86 -0
- numpy/f2py/__init__.pyi +5 -0
- numpy/f2py/__main__.py +5 -0
- numpy/f2py/__version__.py +1 -0
- numpy/f2py/__version__.pyi +1 -0
- numpy/f2py/_backends/__init__.py +9 -0
- numpy/f2py/_backends/__init__.pyi +5 -0
- numpy/f2py/_backends/_backend.py +44 -0
- numpy/f2py/_backends/_backend.pyi +46 -0
- numpy/f2py/_backends/_distutils.py +76 -0
- numpy/f2py/_backends/_distutils.pyi +13 -0
- numpy/f2py/_backends/_meson.py +244 -0
- numpy/f2py/_backends/_meson.pyi +62 -0
- numpy/f2py/_backends/meson.build.template +58 -0
- numpy/f2py/_isocbind.py +62 -0
- numpy/f2py/_isocbind.pyi +13 -0
- numpy/f2py/_src_pyf.py +247 -0
- numpy/f2py/_src_pyf.pyi +28 -0
- numpy/f2py/auxfuncs.py +1004 -0
- numpy/f2py/auxfuncs.pyi +262 -0
- numpy/f2py/capi_maps.py +811 -0
- numpy/f2py/capi_maps.pyi +33 -0
- numpy/f2py/cb_rules.py +665 -0
- numpy/f2py/cb_rules.pyi +17 -0
- numpy/f2py/cfuncs.py +1563 -0
- numpy/f2py/cfuncs.pyi +31 -0
- numpy/f2py/common_rules.py +143 -0
- numpy/f2py/common_rules.pyi +9 -0
- numpy/f2py/crackfortran.py +3725 -0
- numpy/f2py/crackfortran.pyi +266 -0
- numpy/f2py/diagnose.py +149 -0
- numpy/f2py/diagnose.pyi +1 -0
- numpy/f2py/f2py2e.py +788 -0
- numpy/f2py/f2py2e.pyi +74 -0
- numpy/f2py/f90mod_rules.py +269 -0
- numpy/f2py/f90mod_rules.pyi +16 -0
- numpy/f2py/func2subr.py +329 -0
- numpy/f2py/func2subr.pyi +7 -0
- numpy/f2py/rules.py +1629 -0
- numpy/f2py/rules.pyi +41 -0
- numpy/f2py/setup.cfg +3 -0
- numpy/f2py/src/fortranobject.c +1436 -0
- numpy/f2py/src/fortranobject.h +173 -0
- numpy/f2py/symbolic.py +1518 -0
- numpy/f2py/symbolic.pyi +219 -0
- numpy/f2py/tests/__init__.py +16 -0
- numpy/f2py/tests/src/abstract_interface/foo.f90 +34 -0
- numpy/f2py/tests/src/abstract_interface/gh18403_mod.f90 +6 -0
- numpy/f2py/tests/src/array_from_pyobj/wrapmodule.c +235 -0
- numpy/f2py/tests/src/assumed_shape/.f2py_f2cmap +1 -0
- numpy/f2py/tests/src/assumed_shape/foo_free.f90 +34 -0
- numpy/f2py/tests/src/assumed_shape/foo_mod.f90 +41 -0
- numpy/f2py/tests/src/assumed_shape/foo_use.f90 +19 -0
- numpy/f2py/tests/src/assumed_shape/precision.f90 +4 -0
- numpy/f2py/tests/src/block_docstring/foo.f +6 -0
- numpy/f2py/tests/src/callback/foo.f +62 -0
- numpy/f2py/tests/src/callback/gh17797.f90 +7 -0
- numpy/f2py/tests/src/callback/gh18335.f90 +17 -0
- numpy/f2py/tests/src/callback/gh25211.f +10 -0
- numpy/f2py/tests/src/callback/gh25211.pyf +18 -0
- numpy/f2py/tests/src/callback/gh26681.f90 +18 -0
- numpy/f2py/tests/src/cli/gh_22819.pyf +6 -0
- numpy/f2py/tests/src/cli/hi77.f +3 -0
- numpy/f2py/tests/src/cli/hiworld.f90 +3 -0
- numpy/f2py/tests/src/common/block.f +11 -0
- numpy/f2py/tests/src/common/gh19161.f90 +10 -0
- numpy/f2py/tests/src/crackfortran/accesstype.f90 +13 -0
- numpy/f2py/tests/src/crackfortran/common_with_division.f +17 -0
- numpy/f2py/tests/src/crackfortran/data_common.f +8 -0
- numpy/f2py/tests/src/crackfortran/data_multiplier.f +5 -0
- numpy/f2py/tests/src/crackfortran/data_stmts.f90 +20 -0
- numpy/f2py/tests/src/crackfortran/data_with_comments.f +8 -0
- numpy/f2py/tests/src/crackfortran/foo_deps.f90 +6 -0
- numpy/f2py/tests/src/crackfortran/gh15035.f +16 -0
- numpy/f2py/tests/src/crackfortran/gh17859.f +12 -0
- numpy/f2py/tests/src/crackfortran/gh22648.pyf +7 -0
- numpy/f2py/tests/src/crackfortran/gh23533.f +5 -0
- numpy/f2py/tests/src/crackfortran/gh23598.f90 +4 -0
- numpy/f2py/tests/src/crackfortran/gh23598Warn.f90 +11 -0
- numpy/f2py/tests/src/crackfortran/gh23879.f90 +20 -0
- numpy/f2py/tests/src/crackfortran/gh27697.f90 +12 -0
- numpy/f2py/tests/src/crackfortran/gh2848.f90 +13 -0
- numpy/f2py/tests/src/crackfortran/operators.f90 +49 -0
- numpy/f2py/tests/src/crackfortran/privatemod.f90 +11 -0
- numpy/f2py/tests/src/crackfortran/publicmod.f90 +10 -0
- numpy/f2py/tests/src/crackfortran/pubprivmod.f90 +10 -0
- numpy/f2py/tests/src/crackfortran/unicode_comment.f90 +4 -0
- numpy/f2py/tests/src/f2cmap/.f2py_f2cmap +1 -0
- numpy/f2py/tests/src/f2cmap/isoFortranEnvMap.f90 +9 -0
- numpy/f2py/tests/src/isocintrin/isoCtests.f90 +34 -0
- numpy/f2py/tests/src/kind/foo.f90 +20 -0
- numpy/f2py/tests/src/mixed/foo.f +5 -0
- numpy/f2py/tests/src/mixed/foo_fixed.f90 +8 -0
- numpy/f2py/tests/src/mixed/foo_free.f90 +8 -0
- numpy/f2py/tests/src/modules/gh25337/data.f90 +8 -0
- numpy/f2py/tests/src/modules/gh25337/use_data.f90 +6 -0
- numpy/f2py/tests/src/modules/gh26920/two_mods_with_no_public_entities.f90 +21 -0
- numpy/f2py/tests/src/modules/gh26920/two_mods_with_one_public_routine.f90 +21 -0
- numpy/f2py/tests/src/modules/module_data_docstring.f90 +12 -0
- numpy/f2py/tests/src/modules/use_modules.f90 +20 -0
- numpy/f2py/tests/src/negative_bounds/issue_20853.f90 +7 -0
- numpy/f2py/tests/src/parameter/constant_array.f90 +45 -0
- numpy/f2py/tests/src/parameter/constant_both.f90 +57 -0
- numpy/f2py/tests/src/parameter/constant_compound.f90 +15 -0
- numpy/f2py/tests/src/parameter/constant_integer.f90 +22 -0
- numpy/f2py/tests/src/parameter/constant_non_compound.f90 +23 -0
- numpy/f2py/tests/src/parameter/constant_real.f90 +23 -0
- numpy/f2py/tests/src/quoted_character/foo.f +14 -0
- numpy/f2py/tests/src/regression/AB.inc +1 -0
- numpy/f2py/tests/src/regression/assignOnlyModule.f90 +25 -0
- numpy/f2py/tests/src/regression/datonly.f90 +17 -0
- numpy/f2py/tests/src/regression/f77comments.f +26 -0
- numpy/f2py/tests/src/regression/f77fixedform.f95 +5 -0
- numpy/f2py/tests/src/regression/f90continuation.f90 +9 -0
- numpy/f2py/tests/src/regression/incfile.f90 +5 -0
- numpy/f2py/tests/src/regression/inout.f90 +9 -0
- numpy/f2py/tests/src/regression/lower_f2py_fortran.f90 +5 -0
- numpy/f2py/tests/src/regression/mod_derived_types.f90 +23 -0
- numpy/f2py/tests/src/return_character/foo77.f +45 -0
- numpy/f2py/tests/src/return_character/foo90.f90 +48 -0
- numpy/f2py/tests/src/return_complex/foo77.f +45 -0
- numpy/f2py/tests/src/return_complex/foo90.f90 +48 -0
- numpy/f2py/tests/src/return_integer/foo77.f +56 -0
- numpy/f2py/tests/src/return_integer/foo90.f90 +59 -0
- numpy/f2py/tests/src/return_logical/foo77.f +56 -0
- numpy/f2py/tests/src/return_logical/foo90.f90 +59 -0
- numpy/f2py/tests/src/return_real/foo77.f +45 -0
- numpy/f2py/tests/src/return_real/foo90.f90 +48 -0
- numpy/f2py/tests/src/routines/funcfortranname.f +5 -0
- numpy/f2py/tests/src/routines/funcfortranname.pyf +11 -0
- numpy/f2py/tests/src/routines/subrout.f +4 -0
- numpy/f2py/tests/src/routines/subrout.pyf +10 -0
- numpy/f2py/tests/src/size/foo.f90 +44 -0
- numpy/f2py/tests/src/string/char.f90 +29 -0
- numpy/f2py/tests/src/string/fixed_string.f90 +34 -0
- numpy/f2py/tests/src/string/gh24008.f +8 -0
- numpy/f2py/tests/src/string/gh24662.f90 +7 -0
- numpy/f2py/tests/src/string/gh25286.f90 +14 -0
- numpy/f2py/tests/src/string/gh25286.pyf +12 -0
- numpy/f2py/tests/src/string/gh25286_bc.pyf +12 -0
- numpy/f2py/tests/src/string/scalar_string.f90 +9 -0
- numpy/f2py/tests/src/string/string.f +12 -0
- numpy/f2py/tests/src/value_attrspec/gh21665.f90 +9 -0
- numpy/f2py/tests/test_abstract_interface.py +26 -0
- numpy/f2py/tests/test_array_from_pyobj.py +678 -0
- numpy/f2py/tests/test_assumed_shape.py +50 -0
- numpy/f2py/tests/test_block_docstring.py +20 -0
- numpy/f2py/tests/test_callback.py +263 -0
- numpy/f2py/tests/test_character.py +641 -0
- numpy/f2py/tests/test_common.py +23 -0
- numpy/f2py/tests/test_crackfortran.py +421 -0
- numpy/f2py/tests/test_data.py +71 -0
- numpy/f2py/tests/test_docs.py +66 -0
- numpy/f2py/tests/test_f2cmap.py +17 -0
- numpy/f2py/tests/test_f2py2e.py +983 -0
- numpy/f2py/tests/test_isoc.py +56 -0
- numpy/f2py/tests/test_kind.py +52 -0
- numpy/f2py/tests/test_mixed.py +35 -0
- numpy/f2py/tests/test_modules.py +83 -0
- numpy/f2py/tests/test_parameter.py +129 -0
- numpy/f2py/tests/test_pyf_src.py +43 -0
- numpy/f2py/tests/test_quoted_character.py +18 -0
- numpy/f2py/tests/test_regression.py +187 -0
- numpy/f2py/tests/test_return_character.py +48 -0
- numpy/f2py/tests/test_return_complex.py +67 -0
- numpy/f2py/tests/test_return_integer.py +55 -0
- numpy/f2py/tests/test_return_logical.py +65 -0
- numpy/f2py/tests/test_return_real.py +109 -0
- numpy/f2py/tests/test_routines.py +29 -0
- numpy/f2py/tests/test_semicolon_split.py +75 -0
- numpy/f2py/tests/test_size.py +45 -0
- numpy/f2py/tests/test_string.py +100 -0
- numpy/f2py/tests/test_symbolic.py +500 -0
- numpy/f2py/tests/test_value_attrspec.py +15 -0
- numpy/f2py/tests/util.py +442 -0
- numpy/f2py/use_rules.py +99 -0
- numpy/f2py/use_rules.pyi +9 -0
- numpy/fft/__init__.py +213 -0
- numpy/fft/__init__.pyi +38 -0
- numpy/fft/_helper.py +235 -0
- numpy/fft/_helper.pyi +44 -0
- numpy/fft/_pocketfft.py +1693 -0
- numpy/fft/_pocketfft.pyi +137 -0
- numpy/fft/_pocketfft_umath.pypy311-pp73-darwin.so +0 -0
- numpy/fft/tests/__init__.py +0 -0
- numpy/fft/tests/test_helper.py +167 -0
- numpy/fft/tests/test_pocketfft.py +589 -0
- numpy/lib/__init__.py +97 -0
- numpy/lib/__init__.pyi +52 -0
- numpy/lib/_array_utils_impl.py +62 -0
- numpy/lib/_array_utils_impl.pyi +10 -0
- numpy/lib/_arraypad_impl.py +926 -0
- numpy/lib/_arraypad_impl.pyi +88 -0
- numpy/lib/_arraysetops_impl.py +1158 -0
- numpy/lib/_arraysetops_impl.pyi +462 -0
- numpy/lib/_arrayterator_impl.py +224 -0
- numpy/lib/_arrayterator_impl.pyi +45 -0
- numpy/lib/_datasource.py +700 -0
- numpy/lib/_datasource.pyi +30 -0
- numpy/lib/_format_impl.py +1036 -0
- numpy/lib/_format_impl.pyi +56 -0
- numpy/lib/_function_base_impl.py +5760 -0
- numpy/lib/_function_base_impl.pyi +2324 -0
- numpy/lib/_histograms_impl.py +1085 -0
- numpy/lib/_histograms_impl.pyi +40 -0
- numpy/lib/_index_tricks_impl.py +1048 -0
- numpy/lib/_index_tricks_impl.pyi +267 -0
- numpy/lib/_iotools.py +900 -0
- numpy/lib/_iotools.pyi +116 -0
- numpy/lib/_nanfunctions_impl.py +2006 -0
- numpy/lib/_nanfunctions_impl.pyi +48 -0
- numpy/lib/_npyio_impl.py +2583 -0
- numpy/lib/_npyio_impl.pyi +299 -0
- numpy/lib/_polynomial_impl.py +1465 -0
- numpy/lib/_polynomial_impl.pyi +338 -0
- numpy/lib/_scimath_impl.py +642 -0
- numpy/lib/_scimath_impl.pyi +93 -0
- numpy/lib/_shape_base_impl.py +1289 -0
- numpy/lib/_shape_base_impl.pyi +236 -0
- numpy/lib/_stride_tricks_impl.py +582 -0
- numpy/lib/_stride_tricks_impl.pyi +73 -0
- numpy/lib/_twodim_base_impl.py +1201 -0
- numpy/lib/_twodim_base_impl.pyi +408 -0
- numpy/lib/_type_check_impl.py +710 -0
- numpy/lib/_type_check_impl.pyi +348 -0
- numpy/lib/_ufunclike_impl.py +199 -0
- numpy/lib/_ufunclike_impl.pyi +60 -0
- numpy/lib/_user_array_impl.py +310 -0
- numpy/lib/_user_array_impl.pyi +226 -0
- numpy/lib/_utils_impl.py +784 -0
- numpy/lib/_utils_impl.pyi +22 -0
- numpy/lib/_version.py +153 -0
- numpy/lib/_version.pyi +17 -0
- numpy/lib/array_utils.py +7 -0
- numpy/lib/array_utils.pyi +6 -0
- numpy/lib/format.py +24 -0
- numpy/lib/format.pyi +24 -0
- numpy/lib/introspect.py +94 -0
- numpy/lib/introspect.pyi +3 -0
- numpy/lib/mixins.py +180 -0
- numpy/lib/mixins.pyi +78 -0
- numpy/lib/npyio.py +1 -0
- numpy/lib/npyio.pyi +5 -0
- numpy/lib/recfunctions.py +1681 -0
- numpy/lib/recfunctions.pyi +444 -0
- numpy/lib/scimath.py +13 -0
- numpy/lib/scimath.pyi +12 -0
- numpy/lib/stride_tricks.py +1 -0
- numpy/lib/stride_tricks.pyi +4 -0
- numpy/lib/tests/__init__.py +0 -0
- numpy/lib/tests/data/py2-np0-objarr.npy +0 -0
- numpy/lib/tests/data/py2-objarr.npy +0 -0
- numpy/lib/tests/data/py2-objarr.npz +0 -0
- numpy/lib/tests/data/py3-objarr.npy +0 -0
- numpy/lib/tests/data/py3-objarr.npz +0 -0
- numpy/lib/tests/data/python3.npy +0 -0
- numpy/lib/tests/data/win64python2.npy +0 -0
- numpy/lib/tests/test__datasource.py +328 -0
- numpy/lib/tests/test__iotools.py +358 -0
- numpy/lib/tests/test__version.py +64 -0
- numpy/lib/tests/test_array_utils.py +32 -0
- numpy/lib/tests/test_arraypad.py +1427 -0
- numpy/lib/tests/test_arraysetops.py +1302 -0
- numpy/lib/tests/test_arrayterator.py +45 -0
- numpy/lib/tests/test_format.py +1054 -0
- numpy/lib/tests/test_function_base.py +4750 -0
- numpy/lib/tests/test_histograms.py +855 -0
- numpy/lib/tests/test_index_tricks.py +693 -0
- numpy/lib/tests/test_io.py +2857 -0
- numpy/lib/tests/test_loadtxt.py +1099 -0
- numpy/lib/tests/test_mixins.py +215 -0
- numpy/lib/tests/test_nanfunctions.py +1438 -0
- numpy/lib/tests/test_packbits.py +376 -0
- numpy/lib/tests/test_polynomial.py +325 -0
- numpy/lib/tests/test_recfunctions.py +1042 -0
- numpy/lib/tests/test_regression.py +231 -0
- numpy/lib/tests/test_shape_base.py +813 -0
- numpy/lib/tests/test_stride_tricks.py +655 -0
- numpy/lib/tests/test_twodim_base.py +559 -0
- numpy/lib/tests/test_type_check.py +473 -0
- numpy/lib/tests/test_ufunclike.py +97 -0
- numpy/lib/tests/test_utils.py +80 -0
- numpy/lib/user_array.py +1 -0
- numpy/lib/user_array.pyi +1 -0
- numpy/linalg/__init__.py +95 -0
- numpy/linalg/__init__.pyi +71 -0
- numpy/linalg/_linalg.py +3657 -0
- numpy/linalg/_linalg.pyi +548 -0
- numpy/linalg/_umath_linalg.pyi +60 -0
- numpy/linalg/_umath_linalg.pypy311-pp73-darwin.so +0 -0
- numpy/linalg/lapack_lite.pyi +143 -0
- numpy/linalg/lapack_lite.pypy311-pp73-darwin.so +0 -0
- numpy/linalg/tests/__init__.py +0 -0
- numpy/linalg/tests/test_deprecations.py +21 -0
- numpy/linalg/tests/test_linalg.py +2442 -0
- numpy/linalg/tests/test_regression.py +182 -0
- numpy/ma/API_CHANGES.txt +135 -0
- numpy/ma/LICENSE +24 -0
- numpy/ma/README.rst +236 -0
- numpy/ma/__init__.py +53 -0
- numpy/ma/__init__.pyi +458 -0
- numpy/ma/core.py +8929 -0
- numpy/ma/core.pyi +3720 -0
- numpy/ma/extras.py +2266 -0
- numpy/ma/extras.pyi +297 -0
- numpy/ma/mrecords.py +762 -0
- numpy/ma/mrecords.pyi +96 -0
- numpy/ma/tests/__init__.py +0 -0
- numpy/ma/tests/test_arrayobject.py +40 -0
- numpy/ma/tests/test_core.py +6008 -0
- numpy/ma/tests/test_deprecations.py +65 -0
- numpy/ma/tests/test_extras.py +1945 -0
- numpy/ma/tests/test_mrecords.py +495 -0
- numpy/ma/tests/test_old_ma.py +939 -0
- numpy/ma/tests/test_regression.py +83 -0
- numpy/ma/tests/test_subclassing.py +469 -0
- numpy/ma/testutils.py +294 -0
- numpy/ma/testutils.pyi +69 -0
- numpy/matlib.py +380 -0
- numpy/matlib.pyi +580 -0
- numpy/matrixlib/__init__.py +12 -0
- numpy/matrixlib/__init__.pyi +3 -0
- numpy/matrixlib/defmatrix.py +1119 -0
- numpy/matrixlib/defmatrix.pyi +218 -0
- numpy/matrixlib/tests/__init__.py +0 -0
- numpy/matrixlib/tests/test_defmatrix.py +455 -0
- numpy/matrixlib/tests/test_interaction.py +360 -0
- numpy/matrixlib/tests/test_masked_matrix.py +240 -0
- numpy/matrixlib/tests/test_matrix_linalg.py +110 -0
- numpy/matrixlib/tests/test_multiarray.py +17 -0
- numpy/matrixlib/tests/test_numeric.py +18 -0
- numpy/matrixlib/tests/test_regression.py +31 -0
- numpy/polynomial/__init__.py +187 -0
- numpy/polynomial/__init__.pyi +31 -0
- numpy/polynomial/_polybase.py +1191 -0
- numpy/polynomial/_polybase.pyi +262 -0
- numpy/polynomial/_polytypes.pyi +501 -0
- numpy/polynomial/chebyshev.py +2001 -0
- numpy/polynomial/chebyshev.pyi +180 -0
- numpy/polynomial/hermite.py +1738 -0
- numpy/polynomial/hermite.pyi +106 -0
- numpy/polynomial/hermite_e.py +1640 -0
- numpy/polynomial/hermite_e.pyi +106 -0
- numpy/polynomial/laguerre.py +1673 -0
- numpy/polynomial/laguerre.pyi +100 -0
- numpy/polynomial/legendre.py +1603 -0
- numpy/polynomial/legendre.pyi +100 -0
- numpy/polynomial/polynomial.py +1625 -0
- numpy/polynomial/polynomial.pyi +109 -0
- numpy/polynomial/polyutils.py +759 -0
- numpy/polynomial/polyutils.pyi +307 -0
- numpy/polynomial/tests/__init__.py +0 -0
- numpy/polynomial/tests/test_chebyshev.py +618 -0
- numpy/polynomial/tests/test_classes.py +613 -0
- numpy/polynomial/tests/test_hermite.py +553 -0
- numpy/polynomial/tests/test_hermite_e.py +554 -0
- numpy/polynomial/tests/test_laguerre.py +535 -0
- numpy/polynomial/tests/test_legendre.py +566 -0
- numpy/polynomial/tests/test_polynomial.py +691 -0
- numpy/polynomial/tests/test_polyutils.py +123 -0
- numpy/polynomial/tests/test_printing.py +557 -0
- numpy/polynomial/tests/test_symbol.py +217 -0
- numpy/py.typed +0 -0
- numpy/random/LICENSE.md +71 -0
- numpy/random/__init__.pxd +14 -0
- numpy/random/__init__.py +213 -0
- numpy/random/__init__.pyi +124 -0
- numpy/random/_bounded_integers.pxd +29 -0
- numpy/random/_bounded_integers.pyi +1 -0
- numpy/random/_bounded_integers.pypy311-pp73-darwin.so +0 -0
- numpy/random/_common.pxd +110 -0
- numpy/random/_common.pyi +16 -0
- numpy/random/_common.pypy311-pp73-darwin.so +0 -0
- numpy/random/_examples/cffi/extending.py +44 -0
- numpy/random/_examples/cffi/parse.py +53 -0
- numpy/random/_examples/cython/extending.pyx +77 -0
- numpy/random/_examples/cython/extending_distributions.pyx +117 -0
- numpy/random/_examples/cython/meson.build +53 -0
- numpy/random/_examples/numba/extending.py +86 -0
- numpy/random/_examples/numba/extending_distributions.py +67 -0
- numpy/random/_generator.pyi +862 -0
- numpy/random/_generator.pypy311-pp73-darwin.so +0 -0
- numpy/random/_mt19937.pyi +27 -0
- numpy/random/_mt19937.pypy311-pp73-darwin.so +0 -0
- numpy/random/_pcg64.pyi +41 -0
- numpy/random/_pcg64.pypy311-pp73-darwin.so +0 -0
- numpy/random/_philox.pyi +36 -0
- numpy/random/_philox.pypy311-pp73-darwin.so +0 -0
- numpy/random/_pickle.py +88 -0
- numpy/random/_pickle.pyi +43 -0
- numpy/random/_sfc64.pyi +25 -0
- numpy/random/_sfc64.pypy311-pp73-darwin.so +0 -0
- numpy/random/bit_generator.pxd +40 -0
- numpy/random/bit_generator.pyi +123 -0
- numpy/random/bit_generator.pypy311-pp73-darwin.so +0 -0
- numpy/random/c_distributions.pxd +119 -0
- numpy/random/lib/libnpyrandom.a +0 -0
- numpy/random/mtrand.pyi +759 -0
- numpy/random/mtrand.pypy311-pp73-darwin.so +0 -0
- numpy/random/tests/__init__.py +0 -0
- numpy/random/tests/data/__init__.py +0 -0
- numpy/random/tests/data/generator_pcg64_np121.pkl.gz +0 -0
- numpy/random/tests/data/generator_pcg64_np126.pkl.gz +0 -0
- numpy/random/tests/data/mt19937-testset-1.csv +1001 -0
- numpy/random/tests/data/mt19937-testset-2.csv +1001 -0
- numpy/random/tests/data/pcg64-testset-1.csv +1001 -0
- numpy/random/tests/data/pcg64-testset-2.csv +1001 -0
- numpy/random/tests/data/pcg64dxsm-testset-1.csv +1001 -0
- numpy/random/tests/data/pcg64dxsm-testset-2.csv +1001 -0
- numpy/random/tests/data/philox-testset-1.csv +1001 -0
- numpy/random/tests/data/philox-testset-2.csv +1001 -0
- numpy/random/tests/data/sfc64-testset-1.csv +1001 -0
- numpy/random/tests/data/sfc64-testset-2.csv +1001 -0
- numpy/random/tests/data/sfc64_np126.pkl.gz +0 -0
- numpy/random/tests/test_direct.py +595 -0
- numpy/random/tests/test_extending.py +131 -0
- numpy/random/tests/test_generator_mt19937.py +2825 -0
- numpy/random/tests/test_generator_mt19937_regressions.py +221 -0
- numpy/random/tests/test_random.py +1724 -0
- numpy/random/tests/test_randomstate.py +2099 -0
- numpy/random/tests/test_randomstate_regression.py +213 -0
- numpy/random/tests/test_regression.py +175 -0
- numpy/random/tests/test_seed_sequence.py +79 -0
- numpy/random/tests/test_smoke.py +882 -0
- numpy/rec/__init__.py +2 -0
- numpy/rec/__init__.pyi +23 -0
- numpy/strings/__init__.py +2 -0
- numpy/strings/__init__.pyi +97 -0
- numpy/testing/__init__.py +22 -0
- numpy/testing/__init__.pyi +107 -0
- numpy/testing/_private/__init__.py +0 -0
- numpy/testing/_private/__init__.pyi +0 -0
- numpy/testing/_private/extbuild.py +250 -0
- numpy/testing/_private/extbuild.pyi +25 -0
- numpy/testing/_private/utils.py +2830 -0
- numpy/testing/_private/utils.pyi +505 -0
- numpy/testing/overrides.py +84 -0
- numpy/testing/overrides.pyi +10 -0
- numpy/testing/print_coercion_tables.py +207 -0
- numpy/testing/print_coercion_tables.pyi +26 -0
- numpy/testing/tests/__init__.py +0 -0
- numpy/testing/tests/test_utils.py +2123 -0
- numpy/tests/__init__.py +0 -0
- numpy/tests/test__all__.py +10 -0
- numpy/tests/test_configtool.py +51 -0
- numpy/tests/test_ctypeslib.py +383 -0
- numpy/tests/test_lazyloading.py +42 -0
- numpy/tests/test_matlib.py +59 -0
- numpy/tests/test_numpy_config.py +47 -0
- numpy/tests/test_numpy_version.py +54 -0
- numpy/tests/test_public_api.py +807 -0
- numpy/tests/test_reloading.py +76 -0
- numpy/tests/test_scripts.py +48 -0
- numpy/tests/test_warnings.py +79 -0
- numpy/typing/__init__.py +233 -0
- numpy/typing/__init__.pyi +3 -0
- numpy/typing/mypy_plugin.py +200 -0
- numpy/typing/tests/__init__.py +0 -0
- numpy/typing/tests/data/fail/arithmetic.pyi +126 -0
- numpy/typing/tests/data/fail/array_constructors.pyi +34 -0
- numpy/typing/tests/data/fail/array_like.pyi +15 -0
- numpy/typing/tests/data/fail/array_pad.pyi +6 -0
- numpy/typing/tests/data/fail/arrayprint.pyi +15 -0
- numpy/typing/tests/data/fail/arrayterator.pyi +14 -0
- numpy/typing/tests/data/fail/bitwise_ops.pyi +17 -0
- numpy/typing/tests/data/fail/char.pyi +63 -0
- numpy/typing/tests/data/fail/chararray.pyi +61 -0
- numpy/typing/tests/data/fail/comparisons.pyi +27 -0
- numpy/typing/tests/data/fail/constants.pyi +3 -0
- numpy/typing/tests/data/fail/datasource.pyi +16 -0
- numpy/typing/tests/data/fail/dtype.pyi +17 -0
- numpy/typing/tests/data/fail/einsumfunc.pyi +12 -0
- numpy/typing/tests/data/fail/flatiter.pyi +38 -0
- numpy/typing/tests/data/fail/fromnumeric.pyi +148 -0
- numpy/typing/tests/data/fail/histograms.pyi +12 -0
- numpy/typing/tests/data/fail/index_tricks.pyi +14 -0
- numpy/typing/tests/data/fail/lib_function_base.pyi +60 -0
- numpy/typing/tests/data/fail/lib_polynomial.pyi +29 -0
- numpy/typing/tests/data/fail/lib_utils.pyi +3 -0
- numpy/typing/tests/data/fail/lib_version.pyi +6 -0
- numpy/typing/tests/data/fail/linalg.pyi +52 -0
- numpy/typing/tests/data/fail/ma.pyi +155 -0
- numpy/typing/tests/data/fail/memmap.pyi +5 -0
- numpy/typing/tests/data/fail/modules.pyi +17 -0
- numpy/typing/tests/data/fail/multiarray.pyi +52 -0
- numpy/typing/tests/data/fail/ndarray.pyi +11 -0
- numpy/typing/tests/data/fail/ndarray_misc.pyi +49 -0
- numpy/typing/tests/data/fail/nditer.pyi +8 -0
- numpy/typing/tests/data/fail/nested_sequence.pyi +17 -0
- numpy/typing/tests/data/fail/npyio.pyi +24 -0
- numpy/typing/tests/data/fail/numerictypes.pyi +5 -0
- numpy/typing/tests/data/fail/random.pyi +62 -0
- numpy/typing/tests/data/fail/rec.pyi +17 -0
- numpy/typing/tests/data/fail/scalars.pyi +86 -0
- numpy/typing/tests/data/fail/shape.pyi +7 -0
- numpy/typing/tests/data/fail/shape_base.pyi +8 -0
- numpy/typing/tests/data/fail/stride_tricks.pyi +9 -0
- numpy/typing/tests/data/fail/strings.pyi +52 -0
- numpy/typing/tests/data/fail/testing.pyi +28 -0
- numpy/typing/tests/data/fail/twodim_base.pyi +39 -0
- numpy/typing/tests/data/fail/type_check.pyi +12 -0
- numpy/typing/tests/data/fail/ufunc_config.pyi +21 -0
- numpy/typing/tests/data/fail/ufunclike.pyi +21 -0
- numpy/typing/tests/data/fail/ufuncs.pyi +17 -0
- numpy/typing/tests/data/fail/warnings_and_errors.pyi +5 -0
- numpy/typing/tests/data/misc/extended_precision.pyi +9 -0
- numpy/typing/tests/data/mypy.ini +8 -0
- numpy/typing/tests/data/pass/arithmetic.py +614 -0
- numpy/typing/tests/data/pass/array_constructors.py +138 -0
- numpy/typing/tests/data/pass/array_like.py +43 -0
- numpy/typing/tests/data/pass/arrayprint.py +37 -0
- numpy/typing/tests/data/pass/arrayterator.py +28 -0
- numpy/typing/tests/data/pass/bitwise_ops.py +131 -0
- numpy/typing/tests/data/pass/comparisons.py +316 -0
- numpy/typing/tests/data/pass/dtype.py +57 -0
- numpy/typing/tests/data/pass/einsumfunc.py +36 -0
- numpy/typing/tests/data/pass/flatiter.py +26 -0
- numpy/typing/tests/data/pass/fromnumeric.py +272 -0
- numpy/typing/tests/data/pass/index_tricks.py +62 -0
- numpy/typing/tests/data/pass/lib_user_array.py +22 -0
- numpy/typing/tests/data/pass/lib_utils.py +19 -0
- numpy/typing/tests/data/pass/lib_version.py +18 -0
- numpy/typing/tests/data/pass/literal.py +52 -0
- numpy/typing/tests/data/pass/ma.py +199 -0
- numpy/typing/tests/data/pass/mod.py +149 -0
- numpy/typing/tests/data/pass/modules.py +45 -0
- numpy/typing/tests/data/pass/multiarray.py +77 -0
- numpy/typing/tests/data/pass/ndarray_conversion.py +81 -0
- numpy/typing/tests/data/pass/ndarray_misc.py +199 -0
- numpy/typing/tests/data/pass/ndarray_shape_manipulation.py +47 -0
- numpy/typing/tests/data/pass/nditer.py +4 -0
- numpy/typing/tests/data/pass/numeric.py +90 -0
- numpy/typing/tests/data/pass/numerictypes.py +17 -0
- numpy/typing/tests/data/pass/random.py +1498 -0
- numpy/typing/tests/data/pass/recfunctions.py +164 -0
- numpy/typing/tests/data/pass/scalars.py +249 -0
- numpy/typing/tests/data/pass/shape.py +19 -0
- numpy/typing/tests/data/pass/simple.py +170 -0
- numpy/typing/tests/data/pass/ufunc_config.py +64 -0
- numpy/typing/tests/data/pass/ufunclike.py +52 -0
- numpy/typing/tests/data/pass/ufuncs.py +16 -0
- numpy/typing/tests/data/pass/warnings_and_errors.py +6 -0
- numpy/typing/tests/data/reveal/arithmetic.pyi +719 -0
- numpy/typing/tests/data/reveal/array_api_info.pyi +70 -0
- numpy/typing/tests/data/reveal/array_constructors.pyi +277 -0
- numpy/typing/tests/data/reveal/arraypad.pyi +27 -0
- numpy/typing/tests/data/reveal/arrayprint.pyi +25 -0
- numpy/typing/tests/data/reveal/arraysetops.pyi +74 -0
- numpy/typing/tests/data/reveal/arrayterator.pyi +27 -0
- numpy/typing/tests/data/reveal/bitwise_ops.pyi +166 -0
- numpy/typing/tests/data/reveal/char.pyi +225 -0
- numpy/typing/tests/data/reveal/chararray.pyi +138 -0
- numpy/typing/tests/data/reveal/comparisons.pyi +264 -0
- numpy/typing/tests/data/reveal/constants.pyi +14 -0
- numpy/typing/tests/data/reveal/ctypeslib.pyi +81 -0
- numpy/typing/tests/data/reveal/datasource.pyi +23 -0
- numpy/typing/tests/data/reveal/dtype.pyi +132 -0
- numpy/typing/tests/data/reveal/einsumfunc.pyi +39 -0
- numpy/typing/tests/data/reveal/emath.pyi +54 -0
- numpy/typing/tests/data/reveal/fft.pyi +37 -0
- numpy/typing/tests/data/reveal/flatiter.pyi +86 -0
- numpy/typing/tests/data/reveal/fromnumeric.pyi +347 -0
- numpy/typing/tests/data/reveal/getlimits.pyi +53 -0
- numpy/typing/tests/data/reveal/histograms.pyi +25 -0
- numpy/typing/tests/data/reveal/index_tricks.pyi +70 -0
- numpy/typing/tests/data/reveal/lib_function_base.pyi +409 -0
- numpy/typing/tests/data/reveal/lib_polynomial.pyi +147 -0
- numpy/typing/tests/data/reveal/lib_utils.pyi +17 -0
- numpy/typing/tests/data/reveal/lib_version.pyi +20 -0
- numpy/typing/tests/data/reveal/linalg.pyi +154 -0
- numpy/typing/tests/data/reveal/ma.pyi +1098 -0
- numpy/typing/tests/data/reveal/matrix.pyi +73 -0
- numpy/typing/tests/data/reveal/memmap.pyi +19 -0
- numpy/typing/tests/data/reveal/mod.pyi +178 -0
- numpy/typing/tests/data/reveal/modules.pyi +51 -0
- numpy/typing/tests/data/reveal/multiarray.pyi +197 -0
- numpy/typing/tests/data/reveal/nbit_base_example.pyi +20 -0
- numpy/typing/tests/data/reveal/ndarray_assignability.pyi +82 -0
- numpy/typing/tests/data/reveal/ndarray_conversion.pyi +83 -0
- numpy/typing/tests/data/reveal/ndarray_misc.pyi +246 -0
- numpy/typing/tests/data/reveal/ndarray_shape_manipulation.pyi +47 -0
- numpy/typing/tests/data/reveal/nditer.pyi +49 -0
- numpy/typing/tests/data/reveal/nested_sequence.pyi +25 -0
- numpy/typing/tests/data/reveal/npyio.pyi +83 -0
- numpy/typing/tests/data/reveal/numeric.pyi +170 -0
- numpy/typing/tests/data/reveal/numerictypes.pyi +16 -0
- numpy/typing/tests/data/reveal/polynomial_polybase.pyi +217 -0
- numpy/typing/tests/data/reveal/polynomial_polyutils.pyi +218 -0
- numpy/typing/tests/data/reveal/polynomial_series.pyi +138 -0
- numpy/typing/tests/data/reveal/random.pyi +1546 -0
- numpy/typing/tests/data/reveal/rec.pyi +171 -0
- numpy/typing/tests/data/reveal/scalars.pyi +191 -0
- numpy/typing/tests/data/reveal/shape.pyi +13 -0
- numpy/typing/tests/data/reveal/shape_base.pyi +52 -0
- numpy/typing/tests/data/reveal/stride_tricks.pyi +27 -0
- numpy/typing/tests/data/reveal/strings.pyi +196 -0
- numpy/typing/tests/data/reveal/testing.pyi +198 -0
- numpy/typing/tests/data/reveal/twodim_base.pyi +225 -0
- numpy/typing/tests/data/reveal/type_check.pyi +67 -0
- numpy/typing/tests/data/reveal/ufunc_config.pyi +29 -0
- numpy/typing/tests/data/reveal/ufunclike.pyi +31 -0
- numpy/typing/tests/data/reveal/ufuncs.pyi +142 -0
- numpy/typing/tests/data/reveal/warnings_and_errors.pyi +11 -0
- numpy/typing/tests/test_isfile.py +38 -0
- numpy/typing/tests/test_runtime.py +110 -0
- numpy/typing/tests/test_typing.py +205 -0
- numpy/version.py +11 -0
- numpy/version.pyi +9 -0
- numpy-2.4.1.dist-info/METADATA +139 -0
- numpy-2.4.1.dist-info/RECORD +1039 -0
- numpy-2.4.1.dist-info/WHEEL +6 -0
- numpy-2.4.1.dist-info/entry_points.txt +13 -0
- numpy-2.4.1.dist-info/licenses/LICENSE.txt +935 -0
- numpy-2.4.1.dist-info/licenses/numpy/_core/include/numpy/libdivide/LICENSE.txt +21 -0
- numpy-2.4.1.dist-info/licenses/numpy/_core/src/common/pythoncapi-compat/COPYING +14 -0
- numpy-2.4.1.dist-info/licenses/numpy/_core/src/highway/LICENSE +371 -0
- numpy-2.4.1.dist-info/licenses/numpy/_core/src/multiarray/dragon4_LICENSE.txt +27 -0
- numpy-2.4.1.dist-info/licenses/numpy/_core/src/npysort/x86-simd-sort/LICENSE.md +28 -0
- numpy-2.4.1.dist-info/licenses/numpy/_core/src/umath/svml/LICENSE +30 -0
- numpy-2.4.1.dist-info/licenses/numpy/fft/pocketfft/LICENSE.md +25 -0
- numpy-2.4.1.dist-info/licenses/numpy/linalg/lapack_lite/LICENSE.txt +48 -0
- numpy-2.4.1.dist-info/licenses/numpy/ma/LICENSE +24 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/LICENSE.md +71 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/src/distributions/LICENSE.md +61 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/src/mt19937/LICENSE.md +61 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/src/pcg64/LICENSE.md +22 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/src/philox/LICENSE.md +31 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/src/sfc64/LICENSE.md +27 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/src/splitmix64/LICENSE.md +9 -0
|
@@ -0,0 +1,1375 @@
|
|
|
1
|
+
dtype,input,output,ulperrortol
|
|
2
|
+
## +ve denormals ##
|
|
3
|
+
np.float32,0x004b4716,0x3f800000,2
|
|
4
|
+
np.float32,0x007b2490,0x3f800000,2
|
|
5
|
+
np.float32,0x007c99fa,0x3f800000,2
|
|
6
|
+
np.float32,0x00734a0c,0x3f800000,2
|
|
7
|
+
np.float32,0x0070de24,0x3f800000,2
|
|
8
|
+
np.float32,0x007fffff,0x3f800000,2
|
|
9
|
+
np.float32,0x00000001,0x3f800000,2
|
|
10
|
+
## -ve denormals ##
|
|
11
|
+
np.float32,0x80495d65,0x3f800000,2
|
|
12
|
+
np.float32,0x806894f6,0x3f800000,2
|
|
13
|
+
np.float32,0x80555a76,0x3f800000,2
|
|
14
|
+
np.float32,0x804e1fb8,0x3f800000,2
|
|
15
|
+
np.float32,0x80687de9,0x3f800000,2
|
|
16
|
+
np.float32,0x807fffff,0x3f800000,2
|
|
17
|
+
np.float32,0x80000001,0x3f800000,2
|
|
18
|
+
## +/-0.0f, +/-FLT_MIN +/-FLT_MAX ##
|
|
19
|
+
np.float32,0x00000000,0x3f800000,2
|
|
20
|
+
np.float32,0x80000000,0x3f800000,2
|
|
21
|
+
np.float32,0x00800000,0x3f800000,2
|
|
22
|
+
np.float32,0x80800000,0x3f800000,2
|
|
23
|
+
## 1.00f + 0x00000001 ##
|
|
24
|
+
np.float32,0x3f800000,0x3f0a5140,2
|
|
25
|
+
np.float32,0x3f800001,0x3f0a513f,2
|
|
26
|
+
np.float32,0x3f800002,0x3f0a513d,2
|
|
27
|
+
np.float32,0xc090a8b0,0xbe4332ce,2
|
|
28
|
+
np.float32,0x41ce3184,0x3f4d1de1,2
|
|
29
|
+
np.float32,0xc1d85848,0xbeaa8980,2
|
|
30
|
+
np.float32,0x402b8820,0xbf653aa3,2
|
|
31
|
+
np.float32,0x42b4e454,0xbf4a338b,2
|
|
32
|
+
np.float32,0x42a67a60,0x3c58202e,2
|
|
33
|
+
np.float32,0x41d92388,0xbed987c7,2
|
|
34
|
+
np.float32,0x422dd66c,0x3f5dcab3,2
|
|
35
|
+
np.float32,0xc28f5be6,0xbf5688d8,2
|
|
36
|
+
np.float32,0x41ab2674,0xbf53aa3b,2
|
|
37
|
+
np.float32,0x3f490fdb,0x3f3504f3,2
|
|
38
|
+
np.float32,0xbf490fdb,0x3f3504f3,2
|
|
39
|
+
np.float32,0x3fc90fdb,0xb33bbd2e,2
|
|
40
|
+
np.float32,0xbfc90fdb,0xb33bbd2e,2
|
|
41
|
+
np.float32,0x40490fdb,0xbf800000,2
|
|
42
|
+
np.float32,0xc0490fdb,0xbf800000,2
|
|
43
|
+
np.float32,0x3fc90fdb,0xb33bbd2e,2
|
|
44
|
+
np.float32,0xbfc90fdb,0xb33bbd2e,2
|
|
45
|
+
np.float32,0x40490fdb,0xbf800000,2
|
|
46
|
+
np.float32,0xc0490fdb,0xbf800000,2
|
|
47
|
+
np.float32,0x40c90fdb,0x3f800000,2
|
|
48
|
+
np.float32,0xc0c90fdb,0x3f800000,2
|
|
49
|
+
np.float32,0x4016cbe4,0xbf3504f3,2
|
|
50
|
+
np.float32,0xc016cbe4,0xbf3504f3,2
|
|
51
|
+
np.float32,0x4096cbe4,0x324cde2e,2
|
|
52
|
+
np.float32,0xc096cbe4,0x324cde2e,2
|
|
53
|
+
np.float32,0x4116cbe4,0xbf800000,2
|
|
54
|
+
np.float32,0xc116cbe4,0xbf800000,2
|
|
55
|
+
np.float32,0x40490fdb,0xbf800000,2
|
|
56
|
+
np.float32,0xc0490fdb,0xbf800000,2
|
|
57
|
+
np.float32,0x40c90fdb,0x3f800000,2
|
|
58
|
+
np.float32,0xc0c90fdb,0x3f800000,2
|
|
59
|
+
np.float32,0x41490fdb,0x3f800000,2
|
|
60
|
+
np.float32,0xc1490fdb,0x3f800000,2
|
|
61
|
+
np.float32,0x407b53d2,0xbf3504f1,2
|
|
62
|
+
np.float32,0xc07b53d2,0xbf3504f1,2
|
|
63
|
+
np.float32,0x40fb53d2,0xb4b5563d,2
|
|
64
|
+
np.float32,0xc0fb53d2,0xb4b5563d,2
|
|
65
|
+
np.float32,0x417b53d2,0xbf800000,2
|
|
66
|
+
np.float32,0xc17b53d2,0xbf800000,2
|
|
67
|
+
np.float32,0x4096cbe4,0x324cde2e,2
|
|
68
|
+
np.float32,0xc096cbe4,0x324cde2e,2
|
|
69
|
+
np.float32,0x4116cbe4,0xbf800000,2
|
|
70
|
+
np.float32,0xc116cbe4,0xbf800000,2
|
|
71
|
+
np.float32,0x4196cbe4,0x3f800000,2
|
|
72
|
+
np.float32,0xc196cbe4,0x3f800000,2
|
|
73
|
+
np.float32,0x40afede0,0x3f3504f7,2
|
|
74
|
+
np.float32,0xc0afede0,0x3f3504f7,2
|
|
75
|
+
np.float32,0x412fede0,0x353222c4,2
|
|
76
|
+
np.float32,0xc12fede0,0x353222c4,2
|
|
77
|
+
np.float32,0x41afede0,0xbf800000,2
|
|
78
|
+
np.float32,0xc1afede0,0xbf800000,2
|
|
79
|
+
np.float32,0x40c90fdb,0x3f800000,2
|
|
80
|
+
np.float32,0xc0c90fdb,0x3f800000,2
|
|
81
|
+
np.float32,0x41490fdb,0x3f800000,2
|
|
82
|
+
np.float32,0xc1490fdb,0x3f800000,2
|
|
83
|
+
np.float32,0x41c90fdb,0x3f800000,2
|
|
84
|
+
np.float32,0xc1c90fdb,0x3f800000,2
|
|
85
|
+
np.float32,0x40e231d6,0x3f3504f3,2
|
|
86
|
+
np.float32,0xc0e231d6,0x3f3504f3,2
|
|
87
|
+
np.float32,0x416231d6,0xb319a6a2,2
|
|
88
|
+
np.float32,0xc16231d6,0xb319a6a2,2
|
|
89
|
+
np.float32,0x41e231d6,0xbf800000,2
|
|
90
|
+
np.float32,0xc1e231d6,0xbf800000,2
|
|
91
|
+
np.float32,0x40fb53d2,0xb4b5563d,2
|
|
92
|
+
np.float32,0xc0fb53d2,0xb4b5563d,2
|
|
93
|
+
np.float32,0x417b53d2,0xbf800000,2
|
|
94
|
+
np.float32,0xc17b53d2,0xbf800000,2
|
|
95
|
+
np.float32,0x41fb53d2,0x3f800000,2
|
|
96
|
+
np.float32,0xc1fb53d2,0x3f800000,2
|
|
97
|
+
np.float32,0x410a3ae7,0xbf3504fb,2
|
|
98
|
+
np.float32,0xc10a3ae7,0xbf3504fb,2
|
|
99
|
+
np.float32,0x418a3ae7,0x35b08908,2
|
|
100
|
+
np.float32,0xc18a3ae7,0x35b08908,2
|
|
101
|
+
np.float32,0x420a3ae7,0xbf800000,2
|
|
102
|
+
np.float32,0xc20a3ae7,0xbf800000,2
|
|
103
|
+
np.float32,0x4116cbe4,0xbf800000,2
|
|
104
|
+
np.float32,0xc116cbe4,0xbf800000,2
|
|
105
|
+
np.float32,0x4196cbe4,0x3f800000,2
|
|
106
|
+
np.float32,0xc196cbe4,0x3f800000,2
|
|
107
|
+
np.float32,0x4216cbe4,0x3f800000,2
|
|
108
|
+
np.float32,0xc216cbe4,0x3f800000,2
|
|
109
|
+
np.float32,0x41235ce2,0xbf3504ef,2
|
|
110
|
+
np.float32,0xc1235ce2,0xbf3504ef,2
|
|
111
|
+
np.float32,0x41a35ce2,0xb53889b6,2
|
|
112
|
+
np.float32,0xc1a35ce2,0xb53889b6,2
|
|
113
|
+
np.float32,0x42235ce2,0xbf800000,2
|
|
114
|
+
np.float32,0xc2235ce2,0xbf800000,2
|
|
115
|
+
np.float32,0x412fede0,0x353222c4,2
|
|
116
|
+
np.float32,0xc12fede0,0x353222c4,2
|
|
117
|
+
np.float32,0x41afede0,0xbf800000,2
|
|
118
|
+
np.float32,0xc1afede0,0xbf800000,2
|
|
119
|
+
np.float32,0x422fede0,0x3f800000,2
|
|
120
|
+
np.float32,0xc22fede0,0x3f800000,2
|
|
121
|
+
np.float32,0x413c7edd,0x3f3504f4,2
|
|
122
|
+
np.float32,0xc13c7edd,0x3f3504f4,2
|
|
123
|
+
np.float32,0x41bc7edd,0x33800add,2
|
|
124
|
+
np.float32,0xc1bc7edd,0x33800add,2
|
|
125
|
+
np.float32,0x423c7edd,0xbf800000,2
|
|
126
|
+
np.float32,0xc23c7edd,0xbf800000,2
|
|
127
|
+
np.float32,0x41490fdb,0x3f800000,2
|
|
128
|
+
np.float32,0xc1490fdb,0x3f800000,2
|
|
129
|
+
np.float32,0x41c90fdb,0x3f800000,2
|
|
130
|
+
np.float32,0xc1c90fdb,0x3f800000,2
|
|
131
|
+
np.float32,0x42490fdb,0x3f800000,2
|
|
132
|
+
np.float32,0xc2490fdb,0x3f800000,2
|
|
133
|
+
np.float32,0x4155a0d9,0x3f3504eb,2
|
|
134
|
+
np.float32,0xc155a0d9,0x3f3504eb,2
|
|
135
|
+
np.float32,0x41d5a0d9,0xb5b3bc81,2
|
|
136
|
+
np.float32,0xc1d5a0d9,0xb5b3bc81,2
|
|
137
|
+
np.float32,0x4255a0d9,0xbf800000,2
|
|
138
|
+
np.float32,0xc255a0d9,0xbf800000,2
|
|
139
|
+
np.float32,0x416231d6,0xb319a6a2,2
|
|
140
|
+
np.float32,0xc16231d6,0xb319a6a2,2
|
|
141
|
+
np.float32,0x41e231d6,0xbf800000,2
|
|
142
|
+
np.float32,0xc1e231d6,0xbf800000,2
|
|
143
|
+
np.float32,0x426231d6,0x3f800000,2
|
|
144
|
+
np.float32,0xc26231d6,0x3f800000,2
|
|
145
|
+
np.float32,0x416ec2d4,0xbf3504f7,2
|
|
146
|
+
np.float32,0xc16ec2d4,0xbf3504f7,2
|
|
147
|
+
np.float32,0x41eec2d4,0x353ef0a7,2
|
|
148
|
+
np.float32,0xc1eec2d4,0x353ef0a7,2
|
|
149
|
+
np.float32,0x426ec2d4,0xbf800000,2
|
|
150
|
+
np.float32,0xc26ec2d4,0xbf800000,2
|
|
151
|
+
np.float32,0x417b53d2,0xbf800000,2
|
|
152
|
+
np.float32,0xc17b53d2,0xbf800000,2
|
|
153
|
+
np.float32,0x41fb53d2,0x3f800000,2
|
|
154
|
+
np.float32,0xc1fb53d2,0x3f800000,2
|
|
155
|
+
np.float32,0x427b53d2,0x3f800000,2
|
|
156
|
+
np.float32,0xc27b53d2,0x3f800000,2
|
|
157
|
+
np.float32,0x4183f268,0xbf3504e7,2
|
|
158
|
+
np.float32,0xc183f268,0xbf3504e7,2
|
|
159
|
+
np.float32,0x4203f268,0xb6059a13,2
|
|
160
|
+
np.float32,0xc203f268,0xb6059a13,2
|
|
161
|
+
np.float32,0x4283f268,0xbf800000,2
|
|
162
|
+
np.float32,0xc283f268,0xbf800000,2
|
|
163
|
+
np.float32,0x418a3ae7,0x35b08908,2
|
|
164
|
+
np.float32,0xc18a3ae7,0x35b08908,2
|
|
165
|
+
np.float32,0x420a3ae7,0xbf800000,2
|
|
166
|
+
np.float32,0xc20a3ae7,0xbf800000,2
|
|
167
|
+
np.float32,0x428a3ae7,0x3f800000,2
|
|
168
|
+
np.float32,0xc28a3ae7,0x3f800000,2
|
|
169
|
+
np.float32,0x41908365,0x3f3504f0,2
|
|
170
|
+
np.float32,0xc1908365,0x3f3504f0,2
|
|
171
|
+
np.float32,0x42108365,0xb512200d,2
|
|
172
|
+
np.float32,0xc2108365,0xb512200d,2
|
|
173
|
+
np.float32,0x42908365,0xbf800000,2
|
|
174
|
+
np.float32,0xc2908365,0xbf800000,2
|
|
175
|
+
np.float32,0x4196cbe4,0x3f800000,2
|
|
176
|
+
np.float32,0xc196cbe4,0x3f800000,2
|
|
177
|
+
np.float32,0x4216cbe4,0x3f800000,2
|
|
178
|
+
np.float32,0xc216cbe4,0x3f800000,2
|
|
179
|
+
np.float32,0x4296cbe4,0x3f800000,2
|
|
180
|
+
np.float32,0xc296cbe4,0x3f800000,2
|
|
181
|
+
np.float32,0x419d1463,0x3f3504ef,2
|
|
182
|
+
np.float32,0xc19d1463,0x3f3504ef,2
|
|
183
|
+
np.float32,0x421d1463,0xb5455799,2
|
|
184
|
+
np.float32,0xc21d1463,0xb5455799,2
|
|
185
|
+
np.float32,0x429d1463,0xbf800000,2
|
|
186
|
+
np.float32,0xc29d1463,0xbf800000,2
|
|
187
|
+
np.float32,0x41a35ce2,0xb53889b6,2
|
|
188
|
+
np.float32,0xc1a35ce2,0xb53889b6,2
|
|
189
|
+
np.float32,0x42235ce2,0xbf800000,2
|
|
190
|
+
np.float32,0xc2235ce2,0xbf800000,2
|
|
191
|
+
np.float32,0x42a35ce2,0x3f800000,2
|
|
192
|
+
np.float32,0xc2a35ce2,0x3f800000,2
|
|
193
|
+
np.float32,0x41a9a561,0xbf3504ff,2
|
|
194
|
+
np.float32,0xc1a9a561,0xbf3504ff,2
|
|
195
|
+
np.float32,0x4229a561,0x360733d0,2
|
|
196
|
+
np.float32,0xc229a561,0x360733d0,2
|
|
197
|
+
np.float32,0x42a9a561,0xbf800000,2
|
|
198
|
+
np.float32,0xc2a9a561,0xbf800000,2
|
|
199
|
+
np.float32,0x41afede0,0xbf800000,2
|
|
200
|
+
np.float32,0xc1afede0,0xbf800000,2
|
|
201
|
+
np.float32,0x422fede0,0x3f800000,2
|
|
202
|
+
np.float32,0xc22fede0,0x3f800000,2
|
|
203
|
+
np.float32,0x42afede0,0x3f800000,2
|
|
204
|
+
np.float32,0xc2afede0,0x3f800000,2
|
|
205
|
+
np.float32,0x41b6365e,0xbf3504f6,2
|
|
206
|
+
np.float32,0xc1b6365e,0xbf3504f6,2
|
|
207
|
+
np.float32,0x4236365e,0x350bb91c,2
|
|
208
|
+
np.float32,0xc236365e,0x350bb91c,2
|
|
209
|
+
np.float32,0x42b6365e,0xbf800000,2
|
|
210
|
+
np.float32,0xc2b6365e,0xbf800000,2
|
|
211
|
+
np.float32,0x41bc7edd,0x33800add,2
|
|
212
|
+
np.float32,0xc1bc7edd,0x33800add,2
|
|
213
|
+
np.float32,0x423c7edd,0xbf800000,2
|
|
214
|
+
np.float32,0xc23c7edd,0xbf800000,2
|
|
215
|
+
np.float32,0x42bc7edd,0x3f800000,2
|
|
216
|
+
np.float32,0xc2bc7edd,0x3f800000,2
|
|
217
|
+
np.float32,0x41c2c75c,0x3f3504f8,2
|
|
218
|
+
np.float32,0xc1c2c75c,0x3f3504f8,2
|
|
219
|
+
np.float32,0x4242c75c,0x354bbe8a,2
|
|
220
|
+
np.float32,0xc242c75c,0x354bbe8a,2
|
|
221
|
+
np.float32,0x42c2c75c,0xbf800000,2
|
|
222
|
+
np.float32,0xc2c2c75c,0xbf800000,2
|
|
223
|
+
np.float32,0x41c90fdb,0x3f800000,2
|
|
224
|
+
np.float32,0xc1c90fdb,0x3f800000,2
|
|
225
|
+
np.float32,0x42490fdb,0x3f800000,2
|
|
226
|
+
np.float32,0xc2490fdb,0x3f800000,2
|
|
227
|
+
np.float32,0x42c90fdb,0x3f800000,2
|
|
228
|
+
np.float32,0xc2c90fdb,0x3f800000,2
|
|
229
|
+
np.float32,0x41cf585a,0x3f3504e7,2
|
|
230
|
+
np.float32,0xc1cf585a,0x3f3504e7,2
|
|
231
|
+
np.float32,0x424f585a,0xb608cd8c,2
|
|
232
|
+
np.float32,0xc24f585a,0xb608cd8c,2
|
|
233
|
+
np.float32,0x42cf585a,0xbf800000,2
|
|
234
|
+
np.float32,0xc2cf585a,0xbf800000,2
|
|
235
|
+
np.float32,0x41d5a0d9,0xb5b3bc81,2
|
|
236
|
+
np.float32,0xc1d5a0d9,0xb5b3bc81,2
|
|
237
|
+
np.float32,0x4255a0d9,0xbf800000,2
|
|
238
|
+
np.float32,0xc255a0d9,0xbf800000,2
|
|
239
|
+
np.float32,0x42d5a0d9,0x3f800000,2
|
|
240
|
+
np.float32,0xc2d5a0d9,0x3f800000,2
|
|
241
|
+
np.float32,0x41dbe958,0xbf350507,2
|
|
242
|
+
np.float32,0xc1dbe958,0xbf350507,2
|
|
243
|
+
np.float32,0x425be958,0x365eab75,2
|
|
244
|
+
np.float32,0xc25be958,0x365eab75,2
|
|
245
|
+
np.float32,0x42dbe958,0xbf800000,2
|
|
246
|
+
np.float32,0xc2dbe958,0xbf800000,2
|
|
247
|
+
np.float32,0x41e231d6,0xbf800000,2
|
|
248
|
+
np.float32,0xc1e231d6,0xbf800000,2
|
|
249
|
+
np.float32,0x426231d6,0x3f800000,2
|
|
250
|
+
np.float32,0xc26231d6,0x3f800000,2
|
|
251
|
+
np.float32,0x42e231d6,0x3f800000,2
|
|
252
|
+
np.float32,0xc2e231d6,0x3f800000,2
|
|
253
|
+
np.float32,0x41e87a55,0xbf3504ef,2
|
|
254
|
+
np.float32,0xc1e87a55,0xbf3504ef,2
|
|
255
|
+
np.float32,0x42687a55,0xb552257b,2
|
|
256
|
+
np.float32,0xc2687a55,0xb552257b,2
|
|
257
|
+
np.float32,0x42e87a55,0xbf800000,2
|
|
258
|
+
np.float32,0xc2e87a55,0xbf800000,2
|
|
259
|
+
np.float32,0x41eec2d4,0x353ef0a7,2
|
|
260
|
+
np.float32,0xc1eec2d4,0x353ef0a7,2
|
|
261
|
+
np.float32,0x426ec2d4,0xbf800000,2
|
|
262
|
+
np.float32,0xc26ec2d4,0xbf800000,2
|
|
263
|
+
np.float32,0x42eec2d4,0x3f800000,2
|
|
264
|
+
np.float32,0xc2eec2d4,0x3f800000,2
|
|
265
|
+
np.float32,0x41f50b53,0x3f3504ff,2
|
|
266
|
+
np.float32,0xc1f50b53,0x3f3504ff,2
|
|
267
|
+
np.float32,0x42750b53,0x360a6748,2
|
|
268
|
+
np.float32,0xc2750b53,0x360a6748,2
|
|
269
|
+
np.float32,0x42f50b53,0xbf800000,2
|
|
270
|
+
np.float32,0xc2f50b53,0xbf800000,2
|
|
271
|
+
np.float32,0x41fb53d2,0x3f800000,2
|
|
272
|
+
np.float32,0xc1fb53d2,0x3f800000,2
|
|
273
|
+
np.float32,0x427b53d2,0x3f800000,2
|
|
274
|
+
np.float32,0xc27b53d2,0x3f800000,2
|
|
275
|
+
np.float32,0x42fb53d2,0x3f800000,2
|
|
276
|
+
np.float32,0xc2fb53d2,0x3f800000,2
|
|
277
|
+
np.float32,0x4200ce28,0x3f3504f6,2
|
|
278
|
+
np.float32,0xc200ce28,0x3f3504f6,2
|
|
279
|
+
np.float32,0x4280ce28,0x34fdd672,2
|
|
280
|
+
np.float32,0xc280ce28,0x34fdd672,2
|
|
281
|
+
np.float32,0x4300ce28,0xbf800000,2
|
|
282
|
+
np.float32,0xc300ce28,0xbf800000,2
|
|
283
|
+
np.float32,0x4203f268,0xb6059a13,2
|
|
284
|
+
np.float32,0xc203f268,0xb6059a13,2
|
|
285
|
+
np.float32,0x4283f268,0xbf800000,2
|
|
286
|
+
np.float32,0xc283f268,0xbf800000,2
|
|
287
|
+
np.float32,0x4303f268,0x3f800000,2
|
|
288
|
+
np.float32,0xc303f268,0x3f800000,2
|
|
289
|
+
np.float32,0x420716a7,0xbf3504f8,2
|
|
290
|
+
np.float32,0xc20716a7,0xbf3504f8,2
|
|
291
|
+
np.float32,0x428716a7,0x35588c6d,2
|
|
292
|
+
np.float32,0xc28716a7,0x35588c6d,2
|
|
293
|
+
np.float32,0x430716a7,0xbf800000,2
|
|
294
|
+
np.float32,0xc30716a7,0xbf800000,2
|
|
295
|
+
np.float32,0x420a3ae7,0xbf800000,2
|
|
296
|
+
np.float32,0xc20a3ae7,0xbf800000,2
|
|
297
|
+
np.float32,0x428a3ae7,0x3f800000,2
|
|
298
|
+
np.float32,0xc28a3ae7,0x3f800000,2
|
|
299
|
+
np.float32,0x430a3ae7,0x3f800000,2
|
|
300
|
+
np.float32,0xc30a3ae7,0x3f800000,2
|
|
301
|
+
np.float32,0x420d5f26,0xbf3504e7,2
|
|
302
|
+
np.float32,0xc20d5f26,0xbf3504e7,2
|
|
303
|
+
np.float32,0x428d5f26,0xb60c0105,2
|
|
304
|
+
np.float32,0xc28d5f26,0xb60c0105,2
|
|
305
|
+
np.float32,0x430d5f26,0xbf800000,2
|
|
306
|
+
np.float32,0xc30d5f26,0xbf800000,2
|
|
307
|
+
np.float32,0x42108365,0xb512200d,2
|
|
308
|
+
np.float32,0xc2108365,0xb512200d,2
|
|
309
|
+
np.float32,0x42908365,0xbf800000,2
|
|
310
|
+
np.float32,0xc2908365,0xbf800000,2
|
|
311
|
+
np.float32,0x43108365,0x3f800000,2
|
|
312
|
+
np.float32,0xc3108365,0x3f800000,2
|
|
313
|
+
np.float32,0x4213a7a5,0x3f350507,2
|
|
314
|
+
np.float32,0xc213a7a5,0x3f350507,2
|
|
315
|
+
np.float32,0x4293a7a5,0x3661deee,2
|
|
316
|
+
np.float32,0xc293a7a5,0x3661deee,2
|
|
317
|
+
np.float32,0x4313a7a5,0xbf800000,2
|
|
318
|
+
np.float32,0xc313a7a5,0xbf800000,2
|
|
319
|
+
np.float32,0x4216cbe4,0x3f800000,2
|
|
320
|
+
np.float32,0xc216cbe4,0x3f800000,2
|
|
321
|
+
np.float32,0x4296cbe4,0x3f800000,2
|
|
322
|
+
np.float32,0xc296cbe4,0x3f800000,2
|
|
323
|
+
np.float32,0x4316cbe4,0x3f800000,2
|
|
324
|
+
np.float32,0xc316cbe4,0x3f800000,2
|
|
325
|
+
np.float32,0x4219f024,0x3f3504d8,2
|
|
326
|
+
np.float32,0xc219f024,0x3f3504d8,2
|
|
327
|
+
np.float32,0x4299f024,0xb69bde6c,2
|
|
328
|
+
np.float32,0xc299f024,0xb69bde6c,2
|
|
329
|
+
np.float32,0x4319f024,0xbf800000,2
|
|
330
|
+
np.float32,0xc319f024,0xbf800000,2
|
|
331
|
+
np.float32,0x421d1463,0xb5455799,2
|
|
332
|
+
np.float32,0xc21d1463,0xb5455799,2
|
|
333
|
+
np.float32,0x429d1463,0xbf800000,2
|
|
334
|
+
np.float32,0xc29d1463,0xbf800000,2
|
|
335
|
+
np.float32,0x431d1463,0x3f800000,2
|
|
336
|
+
np.float32,0xc31d1463,0x3f800000,2
|
|
337
|
+
np.float32,0x422038a3,0xbf350516,2
|
|
338
|
+
np.float32,0xc22038a3,0xbf350516,2
|
|
339
|
+
np.float32,0x42a038a3,0x36c6cd61,2
|
|
340
|
+
np.float32,0xc2a038a3,0x36c6cd61,2
|
|
341
|
+
np.float32,0x432038a3,0xbf800000,2
|
|
342
|
+
np.float32,0xc32038a3,0xbf800000,2
|
|
343
|
+
np.float32,0x42235ce2,0xbf800000,2
|
|
344
|
+
np.float32,0xc2235ce2,0xbf800000,2
|
|
345
|
+
np.float32,0x42a35ce2,0x3f800000,2
|
|
346
|
+
np.float32,0xc2a35ce2,0x3f800000,2
|
|
347
|
+
np.float32,0x43235ce2,0x3f800000,2
|
|
348
|
+
np.float32,0xc3235ce2,0x3f800000,2
|
|
349
|
+
np.float32,0x42268121,0xbf3504f6,2
|
|
350
|
+
np.float32,0xc2268121,0xbf3504f6,2
|
|
351
|
+
np.float32,0x42a68121,0x34e43aac,2
|
|
352
|
+
np.float32,0xc2a68121,0x34e43aac,2
|
|
353
|
+
np.float32,0x43268121,0xbf800000,2
|
|
354
|
+
np.float32,0xc3268121,0xbf800000,2
|
|
355
|
+
np.float32,0x4229a561,0x360733d0,2
|
|
356
|
+
np.float32,0xc229a561,0x360733d0,2
|
|
357
|
+
np.float32,0x42a9a561,0xbf800000,2
|
|
358
|
+
np.float32,0xc2a9a561,0xbf800000,2
|
|
359
|
+
np.float32,0x4329a561,0x3f800000,2
|
|
360
|
+
np.float32,0xc329a561,0x3f800000,2
|
|
361
|
+
np.float32,0x422cc9a0,0x3f3504f8,2
|
|
362
|
+
np.float32,0xc22cc9a0,0x3f3504f8,2
|
|
363
|
+
np.float32,0x42acc9a0,0x35655a50,2
|
|
364
|
+
np.float32,0xc2acc9a0,0x35655a50,2
|
|
365
|
+
np.float32,0x432cc9a0,0xbf800000,2
|
|
366
|
+
np.float32,0xc32cc9a0,0xbf800000,2
|
|
367
|
+
np.float32,0x422fede0,0x3f800000,2
|
|
368
|
+
np.float32,0xc22fede0,0x3f800000,2
|
|
369
|
+
np.float32,0x42afede0,0x3f800000,2
|
|
370
|
+
np.float32,0xc2afede0,0x3f800000,2
|
|
371
|
+
np.float32,0x432fede0,0x3f800000,2
|
|
372
|
+
np.float32,0xc32fede0,0x3f800000,2
|
|
373
|
+
np.float32,0x4233121f,0x3f3504e7,2
|
|
374
|
+
np.float32,0xc233121f,0x3f3504e7,2
|
|
375
|
+
np.float32,0x42b3121f,0xb60f347d,2
|
|
376
|
+
np.float32,0xc2b3121f,0xb60f347d,2
|
|
377
|
+
np.float32,0x4333121f,0xbf800000,2
|
|
378
|
+
np.float32,0xc333121f,0xbf800000,2
|
|
379
|
+
np.float32,0x4236365e,0x350bb91c,2
|
|
380
|
+
np.float32,0xc236365e,0x350bb91c,2
|
|
381
|
+
np.float32,0x42b6365e,0xbf800000,2
|
|
382
|
+
np.float32,0xc2b6365e,0xbf800000,2
|
|
383
|
+
np.float32,0x4336365e,0x3f800000,2
|
|
384
|
+
np.float32,0xc336365e,0x3f800000,2
|
|
385
|
+
np.float32,0x42395a9e,0xbf350507,2
|
|
386
|
+
np.float32,0xc2395a9e,0xbf350507,2
|
|
387
|
+
np.float32,0x42b95a9e,0x36651267,2
|
|
388
|
+
np.float32,0xc2b95a9e,0x36651267,2
|
|
389
|
+
np.float32,0x43395a9e,0xbf800000,2
|
|
390
|
+
np.float32,0xc3395a9e,0xbf800000,2
|
|
391
|
+
np.float32,0x423c7edd,0xbf800000,2
|
|
392
|
+
np.float32,0xc23c7edd,0xbf800000,2
|
|
393
|
+
np.float32,0x42bc7edd,0x3f800000,2
|
|
394
|
+
np.float32,0xc2bc7edd,0x3f800000,2
|
|
395
|
+
np.float32,0x433c7edd,0x3f800000,2
|
|
396
|
+
np.float32,0xc33c7edd,0x3f800000,2
|
|
397
|
+
np.float32,0x423fa31d,0xbf3504d7,2
|
|
398
|
+
np.float32,0xc23fa31d,0xbf3504d7,2
|
|
399
|
+
np.float32,0x42bfa31d,0xb69d7828,2
|
|
400
|
+
np.float32,0xc2bfa31d,0xb69d7828,2
|
|
401
|
+
np.float32,0x433fa31d,0xbf800000,2
|
|
402
|
+
np.float32,0xc33fa31d,0xbf800000,2
|
|
403
|
+
np.float32,0x4242c75c,0x354bbe8a,2
|
|
404
|
+
np.float32,0xc242c75c,0x354bbe8a,2
|
|
405
|
+
np.float32,0x42c2c75c,0xbf800000,2
|
|
406
|
+
np.float32,0xc2c2c75c,0xbf800000,2
|
|
407
|
+
np.float32,0x4342c75c,0x3f800000,2
|
|
408
|
+
np.float32,0xc342c75c,0x3f800000,2
|
|
409
|
+
np.float32,0x4245eb9c,0x3f350517,2
|
|
410
|
+
np.float32,0xc245eb9c,0x3f350517,2
|
|
411
|
+
np.float32,0x42c5eb9c,0x36c8671d,2
|
|
412
|
+
np.float32,0xc2c5eb9c,0x36c8671d,2
|
|
413
|
+
np.float32,0x4345eb9c,0xbf800000,2
|
|
414
|
+
np.float32,0xc345eb9c,0xbf800000,2
|
|
415
|
+
np.float32,0x42490fdb,0x3f800000,2
|
|
416
|
+
np.float32,0xc2490fdb,0x3f800000,2
|
|
417
|
+
np.float32,0x42c90fdb,0x3f800000,2
|
|
418
|
+
np.float32,0xc2c90fdb,0x3f800000,2
|
|
419
|
+
np.float32,0x43490fdb,0x3f800000,2
|
|
420
|
+
np.float32,0xc3490fdb,0x3f800000,2
|
|
421
|
+
np.float32,0x424c341a,0x3f3504f5,2
|
|
422
|
+
np.float32,0xc24c341a,0x3f3504f5,2
|
|
423
|
+
np.float32,0x42cc341a,0x34ca9ee6,2
|
|
424
|
+
np.float32,0xc2cc341a,0x34ca9ee6,2
|
|
425
|
+
np.float32,0x434c341a,0xbf800000,2
|
|
426
|
+
np.float32,0xc34c341a,0xbf800000,2
|
|
427
|
+
np.float32,0x424f585a,0xb608cd8c,2
|
|
428
|
+
np.float32,0xc24f585a,0xb608cd8c,2
|
|
429
|
+
np.float32,0x42cf585a,0xbf800000,2
|
|
430
|
+
np.float32,0xc2cf585a,0xbf800000,2
|
|
431
|
+
np.float32,0x434f585a,0x3f800000,2
|
|
432
|
+
np.float32,0xc34f585a,0x3f800000,2
|
|
433
|
+
np.float32,0x42527c99,0xbf3504f9,2
|
|
434
|
+
np.float32,0xc2527c99,0xbf3504f9,2
|
|
435
|
+
np.float32,0x42d27c99,0x35722833,2
|
|
436
|
+
np.float32,0xc2d27c99,0x35722833,2
|
|
437
|
+
np.float32,0x43527c99,0xbf800000,2
|
|
438
|
+
np.float32,0xc3527c99,0xbf800000,2
|
|
439
|
+
np.float32,0x4255a0d9,0xbf800000,2
|
|
440
|
+
np.float32,0xc255a0d9,0xbf800000,2
|
|
441
|
+
np.float32,0x42d5a0d9,0x3f800000,2
|
|
442
|
+
np.float32,0xc2d5a0d9,0x3f800000,2
|
|
443
|
+
np.float32,0x4355a0d9,0x3f800000,2
|
|
444
|
+
np.float32,0xc355a0d9,0x3f800000,2
|
|
445
|
+
np.float32,0x4258c518,0xbf3504e6,2
|
|
446
|
+
np.float32,0xc258c518,0xbf3504e6,2
|
|
447
|
+
np.float32,0x42d8c518,0xb61267f6,2
|
|
448
|
+
np.float32,0xc2d8c518,0xb61267f6,2
|
|
449
|
+
np.float32,0x4358c518,0xbf800000,2
|
|
450
|
+
np.float32,0xc358c518,0xbf800000,2
|
|
451
|
+
np.float32,0x425be958,0x365eab75,2
|
|
452
|
+
np.float32,0xc25be958,0x365eab75,2
|
|
453
|
+
np.float32,0x42dbe958,0xbf800000,2
|
|
454
|
+
np.float32,0xc2dbe958,0xbf800000,2
|
|
455
|
+
np.float32,0x435be958,0x3f800000,2
|
|
456
|
+
np.float32,0xc35be958,0x3f800000,2
|
|
457
|
+
np.float32,0x425f0d97,0x3f350508,2
|
|
458
|
+
np.float32,0xc25f0d97,0x3f350508,2
|
|
459
|
+
np.float32,0x42df0d97,0x366845e0,2
|
|
460
|
+
np.float32,0xc2df0d97,0x366845e0,2
|
|
461
|
+
np.float32,0x435f0d97,0xbf800000,2
|
|
462
|
+
np.float32,0xc35f0d97,0xbf800000,2
|
|
463
|
+
np.float32,0x426231d6,0x3f800000,2
|
|
464
|
+
np.float32,0xc26231d6,0x3f800000,2
|
|
465
|
+
np.float32,0x42e231d6,0x3f800000,2
|
|
466
|
+
np.float32,0xc2e231d6,0x3f800000,2
|
|
467
|
+
np.float32,0x436231d6,0x3f800000,2
|
|
468
|
+
np.float32,0xc36231d6,0x3f800000,2
|
|
469
|
+
np.float32,0x42655616,0x3f3504d7,2
|
|
470
|
+
np.float32,0xc2655616,0x3f3504d7,2
|
|
471
|
+
np.float32,0x42e55616,0xb69f11e5,2
|
|
472
|
+
np.float32,0xc2e55616,0xb69f11e5,2
|
|
473
|
+
np.float32,0x43655616,0xbf800000,2
|
|
474
|
+
np.float32,0xc3655616,0xbf800000,2
|
|
475
|
+
np.float32,0x42687a55,0xb552257b,2
|
|
476
|
+
np.float32,0xc2687a55,0xb552257b,2
|
|
477
|
+
np.float32,0x42e87a55,0xbf800000,2
|
|
478
|
+
np.float32,0xc2e87a55,0xbf800000,2
|
|
479
|
+
np.float32,0x43687a55,0x3f800000,2
|
|
480
|
+
np.float32,0xc3687a55,0x3f800000,2
|
|
481
|
+
np.float32,0x426b9e95,0xbf350517,2
|
|
482
|
+
np.float32,0xc26b9e95,0xbf350517,2
|
|
483
|
+
np.float32,0x42eb9e95,0x36ca00d9,2
|
|
484
|
+
np.float32,0xc2eb9e95,0x36ca00d9,2
|
|
485
|
+
np.float32,0x436b9e95,0xbf800000,2
|
|
486
|
+
np.float32,0xc36b9e95,0xbf800000,2
|
|
487
|
+
np.float32,0x426ec2d4,0xbf800000,2
|
|
488
|
+
np.float32,0xc26ec2d4,0xbf800000,2
|
|
489
|
+
np.float32,0x42eec2d4,0x3f800000,2
|
|
490
|
+
np.float32,0xc2eec2d4,0x3f800000,2
|
|
491
|
+
np.float32,0x436ec2d4,0x3f800000,2
|
|
492
|
+
np.float32,0xc36ec2d4,0x3f800000,2
|
|
493
|
+
np.float32,0x4271e713,0xbf3504f5,2
|
|
494
|
+
np.float32,0xc271e713,0xbf3504f5,2
|
|
495
|
+
np.float32,0x42f1e713,0x34b10321,2
|
|
496
|
+
np.float32,0xc2f1e713,0x34b10321,2
|
|
497
|
+
np.float32,0x4371e713,0xbf800000,2
|
|
498
|
+
np.float32,0xc371e713,0xbf800000,2
|
|
499
|
+
np.float32,0x42750b53,0x360a6748,2
|
|
500
|
+
np.float32,0xc2750b53,0x360a6748,2
|
|
501
|
+
np.float32,0x42f50b53,0xbf800000,2
|
|
502
|
+
np.float32,0xc2f50b53,0xbf800000,2
|
|
503
|
+
np.float32,0x43750b53,0x3f800000,2
|
|
504
|
+
np.float32,0xc3750b53,0x3f800000,2
|
|
505
|
+
np.float32,0x42782f92,0x3f3504f9,2
|
|
506
|
+
np.float32,0xc2782f92,0x3f3504f9,2
|
|
507
|
+
np.float32,0x42f82f92,0x357ef616,2
|
|
508
|
+
np.float32,0xc2f82f92,0x357ef616,2
|
|
509
|
+
np.float32,0x43782f92,0xbf800000,2
|
|
510
|
+
np.float32,0xc3782f92,0xbf800000,2
|
|
511
|
+
np.float32,0x427b53d2,0x3f800000,2
|
|
512
|
+
np.float32,0xc27b53d2,0x3f800000,2
|
|
513
|
+
np.float32,0x42fb53d2,0x3f800000,2
|
|
514
|
+
np.float32,0xc2fb53d2,0x3f800000,2
|
|
515
|
+
np.float32,0x437b53d2,0x3f800000,2
|
|
516
|
+
np.float32,0xc37b53d2,0x3f800000,2
|
|
517
|
+
np.float32,0x427e7811,0x3f3504e6,2
|
|
518
|
+
np.float32,0xc27e7811,0x3f3504e6,2
|
|
519
|
+
np.float32,0x42fe7811,0xb6159b6f,2
|
|
520
|
+
np.float32,0xc2fe7811,0xb6159b6f,2
|
|
521
|
+
np.float32,0x437e7811,0xbf800000,2
|
|
522
|
+
np.float32,0xc37e7811,0xbf800000,2
|
|
523
|
+
np.float32,0x4280ce28,0x34fdd672,2
|
|
524
|
+
np.float32,0xc280ce28,0x34fdd672,2
|
|
525
|
+
np.float32,0x4300ce28,0xbf800000,2
|
|
526
|
+
np.float32,0xc300ce28,0xbf800000,2
|
|
527
|
+
np.float32,0x4380ce28,0x3f800000,2
|
|
528
|
+
np.float32,0xc380ce28,0x3f800000,2
|
|
529
|
+
np.float32,0x42826048,0xbf350508,2
|
|
530
|
+
np.float32,0xc2826048,0xbf350508,2
|
|
531
|
+
np.float32,0x43026048,0x366b7958,2
|
|
532
|
+
np.float32,0xc3026048,0x366b7958,2
|
|
533
|
+
np.float32,0x43826048,0xbf800000,2
|
|
534
|
+
np.float32,0xc3826048,0xbf800000,2
|
|
535
|
+
np.float32,0x4283f268,0xbf800000,2
|
|
536
|
+
np.float32,0xc283f268,0xbf800000,2
|
|
537
|
+
np.float32,0x4303f268,0x3f800000,2
|
|
538
|
+
np.float32,0xc303f268,0x3f800000,2
|
|
539
|
+
np.float32,0x4383f268,0x3f800000,2
|
|
540
|
+
np.float32,0xc383f268,0x3f800000,2
|
|
541
|
+
np.float32,0x42858487,0xbf350504,2
|
|
542
|
+
np.float32,0xc2858487,0xbf350504,2
|
|
543
|
+
np.float32,0x43058487,0x363ea8be,2
|
|
544
|
+
np.float32,0xc3058487,0x363ea8be,2
|
|
545
|
+
np.float32,0x43858487,0xbf800000,2
|
|
546
|
+
np.float32,0xc3858487,0xbf800000,2
|
|
547
|
+
np.float32,0x428716a7,0x35588c6d,2
|
|
548
|
+
np.float32,0xc28716a7,0x35588c6d,2
|
|
549
|
+
np.float32,0x430716a7,0xbf800000,2
|
|
550
|
+
np.float32,0xc30716a7,0xbf800000,2
|
|
551
|
+
np.float32,0x438716a7,0x3f800000,2
|
|
552
|
+
np.float32,0xc38716a7,0x3f800000,2
|
|
553
|
+
np.float32,0x4288a8c7,0x3f350517,2
|
|
554
|
+
np.float32,0xc288a8c7,0x3f350517,2
|
|
555
|
+
np.float32,0x4308a8c7,0x36cb9a96,2
|
|
556
|
+
np.float32,0xc308a8c7,0x36cb9a96,2
|
|
557
|
+
np.float32,0x4388a8c7,0xbf800000,2
|
|
558
|
+
np.float32,0xc388a8c7,0xbf800000,2
|
|
559
|
+
np.float32,0x428a3ae7,0x3f800000,2
|
|
560
|
+
np.float32,0xc28a3ae7,0x3f800000,2
|
|
561
|
+
np.float32,0x430a3ae7,0x3f800000,2
|
|
562
|
+
np.float32,0xc30a3ae7,0x3f800000,2
|
|
563
|
+
np.float32,0x438a3ae7,0x3f800000,2
|
|
564
|
+
np.float32,0xc38a3ae7,0x3f800000,2
|
|
565
|
+
np.float32,0x428bcd06,0x3f3504f5,2
|
|
566
|
+
np.float32,0xc28bcd06,0x3f3504f5,2
|
|
567
|
+
np.float32,0x430bcd06,0x3497675b,2
|
|
568
|
+
np.float32,0xc30bcd06,0x3497675b,2
|
|
569
|
+
np.float32,0x438bcd06,0xbf800000,2
|
|
570
|
+
np.float32,0xc38bcd06,0xbf800000,2
|
|
571
|
+
np.float32,0x428d5f26,0xb60c0105,2
|
|
572
|
+
np.float32,0xc28d5f26,0xb60c0105,2
|
|
573
|
+
np.float32,0x430d5f26,0xbf800000,2
|
|
574
|
+
np.float32,0xc30d5f26,0xbf800000,2
|
|
575
|
+
np.float32,0x438d5f26,0x3f800000,2
|
|
576
|
+
np.float32,0xc38d5f26,0x3f800000,2
|
|
577
|
+
np.float32,0x428ef146,0xbf350526,2
|
|
578
|
+
np.float32,0xc28ef146,0xbf350526,2
|
|
579
|
+
np.float32,0x430ef146,0x3710bc40,2
|
|
580
|
+
np.float32,0xc30ef146,0x3710bc40,2
|
|
581
|
+
np.float32,0x438ef146,0xbf800000,2
|
|
582
|
+
np.float32,0xc38ef146,0xbf800000,2
|
|
583
|
+
np.float32,0x42908365,0xbf800000,2
|
|
584
|
+
np.float32,0xc2908365,0xbf800000,2
|
|
585
|
+
np.float32,0x43108365,0x3f800000,2
|
|
586
|
+
np.float32,0xc3108365,0x3f800000,2
|
|
587
|
+
np.float32,0x43908365,0x3f800000,2
|
|
588
|
+
np.float32,0xc3908365,0x3f800000,2
|
|
589
|
+
np.float32,0x42921585,0xbf3504e6,2
|
|
590
|
+
np.float32,0xc2921585,0xbf3504e6,2
|
|
591
|
+
np.float32,0x43121585,0xb618cee8,2
|
|
592
|
+
np.float32,0xc3121585,0xb618cee8,2
|
|
593
|
+
np.float32,0x43921585,0xbf800000,2
|
|
594
|
+
np.float32,0xc3921585,0xbf800000,2
|
|
595
|
+
np.float32,0x4293a7a5,0x3661deee,2
|
|
596
|
+
np.float32,0xc293a7a5,0x3661deee,2
|
|
597
|
+
np.float32,0x4313a7a5,0xbf800000,2
|
|
598
|
+
np.float32,0xc313a7a5,0xbf800000,2
|
|
599
|
+
np.float32,0x4393a7a5,0x3f800000,2
|
|
600
|
+
np.float32,0xc393a7a5,0x3f800000,2
|
|
601
|
+
np.float32,0x429539c5,0x3f350536,2
|
|
602
|
+
np.float32,0xc29539c5,0x3f350536,2
|
|
603
|
+
np.float32,0x431539c5,0x373bab34,2
|
|
604
|
+
np.float32,0xc31539c5,0x373bab34,2
|
|
605
|
+
np.float32,0x439539c5,0xbf800000,2
|
|
606
|
+
np.float32,0xc39539c5,0xbf800000,2
|
|
607
|
+
np.float32,0x4296cbe4,0x3f800000,2
|
|
608
|
+
np.float32,0xc296cbe4,0x3f800000,2
|
|
609
|
+
np.float32,0x4316cbe4,0x3f800000,2
|
|
610
|
+
np.float32,0xc316cbe4,0x3f800000,2
|
|
611
|
+
np.float32,0x4396cbe4,0x3f800000,2
|
|
612
|
+
np.float32,0xc396cbe4,0x3f800000,2
|
|
613
|
+
np.float32,0x42985e04,0x3f3504d7,2
|
|
614
|
+
np.float32,0xc2985e04,0x3f3504d7,2
|
|
615
|
+
np.float32,0x43185e04,0xb6a2455d,2
|
|
616
|
+
np.float32,0xc3185e04,0xb6a2455d,2
|
|
617
|
+
np.float32,0x43985e04,0xbf800000,2
|
|
618
|
+
np.float32,0xc3985e04,0xbf800000,2
|
|
619
|
+
np.float32,0x4299f024,0xb69bde6c,2
|
|
620
|
+
np.float32,0xc299f024,0xb69bde6c,2
|
|
621
|
+
np.float32,0x4319f024,0xbf800000,2
|
|
622
|
+
np.float32,0xc319f024,0xbf800000,2
|
|
623
|
+
np.float32,0x4399f024,0x3f800000,2
|
|
624
|
+
np.float32,0xc399f024,0x3f800000,2
|
|
625
|
+
np.float32,0x429b8243,0xbf3504ea,2
|
|
626
|
+
np.float32,0xc29b8243,0xbf3504ea,2
|
|
627
|
+
np.float32,0x431b8243,0xb5cb2eb8,2
|
|
628
|
+
np.float32,0xc31b8243,0xb5cb2eb8,2
|
|
629
|
+
np.float32,0x439b8243,0xbf800000,2
|
|
630
|
+
np.float32,0xc39b8243,0xbf800000,2
|
|
631
|
+
np.float32,0x435b2047,0x3f3504c1,2
|
|
632
|
+
np.float32,0x42a038a2,0xb5e4ca7e,2
|
|
633
|
+
np.float32,0x432038a2,0xbf800000,2
|
|
634
|
+
np.float32,0x4345eb9b,0xbf800000,2
|
|
635
|
+
np.float32,0x42c5eb9b,0xb5de638c,2
|
|
636
|
+
np.float32,0x42eb9e94,0xb5d7fc9b,2
|
|
637
|
+
np.float32,0x4350ea79,0x3631dadb,2
|
|
638
|
+
np.float32,0x42dbe957,0xbf800000,2
|
|
639
|
+
np.float32,0x425be957,0xb505522a,2
|
|
640
|
+
np.float32,0x435be957,0x3f800000,2
|
|
641
|
+
np.float32,0x46027eb2,0x3e7d94c9,2
|
|
642
|
+
np.float32,0x4477baed,0xbe7f1824,2
|
|
643
|
+
np.float32,0x454b8024,0x3e7f5268,2
|
|
644
|
+
np.float32,0x455d2c09,0x3e7f40cb,2
|
|
645
|
+
np.float32,0x4768d3de,0xba14b4af,2
|
|
646
|
+
np.float32,0x46c1e7cd,0x3e7fb102,2
|
|
647
|
+
np.float32,0x44a52949,0xbe7dc9d5,2
|
|
648
|
+
np.float32,0x4454633a,0x3e7dbc7d,2
|
|
649
|
+
np.float32,0x4689810b,0x3e7eb02b,2
|
|
650
|
+
np.float32,0x473473cd,0xbe7eef6f,2
|
|
651
|
+
np.float32,0x44a5193f,0x3e7e1b1f,2
|
|
652
|
+
np.float32,0x46004b36,0x3e7dac59,2
|
|
653
|
+
np.float32,0x467f604b,0x3d7ffd3a,2
|
|
654
|
+
np.float32,0x45ea1805,0x3dffd2e0,2
|
|
655
|
+
np.float32,0x457b6af3,0x3dff7831,2
|
|
656
|
+
np.float32,0x44996159,0xbe7d85f4,2
|
|
657
|
+
np.float32,0x47883553,0xbb80584e,2
|
|
658
|
+
np.float32,0x44e19f0c,0xbdffcfe6,2
|
|
659
|
+
np.float32,0x472b3bf6,0xbe7f7a82,2
|
|
660
|
+
np.float32,0x4600bb4e,0x3a135e33,2
|
|
661
|
+
np.float32,0x449f4556,0x3e7e42e5,2
|
|
662
|
+
np.float32,0x474e9420,0x3dff77b2,2
|
|
663
|
+
np.float32,0x45cbdb23,0x3dff7240,2
|
|
664
|
+
np.float32,0x44222747,0x3dffb039,2
|
|
665
|
+
np.float32,0x4772e419,0xbdff74b8,2
|
|
666
|
+
np.float64,0x1,0x3ff0000000000000,1
|
|
667
|
+
np.float64,0x8000000000000001,0x3ff0000000000000,1
|
|
668
|
+
np.float64,0x10000000000000,0x3ff0000000000000,1
|
|
669
|
+
np.float64,0x8010000000000000,0x3ff0000000000000,1
|
|
670
|
+
np.float64,0x7fefffffffffffff,0xbfefffe62ecfab75,1
|
|
671
|
+
np.float64,0xffefffffffffffff,0xbfefffe62ecfab75,1
|
|
672
|
+
np.float64,0x7ff0000000000000,0xfff8000000000000,1
|
|
673
|
+
np.float64,0xfff0000000000000,0xfff8000000000000,1
|
|
674
|
+
np.float64,0x7ff8000000000000,0x7ff8000000000000,1
|
|
675
|
+
np.float64,0x7ff4000000000000,0x7ffc000000000000,1
|
|
676
|
+
np.float64,0xbfc28bd9dd2517b4,0x3fefaa28ba13a702,1
|
|
677
|
+
np.float64,0x3fb673c62e2ce790,0x3fefe083847a717f,1
|
|
678
|
+
np.float64,0xbfe3e1dac7e7c3b6,0x3fea0500ba099f3a,1
|
|
679
|
+
np.float64,0xbfbe462caa3c8c58,0x3fefc6c8b9c1c87c,1
|
|
680
|
+
np.float64,0xbfb9353576326a68,0x3fefd8513e50e6b1,1
|
|
681
|
+
np.float64,0xbfc05e798520bcf4,0x3fefbd1ad81cf089,1
|
|
682
|
+
np.float64,0xbfe3ca3be2e79478,0x3fea12b995ea6574,1
|
|
683
|
+
np.float64,0xbfde875d46bd0eba,0x3fec6d888662a824,1
|
|
684
|
+
np.float64,0x3fafc4e02c3f89c0,0x3feff03c34bffd69,1
|
|
685
|
+
np.float64,0xbf98855848310ac0,0x3feffda6c1588bdb,1
|
|
686
|
+
np.float64,0x3fe66c51186cd8a2,0x3fe875c61c630ecb,1
|
|
687
|
+
np.float64,0xbfedff1c3b7bfe38,0x3fe2f0c8c9e8fa39,1
|
|
688
|
+
np.float64,0x3fd6082267ac1044,0x3fee1f6023695050,1
|
|
689
|
+
np.float64,0xbfe78449b06f0894,0x3fe7bda2b223850e,1
|
|
690
|
+
np.float64,0x3feedb8e63fdb71c,0x3fe23d5dfd2dd33f,1
|
|
691
|
+
np.float64,0xbfc0a9de3d2153bc,0x3fefbaadf5e5285e,1
|
|
692
|
+
np.float64,0x3fc04c67432098d0,0x3fefbdae07b7de8d,1
|
|
693
|
+
np.float64,0xbfeeef84c4fddf0a,0x3fe22cf37f309d88,1
|
|
694
|
+
np.float64,0x3fc04bb025209760,0x3fefbdb3d7d34ecf,1
|
|
695
|
+
np.float64,0x3fd6b84d48ad709c,0x3fee013403da6e2a,1
|
|
696
|
+
np.float64,0x3fec1ae25d7835c4,0x3fe46e62195cf274,1
|
|
697
|
+
np.float64,0xbfdc6fdf9bb8dfc0,0x3fece48dc78bbb2e,1
|
|
698
|
+
np.float64,0x3fb4db2c9229b660,0x3fefe4d42f79bf49,1
|
|
699
|
+
np.float64,0xbfc0ed698521dad4,0x3fefb8785ea658c9,1
|
|
700
|
+
np.float64,0xbfee82772b7d04ee,0x3fe2864a80efe8e9,1
|
|
701
|
+
np.float64,0x3fd575b664aaeb6c,0x3fee37c669a12879,1
|
|
702
|
+
np.float64,0x3fe4afb1c5e95f64,0x3fe98b177194439c,1
|
|
703
|
+
np.float64,0x3fd93962f9b272c4,0x3fed8bef61876294,1
|
|
704
|
+
np.float64,0x3fd97ae025b2f5c0,0x3fed7f4cfbf4d300,1
|
|
705
|
+
np.float64,0xbfd9afdb1bb35fb6,0x3fed74fdc44dabb1,1
|
|
706
|
+
np.float64,0x3f8ae65e3035cc80,0x3fefff4b1a0ea62b,1
|
|
707
|
+
np.float64,0xbfe7e58664efcb0d,0x3fe77c02a1cbb670,1
|
|
708
|
+
np.float64,0x3fe5f68b37ebed16,0x3fe8c10f849a5d4d,1
|
|
709
|
+
np.float64,0x3fd9137d61b226fc,0x3fed9330eb4815a1,1
|
|
710
|
+
np.float64,0x3fc146d019228da0,0x3fefb57e2d4d52f8,1
|
|
711
|
+
np.float64,0xbfda6036edb4c06e,0x3fed521b2b578679,1
|
|
712
|
+
np.float64,0xbfe78ddfb0ef1bc0,0x3fe7b734319a77e4,1
|
|
713
|
+
np.float64,0x3fe0877823610ef0,0x3febd33a993dd786,1
|
|
714
|
+
np.float64,0x3fbc61af2e38c360,0x3fefcdb4f889756d,1
|
|
715
|
+
np.float64,0x3fd4dcdca4a9b9b8,0x3fee50962ffea5ae,1
|
|
716
|
+
np.float64,0xbfe03cb29f607965,0x3febf7dbf640a75a,1
|
|
717
|
+
np.float64,0xbfc81de407303bc8,0x3fef6f066cef64bc,1
|
|
718
|
+
np.float64,0x3fd8dea42db1bd48,0x3fed9d3e00dbe0b3,1
|
|
719
|
+
np.float64,0x3feac75e94f58ebe,0x3fe56f1f47f97896,1
|
|
720
|
+
np.float64,0x3fb3a1ea6e2743d0,0x3fefe7ec1247cdaa,1
|
|
721
|
+
np.float64,0x3fd695c0f4ad2b80,0x3fee0730bd40883d,1
|
|
722
|
+
np.float64,0xbfd2c631f5a58c64,0x3feea20cbd1105d7,1
|
|
723
|
+
np.float64,0xbfe978a8e1f2f152,0x3fe663014d40ad7a,1
|
|
724
|
+
np.float64,0x3fd8b6b76ab16d70,0x3feda4c879aacc19,1
|
|
725
|
+
np.float64,0x3feaafd30e755fa6,0x3fe5809514c28453,1
|
|
726
|
+
np.float64,0x3fe1e37dc263c6fc,0x3feb20f9ad1f3f5c,1
|
|
727
|
+
np.float64,0x3fd0ec7c24a1d8f8,0x3feee34048f43b75,1
|
|
728
|
+
np.float64,0xbfe3881cbf67103a,0x3fea38d7886e6f53,1
|
|
729
|
+
np.float64,0xbfd7023957ae0472,0x3fedf4471c765a1c,1
|
|
730
|
+
np.float64,0xbfebc51c4ef78a38,0x3fe4b01c424e297b,1
|
|
731
|
+
np.float64,0xbfe20a93eae41528,0x3feb0c2aa321d2e0,1
|
|
732
|
+
np.float64,0x3fef39be867e737e,0x3fe1efaba9164d27,1
|
|
733
|
+
np.float64,0x3fe8ea9576f1d52a,0x3fe6c7a8826ce1be,1
|
|
734
|
+
np.float64,0x3fea921d91f5243c,0x3fe5968c6cf78963,1
|
|
735
|
+
np.float64,0x3fd7ee5d31afdcbc,0x3fedc9f19d43fe61,1
|
|
736
|
+
np.float64,0xbfe3ed581767dab0,0x3fe9fe4ee2f2b1cd,1
|
|
737
|
+
np.float64,0xbfc40923d5281248,0x3fef9bd8ee9f6e68,1
|
|
738
|
+
np.float64,0x3fe411a834682350,0x3fe9e9103854f057,1
|
|
739
|
+
np.float64,0xbfedf6ccdf7bed9a,0x3fe2f77ad6543246,1
|
|
740
|
+
np.float64,0xbfe8788a44f0f114,0x3fe7172f3aa0c742,1
|
|
741
|
+
np.float64,0xbfce728f173ce520,0x3fef1954083bea04,1
|
|
742
|
+
np.float64,0xbfd64dd0acac9ba2,0x3fee138c3293c246,1
|
|
743
|
+
np.float64,0xbfe00669f5600cd4,0x3fec121443945350,1
|
|
744
|
+
np.float64,0xbfe7152ba2ee2a58,0x3fe8079465d09846,1
|
|
745
|
+
np.float64,0x3fe8654d8f70ca9c,0x3fe7247c94f09596,1
|
|
746
|
+
np.float64,0x3fea68045cf4d008,0x3fe5b58cfe81a243,1
|
|
747
|
+
np.float64,0xbfcd4779073a8ef4,0x3fef2a9d78153fa5,1
|
|
748
|
+
np.float64,0xbfdb4456e5b688ae,0x3fed23b11614203f,1
|
|
749
|
+
np.float64,0x3fcb5d59cd36bab0,0x3fef45818216a515,1
|
|
750
|
+
np.float64,0xbfd914ff5ab229fe,0x3fed92e73746fea8,1
|
|
751
|
+
np.float64,0x3fe4d211db69a424,0x3fe97653f433d15f,1
|
|
752
|
+
np.float64,0xbfdbbb9224b77724,0x3fed0adb593dde80,1
|
|
753
|
+
np.float64,0x3fd424ceafa8499c,0x3fee6d9124795d33,1
|
|
754
|
+
np.float64,0x3feb5968f976b2d2,0x3fe501d116efbf54,1
|
|
755
|
+
np.float64,0x3fee7d92a2fcfb26,0x3fe28a479b6a9dcf,1
|
|
756
|
+
np.float64,0x3fc308e9972611d0,0x3fefa595f4df0c89,1
|
|
757
|
+
np.float64,0x3fda79cd77b4f39c,0x3fed4cf8e69ba1f8,1
|
|
758
|
+
np.float64,0x3fcbcf42d5379e88,0x3fef3f6a6a77c187,1
|
|
759
|
+
np.float64,0x3fe13a1da662743c,0x3feb79504faea888,1
|
|
760
|
+
np.float64,0xbfee4435f07c886c,0x3fe2b8ea98d2fc29,1
|
|
761
|
+
np.float64,0x3fd65d68ccacbad0,0x3fee10e1ac7ada89,1
|
|
762
|
+
np.float64,0x3fef2f89bb7e5f14,0x3fe1f81e882cc3f4,1
|
|
763
|
+
np.float64,0xbfef0a7769fe14ef,0x3fe216bf384fc646,1
|
|
764
|
+
np.float64,0x3fc065277320ca50,0x3fefbce44835c193,1
|
|
765
|
+
np.float64,0x3fe9c1a74d73834e,0x3fe62e9ee0c2f2bf,1
|
|
766
|
+
np.float64,0x3fd9d96e5db3b2dc,0x3fed6cd88eb51f6a,1
|
|
767
|
+
np.float64,0x3fe02bf1c56057e4,0x3febfffc24b5a7ba,1
|
|
768
|
+
np.float64,0xbfd6814350ad0286,0x3fee0ab9ad318b84,1
|
|
769
|
+
np.float64,0x3f9fcbec583f97c0,0x3feffc0d0f1d8e75,1
|
|
770
|
+
np.float64,0x3fe23524e5e46a4a,0x3feaf55372949a06,1
|
|
771
|
+
np.float64,0xbfbdc95f6a3b92c0,0x3fefc89c21d44995,1
|
|
772
|
+
np.float64,0x3fe961bb9cf2c378,0x3fe6735d6e1cca58,1
|
|
773
|
+
np.float64,0xbfe8f1c370f1e387,0x3fe6c29d1be8bee9,1
|
|
774
|
+
np.float64,0x3fd880d43ab101a8,0x3fedaee3c7ccfc96,1
|
|
775
|
+
np.float64,0xbfedb37005fb66e0,0x3fe32d91ef2e3bd3,1
|
|
776
|
+
np.float64,0xfdce287bfb9c5,0x3ff0000000000000,1
|
|
777
|
+
np.float64,0x9aa1b9e735437,0x3ff0000000000000,1
|
|
778
|
+
np.float64,0x6beac6e0d7d59,0x3ff0000000000000,1
|
|
779
|
+
np.float64,0x47457aae8e8b0,0x3ff0000000000000,1
|
|
780
|
+
np.float64,0x35ff13b46bfe3,0x3ff0000000000000,1
|
|
781
|
+
np.float64,0xb9c0c82b73819,0x3ff0000000000000,1
|
|
782
|
+
np.float64,0x1a8dc21a351b9,0x3ff0000000000000,1
|
|
783
|
+
np.float64,0x7e87ef6afd0ff,0x3ff0000000000000,1
|
|
784
|
+
np.float64,0x620a6588c414d,0x3ff0000000000000,1
|
|
785
|
+
np.float64,0x7f366000fe6e,0x3ff0000000000000,1
|
|
786
|
+
np.float64,0x787e39f4f0fc8,0x3ff0000000000000,1
|
|
787
|
+
np.float64,0xf5134f1fea26a,0x3ff0000000000000,1
|
|
788
|
+
np.float64,0xbce700ef79ce0,0x3ff0000000000000,1
|
|
789
|
+
np.float64,0x144d7cc8289b1,0x3ff0000000000000,1
|
|
790
|
+
np.float64,0xb9fbc5b973f79,0x3ff0000000000000,1
|
|
791
|
+
np.float64,0xc3d6292d87ac5,0x3ff0000000000000,1
|
|
792
|
+
np.float64,0xc1084e618210a,0x3ff0000000000000,1
|
|
793
|
+
np.float64,0xb6b9eca56d73e,0x3ff0000000000000,1
|
|
794
|
+
np.float64,0xc7ac4b858f58a,0x3ff0000000000000,1
|
|
795
|
+
np.float64,0x516d75d2a2daf,0x3ff0000000000000,1
|
|
796
|
+
np.float64,0x9dc089d93b811,0x3ff0000000000000,1
|
|
797
|
+
np.float64,0x7b5f2840f6be6,0x3ff0000000000000,1
|
|
798
|
+
np.float64,0x121d3ce8243a9,0x3ff0000000000000,1
|
|
799
|
+
np.float64,0xf0be0337e17c1,0x3ff0000000000000,1
|
|
800
|
+
np.float64,0xff58a5cbfeb15,0x3ff0000000000000,1
|
|
801
|
+
np.float64,0xdaf1d07fb5e3a,0x3ff0000000000000,1
|
|
802
|
+
np.float64,0x61d95382c3b2b,0x3ff0000000000000,1
|
|
803
|
+
np.float64,0xe4df943fc9bf3,0x3ff0000000000000,1
|
|
804
|
+
np.float64,0xf72ac2bdee559,0x3ff0000000000000,1
|
|
805
|
+
np.float64,0x12dafbf625b60,0x3ff0000000000000,1
|
|
806
|
+
np.float64,0xee11d427dc23b,0x3ff0000000000000,1
|
|
807
|
+
np.float64,0xf4f8eb37e9f1e,0x3ff0000000000000,1
|
|
808
|
+
np.float64,0xad7cb5df5af97,0x3ff0000000000000,1
|
|
809
|
+
np.float64,0x59fc9b06b3f94,0x3ff0000000000000,1
|
|
810
|
+
np.float64,0x3c3e65e4787ce,0x3ff0000000000000,1
|
|
811
|
+
np.float64,0xe37bc993c6f79,0x3ff0000000000000,1
|
|
812
|
+
np.float64,0x13bd6330277ad,0x3ff0000000000000,1
|
|
813
|
+
np.float64,0x56cc2800ad986,0x3ff0000000000000,1
|
|
814
|
+
np.float64,0x6203b8fcc4078,0x3ff0000000000000,1
|
|
815
|
+
np.float64,0x75c7c8b8eb8fa,0x3ff0000000000000,1
|
|
816
|
+
np.float64,0x5ebf8e00bd7f2,0x3ff0000000000000,1
|
|
817
|
+
np.float64,0xda81f2f1b503f,0x3ff0000000000000,1
|
|
818
|
+
np.float64,0x6adb17d6d5b64,0x3ff0000000000000,1
|
|
819
|
+
np.float64,0x1ba68eee374d3,0x3ff0000000000000,1
|
|
820
|
+
np.float64,0xeecf6fbbdd9ee,0x3ff0000000000000,1
|
|
821
|
+
np.float64,0x24d6dd8e49add,0x3ff0000000000000,1
|
|
822
|
+
np.float64,0xdf7cb81bbef97,0x3ff0000000000000,1
|
|
823
|
+
np.float64,0xafd7be1b5faf8,0x3ff0000000000000,1
|
|
824
|
+
np.float64,0xdb90ca35b721a,0x3ff0000000000000,1
|
|
825
|
+
np.float64,0xa72903a14e521,0x3ff0000000000000,1
|
|
826
|
+
np.float64,0x14533ee028a7,0x3ff0000000000000,1
|
|
827
|
+
np.float64,0x7951540cf2a2b,0x3ff0000000000000,1
|
|
828
|
+
np.float64,0x22882be045106,0x3ff0000000000000,1
|
|
829
|
+
np.float64,0x136270d626c4f,0x3ff0000000000000,1
|
|
830
|
+
np.float64,0x6a0f5744d41ec,0x3ff0000000000000,1
|
|
831
|
+
np.float64,0x21e0d1aa43c1b,0x3ff0000000000000,1
|
|
832
|
+
np.float64,0xee544155dca88,0x3ff0000000000000,1
|
|
833
|
+
np.float64,0xcbe8aac797d16,0x3ff0000000000000,1
|
|
834
|
+
np.float64,0x6c065e80d80e,0x3ff0000000000000,1
|
|
835
|
+
np.float64,0xe57f0411cafe1,0x3ff0000000000000,1
|
|
836
|
+
np.float64,0xdec3a6bdbd875,0x3ff0000000000000,1
|
|
837
|
+
np.float64,0xf4d23a0fe9a48,0x3ff0000000000000,1
|
|
838
|
+
np.float64,0xda77ef47b4efe,0x3ff0000000000000,1
|
|
839
|
+
np.float64,0x8c405c9b1880c,0x3ff0000000000000,1
|
|
840
|
+
np.float64,0x4eced5149d9db,0x3ff0000000000000,1
|
|
841
|
+
np.float64,0x16b6552c2d6cc,0x3ff0000000000000,1
|
|
842
|
+
np.float64,0x6fbc262cdf785,0x3ff0000000000000,1
|
|
843
|
+
np.float64,0x628c3844c5188,0x3ff0000000000000,1
|
|
844
|
+
np.float64,0x6d827d2cdb050,0x3ff0000000000000,1
|
|
845
|
+
np.float64,0xd1bfdf29a37fc,0x3ff0000000000000,1
|
|
846
|
+
np.float64,0xd85400fdb0a80,0x3ff0000000000000,1
|
|
847
|
+
np.float64,0xcc420b2d98842,0x3ff0000000000000,1
|
|
848
|
+
np.float64,0xac41d21b5883b,0x3ff0000000000000,1
|
|
849
|
+
np.float64,0x432f18d4865e4,0x3ff0000000000000,1
|
|
850
|
+
np.float64,0xe7e89a1bcfd14,0x3ff0000000000000,1
|
|
851
|
+
np.float64,0x9b1141d536228,0x3ff0000000000000,1
|
|
852
|
+
np.float64,0x6805f662d00bf,0x3ff0000000000000,1
|
|
853
|
+
np.float64,0xc76552358ecab,0x3ff0000000000000,1
|
|
854
|
+
np.float64,0x4ae8ffee95d21,0x3ff0000000000000,1
|
|
855
|
+
np.float64,0x4396c096872d9,0x3ff0000000000000,1
|
|
856
|
+
np.float64,0x6e8e55d4dd1cb,0x3ff0000000000000,1
|
|
857
|
+
np.float64,0x4c2e33dc985c7,0x3ff0000000000000,1
|
|
858
|
+
np.float64,0xbce814a579d03,0x3ff0000000000000,1
|
|
859
|
+
np.float64,0x911681b5222d0,0x3ff0000000000000,1
|
|
860
|
+
np.float64,0x5f90a4b2bf215,0x3ff0000000000000,1
|
|
861
|
+
np.float64,0x26f76be84deee,0x3ff0000000000000,1
|
|
862
|
+
np.float64,0xb2f7536165eeb,0x3ff0000000000000,1
|
|
863
|
+
np.float64,0x4de4e6089bc9d,0x3ff0000000000000,1
|
|
864
|
+
np.float64,0xf2e016afe5c03,0x3ff0000000000000,1
|
|
865
|
+
np.float64,0xb9b7b949736f7,0x3ff0000000000000,1
|
|
866
|
+
np.float64,0x3363ea1866c7e,0x3ff0000000000000,1
|
|
867
|
+
np.float64,0xd1a3bd6ba3478,0x3ff0000000000000,1
|
|
868
|
+
np.float64,0xae89f3595d13f,0x3ff0000000000000,1
|
|
869
|
+
np.float64,0xddbd9601bb7c,0x3ff0000000000000,1
|
|
870
|
+
np.float64,0x5de41a06bbc84,0x3ff0000000000000,1
|
|
871
|
+
np.float64,0xfd58c86dfab19,0x3ff0000000000000,1
|
|
872
|
+
np.float64,0x24922e8c49247,0x3ff0000000000000,1
|
|
873
|
+
np.float64,0xcda040339b408,0x3ff0000000000000,1
|
|
874
|
+
np.float64,0x5fe500b2bfca1,0x3ff0000000000000,1
|
|
875
|
+
np.float64,0x9214abb924296,0x3ff0000000000000,1
|
|
876
|
+
np.float64,0x800609fe0a2c13fd,0x3ff0000000000000,1
|
|
877
|
+
np.float64,0x800c7c6fe518f8e0,0x3ff0000000000000,1
|
|
878
|
+
np.float64,0x800a1a9491b4352a,0x3ff0000000000000,1
|
|
879
|
+
np.float64,0x800b45e0e8968bc2,0x3ff0000000000000,1
|
|
880
|
+
np.float64,0x8008497e57d092fd,0x3ff0000000000000,1
|
|
881
|
+
np.float64,0x800b9c0af0173816,0x3ff0000000000000,1
|
|
882
|
+
np.float64,0x800194cccb43299a,0x3ff0000000000000,1
|
|
883
|
+
np.float64,0x8001c91ef183923f,0x3ff0000000000000,1
|
|
884
|
+
np.float64,0x800f25b5ccde4b6c,0x3ff0000000000000,1
|
|
885
|
+
np.float64,0x800ce63ccc79cc7a,0x3ff0000000000000,1
|
|
886
|
+
np.float64,0x800d8fb2e83b1f66,0x3ff0000000000000,1
|
|
887
|
+
np.float64,0x80083cd06f7079a1,0x3ff0000000000000,1
|
|
888
|
+
np.float64,0x800823598e9046b3,0x3ff0000000000000,1
|
|
889
|
+
np.float64,0x8001c1319de38264,0x3ff0000000000000,1
|
|
890
|
+
np.float64,0x800f2b68543e56d1,0x3ff0000000000000,1
|
|
891
|
+
np.float64,0x80022a4f4364549f,0x3ff0000000000000,1
|
|
892
|
+
np.float64,0x800f51badf7ea376,0x3ff0000000000000,1
|
|
893
|
+
np.float64,0x8003fbf31e27f7e7,0x3ff0000000000000,1
|
|
894
|
+
np.float64,0x800d4c00e2fa9802,0x3ff0000000000000,1
|
|
895
|
+
np.float64,0x800023b974804774,0x3ff0000000000000,1
|
|
896
|
+
np.float64,0x800860778990c0ef,0x3ff0000000000000,1
|
|
897
|
+
np.float64,0x800a15c241542b85,0x3ff0000000000000,1
|
|
898
|
+
np.float64,0x8003097d9dc612fc,0x3ff0000000000000,1
|
|
899
|
+
np.float64,0x800d77d8541aefb1,0x3ff0000000000000,1
|
|
900
|
+
np.float64,0x80093804ab52700a,0x3ff0000000000000,1
|
|
901
|
+
np.float64,0x800d2b3bfd7a5678,0x3ff0000000000000,1
|
|
902
|
+
np.float64,0x800da24bcd5b4498,0x3ff0000000000000,1
|
|
903
|
+
np.float64,0x8006eee1c28dddc4,0x3ff0000000000000,1
|
|
904
|
+
np.float64,0x80005137fa40a271,0x3ff0000000000000,1
|
|
905
|
+
np.float64,0x8007a3fbc22f47f8,0x3ff0000000000000,1
|
|
906
|
+
np.float64,0x800dcd97071b9b2e,0x3ff0000000000000,1
|
|
907
|
+
np.float64,0x80065b36048cb66d,0x3ff0000000000000,1
|
|
908
|
+
np.float64,0x8004206ba72840d8,0x3ff0000000000000,1
|
|
909
|
+
np.float64,0x8007e82b98cfd058,0x3ff0000000000000,1
|
|
910
|
+
np.float64,0x8001a116ed23422f,0x3ff0000000000000,1
|
|
911
|
+
np.float64,0x800c69e9ff18d3d4,0x3ff0000000000000,1
|
|
912
|
+
np.float64,0x8003843688e7086e,0x3ff0000000000000,1
|
|
913
|
+
np.float64,0x800335e3b8866bc8,0x3ff0000000000000,1
|
|
914
|
+
np.float64,0x800e3308f0bc6612,0x3ff0000000000000,1
|
|
915
|
+
np.float64,0x8002a9ec55c553d9,0x3ff0000000000000,1
|
|
916
|
+
np.float64,0x80001c2084e03842,0x3ff0000000000000,1
|
|
917
|
+
np.float64,0x800bc2bbd8d78578,0x3ff0000000000000,1
|
|
918
|
+
np.float64,0x800ae6bcc555cd7a,0x3ff0000000000000,1
|
|
919
|
+
np.float64,0x80083f7a13907ef5,0x3ff0000000000000,1
|
|
920
|
+
np.float64,0x800d83ed76db07db,0x3ff0000000000000,1
|
|
921
|
+
np.float64,0x800a12251974244b,0x3ff0000000000000,1
|
|
922
|
+
np.float64,0x800a69c95714d393,0x3ff0000000000000,1
|
|
923
|
+
np.float64,0x800cd5a85639ab51,0x3ff0000000000000,1
|
|
924
|
+
np.float64,0x800e0e1837bc1c31,0x3ff0000000000000,1
|
|
925
|
+
np.float64,0x8007b5ca39ef6b95,0x3ff0000000000000,1
|
|
926
|
+
np.float64,0x800cf961cad9f2c4,0x3ff0000000000000,1
|
|
927
|
+
np.float64,0x80066e8fc14cdd20,0x3ff0000000000000,1
|
|
928
|
+
np.float64,0x8001cb8c7b43971a,0x3ff0000000000000,1
|
|
929
|
+
np.float64,0x800002df68a005c0,0x3ff0000000000000,1
|
|
930
|
+
np.float64,0x8003e6681567ccd1,0x3ff0000000000000,1
|
|
931
|
+
np.float64,0x800b039126b60723,0x3ff0000000000000,1
|
|
932
|
+
np.float64,0x800d2e1b663a5c37,0x3ff0000000000000,1
|
|
933
|
+
np.float64,0x800188b3e2a31169,0x3ff0000000000000,1
|
|
934
|
+
np.float64,0x8001f272e943e4e7,0x3ff0000000000000,1
|
|
935
|
+
np.float64,0x800d7f53607afea7,0x3ff0000000000000,1
|
|
936
|
+
np.float64,0x80092cafa4f25960,0x3ff0000000000000,1
|
|
937
|
+
np.float64,0x800fc009f07f8014,0x3ff0000000000000,1
|
|
938
|
+
np.float64,0x8003da896507b514,0x3ff0000000000000,1
|
|
939
|
+
np.float64,0x800d4d1b4c3a9a37,0x3ff0000000000000,1
|
|
940
|
+
np.float64,0x8007a835894f506c,0x3ff0000000000000,1
|
|
941
|
+
np.float64,0x80057ba0522af741,0x3ff0000000000000,1
|
|
942
|
+
np.float64,0x8009b7054b336e0b,0x3ff0000000000000,1
|
|
943
|
+
np.float64,0x800b2c6c125658d9,0x3ff0000000000000,1
|
|
944
|
+
np.float64,0x8008b1840ad16308,0x3ff0000000000000,1
|
|
945
|
+
np.float64,0x8007ea0e3befd41d,0x3ff0000000000000,1
|
|
946
|
+
np.float64,0x800dd658683bacb1,0x3ff0000000000000,1
|
|
947
|
+
np.float64,0x8008cda48fd19b49,0x3ff0000000000000,1
|
|
948
|
+
np.float64,0x8003acca14c75995,0x3ff0000000000000,1
|
|
949
|
+
np.float64,0x8008bd152d717a2b,0x3ff0000000000000,1
|
|
950
|
+
np.float64,0x80010d1ea3621a3e,0x3ff0000000000000,1
|
|
951
|
+
np.float64,0x800130b78b826170,0x3ff0000000000000,1
|
|
952
|
+
np.float64,0x8002cf3a46e59e75,0x3ff0000000000000,1
|
|
953
|
+
np.float64,0x800b76e7fa76edd0,0x3ff0000000000000,1
|
|
954
|
+
np.float64,0x800e065fe1dc0cc0,0x3ff0000000000000,1
|
|
955
|
+
np.float64,0x8000dd527ea1baa6,0x3ff0000000000000,1
|
|
956
|
+
np.float64,0x80032cb234665965,0x3ff0000000000000,1
|
|
957
|
+
np.float64,0x800affc1acb5ff84,0x3ff0000000000000,1
|
|
958
|
+
np.float64,0x80074be23fee97c5,0x3ff0000000000000,1
|
|
959
|
+
np.float64,0x8004f83eafc9f07e,0x3ff0000000000000,1
|
|
960
|
+
np.float64,0x800b02a115560543,0x3ff0000000000000,1
|
|
961
|
+
np.float64,0x800b324a55766495,0x3ff0000000000000,1
|
|
962
|
+
np.float64,0x800ffbcfd69ff7a0,0x3ff0000000000000,1
|
|
963
|
+
np.float64,0x800830bc7b906179,0x3ff0000000000000,1
|
|
964
|
+
np.float64,0x800cbafe383975fd,0x3ff0000000000000,1
|
|
965
|
+
np.float64,0x8001ee42bfe3dc86,0x3ff0000000000000,1
|
|
966
|
+
np.float64,0x8005b00fdc0b6020,0x3ff0000000000000,1
|
|
967
|
+
np.float64,0x8005e7addd0bcf5c,0x3ff0000000000000,1
|
|
968
|
+
np.float64,0x8001ae4cb0635c9a,0x3ff0000000000000,1
|
|
969
|
+
np.float64,0x80098a9941131533,0x3ff0000000000000,1
|
|
970
|
+
np.float64,0x800334c929466993,0x3ff0000000000000,1
|
|
971
|
+
np.float64,0x8009568239d2ad05,0x3ff0000000000000,1
|
|
972
|
+
np.float64,0x800f0639935e0c73,0x3ff0000000000000,1
|
|
973
|
+
np.float64,0x800cebce7499d79d,0x3ff0000000000000,1
|
|
974
|
+
np.float64,0x800482ee4c2905dd,0x3ff0000000000000,1
|
|
975
|
+
np.float64,0x8007b7bd9e2f6f7c,0x3ff0000000000000,1
|
|
976
|
+
np.float64,0x3fe654469f2ca88d,0x3fe8853f6c01ffb3,1
|
|
977
|
+
np.float64,0x3feb4d7297369ae5,0x3fe50ad5bb621408,1
|
|
978
|
+
np.float64,0x3feef53ba43dea77,0x3fe2283f356f8658,1
|
|
979
|
+
np.float64,0x3fddf564eabbeaca,0x3fec8ec0e0dead9c,1
|
|
980
|
+
np.float64,0x3fd3a69078274d21,0x3fee80e05c320000,1
|
|
981
|
+
np.float64,0x3fecdafe5d39b5fd,0x3fe3d91a5d440fd9,1
|
|
982
|
+
np.float64,0x3fd93286bc32650d,0x3fed8d40696cd10e,1
|
|
983
|
+
np.float64,0x3fc0d34eb821a69d,0x3fefb954023d4284,1
|
|
984
|
+
np.float64,0x3fc7b4b9a02f6973,0x3fef73e8739787ce,1
|
|
985
|
+
np.float64,0x3fe08c839a611907,0x3febd0bc6f5641cd,1
|
|
986
|
+
np.float64,0x3fb3d1758627a2eb,0x3fefe776f6183f96,1
|
|
987
|
+
np.float64,0x3fef93c9ff3f2794,0x3fe1a4d2f622627d,1
|
|
988
|
+
np.float64,0x3fea8d0041351a01,0x3fe59a52a1c78c9e,1
|
|
989
|
+
np.float64,0x3fe3e26a30e7c4d4,0x3fea04ad3e0bbf8d,1
|
|
990
|
+
np.float64,0x3fe5a34c9f6b4699,0x3fe8f57c5ccd1eab,1
|
|
991
|
+
np.float64,0x3fc21ef859243df1,0x3fefae0b68a3a2e7,1
|
|
992
|
+
np.float64,0x3fed7dd585fafbab,0x3fe35860041e5b0d,1
|
|
993
|
+
np.float64,0x3fe5abacf22b575a,0x3fe8f03d8b6ef0f2,1
|
|
994
|
+
np.float64,0x3fe426451f284c8a,0x3fe9dcf21f13205b,1
|
|
995
|
+
np.float64,0x3fc01f6456203ec9,0x3fefbf19e2a8e522,1
|
|
996
|
+
np.float64,0x3fe1cf2772239e4f,0x3feb2bbd645c7697,1
|
|
997
|
+
np.float64,0x3fd18c4ace231896,0x3feecdfdd086c110,1
|
|
998
|
+
np.float64,0x3fe8387d5b7070fb,0x3fe74358f2ec4910,1
|
|
999
|
+
np.float64,0x3fdce51c2239ca38,0x3feccb2ae5459632,1
|
|
1000
|
+
np.float64,0x3fe5b0f2e4eb61e6,0x3fe8ecef4dbe4277,1
|
|
1001
|
+
np.float64,0x3fe1ceeb08a39dd6,0x3feb2bdd4dcfb3df,1
|
|
1002
|
+
np.float64,0x3febc5899d778b13,0x3fe4afc8dd8ad228,1
|
|
1003
|
+
np.float64,0x3fe7a47fbe2f48ff,0x3fe7a7fd9b352ea5,1
|
|
1004
|
+
np.float64,0x3fe7f74e1fafee9c,0x3fe76feb2755b247,1
|
|
1005
|
+
np.float64,0x3fe2bfad04e57f5a,0x3feaa9b46adddaeb,1
|
|
1006
|
+
np.float64,0x3fd06a090320d412,0x3feef40c334f8fba,1
|
|
1007
|
+
np.float64,0x3fdc97297d392e53,0x3fecdc16a3e22fcb,1
|
|
1008
|
+
np.float64,0x3fdc1a3f3838347e,0x3fecf6db2769d404,1
|
|
1009
|
+
np.float64,0x3fcca90096395201,0x3fef338156fcd218,1
|
|
1010
|
+
np.float64,0x3fed464733fa8c8e,0x3fe38483f0465d91,1
|
|
1011
|
+
np.float64,0x3fe7e067d82fc0d0,0x3fe77f7c8c9de896,1
|
|
1012
|
+
np.float64,0x3fc014fa0b2029f4,0x3fefbf6d84c933f8,1
|
|
1013
|
+
np.float64,0x3fd3bf1524277e2a,0x3fee7d2997b74dec,1
|
|
1014
|
+
np.float64,0x3fec153b86782a77,0x3fe472bb5497bb2a,1
|
|
1015
|
+
np.float64,0x3fd3e4d9d5a7c9b4,0x3fee776842691902,1
|
|
1016
|
+
np.float64,0x3fea6c0e2c74d81c,0x3fe5b2954cb458d9,1
|
|
1017
|
+
np.float64,0x3fee8f6a373d1ed4,0x3fe27bb9e348125b,1
|
|
1018
|
+
np.float64,0x3fd30c6dd42618dc,0x3fee97d2cab2b0bc,1
|
|
1019
|
+
np.float64,0x3fe4f90e6d69f21d,0x3fe95ea3dd4007f2,1
|
|
1020
|
+
np.float64,0x3fe271d467e4e3a9,0x3fead470d6d4008b,1
|
|
1021
|
+
np.float64,0x3fef2983897e5307,0x3fe1fd1a4debe33b,1
|
|
1022
|
+
np.float64,0x3fe980cc83b30199,0x3fe65d2fb8a0eb46,1
|
|
1023
|
+
np.float64,0x3fdfdf53db3fbea8,0x3fec1cf95b2a1cc7,1
|
|
1024
|
+
np.float64,0x3fe4d5307ba9aa61,0x3fe974701b4156cb,1
|
|
1025
|
+
np.float64,0x3fdb4e2345b69c47,0x3fed21aa6c146512,1
|
|
1026
|
+
np.float64,0x3fe3f7830327ef06,0x3fe9f85f6c88c2a8,1
|
|
1027
|
+
np.float64,0x3fca915fb63522bf,0x3fef502b73a52ecf,1
|
|
1028
|
+
np.float64,0x3fe66d3709ecda6e,0x3fe87531d7372d7a,1
|
|
1029
|
+
np.float64,0x3fd86000bcb0c001,0x3fedb5018dd684ca,1
|
|
1030
|
+
np.float64,0x3fe516e5feea2dcc,0x3fe94c68b111404e,1
|
|
1031
|
+
np.float64,0x3fd83c53dd3078a8,0x3fedbb9e5dd9e165,1
|
|
1032
|
+
np.float64,0x3fedfeeb673bfdd7,0x3fe2f0f0253c5d5d,1
|
|
1033
|
+
np.float64,0x3fe0dc6f9c21b8df,0x3feba8e2452410c2,1
|
|
1034
|
+
np.float64,0x3fbe154d643c2a9b,0x3fefc780a9357457,1
|
|
1035
|
+
np.float64,0x3fe5f63986abec73,0x3fe8c1434951a40a,1
|
|
1036
|
+
np.float64,0x3fbce0e50839c1ca,0x3fefcbeeaa27de75,1
|
|
1037
|
+
np.float64,0x3fd7ef5c5c2fdeb9,0x3fedc9c3022495b3,1
|
|
1038
|
+
np.float64,0x3fc1073914220e72,0x3fefb79de80fc0fd,1
|
|
1039
|
+
np.float64,0x3fe1a93c3d235278,0x3feb3fb21f86ac67,1
|
|
1040
|
+
np.float64,0x3fe321ee53e643dd,0x3fea72e2999f1e22,1
|
|
1041
|
+
np.float64,0x3fa881578c3102af,0x3feff69e6e51e0d6,1
|
|
1042
|
+
np.float64,0x3fd313482a262690,0x3fee96d161199495,1
|
|
1043
|
+
np.float64,0x3fe7272cd6ae4e5a,0x3fe7fbacbd0d8f43,1
|
|
1044
|
+
np.float64,0x3fd6cf4015ad9e80,0x3fedfd3513d544b8,1
|
|
1045
|
+
np.float64,0x3fc67b7e6d2cf6fd,0x3fef81f5c16923a4,1
|
|
1046
|
+
np.float64,0x3fa1999c14233338,0x3feffb2913a14184,1
|
|
1047
|
+
np.float64,0x3fc74eb8dd2e9d72,0x3fef78909a138e3c,1
|
|
1048
|
+
np.float64,0x3fc0b9274921724f,0x3fefba2ebd5f3e1c,1
|
|
1049
|
+
np.float64,0x3fd53fa156aa7f43,0x3fee40a18e952e88,1
|
|
1050
|
+
np.float64,0x3feaccbca4b59979,0x3fe56b22b33eb713,1
|
|
1051
|
+
np.float64,0x3fe6a01e3a2d403c,0x3fe8543fbd820ecc,1
|
|
1052
|
+
np.float64,0x3fd392a869a72551,0x3fee83e0ffe0e8de,1
|
|
1053
|
+
np.float64,0x3fe44d8928689b12,0x3fe9c5bf3c8fffdb,1
|
|
1054
|
+
np.float64,0x3fca3f209f347e41,0x3fef5461b6fa0924,1
|
|
1055
|
+
np.float64,0x3fee9e84b07d3d09,0x3fe26f638f733549,1
|
|
1056
|
+
np.float64,0x3faf49acb03e9359,0x3feff0b583cd8c48,1
|
|
1057
|
+
np.float64,0x3fea874b2af50e96,0x3fe59e882fa6febf,1
|
|
1058
|
+
np.float64,0x3fc50b72772a16e5,0x3fef918777dc41be,1
|
|
1059
|
+
np.float64,0x3fe861d1d4f0c3a4,0x3fe726e44d9d42c2,1
|
|
1060
|
+
np.float64,0x3fcadd2e2535ba5c,0x3fef4c3e2b56da38,1
|
|
1061
|
+
np.float64,0x3fea59c29cb4b385,0x3fe5c0043e586439,1
|
|
1062
|
+
np.float64,0x3fc1ffef0d23ffde,0x3fefaf22be452d13,1
|
|
1063
|
+
np.float64,0x3fc2d8dbc125b1b8,0x3fefa75b646d8e4e,1
|
|
1064
|
+
np.float64,0x3fd66c6471acd8c9,0x3fee0e5038b895c0,1
|
|
1065
|
+
np.float64,0x3fd0854adfa10a96,0x3feef0945bcc5c99,1
|
|
1066
|
+
np.float64,0x3feaac7076f558e1,0x3fe58316c23a82ad,1
|
|
1067
|
+
np.float64,0x3fdda49db3bb493b,0x3feca0e347c0ad6f,1
|
|
1068
|
+
np.float64,0x3fe43a539de874a7,0x3fe9d11d722d4822,1
|
|
1069
|
+
np.float64,0x3feeee3ebbfddc7d,0x3fe22dffd251e9af,1
|
|
1070
|
+
np.float64,0x3f8ee2c5b03dc58b,0x3fefff11855a7b6c,1
|
|
1071
|
+
np.float64,0x3fcd7107c63ae210,0x3fef2840bb55ca52,1
|
|
1072
|
+
np.float64,0x3f8d950d203b2a1a,0x3fefff253a08e40e,1
|
|
1073
|
+
np.float64,0x3fd40a5e57a814bd,0x3fee71a633c761fc,1
|
|
1074
|
+
np.float64,0x3fee836ec83d06de,0x3fe28580975be2fd,1
|
|
1075
|
+
np.float64,0x3fd7bbe87f2f77d1,0x3fedd31f661890cc,1
|
|
1076
|
+
np.float64,0xbfe05bf138a0b7e2,0x3febe8a000d96e47,1
|
|
1077
|
+
np.float64,0xbf88bddd90317bc0,0x3fefff66f6e2ff26,1
|
|
1078
|
+
np.float64,0xbfdc9cbb12393976,0x3fecdae2982335db,1
|
|
1079
|
+
np.float64,0xbfd85b4eccb0b69e,0x3fedb5e0dd87f702,1
|
|
1080
|
+
np.float64,0xbfe5c326cb2b864e,0x3fe8e180f525fa12,1
|
|
1081
|
+
np.float64,0xbfe381a0e4a70342,0x3fea3c8e5e3ab78e,1
|
|
1082
|
+
np.float64,0xbfe58d892c2b1b12,0x3fe9031551617aed,1
|
|
1083
|
+
np.float64,0xbfd7f3a52cafe74a,0x3fedc8fa97edd080,1
|
|
1084
|
+
np.float64,0xbfef3417bc7e682f,0x3fe1f45989f6a009,1
|
|
1085
|
+
np.float64,0xbfddfb8208bbf704,0x3fec8d5fa9970773,1
|
|
1086
|
+
np.float64,0xbfdab69bcc356d38,0x3fed40b2f6c347c6,1
|
|
1087
|
+
np.float64,0xbfed3f7cf17a7efa,0x3fe389e4ff4d9235,1
|
|
1088
|
+
np.float64,0xbfe47675d9a8ecec,0x3fe9ad6829a69e94,1
|
|
1089
|
+
np.float64,0xbfd030e2902061c6,0x3feefb3f811e024f,1
|
|
1090
|
+
np.float64,0xbfc376ac7226ed58,0x3fefa1798712b37e,1
|
|
1091
|
+
np.float64,0xbfdb7e54a0b6fcaa,0x3fed17a974c4bc28,1
|
|
1092
|
+
np.float64,0xbfdb7d5d5736faba,0x3fed17dcf31a8d84,1
|
|
1093
|
+
np.float64,0xbf876bd6502ed7c0,0x3fefff76dce6232c,1
|
|
1094
|
+
np.float64,0xbfd211e6c02423ce,0x3feebba41f0a1764,1
|
|
1095
|
+
np.float64,0xbfb443e3962887c8,0x3fefe658953629d4,1
|
|
1096
|
+
np.float64,0xbfe81b09e9b03614,0x3fe757882e4fdbae,1
|
|
1097
|
+
np.float64,0xbfdcb905d2b9720c,0x3fecd4c22cfe84e5,1
|
|
1098
|
+
np.float64,0xbfe3b62d99276c5b,0x3fea1e5520b3098d,1
|
|
1099
|
+
np.float64,0xbfbf05b25c3e0b68,0x3fefc3ecc04bca8e,1
|
|
1100
|
+
np.float64,0xbfdedc885b3db910,0x3fec59e22feb49f3,1
|
|
1101
|
+
np.float64,0xbfe33aa282667545,0x3fea64f2d55ec471,1
|
|
1102
|
+
np.float64,0xbfec84745a3908e9,0x3fe41cb3214e7044,1
|
|
1103
|
+
np.float64,0xbfddefdff1bbdfc0,0x3fec8fff88d4d0ec,1
|
|
1104
|
+
np.float64,0xbfd26ae6aca4d5ce,0x3feeaf208c7fedf6,1
|
|
1105
|
+
np.float64,0xbfee010591fc020b,0x3fe2ef3e57211a5e,1
|
|
1106
|
+
np.float64,0xbfb8cfddca319fb8,0x3fefd98d8f7918ed,1
|
|
1107
|
+
np.float64,0xbfe991648f3322c9,0x3fe6514e54670bae,1
|
|
1108
|
+
np.float64,0xbfee63fd087cc7fa,0x3fe29f1bfa3297cc,1
|
|
1109
|
+
np.float64,0xbfe1685942a2d0b2,0x3feb617f5f839eee,1
|
|
1110
|
+
np.float64,0xbfc6fc2fd62df860,0x3fef7c4698fd58cf,1
|
|
1111
|
+
np.float64,0xbfe42723d3a84e48,0x3fe9dc6ef7243e90,1
|
|
1112
|
+
np.float64,0xbfc3a7e89d274fd0,0x3fef9f99e3314e77,1
|
|
1113
|
+
np.float64,0xbfeb4c9521f6992a,0x3fe50b7c919bc6d8,1
|
|
1114
|
+
np.float64,0xbf707b34e020f680,0x3fefffef05e30264,1
|
|
1115
|
+
np.float64,0xbfc078478e20f090,0x3fefbc479305d5aa,1
|
|
1116
|
+
np.float64,0xbfd494ac4ca92958,0x3fee5c11f1cd8269,1
|
|
1117
|
+
np.float64,0xbfdaf888a035f112,0x3fed3346ae600469,1
|
|
1118
|
+
np.float64,0xbfa5d8ed502bb1e0,0x3feff88b0f262609,1
|
|
1119
|
+
np.float64,0xbfeec0cbfffd8198,0x3fe253543b2371cb,1
|
|
1120
|
+
np.float64,0xbfe594b5986b296b,0x3fe8fe9b39fb3940,1
|
|
1121
|
+
np.float64,0xbfc8ece7c631d9d0,0x3fef652bd0611ac7,1
|
|
1122
|
+
np.float64,0xbfd8ffeca0b1ffda,0x3fed96ebdf9b65cb,1
|
|
1123
|
+
np.float64,0xbfba9b221e353648,0x3fefd3cc21e2f15c,1
|
|
1124
|
+
np.float64,0xbfca63a52c34c74c,0x3fef52848eb9ed3b,1
|
|
1125
|
+
np.float64,0xbfe588e9b06b11d4,0x3fe905f7403e8881,1
|
|
1126
|
+
np.float64,0xbfc76f82db2edf04,0x3fef77138fe9bbc2,1
|
|
1127
|
+
np.float64,0xbfeeb3f334bd67e6,0x3fe25ddadb1096d6,1
|
|
1128
|
+
np.float64,0xbfbf2b64ce3e56c8,0x3fefc35a9555f6df,1
|
|
1129
|
+
np.float64,0xbfe9920e4ff3241c,0x3fe650d4ab8f5c42,1
|
|
1130
|
+
np.float64,0xbfb4a54c02294a98,0x3fefe55fc85ae5e9,1
|
|
1131
|
+
np.float64,0xbfe353b0c766a762,0x3fea56c02d17e4b7,1
|
|
1132
|
+
np.float64,0xbfd99961a4b332c4,0x3fed795fcd00dbf9,1
|
|
1133
|
+
np.float64,0xbfef191ddabe323c,0x3fe20aa79524f636,1
|
|
1134
|
+
np.float64,0xbfb25d060224ba10,0x3fefeaeee5cc8c0b,1
|
|
1135
|
+
np.float64,0xbfe6022428ec0448,0x3fe8b9b46e776194,1
|
|
1136
|
+
np.float64,0xbfed1a236cba3447,0x3fe3a76bee0d9861,1
|
|
1137
|
+
np.float64,0xbfc59671e72b2ce4,0x3fef8bc4daef6f14,1
|
|
1138
|
+
np.float64,0xbfdf2711703e4e22,0x3fec4886a8c9ceb5,1
|
|
1139
|
+
np.float64,0xbfeb7e207536fc41,0x3fe4e610c783f168,1
|
|
1140
|
+
np.float64,0xbfe6cdf5bcad9bec,0x3fe8365f8a59bc81,1
|
|
1141
|
+
np.float64,0xbfe55294adaaa52a,0x3fe927b0af5ccd09,1
|
|
1142
|
+
np.float64,0xbfdf4a88913e9512,0x3fec4036df58ba74,1
|
|
1143
|
+
np.float64,0xbfebb7efe4376fe0,0x3fe4ba276006992d,1
|
|
1144
|
+
np.float64,0xbfe09f29cfa13e54,0x3febc77f4f9c95e7,1
|
|
1145
|
+
np.float64,0xbfdf8c75653f18ea,0x3fec30ac924e4f46,1
|
|
1146
|
+
np.float64,0xbfefd601c7ffac04,0x3fe16d6f21bcb9c1,1
|
|
1147
|
+
np.float64,0xbfeae97ff5f5d300,0x3fe555bb5b87efe9,1
|
|
1148
|
+
np.float64,0xbfed427f02fa84fe,0x3fe387830db093bc,1
|
|
1149
|
+
np.float64,0xbfa33909cc267210,0x3feffa3a1bcb50dd,1
|
|
1150
|
+
np.float64,0xbfe9aa4bf5f35498,0x3fe63f6e98f6aa0f,1
|
|
1151
|
+
np.float64,0xbfe2d7349b25ae69,0x3fea9caa7c331e7e,1
|
|
1152
|
+
np.float64,0xbfcdbb2a3a3b7654,0x3fef2401c9659e4b,1
|
|
1153
|
+
np.float64,0xbfc8a90919315214,0x3fef686fe7fc0513,1
|
|
1154
|
+
np.float64,0xbfe62a98df2c5532,0x3fe89ff22a02cc6b,1
|
|
1155
|
+
np.float64,0xbfdc0f67b3b81ed0,0x3fecf928b637798f,1
|
|
1156
|
+
np.float64,0xbfebb32bf6f76658,0x3fe4bdc893c09698,1
|
|
1157
|
+
np.float64,0xbfec067996380cf3,0x3fe47e132741db97,1
|
|
1158
|
+
np.float64,0xbfd9774e1d32ee9c,0x3fed7ffe1e87c434,1
|
|
1159
|
+
np.float64,0xbfef989890bf3131,0x3fe1a0d025c80cf4,1
|
|
1160
|
+
np.float64,0xbfe59887e62b3110,0x3fe8fc382a3d4197,1
|
|
1161
|
+
np.float64,0xbfdea0a11e3d4142,0x3fec67b987e236ec,1
|
|
1162
|
+
np.float64,0xbfe2ec495825d892,0x3fea90efb231602d,1
|
|
1163
|
+
np.float64,0xbfb329c5c2265388,0x3fefe90f1b8209c3,1
|
|
1164
|
+
np.float64,0xbfdcd2dcd339a5ba,0x3feccf24c60b1478,1
|
|
1165
|
+
np.float64,0xbfe537ea18aa6fd4,0x3fe938237e217fe0,1
|
|
1166
|
+
np.float64,0xbfe8675ce170ceba,0x3fe723105925ce3a,1
|
|
1167
|
+
np.float64,0xbfd70723acae0e48,0x3fedf369ac070e65,1
|
|
1168
|
+
np.float64,0xbfea9d8692b53b0d,0x3fe58e1ee42e3fdb,1
|
|
1169
|
+
np.float64,0xbfcfeb96653fd72c,0x3fef029770033bdc,1
|
|
1170
|
+
np.float64,0xbfcc06c92d380d94,0x3fef3c69797d9b0a,1
|
|
1171
|
+
np.float64,0xbfe16b7c4f62d6f8,0x3feb5fdf9f0a9a07,1
|
|
1172
|
+
np.float64,0xbfed4d7a473a9af4,0x3fe37ecee27b1eb7,1
|
|
1173
|
+
np.float64,0xbfe6a6f6942d4ded,0x3fe84fccdf762b19,1
|
|
1174
|
+
np.float64,0xbfda46d867348db0,0x3fed572d928fa657,1
|
|
1175
|
+
np.float64,0xbfdbd9482db7b290,0x3fed049b5f907b52,1
|
|
1176
|
+
np.float64,0x7fe992ceb933259c,0xbfeb15af92aad70e,1
|
|
1177
|
+
np.float64,0x7fe3069204a60d23,0xbfe5eeff454240e9,1
|
|
1178
|
+
np.float64,0x7fe729dbf32e53b7,0xbfefe0528a330e4c,1
|
|
1179
|
+
np.float64,0x7fec504fb638a09e,0x3fd288e95dbedf65,1
|
|
1180
|
+
np.float64,0x7fe1d30167a3a602,0xbfeffc41f946fd02,1
|
|
1181
|
+
np.float64,0x7fed7f8ffd3aff1f,0x3fefe68ec604a19d,1
|
|
1182
|
+
np.float64,0x7fd2f23635a5e46b,0x3fea63032efbb447,1
|
|
1183
|
+
np.float64,0x7fd4c86db1a990da,0x3fdf6b9f7888db5d,1
|
|
1184
|
+
np.float64,0x7fe7554db6eeaa9a,0x3fe1b41476861bb0,1
|
|
1185
|
+
np.float64,0x7fe34e823ba69d03,0x3fefc435532e6294,1
|
|
1186
|
+
np.float64,0x7fec5c82fef8b905,0x3fef8f0c6473034f,1
|
|
1187
|
+
np.float64,0x7feba221bff74442,0xbfea95b81eb19b47,1
|
|
1188
|
+
np.float64,0x7fe74808a5ae9010,0xbfd3aa322917c3e5,1
|
|
1189
|
+
np.float64,0x7fdf41b7e0be836f,0x3fd14283c7147282,1
|
|
1190
|
+
np.float64,0x7fec09892f381311,0x3fe5240376ae484b,1
|
|
1191
|
+
np.float64,0x7faaf80bf435f017,0x3fe20227fa811423,1
|
|
1192
|
+
np.float64,0x7f8422d8402845b0,0x3fe911714593b8a0,1
|
|
1193
|
+
np.float64,0x7fd23a7fada474fe,0x3feff9f40aa37e9c,1
|
|
1194
|
+
np.float64,0x7fef4a4806fe948f,0x3fec6eca89cb4a62,1
|
|
1195
|
+
np.float64,0x7fe1e71cf763ce39,0xbfea6ac63f9ba457,1
|
|
1196
|
+
np.float64,0x7fe3e555be27caaa,0xbfe75b305d0dbbfd,1
|
|
1197
|
+
np.float64,0x7fcb8bac96371758,0xbfe8b126077f9d4c,1
|
|
1198
|
+
np.float64,0x7fc98e2c84331c58,0x3fef9092eb0bc85a,1
|
|
1199
|
+
np.float64,0x7fe947cf2b728f9d,0xbfebfff2c5b7d198,1
|
|
1200
|
+
np.float64,0x7feee8058c3dd00a,0xbfef21ebaae2eb17,1
|
|
1201
|
+
np.float64,0x7fef61d8d5bec3b1,0xbfdf1a032fb1c864,1
|
|
1202
|
+
np.float64,0x7fcf714b6f3ee296,0x3fe6fc89a8084098,1
|
|
1203
|
+
np.float64,0x7fa9a8b44c335168,0xbfeb16c149cea943,1
|
|
1204
|
+
np.float64,0x7fd175c482a2eb88,0xbfef64d341e73f88,1
|
|
1205
|
+
np.float64,0x7feab8e6a87571cc,0x3feb10069c397464,1
|
|
1206
|
+
np.float64,0x7fe3ade72de75bcd,0x3fd1753e333d5790,1
|
|
1207
|
+
np.float64,0x7fb26d87d224db0f,0xbfe753d36b18f4ca,1
|
|
1208
|
+
np.float64,0x7fdb7ef159b6fde2,0x3fe5c0a6044d3607,1
|
|
1209
|
+
np.float64,0x7fd5af86422b5f0c,0x3fe77193c95f6484,1
|
|
1210
|
+
np.float64,0x7fee9e00b07d3c00,0x3fe864d494596845,1
|
|
1211
|
+
np.float64,0x7fef927a147f24f3,0xbfe673b14715693d,1
|
|
1212
|
+
np.float64,0x7fd0aea63c215d4b,0xbfeff435f119fce9,1
|
|
1213
|
+
np.float64,0x7fd02e3796a05c6e,0x3fe4f7e3706e9a3d,1
|
|
1214
|
+
np.float64,0x7fd3ed61da27dac3,0xbfefef2f057f168c,1
|
|
1215
|
+
np.float64,0x7fefaca0d4ff5941,0x3fd3e8ad205cd4ab,1
|
|
1216
|
+
np.float64,0x7feb659e06f6cb3b,0x3fd64d803203e027,1
|
|
1217
|
+
np.float64,0x7fc94ccfaf32999e,0x3fee04922209369a,1
|
|
1218
|
+
np.float64,0x7feb4ec294f69d84,0xbfd102763a056c89,1
|
|
1219
|
+
np.float64,0x7fe2ada6ac655b4c,0x3fef4f6792aa6093,1
|
|
1220
|
+
np.float64,0x7fe5f40fdc2be81f,0xbfb4a6327186eee8,1
|
|
1221
|
+
np.float64,0x7fe7584bc3eeb097,0xbfd685b8ff94651d,1
|
|
1222
|
+
np.float64,0x7fe45d276be8ba4e,0x3fee53b13f7e442f,1
|
|
1223
|
+
np.float64,0x7fe6449b3d6c8935,0xbfe7e08bafa75251,1
|
|
1224
|
+
np.float64,0x7f8d62e6b03ac5cc,0x3fe73d30762f38fd,1
|
|
1225
|
+
np.float64,0x7fe3a76f72a74ede,0xbfeb48a28bc60968,1
|
|
1226
|
+
np.float64,0x7fd057706920aee0,0x3fdece8fa06f626c,1
|
|
1227
|
+
np.float64,0x7fe45ae158e8b5c2,0x3fe7a70f47b4d349,1
|
|
1228
|
+
np.float64,0x7fea8a5a983514b4,0x3fefb053d5f9ddd7,1
|
|
1229
|
+
np.float64,0x7fdd1e86ab3a3d0c,0x3fe3cded1b93816b,1
|
|
1230
|
+
np.float64,0x7fdb456108b68ac1,0xbfe37574c0b9bf8f,1
|
|
1231
|
+
np.float64,0x7fe972602432e4bf,0x3fef9a26e65ec01c,1
|
|
1232
|
+
np.float64,0x7fdbe2385637c470,0x3fed541df57969e1,1
|
|
1233
|
+
np.float64,0x7fe57f03602afe06,0x3fbd90f595cbbd94,1
|
|
1234
|
+
np.float64,0x7feb0ceb68f619d6,0xbfeae9cb8ee5261f,1
|
|
1235
|
+
np.float64,0x7fe6abfe6c6d57fc,0xbfef40a6edaca26f,1
|
|
1236
|
+
np.float64,0x7fe037ea08606fd3,0xbfda817d75858597,1
|
|
1237
|
+
np.float64,0x7fdd75a52dbaeb49,0x3feef2a0d91d6aa1,1
|
|
1238
|
+
np.float64,0x7fe8f9af66b1f35e,0xbfedfceef2a3bfc9,1
|
|
1239
|
+
np.float64,0x7fedf762b53beec4,0x3fd8b4f21ef69ee3,1
|
|
1240
|
+
np.float64,0x7fe99295b7f3252a,0x3feffc24d970383e,1
|
|
1241
|
+
np.float64,0x7fe797b0172f2f5f,0x3fee089aa56f7ce8,1
|
|
1242
|
+
np.float64,0x7fed89dcc97b13b9,0xbfcfa2bb0c3ea41f,1
|
|
1243
|
+
np.float64,0x7fae9e8d5c3d3d1a,0xbfe512ffe16c6b08,1
|
|
1244
|
+
np.float64,0x7fefaecbe27f5d97,0x3fbfc718a5e972f1,1
|
|
1245
|
+
np.float64,0x7fce0236d93c046d,0xbfa9b7cd790db256,1
|
|
1246
|
+
np.float64,0x7fa9689aac32d134,0x3feced501946628a,1
|
|
1247
|
+
np.float64,0x7feb1469e93628d3,0x3fef2a988e7673ed,1
|
|
1248
|
+
np.float64,0x7fdba78344b74f06,0xbfe092e78965b30c,1
|
|
1249
|
+
np.float64,0x7fece54c3fb9ca97,0x3fd3cfd184bed2e6,1
|
|
1250
|
+
np.float64,0x7fdb84212b370841,0xbfe25ebf2db6ee55,1
|
|
1251
|
+
np.float64,0x7fbe3e8bf23c7d17,0x3fe2ee72df573345,1
|
|
1252
|
+
np.float64,0x7fe43d9803687b2f,0xbfed2eff6a9e66a0,1
|
|
1253
|
+
np.float64,0x7fb0f9c00a21f37f,0x3feff70f3276fdb7,1
|
|
1254
|
+
np.float64,0x7fea0c6cbbb418d8,0xbfefa612494798b2,1
|
|
1255
|
+
np.float64,0x7fe4b3239e296646,0xbfe74dd959af8cdc,1
|
|
1256
|
+
np.float64,0x7fe5c6a773eb8d4e,0xbfd06944048f8d2b,1
|
|
1257
|
+
np.float64,0x7fb1c1278223824e,0xbfeb533a34655bde,1
|
|
1258
|
+
np.float64,0x7fd21c09ee243813,0xbfe921ccbc9255c3,1
|
|
1259
|
+
np.float64,0x7fe051020c20a203,0x3fbd519d700c1f2f,1
|
|
1260
|
+
np.float64,0x7fe0c76845e18ed0,0x3fefb9595191a31b,1
|
|
1261
|
+
np.float64,0x7fe6b0b57b6d616a,0xbf8c59a8ba5fcd9a,1
|
|
1262
|
+
np.float64,0x7fd386c460270d88,0x3fe8ffea5d1a5c46,1
|
|
1263
|
+
np.float64,0x7feeb884713d7108,0x3fee9b2247ef6c0d,1
|
|
1264
|
+
np.float64,0x7fd85f71b6b0bee2,0xbfefc30ec3e28f07,1
|
|
1265
|
+
np.float64,0x7fc341366426826c,0x3fd4234d35386d3b,1
|
|
1266
|
+
np.float64,0x7fe56482dd6ac905,0x3fe7189de6a50668,1
|
|
1267
|
+
np.float64,0x7fec67a2e3f8cf45,0xbfef86d0b940f37f,1
|
|
1268
|
+
np.float64,0x7fe38b202fe7163f,0x3feb90b75caa2030,1
|
|
1269
|
+
np.float64,0x7fdcbc64883978c8,0x3fed4f758fbf64d4,1
|
|
1270
|
+
np.float64,0x7fea5f0598f4be0a,0x3fdd503a417b3d4d,1
|
|
1271
|
+
np.float64,0x7fda3b6bcf3476d7,0x3fea6e9af3f7f9f5,1
|
|
1272
|
+
np.float64,0x7fc7d7896c2faf12,0x3fda2bebc36a2363,1
|
|
1273
|
+
np.float64,0x7fe7e8e2626fd1c4,0xbfe7d5e390c4cc3f,1
|
|
1274
|
+
np.float64,0x7fde0f3d7abc1e7a,0xbfede7a0ecfa3606,1
|
|
1275
|
+
np.float64,0x7fc692b8f52d2571,0x3feff0cd7ab6f61b,1
|
|
1276
|
+
np.float64,0xff92d1fce825a400,0xbfc921c36fc014fa,1
|
|
1277
|
+
np.float64,0xffdec3af2fbd875e,0xbfed6a77e6a0364e,1
|
|
1278
|
+
np.float64,0xffef46e7d9be8dcf,0xbfed7d39476f7e27,1
|
|
1279
|
+
np.float64,0xffe2c2ce4525859c,0x3fe1757261316bc9,1
|
|
1280
|
+
np.float64,0xffe27c8b5864f916,0xbfefe017c0d43457,1
|
|
1281
|
+
np.float64,0xffe184d7442309ae,0x3fa1fb8c49dba596,1
|
|
1282
|
+
np.float64,0xffddf5f98d3bebf4,0x3fee4f8eaa5f847e,1
|
|
1283
|
+
np.float64,0xffee3ef354fc7de6,0xbfebfd60fa51b2ba,1
|
|
1284
|
+
np.float64,0xffdecb3e85bd967e,0x3fbfad2667a8b468,1
|
|
1285
|
+
np.float64,0xffe4ee900b29dd20,0xbfdc02dc626f91cd,1
|
|
1286
|
+
np.float64,0xffd3179f6da62f3e,0xbfe2cfe442511776,1
|
|
1287
|
+
np.float64,0xffe99ef7cef33def,0x3f50994542a7f303,1
|
|
1288
|
+
np.float64,0xffe2b66b1ae56cd6,0xbfefe3e066eb6329,1
|
|
1289
|
+
np.float64,0xff8f72aff03ee540,0x3fe9c46224cf5003,1
|
|
1290
|
+
np.float64,0xffd29beb85a537d8,0x3fefcb0b6166be71,1
|
|
1291
|
+
np.float64,0xffaef02d4c3de060,0xbfef5fb71028fc72,1
|
|
1292
|
+
np.float64,0xffd39a2a89273456,0x3fe6d4b183205dca,1
|
|
1293
|
+
np.float64,0xffef8a9392ff1526,0x3fedb99fbf402468,1
|
|
1294
|
+
np.float64,0xffb9b3f31e3367e8,0x3fee1005270fcf80,1
|
|
1295
|
+
np.float64,0xffed9d5c693b3ab8,0x3fd110f4b02365d5,1
|
|
1296
|
+
np.float64,0xffeaba45f9f5748b,0x3fe499e0a6f4afb2,1
|
|
1297
|
+
np.float64,0xffdba3f70d3747ee,0xbfca0c30493ae519,1
|
|
1298
|
+
np.float64,0xffa35b985426b730,0xbfdb625df56bcf45,1
|
|
1299
|
+
np.float64,0xffccbc9728397930,0x3fc53cbc59020704,1
|
|
1300
|
+
np.float64,0xffef73c942bee792,0xbfdc647a7a5e08be,1
|
|
1301
|
+
np.float64,0xffcb5acfb236b5a0,0x3feeb4ec038c39fc,1
|
|
1302
|
+
np.float64,0xffea116fe2b422df,0x3fefe03b6ae0b435,1
|
|
1303
|
+
np.float64,0xffe97de6e7b2fbcd,0xbfd2025698fab9eb,1
|
|
1304
|
+
np.float64,0xffdddba314bbb746,0x3fd31f0fdb8f93be,1
|
|
1305
|
+
np.float64,0xffd613a24a2c2744,0xbfebbb1efae884b3,1
|
|
1306
|
+
np.float64,0xffe3d938aa67b271,0xbfc2099cead3d3be,1
|
|
1307
|
+
np.float64,0xffdf08c2e33e1186,0xbfefd236839b900d,1
|
|
1308
|
+
np.float64,0xffea6ba8bd34d751,0x3fe8dfc032114719,1
|
|
1309
|
+
np.float64,0xffe3202083e64040,0x3fed513b81432a22,1
|
|
1310
|
+
np.float64,0xffb2397db62472f8,0xbfee7d7fe1c3f76c,1
|
|
1311
|
+
np.float64,0xffd9d0682ab3a0d0,0x3fe0bcf9e531ad79,1
|
|
1312
|
+
np.float64,0xffc293df202527c0,0xbfe58d0bdece5e64,1
|
|
1313
|
+
np.float64,0xffe1422c7da28458,0xbf81bd72595f2341,1
|
|
1314
|
+
np.float64,0xffd64e4ed4ac9c9e,0x3fa4334cc011c703,1
|
|
1315
|
+
np.float64,0xffe40a970ae8152e,0x3fead3d258b55b7d,1
|
|
1316
|
+
np.float64,0xffc8c2f2223185e4,0xbfef685f07c8b9fd,1
|
|
1317
|
+
np.float64,0xffe4b2f7216965ee,0x3fe3861d3d896a83,1
|
|
1318
|
+
np.float64,0xffdb531db3b6a63c,0x3fe18cb8332dd59d,1
|
|
1319
|
+
np.float64,0xffe8e727a3b1ce4e,0xbfe57b15abb677b9,1
|
|
1320
|
+
np.float64,0xffe530c1e12a6184,0xbfb973ea5535e48f,1
|
|
1321
|
+
np.float64,0xffe6f7849cedef08,0x3fd39a37ec5af4b6,1
|
|
1322
|
+
np.float64,0xffead62a78b5ac54,0x3fe69b3f6c7aa24b,1
|
|
1323
|
+
np.float64,0xffeefdd725fdfbad,0xbfc08a456111fdd5,1
|
|
1324
|
+
np.float64,0xffe682182fed0430,0x3fecc7c1292761d2,1
|
|
1325
|
+
np.float64,0xffee0ca8dcbc1951,0x3fef6cc361ef2c19,1
|
|
1326
|
+
np.float64,0xffec9b338f393666,0x3fefa9ab8e0471b5,1
|
|
1327
|
+
np.float64,0xffe13c5e29a278bc,0xbfef8da74ad83398,1
|
|
1328
|
+
np.float64,0xffd7bd48c62f7a92,0x3fe3468cd4ac9d34,1
|
|
1329
|
+
np.float64,0xffedd0ed14bba1d9,0xbfd563a83477077b,1
|
|
1330
|
+
np.float64,0xffe86b83f3f0d707,0x3fe9eb3c658e4b2d,1
|
|
1331
|
+
np.float64,0xffd6a4db4bad49b6,0xbfc7e11276166e17,1
|
|
1332
|
+
np.float64,0xffc29e8404253d08,0x3fd35971961c789f,1
|
|
1333
|
+
np.float64,0xffe27cf3d664f9e7,0xbfeca0f73c72f810,1
|
|
1334
|
+
np.float64,0xffc34152352682a4,0x3fef384e564c002c,1
|
|
1335
|
+
np.float64,0xffe395728ba72ae4,0x3f8fe18c2de86eba,1
|
|
1336
|
+
np.float64,0xffed86c4fbbb0d89,0x3fef709db881c672,1
|
|
1337
|
+
np.float64,0xffe8a98d37f1531a,0x3fd4879c8f73c3dc,1
|
|
1338
|
+
np.float64,0xffb8ce9fea319d40,0xbfb853c8fe46b08d,1
|
|
1339
|
+
np.float64,0xffe7f26db8efe4db,0xbfec1cfd3e5c2ac1,1
|
|
1340
|
+
np.float64,0xffd7935b77af26b6,0x3fb7368c89b2a460,1
|
|
1341
|
+
np.float64,0xffc5840ed02b081c,0x3fd92220b56631f3,1
|
|
1342
|
+
np.float64,0xffc36a873926d510,0x3fa84d61baf61811,1
|
|
1343
|
+
np.float64,0xffe06ea583e0dd4a,0x3feb647e348b9e39,1
|
|
1344
|
+
np.float64,0xffe6a33031ed4660,0xbfe096b851dc1a0a,1
|
|
1345
|
+
np.float64,0xffe001c938e00392,0x3fe4eece77623e7a,1
|
|
1346
|
+
np.float64,0xffc1e4f23b23c9e4,0xbfdb9bb1f83f6ac4,1
|
|
1347
|
+
np.float64,0xffecd3ecbab9a7d9,0x3fbafb1f800f177d,1
|
|
1348
|
+
np.float64,0xffc2d3016825a604,0xbfef650e8b0d6afb,1
|
|
1349
|
+
np.float64,0xffe222cb68e44596,0x3fde3690e44de5bd,1
|
|
1350
|
+
np.float64,0xffe5bb145e2b7628,0x3fedbb98e23c9dc1,1
|
|
1351
|
+
np.float64,0xffe9e5823b73cb04,0xbfee41661016c03c,1
|
|
1352
|
+
np.float64,0xffd234a00ba46940,0x3fda0312cda580c2,1
|
|
1353
|
+
np.float64,0xffe0913ed6e1227d,0xbfed508bb529bd23,1
|
|
1354
|
+
np.float64,0xffe8e3596171c6b2,0xbfdc33e1c1d0310e,1
|
|
1355
|
+
np.float64,0xffef9c6835ff38cf,0x3fea8ce6d27dfba3,1
|
|
1356
|
+
np.float64,0xffdd3bcf66ba779e,0x3fe50523d2b6470e,1
|
|
1357
|
+
np.float64,0xffe57e8cf06afd1a,0xbfee600933347247,1
|
|
1358
|
+
np.float64,0xffe0d8c65fa1b18c,0x3fe75091f93d5e4c,1
|
|
1359
|
+
np.float64,0xffea7c8c16b4f918,0x3fee681724795198,1
|
|
1360
|
+
np.float64,0xffe34f7a05269ef4,0xbfe3c3e179676f13,1
|
|
1361
|
+
np.float64,0xffd28894a6a5112a,0xbfe5d1027aee615d,1
|
|
1362
|
+
np.float64,0xffc73be6f22e77cc,0x3fe469bbc08b472a,1
|
|
1363
|
+
np.float64,0xffe7f71b066fee36,0x3fe7ed136c8fdfaa,1
|
|
1364
|
+
np.float64,0xffebc13e29f7827c,0x3fefcdc6e677d314,1
|
|
1365
|
+
np.float64,0xffd53e9c942a7d3a,0x3fea5a02c7341749,1
|
|
1366
|
+
np.float64,0xffd7191b23ae3236,0x3fea419b66023443,1
|
|
1367
|
+
np.float64,0xffe9480325b29006,0xbfefeaff5fa38cd5,1
|
|
1368
|
+
np.float64,0xffba46dc0e348db8,0xbfefa54f4de28eba,1
|
|
1369
|
+
np.float64,0xffdd4cc31eba9986,0x3fe60bb41fe1c4da,1
|
|
1370
|
+
np.float64,0xffe13a70dea274e1,0xbfaa9192f7bd6c9b,1
|
|
1371
|
+
np.float64,0xffde25127bbc4a24,0x3f7c75f45e29be7d,1
|
|
1372
|
+
np.float64,0xffe4076543a80eca,0x3fea5aad50d2f687,1
|
|
1373
|
+
np.float64,0xffe61512acec2a25,0xbfefffeb67401649,1
|
|
1374
|
+
np.float64,0xffef812ec1ff025d,0xbfe919c7c073c766,1
|
|
1375
|
+
np.float64,0xffd5552aeaaaaa56,0x3fc89d38ab047396,1
|