numpy 2.3.5__cp313-cp313-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.
Potentially problematic release.
This version of numpy might be problematic. Click here for more details.
- numpy/__config__.py +170 -0
- numpy/__config__.pyi +102 -0
- numpy/__init__.cython-30.pxd +1241 -0
- numpy/__init__.pxd +1154 -0
- numpy/__init__.py +945 -0
- numpy/__init__.pyi +6147 -0
- numpy/_array_api_info.py +346 -0
- numpy/_array_api_info.pyi +207 -0
- numpy/_configtool.py +39 -0
- numpy/_configtool.pyi +1 -0
- numpy/_core/__init__.py +186 -0
- numpy/_core/__init__.pyi +2 -0
- numpy/_core/_add_newdocs.py +6967 -0
- numpy/_core/_add_newdocs.pyi +3 -0
- numpy/_core/_add_newdocs_scalars.py +390 -0
- numpy/_core/_add_newdocs_scalars.pyi +16 -0
- numpy/_core/_asarray.py +134 -0
- numpy/_core/_asarray.pyi +41 -0
- numpy/_core/_dtype.py +366 -0
- numpy/_core/_dtype.pyi +58 -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 +55 -0
- numpy/_core/_internal.py +958 -0
- numpy/_core/_internal.pyi +72 -0
- numpy/_core/_machar.py +355 -0
- numpy/_core/_machar.pyi +55 -0
- numpy/_core/_methods.py +255 -0
- numpy/_core/_methods.pyi +22 -0
- numpy/_core/_multiarray_tests.cpython-313-darwin.so +0 -0
- numpy/_core/_multiarray_umath.cpython-313-darwin.so +0 -0
- numpy/_core/_operand_flag_tests.cpython-313-darwin.so +0 -0
- numpy/_core/_rational_tests.cpython-313-darwin.so +0 -0
- numpy/_core/_simd.cpython-313-darwin.so +0 -0
- numpy/_core/_simd.pyi +25 -0
- numpy/_core/_string_helpers.py +100 -0
- numpy/_core/_string_helpers.pyi +12 -0
- numpy/_core/_struct_ufunc_tests.cpython-313-darwin.so +0 -0
- numpy/_core/_type_aliases.py +119 -0
- numpy/_core/_type_aliases.pyi +97 -0
- numpy/_core/_ufunc_config.py +491 -0
- numpy/_core/_ufunc_config.pyi +78 -0
- numpy/_core/_umath_tests.cpython-313-darwin.so +0 -0
- numpy/_core/arrayprint.py +1775 -0
- numpy/_core/arrayprint.pyi +238 -0
- numpy/_core/cversions.py +13 -0
- numpy/_core/defchararray.py +1427 -0
- numpy/_core/defchararray.pyi +1135 -0
- numpy/_core/einsumfunc.py +1498 -0
- numpy/_core/einsumfunc.pyi +184 -0
- numpy/_core/fromnumeric.py +4269 -0
- numpy/_core/fromnumeric.pyi +1750 -0
- numpy/_core/function_base.py +545 -0
- numpy/_core/function_base.pyi +278 -0
- numpy/_core/getlimits.py +748 -0
- numpy/_core/getlimits.pyi +3 -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 +54 -0
- numpy/_core/include/numpy/__ufunc_api.h +341 -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 +196 -0
- numpy/_core/include/numpy/dtype_api.h +480 -0
- numpy/_core/include/numpy/halffloat.h +70 -0
- numpy/_core/include/numpy/ndarrayobject.h +304 -0
- numpy/_core/include/numpy/ndarraytypes.h +1950 -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 +977 -0
- numpy/_core/include/numpy/npy_cpu.h +124 -0
- numpy/_core/include/numpy/npy_endian.h +78 -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 +182 -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 +1762 -0
- numpy/_core/multiarray.pyi +1285 -0
- numpy/_core/numeric.py +2760 -0
- numpy/_core/numeric.pyi +882 -0
- numpy/_core/numerictypes.py +633 -0
- numpy/_core/numerictypes.pyi +197 -0
- numpy/_core/overrides.py +183 -0
- numpy/_core/overrides.pyi +48 -0
- numpy/_core/printoptions.py +32 -0
- numpy/_core/printoptions.pyi +28 -0
- numpy/_core/records.py +1089 -0
- numpy/_core/records.pyi +333 -0
- numpy/_core/shape_base.py +998 -0
- numpy/_core/shape_base.pyi +175 -0
- numpy/_core/strings.py +1829 -0
- numpy/_core/strings.pyi +511 -0
- numpy/_core/tests/_locales.py +72 -0
- numpy/_core/tests/_natype.py +205 -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 +654 -0
- numpy/_core/tests/test_argparse.py +92 -0
- numpy/_core/tests/test_array_api_info.py +113 -0
- numpy/_core/tests/test_array_coercion.py +911 -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 +1328 -0
- numpy/_core/tests/test_casting_floatingpoint_errors.py +154 -0
- numpy/_core/tests/test_casting_unittests.py +817 -0
- numpy/_core/tests/test_conversion_utils.py +206 -0
- numpy/_core/tests/test_cpu_dispatcher.py +49 -0
- numpy/_core/tests/test_cpu_features.py +432 -0
- numpy/_core/tests/test_custom_dtypes.py +315 -0
- numpy/_core/tests/test_cython.py +351 -0
- numpy/_core/tests/test_datetime.py +2734 -0
- numpy/_core/tests/test_defchararray.py +825 -0
- numpy/_core/tests/test_deprecations.py +454 -0
- numpy/_core/tests/test_dlpack.py +190 -0
- numpy/_core/tests/test_dtype.py +1995 -0
- numpy/_core/tests/test_einsum.py +1317 -0
- numpy/_core/tests/test_errstate.py +131 -0
- numpy/_core/tests/test_extint128.py +217 -0
- numpy/_core/tests/test_function_base.py +503 -0
- numpy/_core/tests/test_getlimits.py +205 -0
- numpy/_core/tests/test_half.py +568 -0
- numpy/_core/tests/test_hashtable.py +35 -0
- numpy/_core/tests/test_indexerrors.py +125 -0
- numpy/_core/tests/test_indexing.py +1455 -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 +369 -0
- numpy/_core/tests/test_machar.py +30 -0
- numpy/_core/tests/test_mem_overlap.py +930 -0
- numpy/_core/tests/test_mem_policy.py +452 -0
- numpy/_core/tests/test_memmap.py +246 -0
- numpy/_core/tests/test_multiarray.py +10577 -0
- numpy/_core/tests/test_multithreading.py +292 -0
- numpy/_core/tests/test_nditer.py +3498 -0
- numpy/_core/tests/test_nep50_promotions.py +287 -0
- numpy/_core/tests/test_numeric.py +4247 -0
- numpy/_core/tests/test_numerictypes.py +651 -0
- numpy/_core/tests/test_overrides.py +791 -0
- numpy/_core/tests/test_print.py +200 -0
- numpy/_core/tests/test_protocols.py +46 -0
- numpy/_core/tests/test_records.py +544 -0
- numpy/_core/tests/test_regression.py +2670 -0
- numpy/_core/tests/test_scalar_ctors.py +207 -0
- numpy/_core/tests/test_scalar_methods.py +246 -0
- numpy/_core/tests/test_scalarbuffer.py +153 -0
- numpy/_core/tests/test_scalarinherit.py +105 -0
- numpy/_core/tests/test_scalarmath.py +1176 -0
- numpy/_core/tests/test_scalarprint.py +403 -0
- numpy/_core/tests/test_shape_base.py +891 -0
- numpy/_core/tests/test_simd.py +1341 -0
- numpy/_core/tests/test_simd_module.py +103 -0
- numpy/_core/tests/test_stringdtype.py +1814 -0
- numpy/_core/tests/test_strings.py +1499 -0
- numpy/_core/tests/test_ufunc.py +3313 -0
- numpy/_core/tests/test_umath.py +4928 -0
- numpy/_core/tests/test_umath_accuracy.py +124 -0
- numpy/_core/tests/test_umath_complex.py +626 -0
- numpy/_core/tests/test_unicode.py +368 -0
- numpy/_core/umath.py +60 -0
- numpy/_core/umath.pyi +197 -0
- numpy/_distributor_init.py +15 -0
- numpy/_distributor_init.pyi +1 -0
- numpy/_expired_attrs_2_0.py +79 -0
- numpy/_expired_attrs_2_0.pyi +62 -0
- numpy/_globals.py +96 -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 +13 -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 +148 -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 +40 -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 +941 -0
- numpy/_utils/__init__.py +95 -0
- numpy/_utils/__init__.pyi +30 -0
- numpy/_utils/_convertions.py +18 -0
- numpy/_utils/_convertions.pyi +4 -0
- numpy/_utils/_inspect.py +192 -0
- numpy/_utils/_inspect.pyi +71 -0
- numpy/_utils/_pep440.py +486 -0
- numpy/_utils/_pep440.pyi +121 -0
- numpy/char/__init__.py +2 -0
- numpy/char/__init__.pyi +111 -0
- numpy/conftest.py +258 -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 +33 -0
- numpy/ctypeslib/_ctypeslib.py +603 -0
- numpy/ctypeslib/_ctypeslib.pyi +245 -0
- numpy/doc/ufuncs.py +138 -0
- numpy/dtypes.py +41 -0
- numpy/dtypes.pyi +631 -0
- numpy/exceptions.py +247 -0
- numpy/exceptions.pyi +27 -0
- numpy/f2py/__init__.py +86 -0
- numpy/f2py/__init__.pyi +6 -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 +231 -0
- numpy/f2py/_backends/_meson.pyi +63 -0
- numpy/f2py/_backends/meson.build.template +55 -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 +29 -0
- numpy/f2py/auxfuncs.py +1004 -0
- numpy/f2py/auxfuncs.pyi +264 -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 +258 -0
- numpy/f2py/diagnose.py +149 -0
- numpy/f2py/diagnose.pyi +1 -0
- numpy/f2py/f2py2e.py +786 -0
- numpy/f2py/f2py2e.pyi +76 -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 +43 -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 +1516 -0
- numpy/f2py/symbolic.pyi +221 -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 +64 -0
- numpy/f2py/tests/test_f2cmap.py +17 -0
- numpy/f2py/tests/test_f2py2e.py +964 -0
- numpy/f2py/tests/test_isoc.py +56 -0
- numpy/f2py/tests/test_kind.py +53 -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 +495 -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 +215 -0
- numpy/fft/__init__.pyi +43 -0
- numpy/fft/_helper.py +235 -0
- numpy/fft/_helper.pyi +45 -0
- numpy/fft/_pocketfft.py +1693 -0
- numpy/fft/_pocketfft.pyi +138 -0
- numpy/fft/_pocketfft_umath.cpython-313-darwin.so +0 -0
- numpy/fft/helper.py +17 -0
- numpy/fft/helper.pyi +22 -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 +44 -0
- numpy/lib/_array_utils_impl.py +62 -0
- numpy/lib/_array_utils_impl.pyi +26 -0
- numpy/lib/_arraypad_impl.py +890 -0
- numpy/lib/_arraypad_impl.pyi +89 -0
- numpy/lib/_arraysetops_impl.py +1260 -0
- numpy/lib/_arraysetops_impl.pyi +468 -0
- numpy/lib/_arrayterator_impl.py +224 -0
- numpy/lib/_arrayterator_impl.pyi +46 -0
- numpy/lib/_datasource.py +700 -0
- numpy/lib/_datasource.pyi +31 -0
- numpy/lib/_format_impl.py +1036 -0
- numpy/lib/_format_impl.pyi +26 -0
- numpy/lib/_function_base_impl.py +5844 -0
- numpy/lib/_function_base_impl.pyi +1164 -0
- numpy/lib/_histograms_impl.py +1085 -0
- numpy/lib/_histograms_impl.pyi +50 -0
- numpy/lib/_index_tricks_impl.py +1067 -0
- numpy/lib/_index_tricks_impl.pyi +208 -0
- numpy/lib/_iotools.py +900 -0
- numpy/lib/_iotools.pyi +114 -0
- numpy/lib/_nanfunctions_impl.py +2024 -0
- numpy/lib/_nanfunctions_impl.pyi +52 -0
- numpy/lib/_npyio_impl.py +2596 -0
- numpy/lib/_npyio_impl.pyi +301 -0
- numpy/lib/_polynomial_impl.py +1465 -0
- numpy/lib/_polynomial_impl.pyi +318 -0
- numpy/lib/_scimath_impl.py +642 -0
- numpy/lib/_scimath_impl.pyi +93 -0
- numpy/lib/_shape_base_impl.py +1301 -0
- numpy/lib/_shape_base_impl.pyi +235 -0
- numpy/lib/_stride_tricks_impl.py +549 -0
- numpy/lib/_stride_tricks_impl.pyi +74 -0
- numpy/lib/_twodim_base_impl.py +1201 -0
- numpy/lib/_twodim_base_impl.pyi +438 -0
- numpy/lib/_type_check_impl.py +699 -0
- numpy/lib/_type_check_impl.pyi +350 -0
- numpy/lib/_ufunclike_impl.py +207 -0
- numpy/lib/_ufunclike_impl.pyi +67 -0
- numpy/lib/_user_array_impl.py +299 -0
- numpy/lib/_user_array_impl.pyi +225 -0
- numpy/lib/_utils_impl.py +784 -0
- numpy/lib/_utils_impl.pyi +10 -0
- numpy/lib/_version.py +154 -0
- numpy/lib/_version.pyi +17 -0
- numpy/lib/array_utils.py +7 -0
- numpy/lib/array_utils.pyi +12 -0
- numpy/lib/format.py +24 -0
- numpy/lib/format.pyi +66 -0
- numpy/lib/introspect.py +95 -0
- numpy/lib/introspect.pyi +3 -0
- numpy/lib/mixins.py +180 -0
- numpy/lib/mixins.pyi +77 -0
- numpy/lib/npyio.py +1 -0
- numpy/lib/npyio.pyi +9 -0
- numpy/lib/recfunctions.py +1681 -0
- numpy/lib/recfunctions.pyi +435 -0
- numpy/lib/scimath.py +13 -0
- numpy/lib/scimath.pyi +30 -0
- numpy/lib/stride_tricks.py +1 -0
- numpy/lib/stride_tricks.pyi +6 -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 +352 -0
- numpy/lib/tests/test__iotools.py +360 -0
- numpy/lib/tests/test__version.py +64 -0
- numpy/lib/tests/test_array_utils.py +32 -0
- numpy/lib/tests/test_arraypad.py +1415 -0
- numpy/lib/tests/test_arraysetops.py +1074 -0
- numpy/lib/tests/test_arrayterator.py +46 -0
- numpy/lib/tests/test_format.py +1054 -0
- numpy/lib/tests/test_function_base.py +4573 -0
- numpy/lib/tests/test_histograms.py +855 -0
- numpy/lib/tests/test_index_tricks.py +573 -0
- numpy/lib/tests/test_io.py +2848 -0
- numpy/lib/tests/test_loadtxt.py +1101 -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 +320 -0
- numpy/lib/tests/test_recfunctions.py +1052 -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 +656 -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 +98 -0
- numpy/linalg/__init__.pyi +73 -0
- numpy/linalg/_linalg.py +3682 -0
- numpy/linalg/_linalg.pyi +475 -0
- numpy/linalg/_umath_linalg.cpython-313-darwin.so +0 -0
- numpy/linalg/_umath_linalg.pyi +61 -0
- numpy/linalg/lapack_lite.cpython-313-darwin.so +0 -0
- numpy/linalg/lapack_lite.pyi +141 -0
- numpy/linalg/linalg.py +17 -0
- numpy/linalg/linalg.pyi +69 -0
- numpy/linalg/tests/__init__.py +0 -0
- numpy/linalg/tests/test_deprecations.py +20 -0
- numpy/linalg/tests/test_linalg.py +2443 -0
- numpy/linalg/tests/test_regression.py +181 -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 +8933 -0
- numpy/ma/core.pyi +1462 -0
- numpy/ma/extras.py +2344 -0
- numpy/ma/extras.pyi +138 -0
- numpy/ma/mrecords.py +773 -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 +5886 -0
- numpy/ma/tests/test_deprecations.py +87 -0
- numpy/ma/tests/test_extras.py +1998 -0
- numpy/ma/tests/test_mrecords.py +497 -0
- numpy/ma/tests/test_old_ma.py +942 -0
- numpy/ma/tests/test_regression.py +100 -0
- numpy/ma/tests/test_subclassing.py +469 -0
- numpy/ma/testutils.py +294 -0
- numpy/matlib.py +380 -0
- numpy/matlib.pyi +582 -0
- numpy/matrixlib/__init__.py +12 -0
- numpy/matrixlib/__init__.pyi +5 -0
- numpy/matrixlib/defmatrix.py +1119 -0
- numpy/matrixlib/defmatrix.pyi +17 -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 +105 -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 +25 -0
- numpy/polynomial/_polybase.py +1191 -0
- numpy/polynomial/_polybase.pyi +285 -0
- numpy/polynomial/_polytypes.pyi +892 -0
- numpy/polynomial/chebyshev.py +2003 -0
- numpy/polynomial/chebyshev.pyi +181 -0
- numpy/polynomial/hermite.py +1740 -0
- numpy/polynomial/hermite.pyi +107 -0
- numpy/polynomial/hermite_e.py +1642 -0
- numpy/polynomial/hermite_e.pyi +107 -0
- numpy/polynomial/laguerre.py +1675 -0
- numpy/polynomial/laguerre.pyi +100 -0
- numpy/polynomial/legendre.py +1605 -0
- numpy/polynomial/legendre.pyi +100 -0
- numpy/polynomial/polynomial.py +1616 -0
- numpy/polynomial/polynomial.pyi +89 -0
- numpy/polynomial/polyutils.py +759 -0
- numpy/polynomial/polyutils.pyi +423 -0
- numpy/polynomial/tests/__init__.py +0 -0
- numpy/polynomial/tests/test_chebyshev.py +623 -0
- numpy/polynomial/tests/test_classes.py +618 -0
- numpy/polynomial/tests/test_hermite.py +558 -0
- numpy/polynomial/tests/test_hermite_e.py +559 -0
- numpy/polynomial/tests/test_laguerre.py +540 -0
- numpy/polynomial/tests/test_legendre.py +571 -0
- numpy/polynomial/tests/test_polynomial.py +669 -0
- numpy/polynomial/tests/test_polyutils.py +128 -0
- numpy/polynomial/tests/test_printing.py +555 -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.cpython-313-darwin.so +0 -0
- numpy/random/_bounded_integers.pxd +29 -0
- numpy/random/_bounded_integers.pyi +1 -0
- numpy/random/_common.cpython-313-darwin.so +0 -0
- numpy/random/_common.pxd +107 -0
- numpy/random/_common.pyi +16 -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 +118 -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.cpython-313-darwin.so +0 -0
- numpy/random/_generator.pyi +861 -0
- numpy/random/_mt19937.cpython-313-darwin.so +0 -0
- numpy/random/_mt19937.pyi +25 -0
- numpy/random/_pcg64.cpython-313-darwin.so +0 -0
- numpy/random/_pcg64.pyi +44 -0
- numpy/random/_philox.cpython-313-darwin.so +0 -0
- numpy/random/_philox.pyi +39 -0
- numpy/random/_pickle.py +88 -0
- numpy/random/_pickle.pyi +43 -0
- numpy/random/_sfc64.cpython-313-darwin.so +0 -0
- numpy/random/_sfc64.pyi +28 -0
- numpy/random/bit_generator.cpython-313-darwin.so +0 -0
- numpy/random/bit_generator.pxd +35 -0
- numpy/random/bit_generator.pyi +124 -0
- numpy/random/c_distributions.pxd +119 -0
- numpy/random/lib/libnpyrandom.a +0 -0
- numpy/random/mtrand.cpython-313-darwin.so +0 -0
- numpy/random/mtrand.pyi +703 -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 +592 -0
- numpy/random/tests/test_extending.py +127 -0
- numpy/random/tests/test_generator_mt19937.py +2809 -0
- numpy/random/tests/test_generator_mt19937_regressions.py +207 -0
- numpy/random/tests/test_random.py +1757 -0
- numpy/random/tests/test_randomstate.py +2130 -0
- numpy/random/tests/test_randomstate_regression.py +217 -0
- numpy/random/tests/test_regression.py +152 -0
- numpy/random/tests/test_seed_sequence.py +79 -0
- numpy/random/tests/test_smoke.py +819 -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 +102 -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 +2752 -0
- numpy/testing/_private/utils.pyi +499 -0
- numpy/testing/overrides.py +84 -0
- numpy/testing/overrides.pyi +11 -0
- numpy/testing/print_coercion_tables.py +207 -0
- numpy/testing/print_coercion_tables.pyi +27 -0
- numpy/testing/tests/__init__.py +0 -0
- numpy/testing/tests/test_utils.py +1917 -0
- numpy/tests/__init__.py +0 -0
- numpy/tests/test__all__.py +10 -0
- numpy/tests/test_configtool.py +48 -0
- numpy/tests/test_ctypeslib.py +377 -0
- numpy/tests/test_lazyloading.py +38 -0
- numpy/tests/test_matlib.py +59 -0
- numpy/tests/test_numpy_config.py +46 -0
- numpy/tests/test_numpy_version.py +54 -0
- numpy/tests/test_public_api.py +806 -0
- numpy/tests/test_reloading.py +74 -0
- numpy/tests/test_scripts.py +49 -0
- numpy/tests/test_warnings.py +78 -0
- numpy/typing/__init__.py +201 -0
- numpy/typing/mypy_plugin.py +195 -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 +16 -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 +65 -0
- numpy/typing/tests/data/fail/chararray.pyi +62 -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 +15 -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 +20 -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 +62 -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 +48 -0
- numpy/typing/tests/data/fail/ma.pyi +143 -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 +36 -0
- numpy/typing/tests/data/fail/nditer.pyi +8 -0
- numpy/typing/tests/data/fail/nested_sequence.pyi +16 -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 +87 -0
- numpy/typing/tests/data/fail/shape.pyi +6 -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 +32 -0
- numpy/typing/tests/data/fail/type_check.pyi +13 -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 +9 -0
- numpy/typing/tests/data/pass/arithmetic.py +612 -0
- numpy/typing/tests/data/pass/array_constructors.py +137 -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 +27 -0
- numpy/typing/tests/data/pass/bitwise_ops.py +131 -0
- numpy/typing/tests/data/pass/comparisons.py +315 -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 +19 -0
- numpy/typing/tests/data/pass/fromnumeric.py +272 -0
- numpy/typing/tests/data/pass/index_tricks.py +60 -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 +51 -0
- numpy/typing/tests/data/pass/ma.py +174 -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 +76 -0
- numpy/typing/tests/data/pass/ndarray_conversion.py +87 -0
- numpy/typing/tests/data/pass/ndarray_misc.py +203 -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 +95 -0
- numpy/typing/tests/data/pass/numerictypes.py +17 -0
- numpy/typing/tests/data/pass/random.py +1497 -0
- numpy/typing/tests/data/pass/recfunctions.py +161 -0
- numpy/typing/tests/data/pass/scalars.py +248 -0
- numpy/typing/tests/data/pass/shape.py +19 -0
- numpy/typing/tests/data/pass/simple.py +168 -0
- numpy/typing/tests/data/pass/simple_py3.py +6 -0
- numpy/typing/tests/data/pass/ufunc_config.py +64 -0
- numpy/typing/tests/data/pass/ufunclike.py +47 -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 +720 -0
- numpy/typing/tests/data/reveal/array_api_info.pyi +70 -0
- numpy/typing/tests/data/reveal/array_constructors.pyi +249 -0
- numpy/typing/tests/data/reveal/arraypad.pyi +22 -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 +167 -0
- numpy/typing/tests/data/reveal/char.pyi +224 -0
- numpy/typing/tests/data/reveal/chararray.pyi +137 -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 +136 -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 +47 -0
- numpy/typing/tests/data/reveal/fromnumeric.pyi +347 -0
- numpy/typing/tests/data/reveal/getlimits.pyi +51 -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 +213 -0
- numpy/typing/tests/data/reveal/lib_polynomial.pyi +144 -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 +132 -0
- numpy/typing/tests/data/reveal/ma.pyi +369 -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 +179 -0
- numpy/typing/tests/data/reveal/modules.pyi +51 -0
- numpy/typing/tests/data/reveal/multiarray.pyi +194 -0
- numpy/typing/tests/data/reveal/nbit_base_example.pyi +21 -0
- numpy/typing/tests/data/reveal/ndarray_assignability.pyi +77 -0
- numpy/typing/tests/data/reveal/ndarray_conversion.pyi +85 -0
- numpy/typing/tests/data/reveal/ndarray_misc.pyi +247 -0
- numpy/typing/tests/data/reveal/ndarray_shape_manipulation.pyi +39 -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 +134 -0
- numpy/typing/tests/data/reveal/numerictypes.pyi +16 -0
- numpy/typing/tests/data/reveal/polynomial_polybase.pyi +220 -0
- numpy/typing/tests/data/reveal/polynomial_polyutils.pyi +219 -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 +145 -0
- numpy/typing/tests/data/reveal/type_check.pyi +67 -0
- numpy/typing/tests/data/reveal/ufunc_config.pyi +30 -0
- numpy/typing/tests/data/reveal/ufunclike.pyi +31 -0
- numpy/typing/tests/data/reveal/ufuncs.pyi +123 -0
- numpy/typing/tests/data/reveal/warnings_and_errors.pyi +11 -0
- numpy/typing/tests/test_isfile.py +32 -0
- numpy/typing/tests/test_runtime.py +102 -0
- numpy/typing/tests/test_typing.py +205 -0
- numpy/version.py +11 -0
- numpy/version.pyi +18 -0
- numpy-2.3.5.dist-info/LICENSE.txt +971 -0
- numpy-2.3.5.dist-info/METADATA +1093 -0
- numpy-2.3.5.dist-info/RECORD +897 -0
- numpy-2.3.5.dist-info/WHEEL +6 -0
- numpy-2.3.5.dist-info/entry_points.txt +13 -0
|
@@ -0,0 +1,1629 @@
|
|
|
1
|
+
dtype,input,output,ulperrortol
|
|
2
|
+
np.float32,0x80000000,0xff800000,3
|
|
3
|
+
np.float32,0x7f12870a,0x42fe63db,3
|
|
4
|
+
np.float32,0x3ef29cf5,0xbf89eb12,3
|
|
5
|
+
np.float32,0x3d6ba8fb,0xc083d26c,3
|
|
6
|
+
np.float32,0x3d9907e8,0xc06f8230,3
|
|
7
|
+
np.float32,0x4ee592,0xc2fd656e,3
|
|
8
|
+
np.float32,0x58d8b1,0xc2fd0db3,3
|
|
9
|
+
np.float32,0x7ba103,0xc2fc19aa,3
|
|
10
|
+
np.float32,0x7f52e90e,0x42ff70e4,3
|
|
11
|
+
np.float32,0x7fcb15,0xc2fc0132,3
|
|
12
|
+
np.float32,0x7cb7129f,0x42f50855,3
|
|
13
|
+
np.float32,0x9faba,0xc301ae59,3
|
|
14
|
+
np.float32,0x7f300a,0xc2fc04b4,3
|
|
15
|
+
np.float32,0x3f0bf047,0xbf5f10cb,3
|
|
16
|
+
np.float32,0x2fb1fb,0xc2fed934,3
|
|
17
|
+
np.float32,0x3eedb0d1,0xbf8db417,3
|
|
18
|
+
np.float32,0x3d7a0b40,0xc0811638,3
|
|
19
|
+
np.float32,0x2e0bac,0xc2fef334,3
|
|
20
|
+
np.float32,0x6278c1,0xc2fcc1b9,3
|
|
21
|
+
np.float32,0x7f61ab2e,0x42ffa2d9,3
|
|
22
|
+
np.float32,0x8fe7c,0xc301d4be,3
|
|
23
|
+
np.float32,0x3f25e6ee,0xbf203536,3
|
|
24
|
+
np.float32,0x7efc78f0,0x42fdf5c0,3
|
|
25
|
+
np.float32,0x6d7304,0xc2fc73a7,3
|
|
26
|
+
np.float32,0x7f1a472a,0x42fe89ed,3
|
|
27
|
+
np.float32,0x7dd029a6,0x42f96734,3
|
|
28
|
+
np.float32,0x3e9b9327,0xbfdbf8f7,3
|
|
29
|
+
np.float32,0x3f4eefc1,0xbe9d2942,3
|
|
30
|
+
np.float32,0x7f5b9b64,0x42ff8ebc,3
|
|
31
|
+
np.float32,0x3e458ee1,0xc017ed6e,3
|
|
32
|
+
np.float32,0x3f7b766b,0xbcd35acf,3
|
|
33
|
+
np.float32,0x3e616070,0xc00bc378,3
|
|
34
|
+
np.float32,0x7f20e633,0x42fea8f8,3
|
|
35
|
+
np.float32,0x3ee3b461,0xbf95a126,3
|
|
36
|
+
np.float32,0x7e7722ba,0x42fbe5f8,3
|
|
37
|
+
np.float32,0x3f0873d7,0xbf6861fa,3
|
|
38
|
+
np.float32,0x7b4cb2,0xc2fc1ba3,3
|
|
39
|
+
np.float32,0x3f0b6b02,0xbf60712e,3
|
|
40
|
+
np.float32,0x9bff4,0xc301b6f2,3
|
|
41
|
+
np.float32,0x3f07be25,0xbf6a4f0c,3
|
|
42
|
+
np.float32,0x3ef10e57,0xbf8b1b75,3
|
|
43
|
+
np.float32,0x46ad75,0xc2fdb6b1,3
|
|
44
|
+
np.float32,0x3f7bc542,0xbcc4e3a9,3
|
|
45
|
+
np.float32,0x3f6673d4,0xbe1b509c,3
|
|
46
|
+
np.float32,0x7f19fe59,0x42fe8890,3
|
|
47
|
+
np.float32,0x7f800000,0x7f800000,3
|
|
48
|
+
np.float32,0x7f2fe696,0x42feead0,3
|
|
49
|
+
np.float32,0x3dc9432d,0xc0563655,3
|
|
50
|
+
np.float32,0x3ee47623,0xbf950446,3
|
|
51
|
+
np.float32,0x3f1f8817,0xbf2eab51,3
|
|
52
|
+
np.float32,0x7f220ec5,0x42feae44,3
|
|
53
|
+
np.float32,0x2325e3,0xc2ffbab1,3
|
|
54
|
+
np.float32,0x29dfc8,0xc2ff395a,3
|
|
55
|
+
np.float32,0x7f524950,0x42ff6eb3,3
|
|
56
|
+
np.float32,0x3e2234e0,0xc02a21c8,3
|
|
57
|
+
np.float32,0x7f1c6f5a,0x42fe942f,3
|
|
58
|
+
np.float32,0x3b6a61,0xc2fe36e7,3
|
|
59
|
+
np.float32,0x3f1df90e,0xbf324ba9,3
|
|
60
|
+
np.float32,0xb57f0,0xc3017f07,3
|
|
61
|
+
np.float32,0x7d0eba,0xc2fc112e,3
|
|
62
|
+
np.float32,0x403aa9,0xc2fdfd5c,3
|
|
63
|
+
np.float32,0x3e74ecc7,0xc004155f,3
|
|
64
|
+
np.float32,0x17509c,0xc30074f2,3
|
|
65
|
+
np.float32,0x7f62196b,0x42ffa442,3
|
|
66
|
+
np.float32,0x3ecef9a9,0xbfa7417a,3
|
|
67
|
+
np.float32,0x7f14b158,0x42fe6eb1,3
|
|
68
|
+
np.float32,0x3ede12be,0xbf9a40fe,3
|
|
69
|
+
np.float32,0x42cfaa,0xc2fde03f,3
|
|
70
|
+
np.float32,0x3f407b0f,0xbed2a6f5,3
|
|
71
|
+
np.float32,0x7f7fffff,0x43000000,3
|
|
72
|
+
np.float32,0x5467c6,0xc2fd3394,3
|
|
73
|
+
np.float32,0x7ea6b80f,0x42fcc336,3
|
|
74
|
+
np.float32,0x3f21e7b2,0xbf293704,3
|
|
75
|
+
np.float32,0x3dc7e9eb,0xc056d542,3
|
|
76
|
+
np.float32,0x7f3e6e67,0x42ff2571,3
|
|
77
|
+
np.float32,0x3e3e809d,0xc01b4911,3
|
|
78
|
+
np.float32,0x3f800000,0x0,3
|
|
79
|
+
np.float32,0x3d8fd238,0xc0753d52,3
|
|
80
|
+
np.float32,0x3f74aa65,0xbd85cd0e,3
|
|
81
|
+
np.float32,0x7ec30305,0x42fd36ff,3
|
|
82
|
+
np.float32,0x3e97bb93,0xbfe0971d,3
|
|
83
|
+
np.float32,0x3e109d9c,0xc034bb1b,3
|
|
84
|
+
np.float32,0x3f4a0b67,0xbeaed537,3
|
|
85
|
+
np.float32,0x3f25a7aa,0xbf20c228,3
|
|
86
|
+
np.float32,0x3ebc05eb,0xbfb8fd6b,3
|
|
87
|
+
np.float32,0x3eebe749,0xbf8f18e5,3
|
|
88
|
+
np.float32,0x3e9dc479,0xbfd96356,3
|
|
89
|
+
np.float32,0x7f245200,0x42feb882,3
|
|
90
|
+
np.float32,0x1573a8,0xc30093b5,3
|
|
91
|
+
np.float32,0x3e66c4b9,0xc00994a6,3
|
|
92
|
+
np.float32,0x3e73bffc,0xc0048709,3
|
|
93
|
+
np.float32,0x3dfef8e5,0xc0405f16,3
|
|
94
|
+
np.float32,0x403750,0xc2fdfd83,3
|
|
95
|
+
np.float32,0x3ebedf17,0xbfb636a4,3
|
|
96
|
+
np.float32,0x15cae6,0xc3008de2,3
|
|
97
|
+
np.float32,0x3edf4d4e,0xbf993c24,3
|
|
98
|
+
np.float32,0x3f7cc41e,0xbc963fb3,3
|
|
99
|
+
np.float32,0x3e9e12a4,0xbfd907ee,3
|
|
100
|
+
np.float32,0x7ded7b59,0x42f9c889,3
|
|
101
|
+
np.float32,0x7f034878,0x42fe12b5,3
|
|
102
|
+
np.float32,0x7ddce43f,0x42f9930b,3
|
|
103
|
+
np.float32,0x3d82b257,0xc07e1333,3
|
|
104
|
+
np.float32,0x3dae89c1,0xc0635dd4,3
|
|
105
|
+
np.float32,0x6b1d00,0xc2fc8396,3
|
|
106
|
+
np.float32,0x449a5a,0xc2fdccb3,3
|
|
107
|
+
np.float32,0x4e89d2,0xc2fd68cb,3
|
|
108
|
+
np.float32,0x7e1ae83f,0x42fa8cef,3
|
|
109
|
+
np.float32,0x7e4bb22c,0x42fb572e,3
|
|
110
|
+
np.float32,0x3de308ea,0xc04b1634,3
|
|
111
|
+
np.float32,0x7f238c7a,0x42feb508,3
|
|
112
|
+
np.float32,0x3f6c62a3,0xbdeb86f3,3
|
|
113
|
+
np.float32,0x3e58cba6,0xc00f5908,3
|
|
114
|
+
np.float32,0x7f7dd91f,0x42fff9c4,3
|
|
115
|
+
np.float32,0x3d989376,0xc06fc88d,3
|
|
116
|
+
np.float32,0x3dd013c5,0xc0532339,3
|
|
117
|
+
np.float32,0x4b17e6,0xc2fd89ed,3
|
|
118
|
+
np.float32,0x7f67f287,0x42ffb71e,3
|
|
119
|
+
np.float32,0x3f69365e,0xbe09ba3c,3
|
|
120
|
+
np.float32,0x3e4b8b21,0xc0152bf1,3
|
|
121
|
+
np.float32,0x3a75b,0xc3032171,3
|
|
122
|
+
np.float32,0x7f303676,0x42feec1f,3
|
|
123
|
+
np.float32,0x7f6570e5,0x42ffaf18,3
|
|
124
|
+
np.float32,0x3f5ed61e,0xbe4cf676,3
|
|
125
|
+
np.float32,0x3e9b22f9,0xbfdc7e4f,3
|
|
126
|
+
np.float32,0x2c095e,0xc2ff1428,3
|
|
127
|
+
np.float32,0x3f1b17c1,0xbf391754,3
|
|
128
|
+
np.float32,0x422dc6,0xc2fde746,3
|
|
129
|
+
np.float32,0x3f677c8d,0xbe14b365,3
|
|
130
|
+
np.float32,0x3ef85d0c,0xbf8597a9,3
|
|
131
|
+
np.float32,0x3ecaaa6b,0xbfab2430,3
|
|
132
|
+
np.float32,0x3f0607d1,0xbf6eff3d,3
|
|
133
|
+
np.float32,0x3f011fdb,0xbf7cc50d,3
|
|
134
|
+
np.float32,0x6ed7c1,0xc2fc6a4e,3
|
|
135
|
+
np.float32,0x7ec2d1a2,0x42fd3644,3
|
|
136
|
+
np.float32,0x3f75b7fe,0xbd7238a2,3
|
|
137
|
+
np.float32,0x3ef2d146,0xbf89c344,3
|
|
138
|
+
np.float32,0x7ec2cd27,0x42fd3633,3
|
|
139
|
+
np.float32,0x7ee1e55a,0x42fda397,3
|
|
140
|
+
np.float32,0x7f464d6a,0x42ff435c,3
|
|
141
|
+
np.float32,0x7f469a93,0x42ff447b,3
|
|
142
|
+
np.float32,0x7ece752f,0x42fd6121,3
|
|
143
|
+
np.float32,0x2ed878,0xc2fee67b,3
|
|
144
|
+
np.float32,0x75b23,0xc3021eff,3
|
|
145
|
+
np.float32,0x3e0f4be4,0xc03593b8,3
|
|
146
|
+
np.float32,0x2778e1,0xc2ff64fc,3
|
|
147
|
+
np.float32,0x5fe2b7,0xc2fcd561,3
|
|
148
|
+
np.float32,0x19b8a9,0xc30050ab,3
|
|
149
|
+
np.float32,0x7df303e5,0x42f9d98d,3
|
|
150
|
+
np.float32,0x608b8d,0xc2fcd051,3
|
|
151
|
+
np.float32,0x588f46,0xc2fd1017,3
|
|
152
|
+
np.float32,0x3eec6a11,0xbf8eb2a1,3
|
|
153
|
+
np.float32,0x3f714121,0xbdaf4906,3
|
|
154
|
+
np.float32,0x7f4f7b9e,0x42ff64c9,3
|
|
155
|
+
np.float32,0x3c271606,0xc0d3b29c,3
|
|
156
|
+
np.float32,0x3f002fe0,0xbf7f75f6,3
|
|
157
|
+
np.float32,0x7efa4798,0x42fdef4f,3
|
|
158
|
+
np.float32,0x3f61a865,0xbe3a601a,3
|
|
159
|
+
np.float32,0x7e8087aa,0x42fc030d,3
|
|
160
|
+
np.float32,0x3f70f0c7,0xbdb321ba,3
|
|
161
|
+
np.float32,0x5db898,0xc2fce63f,3
|
|
162
|
+
np.float32,0x7a965f,0xc2fc1fea,3
|
|
163
|
+
np.float32,0x7f68b112,0x42ffb97c,3
|
|
164
|
+
np.float32,0x7ef0ed3d,0x42fdd32d,3
|
|
165
|
+
np.float32,0x7f3156a1,0x42fef0d3,3
|
|
166
|
+
np.float32,0x3f1d405f,0xbf33fc6e,3
|
|
167
|
+
np.float32,0x3e3494cf,0xc0203945,3
|
|
168
|
+
np.float32,0x6018de,0xc2fcd3c1,3
|
|
169
|
+
np.float32,0x623e49,0xc2fcc370,3
|
|
170
|
+
np.float32,0x3ea29f0f,0xbfd3cad4,3
|
|
171
|
+
np.float32,0xa514,0xc305a20c,3
|
|
172
|
+
np.float32,0x3e1b2ab1,0xc02e3a8f,3
|
|
173
|
+
np.float32,0x3f450b6f,0xbec1578f,3
|
|
174
|
+
np.float32,0x7eb12908,0x42fcf015,3
|
|
175
|
+
np.float32,0x3f10b720,0xbf52ab48,3
|
|
176
|
+
np.float32,0x3e0a93,0xc2fe16f6,3
|
|
177
|
+
np.float32,0x93845,0xc301cb96,3
|
|
178
|
+
np.float32,0x7f4e9ce3,0x42ff61af,3
|
|
179
|
+
np.float32,0x3f6d4296,0xbde09ceb,3
|
|
180
|
+
np.float32,0x6ddede,0xc2fc70d0,3
|
|
181
|
+
np.float32,0x3f4fb6fd,0xbe9a636d,3
|
|
182
|
+
np.float32,0x3f6d08de,0xbde36c0b,3
|
|
183
|
+
np.float32,0x3f56f057,0xbe8122ad,3
|
|
184
|
+
np.float32,0x334e95,0xc2fea349,3
|
|
185
|
+
np.float32,0x7efadbcd,0x42fdf104,3
|
|
186
|
+
np.float32,0x3db02e88,0xc0628046,3
|
|
187
|
+
np.float32,0x3f3309d1,0xbf041066,3
|
|
188
|
+
np.float32,0x2d8722,0xc2fefb8f,3
|
|
189
|
+
np.float32,0x7e926cac,0x42fc6356,3
|
|
190
|
+
np.float32,0x3e3674ab,0xc01f452e,3
|
|
191
|
+
np.float32,0x1b46ce,0xc3003afc,3
|
|
192
|
+
np.float32,0x3f06a338,0xbf6d53fc,3
|
|
193
|
+
np.float32,0x1b1ba7,0xc3003d46,3
|
|
194
|
+
np.float32,0x319dfb,0xc2febc06,3
|
|
195
|
+
np.float32,0x3e2f126a,0xc02315a5,3
|
|
196
|
+
np.float32,0x3f40fe65,0xbed0af9e,3
|
|
197
|
+
np.float32,0x3f1d842f,0xbf335d4b,3
|
|
198
|
+
np.float32,0x3d044e4f,0xc09e78f8,3
|
|
199
|
+
np.float32,0x7f272674,0x42fec51f,3
|
|
200
|
+
np.float32,0x3cda6d8f,0xc0a753db,3
|
|
201
|
+
np.float32,0x3eb92f12,0xbfbbccbb,3
|
|
202
|
+
np.float32,0x7e4318f4,0x42fb3752,3
|
|
203
|
+
np.float32,0x3c5890,0xc2fe2b6d,3
|
|
204
|
+
np.float32,0x3d1993c9,0xc09796f8,3
|
|
205
|
+
np.float32,0x7f18ef24,0x42fe8377,3
|
|
206
|
+
np.float32,0x3e30c3a0,0xc0223244,3
|
|
207
|
+
np.float32,0x3f27cd27,0xbf1c00ef,3
|
|
208
|
+
np.float32,0x3f150957,0xbf47cd6c,3
|
|
209
|
+
np.float32,0x7e7178a3,0x42fbd4d8,3
|
|
210
|
+
np.float32,0x3f298db8,0xbf182ac3,3
|
|
211
|
+
np.float32,0x7cb3be,0xc2fc1348,3
|
|
212
|
+
np.float32,0x3ef64266,0xbf8729de,3
|
|
213
|
+
np.float32,0x3eeb06ce,0xbf8fc8f2,3
|
|
214
|
+
np.float32,0x3f406e36,0xbed2d845,3
|
|
215
|
+
np.float32,0x7f1e1bd3,0x42fe9c0b,3
|
|
216
|
+
np.float32,0x478dcc,0xc2fdad97,3
|
|
217
|
+
np.float32,0x7f7937b5,0x42ffec2b,3
|
|
218
|
+
np.float32,0x3f20f350,0xbf2b6624,3
|
|
219
|
+
np.float32,0x7f13661a,0x42fe683c,3
|
|
220
|
+
np.float32,0x208177,0xc2fff46b,3
|
|
221
|
+
np.float32,0x263cfb,0xc2ff7c72,3
|
|
222
|
+
np.float32,0x7f0bd28c,0x42fe4141,3
|
|
223
|
+
np.float32,0x7230d8,0xc2fc5453,3
|
|
224
|
+
np.float32,0x3f261bbf,0xbf1fbfb4,3
|
|
225
|
+
np.float32,0x737b56,0xc2fc4c05,3
|
|
226
|
+
np.float32,0x3ef88f33,0xbf857263,3
|
|
227
|
+
np.float32,0x7e036464,0x42fa1352,3
|
|
228
|
+
np.float32,0x4b5c4f,0xc2fd874d,3
|
|
229
|
+
np.float32,0x3f77984d,0xbd454596,3
|
|
230
|
+
np.float32,0x3f674202,0xbe162932,3
|
|
231
|
+
np.float32,0x3e7157d9,0xc0057197,3
|
|
232
|
+
np.float32,0x3f3f21da,0xbed7d861,3
|
|
233
|
+
np.float32,0x7f1fb40f,0x42fea375,3
|
|
234
|
+
np.float32,0x7ef0157f,0x42fdd096,3
|
|
235
|
+
np.float32,0x3f71e88d,0xbda74962,3
|
|
236
|
+
np.float32,0x3f174855,0xbf424728,3
|
|
237
|
+
np.float32,0x3f3fdd2c,0xbed505d5,3
|
|
238
|
+
np.float32,0x7b95d1,0xc2fc19ed,3
|
|
239
|
+
np.float32,0x7f23f4e5,0x42feb6df,3
|
|
240
|
+
np.float32,0x7d741925,0x42f7dcd6,3
|
|
241
|
+
np.float32,0x60f81d,0xc2fccd14,3
|
|
242
|
+
np.float32,0x3f17d267,0xbf40f6ae,3
|
|
243
|
+
np.float32,0x3f036fc8,0xbf7636f8,3
|
|
244
|
+
np.float32,0x167653,0xc30082b5,3
|
|
245
|
+
np.float32,0x256d05,0xc2ff8c4f,3
|
|
246
|
+
np.float32,0x3eccc63d,0xbfa93adb,3
|
|
247
|
+
np.float32,0x7f6c91ea,0x42ffc5b2,3
|
|
248
|
+
np.float32,0x2ee52a,0xc2fee5b3,3
|
|
249
|
+
np.float32,0x3dc3579e,0xc058f80d,3
|
|
250
|
+
np.float32,0x4c7170,0xc2fd7cc4,3
|
|
251
|
+
np.float32,0x7f737f20,0x42ffdb03,3
|
|
252
|
+
np.float32,0x3f2f9dbf,0xbf0b3119,3
|
|
253
|
+
np.float32,0x3f4d0c54,0xbea3eec5,3
|
|
254
|
+
np.float32,0x7e380862,0x42fb0c32,3
|
|
255
|
+
np.float32,0x5d637f,0xc2fce8df,3
|
|
256
|
+
np.float32,0x3f0aa623,0xbf627c27,3
|
|
257
|
+
np.float32,0x3e4d5896,0xc0145b88,3
|
|
258
|
+
np.float32,0x3f6cacdc,0xbde7e7ca,3
|
|
259
|
+
np.float32,0x63a2c3,0xc2fcb90a,3
|
|
260
|
+
np.float32,0x6c138c,0xc2fc7cfa,3
|
|
261
|
+
np.float32,0x2063c,0xc303fb88,3
|
|
262
|
+
np.float32,0x7e9e5a3e,0x42fc9d2f,3
|
|
263
|
+
np.float32,0x56ec64,0xc2fd1ddd,3
|
|
264
|
+
np.float32,0x7f1d6a35,0x42fe98cc,3
|
|
265
|
+
np.float32,0x73dc96,0xc2fc4998,3
|
|
266
|
+
np.float32,0x3e5d74e5,0xc00d6238,3
|
|
267
|
+
np.float32,0x7f033cbb,0x42fe1273,3
|
|
268
|
+
np.float32,0x3f5143fc,0xbe94e4e7,3
|
|
269
|
+
np.float32,0x1d56d9,0xc3002010,3
|
|
270
|
+
np.float32,0x2bf3e4,0xc2ff1591,3
|
|
271
|
+
np.float32,0x3f2a6ef1,0xbf164170,3
|
|
272
|
+
np.float32,0x3f33238b,0xbf03db58,3
|
|
273
|
+
np.float32,0x22780e,0xc2ffc91a,3
|
|
274
|
+
np.float32,0x7f00b873,0x42fe0425,3
|
|
275
|
+
np.float32,0x3f7f6145,0xbb654706,3
|
|
276
|
+
np.float32,0x7fc00000,0x7fc00000,3
|
|
277
|
+
np.float32,0x63895a,0xc2fcb9c7,3
|
|
278
|
+
np.float32,0x18a1b2,0xc30060a8,3
|
|
279
|
+
np.float32,0x7e43c6a6,0x42fb39e3,3
|
|
280
|
+
np.float32,0x78676e,0xc2fc2d30,3
|
|
281
|
+
np.float32,0x3f16d839,0xbf435940,3
|
|
282
|
+
np.float32,0x7eff78ba,0x42fdfe79,3
|
|
283
|
+
np.float32,0x3f2e152c,0xbf0e6e54,3
|
|
284
|
+
np.float32,0x3db20ced,0xc06186e1,3
|
|
285
|
+
np.float32,0x3f0cd1d8,0xbf5cbf57,3
|
|
286
|
+
np.float32,0x3fd7a8,0xc2fe01d2,3
|
|
287
|
+
np.float32,0x3ebb075e,0xbfb9f816,3
|
|
288
|
+
np.float32,0x7f94ef,0xc2fc026b,3
|
|
289
|
+
np.float32,0x3d80ba0e,0xc07f7a2b,3
|
|
290
|
+
np.float32,0x7f227e15,0x42feb03f,3
|
|
291
|
+
np.float32,0x792264bf,0x42e6afcc,3
|
|
292
|
+
np.float32,0x7f501576,0x42ff66ec,3
|
|
293
|
+
np.float32,0x223629,0xc2ffcea3,3
|
|
294
|
+
np.float32,0x40a79e,0xc2fdf87b,3
|
|
295
|
+
np.float32,0x449483,0xc2fdccf2,3
|
|
296
|
+
np.float32,0x3f4fa978,0xbe9a9382,3
|
|
297
|
+
np.float32,0x7f148c53,0x42fe6df9,3
|
|
298
|
+
np.float32,0x3ec98b3c,0xbfac2a98,3
|
|
299
|
+
np.float32,0x3e4da320,0xc0143a0a,3
|
|
300
|
+
np.float32,0x3d1d94bb,0xc09666d0,3
|
|
301
|
+
np.float32,0x3c8e624e,0xc0bb155b,3
|
|
302
|
+
np.float32,0x66a9af,0xc2fca2ef,3
|
|
303
|
+
np.float32,0x3ec76ed7,0xbfae1c57,3
|
|
304
|
+
np.float32,0x3f4b52f3,0xbeaa2b81,3
|
|
305
|
+
np.float32,0x7e99bbb5,0x42fc8750,3
|
|
306
|
+
np.float32,0x3f69a46b,0xbe0701be,3
|
|
307
|
+
np.float32,0x3f775400,0xbd4ba495,3
|
|
308
|
+
np.float32,0x131e56,0xc300be3c,3
|
|
309
|
+
np.float32,0x3f30abb4,0xbf08fb10,3
|
|
310
|
+
np.float32,0x7f7e528c,0x42fffb25,3
|
|
311
|
+
np.float32,0x3eb89515,0xbfbc668a,3
|
|
312
|
+
np.float32,0x7e9191b6,0x42fc5f02,3
|
|
313
|
+
np.float32,0x7e80c7e9,0x42fc047e,3
|
|
314
|
+
np.float32,0x3f77ef58,0xbd3d2995,3
|
|
315
|
+
np.float32,0x7ddb1f8a,0x42f98d1b,3
|
|
316
|
+
np.float32,0x7ebc6c4f,0x42fd1d9c,3
|
|
317
|
+
np.float32,0x3f6638e0,0xbe1ccab8,3
|
|
318
|
+
np.float32,0x7f4c45,0xc2fc0410,3
|
|
319
|
+
np.float32,0x3e7d8aad,0xc000e414,3
|
|
320
|
+
np.float32,0x3f4d148b,0xbea3d12e,3
|
|
321
|
+
np.float32,0x3e98c45c,0xbfdf55f4,3
|
|
322
|
+
np.float32,0x3d754c78,0xc081f8a9,3
|
|
323
|
+
np.float32,0x17e4cf,0xc3006be3,3
|
|
324
|
+
np.float32,0x7eb65814,0x42fd0563,3
|
|
325
|
+
np.float32,0x3f65e0d8,0xbe1f0008,3
|
|
326
|
+
np.float32,0x3e99541f,0xbfdea87e,3
|
|
327
|
+
np.float32,0x3f3cb80e,0xbee13b27,3
|
|
328
|
+
np.float32,0x3e99f0c0,0xbfddec3b,3
|
|
329
|
+
np.float32,0x3f43903e,0xbec6ea66,3
|
|
330
|
+
np.float32,0x7e211cd4,0x42faa9f2,3
|
|
331
|
+
np.float32,0x824af,0xc301f971,3
|
|
332
|
+
np.float32,0x3e16a56e,0xc030f56c,3
|
|
333
|
+
np.float32,0x542b3b,0xc2fd35a6,3
|
|
334
|
+
np.float32,0x3eeea2d1,0xbf8cf873,3
|
|
335
|
+
np.float32,0x232e93,0xc2ffb9fa,3
|
|
336
|
+
np.float32,0x3e8c52b9,0xbfef06aa,3
|
|
337
|
+
np.float32,0x7f69c7e3,0x42ffbcef,3
|
|
338
|
+
np.float32,0x3f573e43,0xbe801714,3
|
|
339
|
+
np.float32,0x43b009,0xc2fdd69f,3
|
|
340
|
+
np.float32,0x3ee571ab,0xbf943966,3
|
|
341
|
+
np.float32,0x3ee3d5d8,0xbf958604,3
|
|
342
|
+
np.float32,0x338b12,0xc2fe9fe4,3
|
|
343
|
+
np.float32,0x29cb1f,0xc2ff3ac6,3
|
|
344
|
+
np.float32,0x3f0892b4,0xbf680e7a,3
|
|
345
|
+
np.float32,0x3e8c4f7f,0xbfef0ae9,3
|
|
346
|
+
np.float32,0x7c9d3963,0x42f497e6,3
|
|
347
|
+
np.float32,0x3f26ba84,0xbf1e5f59,3
|
|
348
|
+
np.float32,0x3dd0acc0,0xc052df6f,3
|
|
349
|
+
np.float32,0x3e43fbda,0xc018aa8c,3
|
|
350
|
+
np.float32,0x3ec4fd0f,0xbfb0635d,3
|
|
351
|
+
np.float32,0x3f52c8c6,0xbe8f8d85,3
|
|
352
|
+
np.float32,0x3f5fdc5d,0xbe462fdb,3
|
|
353
|
+
np.float32,0x3f461920,0xbebd6743,3
|
|
354
|
+
np.float32,0x6161ff,0xc2fcc9ef,3
|
|
355
|
+
np.float32,0x7f7ed306,0x42fffc9a,3
|
|
356
|
+
np.float32,0x3d212263,0xc0955f46,3
|
|
357
|
+
np.float32,0x3eca5826,0xbfab6f36,3
|
|
358
|
+
np.float32,0x7d6317ac,0x42f7a77e,3
|
|
359
|
+
np.float32,0x3eb02063,0xbfc50f60,3
|
|
360
|
+
np.float32,0x7f71a6f8,0x42ffd565,3
|
|
361
|
+
np.float32,0x1a3efe,0xc3004935,3
|
|
362
|
+
np.float32,0x3dc599c9,0xc057e856,3
|
|
363
|
+
np.float32,0x3f3e1301,0xbedbf205,3
|
|
364
|
+
np.float32,0xf17d4,0xc301158d,3
|
|
365
|
+
np.float32,0x3f615f84,0xbe3c3d85,3
|
|
366
|
+
np.float32,0x3de63be1,0xc049cb77,3
|
|
367
|
+
np.float32,0x3e8d2f51,0xbfede541,3
|
|
368
|
+
np.float32,0x3a5cdd,0xc2fe441c,3
|
|
369
|
+
np.float32,0x3f443ec0,0xbec4586a,3
|
|
370
|
+
np.float32,0x3eacbd00,0xbfc8a5ad,3
|
|
371
|
+
np.float32,0x3f600f6a,0xbe44df1b,3
|
|
372
|
+
np.float32,0x5f77a6,0xc2fcd89c,3
|
|
373
|
+
np.float32,0x476706,0xc2fdaf28,3
|
|
374
|
+
np.float32,0x2f469,0xc3036fde,3
|
|
375
|
+
np.float32,0x7dc4ba24,0x42f93d77,3
|
|
376
|
+
np.float32,0x3e2d6080,0xc023fb9b,3
|
|
377
|
+
np.float32,0x7e8d7135,0x42fc49c3,3
|
|
378
|
+
np.float32,0x3f589065,0xbe77247b,3
|
|
379
|
+
np.float32,0x3f59e210,0xbe6e2c05,3
|
|
380
|
+
np.float32,0x7f51d388,0x42ff6d15,3
|
|
381
|
+
np.float32,0x7d9a5fda,0x42f88a63,3
|
|
382
|
+
np.float32,0x3e67d5bc,0xc00927ab,3
|
|
383
|
+
np.float32,0x61d72c,0xc2fcc679,3
|
|
384
|
+
np.float32,0x3ef3351d,0xbf897766,3
|
|
385
|
+
np.float32,0x1,0xc3150000,3
|
|
386
|
+
np.float32,0x7f653429,0x42ffae54,3
|
|
387
|
+
np.float32,0x7e1ad3e5,0x42fa8c8e,3
|
|
388
|
+
np.float32,0x3f4ca01d,0xbea57500,3
|
|
389
|
+
np.float32,0x3f7606db,0xbd6ad13e,3
|
|
390
|
+
np.float32,0x7ec4a27d,0x42fd3d1f,3
|
|
391
|
+
np.float32,0x3efe4fd5,0xbf8138c7,3
|
|
392
|
+
np.float32,0x77c2f1,0xc2fc3124,3
|
|
393
|
+
np.float32,0x7e4d3251,0x42fb5c9a,3
|
|
394
|
+
np.float32,0x3f543ac7,0xbe8a8154,3
|
|
395
|
+
np.float32,0x7c3dbe29,0x42f322c4,3
|
|
396
|
+
np.float32,0x408e01,0xc2fdf9a0,3
|
|
397
|
+
np.float32,0x45069b,0xc2fdc829,3
|
|
398
|
+
np.float32,0x3d7ecab7,0xc08037e8,3
|
|
399
|
+
np.float32,0xf8c22,0xc3010a99,3
|
|
400
|
+
np.float32,0x7f69af63,0x42ffbca2,3
|
|
401
|
+
np.float32,0x7ec7d228,0x42fd48fe,3
|
|
402
|
+
np.float32,0xff800000,0xffc00000,3
|
|
403
|
+
np.float32,0xdd7c5,0xc301357c,3
|
|
404
|
+
np.float32,0x143f38,0xc300a90e,3
|
|
405
|
+
np.float32,0x7e65c176,0x42fbb01b,3
|
|
406
|
+
np.float32,0x2c1a9e,0xc2ff1307,3
|
|
407
|
+
np.float32,0x7f6e9224,0x42ffcbeb,3
|
|
408
|
+
np.float32,0x3d32ab39,0xc0909a77,3
|
|
409
|
+
np.float32,0x3e150b42,0xc031f22b,3
|
|
410
|
+
np.float32,0x1f84b4,0xc300059a,3
|
|
411
|
+
np.float32,0x3f71ce21,0xbda88c2a,3
|
|
412
|
+
np.float32,0x2625c4,0xc2ff7e33,3
|
|
413
|
+
np.float32,0x3dd0b293,0xc052dcdc,3
|
|
414
|
+
np.float32,0x625c11,0xc2fcc290,3
|
|
415
|
+
np.float32,0x3f610297,0xbe3e9f24,3
|
|
416
|
+
np.float32,0x7ebdd5e5,0x42fd2320,3
|
|
417
|
+
np.float32,0x3e883458,0xbff486ff,3
|
|
418
|
+
np.float32,0x782313,0xc2fc2ed4,3
|
|
419
|
+
np.float32,0x7f39c843,0x42ff132f,3
|
|
420
|
+
np.float32,0x7f326aa7,0x42fef54d,3
|
|
421
|
+
np.float32,0x4d2c71,0xc2fd75be,3
|
|
422
|
+
np.float32,0x3f55747c,0xbe86409e,3
|
|
423
|
+
np.float32,0x7f7f0867,0x42fffd34,3
|
|
424
|
+
np.float32,0x321316,0xc2feb53f,3
|
|
425
|
+
np.float32,0x3e1b37ed,0xc02e32b0,3
|
|
426
|
+
np.float32,0x80edf,0xc301fd54,3
|
|
427
|
+
np.float32,0x3f0b08ad,0xbf617607,3
|
|
428
|
+
np.float32,0x7f3f4174,0x42ff28a2,3
|
|
429
|
+
np.float32,0x3d79306d,0xc0813eb0,3
|
|
430
|
+
np.float32,0x3f5f657a,0xbe49413d,3
|
|
431
|
+
np.float32,0x3f56c63a,0xbe81b376,3
|
|
432
|
+
np.float32,0x7f667123,0x42ffb24f,3
|
|
433
|
+
np.float32,0x3f71021b,0xbdb24d43,3
|
|
434
|
+
np.float32,0x7f434ab1,0x42ff380f,3
|
|
435
|
+
np.float32,0x3dcae496,0xc055779c,3
|
|
436
|
+
np.float32,0x3f5a7d88,0xbe6a0f5b,3
|
|
437
|
+
np.float32,0x3cdf5c32,0xc0a64bf5,3
|
|
438
|
+
np.float32,0x3e56222c,0xc0107d11,3
|
|
439
|
+
np.float32,0x561a3a,0xc2fd24df,3
|
|
440
|
+
np.float32,0x7ddd953c,0x42f9955a,3
|
|
441
|
+
np.float32,0x7e35d839,0x42fb035c,3
|
|
442
|
+
np.float32,0x3ec1816c,0xbfb3aeb2,3
|
|
443
|
+
np.float32,0x7c87cfcd,0x42f42bc2,3
|
|
444
|
+
np.float32,0xd9cd,0xc3053baf,3
|
|
445
|
+
np.float32,0x3f388234,0xbef1e5b7,3
|
|
446
|
+
np.float32,0x3edfcaca,0xbf98d47b,3
|
|
447
|
+
np.float32,0x3ef28852,0xbf89fac8,3
|
|
448
|
+
np.float32,0x7f7525df,0x42ffe001,3
|
|
449
|
+
np.float32,0x7f6c33ef,0x42ffc48c,3
|
|
450
|
+
np.float32,0x3ea4a881,0xbfd17e61,3
|
|
451
|
+
np.float32,0x3f3e379f,0xbedb63c6,3
|
|
452
|
+
np.float32,0x3f0524c1,0xbf717301,3
|
|
453
|
+
np.float32,0x3db3e7f0,0xc06091d3,3
|
|
454
|
+
np.float32,0x800000,0xc2fc0000,3
|
|
455
|
+
np.float32,0x3f2f2897,0xbf0c27ce,3
|
|
456
|
+
np.float32,0x7eb1776d,0x42fcf15c,3
|
|
457
|
+
np.float32,0x3f039018,0xbf75dc37,3
|
|
458
|
+
np.float32,0x3c4055,0xc2fe2c96,3
|
|
459
|
+
np.float32,0x3f603653,0xbe43dea5,3
|
|
460
|
+
np.float32,0x7f700d24,0x42ffd07c,3
|
|
461
|
+
np.float32,0x3f4741a3,0xbeb918dc,3
|
|
462
|
+
np.float32,0x3f5fe959,0xbe45da2d,3
|
|
463
|
+
np.float32,0x3f3e4401,0xbedb33b1,3
|
|
464
|
+
np.float32,0x7f0705ff,0x42fe2775,3
|
|
465
|
+
np.float32,0x3ea85662,0xbfcd69b0,3
|
|
466
|
+
np.float32,0x3f15f49f,0xbf458829,3
|
|
467
|
+
np.float32,0x3f17c50e,0xbf411728,3
|
|
468
|
+
np.float32,0x3e483f60,0xc016add2,3
|
|
469
|
+
np.float32,0x3f1ab9e5,0xbf39f71b,3
|
|
470
|
+
np.float32,0x3de0b6fb,0xc04c08fe,3
|
|
471
|
+
np.float32,0x7e671225,0x42fbb452,3
|
|
472
|
+
np.float32,0x80800000,0xffc00000,3
|
|
473
|
+
np.float32,0xe2df3,0xc3012c9d,3
|
|
474
|
+
np.float32,0x3ede1e3c,0xbf9a3770,3
|
|
475
|
+
np.float32,0x3df2ffde,0xc044cfec,3
|
|
476
|
+
np.float32,0x3eed8da5,0xbf8dcf6c,3
|
|
477
|
+
np.float32,0x3ead15c3,0xbfc846e1,3
|
|
478
|
+
np.float32,0x7ef3750a,0x42fddae4,3
|
|
479
|
+
np.float32,0x7e6ab7c0,0x42fbbfe4,3
|
|
480
|
+
np.float32,0x7ea4bbe5,0x42fcba5d,3
|
|
481
|
+
np.float32,0x3f227706,0xbf27f0a1,3
|
|
482
|
+
np.float32,0x3ef39bfd,0xbf89295a,3
|
|
483
|
+
np.float32,0x3f289a20,0xbf1a3edd,3
|
|
484
|
+
np.float32,0x7f225f82,0x42feafb4,3
|
|
485
|
+
np.float32,0x768963,0xc2fc38bc,3
|
|
486
|
+
np.float32,0x3f493c00,0xbeb1ccfc,3
|
|
487
|
+
np.float32,0x3f4e7249,0xbe9ee9a7,3
|
|
488
|
+
np.float32,0x1d0c3a,0xc30023c0,3
|
|
489
|
+
np.float32,0x7f3c5f78,0x42ff1d6a,3
|
|
490
|
+
np.float32,0xff7fffff,0xffc00000,3
|
|
491
|
+
np.float32,0x3ee7896a,0xbf928c2a,3
|
|
492
|
+
np.float32,0x3e788479,0xc002bd2e,3
|
|
493
|
+
np.float32,0x3ee4df17,0xbf94af84,3
|
|
494
|
+
np.float32,0x5e06d7,0xc2fce3d7,3
|
|
495
|
+
np.float32,0x3d7b2776,0xc080e1dc,3
|
|
496
|
+
np.float32,0x3e3d39d3,0xc01be7fd,3
|
|
497
|
+
np.float32,0x7c81dece,0x42f40ab7,3
|
|
498
|
+
np.float32,0x3f7d2085,0xbc856255,3
|
|
499
|
+
np.float32,0x7f7f6627,0x42fffe44,3
|
|
500
|
+
np.float32,0x7f5f2e94,0x42ff9aaa,3
|
|
501
|
+
np.float32,0x7f5835f2,0x42ff8339,3
|
|
502
|
+
np.float32,0x3f6a0e32,0xbe046580,3
|
|
503
|
+
np.float32,0x7e16f586,0x42fa79dd,3
|
|
504
|
+
np.float32,0x3f04a2f2,0xbf72dbc5,3
|
|
505
|
+
np.float32,0x3f35e334,0xbefc7740,3
|
|
506
|
+
np.float32,0x3f0d056e,0xbf5c3824,3
|
|
507
|
+
np.float32,0x7ebeb95e,0x42fd2693,3
|
|
508
|
+
np.float32,0x3c6192,0xc2fe2aff,3
|
|
509
|
+
np.float32,0x3e892b4f,0xbff33958,3
|
|
510
|
+
np.float32,0x3f61d694,0xbe3931df,3
|
|
511
|
+
np.float32,0x29d183,0xc2ff3a56,3
|
|
512
|
+
np.float32,0x7f0b0598,0x42fe3d04,3
|
|
513
|
+
np.float32,0x7f743b28,0x42ffdd3d,3
|
|
514
|
+
np.float32,0x3a2ed6,0xc2fe4663,3
|
|
515
|
+
np.float32,0x3e27403a,0xc0274de8,3
|
|
516
|
+
np.float32,0x3f58ee78,0xbe74a349,3
|
|
517
|
+
np.float32,0x3eaa4b,0xc2fe0f92,3
|
|
518
|
+
np.float32,0x3ecb613b,0xbfaa7de8,3
|
|
519
|
+
np.float32,0x7f637d81,0x42ffa8c9,3
|
|
520
|
+
np.float32,0x3f026e96,0xbf790c73,3
|
|
521
|
+
np.float32,0x386cdf,0xc2fe5d0c,3
|
|
522
|
+
np.float32,0x35abd1,0xc2fe8202,3
|
|
523
|
+
np.float32,0x3eac3cd1,0xbfc92ee8,3
|
|
524
|
+
np.float32,0x3f567869,0xbe82bf47,3
|
|
525
|
+
np.float32,0x3f65c643,0xbe1faae6,3
|
|
526
|
+
np.float32,0x7f5422b9,0x42ff752b,3
|
|
527
|
+
np.float32,0x7c26e9,0xc2fc168c,3
|
|
528
|
+
np.float32,0x7eff5cfd,0x42fdfe29,3
|
|
529
|
+
np.float32,0x3f728e7f,0xbd9f6142,3
|
|
530
|
+
np.float32,0x3f10fd43,0xbf51f874,3
|
|
531
|
+
np.float32,0x7e7ada08,0x42fbf0fe,3
|
|
532
|
+
np.float32,0x3e82a611,0xbffc37be,3
|
|
533
|
+
np.float32,0xbf800000,0xffc00000,3
|
|
534
|
+
np.float32,0x3dbe2e12,0xc05b711c,3
|
|
535
|
+
np.float32,0x7e768fa9,0x42fbe440,3
|
|
536
|
+
np.float32,0x5e44e8,0xc2fce1f0,3
|
|
537
|
+
np.float32,0x7f25071a,0x42febbae,3
|
|
538
|
+
np.float32,0x3f54db5e,0xbe885339,3
|
|
539
|
+
np.float32,0x3f0f2c26,0xbf56a0b8,3
|
|
540
|
+
np.float32,0x22f9a7,0xc2ffbe55,3
|
|
541
|
+
np.float32,0x7ed63dcb,0x42fd7c77,3
|
|
542
|
+
np.float32,0x7ea4fae2,0x42fcbb78,3
|
|
543
|
+
np.float32,0x3f1d7766,0xbf337b47,3
|
|
544
|
+
np.float32,0x7f16d59f,0x42fe7941,3
|
|
545
|
+
np.float32,0x3f3a1bb6,0xbeeb855c,3
|
|
546
|
+
np.float32,0x3ef57128,0xbf87c709,3
|
|
547
|
+
np.float32,0xb24ff,0xc3018591,3
|
|
548
|
+
np.float32,0x3ef99e27,0xbf84a983,3
|
|
549
|
+
np.float32,0x3eac2ccf,0xbfc94013,3
|
|
550
|
+
np.float32,0x3e9d3e1e,0xbfda00dc,3
|
|
551
|
+
np.float32,0x718213,0xc2fc58c1,3
|
|
552
|
+
np.float32,0x7edbf509,0x42fd8fea,3
|
|
553
|
+
np.float32,0x70c7f1,0xc2fc5d80,3
|
|
554
|
+
np.float32,0x3f7012f5,0xbdbdc6cd,3
|
|
555
|
+
np.float32,0x12cba,0xc304c487,3
|
|
556
|
+
np.float32,0x7f5d445d,0x42ff944c,3
|
|
557
|
+
np.float32,0x7f3e30bd,0x42ff2481,3
|
|
558
|
+
np.float32,0x63b110,0xc2fcb8a0,3
|
|
559
|
+
np.float32,0x3f39f728,0xbeec1680,3
|
|
560
|
+
np.float32,0x3f5bea58,0xbe6074b1,3
|
|
561
|
+
np.float32,0x3f350749,0xbefff679,3
|
|
562
|
+
np.float32,0x3e91ab2c,0xbfe81f3e,3
|
|
563
|
+
np.float32,0x7ec53fe0,0x42fd3f6d,3
|
|
564
|
+
np.float32,0x3f6cbbdc,0xbde72c8e,3
|
|
565
|
+
np.float32,0x3f4df49f,0xbea0abcf,3
|
|
566
|
+
np.float32,0x3e9c9638,0xbfdac674,3
|
|
567
|
+
np.float32,0x7f3b82ec,0x42ff1a07,3
|
|
568
|
+
np.float32,0x7f612a09,0x42ffa132,3
|
|
569
|
+
np.float32,0x7ea26650,0x42fcafd3,3
|
|
570
|
+
np.float32,0x3a615138,0xc122f26d,3
|
|
571
|
+
np.float32,0x3f1108bd,0xbf51db39,3
|
|
572
|
+
np.float32,0x6f80f6,0xc2fc65ea,3
|
|
573
|
+
np.float32,0x3f7cb578,0xbc98ecb1,3
|
|
574
|
+
np.float32,0x7f54d31a,0x42ff7790,3
|
|
575
|
+
np.float32,0x196868,0xc3005532,3
|
|
576
|
+
np.float32,0x3f01ee0a,0xbf7a7925,3
|
|
577
|
+
np.float32,0x3e184013,0xc02ffb11,3
|
|
578
|
+
np.float32,0xadde3,0xc3018ee3,3
|
|
579
|
+
np.float32,0x252a91,0xc2ff9173,3
|
|
580
|
+
np.float32,0x3f0382c2,0xbf7601a9,3
|
|
581
|
+
np.float32,0x6d818c,0xc2fc7345,3
|
|
582
|
+
np.float32,0x3bfbfd,0xc2fe2fdd,3
|
|
583
|
+
np.float32,0x7f3cad19,0x42ff1e9a,3
|
|
584
|
+
np.float32,0x4169a7,0xc2fdefdf,3
|
|
585
|
+
np.float32,0x3f615d96,0xbe3c4a2b,3
|
|
586
|
+
np.float32,0x3f036480,0xbf7656ac,3
|
|
587
|
+
np.float32,0x7f5fbda3,0x42ff9c83,3
|
|
588
|
+
np.float32,0x3d202d,0xc2fe21f1,3
|
|
589
|
+
np.float32,0x3d0f5e5d,0xc09ac3e9,3
|
|
590
|
+
np.float32,0x3f0fff6e,0xbf548142,3
|
|
591
|
+
np.float32,0x7f11ed32,0x42fe60d2,3
|
|
592
|
+
np.float32,0x3e6f856b,0xc00624b6,3
|
|
593
|
+
np.float32,0x7f7c4dd7,0x42fff542,3
|
|
594
|
+
np.float32,0x3e76fb86,0xc0034fa0,3
|
|
595
|
+
np.float32,0x3e8a0d6e,0xbff209e7,3
|
|
596
|
+
np.float32,0x3eacad19,0xbfc8b6ad,3
|
|
597
|
+
np.float32,0xa7776,0xc3019cbe,3
|
|
598
|
+
np.float32,0x3dc84d74,0xc056a754,3
|
|
599
|
+
np.float32,0x3efb8052,0xbf834626,3
|
|
600
|
+
np.float32,0x3f0e55fc,0xbf58cacc,3
|
|
601
|
+
np.float32,0x7e0e71e3,0x42fa4efb,3
|
|
602
|
+
np.float32,0x3ed5a800,0xbfa1639c,3
|
|
603
|
+
np.float32,0x3f33335b,0xbf03babf,3
|
|
604
|
+
np.float32,0x38cad7,0xc2fe5842,3
|
|
605
|
+
np.float32,0x3bc21256,0xc0ecc927,3
|
|
606
|
+
np.float32,0x3f09522d,0xbf660a19,3
|
|
607
|
+
np.float32,0xcbd5d,0xc3015428,3
|
|
608
|
+
np.float32,0x492752,0xc2fd9d42,3
|
|
609
|
+
np.float32,0x3f2b9b32,0xbf13b904,3
|
|
610
|
+
np.float32,0x6544ac,0xc2fcad09,3
|
|
611
|
+
np.float32,0x52eb12,0xc2fd40b5,3
|
|
612
|
+
np.float32,0x3f66a7c0,0xbe1a03e8,3
|
|
613
|
+
np.float32,0x7ab289,0xc2fc1f41,3
|
|
614
|
+
np.float32,0x62af5e,0xc2fcc020,3
|
|
615
|
+
np.float32,0x7f73e9cf,0x42ffdc46,3
|
|
616
|
+
np.float32,0x3e5eca,0xc2fe130e,3
|
|
617
|
+
np.float32,0x3e3a10f4,0xc01d7602,3
|
|
618
|
+
np.float32,0x3f04db46,0xbf723f0d,3
|
|
619
|
+
np.float32,0x18fc4a,0xc3005b63,3
|
|
620
|
+
np.float32,0x525bcb,0xc2fd45b6,3
|
|
621
|
+
np.float32,0x3f6b9108,0xbdf5c769,3
|
|
622
|
+
np.float32,0x3e992e8c,0xbfded5c5,3
|
|
623
|
+
np.float32,0x7efea647,0x42fdfc18,3
|
|
624
|
+
np.float32,0x7e8371db,0x42fc139e,3
|
|
625
|
+
np.float32,0x3f397cfb,0xbeedfc69,3
|
|
626
|
+
np.float32,0x7e46d233,0x42fb454a,3
|
|
627
|
+
np.float32,0x7d5281ad,0x42f76f79,3
|
|
628
|
+
np.float32,0x7f4c1878,0x42ff58a1,3
|
|
629
|
+
np.float32,0x3e96ca5e,0xbfe1bd97,3
|
|
630
|
+
np.float32,0x6a2743,0xc2fc8a3d,3
|
|
631
|
+
np.float32,0x7f688781,0x42ffb8f8,3
|
|
632
|
+
np.float32,0x7814b7,0xc2fc2f2d,3
|
|
633
|
+
np.float32,0x3f2ffdc9,0xbf0a6756,3
|
|
634
|
+
np.float32,0x3f766fa8,0xbd60fe24,3
|
|
635
|
+
np.float32,0x4dc64e,0xc2fd7003,3
|
|
636
|
+
np.float32,0x3a296f,0xc2fe46a8,3
|
|
637
|
+
np.float32,0x3f2af942,0xbf15162e,3
|
|
638
|
+
np.float32,0x7f702c32,0x42ffd0dc,3
|
|
639
|
+
np.float32,0x7e61e318,0x42fba390,3
|
|
640
|
+
np.float32,0x7f7d3bdb,0x42fff7fa,3
|
|
641
|
+
np.float32,0x3ee87f3f,0xbf91c881,3
|
|
642
|
+
np.float32,0x2bbc28,0xc2ff193c,3
|
|
643
|
+
np.float32,0x3e01f918,0xc03e966e,3
|
|
644
|
+
np.float32,0x7f0b39f4,0x42fe3e1a,3
|
|
645
|
+
np.float32,0x3eaa4d64,0xbfcb4516,3
|
|
646
|
+
np.float32,0x3e53901e,0xc0119a88,3
|
|
647
|
+
np.float32,0x603cb,0xc3026957,3
|
|
648
|
+
np.float32,0x7e81f926,0x42fc0b4d,3
|
|
649
|
+
np.float32,0x5dab7c,0xc2fce6a6,3
|
|
650
|
+
np.float32,0x3f46fefd,0xbeba1018,3
|
|
651
|
+
np.float32,0x648448,0xc2fcb28a,3
|
|
652
|
+
np.float32,0x3ec49470,0xbfb0c58b,3
|
|
653
|
+
np.float32,0x3e8a5393,0xbff1ac2b,3
|
|
654
|
+
np.float32,0x3f27ccfc,0xbf1c014e,3
|
|
655
|
+
np.float32,0x3ed886e6,0xbf9eeca8,3
|
|
656
|
+
np.float32,0x7cfbe06e,0x42f5f401,3
|
|
657
|
+
np.float32,0x3f5aa7ba,0xbe68f229,3
|
|
658
|
+
np.float32,0x9500d,0xc301c7e3,3
|
|
659
|
+
np.float32,0x3f4861,0xc2fe0853,3
|
|
660
|
+
np.float32,0x3e5ae104,0xc00e76f5,3
|
|
661
|
+
np.float32,0x71253a,0xc2fc5b1e,3
|
|
662
|
+
np.float32,0xcf7b8,0xc3014d9c,3
|
|
663
|
+
np.float32,0x7f7edd2d,0x42fffcb7,3
|
|
664
|
+
np.float32,0x3e9039ee,0xbfe9f5ab,3
|
|
665
|
+
np.float32,0x2fd54e,0xc2fed712,3
|
|
666
|
+
np.float32,0x3f600752,0xbe45147a,3
|
|
667
|
+
np.float32,0x3f4da8f6,0xbea1bb5c,3
|
|
668
|
+
np.float32,0x3f2d34a9,0xbf104bd9,3
|
|
669
|
+
np.float32,0x3e1e66dd,0xc02c52d2,3
|
|
670
|
+
np.float32,0x798276,0xc2fc2670,3
|
|
671
|
+
np.float32,0xd55e2,0xc3014347,3
|
|
672
|
+
np.float32,0x80000001,0xffc00000,3
|
|
673
|
+
np.float32,0x3e7a5ead,0xc0020da6,3
|
|
674
|
+
np.float32,0x7ec4c744,0x42fd3da9,3
|
|
675
|
+
np.float32,0x597e00,0xc2fd085a,3
|
|
676
|
+
np.float32,0x3dff6bf4,0xc0403575,3
|
|
677
|
+
np.float32,0x5d6f1a,0xc2fce883,3
|
|
678
|
+
np.float32,0x7e21faff,0x42faadea,3
|
|
679
|
+
np.float32,0x3e570fea,0xc01016c6,3
|
|
680
|
+
np.float32,0x28e6b6,0xc2ff4ab7,3
|
|
681
|
+
np.float32,0x7e77062d,0x42fbe5a3,3
|
|
682
|
+
np.float32,0x74cac4,0xc2fc43b0,3
|
|
683
|
+
np.float32,0x3f707273,0xbdb93078,3
|
|
684
|
+
np.float32,0x228e96,0xc2ffc737,3
|
|
685
|
+
np.float32,0x686ac1,0xc2fc966b,3
|
|
686
|
+
np.float32,0x3d76400d,0xc081cae8,3
|
|
687
|
+
np.float32,0x3e9f502f,0xbfd7966b,3
|
|
688
|
+
np.float32,0x3f6bc656,0xbdf32b1f,3
|
|
689
|
+
np.float32,0x3edb828b,0xbf9c65d4,3
|
|
690
|
+
np.float32,0x6c6e56,0xc2fc7a8e,3
|
|
691
|
+
np.float32,0x3f04552e,0xbf73b48f,3
|
|
692
|
+
np.float32,0x3f39cb69,0xbeecc457,3
|
|
693
|
+
np.float32,0x7f681c44,0x42ffb7a3,3
|
|
694
|
+
np.float32,0x7f5b44ee,0x42ff8d99,3
|
|
695
|
+
np.float32,0x3e71430a,0xc005798d,3
|
|
696
|
+
np.float32,0x3edcfde3,0xbf9b27c6,3
|
|
697
|
+
np.float32,0x3f616a5a,0xbe3bf67f,3
|
|
698
|
+
np.float32,0x3f523936,0xbe918548,3
|
|
699
|
+
np.float32,0x3f39ce3a,0xbeecb925,3
|
|
700
|
+
np.float32,0x3eac589a,0xbfc91120,3
|
|
701
|
+
np.float32,0x7efc8d3d,0x42fdf5fc,3
|
|
702
|
+
np.float32,0x5704b0,0xc2fd1d0f,3
|
|
703
|
+
np.float32,0x7e7972e9,0x42fbecda,3
|
|
704
|
+
np.float32,0x3eb0811c,0xbfc4aa13,3
|
|
705
|
+
np.float32,0x7f1efcbb,0x42fea023,3
|
|
706
|
+
np.float32,0x3e0b9e32,0xc037fa6b,3
|
|
707
|
+
np.float32,0x7eef6a48,0x42fdce87,3
|
|
708
|
+
np.float32,0x3cc0a373,0xc0ad20c0,3
|
|
709
|
+
np.float32,0x3f2a75bb,0xbf1632ba,3
|
|
710
|
+
np.float32,0x0,0xff800000,3
|
|
711
|
+
np.float32,0x7ecdb6f4,0x42fd5e77,3
|
|
712
|
+
np.float32,0x7f2e2dfd,0x42fee38d,3
|
|
713
|
+
np.float32,0x3ee17f6e,0xbf976d8c,3
|
|
714
|
+
np.float32,0x3f51e7ee,0xbe92a319,3
|
|
715
|
+
np.float32,0x3f06942f,0xbf6d7d3c,3
|
|
716
|
+
np.float32,0x3f7ba528,0xbccac6f1,3
|
|
717
|
+
np.float32,0x3f413787,0xbecfd513,3
|
|
718
|
+
np.float32,0x3e085e48,0xc03a2716,3
|
|
719
|
+
np.float32,0x7e4c5e0e,0x42fb599c,3
|
|
720
|
+
np.float32,0x306f76,0xc2fecdd4,3
|
|
721
|
+
np.float32,0x7f5c2203,0x42ff9081,3
|
|
722
|
+
np.float32,0x3d5355b4,0xc088da05,3
|
|
723
|
+
np.float32,0x9a2a,0xc305bb4f,3
|
|
724
|
+
np.float32,0x3db93a1f,0xc05de0db,3
|
|
725
|
+
np.float32,0x4e50c6,0xc2fd6ae4,3
|
|
726
|
+
np.float32,0x7ec4afed,0x42fd3d51,3
|
|
727
|
+
np.float32,0x3a8f27,0xc2fe41a0,3
|
|
728
|
+
np.float32,0x7f213caf,0x42feaa84,3
|
|
729
|
+
np.float32,0x7e7b5f00,0x42fbf286,3
|
|
730
|
+
np.float32,0x7e367194,0x42fb05ca,3
|
|
731
|
+
np.float32,0x7f56e6de,0x42ff7ebd,3
|
|
732
|
+
np.float32,0x3ed7383e,0xbfa00aef,3
|
|
733
|
+
np.float32,0x7e844752,0x42fc184a,3
|
|
734
|
+
np.float32,0x15157,0xc3049a19,3
|
|
735
|
+
np.float32,0x3f78cd92,0xbd28824a,3
|
|
736
|
+
np.float32,0x7ecddb16,0x42fd5ef9,3
|
|
737
|
+
np.float32,0x3e479f16,0xc016f7d8,3
|
|
738
|
+
np.float32,0x3f5cb418,0xbe5b2bd3,3
|
|
739
|
+
np.float32,0x7c0934cb,0x42f2334e,3
|
|
740
|
+
np.float32,0x3ebe5505,0xbfb6bc69,3
|
|
741
|
+
np.float32,0x3eb1335a,0xbfc3eff5,3
|
|
742
|
+
np.float32,0x3f2488a3,0xbf234444,3
|
|
743
|
+
np.float32,0x642906,0xc2fcb52a,3
|
|
744
|
+
np.float32,0x3da635fa,0xc067e15a,3
|
|
745
|
+
np.float32,0x7e0d80db,0x42fa4a15,3
|
|
746
|
+
np.float32,0x4f0b9d,0xc2fd640a,3
|
|
747
|
+
np.float32,0x7e083806,0x42fa2df8,3
|
|
748
|
+
np.float32,0x7f77f8c6,0x42ffe877,3
|
|
749
|
+
np.float32,0x3e7bb46a,0xc0018ff5,3
|
|
750
|
+
np.float32,0x3f06eb2e,0xbf6c8eca,3
|
|
751
|
+
np.float32,0x7eae8f7c,0x42fce52a,3
|
|
752
|
+
np.float32,0x3de481a0,0xc04a7d7f,3
|
|
753
|
+
np.float32,0x3eed4311,0xbf8e096f,3
|
|
754
|
+
np.float32,0x3f7b0300,0xbce8903d,3
|
|
755
|
+
np.float32,0x3811b,0xc30330dd,3
|
|
756
|
+
np.float32,0x3eb6f8e1,0xbfbe04bc,3
|
|
757
|
+
np.float32,0x3ec35210,0xbfb1f55a,3
|
|
758
|
+
np.float32,0x3d386916,0xc08f24a5,3
|
|
759
|
+
np.float32,0x3f1fa197,0xbf2e704d,3
|
|
760
|
+
np.float32,0x7f2020a5,0x42fea56a,3
|
|
761
|
+
np.float32,0x7e1ea53f,0x42fa9e8c,3
|
|
762
|
+
np.float32,0x3f148903,0xbf490bf9,3
|
|
763
|
+
np.float32,0x3f2f56a0,0xbf0bc6c9,3
|
|
764
|
+
np.float32,0x7da9fc,0xc2fc0d9b,3
|
|
765
|
+
np.float32,0x3d802134,0xc07fe810,3
|
|
766
|
+
np.float32,0x3f6cb927,0xbde74e57,3
|
|
767
|
+
np.float32,0x7e05b125,0x42fa2023,3
|
|
768
|
+
np.float32,0x3f3307f9,0xbf041433,3
|
|
769
|
+
np.float32,0x5666bf,0xc2fd2250,3
|
|
770
|
+
np.float32,0x3f51c93b,0xbe930f28,3
|
|
771
|
+
np.float32,0x3eb5dcfe,0xbfbf241e,3
|
|
772
|
+
np.float32,0xb2773,0xc301853f,3
|
|
773
|
+
np.float32,0x7f4dee96,0x42ff5f3f,3
|
|
774
|
+
np.float32,0x3e3f5c33,0xc01adee1,3
|
|
775
|
+
np.float32,0x3f2ed29a,0xbf0cdd4a,3
|
|
776
|
+
np.float32,0x3e3c01ef,0xc01c80ab,3
|
|
777
|
+
np.float32,0x3ec2236e,0xbfb31458,3
|
|
778
|
+
np.float32,0x7e841dc4,0x42fc1761,3
|
|
779
|
+
np.float32,0x3df2cd8e,0xc044e30c,3
|
|
780
|
+
np.float32,0x3f010901,0xbf7d0670,3
|
|
781
|
+
np.float32,0x3c05ceaa,0xc0ddf39b,3
|
|
782
|
+
np.float32,0x3f517226,0xbe944206,3
|
|
783
|
+
np.float32,0x3f23c83d,0xbf24f522,3
|
|
784
|
+
np.float32,0x7fc9da,0xc2fc0139,3
|
|
785
|
+
np.float32,0x7f1bde53,0x42fe9181,3
|
|
786
|
+
np.float32,0x3ea3786c,0xbfd2d4a5,3
|
|
787
|
+
np.float32,0x3e83a71b,0xbffacdd2,3
|
|
788
|
+
np.float32,0x3f6f0d4f,0xbdca61d5,3
|
|
789
|
+
np.float32,0x7f5ab613,0x42ff8bb7,3
|
|
790
|
+
np.float32,0x3ab1ec,0xc2fe3fea,3
|
|
791
|
+
np.float32,0x4fbf58,0xc2fd5d82,3
|
|
792
|
+
np.float32,0x3dea141b,0xc0484403,3
|
|
793
|
+
np.float32,0x7d86ad3b,0x42f8258f,3
|
|
794
|
+
np.float32,0x7f345315,0x42fefd29,3
|
|
795
|
+
np.float32,0x3f3752fe,0xbef6a780,3
|
|
796
|
+
np.float32,0x64830d,0xc2fcb293,3
|
|
797
|
+
np.float32,0x3d9dc1eb,0xc06cb32a,3
|
|
798
|
+
np.float32,0x3f2f935a,0xbf0b46f6,3
|
|
799
|
+
np.float32,0xb90a4,0xc30177e3,3
|
|
800
|
+
np.float32,0x4111dd,0xc2fdf3c1,3
|
|
801
|
+
np.float32,0x3d4cd078,0xc08a4c68,3
|
|
802
|
+
np.float32,0x3e95c3f1,0xbfe30011,3
|
|
803
|
+
np.float32,0x3ec9f356,0xbfabcb4e,3
|
|
804
|
+
np.float32,0x1b90d5,0xc3003717,3
|
|
805
|
+
np.float32,0xee70f,0xc3011a3e,3
|
|
806
|
+
np.float32,0x7fa00000,0x7fe00000,3
|
|
807
|
+
np.float32,0x3f74cdb6,0xbd8422af,3
|
|
808
|
+
np.float32,0x3d9b56fe,0xc06e2037,3
|
|
809
|
+
np.float32,0x3f1853df,0xbf3fbc40,3
|
|
810
|
+
np.float32,0x7d86a011,0x42f82547,3
|
|
811
|
+
np.float32,0x3dff9629,0xc0402634,3
|
|
812
|
+
np.float32,0x46f8c9,0xc2fdb39f,3
|
|
813
|
+
np.float32,0x3e9b410b,0xbfdc5a87,3
|
|
814
|
+
np.float32,0x3f5aed42,0xbe671cac,3
|
|
815
|
+
np.float32,0x3b739886,0xc101257f,3
|
|
816
|
+
np.float64,0x3fe2f58d6565eb1b,0xbfe82a641138e19a,1
|
|
817
|
+
np.float64,0x3fee7f0642fcfe0d,0xbfb1c702f6974932,1
|
|
818
|
+
np.float64,0x25b71f244b6e5,0xc090030d3b3c5d2b,1
|
|
819
|
+
np.float64,0x8c9cc8e1193b,0xc0900b752a678fa8,1
|
|
820
|
+
np.float64,0x3fd329b5d326536c,0xbffbd607f6db945c,1
|
|
821
|
+
np.float64,0x3fb5109b3a2a2136,0xc00cd36bd15dfb18,1
|
|
822
|
+
np.float64,0x3fd5393ae12a7276,0xbff97a7e4a157154,1
|
|
823
|
+
np.float64,0x3fd374d1b926e9a3,0xbffb7c3e1a3a7ed3,1
|
|
824
|
+
np.float64,0x3fe2c7f4e2658fea,0xbfe899f15ca78fcb,1
|
|
825
|
+
np.float64,0x7fe3d6b81ee7ad6f,0x408ffa7b63d407ee,1
|
|
826
|
+
np.float64,0x3fe086d097e10da1,0xbfee81456ce8dd03,1
|
|
827
|
+
np.float64,0x7fd374a64ca6e94c,0x408ff241c7306d39,1
|
|
828
|
+
np.float64,0x3fc0709a5b20e135,0xc007afdede31b29c,1
|
|
829
|
+
np.float64,0x3fd4218f4b28431f,0xbffab2c696966e2d,1
|
|
830
|
+
np.float64,0x143134c828628,0xc09006a8372c4d8a,1
|
|
831
|
+
np.float64,0x3f8bd0aa0037a154,0xc018cf0e8b9c3107,1
|
|
832
|
+
np.float64,0x7fe0ce905ee19d20,0x408ff8915e71bd67,1
|
|
833
|
+
np.float64,0x3fda0f5f32b41ebe,0xbff4bd5e0869e820,1
|
|
834
|
+
np.float64,0x7fe9ae63d0b35cc7,0x408ffd760ca4f292,1
|
|
835
|
+
np.float64,0x3fe75abd9eeeb57b,0xbfdd1476fc8b3089,1
|
|
836
|
+
np.float64,0x786c3110f0d87,0xc08ff8b44cedbeea,1
|
|
837
|
+
np.float64,0x22c5fe80458d,0xc09013853591c2f2,1
|
|
838
|
+
np.float64,0x3fdc250797384a0f,0xbff2f6a02c961f0b,1
|
|
839
|
+
np.float64,0x3fa2b367b02566cf,0xc013199238485054,1
|
|
840
|
+
np.float64,0x3fd26a910ca4d522,0xbffcc0e2089b1c0c,1
|
|
841
|
+
np.float64,0x8068d3b300d1b,0xc08ff7f690210aac,1
|
|
842
|
+
np.float64,0x3fe663bfa9ecc77f,0xbfe07cd95a43a5ce,1
|
|
843
|
+
np.float64,0x3fd0ddb07321bb61,0xbffec886665e895e,1
|
|
844
|
+
np.float64,0x3f91c730b0238e61,0xc0176452badc8d22,1
|
|
845
|
+
np.float64,0x4dd10d309ba22,0xc08ffdbe738b1d8d,1
|
|
846
|
+
np.float64,0x7fe322afa4a6455e,0x408ffa10c038f9de,1
|
|
847
|
+
np.float64,0x7fdf7f7c42befef8,0x408ff7d147ddaad5,1
|
|
848
|
+
np.float64,0x7fd673f386ace7e6,0x408ff3e920d00eef,1
|
|
849
|
+
np.float64,0x3feaebfcadb5d7f9,0xbfcfe8ec27083478,1
|
|
850
|
+
np.float64,0x3fdc6dc23738db84,0xbff2bb46794f07b8,1
|
|
851
|
+
np.float64,0xcd8819599b103,0xc08ff288c5b2cf0f,1
|
|
852
|
+
np.float64,0xfda00e77fb402,0xc08ff01b895d2236,1
|
|
853
|
+
np.float64,0x840b02ff08161,0xc08ff7a41e41114c,1
|
|
854
|
+
np.float64,0x3fbdce3a383b9c74,0xc008d1e61903a289,1
|
|
855
|
+
np.float64,0x3fd24ed3c4a49da8,0xbffce3c12136b6d3,1
|
|
856
|
+
np.float64,0x3fe8d0834131a107,0xbfd77b194e7051d4,1
|
|
857
|
+
np.float64,0x3fdd0cb11aba1962,0xbff23b9dbd554455,1
|
|
858
|
+
np.float64,0x1a32d97e3465c,0xc090052781a37271,1
|
|
859
|
+
np.float64,0x3fdb09d2b1b613a5,0xbff3e396b862bd83,1
|
|
860
|
+
np.float64,0x3fe04c848aa09909,0xbfef2540dd90103a,1
|
|
861
|
+
np.float64,0x3fce0c48613c1891,0xc000b9f76877d744,1
|
|
862
|
+
np.float64,0x3fc37109a226e213,0xc005c05d8b2b9a2f,1
|
|
863
|
+
np.float64,0x81cf3837039e7,0xc08ff7d686517dff,1
|
|
864
|
+
np.float64,0xd9342c29b2686,0xc08ff1e591c9a895,1
|
|
865
|
+
np.float64,0x7fec731b0638e635,0x408ffea4884550a9,1
|
|
866
|
+
np.float64,0x3fba0fc138341f82,0xc00a5e839b085f64,1
|
|
867
|
+
np.float64,0x7fdda893b03b5126,0x408ff71f7c5a2797,1
|
|
868
|
+
np.float64,0xd2a4bb03a5498,0xc08ff2402f7a907c,1
|
|
869
|
+
np.float64,0x3fea61fb0d34c3f6,0xbfd1d293fbe76183,1
|
|
870
|
+
np.float64,0x3fed5cf486fab9e9,0xbfbfc2e01a7ffff1,1
|
|
871
|
+
np.float64,0x3fcbabc2bf375785,0xc001ad7750c9dbdf,1
|
|
872
|
+
np.float64,0x3fdb5fff53b6bfff,0xbff39a7973a0c6a5,1
|
|
873
|
+
np.float64,0x7feef05a00bde0b3,0x408fff9c5cbc8651,1
|
|
874
|
+
np.float64,0xb1cf24f1639e5,0xc08ff434de10fffb,1
|
|
875
|
+
np.float64,0x3fa583989c2b0731,0xc0124a8a3bbf18ce,1
|
|
876
|
+
np.float64,0x7feae90bf9f5d217,0x408ffe002e7bbbea,1
|
|
877
|
+
np.float64,0x3fe9ef41c4b3de84,0xbfd367878ae4528e,1
|
|
878
|
+
np.float64,0x9be24ce337c4a,0xc08ff5b9b1c31cf9,1
|
|
879
|
+
np.float64,0x3fe916894cb22d13,0xbfd677f915d58503,1
|
|
880
|
+
np.float64,0x3fec1bab20f83756,0xbfc7f2777aabe8ee,1
|
|
881
|
+
np.float64,0x3feaabf2873557e5,0xbfd0d11f28341233,1
|
|
882
|
+
np.float64,0x3fd4d3c3b529a787,0xbff9e9e47acc8ca9,1
|
|
883
|
+
np.float64,0x3fe4cfe96c699fd3,0xbfe3dc53fa739169,1
|
|
884
|
+
np.float64,0xccfdb97399fb7,0xc08ff2908d893400,1
|
|
885
|
+
np.float64,0x3fec7598be78eb31,0xbfc5a750f8f3441a,1
|
|
886
|
+
np.float64,0x355be5fc6ab7e,0xc090010ca315b50b,1
|
|
887
|
+
np.float64,0x3fba9f9074353f21,0xc00a1f80eaf5e581,1
|
|
888
|
+
np.float64,0x7fdcaff189395fe2,0x408ff6bd1c5b90d9,1
|
|
889
|
+
np.float64,0x3fd94d3b64b29a77,0xbff56be1b43d25f3,1
|
|
890
|
+
np.float64,0x4e5f29949cbe6,0xc08ffda972da1d73,1
|
|
891
|
+
np.float64,0x3fe654e2d9aca9c6,0xbfe09b88dcd8f15d,1
|
|
892
|
+
np.float64,0x7fdc130190b82602,0x408ff67d496c1a27,1
|
|
893
|
+
np.float64,0x3fbcd4701e39a8e0,0xc009343e36627e80,1
|
|
894
|
+
np.float64,0x7fdaa4d38f3549a6,0x408ff5e2c6d8678f,1
|
|
895
|
+
np.float64,0x3febe95e5237d2bd,0xbfc93e16d453fe3a,1
|
|
896
|
+
np.float64,0x9ef5ca553deba,0xc08ff57ff4f7883d,1
|
|
897
|
+
np.float64,0x7fe878e91170f1d1,0x408ffce795868fc8,1
|
|
898
|
+
np.float64,0x3fe63dff466c7bff,0xbfe0caf2b79c9e5f,1
|
|
899
|
+
np.float64,0x6561446ccac29,0xc08ffab0e383834c,1
|
|
900
|
+
np.float64,0x30c6c2ae618d9,0xc09001914b30381b,1
|
|
901
|
+
np.float64,0x7ff0000000000000,0x7ff0000000000000,1
|
|
902
|
+
np.float64,0x3fe5c9daf1ab93b6,0xbfe1be81baf4dbdb,1
|
|
903
|
+
np.float64,0x3fe0a03e24a1407c,0xbfee3a73c4c0e8f8,1
|
|
904
|
+
np.float64,0xff2a2cf3fe546,0xc08ff009a7e6e782,1
|
|
905
|
+
np.float64,0x7fcf0332213e0663,0x408fefa36235e210,1
|
|
906
|
+
np.float64,0x3fb612affc2c2560,0xc00c494be9c8c33b,1
|
|
907
|
+
np.float64,0x3fd2b259702564b3,0xbffc67967f077e75,1
|
|
908
|
+
np.float64,0x7fcb63685d36c6d0,0x408fee343343f913,1
|
|
909
|
+
np.float64,0x3fe369f1d5a6d3e4,0xbfe71251139939ad,1
|
|
910
|
+
np.float64,0x3fdd17c618ba2f8c,0xbff232d11c986251,1
|
|
911
|
+
np.float64,0x3f92cc8040259901,0xc01711d8e06b52ee,1
|
|
912
|
+
np.float64,0x69a81dc2d3504,0xc08ffa36cdaf1141,1
|
|
913
|
+
np.float64,0x3fea0fad99b41f5b,0xbfd2f4625a652645,1
|
|
914
|
+
np.float64,0xd1cd5799a39ab,0xc08ff24c02b90d26,1
|
|
915
|
+
np.float64,0x324e59ce649cc,0xc0900163ad091c76,1
|
|
916
|
+
np.float64,0x3fc3d460a227a8c1,0xc00585f903dc7a7f,1
|
|
917
|
+
np.float64,0xa7185ec74e30c,0xc08ff4ec7d65ccd9,1
|
|
918
|
+
np.float64,0x3fa254eaac24a9d5,0xc01337053963321a,1
|
|
919
|
+
np.float64,0x3feaeb112435d622,0xbfcfef3be17f81f6,1
|
|
920
|
+
np.float64,0x60144c3ac028a,0xc08ffb4f8eb94595,1
|
|
921
|
+
np.float64,0x7fa4d2ec6829a5d8,0x408fdb0a9670ab83,1
|
|
922
|
+
np.float64,0x3fed1372f97a26e6,0xbfc1b1fe50d48a55,1
|
|
923
|
+
np.float64,0x3fd5ade5972b5bcb,0xbff8fcf28f525031,1
|
|
924
|
+
np.float64,0x7fe72e335bee5c66,0x408ffc4759236437,1
|
|
925
|
+
np.float64,0x7fdfafab143f5f55,0x408ff7e2e22a8129,1
|
|
926
|
+
np.float64,0x3fe90d0db9321a1b,0xbfd69ae5fe10eb9e,1
|
|
927
|
+
np.float64,0x7fe20a59072414b1,0x408ff962a2492484,1
|
|
928
|
+
np.float64,0x3fed853690bb0a6d,0xbfbdc9dc5f199d2b,1
|
|
929
|
+
np.float64,0x3fd709d469ae13a9,0xbff795a218deb700,1
|
|
930
|
+
np.float64,0x3fe21c35f5e4386c,0xbfea47d71789329b,1
|
|
931
|
+
np.float64,0x9ea5ec053d4be,0xc08ff585c2f6b7a3,1
|
|
932
|
+
np.float64,0x3fc0580f9e20b01f,0xc007c1268f49d037,1
|
|
933
|
+
np.float64,0xd99127abb3225,0xc08ff1e0a1ff339d,1
|
|
934
|
+
np.float64,0x3fdc8c9bbfb91937,0xbff2a2478354effb,1
|
|
935
|
+
np.float64,0x3fe15fc6b162bf8d,0xbfec323ac358e008,1
|
|
936
|
+
np.float64,0xffefffffffffffff,0x7ff8000000000000,1
|
|
937
|
+
np.float64,0x3fee341afb3c6836,0xbfb556b6faee9a84,1
|
|
938
|
+
np.float64,0x3fe4b64c56296c99,0xbfe4154835ad2afe,1
|
|
939
|
+
np.float64,0x85de22810bbc5,0xc08ff77b914fe5b5,1
|
|
940
|
+
np.float64,0x3fd22c72e3a458e6,0xbffd0f4269d20bb9,1
|
|
941
|
+
np.float64,0xc090e5218123,0xc09009a4a65a8a8f,1
|
|
942
|
+
np.float64,0x7fd9641692b2c82c,0x408ff5547782bdfc,1
|
|
943
|
+
np.float64,0x3fd9b9cb28b37396,0xbff509a8fb59a9f1,1
|
|
944
|
+
np.float64,0x3fcd2726f93a4e4e,0xc001135059a22117,1
|
|
945
|
+
np.float64,0x3fa4b493d4296928,0xc0128323c7a55f4a,1
|
|
946
|
+
np.float64,0x47455e788e8ac,0xc08ffec2101c1e82,1
|
|
947
|
+
np.float64,0x3fe0d7e2e261afc6,0xbfeda0f1e2d0f4bd,1
|
|
948
|
+
np.float64,0x3fe860fc5b70c1f9,0xbfd91dc42eaf72c2,1
|
|
949
|
+
np.float64,0xa5d7805b4baf0,0xc08ff502bc819ff6,1
|
|
950
|
+
np.float64,0xd83395b1b0673,0xc08ff1f33c3f94c2,1
|
|
951
|
+
np.float64,0x3f865972e02cb2e6,0xc01a1243651565c8,1
|
|
952
|
+
np.float64,0x52fc6952a5f8e,0xc08ffd006b158179,1
|
|
953
|
+
np.float64,0x7fecac6c793958d8,0x408ffebbb1c09a70,1
|
|
954
|
+
np.float64,0x7fe621ff606c43fe,0x408ffbbeb2b1473a,1
|
|
955
|
+
np.float64,0x3fdb9f3f9db73e7f,0xbff365610c52bda7,1
|
|
956
|
+
np.float64,0x7feab92992757252,0x408ffdeb92a04813,1
|
|
957
|
+
np.float64,0xcc46c79f988d9,0xc08ff29adf03fb7c,1
|
|
958
|
+
np.float64,0x3fe3156a03262ad4,0xbfe7dd0f598781c7,1
|
|
959
|
+
np.float64,0x3fc00e3a61201c75,0xc007f5c121a87302,1
|
|
960
|
+
np.float64,0x3fdce8e9f739d1d4,0xbff2581d41ef50ef,1
|
|
961
|
+
np.float64,0x0,0xfff0000000000000,1
|
|
962
|
+
np.float64,0x7d373ac4fa6e8,0xc08ff840fa8beaec,1
|
|
963
|
+
np.float64,0x3fee41e0653c83c1,0xbfb4ae786f2a0d54,1
|
|
964
|
+
np.float64,0x3ff0000000000000,0x0,1
|
|
965
|
+
np.float64,0x7feca6fff9794dff,0x408ffeb982a70556,1
|
|
966
|
+
np.float64,0x7fc532716d2a64e2,0x408feb3f0f6c095b,1
|
|
967
|
+
np.float64,0x3fe4ec2954a9d853,0xbfe39dd44aa5a040,1
|
|
968
|
+
np.float64,0x7fd3321d52a6643a,0x408ff21a0ab9cd85,1
|
|
969
|
+
np.float64,0x7fd8f1b2dfb1e365,0x408ff52001fa7922,1
|
|
970
|
+
np.float64,0x3fee5e58cabcbcb2,0xbfb3539734a24d8b,1
|
|
971
|
+
np.float64,0x3feebf6e7dfd7edd,0xbfad7c648f025102,1
|
|
972
|
+
np.float64,0x6008026ec0101,0xc08ffb5108b54a93,1
|
|
973
|
+
np.float64,0x3fea06f5e2340dec,0xbfd3134a48283360,1
|
|
974
|
+
np.float64,0x41cad13c8395b,0xc08fffae654b2426,1
|
|
975
|
+
np.float64,0x7fedb5c9353b6b91,0x408fff249f1f32b6,1
|
|
976
|
+
np.float64,0xe00c5af9c018c,0xc08ff189e68c655f,1
|
|
977
|
+
np.float64,0x7feac398ddf58731,0x408ffdf01374de9f,1
|
|
978
|
+
np.float64,0x3fed21127c7a4225,0xbfc15b8cf55628fa,1
|
|
979
|
+
np.float64,0x3fd3446711a688ce,0xbffbb5f7252a9fa3,1
|
|
980
|
+
np.float64,0x7fe75fa07a6ebf40,0x408ffc5fdb096018,1
|
|
981
|
+
np.float64,0x3feeb1618cbd62c3,0xbfaece3bd0863070,1
|
|
982
|
+
np.float64,0x7f5226e180244dc2,0x408fb174d506e52f,1
|
|
983
|
+
np.float64,0x3fcd67deca3acfbe,0xc000f9cd7a490749,1
|
|
984
|
+
np.float64,0xdc6f30efb8de6,0xc08ff1b9f2a22d2e,1
|
|
985
|
+
np.float64,0x9c14931338293,0xc08ff5b5f975ec5d,1
|
|
986
|
+
np.float64,0x7fe93e802df27cff,0x408ffd4354eba0e0,1
|
|
987
|
+
np.float64,0x3feb92ae5077255d,0xbfcb7f2084e44dbb,1
|
|
988
|
+
np.float64,0xd78dbfddaf1b8,0xc08ff1fc19fa5a13,1
|
|
989
|
+
np.float64,0x7fe14c301fa2985f,0x408ff8e666cb6592,1
|
|
990
|
+
np.float64,0xbda3d8b77b47b,0xc08ff37689f4b2e5,1
|
|
991
|
+
np.float64,0x8a42953b14853,0xc08ff71c2db3b8cf,1
|
|
992
|
+
np.float64,0x7fe4ca7e186994fb,0x408ffb05e94254a7,1
|
|
993
|
+
np.float64,0x7fe92ffc5e325ff8,0x408ffd3cb0265b12,1
|
|
994
|
+
np.float64,0x91b262912364d,0xc08ff681619be214,1
|
|
995
|
+
np.float64,0x33fe2b0667fc6,0xc0900132f3fab55e,1
|
|
996
|
+
np.float64,0x3fde10e9183c21d2,0xbff17060fb4416c7,1
|
|
997
|
+
np.float64,0xb6b811cb6d702,0xc08ff3e46303b541,1
|
|
998
|
+
np.float64,0x3fe4a7bda0a94f7b,0xbfe435c6481cd0e3,1
|
|
999
|
+
np.float64,0x7fd9fe6057b3fcc0,0x408ff599c79a822c,1
|
|
1000
|
+
np.float64,0x3fef44bf917e897f,0xbfa11484e351a6e9,1
|
|
1001
|
+
np.float64,0x3fe57d701daafae0,0xbfe2618ab40fc01b,1
|
|
1002
|
+
np.float64,0x7fe52d2adbaa5a55,0x408ffb3c2fb1c99d,1
|
|
1003
|
+
np.float64,0xb432f66d6865f,0xc08ff40d6b4084fe,1
|
|
1004
|
+
np.float64,0xbff0000000000000,0x7ff8000000000000,1
|
|
1005
|
+
np.float64,0x7fecd2292bf9a451,0x408ffecad860de6f,1
|
|
1006
|
+
np.float64,0x3fddd2ae153ba55c,0xbff1a059adaca33e,1
|
|
1007
|
+
np.float64,0x3fee55d6e5bcabae,0xbfb3bb1c6179d820,1
|
|
1008
|
+
np.float64,0x7fc1d0085623a010,0x408fe93d16ada7a7,1
|
|
1009
|
+
np.float64,0x829b000105360,0xc08ff7c47629a68f,1
|
|
1010
|
+
np.float64,0x7fe1e0257523c04a,0x408ff94782cf0717,1
|
|
1011
|
+
np.float64,0x7fd652f9ad2ca5f2,0x408ff3d820ec892e,1
|
|
1012
|
+
np.float64,0x3fef2246203e448c,0xbfa444ab6209d8cd,1
|
|
1013
|
+
np.float64,0x3fec6c0ae178d816,0xbfc5e559ebd4e790,1
|
|
1014
|
+
np.float64,0x3fe6ddfee92dbbfe,0xbfdf06dd7d3fa7a8,1
|
|
1015
|
+
np.float64,0x3fb7fbcbea2ff798,0xc00b5404d859d148,1
|
|
1016
|
+
np.float64,0x7feb9a154d37342a,0x408ffe4b26c29e55,1
|
|
1017
|
+
np.float64,0x3fe4db717aa9b6e3,0xbfe3c2c6b3ef13bc,1
|
|
1018
|
+
np.float64,0x3fbae17dda35c2fc,0xc00a030f7f4b37e7,1
|
|
1019
|
+
np.float64,0x7fd632b9082c6571,0x408ff3c76826ef19,1
|
|
1020
|
+
np.float64,0x7fc4184a15283093,0x408feaa14adf00be,1
|
|
1021
|
+
np.float64,0x3fe052d19920a5a3,0xbfef136b5df81a3e,1
|
|
1022
|
+
np.float64,0x7fe38b872b67170d,0x408ffa4f51aafc86,1
|
|
1023
|
+
np.float64,0x3fef9842d03f3086,0xbf92d3d2a21d4be2,1
|
|
1024
|
+
np.float64,0x9cea662139d4d,0xc08ff5a634810daa,1
|
|
1025
|
+
np.float64,0x3fe35f0855e6be11,0xbfe72c4b564e62aa,1
|
|
1026
|
+
np.float64,0x3fecee3d3779dc7a,0xbfc29ee942f8729e,1
|
|
1027
|
+
np.float64,0x3fe7903fd72f2080,0xbfdc41db9b5f4048,1
|
|
1028
|
+
np.float64,0xb958889572b11,0xc08ff3ba366cf84b,1
|
|
1029
|
+
np.float64,0x3fcb3a67c53674d0,0xc001dd21081ad1ea,1
|
|
1030
|
+
np.float64,0xe3b1b53fc7637,0xc08ff15a3505e1ce,1
|
|
1031
|
+
np.float64,0xe5954ae9cb2aa,0xc08ff141cbbf0ae4,1
|
|
1032
|
+
np.float64,0x3fe394af74e7295f,0xbfe6ad1d13f206e8,1
|
|
1033
|
+
np.float64,0x7fe21dd704643bad,0x408ff96f13f80c1a,1
|
|
1034
|
+
np.float64,0x3fd23a7cf02474fa,0xbffcfd7454117a05,1
|
|
1035
|
+
np.float64,0x7fe257515e24aea2,0x408ff99378764d52,1
|
|
1036
|
+
np.float64,0x7fe4c5d0a6e98ba0,0x408ffb03503cf939,1
|
|
1037
|
+
np.float64,0x3fadc2c1603b8583,0xc0106b2c17550e3a,1
|
|
1038
|
+
np.float64,0x3fc0f7f02421efe0,0xc007525ac446864c,1
|
|
1039
|
+
np.float64,0x3feaf0b27275e165,0xbfcfc8a03eaa32ad,1
|
|
1040
|
+
np.float64,0x5ce7503cb9ceb,0xc08ffbb2de365fa8,1
|
|
1041
|
+
np.float64,0x2a0014f654003,0xc090026e41761a0d,1
|
|
1042
|
+
np.float64,0x7fe2c848a8e59090,0x408ff9d9b723ee89,1
|
|
1043
|
+
np.float64,0x7f66f54bc02dea97,0x408fbc2ae0ec5623,1
|
|
1044
|
+
np.float64,0xa35a890146b6,0xc0900a97b358ddbd,1
|
|
1045
|
+
np.float64,0x7fee267ded7c4cfb,0x408fff501560c9f5,1
|
|
1046
|
+
np.float64,0x3fe07c328520f865,0xbfee9ef7c3435b58,1
|
|
1047
|
+
np.float64,0x3fe67122cf6ce246,0xbfe06147001932ba,1
|
|
1048
|
+
np.float64,0x3fdacc8925359912,0xbff41824cece219e,1
|
|
1049
|
+
np.float64,0xffa3047fff461,0xc08ff00431ec9be3,1
|
|
1050
|
+
np.float64,0x3e1af43e7c35f,0xc090002c6573d29b,1
|
|
1051
|
+
np.float64,0x86fa94590df53,0xc08ff7632525ed92,1
|
|
1052
|
+
np.float64,0x7fec4c76227898eb,0x408ffe94d032c657,1
|
|
1053
|
+
np.float64,0x7fe2274ce1e44e99,0x408ff975194cfdff,1
|
|
1054
|
+
np.float64,0x7fe670e1b4ace1c2,0x408ffbe78cc451de,1
|
|
1055
|
+
np.float64,0x7fe853871db0a70d,0x408ffcd5e6a6ff47,1
|
|
1056
|
+
np.float64,0x3fcbf265db37e4cc,0xc0019026336e1176,1
|
|
1057
|
+
np.float64,0x3fef033cef3e067a,0xbfa726712eaae7f0,1
|
|
1058
|
+
np.float64,0x5d74973abae94,0xc08ffba15e6bb992,1
|
|
1059
|
+
np.float64,0x7fdd9c99b6bb3932,0x408ff71ad24a7ae0,1
|
|
1060
|
+
np.float64,0xbdc8e09b7b91c,0xc08ff3744939e9a3,1
|
|
1061
|
+
np.float64,0xdbfcff71b7fa0,0xc08ff1bfeecc9dfb,1
|
|
1062
|
+
np.float64,0xf9b38cf5f3672,0xc08ff0499af34a43,1
|
|
1063
|
+
np.float64,0x3fea820aa6b50415,0xbfd162a38e1927b1,1
|
|
1064
|
+
np.float64,0x3fe67f59a12cfeb3,0xbfe04412adca49dc,1
|
|
1065
|
+
np.float64,0x3feb301d9c76603b,0xbfce17e6edeb92d5,1
|
|
1066
|
+
np.float64,0x828ce00b0519c,0xc08ff7c5b5c57cde,1
|
|
1067
|
+
np.float64,0x4f935e229f26c,0xc08ffd7c67c1c54f,1
|
|
1068
|
+
np.float64,0x7fcd139e023a273b,0x408feee4f12ff11e,1
|
|
1069
|
+
np.float64,0x666a9944ccd54,0xc08ffa92d5e5cd64,1
|
|
1070
|
+
np.float64,0x3fe792f0fa6f25e2,0xbfdc374fda28f470,1
|
|
1071
|
+
np.float64,0xe996029bd32c1,0xc08ff10eb9b47a11,1
|
|
1072
|
+
np.float64,0x3fe7b0dd1eef61ba,0xbfdbc2676dc77db0,1
|
|
1073
|
+
np.float64,0x7fd3ec0127a7d801,0x408ff287bf47e27d,1
|
|
1074
|
+
np.float64,0x3fe793a8ea6f2752,0xbfdc347f7717e48d,1
|
|
1075
|
+
np.float64,0x7fdb89d15e3713a2,0x408ff64457a13ea2,1
|
|
1076
|
+
np.float64,0x3fe35b3cbbe6b679,0xbfe73557c8321b70,1
|
|
1077
|
+
np.float64,0x66573c94ccae8,0xc08ffa9504af7eb5,1
|
|
1078
|
+
np.float64,0x3fc620a2302c4144,0xc00442036b944a67,1
|
|
1079
|
+
np.float64,0x49b2fe0693660,0xc08ffe5f131c3c7e,1
|
|
1080
|
+
np.float64,0x7fda936cdfb526d9,0x408ff5db3ab3f701,1
|
|
1081
|
+
np.float64,0xc774ceef8ee9a,0xc08ff2e16d082fa1,1
|
|
1082
|
+
np.float64,0x4da9f8a09b55,0xc0900ee2206d0c88,1
|
|
1083
|
+
np.float64,0x3fe2ca5d5ae594bb,0xbfe89406611a5f1a,1
|
|
1084
|
+
np.float64,0x7fe0832497e10648,0x408ff85d1de6056e,1
|
|
1085
|
+
np.float64,0x3fe6a9e3222d53c6,0xbfdfda35a9bc2de1,1
|
|
1086
|
+
np.float64,0x3fed3d92c8ba7b26,0xbfc0a73620db8b98,1
|
|
1087
|
+
np.float64,0x3fdd2ec093ba5d81,0xbff2209cf78ce3f1,1
|
|
1088
|
+
np.float64,0x62fcb968c5f98,0xc08ffaf775a593c7,1
|
|
1089
|
+
np.float64,0xfcfb019ff9f60,0xc08ff0230e95bd16,1
|
|
1090
|
+
np.float64,0x3fd7a63e8f2f4c7d,0xbff6faf4fff7dbe0,1
|
|
1091
|
+
np.float64,0x3fef23b0ec3e4762,0xbfa4230cb176f917,1
|
|
1092
|
+
np.float64,0x340d1e6a681a5,0xc09001314b68a0a2,1
|
|
1093
|
+
np.float64,0x7fc0b85ba02170b6,0x408fe8821487b802,1
|
|
1094
|
+
np.float64,0x7fe9976e84f32edc,0x408ffd6bb6aaf467,1
|
|
1095
|
+
np.float64,0x329a0e9e65343,0xc090015b044e3270,1
|
|
1096
|
+
np.float64,0x3fea4928d3f49252,0xbfd2299b05546eab,1
|
|
1097
|
+
np.float64,0x3f188c70003118e0,0xc02ac3ce23bc5d5a,1
|
|
1098
|
+
np.float64,0x3fecce5020b99ca0,0xbfc36b23153d5f50,1
|
|
1099
|
+
np.float64,0x3fe203873e24070e,0xbfea86edb3690830,1
|
|
1100
|
+
np.float64,0x3fe02d9eaa205b3d,0xbfef7d18c54a76d2,1
|
|
1101
|
+
np.float64,0xef7537ebdeea7,0xc08ff0c55e9d89e7,1
|
|
1102
|
+
np.float64,0x3fedf7572efbeeae,0xbfb840af357cf07c,1
|
|
1103
|
+
np.float64,0xd1a97a61a354,0xc0900926fdfb96cc,1
|
|
1104
|
+
np.float64,0x7fe6a0daeced41b5,0x408ffc001edf1407,1
|
|
1105
|
+
np.float64,0x3fe5063625aa0c6c,0xbfe3647cfb949d62,1
|
|
1106
|
+
np.float64,0x7fe9b28d31736519,0x408ffd77eb4a922b,1
|
|
1107
|
+
np.float64,0x7feea90d033d5219,0x408fff81a4bbff62,1
|
|
1108
|
+
np.float64,0x3fe9494d17f2929a,0xbfd5bde02eb5287a,1
|
|
1109
|
+
np.float64,0x7feee17a8cbdc2f4,0x408fff96cf0dc16a,1
|
|
1110
|
+
np.float64,0xb2ad18ef655a3,0xc08ff4267eda8af8,1
|
|
1111
|
+
np.float64,0x3fad3b52683a76a5,0xc01085ab75b797ce,1
|
|
1112
|
+
np.float64,0x2300a65846016,0xc090037b81ce9500,1
|
|
1113
|
+
np.float64,0x3feb1041f9b62084,0xbfcef0c87d8b3249,1
|
|
1114
|
+
np.float64,0x3fdd887d3e3b10fa,0xbff1da0e1ede6db2,1
|
|
1115
|
+
np.float64,0x3fd3e410eb27c822,0xbffaf9b5fc9cc8cc,1
|
|
1116
|
+
np.float64,0x3fe0aa53e3e154a8,0xbfee1e7b5c486578,1
|
|
1117
|
+
np.float64,0x7fe33e389aa67c70,0x408ffa214fe50961,1
|
|
1118
|
+
np.float64,0x3fd27e3a43a4fc75,0xbffca84a79e8adeb,1
|
|
1119
|
+
np.float64,0x3fb309e0082613c0,0xc00dfe407b77a508,1
|
|
1120
|
+
np.float64,0x7feaf2ed8cf5e5da,0x408ffe046a9d1ba9,1
|
|
1121
|
+
np.float64,0x1e76167a3cec4,0xc0900448cd35ec67,1
|
|
1122
|
+
np.float64,0x3fe0a18e1721431c,0xbfee36cf1165a0d4,1
|
|
1123
|
+
np.float64,0x3fa73b78c02e76f2,0xc011d9069823b172,1
|
|
1124
|
+
np.float64,0x3fef6d48287eda90,0xbf9ab2d08722c101,1
|
|
1125
|
+
np.float64,0x8fdf0da31fbe2,0xc08ff6a6a2accaa1,1
|
|
1126
|
+
np.float64,0x3fc3638db826c71b,0xc005c86191688826,1
|
|
1127
|
+
np.float64,0xaa9c09c555381,0xc08ff4aefe1d9473,1
|
|
1128
|
+
np.float64,0x7fccb0f4523961e8,0x408feebd84773f23,1
|
|
1129
|
+
np.float64,0xede75dcfdbcec,0xc08ff0d89ba887d1,1
|
|
1130
|
+
np.float64,0x7f8a051520340a29,0x408fcd9cc17f0d95,1
|
|
1131
|
+
np.float64,0x3fef5ca2babeb945,0xbf9dc221f3618e6a,1
|
|
1132
|
+
np.float64,0x7fea0ff4bcf41fe8,0x408ffda193359f22,1
|
|
1133
|
+
np.float64,0x7fe05c53fd20b8a7,0x408ff841dc7123e8,1
|
|
1134
|
+
np.float64,0x3fc625664b2c4acd,0xc0043f8749b9a1d8,1
|
|
1135
|
+
np.float64,0x7fed58f98f7ab1f2,0x408fff00585f48c2,1
|
|
1136
|
+
np.float64,0x3fb3e5e51427cbca,0xc00d7bcb6528cafe,1
|
|
1137
|
+
np.float64,0x3fe728bd3d6e517a,0xbfdddafa72bd0f60,1
|
|
1138
|
+
np.float64,0x3fe3f005dd27e00c,0xbfe5d7b3ec93bca0,1
|
|
1139
|
+
np.float64,0x3fd74fbd1a2e9f7a,0xbff750001b63ce81,1
|
|
1140
|
+
np.float64,0x3fd3af6d85a75edb,0xbffb371d678d11b4,1
|
|
1141
|
+
np.float64,0x7fa690ad8c2d215a,0x408fdbf7db9c7640,1
|
|
1142
|
+
np.float64,0x3fbdfd38e23bfa72,0xc008bfc1c5c9b89e,1
|
|
1143
|
+
np.float64,0x3fe2374684a46e8d,0xbfea030c4595dfba,1
|
|
1144
|
+
np.float64,0x7fc0806c372100d7,0x408fe85b36fee334,1
|
|
1145
|
+
np.float64,0x3fef3ac47b7e7589,0xbfa2007195c5213f,1
|
|
1146
|
+
np.float64,0x3fb55473922aa8e7,0xc00cae7af8230e0c,1
|
|
1147
|
+
np.float64,0x7fe018dc152031b7,0x408ff811e0d712fa,1
|
|
1148
|
+
np.float64,0x3fe3b3fca56767f9,0xbfe6638ae2c99c62,1
|
|
1149
|
+
np.float64,0x7fac79818c38f302,0x408fdea720b39c3c,1
|
|
1150
|
+
np.float64,0x7fefffffffffffff,0x4090000000000000,1
|
|
1151
|
+
np.float64,0xd2b290cba5652,0xc08ff23f6d7152a6,1
|
|
1152
|
+
np.float64,0x7fc5848eb52b091c,0x408feb6b6f8b77d0,1
|
|
1153
|
+
np.float64,0xf399f62de733f,0xc08ff092ae319ad8,1
|
|
1154
|
+
np.float64,0x7fdec56c12bd8ad7,0x408ff78c4ddbc667,1
|
|
1155
|
+
np.float64,0x3fca640f1e34c81e,0xc0023969c5cbfa4c,1
|
|
1156
|
+
np.float64,0x3fd55225db2aa44c,0xbff95f7442a2189e,1
|
|
1157
|
+
np.float64,0x7fefa009a97f4012,0x408fffdd2f42ef9f,1
|
|
1158
|
+
np.float64,0x4a3b70609478,0xc0900f24e449bc3d,1
|
|
1159
|
+
np.float64,0x7fe3738b1ba6e715,0x408ffa411f2cb5e7,1
|
|
1160
|
+
np.float64,0x7fe5e53f0b6bca7d,0x408ffb9ed8d95cea,1
|
|
1161
|
+
np.float64,0x3fe274dd24a4e9ba,0xbfe967fb114b2a83,1
|
|
1162
|
+
np.float64,0x3fcbc58b8c378b17,0xc001a2bb1e158bcc,1
|
|
1163
|
+
np.float64,0x3fefc2c0043f8580,0xbf862c9b464dcf38,1
|
|
1164
|
+
np.float64,0xc2c4fafd858a0,0xc08ff327aecc409b,1
|
|
1165
|
+
np.float64,0x3fd8bc39a9b17873,0xbff5f1ad46e5a51c,1
|
|
1166
|
+
np.float64,0x3fdf341656be682d,0xbff094f41e7cb4c4,1
|
|
1167
|
+
np.float64,0x3fef8495c13f092c,0xbf966cf6313bae4c,1
|
|
1168
|
+
np.float64,0x3fe14e0f05229c1e,0xbfec6166f26b7161,1
|
|
1169
|
+
np.float64,0x3fed42d3b2ba85a7,0xbfc0860b773d35d8,1
|
|
1170
|
+
np.float64,0x7fd92bbac5b25775,0x408ff53abcb3fe0c,1
|
|
1171
|
+
np.float64,0xb1635b6f62c6c,0xc08ff43bdf47accf,1
|
|
1172
|
+
np.float64,0x4a3a2dbc94746,0xc08ffe49fabddb36,1
|
|
1173
|
+
np.float64,0x87d831290fb06,0xc08ff750419dc6fb,1
|
|
1174
|
+
np.float64,0x3fec4713f7f88e28,0xbfc6d6217c9f5cf9,1
|
|
1175
|
+
np.float64,0x7fed43ba2d3a8773,0x408ffef7fa2fc303,1
|
|
1176
|
+
np.float64,0x7fd1ec5b56a3d8b6,0x408ff14f62615f1e,1
|
|
1177
|
+
np.float64,0x3fee534b6c7ca697,0xbfb3da1951aa3e68,1
|
|
1178
|
+
np.float64,0x3febb564c2b76aca,0xbfca9737062e55e7,1
|
|
1179
|
+
np.float64,0x943e6b0f287ce,0xc08ff64e2d09335c,1
|
|
1180
|
+
np.float64,0xf177d957e2efb,0xc08ff0acab2999fa,1
|
|
1181
|
+
np.float64,0x7fb5b881a82b7102,0x408fe3872b4fde5e,1
|
|
1182
|
+
np.float64,0x3fdb2b4a97b65695,0xbff3c715c91359bc,1
|
|
1183
|
+
np.float64,0x3fac0a17e4381430,0xc010c330967309fb,1
|
|
1184
|
+
np.float64,0x7fd8057990b00af2,0x408ff4b0a287a348,1
|
|
1185
|
+
np.float64,0x1f9026a23f206,0xc09004144f3a19dd,1
|
|
1186
|
+
np.float64,0x3fdb2977243652ee,0xbff3c8a2fd05803d,1
|
|
1187
|
+
np.float64,0x3fe0f6e74b21edcf,0xbfed4c3bb956bae0,1
|
|
1188
|
+
np.float64,0xde9cc3bbbd399,0xc08ff19ce5c1e762,1
|
|
1189
|
+
np.float64,0x3fe72ce106ae59c2,0xbfddca7ab14ceba2,1
|
|
1190
|
+
np.float64,0x3fa8ee14e031dc2a,0xc01170d54ca88e86,1
|
|
1191
|
+
np.float64,0x3fe0b09bbb216137,0xbfee0d189a95b877,1
|
|
1192
|
+
np.float64,0x7fdfdcb157bfb962,0x408ff7f33cf2afea,1
|
|
1193
|
+
np.float64,0x3fef84d5f53f09ac,0xbf966134e2a154f4,1
|
|
1194
|
+
np.float64,0x3fea0e0b1bb41c16,0xbfd2fa2d36637d19,1
|
|
1195
|
+
np.float64,0x1ab76fd6356ef,0xc090050a9616ffbd,1
|
|
1196
|
+
np.float64,0x7fd0ccf79a2199ee,0x408ff09045af2dee,1
|
|
1197
|
+
np.float64,0x7fea929345f52526,0x408ffddadc322b07,1
|
|
1198
|
+
np.float64,0x3fe9ef629cf3dec5,0xbfd367129c166838,1
|
|
1199
|
+
np.float64,0x3feedf0ea2fdbe1d,0xbfaa862afca44c00,1
|
|
1200
|
+
np.float64,0x7fce725f723ce4be,0x408fef6cfd2769a8,1
|
|
1201
|
+
np.float64,0x7fe4313b3ca86275,0x408ffaaf9557ef8c,1
|
|
1202
|
+
np.float64,0xe2d46463c5a8d,0xc08ff165725c6b08,1
|
|
1203
|
+
np.float64,0x7fbacb4ace359695,0x408fe5f3647bd0d5,1
|
|
1204
|
+
np.float64,0x3fbafd009635fa01,0xc009f745a7a5c5d5,1
|
|
1205
|
+
np.float64,0x3fe3cea66ce79d4d,0xbfe6253b895e2838,1
|
|
1206
|
+
np.float64,0x7feaa71484354e28,0x408ffde3c0bad2a6,1
|
|
1207
|
+
np.float64,0x3fd755b8b42eab71,0xbff74a1444c6e654,1
|
|
1208
|
+
np.float64,0x3fc313e2172627c4,0xc005f830e77940c3,1
|
|
1209
|
+
np.float64,0x12d699a225ad4,0xc090070ec00f2338,1
|
|
1210
|
+
np.float64,0x3fa975fe8432ebfd,0xc01151b3da48b3f9,1
|
|
1211
|
+
np.float64,0x7fdce3103b39c61f,0x408ff6d19b3326fa,1
|
|
1212
|
+
np.float64,0x7fd341cbba268396,0x408ff2237490fdca,1
|
|
1213
|
+
np.float64,0x3fd8405885b080b1,0xbff6666d8802a7d5,1
|
|
1214
|
+
np.float64,0x3fe0f0cca3a1e199,0xbfed5cdb3e600791,1
|
|
1215
|
+
np.float64,0x7fbd56680c3aaccf,0x408fe6ff55bf378d,1
|
|
1216
|
+
np.float64,0x3f939c4f3027389e,0xc016d364dd6313fb,1
|
|
1217
|
+
np.float64,0x3fe9e87fac73d0ff,0xbfd37f9a2be4fe38,1
|
|
1218
|
+
np.float64,0x7fc93c6a883278d4,0x408fed4260e614f1,1
|
|
1219
|
+
np.float64,0x7fa88c0ff031181f,0x408fdcf09a46bd3a,1
|
|
1220
|
+
np.float64,0xd5487f99aa910,0xc08ff21b6390ab3b,1
|
|
1221
|
+
np.float64,0x3fe34acc96e69599,0xbfe75c9d290428fb,1
|
|
1222
|
+
np.float64,0x3fd17f5964a2feb3,0xbffdef50b524137b,1
|
|
1223
|
+
np.float64,0xe23dec0dc47be,0xc08ff16d1ce61dcb,1
|
|
1224
|
+
np.float64,0x3fec8bd64fb917ad,0xbfc5173941614b8f,1
|
|
1225
|
+
np.float64,0x3fc81d97d7303b30,0xc00343ccb791401d,1
|
|
1226
|
+
np.float64,0x7fe79ad18e2f35a2,0x408ffc7cf0ab0f2a,1
|
|
1227
|
+
np.float64,0x3f96306b402c60d7,0xc0161ce54754cac1,1
|
|
1228
|
+
np.float64,0xfb09fc97f6140,0xc08ff039d1d30123,1
|
|
1229
|
+
np.float64,0x3fec9c4afa793896,0xbfc4ace43ee46079,1
|
|
1230
|
+
np.float64,0x3f9262dac824c5b6,0xc01732a3a7eeb598,1
|
|
1231
|
+
np.float64,0x3fa5cd33f42b9a68,0xc01236ed4d315a3a,1
|
|
1232
|
+
np.float64,0x3fe7bb336caf7667,0xbfdb9a268a82e267,1
|
|
1233
|
+
np.float64,0xc6c338f98d867,0xc08ff2ebb8475bbc,1
|
|
1234
|
+
np.float64,0x3fd50714482a0e29,0xbff9b14a9f84f2c2,1
|
|
1235
|
+
np.float64,0xfff0000000000000,0x7ff8000000000000,1
|
|
1236
|
+
np.float64,0x3fde2cd0f93c59a2,0xbff15afe35a43a37,1
|
|
1237
|
+
np.float64,0xf1719cb9e2e34,0xc08ff0acf77b06d3,1
|
|
1238
|
+
np.float64,0xfd3caaf9fa796,0xc08ff020101771bd,1
|
|
1239
|
+
np.float64,0x7f750d63a02a1ac6,0x408fc32ad0caa362,1
|
|
1240
|
+
np.float64,0x7fcc50f4e238a1e9,0x408fee96a5622f1a,1
|
|
1241
|
+
np.float64,0x421d1da0843a4,0xc08fff9ffe62d869,1
|
|
1242
|
+
np.float64,0x3fd9e17023b3c2e0,0xbff4e631d687ee8e,1
|
|
1243
|
+
np.float64,0x3fe4999a09693334,0xbfe4556b3734c215,1
|
|
1244
|
+
np.float64,0xd619ef03ac33e,0xc08ff21013c85529,1
|
|
1245
|
+
np.float64,0x3fc4da522229b4a4,0xc004f150b2c573aa,1
|
|
1246
|
+
np.float64,0x3feb04b053b60961,0xbfcf3fc9e00ebc40,1
|
|
1247
|
+
np.float64,0x3fbedec5ea3dbd8c,0xc0086a33dc22fab5,1
|
|
1248
|
+
np.float64,0x7fec3b217ab87642,0x408ffe8dbc8ca041,1
|
|
1249
|
+
np.float64,0xdb257d33b64b0,0xc08ff1cb42d3c182,1
|
|
1250
|
+
np.float64,0x7fa2d92ec025b25d,0x408fd9e414d11cb0,1
|
|
1251
|
+
np.float64,0x3fa425c550284b8b,0xc012ab7cbf83be12,1
|
|
1252
|
+
np.float64,0x10b4869021692,0xc09007c0487d648a,1
|
|
1253
|
+
np.float64,0x7f97918c902f2318,0x408fd47867806574,1
|
|
1254
|
+
np.float64,0x3fe4f91238e9f224,0xbfe38160b4e99919,1
|
|
1255
|
+
np.float64,0x3fc2b1af6125635f,0xc00634343bc58461,1
|
|
1256
|
+
np.float64,0x3fc2a98071255301,0xc0063942bc8301be,1
|
|
1257
|
+
np.float64,0x3fe4cfc585299f8b,0xbfe3dca39f114f34,1
|
|
1258
|
+
np.float64,0x3fd1ea75b3a3d4eb,0xbffd63acd02c5406,1
|
|
1259
|
+
np.float64,0x3fd6bf48492d7e91,0xbff7e0cd249f80f9,1
|
|
1260
|
+
np.float64,0x76643d36ecc88,0xc08ff8e68f13b38c,1
|
|
1261
|
+
np.float64,0x7feeabab3e7d5755,0x408fff82a0fd4501,1
|
|
1262
|
+
np.float64,0x46c0d4a68d81b,0xc08ffed79abaddc9,1
|
|
1263
|
+
np.float64,0x3fd088d57ca111ab,0xbfff3dd0ed7128ea,1
|
|
1264
|
+
np.float64,0x3fed25887cba4b11,0xbfc13f47639bd645,1
|
|
1265
|
+
np.float64,0x7fd90984b4b21308,0x408ff52b022c7fb4,1
|
|
1266
|
+
np.float64,0x3fe6ef31daadde64,0xbfdec185760cbf21,1
|
|
1267
|
+
np.float64,0x3fe48dbe83291b7d,0xbfe47005b99920bd,1
|
|
1268
|
+
np.float64,0x3fdce8422f39d084,0xbff258a33a96cc8e,1
|
|
1269
|
+
np.float64,0xb8ecdef771d9c,0xc08ff3c0eca61b10,1
|
|
1270
|
+
np.float64,0x3fe9bbf9a03377f3,0xbfd41ecfdcc336b9,1
|
|
1271
|
+
np.float64,0x7fe2565339a4aca5,0x408ff992d8851eaf,1
|
|
1272
|
+
np.float64,0x3fe1693e3822d27c,0xbfec1919da2ca697,1
|
|
1273
|
+
np.float64,0x3fd3680488a6d009,0xbffb8b7330275947,1
|
|
1274
|
+
np.float64,0x7fbe4f3d2c3c9e79,0x408fe75fa3f4e600,1
|
|
1275
|
+
np.float64,0x7fd4cfef3ca99fdd,0x408ff308ee3ab50f,1
|
|
1276
|
+
np.float64,0x3fd9c9a51cb3934a,0xbff4fb7440055ce6,1
|
|
1277
|
+
np.float64,0x3fe08a9640a1152d,0xbfee76bd1bfbf5c2,1
|
|
1278
|
+
np.float64,0x3fef012c41fe0259,0xbfa757a2da7f9707,1
|
|
1279
|
+
np.float64,0x3fee653fe2fcca80,0xbfb2ffae0c95025c,1
|
|
1280
|
+
np.float64,0x7fd0776933a0eed1,0x408ff054e7b43d41,1
|
|
1281
|
+
np.float64,0x4c94e5c09929d,0xc08ffdedb7f49e5e,1
|
|
1282
|
+
np.float64,0xca3e3d17947c8,0xc08ff2b86dce2f7a,1
|
|
1283
|
+
np.float64,0x3fb528e1342a51c2,0xc00cc626c8e2d9ba,1
|
|
1284
|
+
np.float64,0xd774df81aee9c,0xc08ff1fd6f0a7548,1
|
|
1285
|
+
np.float64,0x3fc47a9b6128f537,0xc00526c577b80849,1
|
|
1286
|
+
np.float64,0x3fe29a6f6a6534df,0xbfe90a5f83644911,1
|
|
1287
|
+
np.float64,0x3fecda4f59f9b49f,0xbfc31e4a80c4cbb6,1
|
|
1288
|
+
np.float64,0x7fe51d44f5aa3a89,0x408ffb3382437426,1
|
|
1289
|
+
np.float64,0x3fd677fc412ceff9,0xbff82999086977e7,1
|
|
1290
|
+
np.float64,0x3fe2a3c7e7254790,0xbfe8f33415cdba9d,1
|
|
1291
|
+
np.float64,0x3fe6d8d1dc6db1a4,0xbfdf1bc61bc24dff,1
|
|
1292
|
+
np.float64,0x7febb32d8ef7665a,0x408ffe55a043ded1,1
|
|
1293
|
+
np.float64,0x60677860c0d0,0xc0900da2caa7d571,1
|
|
1294
|
+
np.float64,0x7390c2e0e7219,0xc08ff92df18bb5d2,1
|
|
1295
|
+
np.float64,0x3fca53711b34a6e2,0xc00240b07a9b529b,1
|
|
1296
|
+
np.float64,0x7fe7ce6dd8ef9cdb,0x408ffc961164ead9,1
|
|
1297
|
+
np.float64,0x7fc0c9de0d2193bb,0x408fe88e245767f6,1
|
|
1298
|
+
np.float64,0xc0ee217981dc4,0xc08ff343b77ea770,1
|
|
1299
|
+
np.float64,0x72bd4668e57a9,0xc08ff94323fd74fc,1
|
|
1300
|
+
np.float64,0x7fd6970e252d2e1b,0x408ff3fb1e2fead2,1
|
|
1301
|
+
np.float64,0x7fdcb61040396c20,0x408ff6bf926bc98f,1
|
|
1302
|
+
np.float64,0xda4faa25b49f6,0xc08ff1d68b3877f0,1
|
|
1303
|
+
np.float64,0x3feb344749f6688f,0xbfcdfba2d66c72c5,1
|
|
1304
|
+
np.float64,0x3fe2aa4284e55485,0xbfe8e32ae0683f57,1
|
|
1305
|
+
np.float64,0x3f8e8fcfd03d1fa0,0xc01843efb2129908,1
|
|
1306
|
+
np.float64,0x8000000000000000,0xfff0000000000000,1
|
|
1307
|
+
np.float64,0x3fd8e01155b1c023,0xbff5d0529dae9515,1
|
|
1308
|
+
np.float64,0x3fe8033f3370067e,0xbfda837c80b87e7c,1
|
|
1309
|
+
np.float64,0x7fc5bf831e2b7f05,0x408feb8ae3b039a0,1
|
|
1310
|
+
np.float64,0x3fd8dcdf5331b9bf,0xbff5d349e1ed422a,1
|
|
1311
|
+
np.float64,0x3fe58b4e302b169c,0xbfe243c9cbccde44,1
|
|
1312
|
+
np.float64,0x3fea8a2e47b5145d,0xbfd1464e37221894,1
|
|
1313
|
+
np.float64,0x75cd1e88eb9a4,0xc08ff8f553ef0475,1
|
|
1314
|
+
np.float64,0x7fcfc876e23f90ed,0x408fefebe6cc95e6,1
|
|
1315
|
+
np.float64,0x7f51aceb002359d5,0x408fb1263f9003fb,1
|
|
1316
|
+
np.float64,0x7fc2a1b877254370,0x408fe9c1ec52f8b9,1
|
|
1317
|
+
np.float64,0x7fd495810e292b01,0x408ff2e859414d31,1
|
|
1318
|
+
np.float64,0x7fd72048632e4090,0x408ff440690cebdb,1
|
|
1319
|
+
np.float64,0x7fd7aafaffaf6,0xc08ff803a390779f,1
|
|
1320
|
+
np.float64,0x7fe18067d4a300cf,0x408ff9090a02693f,1
|
|
1321
|
+
np.float64,0x3fdc1080f8b82102,0xbff3077bf44a89bd,1
|
|
1322
|
+
np.float64,0x3fc34a462f26948c,0xc005d777b3cdf139,1
|
|
1323
|
+
np.float64,0x3fe21e4a1fe43c94,0xbfea428acfbc6ea9,1
|
|
1324
|
+
np.float64,0x1f0d79083e1b0,0xc090042c65a7abf2,1
|
|
1325
|
+
np.float64,0x3fe8d0d15931a1a3,0xbfd779f6bbd4db78,1
|
|
1326
|
+
np.float64,0x3fe74578022e8af0,0xbfdd68b6c15e9f5e,1
|
|
1327
|
+
np.float64,0x50995dd0a132c,0xc08ffd56a5c8accf,1
|
|
1328
|
+
np.float64,0x3f9a6342b034c685,0xc0151ce1973c62bd,1
|
|
1329
|
+
np.float64,0x3f30856a00210ad4,0xc027e852f4d1fcbc,1
|
|
1330
|
+
np.float64,0x3febcf7646b79eed,0xbfc9e9cc9d12425c,1
|
|
1331
|
+
np.float64,0x8010000000000000,0x7ff8000000000000,1
|
|
1332
|
+
np.float64,0x3fdf520c02bea418,0xbff07ed5013f3062,1
|
|
1333
|
+
np.float64,0x3fe5433ecbea867e,0xbfe2df38968b6d14,1
|
|
1334
|
+
np.float64,0x3fb933a84e326751,0xc00ac1a144ad26c5,1
|
|
1335
|
+
np.float64,0x7b6d72c2f6daf,0xc08ff86b7a67f962,1
|
|
1336
|
+
np.float64,0xaef5dae75debc,0xc08ff46496bb2932,1
|
|
1337
|
+
np.float64,0x522d869aa45b1,0xc08ffd1d55281e98,1
|
|
1338
|
+
np.float64,0xa2462b05448c6,0xc08ff542fe0ac5fd,1
|
|
1339
|
+
np.float64,0x3fe2b71dd6e56e3c,0xbfe8c3690cf15415,1
|
|
1340
|
+
np.float64,0x3fe5778231aaef04,0xbfe26e495d09b783,1
|
|
1341
|
+
np.float64,0x3fe9b8d564f371ab,0xbfd42a161132970d,1
|
|
1342
|
+
np.float64,0x3f89ebc34033d787,0xc019373f90bfc7f1,1
|
|
1343
|
+
np.float64,0x3fe438ddc6e871bc,0xbfe53039341b0a93,1
|
|
1344
|
+
np.float64,0x873c75250e78f,0xc08ff75d8478dccd,1
|
|
1345
|
+
np.float64,0x807134cb00e27,0xc08ff7f5cf59c57a,1
|
|
1346
|
+
np.float64,0x3fac459878388b31,0xc010b6fe803bcdc2,1
|
|
1347
|
+
np.float64,0xca9dc7eb953b9,0xc08ff2b2fb480784,1
|
|
1348
|
+
np.float64,0x7feb38587bb670b0,0x408ffe21ff6d521e,1
|
|
1349
|
+
np.float64,0x7fd70e9b782e1d36,0x408ff437936b393a,1
|
|
1350
|
+
np.float64,0x3fa4037bbc2806f7,0xc012b55744c65ab2,1
|
|
1351
|
+
np.float64,0x3fd3d4637427a8c7,0xbffb0beebf4311ef,1
|
|
1352
|
+
np.float64,0x7fdabbda5db577b4,0x408ff5ecbc0d4428,1
|
|
1353
|
+
np.float64,0x7fda9be0a2b537c0,0x408ff5dee5d03d5a,1
|
|
1354
|
+
np.float64,0x7fe9c74396338e86,0x408ffd813506a18a,1
|
|
1355
|
+
np.float64,0x3fd058243e20b048,0xbfff822ffd8a7f21,1
|
|
1356
|
+
np.float64,0x3fe6aa6ca9ed54d9,0xbfdfd805629ff49e,1
|
|
1357
|
+
np.float64,0x3fd91431d5322864,0xbff5a025eea8c78b,1
|
|
1358
|
+
np.float64,0x7fe4d7f02329afdf,0x408ffb0d5d9b7878,1
|
|
1359
|
+
np.float64,0x3fe2954a12252a94,0xbfe917266e3e22d5,1
|
|
1360
|
+
np.float64,0x3fb25f7c8224bef9,0xc00e6764c81b3718,1
|
|
1361
|
+
np.float64,0x3fda4bddeeb497bc,0xbff4880638908c81,1
|
|
1362
|
+
np.float64,0x55dfd12eabbfb,0xc08ffc9b54ff4002,1
|
|
1363
|
+
np.float64,0x3fe8f399e031e734,0xbfd6f8e5c4dcd93f,1
|
|
1364
|
+
np.float64,0x3fd954a24832a945,0xbff56521f4707a06,1
|
|
1365
|
+
np.float64,0x3fdea911f2bd5224,0xbff0fcb2d0c2b2e2,1
|
|
1366
|
+
np.float64,0x3fe6b4ff8a2d69ff,0xbfdfacfc85cafeab,1
|
|
1367
|
+
np.float64,0x3fc7fa02042ff404,0xc00354e13b0767ad,1
|
|
1368
|
+
np.float64,0x3fe955088c72aa11,0xbfd593130f29949e,1
|
|
1369
|
+
np.float64,0xd7e74ec1afcea,0xc08ff1f74f61721c,1
|
|
1370
|
+
np.float64,0x3fe9d69c1ab3ad38,0xbfd3bf710a337e06,1
|
|
1371
|
+
np.float64,0x3fd85669a2b0acd3,0xbff65176143ccc1e,1
|
|
1372
|
+
np.float64,0x3fea99b285353365,0xbfd11062744783f2,1
|
|
1373
|
+
np.float64,0x3fe2c79f80a58f3f,0xbfe89ac33f990289,1
|
|
1374
|
+
np.float64,0x3f8332ba30266574,0xc01af2cb7b635783,1
|
|
1375
|
+
np.float64,0x30d0150061a1,0xc090119030f74c5d,1
|
|
1376
|
+
np.float64,0x3fdbf4cb06b7e996,0xbff31e5207aaa754,1
|
|
1377
|
+
np.float64,0x3fe6b56c216d6ad8,0xbfdfab42fb2941c5,1
|
|
1378
|
+
np.float64,0x7fc4dc239829b846,0x408feb0fb0e13fbe,1
|
|
1379
|
+
np.float64,0x3fd0ab85ef21570c,0xbfff0d95d6c7a35c,1
|
|
1380
|
+
np.float64,0x7fe13d75e5e27aeb,0x408ff8dc8efa476b,1
|
|
1381
|
+
np.float64,0x3fece3b832f9c770,0xbfc2e21b165d583f,1
|
|
1382
|
+
np.float64,0x3fe3a279c4e744f4,0xbfe68ca4fbb55dbf,1
|
|
1383
|
+
np.float64,0x3feb64659ef6c8cb,0xbfccb6204b6bf724,1
|
|
1384
|
+
np.float64,0x2279a6bc44f36,0xc0900391eeeb3e7c,1
|
|
1385
|
+
np.float64,0xb88046d571009,0xc08ff3c7b5b45300,1
|
|
1386
|
+
np.float64,0x7ff4000000000000,0x7ffc000000000000,1
|
|
1387
|
+
np.float64,0x3fe49af059a935e1,0xbfe4526c294f248f,1
|
|
1388
|
+
np.float64,0xa3e5508147cc,0xc0900a92ce5924b1,1
|
|
1389
|
+
np.float64,0x7fc56def3d2adbdd,0x408feb5f46c360e8,1
|
|
1390
|
+
np.float64,0x7fd99f3574333e6a,0x408ff56f3807987c,1
|
|
1391
|
+
np.float64,0x3fdc38d56fb871ab,0xbff2e667cad8f36a,1
|
|
1392
|
+
np.float64,0xd0b03507a1607,0xc08ff25bbcf8aa9d,1
|
|
1393
|
+
np.float64,0xc493f9078927f,0xc08ff30c5fa4e759,1
|
|
1394
|
+
np.float64,0x3fc86ddbcb30dbb8,0xc0031da1fcb56d75,1
|
|
1395
|
+
np.float64,0x7fe75dc395aebb86,0x408ffc5eef841491,1
|
|
1396
|
+
np.float64,0x1647618a2c8ed,0xc0900616ef9479c1,1
|
|
1397
|
+
np.float64,0xdf144763be289,0xc08ff196b527f3c9,1
|
|
1398
|
+
np.float64,0x3fe0b29da6a1653b,0xbfee078b5f4d7744,1
|
|
1399
|
+
np.float64,0x3feb055852b60ab1,0xbfcf3b4db5779a7a,1
|
|
1400
|
+
np.float64,0x3fe8bc1625f1782c,0xbfd7c739ade904bc,1
|
|
1401
|
+
np.float64,0x7fd19bfb8ea337f6,0x408ff11b2b55699c,1
|
|
1402
|
+
np.float64,0x3fed1d80d1ba3b02,0xbfc1722e8d3ce094,1
|
|
1403
|
+
np.float64,0x2d9c65925b38e,0xc09001f46bcd3bc5,1
|
|
1404
|
+
np.float64,0x7fed6f4d857ade9a,0x408fff091cf6a3b4,1
|
|
1405
|
+
np.float64,0x3fd070cd6ba0e19b,0xbfff5f7609ca29e8,1
|
|
1406
|
+
np.float64,0x7fea3508b8f46a10,0x408ffdb1f30bd6be,1
|
|
1407
|
+
np.float64,0x508b897ca1172,0xc08ffd58a0eb3583,1
|
|
1408
|
+
np.float64,0x7feba367b07746ce,0x408ffe4f0bf4bd4e,1
|
|
1409
|
+
np.float64,0x3fefebd5c4bfd7ac,0xbf6d20b4fcf21b69,1
|
|
1410
|
+
np.float64,0x3fd8ef07b8b1de0f,0xbff5c2745c0795a5,1
|
|
1411
|
+
np.float64,0x3fd38ed518271daa,0xbffb5d75f00f6900,1
|
|
1412
|
+
np.float64,0x6de0fecedbc20,0xc08ff9c307bbc647,1
|
|
1413
|
+
np.float64,0xafc0ffc35f820,0xc08ff45737e5d6b4,1
|
|
1414
|
+
np.float64,0x7fd282097ca50412,0x408ff1ae3b27bf3b,1
|
|
1415
|
+
np.float64,0x3fe2f2d50b65e5aa,0xbfe831042e6a1e99,1
|
|
1416
|
+
np.float64,0x3faa437bac3486f7,0xc01123d8d962205a,1
|
|
1417
|
+
np.float64,0x3feea54434fd4a88,0xbfaff202cc456647,1
|
|
1418
|
+
np.float64,0x3fc9e65b8633ccb7,0xc00270e77ffd19da,1
|
|
1419
|
+
np.float64,0x7fee15af61fc2b5e,0x408fff49a49154a3,1
|
|
1420
|
+
np.float64,0x7fefe670a73fcce0,0x408ffff6c44c1005,1
|
|
1421
|
+
np.float64,0x3fc0832d0f21065a,0xc007a2dc2f25384a,1
|
|
1422
|
+
np.float64,0x3fecfc96bcb9f92d,0xbfc24367c3912620,1
|
|
1423
|
+
np.float64,0x3feb705682b6e0ad,0xbfcc65b1bb16f9c5,1
|
|
1424
|
+
np.float64,0x3fe185c4f9630b8a,0xbfebcdb401af67a4,1
|
|
1425
|
+
np.float64,0x3fb0a5a9f6214b54,0xc00f8ada2566a047,1
|
|
1426
|
+
np.float64,0x7fe2908cdda52119,0x408ff9b744861fb1,1
|
|
1427
|
+
np.float64,0x7fee776e183ceedb,0x408fff6ee7c2f86e,1
|
|
1428
|
+
np.float64,0x3fce1d608f3c3ac1,0xc000b3685d006474,1
|
|
1429
|
+
np.float64,0x7fecf92aa339f254,0x408ffeda6c998267,1
|
|
1430
|
+
np.float64,0xce13cb519c27a,0xc08ff280f02882a9,1
|
|
1431
|
+
np.float64,0x1,0xc090c80000000000,1
|
|
1432
|
+
np.float64,0x3fe485a8afa90b51,0xbfe4823265d5a50a,1
|
|
1433
|
+
np.float64,0x3feea60908bd4c12,0xbfafdf7ad7fe203f,1
|
|
1434
|
+
np.float64,0x3fd2253033a44a60,0xbffd187d0ec8d5b9,1
|
|
1435
|
+
np.float64,0x435338fc86a68,0xc08fff6a591059dd,1
|
|
1436
|
+
np.float64,0x7fce8763a73d0ec6,0x408fef74f1e715ff,1
|
|
1437
|
+
np.float64,0x3fbe5ddb783cbbb7,0xc0089acc5afa794b,1
|
|
1438
|
+
np.float64,0x7fe4cf19ada99e32,0x408ffb0877ca302b,1
|
|
1439
|
+
np.float64,0x3fe94c9ea1b2993d,0xbfd5b1c2e867b911,1
|
|
1440
|
+
np.float64,0x3fe75541c72eaa84,0xbfdd2a27aa117699,1
|
|
1441
|
+
np.float64,0x8000000000000001,0x7ff8000000000000,1
|
|
1442
|
+
np.float64,0x7fdbec7f2c37d8fd,0x408ff66d69a7f818,1
|
|
1443
|
+
np.float64,0x8ef10d091de22,0xc08ff6b9ca5094f8,1
|
|
1444
|
+
np.float64,0x3fea69025b74d205,0xbfd1b9fe2c252c70,1
|
|
1445
|
+
np.float64,0x562376d0ac46f,0xc08ffc924111cd31,1
|
|
1446
|
+
np.float64,0x8e8097ab1d013,0xc08ff6c2e2706f67,1
|
|
1447
|
+
np.float64,0x3fca6803ed34d008,0xc00237aef808825b,1
|
|
1448
|
+
np.float64,0x7fe8fe9067b1fd20,0x408ffd25f459a7d1,1
|
|
1449
|
+
np.float64,0x3f918e8c7f233,0xc0900009fe011d54,1
|
|
1450
|
+
np.float64,0x3fdfe773833fcee7,0xbff011bc1af87bb9,1
|
|
1451
|
+
np.float64,0xefffef6fdfffe,0xc08ff0beb0f09eb0,1
|
|
1452
|
+
np.float64,0x7fe64610282c8c1f,0x408ffbd17209db18,1
|
|
1453
|
+
np.float64,0xe66be8c1ccd7d,0xc08ff13706c056e1,1
|
|
1454
|
+
np.float64,0x2837e570506fd,0xc09002ae4dae0c1a,1
|
|
1455
|
+
np.float64,0x3febe3a081f7c741,0xbfc964171f2a5a47,1
|
|
1456
|
+
np.float64,0x3fe21ed09a243da1,0xbfea41342d29c3ff,1
|
|
1457
|
+
np.float64,0x3fe1596c8162b2d9,0xbfec431eee30823a,1
|
|
1458
|
+
np.float64,0x8f2b9a131e574,0xc08ff6b51104ed4e,1
|
|
1459
|
+
np.float64,0x3fe88ed179711da3,0xbfd870d08a4a4b0c,1
|
|
1460
|
+
np.float64,0x34159bc2682b4,0xc09001305a885f94,1
|
|
1461
|
+
np.float64,0x1ed31e543da65,0xc0900437481577f8,1
|
|
1462
|
+
np.float64,0x3feafbe9de75f7d4,0xbfcf7bcdbacf1c61,1
|
|
1463
|
+
np.float64,0xfb16fb27f62e0,0xc08ff03938e682a2,1
|
|
1464
|
+
np.float64,0x3fe5cd5ba7eb9ab7,0xbfe1b7165771af3c,1
|
|
1465
|
+
np.float64,0x7fe72905e76e520b,0x408ffc44c4e7e80c,1
|
|
1466
|
+
np.float64,0x7fb7136e2e2e26db,0x408fe439fd383fb7,1
|
|
1467
|
+
np.float64,0x8fa585e11f4c,0xc0900b55a08a486b,1
|
|
1468
|
+
np.float64,0x7fed985ce47b30b9,0x408fff192b596821,1
|
|
1469
|
+
np.float64,0x3feaaf0869755e11,0xbfd0c671571b3764,1
|
|
1470
|
+
np.float64,0x3fa40fd4ec281faa,0xc012b1c8dc0b9e5f,1
|
|
1471
|
+
np.float64,0x7fda2a70993454e0,0x408ff5ad47b0c68a,1
|
|
1472
|
+
np.float64,0x3fe5f7e931abefd2,0xbfe15d52b3605abf,1
|
|
1473
|
+
np.float64,0x3fe9fc6d3533f8da,0xbfd338b06a790994,1
|
|
1474
|
+
np.float64,0x3fe060649420c0c9,0xbfeeed1756111891,1
|
|
1475
|
+
np.float64,0x3fce8435e33d086c,0xc0008c41cea9ed40,1
|
|
1476
|
+
np.float64,0x7ff8000000000000,0x7ff8000000000000,1
|
|
1477
|
+
np.float64,0x617820aec2f05,0xc08ffb251e9af0f0,1
|
|
1478
|
+
np.float64,0x7fcc4ab6ee38956d,0x408fee9419c8f77d,1
|
|
1479
|
+
np.float64,0x7fdefda2fc3dfb45,0x408ff7a15063bc05,1
|
|
1480
|
+
np.float64,0x7fe5138ccaaa2719,0x408ffb2e30f3a46e,1
|
|
1481
|
+
np.float64,0x3fe3817a836702f5,0xbfe6da7c2b25e35a,1
|
|
1482
|
+
np.float64,0x3fb8a7dafa314fb6,0xc00b025bc0784ebe,1
|
|
1483
|
+
np.float64,0x349dc420693d,0xc09011215825d2c8,1
|
|
1484
|
+
np.float64,0x6b0e504ad61cb,0xc08ffa0fee9c5cd6,1
|
|
1485
|
+
np.float64,0x273987644e732,0xc09002d34294ed79,1
|
|
1486
|
+
np.float64,0x3fc0bd8a6e217b15,0xc0077a5828b4d2f5,1
|
|
1487
|
+
np.float64,0x758b48c4eb16a,0xc08ff8fbc8fbe46a,1
|
|
1488
|
+
np.float64,0x3fc8a9a52631534a,0xc00301854ec0ef81,1
|
|
1489
|
+
np.float64,0x7fe79d29a76f3a52,0x408ffc7e1607a4c1,1
|
|
1490
|
+
np.float64,0x3fd7d3ebce2fa7d8,0xbff6ce8a94aebcda,1
|
|
1491
|
+
np.float64,0x7fd1cb68a52396d0,0x408ff13a17533b2b,1
|
|
1492
|
+
np.float64,0x7fda514a5d34a294,0x408ff5be5e081578,1
|
|
1493
|
+
np.float64,0x3fc40b4382281687,0xc0056632c8067228,1
|
|
1494
|
+
np.float64,0x7feff1208c3fe240,0x408ffffaa180fa0d,1
|
|
1495
|
+
np.float64,0x8f58739f1eb0f,0xc08ff6b17402689d,1
|
|
1496
|
+
np.float64,0x1fdbe9a23fb7e,0xc090040685b2d24f,1
|
|
1497
|
+
np.float64,0xcb1d0e87963a2,0xc08ff2abbd903b82,1
|
|
1498
|
+
np.float64,0x3fc45a6a1a28b4d4,0xc00538f86c4aeaee,1
|
|
1499
|
+
np.float64,0x3fe61885b1ac310b,0xbfe118fd2251d2ec,1
|
|
1500
|
+
np.float64,0x3fedf584c8fbeb0a,0xbfb8572433ff67a9,1
|
|
1501
|
+
np.float64,0x7fb0bddd1a217bb9,0x408fe085e0d621db,1
|
|
1502
|
+
np.float64,0x72d8d3e0e5b3,0xc0900ca02f68c7a1,1
|
|
1503
|
+
np.float64,0x5cca6ff6b994f,0xc08ffbb6751fda01,1
|
|
1504
|
+
np.float64,0x7fe3197839a632ef,0x408ffa0b2fccfb68,1
|
|
1505
|
+
np.float64,0x3fcce4d9c139c9b4,0xc0012dae05baa91b,1
|
|
1506
|
+
np.float64,0x3fe76d00f62eda02,0xbfdccc5f12799be1,1
|
|
1507
|
+
np.float64,0x3fc53c22f72a7846,0xc004bbaa9cbc7958,1
|
|
1508
|
+
np.float64,0x7fdda02f1ebb405d,0x408ff71c37c71659,1
|
|
1509
|
+
np.float64,0x3fe0844eaba1089d,0xbfee884722762583,1
|
|
1510
|
+
np.float64,0x3febb438dc776872,0xbfca9f05e1c691f1,1
|
|
1511
|
+
np.float64,0x3fdf4170cdbe82e2,0xbff08b1561c8d848,1
|
|
1512
|
+
np.float64,0x3fce1b8d6f3c371b,0xc000b41b69507671,1
|
|
1513
|
+
np.float64,0x8370e60706e1d,0xc08ff7b19ea0b4ca,1
|
|
1514
|
+
np.float64,0x7fa5bf92382b7f23,0x408fdb8aebb3df87,1
|
|
1515
|
+
np.float64,0x7fe4a59979a94b32,0x408ffaf15c1358cd,1
|
|
1516
|
+
np.float64,0x3faa66086034cc11,0xc0111c466b7835d6,1
|
|
1517
|
+
np.float64,0x7fb7a958262f52af,0x408fe48408b1e093,1
|
|
1518
|
+
np.float64,0x3fdaacc5f635598c,0xbff43390d06b5614,1
|
|
1519
|
+
np.float64,0x3fd2825b9e2504b7,0xbffca3234264f109,1
|
|
1520
|
+
np.float64,0x3fcede160a3dbc2c,0xc0006a759e29060c,1
|
|
1521
|
+
np.float64,0x7fd3b19603a7632b,0x408ff265b528371c,1
|
|
1522
|
+
np.float64,0x7fcf8a86ea3f150d,0x408fefd552e7f3b2,1
|
|
1523
|
+
np.float64,0xedbcc0f7db798,0xc08ff0daad12096b,1
|
|
1524
|
+
np.float64,0xf1e1683de3c2d,0xc08ff0a7a0a37e00,1
|
|
1525
|
+
np.float64,0xb6ebd9bf6dd7b,0xc08ff3e11e28378d,1
|
|
1526
|
+
np.float64,0x3fec8090d6f90122,0xbfc56031b72194cc,1
|
|
1527
|
+
np.float64,0x3fd3e10e37a7c21c,0xbffafd34a3ebc933,1
|
|
1528
|
+
np.float64,0x7fbb1c96aa36392c,0x408fe616347b3342,1
|
|
1529
|
+
np.float64,0x3fe2f3996f25e733,0xbfe82f25bc5d1bbd,1
|
|
1530
|
+
np.float64,0x7fe8709da870e13a,0x408ffce3ab6ce59a,1
|
|
1531
|
+
np.float64,0x7fea3233d1b46467,0x408ffdb0b3bbc6de,1
|
|
1532
|
+
np.float64,0x65fa4112cbf49,0xc08ffa9f85eb72b9,1
|
|
1533
|
+
np.float64,0x3fca2cae9f34595d,0xc00251bb275afb87,1
|
|
1534
|
+
np.float64,0x8135fd9f026c0,0xc08ff7e42e14dce7,1
|
|
1535
|
+
np.float64,0x7fe0a6f057e14de0,0x408ff876081a4bfe,1
|
|
1536
|
+
np.float64,0x10000000000000,0xc08ff00000000000,1
|
|
1537
|
+
np.float64,0x3fe1fd506263faa1,0xbfea96dd8c543b72,1
|
|
1538
|
+
np.float64,0xa5532c554aa66,0xc08ff50bf5bfc66d,1
|
|
1539
|
+
np.float64,0xc239d00b8473a,0xc08ff32ff0ea3f92,1
|
|
1540
|
+
np.float64,0x7fdb5314e336a629,0x408ff62d4ff60d82,1
|
|
1541
|
+
np.float64,0x3fe5f506e2abea0e,0xbfe16362a4682120,1
|
|
1542
|
+
np.float64,0x3fa20c60202418c0,0xc0134e08d82608b6,1
|
|
1543
|
+
np.float64,0x7fe03864b22070c8,0x408ff82866d65e9a,1
|
|
1544
|
+
np.float64,0x3fe72cf5656e59eb,0xbfddca298969effa,1
|
|
1545
|
+
np.float64,0x5c295386b852b,0xc08ffbca90b136c9,1
|
|
1546
|
+
np.float64,0x7fd71e5020ae3c9f,0x408ff43f6d58eb7c,1
|
|
1547
|
+
np.float64,0x3fd1905a842320b5,0xbffdd8ecd288159c,1
|
|
1548
|
+
np.float64,0x3fe6bddb256d7bb6,0xbfdf88fee1a820bb,1
|
|
1549
|
+
np.float64,0xe061b967c0c37,0xc08ff18581951561,1
|
|
1550
|
+
np.float64,0x3fe534f65cea69ed,0xbfe2fe45fe7d3040,1
|
|
1551
|
+
np.float64,0xdc7dae07b8fb6,0xc08ff1b93074ea76,1
|
|
1552
|
+
np.float64,0x3fd0425082a084a1,0xbfffa11838b21633,1
|
|
1553
|
+
np.float64,0xba723fc974e48,0xc08ff3a8b8d01c58,1
|
|
1554
|
+
np.float64,0x3fce42ffc73c8600,0xc000a5062678406e,1
|
|
1555
|
+
np.float64,0x3f2e6d3c7e5ce,0xc090001304cfd1c7,1
|
|
1556
|
+
np.float64,0x3fd4b2e5f7a965cc,0xbffa0e6e6bae0a68,1
|
|
1557
|
+
np.float64,0x3fe6db1d18edb63a,0xbfdf128158ee92d9,1
|
|
1558
|
+
np.float64,0x7fe4e5792f29caf1,0x408ffb14d9dbf133,1
|
|
1559
|
+
np.float64,0x3fc11cdf992239bf,0xc00739569619cd77,1
|
|
1560
|
+
np.float64,0x3fc05ea11220bd42,0xc007bc841b48a890,1
|
|
1561
|
+
np.float64,0x4bd592d497ab3,0xc08ffe0ab1c962e2,1
|
|
1562
|
+
np.float64,0x280068fc5000e,0xc09002b64955e865,1
|
|
1563
|
+
np.float64,0x7fe2f2637065e4c6,0x408ff9f379c1253a,1
|
|
1564
|
+
np.float64,0x3fefc38467ff8709,0xbf85e53e64b9a424,1
|
|
1565
|
+
np.float64,0x2d78ec5a5af1e,0xc09001f8ea8601e0,1
|
|
1566
|
+
np.float64,0x7feeef2b957dde56,0x408fff9bebe995f7,1
|
|
1567
|
+
np.float64,0x2639baf44c738,0xc09002f9618d623b,1
|
|
1568
|
+
np.float64,0x3fc562964d2ac52d,0xc004a6d76959ef78,1
|
|
1569
|
+
np.float64,0x3fe21b071fe4360e,0xbfea4adb2cd96ade,1
|
|
1570
|
+
np.float64,0x7fe56aa6802ad54c,0x408ffb5d81d1a898,1
|
|
1571
|
+
np.float64,0x4296b452852d7,0xc08fff8ad7fbcbe1,1
|
|
1572
|
+
np.float64,0x7fe3fac4ff27f589,0x408ffa9049eec479,1
|
|
1573
|
+
np.float64,0x7fe7a83e6caf507c,0x408ffc837f436604,1
|
|
1574
|
+
np.float64,0x3fc4ac5b872958b7,0xc0050add72381ac3,1
|
|
1575
|
+
np.float64,0x3fd6d697c02dad30,0xbff7c931a3eefb01,1
|
|
1576
|
+
np.float64,0x3f61e391c023c724,0xc021ad91e754f94b,1
|
|
1577
|
+
np.float64,0x10817f9c21031,0xc09007d20434d7bc,1
|
|
1578
|
+
np.float64,0x3fdb9c4c4cb73899,0xbff367d8615c5ece,1
|
|
1579
|
+
np.float64,0x3fe26ead6b64dd5b,0xbfe977771def5989,1
|
|
1580
|
+
np.float64,0x3fc43ea5c3287d4c,0xc00548c2163ae631,1
|
|
1581
|
+
np.float64,0x3fe05bd8bba0b7b1,0xbfeef9ea0db91abc,1
|
|
1582
|
+
np.float64,0x3feac78369358f07,0xbfd071e2b0aeab39,1
|
|
1583
|
+
np.float64,0x7fe254922ca4a923,0x408ff991bdd4e5d3,1
|
|
1584
|
+
np.float64,0x3fe5a2f5842b45eb,0xbfe21135c9a71666,1
|
|
1585
|
+
np.float64,0x3fd5daf98c2bb5f3,0xbff8cd24f7c07003,1
|
|
1586
|
+
np.float64,0x3fcb2a1384365427,0xc001e40f0d04299a,1
|
|
1587
|
+
np.float64,0x3fe073974360e72f,0xbfeeb7183a9930b7,1
|
|
1588
|
+
np.float64,0xcf3440819e688,0xc08ff270d3a71001,1
|
|
1589
|
+
np.float64,0x3fd35656cda6acae,0xbffba083fba4939d,1
|
|
1590
|
+
np.float64,0x7fe6c59b4ded8b36,0x408ffc12ce725425,1
|
|
1591
|
+
np.float64,0x3fba896f943512df,0xc00a291cb6947701,1
|
|
1592
|
+
np.float64,0x7fe54917e86a922f,0x408ffb4b5e0fb848,1
|
|
1593
|
+
np.float64,0x7fed2a3f51ba547e,0x408ffeede945a948,1
|
|
1594
|
+
np.float64,0x3fdc72bd5038e57b,0xbff2b73b7e93e209,1
|
|
1595
|
+
np.float64,0x7fefdb3f9f3fb67e,0x408ffff2b702a768,1
|
|
1596
|
+
np.float64,0x3fb0184430203088,0xc00fee8c1351763c,1
|
|
1597
|
+
np.float64,0x7d6c3668fad87,0xc08ff83c195f2cca,1
|
|
1598
|
+
np.float64,0x3fd5aa254aab544b,0xbff900f16365991b,1
|
|
1599
|
+
np.float64,0x3f963daab02c7b55,0xc0161974495b1b71,1
|
|
1600
|
+
np.float64,0x3fa7a9c5982f538b,0xc011bde0f6052a89,1
|
|
1601
|
+
np.float64,0xb3a5a74b674b5,0xc08ff4167bc97c81,1
|
|
1602
|
+
np.float64,0x7fad0c14503a1828,0x408fdee1f2d56cd7,1
|
|
1603
|
+
np.float64,0x43e0e9d887c1e,0xc08fff522837b13b,1
|
|
1604
|
+
np.float64,0x3fe513b20aea2764,0xbfe346ea994100e6,1
|
|
1605
|
+
np.float64,0x7fe4e10393e9c206,0x408ffb12630f6a06,1
|
|
1606
|
+
np.float64,0x68b286e2d1651,0xc08ffa51c0d795d4,1
|
|
1607
|
+
np.float64,0x7fe8de453331bc89,0x408ffd17012b75ac,1
|
|
1608
|
+
np.float64,0x1b3d77d4367b0,0xc09004edea60aa36,1
|
|
1609
|
+
np.float64,0x3fd351cbc326a398,0xbffba5f0f4d5fdba,1
|
|
1610
|
+
np.float64,0x3fd264951b24c92a,0xbffcc8636788b9bf,1
|
|
1611
|
+
np.float64,0xd2465761a48cb,0xc08ff2455c9c53e5,1
|
|
1612
|
+
np.float64,0x7fe46a0ef028d41d,0x408ffacfe32c6f5d,1
|
|
1613
|
+
np.float64,0x3fafd8ac4c3fb159,0xc010071bf33195d0,1
|
|
1614
|
+
np.float64,0x902aec5d2055e,0xc08ff6a08e28aabc,1
|
|
1615
|
+
np.float64,0x3fcea61bb03d4c37,0xc0007f76e509b657,1
|
|
1616
|
+
np.float64,0x7fe8d90f9571b21e,0x408ffd1495f952e7,1
|
|
1617
|
+
np.float64,0x7fa650c9442ca192,0x408fdbd6ff22fdd8,1
|
|
1618
|
+
np.float64,0x3fe8ecfdf171d9fc,0xbfd7115df40e8580,1
|
|
1619
|
+
np.float64,0x7fd4e6fe7f29cdfc,0x408ff315b0dae183,1
|
|
1620
|
+
np.float64,0x77df4c52efbea,0xc08ff8c1d5c1df33,1
|
|
1621
|
+
np.float64,0xe200b0cfc4016,0xc08ff1703cfb8e79,1
|
|
1622
|
+
np.float64,0x3fe230ea7e2461d5,0xbfea132d2385160e,1
|
|
1623
|
+
np.float64,0x7fd1f7ced723ef9d,0x408ff156bfbf92a4,1
|
|
1624
|
+
np.float64,0x3fea762818f4ec50,0xbfd18c12a88e5f79,1
|
|
1625
|
+
np.float64,0x7feea4ba7c7d4974,0x408fff8004164054,1
|
|
1626
|
+
np.float64,0x833ec605067d9,0xc08ff7b606383841,1
|
|
1627
|
+
np.float64,0x7fd0c2d7fea185af,0x408ff0894f3a0cf4,1
|
|
1628
|
+
np.float64,0x3fe1d7d61d23afac,0xbfeaf76fee875d3e,1
|
|
1629
|
+
np.float64,0x65adecb0cb5be,0xc08ffaa82cb09d68,1
|