numpy 2.4.0__cp313-cp313t-musllinux_1_2_aarch64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- numpy/__config__.py +170 -0
- numpy/__config__.pyi +108 -0
- numpy/__init__.cython-30.pxd +1242 -0
- numpy/__init__.pxd +1155 -0
- numpy/__init__.py +942 -0
- numpy/__init__.pyi +6202 -0
- numpy/_array_api_info.py +346 -0
- numpy/_array_api_info.pyi +206 -0
- numpy/_configtool.py +39 -0
- numpy/_configtool.pyi +1 -0
- numpy/_core/__init__.py +201 -0
- numpy/_core/__init__.pyi +666 -0
- numpy/_core/_add_newdocs.py +7151 -0
- numpy/_core/_add_newdocs.pyi +2 -0
- numpy/_core/_add_newdocs_scalars.py +381 -0
- numpy/_core/_add_newdocs_scalars.pyi +16 -0
- numpy/_core/_asarray.py +130 -0
- numpy/_core/_asarray.pyi +43 -0
- numpy/_core/_dtype.py +366 -0
- numpy/_core/_dtype.pyi +56 -0
- numpy/_core/_dtype_ctypes.py +120 -0
- numpy/_core/_dtype_ctypes.pyi +83 -0
- numpy/_core/_exceptions.py +162 -0
- numpy/_core/_exceptions.pyi +54 -0
- numpy/_core/_internal.py +968 -0
- numpy/_core/_internal.pyi +61 -0
- numpy/_core/_methods.py +252 -0
- numpy/_core/_methods.pyi +22 -0
- numpy/_core/_multiarray_tests.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_multiarray_umath.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_operand_flag_tests.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_rational_tests.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_simd.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_simd.pyi +35 -0
- numpy/_core/_string_helpers.py +100 -0
- numpy/_core/_string_helpers.pyi +12 -0
- numpy/_core/_struct_ufunc_tests.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_type_aliases.py +131 -0
- numpy/_core/_type_aliases.pyi +86 -0
- numpy/_core/_ufunc_config.py +515 -0
- numpy/_core/_ufunc_config.pyi +69 -0
- numpy/_core/_umath_tests.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_umath_tests.pyi +47 -0
- numpy/_core/arrayprint.py +1779 -0
- numpy/_core/arrayprint.pyi +158 -0
- numpy/_core/cversions.py +13 -0
- numpy/_core/defchararray.py +1414 -0
- numpy/_core/defchararray.pyi +1150 -0
- numpy/_core/einsumfunc.py +1650 -0
- numpy/_core/einsumfunc.pyi +184 -0
- numpy/_core/fromnumeric.py +4233 -0
- numpy/_core/fromnumeric.pyi +1735 -0
- numpy/_core/function_base.py +547 -0
- numpy/_core/function_base.pyi +276 -0
- numpy/_core/getlimits.py +462 -0
- numpy/_core/getlimits.pyi +124 -0
- numpy/_core/include/numpy/__multiarray_api.c +376 -0
- numpy/_core/include/numpy/__multiarray_api.h +1628 -0
- numpy/_core/include/numpy/__ufunc_api.c +55 -0
- numpy/_core/include/numpy/__ufunc_api.h +349 -0
- numpy/_core/include/numpy/_neighborhood_iterator_imp.h +90 -0
- numpy/_core/include/numpy/_numpyconfig.h +33 -0
- numpy/_core/include/numpy/_public_dtype_api_table.h +86 -0
- numpy/_core/include/numpy/arrayobject.h +7 -0
- numpy/_core/include/numpy/arrayscalars.h +198 -0
- numpy/_core/include/numpy/dtype_api.h +547 -0
- numpy/_core/include/numpy/halffloat.h +70 -0
- numpy/_core/include/numpy/ndarrayobject.h +304 -0
- numpy/_core/include/numpy/ndarraytypes.h +1982 -0
- numpy/_core/include/numpy/npy_2_compat.h +249 -0
- numpy/_core/include/numpy/npy_2_complexcompat.h +28 -0
- numpy/_core/include/numpy/npy_3kcompat.h +374 -0
- numpy/_core/include/numpy/npy_common.h +989 -0
- numpy/_core/include/numpy/npy_cpu.h +126 -0
- numpy/_core/include/numpy/npy_endian.h +79 -0
- numpy/_core/include/numpy/npy_math.h +602 -0
- numpy/_core/include/numpy/npy_no_deprecated_api.h +20 -0
- numpy/_core/include/numpy/npy_os.h +42 -0
- numpy/_core/include/numpy/numpyconfig.h +185 -0
- numpy/_core/include/numpy/random/LICENSE.txt +21 -0
- numpy/_core/include/numpy/random/bitgen.h +20 -0
- numpy/_core/include/numpy/random/distributions.h +209 -0
- numpy/_core/include/numpy/random/libdivide.h +2079 -0
- numpy/_core/include/numpy/ufuncobject.h +343 -0
- numpy/_core/include/numpy/utils.h +37 -0
- numpy/_core/lib/libnpymath.a +0 -0
- numpy/_core/lib/npy-pkg-config/mlib.ini +12 -0
- numpy/_core/lib/npy-pkg-config/npymath.ini +20 -0
- numpy/_core/lib/pkgconfig/numpy.pc +7 -0
- numpy/_core/memmap.py +363 -0
- numpy/_core/memmap.pyi +3 -0
- numpy/_core/multiarray.py +1740 -0
- numpy/_core/multiarray.pyi +1316 -0
- numpy/_core/numeric.py +2758 -0
- numpy/_core/numeric.pyi +1276 -0
- numpy/_core/numerictypes.py +633 -0
- numpy/_core/numerictypes.pyi +196 -0
- numpy/_core/overrides.py +188 -0
- numpy/_core/overrides.pyi +47 -0
- numpy/_core/printoptions.py +32 -0
- numpy/_core/printoptions.pyi +28 -0
- numpy/_core/records.py +1088 -0
- numpy/_core/records.pyi +340 -0
- numpy/_core/shape_base.py +996 -0
- numpy/_core/shape_base.pyi +182 -0
- numpy/_core/strings.py +1813 -0
- numpy/_core/strings.pyi +536 -0
- numpy/_core/tests/_locales.py +72 -0
- numpy/_core/tests/_natype.py +144 -0
- numpy/_core/tests/data/astype_copy.pkl +0 -0
- numpy/_core/tests/data/generate_umath_validation_data.cpp +170 -0
- numpy/_core/tests/data/recarray_from_file.fits +0 -0
- numpy/_core/tests/data/umath-validation-set-README.txt +15 -0
- numpy/_core/tests/data/umath-validation-set-arccos.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arccosh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arcsin.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arcsinh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arctan.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arctanh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-cbrt.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-cos.csv +1375 -0
- numpy/_core/tests/data/umath-validation-set-cosh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-exp.csv +412 -0
- numpy/_core/tests/data/umath-validation-set-exp2.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-expm1.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-log.csv +271 -0
- numpy/_core/tests/data/umath-validation-set-log10.csv +1629 -0
- numpy/_core/tests/data/umath-validation-set-log1p.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-log2.csv +1629 -0
- numpy/_core/tests/data/umath-validation-set-sin.csv +1370 -0
- numpy/_core/tests/data/umath-validation-set-sinh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-tan.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-tanh.csv +1429 -0
- numpy/_core/tests/examples/cython/checks.pyx +373 -0
- numpy/_core/tests/examples/cython/meson.build +43 -0
- numpy/_core/tests/examples/cython/setup.py +39 -0
- numpy/_core/tests/examples/limited_api/limited_api1.c +17 -0
- numpy/_core/tests/examples/limited_api/limited_api2.pyx +11 -0
- numpy/_core/tests/examples/limited_api/limited_api_latest.c +19 -0
- numpy/_core/tests/examples/limited_api/meson.build +59 -0
- numpy/_core/tests/examples/limited_api/setup.py +24 -0
- numpy/_core/tests/test__exceptions.py +90 -0
- numpy/_core/tests/test_abc.py +54 -0
- numpy/_core/tests/test_api.py +655 -0
- numpy/_core/tests/test_argparse.py +90 -0
- numpy/_core/tests/test_array_api_info.py +113 -0
- numpy/_core/tests/test_array_coercion.py +928 -0
- numpy/_core/tests/test_array_interface.py +222 -0
- numpy/_core/tests/test_arraymethod.py +84 -0
- numpy/_core/tests/test_arrayobject.py +75 -0
- numpy/_core/tests/test_arrayprint.py +1324 -0
- numpy/_core/tests/test_casting_floatingpoint_errors.py +154 -0
- numpy/_core/tests/test_casting_unittests.py +955 -0
- numpy/_core/tests/test_conversion_utils.py +209 -0
- numpy/_core/tests/test_cpu_dispatcher.py +48 -0
- numpy/_core/tests/test_cpu_features.py +450 -0
- numpy/_core/tests/test_custom_dtypes.py +393 -0
- numpy/_core/tests/test_cython.py +352 -0
- numpy/_core/tests/test_datetime.py +2792 -0
- numpy/_core/tests/test_defchararray.py +858 -0
- numpy/_core/tests/test_deprecations.py +460 -0
- numpy/_core/tests/test_dlpack.py +190 -0
- numpy/_core/tests/test_dtype.py +2110 -0
- numpy/_core/tests/test_einsum.py +1351 -0
- numpy/_core/tests/test_errstate.py +131 -0
- numpy/_core/tests/test_extint128.py +217 -0
- numpy/_core/tests/test_finfo.py +86 -0
- numpy/_core/tests/test_function_base.py +504 -0
- numpy/_core/tests/test_getlimits.py +171 -0
- numpy/_core/tests/test_half.py +593 -0
- numpy/_core/tests/test_hashtable.py +36 -0
- numpy/_core/tests/test_indexerrors.py +122 -0
- numpy/_core/tests/test_indexing.py +1692 -0
- numpy/_core/tests/test_item_selection.py +167 -0
- numpy/_core/tests/test_limited_api.py +102 -0
- numpy/_core/tests/test_longdouble.py +370 -0
- numpy/_core/tests/test_mem_overlap.py +933 -0
- numpy/_core/tests/test_mem_policy.py +453 -0
- numpy/_core/tests/test_memmap.py +248 -0
- numpy/_core/tests/test_multiarray.py +11008 -0
- numpy/_core/tests/test_multiprocessing.py +55 -0
- numpy/_core/tests/test_multithreading.py +353 -0
- numpy/_core/tests/test_nditer.py +3533 -0
- numpy/_core/tests/test_nep50_promotions.py +287 -0
- numpy/_core/tests/test_numeric.py +4295 -0
- numpy/_core/tests/test_numerictypes.py +650 -0
- numpy/_core/tests/test_overrides.py +800 -0
- numpy/_core/tests/test_print.py +202 -0
- numpy/_core/tests/test_protocols.py +46 -0
- numpy/_core/tests/test_records.py +544 -0
- numpy/_core/tests/test_regression.py +2677 -0
- numpy/_core/tests/test_scalar_ctors.py +203 -0
- numpy/_core/tests/test_scalar_methods.py +328 -0
- numpy/_core/tests/test_scalarbuffer.py +153 -0
- numpy/_core/tests/test_scalarinherit.py +105 -0
- numpy/_core/tests/test_scalarmath.py +1168 -0
- numpy/_core/tests/test_scalarprint.py +403 -0
- numpy/_core/tests/test_shape_base.py +904 -0
- numpy/_core/tests/test_simd.py +1345 -0
- numpy/_core/tests/test_simd_module.py +105 -0
- numpy/_core/tests/test_stringdtype.py +1855 -0
- numpy/_core/tests/test_strings.py +1515 -0
- numpy/_core/tests/test_ufunc.py +3405 -0
- numpy/_core/tests/test_umath.py +4962 -0
- numpy/_core/tests/test_umath_accuracy.py +132 -0
- numpy/_core/tests/test_umath_complex.py +631 -0
- numpy/_core/tests/test_unicode.py +369 -0
- numpy/_core/umath.py +60 -0
- numpy/_core/umath.pyi +232 -0
- numpy/_distributor_init.py +15 -0
- numpy/_distributor_init.pyi +1 -0
- numpy/_expired_attrs_2_0.py +78 -0
- numpy/_expired_attrs_2_0.pyi +61 -0
- numpy/_globals.py +121 -0
- numpy/_globals.pyi +17 -0
- numpy/_pyinstaller/__init__.py +0 -0
- numpy/_pyinstaller/__init__.pyi +0 -0
- numpy/_pyinstaller/hook-numpy.py +36 -0
- numpy/_pyinstaller/hook-numpy.pyi +6 -0
- numpy/_pyinstaller/tests/__init__.py +16 -0
- numpy/_pyinstaller/tests/pyinstaller-smoke.py +32 -0
- numpy/_pyinstaller/tests/test_pyinstaller.py +35 -0
- numpy/_pytesttester.py +201 -0
- numpy/_pytesttester.pyi +18 -0
- numpy/_typing/__init__.py +173 -0
- numpy/_typing/_add_docstring.py +153 -0
- numpy/_typing/_array_like.py +106 -0
- numpy/_typing/_char_codes.py +213 -0
- numpy/_typing/_dtype_like.py +114 -0
- numpy/_typing/_extended_precision.py +15 -0
- numpy/_typing/_nbit.py +19 -0
- numpy/_typing/_nbit_base.py +94 -0
- numpy/_typing/_nbit_base.pyi +39 -0
- numpy/_typing/_nested_sequence.py +79 -0
- numpy/_typing/_scalars.py +20 -0
- numpy/_typing/_shape.py +8 -0
- numpy/_typing/_ufunc.py +7 -0
- numpy/_typing/_ufunc.pyi +975 -0
- numpy/_utils/__init__.py +95 -0
- numpy/_utils/__init__.pyi +28 -0
- numpy/_utils/_convertions.py +18 -0
- numpy/_utils/_convertions.pyi +4 -0
- numpy/_utils/_inspect.py +192 -0
- numpy/_utils/_inspect.pyi +70 -0
- numpy/_utils/_pep440.py +486 -0
- numpy/_utils/_pep440.pyi +118 -0
- numpy/char/__init__.py +2 -0
- numpy/char/__init__.pyi +111 -0
- numpy/conftest.py +248 -0
- numpy/core/__init__.py +33 -0
- numpy/core/__init__.pyi +0 -0
- numpy/core/_dtype.py +10 -0
- numpy/core/_dtype.pyi +0 -0
- numpy/core/_dtype_ctypes.py +10 -0
- numpy/core/_dtype_ctypes.pyi +0 -0
- numpy/core/_internal.py +27 -0
- numpy/core/_multiarray_umath.py +57 -0
- numpy/core/_utils.py +21 -0
- numpy/core/arrayprint.py +10 -0
- numpy/core/defchararray.py +10 -0
- numpy/core/einsumfunc.py +10 -0
- numpy/core/fromnumeric.py +10 -0
- numpy/core/function_base.py +10 -0
- numpy/core/getlimits.py +10 -0
- numpy/core/multiarray.py +25 -0
- numpy/core/numeric.py +12 -0
- numpy/core/numerictypes.py +10 -0
- numpy/core/overrides.py +10 -0
- numpy/core/overrides.pyi +7 -0
- numpy/core/records.py +10 -0
- numpy/core/shape_base.py +10 -0
- numpy/core/umath.py +10 -0
- numpy/ctypeslib/__init__.py +13 -0
- numpy/ctypeslib/__init__.pyi +15 -0
- numpy/ctypeslib/_ctypeslib.py +603 -0
- numpy/ctypeslib/_ctypeslib.pyi +236 -0
- numpy/doc/ufuncs.py +138 -0
- numpy/dtypes.py +41 -0
- numpy/dtypes.pyi +630 -0
- numpy/exceptions.py +246 -0
- numpy/exceptions.pyi +27 -0
- numpy/f2py/__init__.py +86 -0
- numpy/f2py/__init__.pyi +5 -0
- numpy/f2py/__main__.py +5 -0
- numpy/f2py/__version__.py +1 -0
- numpy/f2py/__version__.pyi +1 -0
- numpy/f2py/_backends/__init__.py +9 -0
- numpy/f2py/_backends/__init__.pyi +5 -0
- numpy/f2py/_backends/_backend.py +44 -0
- numpy/f2py/_backends/_backend.pyi +46 -0
- numpy/f2py/_backends/_distutils.py +76 -0
- numpy/f2py/_backends/_distutils.pyi +13 -0
- numpy/f2py/_backends/_meson.py +244 -0
- numpy/f2py/_backends/_meson.pyi +62 -0
- numpy/f2py/_backends/meson.build.template +58 -0
- numpy/f2py/_isocbind.py +62 -0
- numpy/f2py/_isocbind.pyi +13 -0
- numpy/f2py/_src_pyf.py +247 -0
- numpy/f2py/_src_pyf.pyi +28 -0
- numpy/f2py/auxfuncs.py +1004 -0
- numpy/f2py/auxfuncs.pyi +262 -0
- numpy/f2py/capi_maps.py +811 -0
- numpy/f2py/capi_maps.pyi +33 -0
- numpy/f2py/cb_rules.py +665 -0
- numpy/f2py/cb_rules.pyi +17 -0
- numpy/f2py/cfuncs.py +1563 -0
- numpy/f2py/cfuncs.pyi +31 -0
- numpy/f2py/common_rules.py +143 -0
- numpy/f2py/common_rules.pyi +9 -0
- numpy/f2py/crackfortran.py +3725 -0
- numpy/f2py/crackfortran.pyi +266 -0
- numpy/f2py/diagnose.py +149 -0
- numpy/f2py/diagnose.pyi +1 -0
- numpy/f2py/f2py2e.py +788 -0
- numpy/f2py/f2py2e.pyi +74 -0
- numpy/f2py/f90mod_rules.py +269 -0
- numpy/f2py/f90mod_rules.pyi +16 -0
- numpy/f2py/func2subr.py +329 -0
- numpy/f2py/func2subr.pyi +7 -0
- numpy/f2py/rules.py +1629 -0
- numpy/f2py/rules.pyi +41 -0
- numpy/f2py/setup.cfg +3 -0
- numpy/f2py/src/fortranobject.c +1436 -0
- numpy/f2py/src/fortranobject.h +173 -0
- numpy/f2py/symbolic.py +1518 -0
- numpy/f2py/symbolic.pyi +219 -0
- numpy/f2py/tests/__init__.py +16 -0
- numpy/f2py/tests/src/abstract_interface/foo.f90 +34 -0
- numpy/f2py/tests/src/abstract_interface/gh18403_mod.f90 +6 -0
- numpy/f2py/tests/src/array_from_pyobj/wrapmodule.c +235 -0
- numpy/f2py/tests/src/assumed_shape/.f2py_f2cmap +1 -0
- numpy/f2py/tests/src/assumed_shape/foo_free.f90 +34 -0
- numpy/f2py/tests/src/assumed_shape/foo_mod.f90 +41 -0
- numpy/f2py/tests/src/assumed_shape/foo_use.f90 +19 -0
- numpy/f2py/tests/src/assumed_shape/precision.f90 +4 -0
- numpy/f2py/tests/src/block_docstring/foo.f +6 -0
- numpy/f2py/tests/src/callback/foo.f +62 -0
- numpy/f2py/tests/src/callback/gh17797.f90 +7 -0
- numpy/f2py/tests/src/callback/gh18335.f90 +17 -0
- numpy/f2py/tests/src/callback/gh25211.f +10 -0
- numpy/f2py/tests/src/callback/gh25211.pyf +18 -0
- numpy/f2py/tests/src/callback/gh26681.f90 +18 -0
- numpy/f2py/tests/src/cli/gh_22819.pyf +6 -0
- numpy/f2py/tests/src/cli/hi77.f +3 -0
- numpy/f2py/tests/src/cli/hiworld.f90 +3 -0
- numpy/f2py/tests/src/common/block.f +11 -0
- numpy/f2py/tests/src/common/gh19161.f90 +10 -0
- numpy/f2py/tests/src/crackfortran/accesstype.f90 +13 -0
- numpy/f2py/tests/src/crackfortran/common_with_division.f +17 -0
- numpy/f2py/tests/src/crackfortran/data_common.f +8 -0
- numpy/f2py/tests/src/crackfortran/data_multiplier.f +5 -0
- numpy/f2py/tests/src/crackfortran/data_stmts.f90 +20 -0
- numpy/f2py/tests/src/crackfortran/data_with_comments.f +8 -0
- numpy/f2py/tests/src/crackfortran/foo_deps.f90 +6 -0
- numpy/f2py/tests/src/crackfortran/gh15035.f +16 -0
- numpy/f2py/tests/src/crackfortran/gh17859.f +12 -0
- numpy/f2py/tests/src/crackfortran/gh22648.pyf +7 -0
- numpy/f2py/tests/src/crackfortran/gh23533.f +5 -0
- numpy/f2py/tests/src/crackfortran/gh23598.f90 +4 -0
- numpy/f2py/tests/src/crackfortran/gh23598Warn.f90 +11 -0
- numpy/f2py/tests/src/crackfortran/gh23879.f90 +20 -0
- numpy/f2py/tests/src/crackfortran/gh27697.f90 +12 -0
- numpy/f2py/tests/src/crackfortran/gh2848.f90 +13 -0
- numpy/f2py/tests/src/crackfortran/operators.f90 +49 -0
- numpy/f2py/tests/src/crackfortran/privatemod.f90 +11 -0
- numpy/f2py/tests/src/crackfortran/publicmod.f90 +10 -0
- numpy/f2py/tests/src/crackfortran/pubprivmod.f90 +10 -0
- numpy/f2py/tests/src/crackfortran/unicode_comment.f90 +4 -0
- numpy/f2py/tests/src/f2cmap/.f2py_f2cmap +1 -0
- numpy/f2py/tests/src/f2cmap/isoFortranEnvMap.f90 +9 -0
- numpy/f2py/tests/src/isocintrin/isoCtests.f90 +34 -0
- numpy/f2py/tests/src/kind/foo.f90 +20 -0
- numpy/f2py/tests/src/mixed/foo.f +5 -0
- numpy/f2py/tests/src/mixed/foo_fixed.f90 +8 -0
- numpy/f2py/tests/src/mixed/foo_free.f90 +8 -0
- numpy/f2py/tests/src/modules/gh25337/data.f90 +8 -0
- numpy/f2py/tests/src/modules/gh25337/use_data.f90 +6 -0
- numpy/f2py/tests/src/modules/gh26920/two_mods_with_no_public_entities.f90 +21 -0
- numpy/f2py/tests/src/modules/gh26920/two_mods_with_one_public_routine.f90 +21 -0
- numpy/f2py/tests/src/modules/module_data_docstring.f90 +12 -0
- numpy/f2py/tests/src/modules/use_modules.f90 +20 -0
- numpy/f2py/tests/src/negative_bounds/issue_20853.f90 +7 -0
- numpy/f2py/tests/src/parameter/constant_array.f90 +45 -0
- numpy/f2py/tests/src/parameter/constant_both.f90 +57 -0
- numpy/f2py/tests/src/parameter/constant_compound.f90 +15 -0
- numpy/f2py/tests/src/parameter/constant_integer.f90 +22 -0
- numpy/f2py/tests/src/parameter/constant_non_compound.f90 +23 -0
- numpy/f2py/tests/src/parameter/constant_real.f90 +23 -0
- numpy/f2py/tests/src/quoted_character/foo.f +14 -0
- numpy/f2py/tests/src/regression/AB.inc +1 -0
- numpy/f2py/tests/src/regression/assignOnlyModule.f90 +25 -0
- numpy/f2py/tests/src/regression/datonly.f90 +17 -0
- numpy/f2py/tests/src/regression/f77comments.f +26 -0
- numpy/f2py/tests/src/regression/f77fixedform.f95 +5 -0
- numpy/f2py/tests/src/regression/f90continuation.f90 +9 -0
- numpy/f2py/tests/src/regression/incfile.f90 +5 -0
- numpy/f2py/tests/src/regression/inout.f90 +9 -0
- numpy/f2py/tests/src/regression/lower_f2py_fortran.f90 +5 -0
- numpy/f2py/tests/src/regression/mod_derived_types.f90 +23 -0
- numpy/f2py/tests/src/return_character/foo77.f +45 -0
- numpy/f2py/tests/src/return_character/foo90.f90 +48 -0
- numpy/f2py/tests/src/return_complex/foo77.f +45 -0
- numpy/f2py/tests/src/return_complex/foo90.f90 +48 -0
- numpy/f2py/tests/src/return_integer/foo77.f +56 -0
- numpy/f2py/tests/src/return_integer/foo90.f90 +59 -0
- numpy/f2py/tests/src/return_logical/foo77.f +56 -0
- numpy/f2py/tests/src/return_logical/foo90.f90 +59 -0
- numpy/f2py/tests/src/return_real/foo77.f +45 -0
- numpy/f2py/tests/src/return_real/foo90.f90 +48 -0
- numpy/f2py/tests/src/routines/funcfortranname.f +5 -0
- numpy/f2py/tests/src/routines/funcfortranname.pyf +11 -0
- numpy/f2py/tests/src/routines/subrout.f +4 -0
- numpy/f2py/tests/src/routines/subrout.pyf +10 -0
- numpy/f2py/tests/src/size/foo.f90 +44 -0
- numpy/f2py/tests/src/string/char.f90 +29 -0
- numpy/f2py/tests/src/string/fixed_string.f90 +34 -0
- numpy/f2py/tests/src/string/gh24008.f +8 -0
- numpy/f2py/tests/src/string/gh24662.f90 +7 -0
- numpy/f2py/tests/src/string/gh25286.f90 +14 -0
- numpy/f2py/tests/src/string/gh25286.pyf +12 -0
- numpy/f2py/tests/src/string/gh25286_bc.pyf +12 -0
- numpy/f2py/tests/src/string/scalar_string.f90 +9 -0
- numpy/f2py/tests/src/string/string.f +12 -0
- numpy/f2py/tests/src/value_attrspec/gh21665.f90 +9 -0
- numpy/f2py/tests/test_abstract_interface.py +26 -0
- numpy/f2py/tests/test_array_from_pyobj.py +678 -0
- numpy/f2py/tests/test_assumed_shape.py +50 -0
- numpy/f2py/tests/test_block_docstring.py +20 -0
- numpy/f2py/tests/test_callback.py +263 -0
- numpy/f2py/tests/test_character.py +641 -0
- numpy/f2py/tests/test_common.py +23 -0
- numpy/f2py/tests/test_crackfortran.py +421 -0
- numpy/f2py/tests/test_data.py +71 -0
- numpy/f2py/tests/test_docs.py +66 -0
- numpy/f2py/tests/test_f2cmap.py +17 -0
- numpy/f2py/tests/test_f2py2e.py +983 -0
- numpy/f2py/tests/test_isoc.py +56 -0
- numpy/f2py/tests/test_kind.py +52 -0
- numpy/f2py/tests/test_mixed.py +35 -0
- numpy/f2py/tests/test_modules.py +83 -0
- numpy/f2py/tests/test_parameter.py +129 -0
- numpy/f2py/tests/test_pyf_src.py +43 -0
- numpy/f2py/tests/test_quoted_character.py +18 -0
- numpy/f2py/tests/test_regression.py +187 -0
- numpy/f2py/tests/test_return_character.py +48 -0
- numpy/f2py/tests/test_return_complex.py +67 -0
- numpy/f2py/tests/test_return_integer.py +55 -0
- numpy/f2py/tests/test_return_logical.py +65 -0
- numpy/f2py/tests/test_return_real.py +109 -0
- numpy/f2py/tests/test_routines.py +29 -0
- numpy/f2py/tests/test_semicolon_split.py +75 -0
- numpy/f2py/tests/test_size.py +45 -0
- numpy/f2py/tests/test_string.py +100 -0
- numpy/f2py/tests/test_symbolic.py +500 -0
- numpy/f2py/tests/test_value_attrspec.py +15 -0
- numpy/f2py/tests/util.py +442 -0
- numpy/f2py/use_rules.py +99 -0
- numpy/f2py/use_rules.pyi +9 -0
- numpy/fft/__init__.py +213 -0
- numpy/fft/__init__.pyi +38 -0
- numpy/fft/_helper.py +235 -0
- numpy/fft/_helper.pyi +44 -0
- numpy/fft/_pocketfft.py +1693 -0
- numpy/fft/_pocketfft.pyi +137 -0
- numpy/fft/_pocketfft_umath.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/fft/tests/__init__.py +0 -0
- numpy/fft/tests/test_helper.py +167 -0
- numpy/fft/tests/test_pocketfft.py +589 -0
- numpy/lib/__init__.py +97 -0
- numpy/lib/__init__.pyi +52 -0
- numpy/lib/_array_utils_impl.py +62 -0
- numpy/lib/_array_utils_impl.pyi +10 -0
- numpy/lib/_arraypad_impl.py +926 -0
- numpy/lib/_arraypad_impl.pyi +88 -0
- numpy/lib/_arraysetops_impl.py +1158 -0
- numpy/lib/_arraysetops_impl.pyi +462 -0
- numpy/lib/_arrayterator_impl.py +224 -0
- numpy/lib/_arrayterator_impl.pyi +45 -0
- numpy/lib/_datasource.py +700 -0
- numpy/lib/_datasource.pyi +30 -0
- numpy/lib/_format_impl.py +1036 -0
- numpy/lib/_format_impl.pyi +56 -0
- numpy/lib/_function_base_impl.py +5758 -0
- numpy/lib/_function_base_impl.pyi +2324 -0
- numpy/lib/_histograms_impl.py +1085 -0
- numpy/lib/_histograms_impl.pyi +40 -0
- numpy/lib/_index_tricks_impl.py +1048 -0
- numpy/lib/_index_tricks_impl.pyi +267 -0
- numpy/lib/_iotools.py +900 -0
- numpy/lib/_iotools.pyi +116 -0
- numpy/lib/_nanfunctions_impl.py +2001 -0
- numpy/lib/_nanfunctions_impl.pyi +48 -0
- numpy/lib/_npyio_impl.py +2583 -0
- numpy/lib/_npyio_impl.pyi +299 -0
- numpy/lib/_polynomial_impl.py +1465 -0
- numpy/lib/_polynomial_impl.pyi +338 -0
- numpy/lib/_scimath_impl.py +642 -0
- numpy/lib/_scimath_impl.pyi +93 -0
- numpy/lib/_shape_base_impl.py +1289 -0
- numpy/lib/_shape_base_impl.pyi +236 -0
- numpy/lib/_stride_tricks_impl.py +582 -0
- numpy/lib/_stride_tricks_impl.pyi +73 -0
- numpy/lib/_twodim_base_impl.py +1201 -0
- numpy/lib/_twodim_base_impl.pyi +408 -0
- numpy/lib/_type_check_impl.py +710 -0
- numpy/lib/_type_check_impl.pyi +348 -0
- numpy/lib/_ufunclike_impl.py +199 -0
- numpy/lib/_ufunclike_impl.pyi +60 -0
- numpy/lib/_user_array_impl.py +310 -0
- numpy/lib/_user_array_impl.pyi +226 -0
- numpy/lib/_utils_impl.py +784 -0
- numpy/lib/_utils_impl.pyi +22 -0
- numpy/lib/_version.py +153 -0
- numpy/lib/_version.pyi +17 -0
- numpy/lib/array_utils.py +7 -0
- numpy/lib/array_utils.pyi +6 -0
- numpy/lib/format.py +24 -0
- numpy/lib/format.pyi +24 -0
- numpy/lib/introspect.py +94 -0
- numpy/lib/introspect.pyi +3 -0
- numpy/lib/mixins.py +180 -0
- numpy/lib/mixins.pyi +78 -0
- numpy/lib/npyio.py +1 -0
- numpy/lib/npyio.pyi +5 -0
- numpy/lib/recfunctions.py +1681 -0
- numpy/lib/recfunctions.pyi +444 -0
- numpy/lib/scimath.py +13 -0
- numpy/lib/scimath.pyi +12 -0
- numpy/lib/stride_tricks.py +1 -0
- numpy/lib/stride_tricks.pyi +4 -0
- numpy/lib/tests/__init__.py +0 -0
- numpy/lib/tests/data/py2-np0-objarr.npy +0 -0
- numpy/lib/tests/data/py2-objarr.npy +0 -0
- numpy/lib/tests/data/py2-objarr.npz +0 -0
- numpy/lib/tests/data/py3-objarr.npy +0 -0
- numpy/lib/tests/data/py3-objarr.npz +0 -0
- numpy/lib/tests/data/python3.npy +0 -0
- numpy/lib/tests/data/win64python2.npy +0 -0
- numpy/lib/tests/test__datasource.py +328 -0
- numpy/lib/tests/test__iotools.py +358 -0
- numpy/lib/tests/test__version.py +64 -0
- numpy/lib/tests/test_array_utils.py +32 -0
- numpy/lib/tests/test_arraypad.py +1427 -0
- numpy/lib/tests/test_arraysetops.py +1302 -0
- numpy/lib/tests/test_arrayterator.py +45 -0
- numpy/lib/tests/test_format.py +1054 -0
- numpy/lib/tests/test_function_base.py +4705 -0
- numpy/lib/tests/test_histograms.py +855 -0
- numpy/lib/tests/test_index_tricks.py +693 -0
- numpy/lib/tests/test_io.py +2857 -0
- numpy/lib/tests/test_loadtxt.py +1099 -0
- numpy/lib/tests/test_mixins.py +215 -0
- numpy/lib/tests/test_nanfunctions.py +1438 -0
- numpy/lib/tests/test_packbits.py +376 -0
- numpy/lib/tests/test_polynomial.py +325 -0
- numpy/lib/tests/test_recfunctions.py +1042 -0
- numpy/lib/tests/test_regression.py +231 -0
- numpy/lib/tests/test_shape_base.py +813 -0
- numpy/lib/tests/test_stride_tricks.py +655 -0
- numpy/lib/tests/test_twodim_base.py +559 -0
- numpy/lib/tests/test_type_check.py +473 -0
- numpy/lib/tests/test_ufunclike.py +97 -0
- numpy/lib/tests/test_utils.py +80 -0
- numpy/lib/user_array.py +1 -0
- numpy/lib/user_array.pyi +1 -0
- numpy/linalg/__init__.py +95 -0
- numpy/linalg/__init__.pyi +71 -0
- numpy/linalg/_linalg.py +3657 -0
- numpy/linalg/_linalg.pyi +548 -0
- numpy/linalg/_umath_linalg.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/linalg/_umath_linalg.pyi +60 -0
- numpy/linalg/lapack_lite.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/linalg/lapack_lite.pyi +143 -0
- numpy/linalg/tests/__init__.py +0 -0
- numpy/linalg/tests/test_deprecations.py +21 -0
- numpy/linalg/tests/test_linalg.py +2442 -0
- numpy/linalg/tests/test_regression.py +182 -0
- numpy/ma/API_CHANGES.txt +135 -0
- numpy/ma/LICENSE +24 -0
- numpy/ma/README.rst +236 -0
- numpy/ma/__init__.py +53 -0
- numpy/ma/__init__.pyi +458 -0
- numpy/ma/core.py +8929 -0
- numpy/ma/core.pyi +3720 -0
- numpy/ma/extras.py +2266 -0
- numpy/ma/extras.pyi +297 -0
- numpy/ma/mrecords.py +762 -0
- numpy/ma/mrecords.pyi +96 -0
- numpy/ma/tests/__init__.py +0 -0
- numpy/ma/tests/test_arrayobject.py +40 -0
- numpy/ma/tests/test_core.py +6008 -0
- numpy/ma/tests/test_deprecations.py +65 -0
- numpy/ma/tests/test_extras.py +1945 -0
- numpy/ma/tests/test_mrecords.py +495 -0
- numpy/ma/tests/test_old_ma.py +939 -0
- numpy/ma/tests/test_regression.py +83 -0
- numpy/ma/tests/test_subclassing.py +469 -0
- numpy/ma/testutils.py +294 -0
- numpy/ma/testutils.pyi +69 -0
- numpy/matlib.py +380 -0
- numpy/matlib.pyi +580 -0
- numpy/matrixlib/__init__.py +12 -0
- numpy/matrixlib/__init__.pyi +3 -0
- numpy/matrixlib/defmatrix.py +1119 -0
- numpy/matrixlib/defmatrix.pyi +218 -0
- numpy/matrixlib/tests/__init__.py +0 -0
- numpy/matrixlib/tests/test_defmatrix.py +455 -0
- numpy/matrixlib/tests/test_interaction.py +360 -0
- numpy/matrixlib/tests/test_masked_matrix.py +240 -0
- numpy/matrixlib/tests/test_matrix_linalg.py +110 -0
- numpy/matrixlib/tests/test_multiarray.py +17 -0
- numpy/matrixlib/tests/test_numeric.py +18 -0
- numpy/matrixlib/tests/test_regression.py +31 -0
- numpy/polynomial/__init__.py +187 -0
- numpy/polynomial/__init__.pyi +31 -0
- numpy/polynomial/_polybase.py +1191 -0
- numpy/polynomial/_polybase.pyi +262 -0
- numpy/polynomial/_polytypes.pyi +501 -0
- numpy/polynomial/chebyshev.py +2001 -0
- numpy/polynomial/chebyshev.pyi +180 -0
- numpy/polynomial/hermite.py +1738 -0
- numpy/polynomial/hermite.pyi +106 -0
- numpy/polynomial/hermite_e.py +1640 -0
- numpy/polynomial/hermite_e.pyi +106 -0
- numpy/polynomial/laguerre.py +1673 -0
- numpy/polynomial/laguerre.pyi +100 -0
- numpy/polynomial/legendre.py +1603 -0
- numpy/polynomial/legendre.pyi +100 -0
- numpy/polynomial/polynomial.py +1625 -0
- numpy/polynomial/polynomial.pyi +109 -0
- numpy/polynomial/polyutils.py +759 -0
- numpy/polynomial/polyutils.pyi +307 -0
- numpy/polynomial/tests/__init__.py +0 -0
- numpy/polynomial/tests/test_chebyshev.py +618 -0
- numpy/polynomial/tests/test_classes.py +613 -0
- numpy/polynomial/tests/test_hermite.py +553 -0
- numpy/polynomial/tests/test_hermite_e.py +554 -0
- numpy/polynomial/tests/test_laguerre.py +535 -0
- numpy/polynomial/tests/test_legendre.py +566 -0
- numpy/polynomial/tests/test_polynomial.py +691 -0
- numpy/polynomial/tests/test_polyutils.py +123 -0
- numpy/polynomial/tests/test_printing.py +557 -0
- numpy/polynomial/tests/test_symbol.py +217 -0
- numpy/py.typed +0 -0
- numpy/random/LICENSE.md +71 -0
- numpy/random/__init__.pxd +14 -0
- numpy/random/__init__.py +213 -0
- numpy/random/__init__.pyi +124 -0
- numpy/random/_bounded_integers.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_bounded_integers.pxd +29 -0
- numpy/random/_bounded_integers.pyi +1 -0
- numpy/random/_common.cpython-313t-aarch64-linux-musl.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 +117 -0
- numpy/random/_examples/cython/meson.build +53 -0
- numpy/random/_examples/numba/extending.py +86 -0
- numpy/random/_examples/numba/extending_distributions.py +67 -0
- numpy/random/_generator.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_generator.pyi +862 -0
- numpy/random/_mt19937.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_mt19937.pyi +27 -0
- numpy/random/_pcg64.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_pcg64.pyi +41 -0
- numpy/random/_philox.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_philox.pyi +36 -0
- numpy/random/_pickle.py +88 -0
- numpy/random/_pickle.pyi +43 -0
- numpy/random/_sfc64.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_sfc64.pyi +25 -0
- numpy/random/bit_generator.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/bit_generator.pxd +35 -0
- numpy/random/bit_generator.pyi +123 -0
- numpy/random/c_distributions.pxd +119 -0
- numpy/random/lib/libnpyrandom.a +0 -0
- numpy/random/mtrand.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/mtrand.pyi +759 -0
- numpy/random/tests/__init__.py +0 -0
- numpy/random/tests/data/__init__.py +0 -0
- numpy/random/tests/data/generator_pcg64_np121.pkl.gz +0 -0
- numpy/random/tests/data/generator_pcg64_np126.pkl.gz +0 -0
- numpy/random/tests/data/mt19937-testset-1.csv +1001 -0
- numpy/random/tests/data/mt19937-testset-2.csv +1001 -0
- numpy/random/tests/data/pcg64-testset-1.csv +1001 -0
- numpy/random/tests/data/pcg64-testset-2.csv +1001 -0
- numpy/random/tests/data/pcg64dxsm-testset-1.csv +1001 -0
- numpy/random/tests/data/pcg64dxsm-testset-2.csv +1001 -0
- numpy/random/tests/data/philox-testset-1.csv +1001 -0
- numpy/random/tests/data/philox-testset-2.csv +1001 -0
- numpy/random/tests/data/sfc64-testset-1.csv +1001 -0
- numpy/random/tests/data/sfc64-testset-2.csv +1001 -0
- numpy/random/tests/data/sfc64_np126.pkl.gz +0 -0
- numpy/random/tests/test_direct.py +595 -0
- numpy/random/tests/test_extending.py +131 -0
- numpy/random/tests/test_generator_mt19937.py +2825 -0
- numpy/random/tests/test_generator_mt19937_regressions.py +221 -0
- numpy/random/tests/test_random.py +1724 -0
- numpy/random/tests/test_randomstate.py +2099 -0
- numpy/random/tests/test_randomstate_regression.py +213 -0
- numpy/random/tests/test_regression.py +175 -0
- numpy/random/tests/test_seed_sequence.py +79 -0
- numpy/random/tests/test_smoke.py +882 -0
- numpy/rec/__init__.py +2 -0
- numpy/rec/__init__.pyi +23 -0
- numpy/strings/__init__.py +2 -0
- numpy/strings/__init__.pyi +97 -0
- numpy/testing/__init__.py +22 -0
- numpy/testing/__init__.pyi +107 -0
- numpy/testing/_private/__init__.py +0 -0
- numpy/testing/_private/__init__.pyi +0 -0
- numpy/testing/_private/extbuild.py +250 -0
- numpy/testing/_private/extbuild.pyi +25 -0
- numpy/testing/_private/utils.py +2830 -0
- numpy/testing/_private/utils.pyi +505 -0
- numpy/testing/overrides.py +84 -0
- numpy/testing/overrides.pyi +10 -0
- numpy/testing/print_coercion_tables.py +207 -0
- numpy/testing/print_coercion_tables.pyi +26 -0
- numpy/testing/tests/__init__.py +0 -0
- numpy/testing/tests/test_utils.py +2123 -0
- numpy/tests/__init__.py +0 -0
- numpy/tests/test__all__.py +10 -0
- numpy/tests/test_configtool.py +51 -0
- numpy/tests/test_ctypeslib.py +383 -0
- numpy/tests/test_lazyloading.py +42 -0
- numpy/tests/test_matlib.py +59 -0
- numpy/tests/test_numpy_config.py +47 -0
- numpy/tests/test_numpy_version.py +54 -0
- numpy/tests/test_public_api.py +804 -0
- numpy/tests/test_reloading.py +76 -0
- numpy/tests/test_scripts.py +48 -0
- numpy/tests/test_warnings.py +79 -0
- numpy/typing/__init__.py +233 -0
- numpy/typing/__init__.pyi +3 -0
- numpy/typing/mypy_plugin.py +200 -0
- numpy/typing/tests/__init__.py +0 -0
- numpy/typing/tests/data/fail/arithmetic.pyi +126 -0
- numpy/typing/tests/data/fail/array_constructors.pyi +34 -0
- numpy/typing/tests/data/fail/array_like.pyi +15 -0
- numpy/typing/tests/data/fail/array_pad.pyi +6 -0
- numpy/typing/tests/data/fail/arrayprint.pyi +15 -0
- numpy/typing/tests/data/fail/arrayterator.pyi +14 -0
- numpy/typing/tests/data/fail/bitwise_ops.pyi +17 -0
- numpy/typing/tests/data/fail/char.pyi +63 -0
- numpy/typing/tests/data/fail/chararray.pyi +61 -0
- numpy/typing/tests/data/fail/comparisons.pyi +27 -0
- numpy/typing/tests/data/fail/constants.pyi +3 -0
- numpy/typing/tests/data/fail/datasource.pyi +16 -0
- numpy/typing/tests/data/fail/dtype.pyi +17 -0
- numpy/typing/tests/data/fail/einsumfunc.pyi +12 -0
- numpy/typing/tests/data/fail/flatiter.pyi +38 -0
- numpy/typing/tests/data/fail/fromnumeric.pyi +148 -0
- numpy/typing/tests/data/fail/histograms.pyi +12 -0
- numpy/typing/tests/data/fail/index_tricks.pyi +14 -0
- numpy/typing/tests/data/fail/lib_function_base.pyi +60 -0
- numpy/typing/tests/data/fail/lib_polynomial.pyi +29 -0
- numpy/typing/tests/data/fail/lib_utils.pyi +3 -0
- numpy/typing/tests/data/fail/lib_version.pyi +6 -0
- numpy/typing/tests/data/fail/linalg.pyi +52 -0
- numpy/typing/tests/data/fail/ma.pyi +155 -0
- numpy/typing/tests/data/fail/memmap.pyi +5 -0
- numpy/typing/tests/data/fail/modules.pyi +17 -0
- numpy/typing/tests/data/fail/multiarray.pyi +52 -0
- numpy/typing/tests/data/fail/ndarray.pyi +11 -0
- numpy/typing/tests/data/fail/ndarray_misc.pyi +49 -0
- numpy/typing/tests/data/fail/nditer.pyi +8 -0
- numpy/typing/tests/data/fail/nested_sequence.pyi +17 -0
- numpy/typing/tests/data/fail/npyio.pyi +24 -0
- numpy/typing/tests/data/fail/numerictypes.pyi +5 -0
- numpy/typing/tests/data/fail/random.pyi +62 -0
- numpy/typing/tests/data/fail/rec.pyi +17 -0
- numpy/typing/tests/data/fail/scalars.pyi +86 -0
- numpy/typing/tests/data/fail/shape.pyi +7 -0
- numpy/typing/tests/data/fail/shape_base.pyi +8 -0
- numpy/typing/tests/data/fail/stride_tricks.pyi +9 -0
- numpy/typing/tests/data/fail/strings.pyi +52 -0
- numpy/typing/tests/data/fail/testing.pyi +28 -0
- numpy/typing/tests/data/fail/twodim_base.pyi +39 -0
- numpy/typing/tests/data/fail/type_check.pyi +12 -0
- numpy/typing/tests/data/fail/ufunc_config.pyi +21 -0
- numpy/typing/tests/data/fail/ufunclike.pyi +21 -0
- numpy/typing/tests/data/fail/ufuncs.pyi +17 -0
- numpy/typing/tests/data/fail/warnings_and_errors.pyi +5 -0
- numpy/typing/tests/data/misc/extended_precision.pyi +9 -0
- numpy/typing/tests/data/mypy.ini +8 -0
- numpy/typing/tests/data/pass/arithmetic.py +614 -0
- numpy/typing/tests/data/pass/array_constructors.py +138 -0
- numpy/typing/tests/data/pass/array_like.py +43 -0
- numpy/typing/tests/data/pass/arrayprint.py +37 -0
- numpy/typing/tests/data/pass/arrayterator.py +28 -0
- numpy/typing/tests/data/pass/bitwise_ops.py +131 -0
- numpy/typing/tests/data/pass/comparisons.py +316 -0
- numpy/typing/tests/data/pass/dtype.py +57 -0
- numpy/typing/tests/data/pass/einsumfunc.py +36 -0
- numpy/typing/tests/data/pass/flatiter.py +26 -0
- numpy/typing/tests/data/pass/fromnumeric.py +272 -0
- numpy/typing/tests/data/pass/index_tricks.py +62 -0
- numpy/typing/tests/data/pass/lib_user_array.py +22 -0
- numpy/typing/tests/data/pass/lib_utils.py +19 -0
- numpy/typing/tests/data/pass/lib_version.py +18 -0
- numpy/typing/tests/data/pass/literal.py +52 -0
- numpy/typing/tests/data/pass/ma.py +199 -0
- numpy/typing/tests/data/pass/mod.py +149 -0
- numpy/typing/tests/data/pass/modules.py +45 -0
- numpy/typing/tests/data/pass/multiarray.py +77 -0
- numpy/typing/tests/data/pass/ndarray_conversion.py +81 -0
- numpy/typing/tests/data/pass/ndarray_misc.py +199 -0
- numpy/typing/tests/data/pass/ndarray_shape_manipulation.py +47 -0
- numpy/typing/tests/data/pass/nditer.py +4 -0
- numpy/typing/tests/data/pass/numeric.py +90 -0
- numpy/typing/tests/data/pass/numerictypes.py +17 -0
- numpy/typing/tests/data/pass/random.py +1498 -0
- numpy/typing/tests/data/pass/recfunctions.py +164 -0
- numpy/typing/tests/data/pass/scalars.py +249 -0
- numpy/typing/tests/data/pass/shape.py +19 -0
- numpy/typing/tests/data/pass/simple.py +170 -0
- numpy/typing/tests/data/pass/ufunc_config.py +64 -0
- numpy/typing/tests/data/pass/ufunclike.py +52 -0
- numpy/typing/tests/data/pass/ufuncs.py +16 -0
- numpy/typing/tests/data/pass/warnings_and_errors.py +6 -0
- numpy/typing/tests/data/reveal/arithmetic.pyi +719 -0
- numpy/typing/tests/data/reveal/array_api_info.pyi +70 -0
- numpy/typing/tests/data/reveal/array_constructors.pyi +277 -0
- numpy/typing/tests/data/reveal/arraypad.pyi +27 -0
- numpy/typing/tests/data/reveal/arrayprint.pyi +25 -0
- numpy/typing/tests/data/reveal/arraysetops.pyi +74 -0
- numpy/typing/tests/data/reveal/arrayterator.pyi +27 -0
- numpy/typing/tests/data/reveal/bitwise_ops.pyi +166 -0
- numpy/typing/tests/data/reveal/char.pyi +225 -0
- numpy/typing/tests/data/reveal/chararray.pyi +138 -0
- numpy/typing/tests/data/reveal/comparisons.pyi +264 -0
- numpy/typing/tests/data/reveal/constants.pyi +14 -0
- numpy/typing/tests/data/reveal/ctypeslib.pyi +81 -0
- numpy/typing/tests/data/reveal/datasource.pyi +23 -0
- numpy/typing/tests/data/reveal/dtype.pyi +132 -0
- numpy/typing/tests/data/reveal/einsumfunc.pyi +39 -0
- numpy/typing/tests/data/reveal/emath.pyi +54 -0
- numpy/typing/tests/data/reveal/fft.pyi +37 -0
- numpy/typing/tests/data/reveal/flatiter.pyi +86 -0
- numpy/typing/tests/data/reveal/fromnumeric.pyi +347 -0
- numpy/typing/tests/data/reveal/getlimits.pyi +53 -0
- numpy/typing/tests/data/reveal/histograms.pyi +25 -0
- numpy/typing/tests/data/reveal/index_tricks.pyi +70 -0
- numpy/typing/tests/data/reveal/lib_function_base.pyi +409 -0
- numpy/typing/tests/data/reveal/lib_polynomial.pyi +147 -0
- numpy/typing/tests/data/reveal/lib_utils.pyi +17 -0
- numpy/typing/tests/data/reveal/lib_version.pyi +20 -0
- numpy/typing/tests/data/reveal/linalg.pyi +154 -0
- numpy/typing/tests/data/reveal/ma.pyi +1098 -0
- numpy/typing/tests/data/reveal/matrix.pyi +73 -0
- numpy/typing/tests/data/reveal/memmap.pyi +19 -0
- numpy/typing/tests/data/reveal/mod.pyi +178 -0
- numpy/typing/tests/data/reveal/modules.pyi +51 -0
- numpy/typing/tests/data/reveal/multiarray.pyi +197 -0
- numpy/typing/tests/data/reveal/nbit_base_example.pyi +20 -0
- numpy/typing/tests/data/reveal/ndarray_assignability.pyi +82 -0
- numpy/typing/tests/data/reveal/ndarray_conversion.pyi +83 -0
- numpy/typing/tests/data/reveal/ndarray_misc.pyi +246 -0
- numpy/typing/tests/data/reveal/ndarray_shape_manipulation.pyi +47 -0
- numpy/typing/tests/data/reveal/nditer.pyi +49 -0
- numpy/typing/tests/data/reveal/nested_sequence.pyi +25 -0
- numpy/typing/tests/data/reveal/npyio.pyi +83 -0
- numpy/typing/tests/data/reveal/numeric.pyi +170 -0
- numpy/typing/tests/data/reveal/numerictypes.pyi +16 -0
- numpy/typing/tests/data/reveal/polynomial_polybase.pyi +217 -0
- numpy/typing/tests/data/reveal/polynomial_polyutils.pyi +218 -0
- numpy/typing/tests/data/reveal/polynomial_series.pyi +138 -0
- numpy/typing/tests/data/reveal/random.pyi +1546 -0
- numpy/typing/tests/data/reveal/rec.pyi +171 -0
- numpy/typing/tests/data/reveal/scalars.pyi +191 -0
- numpy/typing/tests/data/reveal/shape.pyi +13 -0
- numpy/typing/tests/data/reveal/shape_base.pyi +52 -0
- numpy/typing/tests/data/reveal/stride_tricks.pyi +27 -0
- numpy/typing/tests/data/reveal/strings.pyi +196 -0
- numpy/typing/tests/data/reveal/testing.pyi +198 -0
- numpy/typing/tests/data/reveal/twodim_base.pyi +225 -0
- numpy/typing/tests/data/reveal/type_check.pyi +67 -0
- numpy/typing/tests/data/reveal/ufunc_config.pyi +29 -0
- numpy/typing/tests/data/reveal/ufunclike.pyi +31 -0
- numpy/typing/tests/data/reveal/ufuncs.pyi +142 -0
- numpy/typing/tests/data/reveal/warnings_and_errors.pyi +11 -0
- numpy/typing/tests/test_isfile.py +38 -0
- numpy/typing/tests/test_runtime.py +110 -0
- numpy/typing/tests/test_typing.py +205 -0
- numpy/version.py +11 -0
- numpy/version.pyi +9 -0
- numpy-2.4.0.dist-info/METADATA +139 -0
- numpy-2.4.0.dist-info/RECORD +915 -0
- numpy-2.4.0.dist-info/WHEEL +5 -0
- numpy-2.4.0.dist-info/entry_points.txt +13 -0
- numpy-2.4.0.dist-info/licenses/LICENSE.txt +935 -0
- numpy-2.4.0.dist-info/licenses/numpy/_core/include/numpy/libdivide/LICENSE.txt +21 -0
- numpy-2.4.0.dist-info/licenses/numpy/_core/src/common/pythoncapi-compat/COPYING +14 -0
- numpy-2.4.0.dist-info/licenses/numpy/_core/src/highway/LICENSE +371 -0
- numpy-2.4.0.dist-info/licenses/numpy/_core/src/multiarray/dragon4_LICENSE.txt +27 -0
- numpy-2.4.0.dist-info/licenses/numpy/_core/src/npysort/x86-simd-sort/LICENSE.md +28 -0
- numpy-2.4.0.dist-info/licenses/numpy/_core/src/umath/svml/LICENSE +30 -0
- numpy-2.4.0.dist-info/licenses/numpy/fft/pocketfft/LICENSE.md +25 -0
- numpy-2.4.0.dist-info/licenses/numpy/linalg/lapack_lite/LICENSE.txt +48 -0
- numpy-2.4.0.dist-info/licenses/numpy/ma/LICENSE +24 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/LICENSE.md +71 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/src/distributions/LICENSE.md +61 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/src/mt19937/LICENSE.md +61 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/src/pcg64/LICENSE.md +22 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/src/philox/LICENSE.md +31 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/src/sfc64/LICENSE.md +27 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/src/splitmix64/LICENSE.md +9 -0
- numpy.libs/libgcc_s-2d945d6c-767fb991.so.1 +0 -0
- numpy.libs/libgcc_s-2d945d6c.so.1 +0 -0
- numpy.libs/libgfortran-67378ab2-e7e7cfab.so.5.0.0 +0 -0
- numpy.libs/libscipy_openblas64_-1fc386ee.so +0 -0
- numpy.libs/libstdc++-85f2cd6d.so.6.0.33 +0 -0
|
@@ -0,0 +1,1001 @@
|
|
|
1
|
+
seed, 0xdeadbeaf
|
|
2
|
+
0, 0xdf1ddcf1e22521fe
|
|
3
|
+
1, 0xc71b2f9c706cf151
|
|
4
|
+
2, 0x6922a8cc24ad96b2
|
|
5
|
+
3, 0x82738c549beccc30
|
|
6
|
+
4, 0x5e8415cdb1f17580
|
|
7
|
+
5, 0x64c54ad0c09cb43
|
|
8
|
+
6, 0x361a17a607dce278
|
|
9
|
+
7, 0x4346f6afb7acad68
|
|
10
|
+
8, 0x6e9f14d4f6398d6b
|
|
11
|
+
9, 0xf818d4343f8ed822
|
|
12
|
+
10, 0x6327647daf508ed6
|
|
13
|
+
11, 0xe1d1dbe5496a262a
|
|
14
|
+
12, 0xfc081e619076b2e0
|
|
15
|
+
13, 0x37126563a956ab1
|
|
16
|
+
14, 0x8bb46e155db16b9
|
|
17
|
+
15, 0x56449f006c9f3fb4
|
|
18
|
+
16, 0x34a9273550941803
|
|
19
|
+
17, 0x5b4df62660f99462
|
|
20
|
+
18, 0xb8665cad532e3018
|
|
21
|
+
19, 0x72fc3e5f7f84216a
|
|
22
|
+
20, 0x71d3c47f6fd59939
|
|
23
|
+
21, 0xfd4218afa1de463b
|
|
24
|
+
22, 0xc84054c78e0a9a71
|
|
25
|
+
23, 0xae59034726be61a8
|
|
26
|
+
24, 0xa6a5f21de983654d
|
|
27
|
+
25, 0x3b633acf572009da
|
|
28
|
+
26, 0x6a0884f347ab54c8
|
|
29
|
+
27, 0x7a907ebe9adcab50
|
|
30
|
+
28, 0xbe779be53d7b8d4a
|
|
31
|
+
29, 0xf5976e8c69b9dcd1
|
|
32
|
+
30, 0x1d8302f114699e11
|
|
33
|
+
31, 0x7d37e43042c038a0
|
|
34
|
+
32, 0x2cc1d4edc2a40f35
|
|
35
|
+
33, 0x83e3347bb2d581f1
|
|
36
|
+
34, 0x253f8698651a844d
|
|
37
|
+
35, 0x4312dea0dd4e32f6
|
|
38
|
+
36, 0x10f106439964ea3a
|
|
39
|
+
37, 0x810eb374844868cc
|
|
40
|
+
38, 0x366342a54b1978cc
|
|
41
|
+
39, 0x9fb39b13aaddfb5e
|
|
42
|
+
40, 0xdb91fd0d9482bed7
|
|
43
|
+
41, 0x89f6ea4ca9c68204
|
|
44
|
+
42, 0x146b31ccca461792
|
|
45
|
+
43, 0x203fd9724deb2486
|
|
46
|
+
44, 0x58a84f23748e25cb
|
|
47
|
+
45, 0x2f20eb6aeb94e88
|
|
48
|
+
46, 0x14d3581460e473c
|
|
49
|
+
47, 0xad5bd0d25f37d047
|
|
50
|
+
48, 0x1cf88fa16de258b2
|
|
51
|
+
49, 0x3bcab6485b7a341
|
|
52
|
+
50, 0xb2433b37f227d90c
|
|
53
|
+
51, 0x2cffd7e0a8360cc8
|
|
54
|
+
52, 0x5d2eeff7c9ebc847
|
|
55
|
+
53, 0x6fd7c7ae23f9f64b
|
|
56
|
+
54, 0x381650b2d00f175d
|
|
57
|
+
55, 0x9d93edcedc873cae
|
|
58
|
+
56, 0x56e369a033d4cb49
|
|
59
|
+
57, 0x7547997116a3bac
|
|
60
|
+
58, 0x11debaa897fd4665
|
|
61
|
+
59, 0xdf799d2b73bd6fb8
|
|
62
|
+
60, 0x3747d299c66624d
|
|
63
|
+
61, 0xac9346701afd0cfa
|
|
64
|
+
62, 0xac90e150fa13c7bf
|
|
65
|
+
63, 0x85c56ad2248c2871
|
|
66
|
+
64, 0xdea66bf35c45f195
|
|
67
|
+
65, 0x59cf910ea079fb74
|
|
68
|
+
66, 0x2f841bb782274586
|
|
69
|
+
67, 0x9814df4384d92bd9
|
|
70
|
+
68, 0x15bc70824be09925
|
|
71
|
+
69, 0x16d4d0524c0503a3
|
|
72
|
+
70, 0xf04ea249135c0cc7
|
|
73
|
+
71, 0xa707ab509b7e3032
|
|
74
|
+
72, 0x465459efa869e372
|
|
75
|
+
73, 0x64cbf70a783fab67
|
|
76
|
+
74, 0x36b3541a14ca8ed7
|
|
77
|
+
75, 0x9a4dfae8f4c596bf
|
|
78
|
+
76, 0x11d9a04224281be3
|
|
79
|
+
77, 0xe09bbe6d5e98ec32
|
|
80
|
+
78, 0xa6c60d908973aa0d
|
|
81
|
+
79, 0x7c524c57dd5915c8
|
|
82
|
+
80, 0xa810c170b27f1fdc
|
|
83
|
+
81, 0xce5d409819621583
|
|
84
|
+
82, 0xfe2ee3d5332a3525
|
|
85
|
+
83, 0x162fb7c8b32045eb
|
|
86
|
+
84, 0x4a3327156b0b2d83
|
|
87
|
+
85, 0x808d0282f971064
|
|
88
|
+
86, 0x2e6f04cf5ed27e60
|
|
89
|
+
87, 0xaf6800699cca67a9
|
|
90
|
+
88, 0xc7590aae7244c3bf
|
|
91
|
+
89, 0x7824345f4713f5f9
|
|
92
|
+
90, 0x8f713505f8fd059b
|
|
93
|
+
91, 0x3d5b5b9bb6b1e80e
|
|
94
|
+
92, 0x8674f45e5dc40d79
|
|
95
|
+
93, 0xcb1e36846aa14773
|
|
96
|
+
94, 0xe0ae45b2b9b778c1
|
|
97
|
+
95, 0xd7254ce931eefcfb
|
|
98
|
+
96, 0xef34e15e4f55ac0a
|
|
99
|
+
97, 0xf17cc0ba15a99bc4
|
|
100
|
+
98, 0x77bb0f7ffe7b31f1
|
|
101
|
+
99, 0x6ee86438d2e71d38
|
|
102
|
+
100, 0x584890f86829a455
|
|
103
|
+
101, 0x7baf0d8d30ba70fe
|
|
104
|
+
102, 0xb1ac8f326b8403ae
|
|
105
|
+
103, 0xcc1963435c874ba7
|
|
106
|
+
104, 0x9c483b953d1334ce
|
|
107
|
+
105, 0xc0924bcbf3e10941
|
|
108
|
+
106, 0x21bcc581558717b1
|
|
109
|
+
107, 0x2c5ad1623f8d292b
|
|
110
|
+
108, 0xa8ea110f6124557e
|
|
111
|
+
109, 0x15f24a6c5c4c591
|
|
112
|
+
110, 0x40fe0d9cd7629126
|
|
113
|
+
111, 0xcfe8f2b3b081484d
|
|
114
|
+
112, 0x891383f4b4cac284
|
|
115
|
+
113, 0x76f2fcdef7fa845
|
|
116
|
+
114, 0x4edd12133aed0584
|
|
117
|
+
115, 0xd53c06d12308873d
|
|
118
|
+
116, 0xf7f22882c17f86bf
|
|
119
|
+
117, 0xfbaa4aad72f35e10
|
|
120
|
+
118, 0x627610da2e3c0cc3
|
|
121
|
+
119, 0x582b16a143634d9a
|
|
122
|
+
120, 0x9b4a7f69ed38f4a0
|
|
123
|
+
121, 0x2df694974d1e1cbe
|
|
124
|
+
122, 0xe5be6eaafed5d4b
|
|
125
|
+
123, 0xc48e2a288ad6605e
|
|
126
|
+
124, 0xbcb088149ce27c2b
|
|
127
|
+
125, 0x3cb6a7fb06ceecbe
|
|
128
|
+
126, 0x516735fff3b9e3ac
|
|
129
|
+
127, 0x5cbafc551ee5008d
|
|
130
|
+
128, 0xee27d1ab855c5fd5
|
|
131
|
+
129, 0xc99fb341f6baf846
|
|
132
|
+
130, 0x7ad8891b92058e6d
|
|
133
|
+
131, 0xf50310d03c1ac6c7
|
|
134
|
+
132, 0x947e281d998cbd3e
|
|
135
|
+
133, 0x1d4d94a93824fe80
|
|
136
|
+
134, 0x5568b77289e7ee73
|
|
137
|
+
135, 0x7d82d1b2b41e3c8b
|
|
138
|
+
136, 0x1af462c7abc787b
|
|
139
|
+
137, 0xcfd8dfe80bfae1ef
|
|
140
|
+
138, 0xd314caeb723a63ea
|
|
141
|
+
139, 0x1c63ddcfc1145429
|
|
142
|
+
140, 0x3801b7cc6cbf2437
|
|
143
|
+
141, 0xc327d5b9fdafddd3
|
|
144
|
+
142, 0xe140278430ca3c78
|
|
145
|
+
143, 0x4d0345a685cb6ef8
|
|
146
|
+
144, 0x47640dc86e261ff9
|
|
147
|
+
145, 0xab817f158523ebf4
|
|
148
|
+
146, 0x37c51e35fbe65a6b
|
|
149
|
+
147, 0xab090f475d30a178
|
|
150
|
+
148, 0x4d3ec225bf599fc1
|
|
151
|
+
149, 0xefd517b0041679b1
|
|
152
|
+
150, 0x20ad50bca4da32c5
|
|
153
|
+
151, 0x75e1f7cd07fad86d
|
|
154
|
+
152, 0x348cf781ee655f4b
|
|
155
|
+
153, 0x9375f0e5ffc2d2ec
|
|
156
|
+
154, 0x7689082fd5f7279c
|
|
157
|
+
155, 0x633e56f763561e77
|
|
158
|
+
156, 0x9d1752d70861f9fd
|
|
159
|
+
157, 0xa3c994b4e70b0b0f
|
|
160
|
+
158, 0xabf7276a58701b88
|
|
161
|
+
159, 0xbfa18d1a0540d000
|
|
162
|
+
160, 0xc6a28a2475646d26
|
|
163
|
+
161, 0x7cdf108583f65085
|
|
164
|
+
162, 0x82dcefb9f32104be
|
|
165
|
+
163, 0xc6baadd0adc6b446
|
|
166
|
+
164, 0x7a63cff01075b1b4
|
|
167
|
+
165, 0x67ac62e575c89919
|
|
168
|
+
166, 0x96fa4320a0942035
|
|
169
|
+
167, 0xc4658859385b325f
|
|
170
|
+
168, 0xde22c17ff47808f6
|
|
171
|
+
169, 0xbb952c4d89e2f2ec
|
|
172
|
+
170, 0x638251fbc55bdc37
|
|
173
|
+
171, 0x38918b307a03b3ea
|
|
174
|
+
172, 0xccb60f2cedbb570b
|
|
175
|
+
173, 0x3c06f4086a28f012
|
|
176
|
+
174, 0x4e8d238388986e33
|
|
177
|
+
175, 0x1760b7793514a143
|
|
178
|
+
176, 0xa3f924efe49ee7d6
|
|
179
|
+
177, 0xaf6be2dbaebc0bdf
|
|
180
|
+
178, 0x6782682090dffe09
|
|
181
|
+
179, 0xb63a4d90d848e8ef
|
|
182
|
+
180, 0x5f649c7eaf4c54c5
|
|
183
|
+
181, 0xbe57582426a085ba
|
|
184
|
+
182, 0xb5dd825aa52fb76d
|
|
185
|
+
183, 0x74cb4e6ca4039617
|
|
186
|
+
184, 0x382e578bf0a49588
|
|
187
|
+
185, 0xc043e8ea6e1dcdae
|
|
188
|
+
186, 0xf902addd5c04fa7c
|
|
189
|
+
187, 0xf3337994612528db
|
|
190
|
+
188, 0x4e8fd48d6d15b4e6
|
|
191
|
+
189, 0x7190a509927c07ab
|
|
192
|
+
190, 0x864c2dee5b7108ae
|
|
193
|
+
191, 0xbb9972ddc196f467
|
|
194
|
+
192, 0x1ea02ab3ca10a448
|
|
195
|
+
193, 0xe50a8ffde35ddef9
|
|
196
|
+
194, 0x7bd2f59a67183541
|
|
197
|
+
195, 0x5a940b30d8fcd27a
|
|
198
|
+
196, 0x82b4cea62623d4d3
|
|
199
|
+
197, 0x6fbda76d4afef445
|
|
200
|
+
198, 0x8b1f6880f418328e
|
|
201
|
+
199, 0x8b69a025c72c54b7
|
|
202
|
+
200, 0xb71e0f3986a3835f
|
|
203
|
+
201, 0xa4a7ddb8b9816825
|
|
204
|
+
202, 0x945dcda28228b1d8
|
|
205
|
+
203, 0xb471abf2f8044d72
|
|
206
|
+
204, 0xf07d4af64742b1ba
|
|
207
|
+
205, 0xfca5190bc4dd6a2a
|
|
208
|
+
206, 0xd681497262e11bc5
|
|
209
|
+
207, 0xbe95d5f00c577028
|
|
210
|
+
208, 0x56313439fd8bde19
|
|
211
|
+
209, 0x3f3d9ac9b5ee6522
|
|
212
|
+
210, 0x7b8d457dd2b49bbe
|
|
213
|
+
211, 0xe76b5747885d214b
|
|
214
|
+
212, 0xa8a695b3deb493ea
|
|
215
|
+
213, 0x5292446548c95d71
|
|
216
|
+
214, 0xbf5cdf0d436412df
|
|
217
|
+
215, 0x7936abaed779d28d
|
|
218
|
+
216, 0x659c6e8073b3a06d
|
|
219
|
+
217, 0x86c9ff28f5543b71
|
|
220
|
+
218, 0x6faa748445a99146
|
|
221
|
+
219, 0xdcc1e6ab57904fd7
|
|
222
|
+
220, 0x770bd61233addc5f
|
|
223
|
+
221, 0x16963e041e46d94f
|
|
224
|
+
222, 0x158e6cb2934157ac
|
|
225
|
+
223, 0xb65088a8fd246441
|
|
226
|
+
224, 0x2b12ced6ce8a68c3
|
|
227
|
+
225, 0x59a18d02cd6082b3
|
|
228
|
+
226, 0x4ddbc318cb5488ee
|
|
229
|
+
227, 0x3d4cf520b3ed20a1
|
|
230
|
+
228, 0x7028b3a92e2b292d
|
|
231
|
+
229, 0xf141da264a250e4d
|
|
232
|
+
230, 0x9788d53e86041c37
|
|
233
|
+
231, 0x1bb91238a7c97dbf
|
|
234
|
+
232, 0x81953d0ddb634309
|
|
235
|
+
233, 0xfa39ccfe14d2d46
|
|
236
|
+
234, 0xf7c7861c9b7e8399
|
|
237
|
+
235, 0x18d27ca50d9dc249
|
|
238
|
+
236, 0x258dfdf38510d0d9
|
|
239
|
+
237, 0x9e72d8af910ea76f
|
|
240
|
+
238, 0x4f8ef24b96de50ad
|
|
241
|
+
239, 0xb9d9c12297e03dc9
|
|
242
|
+
240, 0x91994e41b4a1929c
|
|
243
|
+
241, 0x8defa79b2ccc83b9
|
|
244
|
+
242, 0x948566748706dac5
|
|
245
|
+
243, 0x7b0454946e70e4cf
|
|
246
|
+
244, 0x340b7cb298c70ed7
|
|
247
|
+
245, 0x6602005330cebd95
|
|
248
|
+
246, 0xf71cb803aa61f722
|
|
249
|
+
247, 0x4683fb07fc70ae8a
|
|
250
|
+
248, 0xc6db9f0c4de3ed88
|
|
251
|
+
249, 0x3e8dfae2a593cef9
|
|
252
|
+
250, 0x615f7c38e3862b33
|
|
253
|
+
251, 0x676c7996550d857
|
|
254
|
+
252, 0xc6d520d54a5c266a
|
|
255
|
+
253, 0x202b1e8eef14aa2e
|
|
256
|
+
254, 0xa3a84891a27a582
|
|
257
|
+
255, 0x84dbee451658d47f
|
|
258
|
+
256, 0x254c7cd97e777e3a
|
|
259
|
+
257, 0xf50b6e977f0eba50
|
|
260
|
+
258, 0x2898b1d3062a4798
|
|
261
|
+
259, 0x4096f7cbbb019773
|
|
262
|
+
260, 0x9fb8e75548062c50
|
|
263
|
+
261, 0x4647071e5ca318ec
|
|
264
|
+
262, 0x2b4750bdb3b3b01
|
|
265
|
+
263, 0x88ac41cc69a39786
|
|
266
|
+
264, 0x705e25476ef46fa3
|
|
267
|
+
265, 0xc0c1db19884a48a6
|
|
268
|
+
266, 0x1364c0afdbb465e5
|
|
269
|
+
267, 0x58e98534701272a6
|
|
270
|
+
268, 0x746a5ea9701517c0
|
|
271
|
+
269, 0x523a70bc6b300b67
|
|
272
|
+
270, 0x9b1c098eda8564ad
|
|
273
|
+
271, 0xfbaeb28d3637067f
|
|
274
|
+
272, 0xddd9a13551fdba65
|
|
275
|
+
273, 0x56461a670559e832
|
|
276
|
+
274, 0xab4fd79be85570ad
|
|
277
|
+
275, 0xd4b691ecaff8ca55
|
|
278
|
+
276, 0x11a4495939e7f004
|
|
279
|
+
277, 0x40d069d19477eb47
|
|
280
|
+
278, 0xe790783d285cd81e
|
|
281
|
+
279, 0xde8218b16d935bc7
|
|
282
|
+
280, 0x2635e8c65cd4182d
|
|
283
|
+
281, 0xeae402623e3454
|
|
284
|
+
282, 0x9f99c833184e0279
|
|
285
|
+
283, 0x3d0f79a0d52d84e7
|
|
286
|
+
284, 0xc1f8edb10c625b90
|
|
287
|
+
285, 0x9b4546363d1f0489
|
|
288
|
+
286, 0x98d86d0b1212a282
|
|
289
|
+
287, 0x386b53863161200d
|
|
290
|
+
288, 0xbe1165c7fe48a135
|
|
291
|
+
289, 0xb9658b04dbbfdc8c
|
|
292
|
+
290, 0xcea14eddfe84d71a
|
|
293
|
+
291, 0x55d03298be74abe7
|
|
294
|
+
292, 0x5be3b50d961ffd7e
|
|
295
|
+
293, 0xc76b1045dc4b78e1
|
|
296
|
+
294, 0x7830e3ff3f6c3d4c
|
|
297
|
+
295, 0xb617adb36ca3729
|
|
298
|
+
296, 0x4a51bdb194f14aa9
|
|
299
|
+
297, 0x246024e54e6b682a
|
|
300
|
+
298, 0x33d42fc9c6d33083
|
|
301
|
+
299, 0xadccba149f31e1d
|
|
302
|
+
300, 0x5183e66b9002f8b
|
|
303
|
+
301, 0x70eb2416404d51b7
|
|
304
|
+
302, 0x26c25eb225535351
|
|
305
|
+
303, 0xbc2d5b0d23076561
|
|
306
|
+
304, 0x5823019ddead1da
|
|
307
|
+
305, 0x85cfa109fca69f62
|
|
308
|
+
306, 0x26017933e7e1efd9
|
|
309
|
+
307, 0x3ec7be9a32212753
|
|
310
|
+
308, 0x697e8a0697cd6f60
|
|
311
|
+
309, 0x44735f6cca03920f
|
|
312
|
+
310, 0x8cc655eb94ee212e
|
|
313
|
+
311, 0x8b8b74eba84929a0
|
|
314
|
+
312, 0x7708ccedd0c98c80
|
|
315
|
+
313, 0x1b6f21f19777cbe1
|
|
316
|
+
314, 0x363e564bd5fadedb
|
|
317
|
+
315, 0x5921543a641591fe
|
|
318
|
+
316, 0xc390786d68ea8a1b
|
|
319
|
+
317, 0x9b293138dc033fca
|
|
320
|
+
318, 0x45447ca8dc843345
|
|
321
|
+
319, 0xee6ef6755bc49c5e
|
|
322
|
+
320, 0x70a3a1f5163c3be5
|
|
323
|
+
321, 0xf05e25448b6343b0
|
|
324
|
+
322, 0x4739f4f8717b7e69
|
|
325
|
+
323, 0xb006141975bf957
|
|
326
|
+
324, 0x31874a91b707f452
|
|
327
|
+
325, 0x3a07f2c90bae2869
|
|
328
|
+
326, 0xb73dae5499a55c5e
|
|
329
|
+
327, 0x489070893bb51575
|
|
330
|
+
328, 0x7129acf423940575
|
|
331
|
+
329, 0x38c41f4b90130972
|
|
332
|
+
330, 0xc5260ca65f5a84a1
|
|
333
|
+
331, 0x6e76194f39563932
|
|
334
|
+
332, 0x62ca1f9ca3de3ca6
|
|
335
|
+
333, 0xb4a97874e640853f
|
|
336
|
+
334, 0x38ed0f71e311cc02
|
|
337
|
+
335, 0xde183b81099e8f47
|
|
338
|
+
336, 0x9bb8bf8e6694346
|
|
339
|
+
337, 0xd15497b6bf81e0f2
|
|
340
|
+
338, 0xaaae52536c00111
|
|
341
|
+
339, 0x4e4e60d1435aaafd
|
|
342
|
+
340, 0x5a15512e5d6ea721
|
|
343
|
+
341, 0xff0f1ffabfc6664f
|
|
344
|
+
342, 0xba3ffcedc5f97fec
|
|
345
|
+
343, 0xef87f391c0c6bfb6
|
|
346
|
+
344, 0x4a888c5d31eb0f98
|
|
347
|
+
345, 0x559a3fbfd7946e95
|
|
348
|
+
346, 0xe45b44a0db5a9bad
|
|
349
|
+
347, 0x9457898964190af1
|
|
350
|
+
348, 0xd9357dfaab76cd9e
|
|
351
|
+
349, 0xa60e907178d965a1
|
|
352
|
+
350, 0x76b2dc3032dc2f4a
|
|
353
|
+
351, 0x13549b9c2802120
|
|
354
|
+
352, 0x8656b965a66a1800
|
|
355
|
+
353, 0x16802e6e22456a23
|
|
356
|
+
354, 0x23b62edc60efaa9
|
|
357
|
+
355, 0x6832a366e1e4ea3b
|
|
358
|
+
356, 0x46b1b41093ff2b1e
|
|
359
|
+
357, 0x55c857128143f219
|
|
360
|
+
358, 0x7fc35ddf5e138200
|
|
361
|
+
359, 0x790abe78be67467e
|
|
362
|
+
360, 0xa4446fc08babd466
|
|
363
|
+
361, 0xc23d70327999b855
|
|
364
|
+
362, 0x2e019d1597148196
|
|
365
|
+
363, 0xfefd98e560403ab8
|
|
366
|
+
364, 0xbe5f0a33da330d58
|
|
367
|
+
365, 0x3078a4e9d43ca395
|
|
368
|
+
366, 0x511bfedd6f12f2b3
|
|
369
|
+
367, 0x8bc138e335be987c
|
|
370
|
+
368, 0x24640f803465716d
|
|
371
|
+
369, 0xf6530b04d0bd618f
|
|
372
|
+
370, 0x9b7833e5aa782716
|
|
373
|
+
371, 0x778cd35aea5841b1
|
|
374
|
+
372, 0xecea3c458cefbc60
|
|
375
|
+
373, 0x5107ae83fc527f46
|
|
376
|
+
374, 0x278ad83d44bd2d1a
|
|
377
|
+
375, 0x7014a382295aeb16
|
|
378
|
+
376, 0xf326dd762048743f
|
|
379
|
+
377, 0x858633d56279e553
|
|
380
|
+
378, 0x76408154085f01bc
|
|
381
|
+
379, 0x3e77d3364d02e746
|
|
382
|
+
380, 0x2f26cea26cadd50b
|
|
383
|
+
381, 0x6d6846a4ecb84273
|
|
384
|
+
382, 0x4847e96f2df5f76
|
|
385
|
+
383, 0x5a8610f46e13ff61
|
|
386
|
+
384, 0x4e7a7cac403e10dd
|
|
387
|
+
385, 0x754bdf2e20c7bc90
|
|
388
|
+
386, 0x8bdd80e6c51bd0be
|
|
389
|
+
387, 0x61c655fae2b4bc52
|
|
390
|
+
388, 0x60873ef48e3d2f03
|
|
391
|
+
389, 0x9d7d8d3698a0b4a4
|
|
392
|
+
390, 0xdf48e9c355cd5d4b
|
|
393
|
+
391, 0x69ecf03e20be99ac
|
|
394
|
+
392, 0xc1a0c5a339bd1815
|
|
395
|
+
393, 0x2e3263a6a3adccb
|
|
396
|
+
394, 0x23557459719adbdc
|
|
397
|
+
395, 0xd1b709a3b330e5a
|
|
398
|
+
396, 0xade5ab00a5d88b9d
|
|
399
|
+
397, 0x69a6bd644120cfad
|
|
400
|
+
398, 0x40187ecceee92342
|
|
401
|
+
399, 0x1c41964ba1ac78da
|
|
402
|
+
400, 0x9ac5c51cbecabe67
|
|
403
|
+
401, 0xbdc075781cf36d55
|
|
404
|
+
402, 0xeaf5a32246ded56
|
|
405
|
+
403, 0xcda0b67e39c0fb71
|
|
406
|
+
404, 0x4839ee456ef7cc95
|
|
407
|
+
405, 0xf17092fdd41d5658
|
|
408
|
+
406, 0x2b5d422e60ae3253
|
|
409
|
+
407, 0x3effe71102008551
|
|
410
|
+
408, 0x20a47108e83934b7
|
|
411
|
+
409, 0xd02da65fe768a88f
|
|
412
|
+
410, 0xeb046bd56afa4026
|
|
413
|
+
411, 0x70c0509c08e0fbe0
|
|
414
|
+
412, 0x1d35c38d4f8bac6c
|
|
415
|
+
413, 0x9aa8eb6466f392e0
|
|
416
|
+
414, 0x587bd4a430740f30
|
|
417
|
+
415, 0x82978fe4bad4195
|
|
418
|
+
416, 0xdc4ebc4c0feb50ab
|
|
419
|
+
417, 0xd3b7164d0240c06f
|
|
420
|
+
418, 0x6e2ad6e5a5003a63
|
|
421
|
+
419, 0xa24b430e2ee6b59c
|
|
422
|
+
420, 0x2905f49fd5073094
|
|
423
|
+
421, 0x5f209e4de03aa941
|
|
424
|
+
422, 0x57b7da3e0bedb1dc
|
|
425
|
+
423, 0x5e054018875b01f5
|
|
426
|
+
424, 0xb2f2da6145658db3
|
|
427
|
+
425, 0xbd9c94a69a8eb651
|
|
428
|
+
426, 0x9c5f9a07cd6ac749
|
|
429
|
+
427, 0x2296c4af4d529c38
|
|
430
|
+
428, 0x522ed800fafdefab
|
|
431
|
+
429, 0xe2a447ced0c66791
|
|
432
|
+
430, 0x937f10d45e455fef
|
|
433
|
+
431, 0xc882987d9e29a24
|
|
434
|
+
432, 0x4610bfd6a247ee1a
|
|
435
|
+
433, 0x562ba3e50870059
|
|
436
|
+
434, 0x59d8d58793602189
|
|
437
|
+
435, 0xfe9a606e3e34abe
|
|
438
|
+
436, 0x6825f7932a5e9282
|
|
439
|
+
437, 0xe77f7061bab476ad
|
|
440
|
+
438, 0xbf42001da340ace3
|
|
441
|
+
439, 0x9c3e9230f5e47960
|
|
442
|
+
440, 0x2c0f700d96d5ad58
|
|
443
|
+
441, 0x330048b7cd18f1f9
|
|
444
|
+
442, 0xffc08785eca5cca9
|
|
445
|
+
443, 0xb5879046915f07a5
|
|
446
|
+
444, 0xef51fe26f83c988e
|
|
447
|
+
445, 0xfa4c2968e7881a9a
|
|
448
|
+
446, 0xc0a9744455a4aad
|
|
449
|
+
447, 0xbd2ad686d6313928
|
|
450
|
+
448, 0x6b9f0984c127682a
|
|
451
|
+
449, 0xc9aaa00a5da59ed8
|
|
452
|
+
450, 0x762a0c4b98980dbf
|
|
453
|
+
451, 0x52d1a2393d3ca2d1
|
|
454
|
+
452, 0x1e9308f2861db15c
|
|
455
|
+
453, 0xe7b3c74fe4b4a844
|
|
456
|
+
454, 0x485e15704a7fc594
|
|
457
|
+
455, 0x9e7f67ea44c221f6
|
|
458
|
+
456, 0xbab9ad47fde916e0
|
|
459
|
+
457, 0x50e383912b7fc1f4
|
|
460
|
+
458, 0xaad63db8abcef62d
|
|
461
|
+
459, 0xc2f0c5699f47f013
|
|
462
|
+
460, 0xee15b36ada826812
|
|
463
|
+
461, 0x2a1b1cf1e1777142
|
|
464
|
+
462, 0x8adb03ede79e937d
|
|
465
|
+
463, 0xf14105ef65643bf3
|
|
466
|
+
464, 0x752bbaefc374a3c7
|
|
467
|
+
465, 0xa4980a08a5a21d23
|
|
468
|
+
466, 0x418a1c05194b2db7
|
|
469
|
+
467, 0xdd6ff32efe1c3cd6
|
|
470
|
+
468, 0x272473ed1f0d3aa2
|
|
471
|
+
469, 0x1e7fdebadabe6c06
|
|
472
|
+
470, 0xd1baa90c17b3842f
|
|
473
|
+
471, 0xd3d3a778e9c8404a
|
|
474
|
+
472, 0x781ae7fda49fa1a0
|
|
475
|
+
473, 0x61c44fdbdacc672d
|
|
476
|
+
474, 0x6d447d0a1404f257
|
|
477
|
+
475, 0x9303e8bdfbfb894d
|
|
478
|
+
476, 0x3b3482cdec016244
|
|
479
|
+
477, 0xb149bf245d062e7b
|
|
480
|
+
478, 0x96f8d54b14cf992d
|
|
481
|
+
479, 0x4741549a01f8c3d0
|
|
482
|
+
480, 0x48270811b2992af
|
|
483
|
+
481, 0x7b58f175cd25d147
|
|
484
|
+
482, 0x8f19a840b56f4be9
|
|
485
|
+
483, 0x84a77f43c0951a93
|
|
486
|
+
484, 0x34e1a69381f0c374
|
|
487
|
+
485, 0xb158383c9b4040f
|
|
488
|
+
486, 0x372f1abc7cf3a9fa
|
|
489
|
+
487, 0x5439819a84571763
|
|
490
|
+
488, 0xabf8515e9084e2fa
|
|
491
|
+
489, 0xb02312b9387ff99
|
|
492
|
+
490, 0x238a85bb47a68b12
|
|
493
|
+
491, 0x2068cb83857c49bb
|
|
494
|
+
492, 0xc6170e743083664c
|
|
495
|
+
493, 0x745cf8470bcb8467
|
|
496
|
+
494, 0xe3a759a301670300
|
|
497
|
+
495, 0x292c7686ad3e67da
|
|
498
|
+
496, 0x359efedaff192a45
|
|
499
|
+
497, 0x511f2c31a2d8c475
|
|
500
|
+
498, 0x97fd041bf21c20b3
|
|
501
|
+
499, 0x25ef1fe841b7b3f6
|
|
502
|
+
500, 0xbb71739e656f262d
|
|
503
|
+
501, 0x2729b0e989b6b7b8
|
|
504
|
+
502, 0xd2142702ec7dbabf
|
|
505
|
+
503, 0x7008decd2488ee3f
|
|
506
|
+
504, 0x69daa95e303298d7
|
|
507
|
+
505, 0xc35eca4efb8baa5a
|
|
508
|
+
506, 0xf3f16d261cec3b6c
|
|
509
|
+
507, 0x22371c1d75396bd3
|
|
510
|
+
508, 0x7aefa08eccae857e
|
|
511
|
+
509, 0x255b493c5e3c2a2f
|
|
512
|
+
510, 0x779474a077d34241
|
|
513
|
+
511, 0x5199c42686bea241
|
|
514
|
+
512, 0x16c83931e293b8d3
|
|
515
|
+
513, 0xa57fe8db8c0302c7
|
|
516
|
+
514, 0xd7ace619e5312eb1
|
|
517
|
+
515, 0x8740f013306d217c
|
|
518
|
+
516, 0xb6a1ad5e29f4d453
|
|
519
|
+
517, 0x31abf7c964688597
|
|
520
|
+
518, 0xbc3d791daed71e7
|
|
521
|
+
519, 0x31ee4ca67b7056ed
|
|
522
|
+
520, 0x1ab5416bfe290ea3
|
|
523
|
+
521, 0x93db416f6d3b843a
|
|
524
|
+
522, 0xed83bbe5b1dd2fed
|
|
525
|
+
523, 0xece38271470d9b6d
|
|
526
|
+
524, 0x3a620f42663cd8ae
|
|
527
|
+
525, 0x50c87e02acafee5d
|
|
528
|
+
526, 0xcabeb8bedbc6dab5
|
|
529
|
+
527, 0x2880a6d09970c729
|
|
530
|
+
528, 0x4aba5dd3bfc81bc
|
|
531
|
+
529, 0xaba54edf41080cec
|
|
532
|
+
530, 0xb86bb916fc85a169
|
|
533
|
+
531, 0x4c41de87bc79d8ca
|
|
534
|
+
532, 0xcce2a202622945fe
|
|
535
|
+
533, 0x513f086fad94c107
|
|
536
|
+
534, 0x18b3960c11f8cc96
|
|
537
|
+
535, 0x2f0d1cfd1896e236
|
|
538
|
+
536, 0x1702ae3880d79b15
|
|
539
|
+
537, 0x88923749029ae81
|
|
540
|
+
538, 0x84810d4bdec668eb
|
|
541
|
+
539, 0xf85b0a123f4fc68d
|
|
542
|
+
540, 0x93efd68974b6e4d1
|
|
543
|
+
541, 0x5d16d6d993a071c9
|
|
544
|
+
542, 0x94436858f94ca43b
|
|
545
|
+
543, 0xb3dbb9ed0cb180b6
|
|
546
|
+
544, 0x6447030a010b8c99
|
|
547
|
+
545, 0xd7224897c62925d8
|
|
548
|
+
546, 0xb0c13c1d50605d3a
|
|
549
|
+
547, 0xdff02c7cb9d45f30
|
|
550
|
+
548, 0xe8103179f983570d
|
|
551
|
+
549, 0xbc552037d6d0a24e
|
|
552
|
+
550, 0x775e500b01486b0d
|
|
553
|
+
551, 0x2050ac632c694dd6
|
|
554
|
+
552, 0x218910387c4d7ae7
|
|
555
|
+
553, 0xf83e8b68ff885d5d
|
|
556
|
+
554, 0xe3374ec25fca51a3
|
|
557
|
+
555, 0xfa750ffa3a60f3af
|
|
558
|
+
556, 0x29ee40ba6df5592e
|
|
559
|
+
557, 0x70e21a68f48260d2
|
|
560
|
+
558, 0x3805ca72cd40886e
|
|
561
|
+
559, 0x2f23e73f8eabf062
|
|
562
|
+
560, 0x2296f80cdf6531ae
|
|
563
|
+
561, 0x903099ed968db43a
|
|
564
|
+
562, 0xf044445cf9f2929f
|
|
565
|
+
563, 0xcd47fdc2de1b7a1
|
|
566
|
+
564, 0xaab1cbd4f849da99
|
|
567
|
+
565, 0x5fc990688da01acb
|
|
568
|
+
566, 0xa9cee52ea7dab392
|
|
569
|
+
567, 0xecefc3a4349283a8
|
|
570
|
+
568, 0xdd6b572972e3fafc
|
|
571
|
+
569, 0xc1f0b1a2ffb155da
|
|
572
|
+
570, 0xc30d53fc17bd25c8
|
|
573
|
+
571, 0x8afa89c77834db28
|
|
574
|
+
572, 0x5569a596fb32896c
|
|
575
|
+
573, 0x36f207fc8df3e3d4
|
|
576
|
+
574, 0x57c2bd58517d81db
|
|
577
|
+
575, 0xb524693e73d0061c
|
|
578
|
+
576, 0xb69f6eb233f5c48b
|
|
579
|
+
577, 0x4f0fb23cab8dc695
|
|
580
|
+
578, 0x492c1ad0a48df8df
|
|
581
|
+
579, 0xf6dcc348ec8dec1f
|
|
582
|
+
580, 0xa4d8708d6eb2e262
|
|
583
|
+
581, 0x4c2072c2c9766ff1
|
|
584
|
+
582, 0xa9bf27c4304875f0
|
|
585
|
+
583, 0xfc8fb8066d4f9ae2
|
|
586
|
+
584, 0x188095f6235fec3c
|
|
587
|
+
585, 0x1d8227a2938c2864
|
|
588
|
+
586, 0x89ea50c599010378
|
|
589
|
+
587, 0xcac86df0a7c6d56d
|
|
590
|
+
588, 0x47a8c5df84c7d78
|
|
591
|
+
589, 0xe607ae24ea228bfa
|
|
592
|
+
590, 0x36624a7996efe104
|
|
593
|
+
591, 0x5d72881c1227d810
|
|
594
|
+
592, 0x78694a6750374c8
|
|
595
|
+
593, 0x7b9a217d4ab5ff45
|
|
596
|
+
594, 0xd53e5d6f7504becc
|
|
597
|
+
595, 0x197a72d3f4889a0e
|
|
598
|
+
596, 0xfdc70c4755a8df36
|
|
599
|
+
597, 0xd0fda83748c77f74
|
|
600
|
+
598, 0x7ddc919ac9d6dcc9
|
|
601
|
+
599, 0x785c810a6a2dc08b
|
|
602
|
+
600, 0xba4be83e7e36896c
|
|
603
|
+
601, 0x379d6fe80cf2bffe
|
|
604
|
+
602, 0x74cae2dabc429206
|
|
605
|
+
603, 0x1efac32d5d34c917
|
|
606
|
+
604, 0x3cb64e2f98d36e70
|
|
607
|
+
605, 0xc0a7c3cdc3c60aa7
|
|
608
|
+
606, 0x699dfadd38790ebe
|
|
609
|
+
607, 0x4861e61b3ecfbeac
|
|
610
|
+
608, 0x531744826c345baa
|
|
611
|
+
609, 0x5ec26427ad450cba
|
|
612
|
+
610, 0xf2c1741479abdcae
|
|
613
|
+
611, 0xe9328a78b2595458
|
|
614
|
+
612, 0x30cd1bdf087acd7f
|
|
615
|
+
613, 0x7491ced4e009adbe
|
|
616
|
+
614, 0xdcd942df1e2e7023
|
|
617
|
+
615, 0xfe63f01689fee35
|
|
618
|
+
616, 0x80282dfe5eaedc42
|
|
619
|
+
617, 0x6ecdea86495f8427
|
|
620
|
+
618, 0xe0adfdd5e9ed31c3
|
|
621
|
+
619, 0xf32bd2a7418127e
|
|
622
|
+
620, 0x8aabba078db6ee2
|
|
623
|
+
621, 0xa8a8e60499145aca
|
|
624
|
+
622, 0xf76b086ac4e8a0f2
|
|
625
|
+
623, 0x6e55b3c452ff27f8
|
|
626
|
+
624, 0xe18fa7cd025a71bf
|
|
627
|
+
625, 0xeed7b685fde0fa25
|
|
628
|
+
626, 0xba9b6c95867fa721
|
|
629
|
+
627, 0x4c2603bc69de2df2
|
|
630
|
+
628, 0xaac87eee1b58cd66
|
|
631
|
+
629, 0x3c9af6656e01282c
|
|
632
|
+
630, 0x2dfa05ce8ff476b6
|
|
633
|
+
631, 0xeae9143fcf92f23d
|
|
634
|
+
632, 0x3f0699f631be3bc8
|
|
635
|
+
633, 0xa0f5f79f2492bd67
|
|
636
|
+
634, 0x59c47722388131ed
|
|
637
|
+
635, 0x5f6e9d2941cef1de
|
|
638
|
+
636, 0xe9ad915c09788b7b
|
|
639
|
+
637, 0x92c6d37e4f9482f5
|
|
640
|
+
638, 0x57d301b7fdadd911
|
|
641
|
+
639, 0x7e952d23d2a8443
|
|
642
|
+
640, 0xbb2fa5e0704b3871
|
|
643
|
+
641, 0xe5642199be36e2d5
|
|
644
|
+
642, 0x5020b60d54358291
|
|
645
|
+
643, 0xa0b6317ec3f60343
|
|
646
|
+
644, 0xb57b08b99540bc5c
|
|
647
|
+
645, 0x21f1890adc997a88
|
|
648
|
+
646, 0xfcf824200dd9da2d
|
|
649
|
+
647, 0x8146293d83d425d1
|
|
650
|
+
648, 0xdadfbf5fbb99d420
|
|
651
|
+
649, 0x1eb9bbc5e6482b7d
|
|
652
|
+
650, 0xd40ff44f1bbd0f1c
|
|
653
|
+
651, 0xa9f948ba2d08afa5
|
|
654
|
+
652, 0x638cc07c5301e601
|
|
655
|
+
653, 0x1f984baa606e14e8
|
|
656
|
+
654, 0x44e153671081f398
|
|
657
|
+
655, 0xb17882eeb1d77a5d
|
|
658
|
+
656, 0x5fd8dbee995f14c
|
|
659
|
+
657, 0xff3533e87f81b7fe
|
|
660
|
+
658, 0x2f44124293c49795
|
|
661
|
+
659, 0x3bf6b51e9360248
|
|
662
|
+
660, 0x72d615edf1436371
|
|
663
|
+
661, 0x8fc5cf4a38adab9d
|
|
664
|
+
662, 0xfa517e9022078374
|
|
665
|
+
663, 0xf356733f3e26f4d8
|
|
666
|
+
664, 0x20ea099cdc6aad40
|
|
667
|
+
665, 0xe15b977deb37637d
|
|
668
|
+
666, 0xcc85601b89dae88d
|
|
669
|
+
667, 0x5768c62f8dd4905c
|
|
670
|
+
668, 0xa43cc632b4e56ea
|
|
671
|
+
669, 0xc4240cf980e82458
|
|
672
|
+
670, 0xb194e8ffb4b3eeb6
|
|
673
|
+
671, 0xee753cf2219c5fa1
|
|
674
|
+
672, 0xfe2500192181d44d
|
|
675
|
+
673, 0x2d03d7d6493dd821
|
|
676
|
+
674, 0xff0e787bb98e7f9b
|
|
677
|
+
675, 0xa05cf8d3bd810ce7
|
|
678
|
+
676, 0x718d5d6dcbbdcd65
|
|
679
|
+
677, 0x8d0b5343a06931c
|
|
680
|
+
678, 0xae3a00a932e7eaf9
|
|
681
|
+
679, 0x7ed3d8f18f983e18
|
|
682
|
+
680, 0x3bb778ee466dc143
|
|
683
|
+
681, 0x711c685c4e9062c0
|
|
684
|
+
682, 0x104c3af5d7ac9834
|
|
685
|
+
683, 0x17bdbb671fb5d5cf
|
|
686
|
+
684, 0xabf26caead4d2292
|
|
687
|
+
685, 0xa45f02866467c005
|
|
688
|
+
686, 0xf3769a32dc945d2d
|
|
689
|
+
687, 0xe78d0007f6aabb66
|
|
690
|
+
688, 0x34b60be4acbd8d4b
|
|
691
|
+
689, 0x58c0b04b69359084
|
|
692
|
+
690, 0x3a8bb354c212b1
|
|
693
|
+
691, 0x6b82a8f3d70058d5
|
|
694
|
+
692, 0x405bdef80a276a4a
|
|
695
|
+
693, 0xe20ca40ee9195cad
|
|
696
|
+
694, 0xf5dd96ba2446fefd
|
|
697
|
+
695, 0xc1e180c55fe55e3c
|
|
698
|
+
696, 0xa329caf6daa952b3
|
|
699
|
+
697, 0xb4809dd0c84a6b0a
|
|
700
|
+
698, 0xd27f82661070cee7
|
|
701
|
+
699, 0xa7121f15ee2b0d8a
|
|
702
|
+
700, 0x4bdaea70d6b34583
|
|
703
|
+
701, 0xe821dc2f310f7a49
|
|
704
|
+
702, 0x4c00a5a68e76f647
|
|
705
|
+
703, 0x331065b064a2d5ea
|
|
706
|
+
704, 0xac0c2ce3dc04fa37
|
|
707
|
+
705, 0x56b32b37b8229008
|
|
708
|
+
706, 0xe757cdb51534fcfa
|
|
709
|
+
707, 0xd3ff183576b2fad7
|
|
710
|
+
708, 0x179e1f4190f197a7
|
|
711
|
+
709, 0xf874c626a7c9aae5
|
|
712
|
+
710, 0xd58514ffc37c80e4
|
|
713
|
+
711, 0xc65de31d33fa7fd3
|
|
714
|
+
712, 0x6f6637052025769b
|
|
715
|
+
713, 0xca1c6bdadb519cc0
|
|
716
|
+
714, 0xd1f3534cde37828a
|
|
717
|
+
715, 0xc858c339eee4830a
|
|
718
|
+
716, 0x2371eacc215e02f4
|
|
719
|
+
717, 0x84e5022db85bbbe9
|
|
720
|
+
718, 0x5f71c50bba48610e
|
|
721
|
+
719, 0xe420192dad9c323f
|
|
722
|
+
720, 0x2889342721fca003
|
|
723
|
+
721, 0x83e64f63334f501d
|
|
724
|
+
722, 0xac2617172953f2c
|
|
725
|
+
723, 0xfa1f78d8433938ff
|
|
726
|
+
724, 0x5578382760051462
|
|
727
|
+
725, 0x375d7a2e3b90af16
|
|
728
|
+
726, 0xb93ff44e6c07552d
|
|
729
|
+
727, 0xded1d5ad811e818c
|
|
730
|
+
728, 0x7cf256b3b29e3a8c
|
|
731
|
+
729, 0x78d581b8e7bf95e8
|
|
732
|
+
730, 0x5b69192f2caa6ad3
|
|
733
|
+
731, 0xa9e25855a52de3ce
|
|
734
|
+
732, 0x69d8e8fc45cc188d
|
|
735
|
+
733, 0x5dd012c139ad347d
|
|
736
|
+
734, 0xfcb01c07b77db606
|
|
737
|
+
735, 0x56253e36ab3d1cce
|
|
738
|
+
736, 0x1181edbb3ea2192
|
|
739
|
+
737, 0x325bef47ff19a08d
|
|
740
|
+
738, 0xd3e231ceb27e5f7
|
|
741
|
+
739, 0x8e819dd2de7956d2
|
|
742
|
+
740, 0x34a9689fe6f84a51
|
|
743
|
+
741, 0x3e4eeb719a9c2927
|
|
744
|
+
742, 0x5c3b3440581d0aaf
|
|
745
|
+
743, 0x57caf51897d7c920
|
|
746
|
+
744, 0xec6a458130464b40
|
|
747
|
+
745, 0xe98f044e0da40e9b
|
|
748
|
+
746, 0xbe38662020eeb8e7
|
|
749
|
+
747, 0x7b8c407c632724ae
|
|
750
|
+
748, 0x16c7cfa97b33a544
|
|
751
|
+
749, 0xd23359e2e978ae5a
|
|
752
|
+
750, 0x4fdba458250933dd
|
|
753
|
+
751, 0x3c9e0713cfe616ba
|
|
754
|
+
752, 0x6f0df87b13163b42
|
|
755
|
+
753, 0xc460902cb852cc97
|
|
756
|
+
754, 0x289df8fefd6b0bce
|
|
757
|
+
755, 0x4ac2a2a1c3fb8029
|
|
758
|
+
756, 0x2fc3e24d8b68eef7
|
|
759
|
+
757, 0x34564386a59aab9a
|
|
760
|
+
758, 0x31047391ebd67ce4
|
|
761
|
+
759, 0x6c23d070a0564d41
|
|
762
|
+
760, 0xba6387b2b72545f7
|
|
763
|
+
761, 0xcdcf1008058387af
|
|
764
|
+
762, 0xc9308fa98db05192
|
|
765
|
+
763, 0xdbdbb5abd01a9d84
|
|
766
|
+
764, 0x937088275c7804ab
|
|
767
|
+
765, 0x6f6accfefe34ee81
|
|
768
|
+
766, 0x5c33c74c49cfdb2c
|
|
769
|
+
767, 0x5e1a771edfb92bd3
|
|
770
|
+
768, 0x6e89b009069ecae7
|
|
771
|
+
769, 0x34d64e17ec0e8968
|
|
772
|
+
770, 0x841203d0cde0c330
|
|
773
|
+
771, 0x7642cc9d7eb9e9cb
|
|
774
|
+
772, 0xca01d2e8c128b97e
|
|
775
|
+
773, 0x5b8390617b3304ab
|
|
776
|
+
774, 0x52ec4ed10de1eb2d
|
|
777
|
+
775, 0xb90f288b9616f237
|
|
778
|
+
776, 0x5bd43cd49617b2e2
|
|
779
|
+
777, 0x1a53e21d25230596
|
|
780
|
+
778, 0x36ccd15207a21cd6
|
|
781
|
+
779, 0xc8263d780618fd3c
|
|
782
|
+
780, 0x6eb520598c6ce1cb
|
|
783
|
+
781, 0x493c99a3b341564f
|
|
784
|
+
782, 0xab999e9c5aa8764f
|
|
785
|
+
783, 0xab2fa4ceaba84b
|
|
786
|
+
784, 0xbbd2f17e5cb2331b
|
|
787
|
+
785, 0xc8b4d377c0cc4e81
|
|
788
|
+
786, 0x31f71a6e165c4b1e
|
|
789
|
+
787, 0xd1011e55fb3addaa
|
|
790
|
+
788, 0x5f7ec34728dfa59
|
|
791
|
+
789, 0x2aef59e60a84eb0f
|
|
792
|
+
790, 0x5dde6f09aec9ad5f
|
|
793
|
+
791, 0x968c6cdbc0ef0438
|
|
794
|
+
792, 0x1957133afa15b13a
|
|
795
|
+
793, 0xbaf28f27573a64c2
|
|
796
|
+
794, 0xc6f6ddd543ebf862
|
|
797
|
+
795, 0xdd7534315ec9ae1e
|
|
798
|
+
796, 0xd2b80cd2758dd3b
|
|
799
|
+
797, 0xa38c3da00cc81538
|
|
800
|
+
798, 0x15c95b82d3f9b0f9
|
|
801
|
+
799, 0x6704930287ce2571
|
|
802
|
+
800, 0x9c40cc2f6f4ecb0c
|
|
803
|
+
801, 0xc8de91f50b22e94e
|
|
804
|
+
802, 0x39272e8fddbfdf0a
|
|
805
|
+
803, 0x879e0aa810a117d
|
|
806
|
+
804, 0xa312fff4e9e5f3bd
|
|
807
|
+
805, 0x10dd747f2835dfec
|
|
808
|
+
806, 0xeb8466db7171cdae
|
|
809
|
+
807, 0xaa808d87b9ad040a
|
|
810
|
+
808, 0xab4d2229a329243a
|
|
811
|
+
809, 0x7c622f70d46f789c
|
|
812
|
+
810, 0x5d41cef5965b2a8e
|
|
813
|
+
811, 0xce97ec4702410d99
|
|
814
|
+
812, 0x5beba2812c91211b
|
|
815
|
+
813, 0xf134b46c93a3fec7
|
|
816
|
+
814, 0x76401d5630127226
|
|
817
|
+
815, 0xc55fc9d9eacd4ec1
|
|
818
|
+
816, 0xaec8cefaa12f813f
|
|
819
|
+
817, 0x2f845dcfd7b00722
|
|
820
|
+
818, 0x3380ab4c20885921
|
|
821
|
+
819, 0xdb68ad2597691b74
|
|
822
|
+
820, 0x8a7e4951455f563f
|
|
823
|
+
821, 0x2372d007ed761c53
|
|
824
|
+
822, 0xcab691907714c4f1
|
|
825
|
+
823, 0x16bc31d6f3abec1a
|
|
826
|
+
824, 0x7dff639fbcf1824
|
|
827
|
+
825, 0x6666985fbcff543d
|
|
828
|
+
826, 0xb618948e3d8e6d0c
|
|
829
|
+
827, 0x77b87837c794e068
|
|
830
|
+
828, 0xcd48288d54fcb5a8
|
|
831
|
+
829, 0x47a773ed6ae30dc3
|
|
832
|
+
830, 0xba85ae44e203c942
|
|
833
|
+
831, 0xa7a7b21791a25b2d
|
|
834
|
+
832, 0x4029dd92e63f19e0
|
|
835
|
+
833, 0xc2ad66ab85e7d5aa
|
|
836
|
+
834, 0xa0f237c96fdab0db
|
|
837
|
+
835, 0xffefb0ab1ca18ed
|
|
838
|
+
836, 0x90cb4500785fd7d5
|
|
839
|
+
837, 0xa7dd3120f4876435
|
|
840
|
+
838, 0x53f7872624694300
|
|
841
|
+
839, 0xea111326ff0040d9
|
|
842
|
+
840, 0x5f83cb4cce40c83b
|
|
843
|
+
841, 0x918e04936c3b504d
|
|
844
|
+
842, 0x87a8db4c0e15e87c
|
|
845
|
+
843, 0x7cff39da6a0dedd0
|
|
846
|
+
844, 0x36f7de2037f85381
|
|
847
|
+
845, 0xd1d8d94022a1e9a7
|
|
848
|
+
846, 0x2c9930127dc33ec9
|
|
849
|
+
847, 0x6cb4719dcd0101c6
|
|
850
|
+
848, 0xc01868cde76935f7
|
|
851
|
+
849, 0x6b86f2ec1ab50143
|
|
852
|
+
850, 0x68af607d8d94ae61
|
|
853
|
+
851, 0xe216c5b95feedf34
|
|
854
|
+
852, 0x4b866bd91efe2e4b
|
|
855
|
+
853, 0x4bff79df08f92c99
|
|
856
|
+
854, 0x6ff664ea806acfd1
|
|
857
|
+
855, 0x7fce0b3f9ece39bc
|
|
858
|
+
856, 0x29bc90b59cb3db97
|
|
859
|
+
857, 0x833c4b419198607d
|
|
860
|
+
858, 0xf3573e36ca4d4768
|
|
861
|
+
859, 0x50d71c0a3c2a3fa8
|
|
862
|
+
860, 0xd754591aea2017e7
|
|
863
|
+
861, 0x3f9126f1ee1ebf3
|
|
864
|
+
862, 0xe775d7f4b1e43de8
|
|
865
|
+
863, 0xe93d51628c263060
|
|
866
|
+
864, 0x83e77f6fb32d6d82
|
|
867
|
+
865, 0x43dd7eef823408e4
|
|
868
|
+
866, 0x1c843c2c90180662
|
|
869
|
+
867, 0xe924dafb9a16066b
|
|
870
|
+
868, 0x6af3ee96e7b7fbd9
|
|
871
|
+
869, 0x94d5c4f37befcd1f
|
|
872
|
+
870, 0x40ffb04bedef4236
|
|
873
|
+
871, 0x71c17bbc20e553e
|
|
874
|
+
872, 0x101f7a0a6208729f
|
|
875
|
+
873, 0x5ca34570cf923548
|
|
876
|
+
874, 0x8e3139db2e96e814
|
|
877
|
+
875, 0x3ab96d96263d048d
|
|
878
|
+
876, 0x97f3c0bbc6755c3c
|
|
879
|
+
877, 0x31fc72daedaef3dc
|
|
880
|
+
878, 0x71f8d7855d10789b
|
|
881
|
+
879, 0xce6dc97b4662333b
|
|
882
|
+
880, 0xfddc2aabd342bc61
|
|
883
|
+
881, 0xefbd4007ff8c7d2e
|
|
884
|
+
882, 0xf72cd6c689ef8758
|
|
885
|
+
883, 0x932c8b0c0e755137
|
|
886
|
+
884, 0x94cc4dedd58ff69
|
|
887
|
+
885, 0xde4dfd6890535979
|
|
888
|
+
886, 0xdb00dcd2dcb4a50a
|
|
889
|
+
887, 0xb0466240b4548107
|
|
890
|
+
888, 0x9cb9264c7b90d1a3
|
|
891
|
+
889, 0x357e378e9be5766b
|
|
892
|
+
890, 0x6e0316ef03367bbf
|
|
893
|
+
891, 0x201ea18839544ca
|
|
894
|
+
892, 0x803ff3406be5f338
|
|
895
|
+
893, 0xf9d5e82fd4144bb2
|
|
896
|
+
894, 0x1b6b88ca701e9f47
|
|
897
|
+
895, 0xd1fe5ab8e1f89cc0
|
|
898
|
+
896, 0x14171fe176c4bece
|
|
899
|
+
897, 0x887948bdef78beaa
|
|
900
|
+
898, 0x80449ddc3eb9b977
|
|
901
|
+
899, 0x5f4e1f900fb4bcf3
|
|
902
|
+
900, 0xbe30f8701909f8e2
|
|
903
|
+
901, 0xd1f2a2fb5503306d
|
|
904
|
+
902, 0x6b1c77238dc23803
|
|
905
|
+
903, 0x102156a6c9860f66
|
|
906
|
+
904, 0x4cd446e099edf4c1
|
|
907
|
+
905, 0xc79ac6cbc911f33b
|
|
908
|
+
906, 0x3ee096ffe3384f1c
|
|
909
|
+
907, 0xb58f83b18a306dc7
|
|
910
|
+
908, 0x9f76582141de56b2
|
|
911
|
+
909, 0x9ddfa85e02c13866
|
|
912
|
+
910, 0x4d9a19d4ce90a543
|
|
913
|
+
911, 0xbf81ab39fd17d376
|
|
914
|
+
912, 0x5327e5054c6a74f1
|
|
915
|
+
913, 0xd5062dd31db1a9b7
|
|
916
|
+
914, 0x645853735527edc
|
|
917
|
+
915, 0x485393967f91af08
|
|
918
|
+
916, 0xeff9667dcf77ca68
|
|
919
|
+
917, 0xd012313f5fbec464
|
|
920
|
+
918, 0xbeae35bdfae55144
|
|
921
|
+
919, 0x302c41ebac8444a0
|
|
922
|
+
920, 0x9ccdb6c2fe58fba8
|
|
923
|
+
921, 0x567753af68ed23f8
|
|
924
|
+
922, 0xff90f790e43efec3
|
|
925
|
+
923, 0x970cc756fb799696
|
|
926
|
+
924, 0xe59239d1c44915
|
|
927
|
+
925, 0x4d2d189fb3941f05
|
|
928
|
+
926, 0x96f23085db165a9c
|
|
929
|
+
927, 0xa1202dec7a37b1a5
|
|
930
|
+
928, 0xc0c1ee74bcd7dc1a
|
|
931
|
+
929, 0x9edcf2048b30333a
|
|
932
|
+
930, 0xd848588ba7e865fb
|
|
933
|
+
931, 0x8d9f0897317cab40
|
|
934
|
+
932, 0x67b96f15e25924fb
|
|
935
|
+
933, 0xefc8d8536619ee42
|
|
936
|
+
934, 0xf3f621d22bdde0c2
|
|
937
|
+
935, 0x68610a0de862ae32
|
|
938
|
+
936, 0xa22ca5142de24cbd
|
|
939
|
+
937, 0x8815452f4e6b4801
|
|
940
|
+
938, 0x4e9c1b607b2750e5
|
|
941
|
+
939, 0x19b3c09ba6fc9b25
|
|
942
|
+
940, 0x9b2543c8836780ac
|
|
943
|
+
941, 0xe702b8f950e56431
|
|
944
|
+
942, 0xb357cc329cac3917
|
|
945
|
+
943, 0x387bf86a17a31e08
|
|
946
|
+
944, 0x9940b983d331b163
|
|
947
|
+
945, 0xf5d89d7fe9095e18
|
|
948
|
+
946, 0x4362682329e5c4d1
|
|
949
|
+
947, 0xd2132573f6ae7b42
|
|
950
|
+
948, 0xc0a5849e23a61606
|
|
951
|
+
949, 0xdadbddf47265bc02
|
|
952
|
+
950, 0x1b96f00339a705f7
|
|
953
|
+
951, 0x94e6642329288913
|
|
954
|
+
952, 0x825ab3f10e6d330b
|
|
955
|
+
953, 0x1a1c31ac9d883ea0
|
|
956
|
+
954, 0xb49076b7155c6f47
|
|
957
|
+
955, 0x920cf3085dfe3ccb
|
|
958
|
+
956, 0x9743407c9f28e825
|
|
959
|
+
957, 0x6ce8a28622402719
|
|
960
|
+
958, 0xce2fe67e06baf8a6
|
|
961
|
+
959, 0x3a16b34784ecf5e6
|
|
962
|
+
960, 0x140467cc1d162a0c
|
|
963
|
+
961, 0x32d4772692ab625
|
|
964
|
+
962, 0xa4f4b28562f43336
|
|
965
|
+
963, 0x885b4335457bd84a
|
|
966
|
+
964, 0x499d3ed26c87ad8a
|
|
967
|
+
965, 0xc7328bcedb9a545e
|
|
968
|
+
966, 0xc6dd76a6cbf5d2b2
|
|
969
|
+
967, 0xba9c22be404ee1aa
|
|
970
|
+
968, 0x70e6aee45f23521d
|
|
971
|
+
969, 0x61e03a798593c177
|
|
972
|
+
970, 0x171671f809c68213
|
|
973
|
+
971, 0x28d54872fc1d914c
|
|
974
|
+
972, 0x43c2fcd9bd098b53
|
|
975
|
+
973, 0x172ad4c4a98b9d37
|
|
976
|
+
974, 0x330860c9460f2516
|
|
977
|
+
975, 0x49547f472df984f4
|
|
978
|
+
976, 0x873b2436d3f0e114
|
|
979
|
+
977, 0x6f99accf4ea050b6
|
|
980
|
+
978, 0x5968ac874ed51613
|
|
981
|
+
979, 0x4939d70d29a3c611
|
|
982
|
+
980, 0x11f381ed28738d3d
|
|
983
|
+
981, 0xa97430d36ab3a869
|
|
984
|
+
982, 0xe6fa880801129e22
|
|
985
|
+
983, 0xf84decbd8f48c913
|
|
986
|
+
984, 0x4425c0ed1e9a82a5
|
|
987
|
+
985, 0x7a1f9485e9929d5a
|
|
988
|
+
986, 0xc7c51f155dfce1c6
|
|
989
|
+
987, 0x9619a39501d74f2b
|
|
990
|
+
988, 0x7c7035955dbf4c1b
|
|
991
|
+
989, 0xc61ee569cf57c2c9
|
|
992
|
+
990, 0x3eaf7c5b0df734e1
|
|
993
|
+
991, 0xe71cb4064d1ede05
|
|
994
|
+
992, 0x356e3cec80e418b2
|
|
995
|
+
993, 0xca04306243a15be6
|
|
996
|
+
994, 0x941cf3881fa18896
|
|
997
|
+
995, 0x30dbb0e819d644e0
|
|
998
|
+
996, 0xaae22c0bef02859a
|
|
999
|
+
997, 0x7bd30917bbaa8a94
|
|
1000
|
+
998, 0x2672547bc8d7d329
|
|
1001
|
+
999, 0x4955c92aaa231578
|