numpy 2.4.1__cp314-cp314t-win_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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 +955 -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.cp314t-win_arm64.lib +0 -0
- numpy/_core/_multiarray_tests.cp314t-win_arm64.pyd +0 -0
- numpy/_core/_multiarray_umath.cp314t-win_arm64.lib +0 -0
- numpy/_core/_multiarray_umath.cp314t-win_arm64.pyd +0 -0
- numpy/_core/_operand_flag_tests.cp314t-win_arm64.lib +0 -0
- numpy/_core/_operand_flag_tests.cp314t-win_arm64.pyd +0 -0
- numpy/_core/_rational_tests.cp314t-win_arm64.lib +0 -0
- numpy/_core/_rational_tests.cp314t-win_arm64.pyd +0 -0
- numpy/_core/_simd.cp314t-win_arm64.lib +0 -0
- numpy/_core/_simd.cp314t-win_arm64.pyd +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.cp314t-win_arm64.lib +0 -0
- numpy/_core/_struct_ufunc_tests.cp314t-win_arm64.pyd +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.cp314t-win_arm64.lib +0 -0
- numpy/_core/_umath_tests.cp314t-win_arm64.pyd +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/npy-pkg-config/mlib.ini +12 -0
- numpy/_core/lib/npy-pkg-config/npymath.ini +20 -0
- numpy/_core/lib/npymath.lib +0 -0
- numpy/_core/lib/pkgconfig/numpy.pc +7 -0
- numpy/_core/memmap.py +363 -0
- numpy/_core/memmap.pyi +3 -0
- numpy/_core/multiarray.py +1740 -0
- numpy/_core/multiarray.pyi +1316 -0
- numpy/_core/numeric.py +2758 -0
- numpy/_core/numeric.pyi +1276 -0
- numpy/_core/numerictypes.py +633 -0
- numpy/_core/numerictypes.pyi +196 -0
- numpy/_core/overrides.py +188 -0
- numpy/_core/overrides.pyi +47 -0
- numpy/_core/printoptions.py +32 -0
- numpy/_core/printoptions.pyi +28 -0
- numpy/_core/records.py +1088 -0
- numpy/_core/records.pyi +340 -0
- numpy/_core/shape_base.py +996 -0
- numpy/_core/shape_base.pyi +182 -0
- numpy/_core/strings.py +1813 -0
- numpy/_core/strings.pyi +536 -0
- numpy/_core/tests/_locales.py +72 -0
- numpy/_core/tests/_natype.py +144 -0
- numpy/_core/tests/data/astype_copy.pkl +0 -0
- numpy/_core/tests/data/generate_umath_validation_data.cpp +170 -0
- numpy/_core/tests/data/recarray_from_file.fits +0 -0
- numpy/_core/tests/data/umath-validation-set-README.txt +15 -0
- numpy/_core/tests/data/umath-validation-set-arccos.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arccosh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arcsin.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arcsinh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arctan.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arctanh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-cbrt.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-cos.csv +1375 -0
- numpy/_core/tests/data/umath-validation-set-cosh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-exp.csv +412 -0
- numpy/_core/tests/data/umath-validation-set-exp2.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-expm1.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-log.csv +271 -0
- numpy/_core/tests/data/umath-validation-set-log10.csv +1629 -0
- numpy/_core/tests/data/umath-validation-set-log1p.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-log2.csv +1629 -0
- numpy/_core/tests/data/umath-validation-set-sin.csv +1370 -0
- numpy/_core/tests/data/umath-validation-set-sinh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-tan.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-tanh.csv +1429 -0
- numpy/_core/tests/examples/cython/checks.pyx +373 -0
- numpy/_core/tests/examples/cython/meson.build +43 -0
- numpy/_core/tests/examples/cython/setup.py +39 -0
- numpy/_core/tests/examples/limited_api/limited_api1.c +17 -0
- numpy/_core/tests/examples/limited_api/limited_api2.pyx +11 -0
- numpy/_core/tests/examples/limited_api/limited_api_latest.c +19 -0
- numpy/_core/tests/examples/limited_api/meson.build +59 -0
- numpy/_core/tests/examples/limited_api/setup.py +24 -0
- numpy/_core/tests/test__exceptions.py +90 -0
- numpy/_core/tests/test_abc.py +54 -0
- numpy/_core/tests/test_api.py +655 -0
- numpy/_core/tests/test_argparse.py +90 -0
- numpy/_core/tests/test_array_api_info.py +113 -0
- numpy/_core/tests/test_array_coercion.py +928 -0
- numpy/_core/tests/test_array_interface.py +222 -0
- numpy/_core/tests/test_arraymethod.py +84 -0
- numpy/_core/tests/test_arrayobject.py +75 -0
- numpy/_core/tests/test_arrayprint.py +1324 -0
- numpy/_core/tests/test_casting_floatingpoint_errors.py +154 -0
- numpy/_core/tests/test_casting_unittests.py +955 -0
- numpy/_core/tests/test_conversion_utils.py +209 -0
- numpy/_core/tests/test_cpu_dispatcher.py +48 -0
- numpy/_core/tests/test_cpu_features.py +450 -0
- numpy/_core/tests/test_custom_dtypes.py +393 -0
- numpy/_core/tests/test_cython.py +352 -0
- numpy/_core/tests/test_datetime.py +2792 -0
- numpy/_core/tests/test_defchararray.py +858 -0
- numpy/_core/tests/test_deprecations.py +460 -0
- numpy/_core/tests/test_dlpack.py +190 -0
- numpy/_core/tests/test_dtype.py +2110 -0
- numpy/_core/tests/test_einsum.py +1351 -0
- numpy/_core/tests/test_errstate.py +131 -0
- numpy/_core/tests/test_extint128.py +217 -0
- numpy/_core/tests/test_finfo.py +86 -0
- numpy/_core/tests/test_function_base.py +504 -0
- numpy/_core/tests/test_getlimits.py +171 -0
- numpy/_core/tests/test_half.py +593 -0
- numpy/_core/tests/test_hashtable.py +36 -0
- numpy/_core/tests/test_indexerrors.py +122 -0
- numpy/_core/tests/test_indexing.py +1692 -0
- numpy/_core/tests/test_item_selection.py +167 -0
- numpy/_core/tests/test_limited_api.py +102 -0
- numpy/_core/tests/test_longdouble.py +370 -0
- numpy/_core/tests/test_mem_overlap.py +933 -0
- numpy/_core/tests/test_mem_policy.py +453 -0
- numpy/_core/tests/test_memmap.py +248 -0
- numpy/_core/tests/test_multiarray.py +11008 -0
- numpy/_core/tests/test_multiprocessing.py +55 -0
- numpy/_core/tests/test_multithreading.py +377 -0
- numpy/_core/tests/test_nditer.py +3533 -0
- numpy/_core/tests/test_nep50_promotions.py +287 -0
- numpy/_core/tests/test_numeric.py +4295 -0
- numpy/_core/tests/test_numerictypes.py +650 -0
- numpy/_core/tests/test_overrides.py +800 -0
- numpy/_core/tests/test_print.py +202 -0
- numpy/_core/tests/test_protocols.py +46 -0
- numpy/_core/tests/test_records.py +544 -0
- numpy/_core/tests/test_regression.py +2677 -0
- numpy/_core/tests/test_scalar_ctors.py +203 -0
- numpy/_core/tests/test_scalar_methods.py +328 -0
- numpy/_core/tests/test_scalarbuffer.py +153 -0
- numpy/_core/tests/test_scalarinherit.py +105 -0
- numpy/_core/tests/test_scalarmath.py +1168 -0
- numpy/_core/tests/test_scalarprint.py +403 -0
- numpy/_core/tests/test_shape_base.py +904 -0
- numpy/_core/tests/test_simd.py +1345 -0
- numpy/_core/tests/test_simd_module.py +105 -0
- numpy/_core/tests/test_stringdtype.py +1855 -0
- numpy/_core/tests/test_strings.py +1523 -0
- numpy/_core/tests/test_ufunc.py +3405 -0
- numpy/_core/tests/test_umath.py +4962 -0
- numpy/_core/tests/test_umath_accuracy.py +132 -0
- numpy/_core/tests/test_umath_complex.py +631 -0
- numpy/_core/tests/test_unicode.py +369 -0
- numpy/_core/umath.py +60 -0
- numpy/_core/umath.pyi +232 -0
- numpy/_distributor_init.py +15 -0
- numpy/_distributor_init.pyi +1 -0
- numpy/_expired_attrs_2_0.py +78 -0
- numpy/_expired_attrs_2_0.pyi +61 -0
- numpy/_globals.py +121 -0
- numpy/_globals.pyi +17 -0
- numpy/_pyinstaller/__init__.py +0 -0
- numpy/_pyinstaller/__init__.pyi +0 -0
- numpy/_pyinstaller/hook-numpy.py +36 -0
- numpy/_pyinstaller/hook-numpy.pyi +6 -0
- numpy/_pyinstaller/tests/__init__.py +16 -0
- numpy/_pyinstaller/tests/pyinstaller-smoke.py +32 -0
- numpy/_pyinstaller/tests/test_pyinstaller.py +35 -0
- numpy/_pytesttester.py +201 -0
- numpy/_pytesttester.pyi +18 -0
- numpy/_typing/__init__.py +173 -0
- numpy/_typing/_add_docstring.py +153 -0
- numpy/_typing/_array_like.py +106 -0
- numpy/_typing/_char_codes.py +213 -0
- numpy/_typing/_dtype_like.py +114 -0
- numpy/_typing/_extended_precision.py +15 -0
- numpy/_typing/_nbit.py +19 -0
- numpy/_typing/_nbit_base.py +94 -0
- numpy/_typing/_nbit_base.pyi +39 -0
- numpy/_typing/_nested_sequence.py +79 -0
- numpy/_typing/_scalars.py +20 -0
- numpy/_typing/_shape.py +8 -0
- numpy/_typing/_ufunc.py +7 -0
- numpy/_typing/_ufunc.pyi +975 -0
- numpy/_utils/__init__.py +95 -0
- numpy/_utils/__init__.pyi +28 -0
- numpy/_utils/_convertions.py +18 -0
- numpy/_utils/_convertions.pyi +4 -0
- numpy/_utils/_inspect.py +192 -0
- numpy/_utils/_inspect.pyi +70 -0
- numpy/_utils/_pep440.py +486 -0
- numpy/_utils/_pep440.pyi +118 -0
- numpy/char/__init__.py +2 -0
- numpy/char/__init__.pyi +111 -0
- numpy/conftest.py +248 -0
- numpy/core/__init__.py +33 -0
- numpy/core/__init__.pyi +0 -0
- numpy/core/_dtype.py +10 -0
- numpy/core/_dtype.pyi +0 -0
- numpy/core/_dtype_ctypes.py +10 -0
- numpy/core/_dtype_ctypes.pyi +0 -0
- numpy/core/_internal.py +27 -0
- numpy/core/_multiarray_umath.py +57 -0
- numpy/core/_utils.py +21 -0
- numpy/core/arrayprint.py +10 -0
- numpy/core/defchararray.py +10 -0
- numpy/core/einsumfunc.py +10 -0
- numpy/core/fromnumeric.py +10 -0
- numpy/core/function_base.py +10 -0
- numpy/core/getlimits.py +10 -0
- numpy/core/multiarray.py +25 -0
- numpy/core/numeric.py +12 -0
- numpy/core/numerictypes.py +10 -0
- numpy/core/overrides.py +10 -0
- numpy/core/overrides.pyi +7 -0
- numpy/core/records.py +10 -0
- numpy/core/shape_base.py +10 -0
- numpy/core/umath.py +10 -0
- numpy/ctypeslib/__init__.py +13 -0
- numpy/ctypeslib/__init__.pyi +15 -0
- numpy/ctypeslib/_ctypeslib.py +603 -0
- numpy/ctypeslib/_ctypeslib.pyi +236 -0
- numpy/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.cp314t-win_arm64.lib +0 -0
- numpy/fft/_pocketfft_umath.cp314t-win_arm64.pyd +0 -0
- numpy/fft/tests/__init__.py +0 -0
- numpy/fft/tests/test_helper.py +167 -0
- numpy/fft/tests/test_pocketfft.py +589 -0
- numpy/lib/__init__.py +97 -0
- numpy/lib/__init__.pyi +52 -0
- numpy/lib/_array_utils_impl.py +62 -0
- numpy/lib/_array_utils_impl.pyi +10 -0
- numpy/lib/_arraypad_impl.py +926 -0
- numpy/lib/_arraypad_impl.pyi +88 -0
- numpy/lib/_arraysetops_impl.py +1158 -0
- numpy/lib/_arraysetops_impl.pyi +462 -0
- numpy/lib/_arrayterator_impl.py +224 -0
- numpy/lib/_arrayterator_impl.pyi +45 -0
- numpy/lib/_datasource.py +700 -0
- numpy/lib/_datasource.pyi +30 -0
- numpy/lib/_format_impl.py +1036 -0
- numpy/lib/_format_impl.pyi +56 -0
- numpy/lib/_function_base_impl.py +5760 -0
- numpy/lib/_function_base_impl.pyi +2324 -0
- numpy/lib/_histograms_impl.py +1085 -0
- numpy/lib/_histograms_impl.pyi +40 -0
- numpy/lib/_index_tricks_impl.py +1048 -0
- numpy/lib/_index_tricks_impl.pyi +267 -0
- numpy/lib/_iotools.py +900 -0
- numpy/lib/_iotools.pyi +116 -0
- numpy/lib/_nanfunctions_impl.py +2006 -0
- numpy/lib/_nanfunctions_impl.pyi +48 -0
- numpy/lib/_npyio_impl.py +2583 -0
- numpy/lib/_npyio_impl.pyi +299 -0
- numpy/lib/_polynomial_impl.py +1465 -0
- numpy/lib/_polynomial_impl.pyi +338 -0
- numpy/lib/_scimath_impl.py +642 -0
- numpy/lib/_scimath_impl.pyi +93 -0
- numpy/lib/_shape_base_impl.py +1289 -0
- numpy/lib/_shape_base_impl.pyi +236 -0
- numpy/lib/_stride_tricks_impl.py +582 -0
- numpy/lib/_stride_tricks_impl.pyi +73 -0
- numpy/lib/_twodim_base_impl.py +1201 -0
- numpy/lib/_twodim_base_impl.pyi +408 -0
- numpy/lib/_type_check_impl.py +710 -0
- numpy/lib/_type_check_impl.pyi +348 -0
- numpy/lib/_ufunclike_impl.py +199 -0
- numpy/lib/_ufunclike_impl.pyi +60 -0
- numpy/lib/_user_array_impl.py +310 -0
- numpy/lib/_user_array_impl.pyi +226 -0
- numpy/lib/_utils_impl.py +784 -0
- numpy/lib/_utils_impl.pyi +22 -0
- numpy/lib/_version.py +153 -0
- numpy/lib/_version.pyi +17 -0
- numpy/lib/array_utils.py +7 -0
- numpy/lib/array_utils.pyi +6 -0
- numpy/lib/format.py +24 -0
- numpy/lib/format.pyi +24 -0
- numpy/lib/introspect.py +94 -0
- numpy/lib/introspect.pyi +3 -0
- numpy/lib/mixins.py +180 -0
- numpy/lib/mixins.pyi +78 -0
- numpy/lib/npyio.py +1 -0
- numpy/lib/npyio.pyi +5 -0
- numpy/lib/recfunctions.py +1681 -0
- numpy/lib/recfunctions.pyi +444 -0
- numpy/lib/scimath.py +13 -0
- numpy/lib/scimath.pyi +12 -0
- numpy/lib/stride_tricks.py +1 -0
- numpy/lib/stride_tricks.pyi +4 -0
- numpy/lib/tests/__init__.py +0 -0
- numpy/lib/tests/data/py2-np0-objarr.npy +0 -0
- numpy/lib/tests/data/py2-objarr.npy +0 -0
- numpy/lib/tests/data/py2-objarr.npz +0 -0
- numpy/lib/tests/data/py3-objarr.npy +0 -0
- numpy/lib/tests/data/py3-objarr.npz +0 -0
- numpy/lib/tests/data/python3.npy +0 -0
- numpy/lib/tests/data/win64python2.npy +0 -0
- numpy/lib/tests/test__datasource.py +328 -0
- numpy/lib/tests/test__iotools.py +358 -0
- numpy/lib/tests/test__version.py +64 -0
- numpy/lib/tests/test_array_utils.py +32 -0
- numpy/lib/tests/test_arraypad.py +1427 -0
- numpy/lib/tests/test_arraysetops.py +1302 -0
- numpy/lib/tests/test_arrayterator.py +45 -0
- numpy/lib/tests/test_format.py +1054 -0
- numpy/lib/tests/test_function_base.py +4750 -0
- numpy/lib/tests/test_histograms.py +855 -0
- numpy/lib/tests/test_index_tricks.py +693 -0
- numpy/lib/tests/test_io.py +2857 -0
- numpy/lib/tests/test_loadtxt.py +1099 -0
- numpy/lib/tests/test_mixins.py +215 -0
- numpy/lib/tests/test_nanfunctions.py +1438 -0
- numpy/lib/tests/test_packbits.py +376 -0
- numpy/lib/tests/test_polynomial.py +325 -0
- numpy/lib/tests/test_recfunctions.py +1042 -0
- numpy/lib/tests/test_regression.py +231 -0
- numpy/lib/tests/test_shape_base.py +813 -0
- numpy/lib/tests/test_stride_tricks.py +655 -0
- numpy/lib/tests/test_twodim_base.py +559 -0
- numpy/lib/tests/test_type_check.py +473 -0
- numpy/lib/tests/test_ufunclike.py +97 -0
- numpy/lib/tests/test_utils.py +80 -0
- numpy/lib/user_array.py +1 -0
- numpy/lib/user_array.pyi +1 -0
- numpy/linalg/__init__.py +95 -0
- numpy/linalg/__init__.pyi +71 -0
- numpy/linalg/_linalg.py +3657 -0
- numpy/linalg/_linalg.pyi +548 -0
- numpy/linalg/_umath_linalg.cp314t-win_arm64.lib +0 -0
- numpy/linalg/_umath_linalg.cp314t-win_arm64.pyd +0 -0
- numpy/linalg/_umath_linalg.pyi +60 -0
- numpy/linalg/lapack_lite.cp314t-win_arm64.lib +0 -0
- numpy/linalg/lapack_lite.cp314t-win_arm64.pyd +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.cp314t-win_arm64.lib +0 -0
- numpy/random/_bounded_integers.cp314t-win_arm64.pyd +0 -0
- numpy/random/_bounded_integers.pxd +38 -0
- numpy/random/_bounded_integers.pyi +1 -0
- numpy/random/_common.cp314t-win_arm64.lib +0 -0
- numpy/random/_common.cp314t-win_arm64.pyd +0 -0
- numpy/random/_common.pxd +110 -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.cp314t-win_arm64.lib +0 -0
- numpy/random/_generator.cp314t-win_arm64.pyd +0 -0
- numpy/random/_generator.pyi +862 -0
- numpy/random/_mt19937.cp314t-win_arm64.lib +0 -0
- numpy/random/_mt19937.cp314t-win_arm64.pyd +0 -0
- numpy/random/_mt19937.pyi +27 -0
- numpy/random/_pcg64.cp314t-win_arm64.lib +0 -0
- numpy/random/_pcg64.cp314t-win_arm64.pyd +0 -0
- numpy/random/_pcg64.pyi +41 -0
- numpy/random/_philox.cp314t-win_arm64.lib +0 -0
- numpy/random/_philox.cp314t-win_arm64.pyd +0 -0
- numpy/random/_philox.pyi +36 -0
- numpy/random/_pickle.py +88 -0
- numpy/random/_pickle.pyi +43 -0
- numpy/random/_sfc64.cp314t-win_arm64.lib +0 -0
- numpy/random/_sfc64.cp314t-win_arm64.pyd +0 -0
- numpy/random/_sfc64.pyi +25 -0
- numpy/random/bit_generator.cp314t-win_arm64.lib +0 -0
- numpy/random/bit_generator.cp314t-win_arm64.pyd +0 -0
- numpy/random/bit_generator.pxd +40 -0
- numpy/random/bit_generator.pyi +123 -0
- numpy/random/c_distributions.pxd +119 -0
- numpy/random/lib/npyrandom.lib +0 -0
- numpy/random/mtrand.cp314t-win_arm64.lib +0 -0
- numpy/random/mtrand.cp314t-win_arm64.pyd +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 +807 -0
- numpy/tests/test_reloading.py +76 -0
- numpy/tests/test_scripts.py +48 -0
- numpy/tests/test_warnings.py +79 -0
- numpy/typing/__init__.py +233 -0
- numpy/typing/__init__.pyi +3 -0
- numpy/typing/mypy_plugin.py +200 -0
- numpy/typing/tests/__init__.py +0 -0
- numpy/typing/tests/data/fail/arithmetic.pyi +126 -0
- numpy/typing/tests/data/fail/array_constructors.pyi +34 -0
- numpy/typing/tests/data/fail/array_like.pyi +15 -0
- numpy/typing/tests/data/fail/array_pad.pyi +6 -0
- numpy/typing/tests/data/fail/arrayprint.pyi +15 -0
- numpy/typing/tests/data/fail/arrayterator.pyi +14 -0
- numpy/typing/tests/data/fail/bitwise_ops.pyi +17 -0
- numpy/typing/tests/data/fail/char.pyi +63 -0
- numpy/typing/tests/data/fail/chararray.pyi +61 -0
- numpy/typing/tests/data/fail/comparisons.pyi +27 -0
- numpy/typing/tests/data/fail/constants.pyi +3 -0
- numpy/typing/tests/data/fail/datasource.pyi +16 -0
- numpy/typing/tests/data/fail/dtype.pyi +17 -0
- numpy/typing/tests/data/fail/einsumfunc.pyi +12 -0
- numpy/typing/tests/data/fail/flatiter.pyi +38 -0
- numpy/typing/tests/data/fail/fromnumeric.pyi +148 -0
- numpy/typing/tests/data/fail/histograms.pyi +12 -0
- numpy/typing/tests/data/fail/index_tricks.pyi +14 -0
- numpy/typing/tests/data/fail/lib_function_base.pyi +60 -0
- numpy/typing/tests/data/fail/lib_polynomial.pyi +29 -0
- numpy/typing/tests/data/fail/lib_utils.pyi +3 -0
- numpy/typing/tests/data/fail/lib_version.pyi +6 -0
- numpy/typing/tests/data/fail/linalg.pyi +52 -0
- numpy/typing/tests/data/fail/ma.pyi +155 -0
- numpy/typing/tests/data/fail/memmap.pyi +5 -0
- numpy/typing/tests/data/fail/modules.pyi +17 -0
- numpy/typing/tests/data/fail/multiarray.pyi +52 -0
- numpy/typing/tests/data/fail/ndarray.pyi +11 -0
- numpy/typing/tests/data/fail/ndarray_misc.pyi +49 -0
- numpy/typing/tests/data/fail/nditer.pyi +8 -0
- numpy/typing/tests/data/fail/nested_sequence.pyi +17 -0
- numpy/typing/tests/data/fail/npyio.pyi +24 -0
- numpy/typing/tests/data/fail/numerictypes.pyi +5 -0
- numpy/typing/tests/data/fail/random.pyi +62 -0
- numpy/typing/tests/data/fail/rec.pyi +17 -0
- numpy/typing/tests/data/fail/scalars.pyi +86 -0
- numpy/typing/tests/data/fail/shape.pyi +7 -0
- numpy/typing/tests/data/fail/shape_base.pyi +8 -0
- numpy/typing/tests/data/fail/stride_tricks.pyi +9 -0
- numpy/typing/tests/data/fail/strings.pyi +52 -0
- numpy/typing/tests/data/fail/testing.pyi +28 -0
- numpy/typing/tests/data/fail/twodim_base.pyi +39 -0
- numpy/typing/tests/data/fail/type_check.pyi +12 -0
- numpy/typing/tests/data/fail/ufunc_config.pyi +21 -0
- numpy/typing/tests/data/fail/ufunclike.pyi +21 -0
- numpy/typing/tests/data/fail/ufuncs.pyi +17 -0
- numpy/typing/tests/data/fail/warnings_and_errors.pyi +5 -0
- numpy/typing/tests/data/misc/extended_precision.pyi +9 -0
- numpy/typing/tests/data/mypy.ini +8 -0
- numpy/typing/tests/data/pass/arithmetic.py +614 -0
- numpy/typing/tests/data/pass/array_constructors.py +138 -0
- numpy/typing/tests/data/pass/array_like.py +43 -0
- numpy/typing/tests/data/pass/arrayprint.py +37 -0
- numpy/typing/tests/data/pass/arrayterator.py +28 -0
- numpy/typing/tests/data/pass/bitwise_ops.py +131 -0
- numpy/typing/tests/data/pass/comparisons.py +316 -0
- numpy/typing/tests/data/pass/dtype.py +57 -0
- numpy/typing/tests/data/pass/einsumfunc.py +36 -0
- numpy/typing/tests/data/pass/flatiter.py +26 -0
- numpy/typing/tests/data/pass/fromnumeric.py +272 -0
- numpy/typing/tests/data/pass/index_tricks.py +62 -0
- numpy/typing/tests/data/pass/lib_user_array.py +22 -0
- numpy/typing/tests/data/pass/lib_utils.py +19 -0
- numpy/typing/tests/data/pass/lib_version.py +18 -0
- numpy/typing/tests/data/pass/literal.py +52 -0
- numpy/typing/tests/data/pass/ma.py +199 -0
- numpy/typing/tests/data/pass/mod.py +149 -0
- numpy/typing/tests/data/pass/modules.py +45 -0
- numpy/typing/tests/data/pass/multiarray.py +77 -0
- numpy/typing/tests/data/pass/ndarray_conversion.py +81 -0
- numpy/typing/tests/data/pass/ndarray_misc.py +199 -0
- numpy/typing/tests/data/pass/ndarray_shape_manipulation.py +47 -0
- numpy/typing/tests/data/pass/nditer.py +4 -0
- numpy/typing/tests/data/pass/numeric.py +90 -0
- numpy/typing/tests/data/pass/numerictypes.py +17 -0
- numpy/typing/tests/data/pass/random.py +1498 -0
- numpy/typing/tests/data/pass/recfunctions.py +164 -0
- numpy/typing/tests/data/pass/scalars.py +249 -0
- numpy/typing/tests/data/pass/shape.py +19 -0
- numpy/typing/tests/data/pass/simple.py +170 -0
- numpy/typing/tests/data/pass/ufunc_config.py +64 -0
- numpy/typing/tests/data/pass/ufunclike.py +52 -0
- numpy/typing/tests/data/pass/ufuncs.py +16 -0
- numpy/typing/tests/data/pass/warnings_and_errors.py +6 -0
- numpy/typing/tests/data/reveal/arithmetic.pyi +719 -0
- numpy/typing/tests/data/reveal/array_api_info.pyi +70 -0
- numpy/typing/tests/data/reveal/array_constructors.pyi +277 -0
- numpy/typing/tests/data/reveal/arraypad.pyi +27 -0
- numpy/typing/tests/data/reveal/arrayprint.pyi +25 -0
- numpy/typing/tests/data/reveal/arraysetops.pyi +74 -0
- numpy/typing/tests/data/reveal/arrayterator.pyi +27 -0
- numpy/typing/tests/data/reveal/bitwise_ops.pyi +166 -0
- numpy/typing/tests/data/reveal/char.pyi +225 -0
- numpy/typing/tests/data/reveal/chararray.pyi +138 -0
- numpy/typing/tests/data/reveal/comparisons.pyi +264 -0
- numpy/typing/tests/data/reveal/constants.pyi +14 -0
- numpy/typing/tests/data/reveal/ctypeslib.pyi +81 -0
- numpy/typing/tests/data/reveal/datasource.pyi +23 -0
- numpy/typing/tests/data/reveal/dtype.pyi +132 -0
- numpy/typing/tests/data/reveal/einsumfunc.pyi +39 -0
- numpy/typing/tests/data/reveal/emath.pyi +54 -0
- numpy/typing/tests/data/reveal/fft.pyi +37 -0
- numpy/typing/tests/data/reveal/flatiter.pyi +86 -0
- numpy/typing/tests/data/reveal/fromnumeric.pyi +347 -0
- numpy/typing/tests/data/reveal/getlimits.pyi +53 -0
- numpy/typing/tests/data/reveal/histograms.pyi +25 -0
- numpy/typing/tests/data/reveal/index_tricks.pyi +70 -0
- numpy/typing/tests/data/reveal/lib_function_base.pyi +409 -0
- numpy/typing/tests/data/reveal/lib_polynomial.pyi +147 -0
- numpy/typing/tests/data/reveal/lib_utils.pyi +17 -0
- numpy/typing/tests/data/reveal/lib_version.pyi +20 -0
- numpy/typing/tests/data/reveal/linalg.pyi +154 -0
- numpy/typing/tests/data/reveal/ma.pyi +1098 -0
- numpy/typing/tests/data/reveal/matrix.pyi +73 -0
- numpy/typing/tests/data/reveal/memmap.pyi +19 -0
- numpy/typing/tests/data/reveal/mod.pyi +178 -0
- numpy/typing/tests/data/reveal/modules.pyi +51 -0
- numpy/typing/tests/data/reveal/multiarray.pyi +197 -0
- numpy/typing/tests/data/reveal/nbit_base_example.pyi +20 -0
- numpy/typing/tests/data/reveal/ndarray_assignability.pyi +82 -0
- numpy/typing/tests/data/reveal/ndarray_conversion.pyi +83 -0
- numpy/typing/tests/data/reveal/ndarray_misc.pyi +246 -0
- numpy/typing/tests/data/reveal/ndarray_shape_manipulation.pyi +47 -0
- numpy/typing/tests/data/reveal/nditer.pyi +49 -0
- numpy/typing/tests/data/reveal/nested_sequence.pyi +25 -0
- numpy/typing/tests/data/reveal/npyio.pyi +83 -0
- numpy/typing/tests/data/reveal/numeric.pyi +170 -0
- numpy/typing/tests/data/reveal/numerictypes.pyi +16 -0
- numpy/typing/tests/data/reveal/polynomial_polybase.pyi +217 -0
- numpy/typing/tests/data/reveal/polynomial_polyutils.pyi +218 -0
- numpy/typing/tests/data/reveal/polynomial_series.pyi +138 -0
- numpy/typing/tests/data/reveal/random.pyi +1546 -0
- numpy/typing/tests/data/reveal/rec.pyi +171 -0
- numpy/typing/tests/data/reveal/scalars.pyi +191 -0
- numpy/typing/tests/data/reveal/shape.pyi +13 -0
- numpy/typing/tests/data/reveal/shape_base.pyi +52 -0
- numpy/typing/tests/data/reveal/stride_tricks.pyi +27 -0
- numpy/typing/tests/data/reveal/strings.pyi +196 -0
- numpy/typing/tests/data/reveal/testing.pyi +198 -0
- numpy/typing/tests/data/reveal/twodim_base.pyi +225 -0
- numpy/typing/tests/data/reveal/type_check.pyi +67 -0
- numpy/typing/tests/data/reveal/ufunc_config.pyi +29 -0
- numpy/typing/tests/data/reveal/ufunclike.pyi +31 -0
- numpy/typing/tests/data/reveal/ufuncs.pyi +142 -0
- numpy/typing/tests/data/reveal/warnings_and_errors.pyi +11 -0
- numpy/typing/tests/test_isfile.py +38 -0
- numpy/typing/tests/test_runtime.py +110 -0
- numpy/typing/tests/test_typing.py +205 -0
- numpy/version.py +11 -0
- numpy/version.pyi +9 -0
- numpy-2.4.1.dist-info/DELVEWHEEL +2 -0
- numpy-2.4.1.dist-info/METADATA +139 -0
- numpy-2.4.1.dist-info/RECORD +932 -0
- numpy-2.4.1.dist-info/WHEEL +4 -0
- numpy-2.4.1.dist-info/entry_points.txt +13 -0
- numpy-2.4.1.dist-info/licenses/LICENSE.txt +914 -0
- numpy-2.4.1.dist-info/licenses/numpy/_core/include/numpy/libdivide/LICENSE.txt +21 -0
- numpy-2.4.1.dist-info/licenses/numpy/_core/src/common/pythoncapi-compat/COPYING +14 -0
- numpy-2.4.1.dist-info/licenses/numpy/_core/src/highway/LICENSE +371 -0
- numpy-2.4.1.dist-info/licenses/numpy/_core/src/multiarray/dragon4_LICENSE.txt +27 -0
- numpy-2.4.1.dist-info/licenses/numpy/_core/src/npysort/x86-simd-sort/LICENSE.md +28 -0
- numpy-2.4.1.dist-info/licenses/numpy/_core/src/umath/svml/LICENSE +30 -0
- numpy-2.4.1.dist-info/licenses/numpy/fft/pocketfft/LICENSE.md +25 -0
- numpy-2.4.1.dist-info/licenses/numpy/linalg/lapack_lite/LICENSE.txt +48 -0
- numpy-2.4.1.dist-info/licenses/numpy/ma/LICENSE +24 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/LICENSE.md +71 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/src/distributions/LICENSE.md +61 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/src/mt19937/LICENSE.md +61 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/src/pcg64/LICENSE.md +22 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/src/philox/LICENSE.md +31 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/src/sfc64/LICENSE.md +27 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/src/splitmix64/LICENSE.md +9 -0
- numpy.libs/msvcp140-5f1c5dd31916990d94181e07bc3afb32.dll +0 -0
- numpy.libs/scipy_openblas-7b69cbfd2599e6035f1310f2a72d59a6.dll +0 -0
|
@@ -0,0 +1,1001 @@
|
|
|
1
|
+
seed, 0xdeadbeaf
|
|
2
|
+
0, 0xedc95200e2bd66a5
|
|
3
|
+
1, 0x581d4e43b7682352
|
|
4
|
+
2, 0x4be7278f5e373eab
|
|
5
|
+
3, 0xee47f17991a9e7ea
|
|
6
|
+
4, 0x38a7d2ae422f2e2c
|
|
7
|
+
5, 0xe2a6730a3b4a8a15
|
|
8
|
+
6, 0x1588b7a841486442
|
|
9
|
+
7, 0x13ad777246700504
|
|
10
|
+
8, 0x14d157e0f5e18204
|
|
11
|
+
9, 0xd87c22a7ee8c13f1
|
|
12
|
+
10, 0x30cc389ce3542ba1
|
|
13
|
+
11, 0xb8a53348955bb2e9
|
|
14
|
+
12, 0xc08802e3c454f74f
|
|
15
|
+
13, 0xb444f627671a5780
|
|
16
|
+
14, 0x4b6dd42b29cbf567
|
|
17
|
+
15, 0x6109c7dc0bc5f7d5
|
|
18
|
+
16, 0x85c954715d6b5b1e
|
|
19
|
+
17, 0x646178d3d9a3a5d5
|
|
20
|
+
18, 0xebbde42b1cd83465
|
|
21
|
+
19, 0x3d015102f6bc9c1a
|
|
22
|
+
20, 0x720fe2ec3798d5fd
|
|
23
|
+
21, 0x93120961289ceb2e
|
|
24
|
+
22, 0xc9207e960a56fae2
|
|
25
|
+
23, 0xa7f042f31d991b98
|
|
26
|
+
24, 0x5fac117415fae74b
|
|
27
|
+
25, 0xd0a970ba8dddc287
|
|
28
|
+
26, 0x84b4e7e51b43106
|
|
29
|
+
27, 0x6ad02bf525ea265f
|
|
30
|
+
28, 0xcdc7e5992b36ef8f
|
|
31
|
+
29, 0x44d4985209261d60
|
|
32
|
+
30, 0x628c02d50f4b902e
|
|
33
|
+
31, 0xc7b1914922d1e76d
|
|
34
|
+
32, 0xfde99ff895cba51d
|
|
35
|
+
33, 0x175a0be050fa985f
|
|
36
|
+
34, 0x47297d3699e03228
|
|
37
|
+
35, 0xccf1e9aeaa3339cd
|
|
38
|
+
36, 0x9fdd18ebeeaf15b1
|
|
39
|
+
37, 0x7c94c9ab68747011
|
|
40
|
+
38, 0x612d8ef22c1fa80f
|
|
41
|
+
39, 0x13f52b860de89ab5
|
|
42
|
+
40, 0x81f264b8c139c43b
|
|
43
|
+
41, 0x8d017ba4ef1e85ba
|
|
44
|
+
42, 0x6d0556f46219951e
|
|
45
|
+
43, 0x8ee7b85663cf67b6
|
|
46
|
+
44, 0x2432fc707645fe67
|
|
47
|
+
45, 0xaf814046051e5941
|
|
48
|
+
46, 0x4d432a83739ac76f
|
|
49
|
+
47, 0x59e5060d0983ccdd
|
|
50
|
+
48, 0xdd20e828b83d9b53
|
|
51
|
+
49, 0x1b891800d7385f4c
|
|
52
|
+
50, 0x10e86a026c52ff5e
|
|
53
|
+
51, 0xb932f11723f7b90c
|
|
54
|
+
52, 0xb2413d0a1f3582d0
|
|
55
|
+
53, 0xe7cd4edda65fc6b5
|
|
56
|
+
54, 0x6d3808848d56593b
|
|
57
|
+
55, 0x192a727c3c7f47d9
|
|
58
|
+
56, 0x9659d8aea5db8c16
|
|
59
|
+
57, 0x4242c79fe2c77c16
|
|
60
|
+
58, 0x605f90c913827cea
|
|
61
|
+
59, 0x53e153c8bfc2138a
|
|
62
|
+
60, 0xed2158fbdef5910e
|
|
63
|
+
61, 0xae9e6e29d4cb5060
|
|
64
|
+
62, 0x7dd51afaad3b11ce
|
|
65
|
+
63, 0x2b9ba533d01a5453
|
|
66
|
+
64, 0x7e0e9cf2b6c72c8
|
|
67
|
+
65, 0x1cc8b3c7747ed147
|
|
68
|
+
66, 0x9b102651e2e11b48
|
|
69
|
+
67, 0x30b0b53cbaac33ea
|
|
70
|
+
68, 0x70c28aec39b99b85
|
|
71
|
+
69, 0x5f1417ff536fdb75
|
|
72
|
+
70, 0x3a1d91abd53acf58
|
|
73
|
+
71, 0xba116a1772168259
|
|
74
|
+
72, 0xf5369bc9bd284151
|
|
75
|
+
73, 0x67bf11373bf183ca
|
|
76
|
+
74, 0xef0b2d44dbd33dc7
|
|
77
|
+
75, 0xbfd567ee1a2953ed
|
|
78
|
+
76, 0x7d373f2579b5e5c6
|
|
79
|
+
77, 0x756eeae7bcdd99be
|
|
80
|
+
78, 0x75f16eb9faa56f3b
|
|
81
|
+
79, 0x96d55ded2b54b9a5
|
|
82
|
+
80, 0x94495191db692c24
|
|
83
|
+
81, 0x32358bdd56bab38c
|
|
84
|
+
82, 0x3f6b64078576579
|
|
85
|
+
83, 0x7177e7948bc064c9
|
|
86
|
+
84, 0x2cbf23f09ba9bc91
|
|
87
|
+
85, 0x9b97cc31c26645f5
|
|
88
|
+
86, 0x5af2d239ff9028b1
|
|
89
|
+
87, 0x316fa920e0332abe
|
|
90
|
+
88, 0x46535b7d1cae10a0
|
|
91
|
+
89, 0x21f0a6869298022c
|
|
92
|
+
90, 0xf395c623b12deb14
|
|
93
|
+
91, 0x8573995180675aa7
|
|
94
|
+
92, 0xc3076509f4dc42d5
|
|
95
|
+
93, 0x15e11e49760c6066
|
|
96
|
+
94, 0xe8a6d311e67a021d
|
|
97
|
+
95, 0x7482f389c883339b
|
|
98
|
+
96, 0xda6f881573cba403
|
|
99
|
+
97, 0xb110ffb847e42f07
|
|
100
|
+
98, 0x2c3393140605ccf9
|
|
101
|
+
99, 0xba1c8ba37d8bdc33
|
|
102
|
+
100, 0x59adf43db7a86fe0
|
|
103
|
+
101, 0xb4fcbf6aa585ca85
|
|
104
|
+
102, 0xd794a93c18033fa6
|
|
105
|
+
103, 0x6e839c01985f9d4
|
|
106
|
+
104, 0x64065bf28222b2c7
|
|
107
|
+
105, 0x6a6359b293fa0640
|
|
108
|
+
106, 0x5ff610969e383e44
|
|
109
|
+
107, 0xa8172c263f05c7f7
|
|
110
|
+
108, 0x62a0172e8bd75d07
|
|
111
|
+
109, 0x7be66e3c453b65ac
|
|
112
|
+
110, 0x6a3b8d5a14014292
|
|
113
|
+
111, 0xa2583e6087450020
|
|
114
|
+
112, 0xd5d3ecc480c627d2
|
|
115
|
+
113, 0xa24e83f1eec8a27c
|
|
116
|
+
114, 0xa23febd2a99ee75a
|
|
117
|
+
115, 0x9a5fbf91c7310366
|
|
118
|
+
116, 0x5b63156932e039b
|
|
119
|
+
117, 0x942af3c569908505
|
|
120
|
+
118, 0x89a850f71ab6a912
|
|
121
|
+
119, 0xfeadc803ac132fe9
|
|
122
|
+
120, 0x67bf60e758250f3
|
|
123
|
+
121, 0x533c25103466a697
|
|
124
|
+
122, 0xb7deede3482f9769
|
|
125
|
+
123, 0x325e043b53bba915
|
|
126
|
+
124, 0x9e8d9e7fde132006
|
|
127
|
+
125, 0x6bacc6860bbc436e
|
|
128
|
+
126, 0xb3ea0534c42b1c53
|
|
129
|
+
127, 0xb2389334db583172
|
|
130
|
+
128, 0xa74b1bfbf5242ee4
|
|
131
|
+
129, 0x53a487e2dc51d15c
|
|
132
|
+
130, 0xe5a3b538d2c7a82e
|
|
133
|
+
131, 0x7b6c70bb0c4cadaf
|
|
134
|
+
132, 0xae20791b2081df1
|
|
135
|
+
133, 0xc685c12e3c61d32c
|
|
136
|
+
134, 0x60110e6b0286e882
|
|
137
|
+
135, 0x49682119c774045c
|
|
138
|
+
136, 0x53dc11a3bbd072e
|
|
139
|
+
137, 0xbdc87c6e732d9c2d
|
|
140
|
+
138, 0xcc4620861ebac8fd
|
|
141
|
+
139, 0x7e9c3558759350cc
|
|
142
|
+
140, 0x157408dee34891ba
|
|
143
|
+
141, 0x9bcad1855b80651b
|
|
144
|
+
142, 0xd81b29141d636908
|
|
145
|
+
143, 0x1ed041a9f319c69d
|
|
146
|
+
144, 0x805b2f541208b490
|
|
147
|
+
145, 0x484ef3bba2eb7c66
|
|
148
|
+
146, 0xb6b5e37d50a99691
|
|
149
|
+
147, 0xabc26a7d9e97e85f
|
|
150
|
+
148, 0xcba2a3cce0417c2f
|
|
151
|
+
149, 0xa030dfffd701993c
|
|
152
|
+
150, 0x2bf2dc50582ebf33
|
|
153
|
+
151, 0xd9df13dd3eb9993e
|
|
154
|
+
152, 0x31ca28b757232ae5
|
|
155
|
+
153, 0x614562a0ccf37263
|
|
156
|
+
154, 0x44d635b01725afbb
|
|
157
|
+
155, 0x5ae230bc9ca9cd
|
|
158
|
+
156, 0xb23a124eb98705c6
|
|
159
|
+
157, 0x6395675444981b11
|
|
160
|
+
158, 0xd97314c34119f9ca
|
|
161
|
+
159, 0x9de61048327dd980
|
|
162
|
+
160, 0x16bac6bded819707
|
|
163
|
+
161, 0xcea3700e3e84b8c7
|
|
164
|
+
162, 0xaa96955e2ee9c408
|
|
165
|
+
163, 0x95361dcc93b5bc99
|
|
166
|
+
164, 0x306921aed3713287
|
|
167
|
+
165, 0x4df87f3130cd302a
|
|
168
|
+
166, 0x37c451daeb6a4af5
|
|
169
|
+
167, 0x8dbbe35f911d5cc1
|
|
170
|
+
168, 0x518157ce61cb10f9
|
|
171
|
+
169, 0x669f577aebc7b35b
|
|
172
|
+
170, 0x4b0a5824a8786040
|
|
173
|
+
171, 0x519bc3528de379f5
|
|
174
|
+
172, 0x6128012516b54e02
|
|
175
|
+
173, 0x98e4f165e5e6a6dd
|
|
176
|
+
174, 0x6404d03618a9b882
|
|
177
|
+
175, 0x15b6aeb3d9cd8dc5
|
|
178
|
+
176, 0x87ed2c1bae83c35b
|
|
179
|
+
177, 0x8377fc0252d41278
|
|
180
|
+
178, 0x843f89d257a9ba02
|
|
181
|
+
179, 0xcdda696ea95d0180
|
|
182
|
+
180, 0xcfc4b23a50a89def
|
|
183
|
+
181, 0xf37fd270d5e29902
|
|
184
|
+
182, 0xafe14418f76b7efa
|
|
185
|
+
183, 0xf984b81577076842
|
|
186
|
+
184, 0xe8c60649ccb5458d
|
|
187
|
+
185, 0x3b7be8e50f8ff27b
|
|
188
|
+
186, 0xaa7506f25cef1464
|
|
189
|
+
187, 0x5e513da59f106688
|
|
190
|
+
188, 0x3c585e1f21a90d91
|
|
191
|
+
189, 0x1df0e2075af292a
|
|
192
|
+
190, 0x29fdd36d4f72795f
|
|
193
|
+
191, 0xb162fe6c24cb4741
|
|
194
|
+
192, 0x45073a8c02bd12c4
|
|
195
|
+
193, 0xcbaaa395c2106f34
|
|
196
|
+
194, 0x5db3c4c6011bc21c
|
|
197
|
+
195, 0x1b02aac4f752e377
|
|
198
|
+
196, 0xa2dfb583eb7bec5
|
|
199
|
+
197, 0xfe1d728805d34bb1
|
|
200
|
+
198, 0xf647fb78bb4601ec
|
|
201
|
+
199, 0xd17be06f0d1f51ef
|
|
202
|
+
200, 0x39ec97c26e3d18a0
|
|
203
|
+
201, 0xb7117c6037e142c8
|
|
204
|
+
202, 0xe3a6ce6e6c71a028
|
|
205
|
+
203, 0xe70a265e5db90bb2
|
|
206
|
+
204, 0x24da4480530def1e
|
|
207
|
+
205, 0xfd82b28ce11d9a90
|
|
208
|
+
206, 0x5bf61ead55074a1d
|
|
209
|
+
207, 0xbe9899c61dec480d
|
|
210
|
+
208, 0xae7d66d21e51ec9e
|
|
211
|
+
209, 0x384ee62c26a08419
|
|
212
|
+
210, 0x6648dccb7c2f4abf
|
|
213
|
+
211, 0xc72aa0c2c708bdc9
|
|
214
|
+
212, 0x205c5946b2b5ba71
|
|
215
|
+
213, 0xd4d8d0b01890a812
|
|
216
|
+
214, 0x56f185493625378d
|
|
217
|
+
215, 0x92f8072c81d39bd0
|
|
218
|
+
216, 0xa60b3ceecb3e4979
|
|
219
|
+
217, 0xfcf41d88b63b5896
|
|
220
|
+
218, 0xf5a49aa845c14003
|
|
221
|
+
219, 0xffcc7e99eee1e705
|
|
222
|
+
220, 0xdd98312a7a43b32d
|
|
223
|
+
221, 0xa6339bd7730b004
|
|
224
|
+
222, 0xdac7874ba7e30386
|
|
225
|
+
223, 0xadf6f0b0d321c8
|
|
226
|
+
224, 0x126a173ae4ffa39f
|
|
227
|
+
225, 0x5c854b137385c1e7
|
|
228
|
+
226, 0x8173d471b1e69c00
|
|
229
|
+
227, 0x23fa34de43581e27
|
|
230
|
+
228, 0x343b373aef4507b1
|
|
231
|
+
229, 0xa482d262b4ea919c
|
|
232
|
+
230, 0xf7fbef1b6f7fbba
|
|
233
|
+
231, 0xd8ce559487976613
|
|
234
|
+
232, 0xbf3c8dd1e6ebc654
|
|
235
|
+
233, 0xda41ed375451e988
|
|
236
|
+
234, 0xf54906371fd4b9b3
|
|
237
|
+
235, 0x5b6bb41231a04230
|
|
238
|
+
236, 0x866d816482b29c17
|
|
239
|
+
237, 0x11315b96941f27dc
|
|
240
|
+
238, 0xff95c79205c47d50
|
|
241
|
+
239, 0x19c4fff96fbdac98
|
|
242
|
+
240, 0xbfb1ae6e4131d0f4
|
|
243
|
+
241, 0x9d20923f3cdb82c9
|
|
244
|
+
242, 0x282175507c865dff
|
|
245
|
+
243, 0xdfd5e58a40fe29be
|
|
246
|
+
244, 0xedbd906ff40c8e4f
|
|
247
|
+
245, 0x11b04fc82614ccb3
|
|
248
|
+
246, 0xeceb8afda76ae49f
|
|
249
|
+
247, 0xa4856913847c2cdf
|
|
250
|
+
248, 0x6f1425f15a627f2a
|
|
251
|
+
249, 0xdf144ffedf60349e
|
|
252
|
+
250, 0x392d7ecfd77cc65f
|
|
253
|
+
251, 0x72b8e2531049b2c6
|
|
254
|
+
252, 0x5a7eb2bdb0ec9529
|
|
255
|
+
253, 0xdcfd4306443e78c1
|
|
256
|
+
254, 0x89ad67ed86cd7583
|
|
257
|
+
255, 0x276b06c0779a6c8f
|
|
258
|
+
256, 0xb2dbb723196a0ac3
|
|
259
|
+
257, 0x66c86a3b65906016
|
|
260
|
+
258, 0x938348768a730b47
|
|
261
|
+
259, 0x5f5282de938d1a96
|
|
262
|
+
260, 0xa4d4588c4b473b1f
|
|
263
|
+
261, 0x8daed5962be4796f
|
|
264
|
+
262, 0x9dde8d796985a56e
|
|
265
|
+
263, 0x46be06dbd9ed9543
|
|
266
|
+
264, 0xdf98286ceb9c5955
|
|
267
|
+
265, 0xa1da1f52d7a7ca2b
|
|
268
|
+
266, 0x5a7f1449f24bbd62
|
|
269
|
+
267, 0x3aedc4e324e525fd
|
|
270
|
+
268, 0xced62464cd0154e1
|
|
271
|
+
269, 0x148fc035e7d88ce3
|
|
272
|
+
270, 0x82f8878948f40d4c
|
|
273
|
+
271, 0x4c04d9cdd6135c17
|
|
274
|
+
272, 0xdf046948d86b3b93
|
|
275
|
+
273, 0x2f0dec84f403fe40
|
|
276
|
+
274, 0xa61954fb71e63c0d
|
|
277
|
+
275, 0x616d8496f00382e8
|
|
278
|
+
276, 0x162c622472746e27
|
|
279
|
+
277, 0x43bcfe48731d2ceb
|
|
280
|
+
278, 0xff22432f9ff16d85
|
|
281
|
+
279, 0xc033ed32bb0ad5a4
|
|
282
|
+
280, 0x5d3717cc91c0ce09
|
|
283
|
+
281, 0x7a39a4852d251075
|
|
284
|
+
282, 0x61cd73d71d6e6a6
|
|
285
|
+
283, 0xe37e2ea4783ab1a5
|
|
286
|
+
284, 0x60e1882162579ea8
|
|
287
|
+
285, 0x9258ec33f1a88e00
|
|
288
|
+
286, 0x24b32acf029f0407
|
|
289
|
+
287, 0x1410fc9aea6d3fac
|
|
290
|
+
288, 0x6054cf2a3c71d8f7
|
|
291
|
+
289, 0x82f7605157a66183
|
|
292
|
+
290, 0x3b34c1c0dff9eac5
|
|
293
|
+
291, 0xfebe01b6d5c61819
|
|
294
|
+
292, 0x7372187c68b777f2
|
|
295
|
+
293, 0xc6923812cda479f0
|
|
296
|
+
294, 0x386613be41b45156
|
|
297
|
+
295, 0x92cfebe8cc4014b
|
|
298
|
+
296, 0x8e13c4595849828b
|
|
299
|
+
297, 0x90e47390d412291f
|
|
300
|
+
298, 0x6b21a1d93d285138
|
|
301
|
+
299, 0xbf5b1f5922f04b12
|
|
302
|
+
300, 0x21e65d1643b3cb69
|
|
303
|
+
301, 0xf7683b131948ac3c
|
|
304
|
+
302, 0xe5d99fc926196ed2
|
|
305
|
+
303, 0x7b138debbec90116
|
|
306
|
+
304, 0x8a2650a75c2c2a5c
|
|
307
|
+
305, 0x20689a768f9b347b
|
|
308
|
+
306, 0xdfa2900cfb72dc6e
|
|
309
|
+
307, 0x98959c3855611cc2
|
|
310
|
+
308, 0x5fdb71b89596cc7c
|
|
311
|
+
309, 0x1c14ac5c49568c7b
|
|
312
|
+
310, 0x958c4293016091fe
|
|
313
|
+
311, 0x7484522eb0087243
|
|
314
|
+
312, 0xc4018dfb34fc190f
|
|
315
|
+
313, 0xca638567e9888860
|
|
316
|
+
314, 0x102cd4805f0c0e89
|
|
317
|
+
315, 0xcc3bc438e04548f8
|
|
318
|
+
316, 0xb808944bb56ea5be
|
|
319
|
+
317, 0xffd4778dbf945c57
|
|
320
|
+
318, 0xfe42617784c0233b
|
|
321
|
+
319, 0x3eccbfeae9b42d3c
|
|
322
|
+
320, 0xd9f1b585fd0bfa60
|
|
323
|
+
321, 0x5c063d1b2705d5dd
|
|
324
|
+
322, 0x8e8bec3519941b64
|
|
325
|
+
323, 0x9e94c36cbec2a42
|
|
326
|
+
324, 0x1cd19f5b64ffd3ad
|
|
327
|
+
325, 0x9632e3aebfc68e66
|
|
328
|
+
326, 0x98960c2d9da4ae45
|
|
329
|
+
327, 0xb76994b1f2bbfc1f
|
|
330
|
+
328, 0xca184a737d3971cc
|
|
331
|
+
329, 0x964d31b07183adfb
|
|
332
|
+
330, 0xe9e0ff351cd276d4
|
|
333
|
+
331, 0xb5747c860b05bbe4
|
|
334
|
+
332, 0x5549ddc3bd3862e2
|
|
335
|
+
333, 0x495496677b27873b
|
|
336
|
+
334, 0x53910baa26e3ea18
|
|
337
|
+
335, 0xaa07a07ad0a688d3
|
|
338
|
+
336, 0xbb43bd1f09ecdb1e
|
|
339
|
+
337, 0xe2ebc105699dd84
|
|
340
|
+
338, 0x6e815a2729584035
|
|
341
|
+
339, 0x2caab1713b17948a
|
|
342
|
+
340, 0x43d39d209fa41c90
|
|
343
|
+
341, 0xfe3e71089d5d1c3a
|
|
344
|
+
342, 0xa778646c32f81177
|
|
345
|
+
343, 0x8d42bfb86e6e92d5
|
|
346
|
+
344, 0x175571f70b4fcfbe
|
|
347
|
+
345, 0x2a66a6fe10dc3b5b
|
|
348
|
+
346, 0xd9545e85235ca709
|
|
349
|
+
347, 0x5642781c77ced48a
|
|
350
|
+
348, 0x24facc40b72ccd09
|
|
351
|
+
349, 0xa800fbacce33f6f8
|
|
352
|
+
350, 0x675f58a0ff19fba
|
|
353
|
+
351, 0x35aedf57bb5cde1b
|
|
354
|
+
352, 0xe5535a6b63f6d068
|
|
355
|
+
353, 0x84dffd0102aaa85d
|
|
356
|
+
354, 0x621faad65467aaa7
|
|
357
|
+
355, 0x596ad85b556b112f
|
|
358
|
+
356, 0x837545fff8894c7a
|
|
359
|
+
357, 0x3d9a4ae1356bc6a6
|
|
360
|
+
358, 0xcd8b7153205d4ad0
|
|
361
|
+
359, 0x98afdd40f1ed09a6
|
|
362
|
+
360, 0xa38b2dc55a5cf87f
|
|
363
|
+
361, 0x484aecce2b6838bc
|
|
364
|
+
362, 0x6af05c26bdab18d9
|
|
365
|
+
363, 0xf418b7399dcf2e4b
|
|
366
|
+
364, 0x1cfa38789b0d2445
|
|
367
|
+
365, 0xfbed23c34166ee67
|
|
368
|
+
366, 0x38e6820039e4912a
|
|
369
|
+
367, 0x1fe94911e963591e
|
|
370
|
+
368, 0x1291c79aee29ad70
|
|
371
|
+
369, 0x65eccfc89506f963
|
|
372
|
+
370, 0x7d14de3b2f55b1f6
|
|
373
|
+
371, 0x82eb79c36cd2a739
|
|
374
|
+
372, 0x41ffe3b75ea0def5
|
|
375
|
+
373, 0x9eba9156470a51d9
|
|
376
|
+
374, 0xd17c00b981db37d1
|
|
377
|
+
375, 0xf688769a75601aa7
|
|
378
|
+
376, 0xbcf738e9e03d571e
|
|
379
|
+
377, 0x14712e56df8f919b
|
|
380
|
+
378, 0xab14e227d156e310
|
|
381
|
+
379, 0xf53d193e993e351e
|
|
382
|
+
380, 0x857fae46bd312141
|
|
383
|
+
381, 0xc2dd71e41b639966
|
|
384
|
+
382, 0x74f8b987a3d00ad1
|
|
385
|
+
383, 0x5bce8526dc527981
|
|
386
|
+
384, 0x94910926c172a379
|
|
387
|
+
385, 0x503c45557688a9d5
|
|
388
|
+
386, 0x244d03834e05807f
|
|
389
|
+
387, 0x6e014cbab9c7a31f
|
|
390
|
+
388, 0xae544c638530facf
|
|
391
|
+
389, 0x9b853aaaf9cbc22d
|
|
392
|
+
390, 0xfb42ab7024d060ed
|
|
393
|
+
391, 0x74cc3fba0dfd7ff2
|
|
394
|
+
392, 0x24ec9e8f62144ad5
|
|
395
|
+
393, 0x72f082954307bbe7
|
|
396
|
+
394, 0x36feda21bbf67577
|
|
397
|
+
395, 0x3222191611b832f1
|
|
398
|
+
396, 0xd0584e81bcac8b0b
|
|
399
|
+
397, 0xdce8d793ef75e771
|
|
400
|
+
398, 0x978824c6c2578fc
|
|
401
|
+
399, 0x6e8f77503b3c2ee4
|
|
402
|
+
400, 0xc85d2d86fecf5d03
|
|
403
|
+
401, 0x3d35b4a5d4d723c4
|
|
404
|
+
402, 0xd3987dfd4727fff3
|
|
405
|
+
403, 0xd3cde63fb6a31add
|
|
406
|
+
404, 0xf6699e86165bdaeb
|
|
407
|
+
405, 0x9d60ba158ec364c4
|
|
408
|
+
406, 0x920c3c18b346bfc9
|
|
409
|
+
407, 0x770fd1fdfbc236ca
|
|
410
|
+
408, 0x45998cfc5fc12ddd
|
|
411
|
+
409, 0xd74a3454e888834b
|
|
412
|
+
410, 0xbf2aa68081a4a28f
|
|
413
|
+
411, 0xea41b26a6f1da1b3
|
|
414
|
+
412, 0x5560a2d24b9d5903
|
|
415
|
+
413, 0xe3791f652a228d8b
|
|
416
|
+
414, 0x365116d3b5a8520c
|
|
417
|
+
415, 0xb1b2bd46528f8969
|
|
418
|
+
416, 0xfcfe14943ef16ae7
|
|
419
|
+
417, 0xf4d43425e8a535dc
|
|
420
|
+
418, 0xe6cf10a78782a7e0
|
|
421
|
+
419, 0x9c7ac0de46556e3e
|
|
422
|
+
420, 0xc667ae0856eed9ef
|
|
423
|
+
421, 0x47dbb532e16f9c7e
|
|
424
|
+
422, 0xdf4785a5d89ee82e
|
|
425
|
+
423, 0xbd014925ce79dbcf
|
|
426
|
+
424, 0xea0d663fb58fa5be
|
|
427
|
+
425, 0x51af07d5cc3821fb
|
|
428
|
+
426, 0x27a1bdcdc4159a9d
|
|
429
|
+
427, 0x520c986c59b1e140
|
|
430
|
+
428, 0x50b73fd9bacd5b39
|
|
431
|
+
429, 0xae5240641f51e4f3
|
|
432
|
+
430, 0x71faecc164ed9681
|
|
433
|
+
431, 0xda95aa35529a7ee
|
|
434
|
+
432, 0xe25ba29b853c1c6d
|
|
435
|
+
433, 0x9871a925cda53735
|
|
436
|
+
434, 0xde481ad8540e114d
|
|
437
|
+
435, 0xa2997f540e8abca0
|
|
438
|
+
436, 0xc9683c5035e28185
|
|
439
|
+
437, 0x1082471b57182bac
|
|
440
|
+
438, 0xbd3ecf0f0b788988
|
|
441
|
+
439, 0xf479760776fbb342
|
|
442
|
+
440, 0x3730929200d91f44
|
|
443
|
+
441, 0xc1762d79ae72809c
|
|
444
|
+
442, 0xfaa0a4c7b1686cb3
|
|
445
|
+
443, 0xd581e6d55afdafcd
|
|
446
|
+
444, 0x6cf57bdfba2dcf6d
|
|
447
|
+
445, 0xdef79d9fe6a5bcef
|
|
448
|
+
446, 0x13ed376e18132bd3
|
|
449
|
+
447, 0xbe67efd72defa2a
|
|
450
|
+
448, 0x5acc176c468966ea
|
|
451
|
+
449, 0x8b35b626af139187
|
|
452
|
+
450, 0x446de3fac0d973ac
|
|
453
|
+
451, 0xe1d49e06dc890317
|
|
454
|
+
452, 0x817bc3fd21fc09b7
|
|
455
|
+
453, 0xb71c3958a13d5579
|
|
456
|
+
454, 0x8746e010f73d7148
|
|
457
|
+
455, 0x1b61c06009922e83
|
|
458
|
+
456, 0xba17e62e6b092316
|
|
459
|
+
457, 0x1375fa23c4db8290
|
|
460
|
+
458, 0x3f071230f51245a6
|
|
461
|
+
459, 0x51c99a086a61cd13
|
|
462
|
+
460, 0x5f0f2ae78589e1fd
|
|
463
|
+
461, 0x604834e114bbbc27
|
|
464
|
+
462, 0x5eb2a7a34814e9a9
|
|
465
|
+
463, 0x77a6907f386bf11e
|
|
466
|
+
464, 0x99525de2bd407eeb
|
|
467
|
+
465, 0xb818348c57b3b98f
|
|
468
|
+
466, 0x25f5f9e702fbe78d
|
|
469
|
+
467, 0x8f66669e6f884473
|
|
470
|
+
468, 0x1e47d46e2af4f919
|
|
471
|
+
469, 0xf6a19df846476833
|
|
472
|
+
470, 0xff00c67bcd06621f
|
|
473
|
+
471, 0xe3dfe069795d72d8
|
|
474
|
+
472, 0x8affc88b2fea4d73
|
|
475
|
+
473, 0x66df747e5f827168
|
|
476
|
+
474, 0xf368ec338d898a0e
|
|
477
|
+
475, 0x9e1f1a739c5984a2
|
|
478
|
+
476, 0x46a1c90e1ca32cbc
|
|
479
|
+
477, 0xc261bc305ed8d762
|
|
480
|
+
478, 0x754d7949f7da9e72
|
|
481
|
+
479, 0x4c8fbbb14ef47b17
|
|
482
|
+
480, 0xccbdc67a3848d80d
|
|
483
|
+
481, 0x3c25e6f58bae751d
|
|
484
|
+
482, 0x7078b163b936d9b6
|
|
485
|
+
483, 0x440e27463c134ecf
|
|
486
|
+
484, 0x6c83ee39f324db0f
|
|
487
|
+
485, 0x27cf901b22aea535
|
|
488
|
+
486, 0x57262dec79a3f366
|
|
489
|
+
487, 0x91db09f1dbb524fb
|
|
490
|
+
488, 0xd7436eefba865df2
|
|
491
|
+
489, 0x16c86b0a275a3f43
|
|
492
|
+
490, 0x689493e6681deaa9
|
|
493
|
+
491, 0x7e1dc536c1a9ac42
|
|
494
|
+
492, 0x1145beac3ac7f5cc
|
|
495
|
+
493, 0x3d05e211a104b2b0
|
|
496
|
+
494, 0x4f9e77ced3c52f44
|
|
497
|
+
495, 0x53de1369354add72
|
|
498
|
+
496, 0x1fb60f835f47cdeb
|
|
499
|
+
497, 0x6ab36f089e40c106
|
|
500
|
+
498, 0xaabffcb0d3d04c7
|
|
501
|
+
499, 0xaa399686d921bd25
|
|
502
|
+
500, 0x2bf8dd8b6d6fa7f0
|
|
503
|
+
501, 0x1ddbf4e124329613
|
|
504
|
+
502, 0x466a740241466a72
|
|
505
|
+
503, 0x98d7381eb68a761
|
|
506
|
+
504, 0x817691510bc4857a
|
|
507
|
+
505, 0x8837622c0171fe33
|
|
508
|
+
506, 0xcba078873179ee16
|
|
509
|
+
507, 0x13adad1ab7b75af4
|
|
510
|
+
508, 0x3bac3f502428840c
|
|
511
|
+
509, 0xbeb3cce138de9a91
|
|
512
|
+
510, 0x30ef556e40b5f0b4
|
|
513
|
+
511, 0x19c22abdf3bbb108
|
|
514
|
+
512, 0x977e66ea4ddc7cf
|
|
515
|
+
513, 0x9f4a505f223d3bf3
|
|
516
|
+
514, 0x6bc3f42ac79ec87b
|
|
517
|
+
515, 0x31e77712158d6c23
|
|
518
|
+
516, 0x6d8de4295a28af0d
|
|
519
|
+
517, 0xee1807dbda72adb7
|
|
520
|
+
518, 0xda54140179cd038f
|
|
521
|
+
519, 0x715aa5cdac38e062
|
|
522
|
+
520, 0x5a7e55e99a22fa16
|
|
523
|
+
521, 0xf190c36aa8edbe4f
|
|
524
|
+
522, 0xccadd93a82c1d044
|
|
525
|
+
523, 0x7070e6d5012c3f15
|
|
526
|
+
524, 0x50a83341a26c1ba5
|
|
527
|
+
525, 0x11bca7cc634142e5
|
|
528
|
+
526, 0x623a0d27867d8b04
|
|
529
|
+
527, 0x75c18acff54fbf6e
|
|
530
|
+
528, 0x455ae7d933497a6f
|
|
531
|
+
529, 0xf624cf27d030c3d3
|
|
532
|
+
530, 0x7a852716f8758bac
|
|
533
|
+
531, 0xe7a497ac1fa2b5b4
|
|
534
|
+
532, 0xf84f097498f57562
|
|
535
|
+
533, 0xc4bb392f87f65943
|
|
536
|
+
534, 0x618e79a5d499fbfb
|
|
537
|
+
535, 0xb3c0b61d82b48b8
|
|
538
|
+
536, 0x4750a10815c78ea7
|
|
539
|
+
537, 0x9cf09cca3ddece69
|
|
540
|
+
538, 0x2a69f1c94cc901a2
|
|
541
|
+
539, 0x347a0e446e1ce86d
|
|
542
|
+
540, 0xb06f3a5a5ab37bb1
|
|
543
|
+
541, 0x8035bd0713d591db
|
|
544
|
+
542, 0x539c9637042c3a1f
|
|
545
|
+
543, 0xd7ba4dc6b273cbd7
|
|
546
|
+
544, 0x12f3f99933444f85
|
|
547
|
+
545, 0x4a9517b9783fb9a4
|
|
548
|
+
546, 0x6422b2ea95093bc5
|
|
549
|
+
547, 0x3a5ecff0f996c2a6
|
|
550
|
+
548, 0x31de504efc76a723
|
|
551
|
+
549, 0x7ccb7c5233c21a9f
|
|
552
|
+
550, 0xc687d9e6ce4186e8
|
|
553
|
+
551, 0x6e40769d6940376a
|
|
554
|
+
552, 0xf51207314f1f7528
|
|
555
|
+
553, 0x67ee3acb190865e3
|
|
556
|
+
554, 0xe08d586270588761
|
|
557
|
+
555, 0xe387fa489af1a75c
|
|
558
|
+
556, 0x73414a52d29d8375
|
|
559
|
+
557, 0x671a38191cf2a357
|
|
560
|
+
558, 0xe00fb25b1aa54008
|
|
561
|
+
559, 0x11a0610e22cf549b
|
|
562
|
+
560, 0xc90cc865d57c75be
|
|
563
|
+
561, 0x90d0863cc15f2b79
|
|
564
|
+
562, 0x8b3e60d32ebcb856
|
|
565
|
+
563, 0xb28cc55af621e04a
|
|
566
|
+
564, 0xcf60bd3cb2a5ab1d
|
|
567
|
+
565, 0x212cb5d421948f86
|
|
568
|
+
566, 0xee297b96e0a3363f
|
|
569
|
+
567, 0x4e9392ff998760d1
|
|
570
|
+
568, 0x61940c8d0105ba3e
|
|
571
|
+
569, 0x14ebcbae72a59a16
|
|
572
|
+
570, 0xdf0f39a3d10c02af
|
|
573
|
+
571, 0xfc047b2b3c1c549d
|
|
574
|
+
572, 0x91718b5b98e3b286
|
|
575
|
+
573, 0x9ea9539b1547d326
|
|
576
|
+
574, 0x7a5a624a89a165e6
|
|
577
|
+
575, 0x145b37dcaa8c4166
|
|
578
|
+
576, 0x63814bbb90e5616c
|
|
579
|
+
577, 0xc4bc3ca6c38bb739
|
|
580
|
+
578, 0x853c3a61ddc6626c
|
|
581
|
+
579, 0xa7ce8481c433829a
|
|
582
|
+
580, 0x8aff426941cc07b
|
|
583
|
+
581, 0x2dc3347ca68d8b95
|
|
584
|
+
582, 0xce69f44f349e9917
|
|
585
|
+
583, 0x2fa5cb8aca009b11
|
|
586
|
+
584, 0xf26bb012115d9aca
|
|
587
|
+
585, 0xafa01c2f2d27235a
|
|
588
|
+
586, 0xabcba21f1b40305e
|
|
589
|
+
587, 0xfec20c896c0c1128
|
|
590
|
+
588, 0xc5f7a71ebacadfa0
|
|
591
|
+
589, 0xc8479ad14bab4eef
|
|
592
|
+
590, 0xad86ec9a3e7d3dc
|
|
593
|
+
591, 0xbbecd65292b915c5
|
|
594
|
+
592, 0xb1f9e28149e67446
|
|
595
|
+
593, 0x708d081c03dad352
|
|
596
|
+
594, 0xaa8a84dbd1de916c
|
|
597
|
+
595, 0x9aa3efb29ba9480b
|
|
598
|
+
596, 0xd3c63969ff11443e
|
|
599
|
+
597, 0x1e9e9ac861315919
|
|
600
|
+
598, 0x4fe227f91e66b41d
|
|
601
|
+
599, 0xefc0212d43d253ab
|
|
602
|
+
600, 0x98341437727c42d1
|
|
603
|
+
601, 0x5ea85c0fe9008adc
|
|
604
|
+
602, 0x7891b15faa808613
|
|
605
|
+
603, 0x32db2d63989aacfd
|
|
606
|
+
604, 0xc92f7f28e88fd7bc
|
|
607
|
+
605, 0x3513545eb6549475
|
|
608
|
+
606, 0x49abe0082906fbf8
|
|
609
|
+
607, 0xcee1e1a6551e729c
|
|
610
|
+
608, 0x38556672b592a28e
|
|
611
|
+
609, 0xc3e61409c4ec2d45
|
|
612
|
+
610, 0x96c67ce2995a0fd4
|
|
613
|
+
611, 0x9b9b0cada870293
|
|
614
|
+
612, 0x82d6dd5dada48037
|
|
615
|
+
613, 0xeea4f415299f1706
|
|
616
|
+
614, 0x371107895f152ab3
|
|
617
|
+
615, 0x2f6686159f4396bb
|
|
618
|
+
616, 0x61005a2ff3680089
|
|
619
|
+
617, 0x9d2f2cafb595e6b6
|
|
620
|
+
618, 0x4a812a920f011672
|
|
621
|
+
619, 0x317554d3a77385d7
|
|
622
|
+
620, 0x24c01086727eb74b
|
|
623
|
+
621, 0xa15ff76d618a3a9e
|
|
624
|
+
622, 0x2121bfd983859940
|
|
625
|
+
623, 0x384d11577eea8114
|
|
626
|
+
624, 0xab0f4299f3c44d88
|
|
627
|
+
625, 0x136fd4b07cfa14d9
|
|
628
|
+
626, 0x665fe45cbfaa972a
|
|
629
|
+
627, 0x76c5a23398a314e9
|
|
630
|
+
628, 0x5507036357ccda98
|
|
631
|
+
629, 0xd9b8c5ac9dce632b
|
|
632
|
+
630, 0x366bc71781da6e27
|
|
633
|
+
631, 0xdd2b2ba1d6be6d15
|
|
634
|
+
632, 0xf33ed0d50ea6f1a6
|
|
635
|
+
633, 0xf05a9b1900174c18
|
|
636
|
+
634, 0x3947e1419e2787cf
|
|
637
|
+
635, 0x6c742b1e029637d0
|
|
638
|
+
636, 0x32aba12196a0d2e8
|
|
639
|
+
637, 0x1b94aab2e82e7df
|
|
640
|
+
638, 0x68b617db19229d6
|
|
641
|
+
639, 0x6c88a95ac0a33f98
|
|
642
|
+
640, 0xdc9b95fd60c2d23e
|
|
643
|
+
641, 0x999e6971d3afc8b3
|
|
644
|
+
642, 0x7071fc6ad8b60129
|
|
645
|
+
643, 0x41a8184ef62485f6
|
|
646
|
+
644, 0xb68e0605c7d5e713
|
|
647
|
+
645, 0x272b961a1d1bbee
|
|
648
|
+
646, 0x23f04e76446187b0
|
|
649
|
+
647, 0x999a7a8f6d33f260
|
|
650
|
+
648, 0xdbd6318df4f168d
|
|
651
|
+
649, 0x8f5e74c84c40711e
|
|
652
|
+
650, 0x8ccc6b04393a19d6
|
|
653
|
+
651, 0xadcd24b782dd8d3d
|
|
654
|
+
652, 0x1a966b4f80ef9499
|
|
655
|
+
653, 0xcb6d4f9ff5a280f0
|
|
656
|
+
654, 0x8095ff2b8484018a
|
|
657
|
+
655, 0xbfd3389611b8e771
|
|
658
|
+
656, 0x278eb670b7d12d51
|
|
659
|
+
657, 0x31df54ca8d65c20f
|
|
660
|
+
658, 0x121c7fb38af6985e
|
|
661
|
+
659, 0x84fb94f38fe1d0a
|
|
662
|
+
660, 0x15ae8af1a6d48f02
|
|
663
|
+
661, 0x8d51e4a62cba1a28
|
|
664
|
+
662, 0x58e6b6b3ae0f9e42
|
|
665
|
+
663, 0x9365a0a85669cc99
|
|
666
|
+
664, 0xe56e92f65a2106df
|
|
667
|
+
665, 0x68fa299c66b428fc
|
|
668
|
+
666, 0x55e51bb0b0a832c6
|
|
669
|
+
667, 0x48b565293f9bc494
|
|
670
|
+
668, 0x73d8132b1cbabb57
|
|
671
|
+
669, 0x9178ac3926c36cbc
|
|
672
|
+
670, 0xe2f22c7b28ea5e0f
|
|
673
|
+
671, 0x6af45322a99afb12
|
|
674
|
+
672, 0x59072fcb486a46f4
|
|
675
|
+
673, 0x166b717b08d3d8e
|
|
676
|
+
674, 0xd4e627a2dfacc4ab
|
|
677
|
+
675, 0x33dad6f2921dedaa
|
|
678
|
+
676, 0x4b13b806834a6704
|
|
679
|
+
677, 0xe5f7971b398ed54d
|
|
680
|
+
678, 0x20bfae65e3e6899b
|
|
681
|
+
679, 0x881dab45d2b4fc98
|
|
682
|
+
680, 0x6f248126b5b885be
|
|
683
|
+
681, 0x7aeb39e986f9deee
|
|
684
|
+
682, 0xf819f9574b8c3a03
|
|
685
|
+
683, 0xff3d93ed6bd9781a
|
|
686
|
+
684, 0x3a31e2e24a2f6385
|
|
687
|
+
685, 0x7888a88f8944a5e
|
|
688
|
+
686, 0x4faee12f5de95537
|
|
689
|
+
687, 0x7f3e4efccdb2ed67
|
|
690
|
+
688, 0x91e0f2fc12593af5
|
|
691
|
+
689, 0xb5be8a4b886a40d3
|
|
692
|
+
690, 0x998e8288ac3a9b1b
|
|
693
|
+
691, 0x85c48fc8b1349e7b
|
|
694
|
+
692, 0xf03af25222d8fae5
|
|
695
|
+
693, 0x45467e805b242c2e
|
|
696
|
+
694, 0xa2350db793dbebdc
|
|
697
|
+
695, 0xfebe5b61d2174553
|
|
698
|
+
696, 0xa9a331f02c54ad0b
|
|
699
|
+
697, 0xe94e49a0f905aef3
|
|
700
|
+
698, 0xe54b4c812b55e3da
|
|
701
|
+
699, 0xdc454114c6bc0278
|
|
702
|
+
700, 0x99c7765ab476baa2
|
|
703
|
+
701, 0xccd9590e47fdff7c
|
|
704
|
+
702, 0xfa2bcae7afd6cb71
|
|
705
|
+
703, 0x2c1bf1a433a6f0f7
|
|
706
|
+
704, 0x53882c62ff0aab28
|
|
707
|
+
705, 0x80ac900f844dacc
|
|
708
|
+
706, 0x27ba8eb5c4a44d54
|
|
709
|
+
707, 0x78f3dfb072a46004
|
|
710
|
+
708, 0x34e00e6ec629edce
|
|
711
|
+
709, 0x5b88d19b552d1fbd
|
|
712
|
+
710, 0xe4df375dc79df432
|
|
713
|
+
711, 0x37446312ff79c3b4
|
|
714
|
+
712, 0xb72256900a95fa6d
|
|
715
|
+
713, 0x89f3171fbdff0bfc
|
|
716
|
+
714, 0xd37885b048687eba
|
|
717
|
+
715, 0xbb033213b283b60e
|
|
718
|
+
716, 0xcf10b523ee769030
|
|
719
|
+
717, 0xbf8070b6cfd7bafb
|
|
720
|
+
718, 0xb7194da81fd1763b
|
|
721
|
+
719, 0xbfc303de88e68d24
|
|
722
|
+
720, 0xb949c7a5aea8a072
|
|
723
|
+
721, 0x844216e7bae90455
|
|
724
|
+
722, 0xf1e7f20840049a33
|
|
725
|
+
723, 0x96e3263ad0cae794
|
|
726
|
+
724, 0x10772d51f6e9ba49
|
|
727
|
+
725, 0xcea24fccae9d23b3
|
|
728
|
+
726, 0xefd378add9dde040
|
|
729
|
+
727, 0xba0c7c5275805976
|
|
730
|
+
728, 0x2e2a04608f64fa8c
|
|
731
|
+
729, 0xafb42ec43aa0fa7
|
|
732
|
+
730, 0x30444b84241ac465
|
|
733
|
+
731, 0x19ef384bac4493ab
|
|
734
|
+
732, 0xfd1ac615d3ba5ab9
|
|
735
|
+
733, 0x6cc781ba38643aff
|
|
736
|
+
734, 0x30ff27ebed875cfd
|
|
737
|
+
735, 0xee1a261aca97ae62
|
|
738
|
+
736, 0xc5a92715202bc940
|
|
739
|
+
737, 0x9e6ec76f93c657ff
|
|
740
|
+
738, 0x9b9fd55f55191ca5
|
|
741
|
+
739, 0x654b13af008d8f03
|
|
742
|
+
740, 0x1b7f030d9bd0719f
|
|
743
|
+
741, 0x6d622e277550cb7f
|
|
744
|
+
742, 0x3f8ee6b8830d0538
|
|
745
|
+
743, 0x475462bcd0de190f
|
|
746
|
+
744, 0x21380e8a513bdbcd
|
|
747
|
+
745, 0x629bf3771b1bd7a4
|
|
748
|
+
746, 0x3b5fd0b62c353709
|
|
749
|
+
747, 0xf95634006ec3867e
|
|
750
|
+
748, 0x1be8bb584a6653c2
|
|
751
|
+
749, 0x2e2d3cfa85320ce8
|
|
752
|
+
750, 0x5b904b692252d11d
|
|
753
|
+
751, 0x4bfd76631d527990
|
|
754
|
+
752, 0xc019571ca2bec4a0
|
|
755
|
+
753, 0xf2eb730cea4cd751
|
|
756
|
+
754, 0xd4571d709530191a
|
|
757
|
+
755, 0x3b5bd947061f5a7d
|
|
758
|
+
756, 0x56e2322cd2d1d1c0
|
|
759
|
+
757, 0xa8830a5f62019f83
|
|
760
|
+
758, 0x901d130c1b873cf3
|
|
761
|
+
759, 0xb5dd29b363c61299
|
|
762
|
+
760, 0xbb710bec3a17b26d
|
|
763
|
+
761, 0xc0c464daca0f2328
|
|
764
|
+
762, 0x4dc8055df02650f5
|
|
765
|
+
763, 0x3d3cd9bbe8b957af
|
|
766
|
+
764, 0xdb79612c2635b828
|
|
767
|
+
765, 0xe25b3a8ad8fa3040
|
|
768
|
+
766, 0xd5875c563cbf236b
|
|
769
|
+
767, 0x46861c1c3849c9bc
|
|
770
|
+
768, 0xf84bf1a2814dff43
|
|
771
|
+
769, 0x6d8103902e0ad5e6
|
|
772
|
+
770, 0x99f51c9be8af79e5
|
|
773
|
+
771, 0xb0bfa8540ff94a96
|
|
774
|
+
772, 0xaf45109a4e06f7d0
|
|
775
|
+
773, 0x281df3e55aea9bfc
|
|
776
|
+
774, 0x6a1155ca8aa40e60
|
|
777
|
+
775, 0x754d32c5de1f5da
|
|
778
|
+
776, 0xce1eafb1c6ca916f
|
|
779
|
+
777, 0xc4f2185fa8577bd1
|
|
780
|
+
778, 0x4a188e9bdb5501d9
|
|
781
|
+
779, 0xbb14107e99bd5550
|
|
782
|
+
780, 0xf0381d8425ec2962
|
|
783
|
+
781, 0x213dbfffc16ec4f6
|
|
784
|
+
782, 0x7a999c5a28ea65bc
|
|
785
|
+
783, 0x23758c2aba7709ff
|
|
786
|
+
784, 0xea7e4bb205e93b44
|
|
787
|
+
785, 0x9c5a31e53911c658
|
|
788
|
+
786, 0x7f04d0bbdc689ddc
|
|
789
|
+
787, 0xe3ed89ab8d78dcb3
|
|
790
|
+
788, 0x73c38bfb43986210
|
|
791
|
+
789, 0x740c7d787eb8e158
|
|
792
|
+
790, 0x5284fafdfb3fb9ec
|
|
793
|
+
791, 0x2e91a58ac1fb1409
|
|
794
|
+
792, 0xb94a600bf0a09af3
|
|
795
|
+
793, 0x533ea4dbe07d81dd
|
|
796
|
+
794, 0x48c3f1a736b3c5fd
|
|
797
|
+
795, 0x56ae3499fa8720ce
|
|
798
|
+
796, 0x526f2def663ca818
|
|
799
|
+
797, 0x2f085759c65665c4
|
|
800
|
+
798, 0xf715f042c69e0db4
|
|
801
|
+
799, 0x110889c399231e60
|
|
802
|
+
800, 0x64584a244866f3a0
|
|
803
|
+
801, 0xf02ec101a39405d3
|
|
804
|
+
802, 0xe73cd5e9a7f17283
|
|
805
|
+
803, 0xfea64869e7028234
|
|
806
|
+
804, 0x97559974ad877891
|
|
807
|
+
805, 0xc8695aba1dc9f2e5
|
|
808
|
+
806, 0x7b62b76ffc2264ec
|
|
809
|
+
807, 0xf5e1df172ec5ccd
|
|
810
|
+
808, 0xafaeb68765e443bd
|
|
811
|
+
809, 0xd3870eb2e8337623
|
|
812
|
+
810, 0x4f944d684138fb39
|
|
813
|
+
811, 0x6977c575038916ad
|
|
814
|
+
812, 0x8ada1a225df95a56
|
|
815
|
+
813, 0xe4044c6c58d15e54
|
|
816
|
+
814, 0x4e5121366681cf2
|
|
817
|
+
815, 0xcf8640b079357b0d
|
|
818
|
+
816, 0xcd5b157d44106fa3
|
|
819
|
+
817, 0x9d7a5481279e25a1
|
|
820
|
+
818, 0xe10e9db41fb4b34f
|
|
821
|
+
819, 0x1052607be1eadff9
|
|
822
|
+
820, 0x3403d67232fe2265
|
|
823
|
+
821, 0xac9358f498c34afc
|
|
824
|
+
822, 0x820172da0dc39c9
|
|
825
|
+
823, 0xe186e91a3b826b6a
|
|
826
|
+
824, 0x1a838e2a40284445
|
|
827
|
+
825, 0x1870b617ebd7bce6
|
|
828
|
+
826, 0xcb7cba4424be1ed7
|
|
829
|
+
827, 0x6a2e56e40fdf9041
|
|
830
|
+
828, 0xace93bbe108f97ee
|
|
831
|
+
829, 0xfeb9bc74ac41ca08
|
|
832
|
+
830, 0x8cb2d05b0f6a1f51
|
|
833
|
+
831, 0x73792309f3fac0a9
|
|
834
|
+
832, 0x2507343d431308ca
|
|
835
|
+
833, 0xd0ea1197be615412
|
|
836
|
+
834, 0xb1870812f1d2fa94
|
|
837
|
+
835, 0x6d067b6935dcd23e
|
|
838
|
+
836, 0xaf161014e5492c31
|
|
839
|
+
837, 0xd4be0dce97064be4
|
|
840
|
+
838, 0xf8edfe3fc75c20f1
|
|
841
|
+
839, 0x894751dc442d2d9c
|
|
842
|
+
840, 0xb4a95f6a6663456c
|
|
843
|
+
841, 0x74e93162e2d805db
|
|
844
|
+
842, 0x784bc5f3a7a2f645
|
|
845
|
+
843, 0xd234d7c5b0582ea9
|
|
846
|
+
844, 0x491f28d0ab6cb97c
|
|
847
|
+
845, 0xa79419e5cf4336c3
|
|
848
|
+
846, 0x66b00141978c849
|
|
849
|
+
847, 0xa7ddbd64698d563f
|
|
850
|
+
848, 0xefc33a4a5d97d4b2
|
|
851
|
+
849, 0x95075514a65aebdc
|
|
852
|
+
850, 0x40eca5b3e28cd25e
|
|
853
|
+
851, 0x90ec7d00e9c9e35d
|
|
854
|
+
852, 0x63e84104d5af417a
|
|
855
|
+
853, 0xdaca0ea32df5744
|
|
856
|
+
854, 0x7ed54f2587795881
|
|
857
|
+
855, 0x5a73931760af4ee0
|
|
858
|
+
856, 0x857d1a185a3081ec
|
|
859
|
+
857, 0x6eac2aabe67fb463
|
|
860
|
+
858, 0xd1f86155d8bfc55f
|
|
861
|
+
859, 0x6d56398f3e7877ef
|
|
862
|
+
860, 0x7642f61dfc62bc17
|
|
863
|
+
861, 0x1d76b12843246ffa
|
|
864
|
+
862, 0xde7817809b8a31d0
|
|
865
|
+
863, 0xbcca9cd091198f9d
|
|
866
|
+
864, 0xf71ca566dddcdfd4
|
|
867
|
+
865, 0xea4386ee8b61d082
|
|
868
|
+
866, 0xe351729d6010bac4
|
|
869
|
+
867, 0xfd685d8a49910dd6
|
|
870
|
+
868, 0xa7a20ea6c686bd3
|
|
871
|
+
869, 0x1cdaf82f4dbd5536
|
|
872
|
+
870, 0xa3da1d1e77dda3e0
|
|
873
|
+
871, 0x4f723b3818ff8b2a
|
|
874
|
+
872, 0x1290669eca152469
|
|
875
|
+
873, 0xb54158b52d30651b
|
|
876
|
+
874, 0xc06b74f2c7f0fee
|
|
877
|
+
875, 0x7d5840bcbf702379
|
|
878
|
+
876, 0x19fa4c1254a82ed
|
|
879
|
+
877, 0xcf5ce090ad0b38ea
|
|
880
|
+
878, 0xd4edd6ac9437e16d
|
|
881
|
+
879, 0xc6ebf25eb623b426
|
|
882
|
+
880, 0xd2b6dbdf00d8fea2
|
|
883
|
+
881, 0x949cf98391cc59e1
|
|
884
|
+
882, 0x380a0c7d0356f7b3
|
|
885
|
+
883, 0x8ffefe32465473bf
|
|
886
|
+
884, 0x637b6542d27c861e
|
|
887
|
+
885, 0x347d12ffc664ecd9
|
|
888
|
+
886, 0xea66e3a0c75a6b37
|
|
889
|
+
887, 0xc3aff6f34fb537a1
|
|
890
|
+
888, 0x67bdf3579959bf49
|
|
891
|
+
889, 0xa17a348e3a74b723
|
|
892
|
+
890, 0x93c9ef26ddadd569
|
|
893
|
+
891, 0x483909059a5ac0b2
|
|
894
|
+
892, 0x26ec9074b56d5a0d
|
|
895
|
+
893, 0x6216000d9a48403a
|
|
896
|
+
894, 0x79b43909eab1ec05
|
|
897
|
+
895, 0xe4a8e8d03649e0de
|
|
898
|
+
896, 0x1435d666f3ccdc08
|
|
899
|
+
897, 0xb9e22ba902650a0e
|
|
900
|
+
898, 0x44dffcccc68b41f8
|
|
901
|
+
899, 0x23e60dcc7a559a17
|
|
902
|
+
900, 0x6fd1735eacd81266
|
|
903
|
+
901, 0xf6bda0745ea20c8e
|
|
904
|
+
902, 0x85efcaefe271e07c
|
|
905
|
+
903, 0x9be996ee931cef42
|
|
906
|
+
904, 0xe78b41c158611d64
|
|
907
|
+
905, 0xd6201df605839830
|
|
908
|
+
906, 0x702e8e47d2769fd3
|
|
909
|
+
907, 0xb8dcf70e18cf14c
|
|
910
|
+
908, 0xac2690bab1bf5c17
|
|
911
|
+
909, 0x92b166b71205d696
|
|
912
|
+
910, 0xb0e73c795fc6df28
|
|
913
|
+
911, 0x4bf2322c8b6b6f0d
|
|
914
|
+
912, 0xa842fbe67918cea0
|
|
915
|
+
913, 0xb01a8675d9294e54
|
|
916
|
+
914, 0xfbe3c94f03ca5af2
|
|
917
|
+
915, 0x51a5c089600c441f
|
|
918
|
+
916, 0x60f0fd7512d85ded
|
|
919
|
+
917, 0xef3113d3bc2cadb0
|
|
920
|
+
918, 0xe1ea128ade300d60
|
|
921
|
+
919, 0xde413b7f8d92d746
|
|
922
|
+
920, 0xfc32c6d43f47c5d8
|
|
923
|
+
921, 0x69d551d8c2b54c68
|
|
924
|
+
922, 0xb9bc68c175777943
|
|
925
|
+
923, 0xb9c79c687f0dae90
|
|
926
|
+
924, 0xd799421ef883c06e
|
|
927
|
+
925, 0xbff553ca95a29a3e
|
|
928
|
+
926, 0xfc9ffac46bd0aca1
|
|
929
|
+
927, 0x4f6c3a30c80c3e5a
|
|
930
|
+
928, 0x8b7245bc6dc4a0a
|
|
931
|
+
929, 0xaf4e191a4575ff60
|
|
932
|
+
930, 0x41218c4a76b90f0b
|
|
933
|
+
931, 0x986052aa51b8e89b
|
|
934
|
+
932, 0x284b464ed5622f9
|
|
935
|
+
933, 0xba6bded912626b40
|
|
936
|
+
934, 0x43cad3ed7443cb5c
|
|
937
|
+
935, 0x21641fa95725f328
|
|
938
|
+
936, 0x6d99d6d09d755822
|
|
939
|
+
937, 0x8246dfa2d4838492
|
|
940
|
+
938, 0xd2ee70b9056f4726
|
|
941
|
+
939, 0x87db515a786fbb8b
|
|
942
|
+
940, 0x7c63e4c1d7786e7d
|
|
943
|
+
941, 0xd1a9d548f10b3e88
|
|
944
|
+
942, 0xa00856475f3b74c9
|
|
945
|
+
943, 0x7f1964ce67148bf4
|
|
946
|
+
944, 0x446650ec71e6018c
|
|
947
|
+
945, 0xb1805ca07d1b6345
|
|
948
|
+
946, 0x869c0a1625b7271b
|
|
949
|
+
947, 0x79d6da06ce2ecfe2
|
|
950
|
+
948, 0xec7b3cafc5e3c85f
|
|
951
|
+
949, 0x1745ce21e39f2c3d
|
|
952
|
+
950, 0xd9a0a7af6ee97825
|
|
953
|
+
951, 0x680e0e52a6e11d5c
|
|
954
|
+
952, 0xd86b3f344ff7f4cd
|
|
955
|
+
953, 0xab56af117c840b9c
|
|
956
|
+
954, 0x5c5404c7e333a10e
|
|
957
|
+
955, 0x4f1eb462f35d990d
|
|
958
|
+
956, 0xf857605a5644458e
|
|
959
|
+
957, 0x3bb87cdf09262f86
|
|
960
|
+
958, 0xd57295baf6da64b
|
|
961
|
+
959, 0xb5993f48472f2894
|
|
962
|
+
960, 0x7d1a501608c060b2
|
|
963
|
+
961, 0x45fabe2d0e54adf0
|
|
964
|
+
962, 0xbb41c3806afb4efe
|
|
965
|
+
963, 0xbfbc506049424c8
|
|
966
|
+
964, 0xb7dd6b67f2203344
|
|
967
|
+
965, 0x389ce52eff883b81
|
|
968
|
+
966, 0xe259c55c0cf6d000
|
|
969
|
+
967, 0x70fb3e3824f7d213
|
|
970
|
+
968, 0x9f36d5599ed55f4b
|
|
971
|
+
969, 0xd14cf6f12f83c4f7
|
|
972
|
+
970, 0x570a09d56aaa0b66
|
|
973
|
+
971, 0x8accafd527f4598
|
|
974
|
+
972, 0xa42d64c62175adfd
|
|
975
|
+
973, 0xddb9c6a87b6e1558
|
|
976
|
+
974, 0xd80b6c69fa1cde2a
|
|
977
|
+
975, 0x44ebaac10082207b
|
|
978
|
+
976, 0xf99be8889552fa1a
|
|
979
|
+
977, 0x38253cd4b38b5dc5
|
|
980
|
+
978, 0x85356c8b02675791
|
|
981
|
+
979, 0xbf91677b2ecdcf55
|
|
982
|
+
980, 0x2316cb85e93f366e
|
|
983
|
+
981, 0x9abf35954db6b053
|
|
984
|
+
982, 0xf49f7425e086b45a
|
|
985
|
+
983, 0x8f5b625e074afde2
|
|
986
|
+
984, 0xe0d614559791b080
|
|
987
|
+
985, 0xbf7b866afab2a525
|
|
988
|
+
986, 0xde89d7e1641a6412
|
|
989
|
+
987, 0x1d10687d8ae5b86f
|
|
990
|
+
988, 0x1f034caa0e904cbd
|
|
991
|
+
989, 0x2086357aec8a7a2c
|
|
992
|
+
990, 0x22dc476b80c56e1e
|
|
993
|
+
991, 0xbef5a73cc0e3a493
|
|
994
|
+
992, 0xddfa3829b26ed797
|
|
995
|
+
993, 0x8917a87ec3d4dc78
|
|
996
|
+
994, 0xfeabe390628c365e
|
|
997
|
+
995, 0x581b0c4f6fb2d642
|
|
998
|
+
996, 0x1ef8c590adbf5b9a
|
|
999
|
+
997, 0x4d8e13aac0cce879
|
|
1000
|
+
998, 0xfe38f71e5977fad0
|
|
1001
|
+
999, 0x1f83a32d4adfd2ed
|