koffi 0.9.0 → 0.9.3
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.
- package/CMakeLists.txt +2 -36
- package/package.json +8 -4
- package/vendor/dragonbox/CMakeLists.txt +123 -0
- package/vendor/dragonbox/LICENSE-Apache2-LLVM +218 -0
- package/vendor/dragonbox/LICENSE-Boost +23 -0
- package/vendor/dragonbox/README.md +277 -0
- package/vendor/dragonbox/cmake/dragonboxConfig.cmake +1 -0
- package/vendor/dragonbox/include/dragonbox/dragonbox.h +2670 -0
- package/vendor/dragonbox/include/dragonbox/dragonbox_to_chars.h +108 -0
- package/vendor/dragonbox/other_files/Dragonbox.pdf +0 -0
- package/vendor/dragonbox/other_files/Dragonbox_old.pdf +0 -0
- package/vendor/dragonbox/other_files/milo_benchmark.png +0 -0
- package/vendor/dragonbox/other_files/unknown_win64_vc2019.html +540 -0
- package/vendor/dragonbox/other_files/unknown_win64_vc2019_randomdigit_time.png +0 -0
- package/vendor/dragonbox/source/dragonbox_to_chars.cpp +303 -0
- package/vendor/dragonbox/subproject/3rdparty/grisu_exact/CMakeLists.txt +24 -0
- package/vendor/dragonbox/subproject/3rdparty/grisu_exact/fp_to_chars.cpp +238 -0
- package/vendor/dragonbox/subproject/3rdparty/grisu_exact/fp_to_chars.h +95 -0
- package/vendor/dragonbox/subproject/3rdparty/grisu_exact/grisu_exact.h +2666 -0
- package/vendor/dragonbox/subproject/3rdparty/ryu/CMakeLists.txt +16 -0
- package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/common.h +114 -0
- package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/d2s.c +509 -0
- package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/d2s_full_table.h +367 -0
- package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/d2s_intrinsics.h +357 -0
- package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/digit_table.h +35 -0
- package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/f2s.c +345 -0
- package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/f2s_full_table.h +55 -0
- package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/f2s_intrinsics.h +128 -0
- package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/ryu.h +46 -0
- package/vendor/dragonbox/subproject/3rdparty/schubfach/CMakeLists.txt +22 -0
- package/vendor/dragonbox/subproject/3rdparty/schubfach/schubfach_32.cc +699 -0
- package/vendor/dragonbox/subproject/3rdparty/schubfach/schubfach_32.h +31 -0
- package/vendor/dragonbox/subproject/3rdparty/schubfach/schubfach_64.cc +1354 -0
- package/vendor/dragonbox/subproject/3rdparty/schubfach/schubfach_64.h +31 -0
- package/vendor/dragonbox/subproject/3rdparty/shaded_plots/example_shaded_plots.m +68 -0
- package/vendor/dragonbox/subproject/3rdparty/shaded_plots/license.txt +25 -0
- package/vendor/dragonbox/subproject/3rdparty/shaded_plots/plot_distribution.m +92 -0
- package/vendor/dragonbox/subproject/3rdparty/shaded_plots/plot_distribution_prctile.m +121 -0
- package/vendor/dragonbox/subproject/3rdparty/shaded_plots/plot_histogram_shaded.m +99 -0
- package/vendor/dragonbox/subproject/3rdparty/shaded_plots/plot_shaded.m +93 -0
- package/vendor/dragonbox/subproject/benchmark/CMakeLists.txt +65 -0
- package/vendor/dragonbox/subproject/benchmark/include/benchmark.h +40 -0
- package/vendor/dragonbox/subproject/benchmark/matlab/plot_benchmarks.m +22 -0
- package/vendor/dragonbox/subproject/benchmark/matlab/plot_digit_benchmark.m +78 -0
- package/vendor/dragonbox/subproject/benchmark/matlab/plot_uniform_benchmark.m +95 -0
- package/vendor/dragonbox/subproject/benchmark/results/digits_benchmark_binary32_clang.png +0 -0
- package/vendor/dragonbox/subproject/benchmark/results/digits_benchmark_binary32_msvc.png +0 -0
- package/vendor/dragonbox/subproject/benchmark/results/digits_benchmark_binary64_clang.png +0 -0
- package/vendor/dragonbox/subproject/benchmark/results/digits_benchmark_binary64_msvc.png +0 -0
- package/vendor/dragonbox/subproject/benchmark/results/uniform_benchmark_binary32_clang.png +0 -0
- package/vendor/dragonbox/subproject/benchmark/results/uniform_benchmark_binary32_msvc.png +0 -0
- package/vendor/dragonbox/subproject/benchmark/results/uniform_benchmark_binary64_clang.png +0 -0
- package/vendor/dragonbox/subproject/benchmark/results/uniform_benchmark_binary64_msvc.png +0 -0
- package/vendor/dragonbox/subproject/benchmark/source/benchmark.cpp +238 -0
- package/vendor/dragonbox/subproject/benchmark/source/dragonbox.cpp +30 -0
- package/vendor/dragonbox/subproject/benchmark/source/grisu_exact.cpp +36 -0
- package/vendor/dragonbox/subproject/benchmark/source/ryu.cpp +27 -0
- package/vendor/dragonbox/subproject/benchmark/source/schubfach.cpp +31 -0
- package/vendor/dragonbox/subproject/common/CMakeLists.txt +42 -0
- package/vendor/dragonbox/subproject/common/include/best_rational_approx.h +97 -0
- package/vendor/dragonbox/subproject/common/include/big_uint.h +218 -0
- package/vendor/dragonbox/subproject/common/include/continued_fractions.h +174 -0
- package/vendor/dragonbox/subproject/common/include/good_rational_approx.h +267 -0
- package/vendor/dragonbox/subproject/common/include/random_float.h +182 -0
- package/vendor/dragonbox/subproject/common/include/rational_continued_fractions.h +57 -0
- package/vendor/dragonbox/subproject/common/source/big_uint.cpp +602 -0
- package/vendor/dragonbox/subproject/meta/CMakeLists.txt +41 -0
- package/vendor/dragonbox/subproject/meta/results/binary32_generated_cache.txt +82 -0
- package/vendor/dragonbox/subproject/meta/results/binary64_compressed_cache_error_table.txt +10 -0
- package/vendor/dragonbox/subproject/meta/results/binary64_generated_cache.txt +623 -0
- package/vendor/dragonbox/subproject/meta/source/generate_cache.cpp +126 -0
- package/vendor/dragonbox/subproject/meta/source/live_test.cpp +81 -0
- package/vendor/dragonbox/subproject/meta/source/perf_test.cpp +104 -0
- package/vendor/dragonbox/subproject/meta/source/sandbox.cpp +20 -0
- package/vendor/dragonbox/subproject/test/CMakeLists.txt +70 -0
- package/vendor/dragonbox/subproject/test/results/binary32.csv +255 -0
- package/vendor/dragonbox/subproject/test/results/binary64.csv +2047 -0
- package/vendor/dragonbox/subproject/test/results/plot_required_bits.m +18 -0
- package/vendor/dragonbox/subproject/test/source/test_all_shorter_interval_cases.cpp +88 -0
- package/vendor/dragonbox/subproject/test/source/uniform_random_test.cpp +95 -0
- package/vendor/dragonbox/subproject/test/source/verify_cache_precision.cpp +338 -0
- package/vendor/dragonbox/subproject/test/source/verify_compressed_cache.cpp +154 -0
- package/vendor/dragonbox/subproject/test/source/verify_fast_multiplication.cpp +168 -0
- package/vendor/dragonbox/subproject/test/source/verify_log_computation.cpp +251 -0
- package/vendor/dragonbox/subproject/test/source/verify_magic_division.cpp +113 -0
- package/vendor/libcc/libcc.cc +7651 -0
- package/vendor/libcc/libcc.hh +4312 -0
- package/vendor/node-addon-api/CHANGELOG.md +859 -0
- package/vendor/node-addon-api/CODE_OF_CONDUCT.md +4 -0
- package/vendor/node-addon-api/CONTRIBUTING.md +93 -0
- package/vendor/node-addon-api/LICENSE.md +13 -0
- package/vendor/node-addon-api/README.md +293 -0
- package/vendor/node-addon-api/appveyor.yml +37 -0
- package/vendor/node-addon-api/benchmark/README.md +47 -0
- package/vendor/node-addon-api/benchmark/binding.gyp +25 -0
- package/vendor/node-addon-api/benchmark/function_args.cc +217 -0
- package/vendor/node-addon-api/benchmark/function_args.js +60 -0
- package/vendor/node-addon-api/benchmark/index.js +34 -0
- package/vendor/node-addon-api/benchmark/property_descriptor.cc +91 -0
- package/vendor/node-addon-api/benchmark/property_descriptor.js +37 -0
- package/vendor/node-addon-api/common.gypi +21 -0
- package/vendor/node-addon-api/doc/addon.md +163 -0
- package/vendor/node-addon-api/doc/array.md +81 -0
- package/vendor/node-addon-api/doc/array_buffer.md +155 -0
- package/vendor/node-addon-api/doc/async_context.md +86 -0
- package/vendor/node-addon-api/doc/async_operations.md +31 -0
- package/vendor/node-addon-api/doc/async_worker.md +427 -0
- package/vendor/node-addon-api/doc/async_worker_variants.md +557 -0
- package/vendor/node-addon-api/doc/bigint.md +97 -0
- package/vendor/node-addon-api/doc/boolean.md +68 -0
- package/vendor/node-addon-api/doc/buffer.md +150 -0
- package/vendor/node-addon-api/doc/callback_scope.md +54 -0
- package/vendor/node-addon-api/doc/callbackinfo.md +97 -0
- package/vendor/node-addon-api/doc/checker-tool.md +32 -0
- package/vendor/node-addon-api/doc/class_property_descriptor.md +115 -0
- package/vendor/node-addon-api/doc/cmake-js.md +68 -0
- package/vendor/node-addon-api/doc/conversion-tool.md +28 -0
- package/vendor/node-addon-api/doc/creating_a_release.md +62 -0
- package/vendor/node-addon-api/doc/dataview.md +248 -0
- package/vendor/node-addon-api/doc/date.md +68 -0
- package/vendor/node-addon-api/doc/env.md +196 -0
- package/vendor/node-addon-api/doc/error.md +120 -0
- package/vendor/node-addon-api/doc/error_handling.md +254 -0
- package/vendor/node-addon-api/doc/escapable_handle_scope.md +80 -0
- package/vendor/node-addon-api/doc/external.md +63 -0
- package/vendor/node-addon-api/doc/function.md +402 -0
- package/vendor/node-addon-api/doc/function_reference.md +238 -0
- package/vendor/node-addon-api/doc/generator.md +13 -0
- package/vendor/node-addon-api/doc/handle_scope.md +63 -0
- package/vendor/node-addon-api/doc/hierarchy.md +91 -0
- package/vendor/node-addon-api/doc/instance_wrap.md +408 -0
- package/vendor/node-addon-api/doc/maybe.md +76 -0
- package/vendor/node-addon-api/doc/memory_management.md +27 -0
- package/vendor/node-addon-api/doc/name.md +29 -0
- package/vendor/node-addon-api/doc/node-gyp.md +82 -0
- package/vendor/node-addon-api/doc/number.md +163 -0
- package/vendor/node-addon-api/doc/object.md +432 -0
- package/vendor/node-addon-api/doc/object_lifetime_management.md +83 -0
- package/vendor/node-addon-api/doc/object_reference.md +117 -0
- package/vendor/node-addon-api/doc/object_wrap.md +561 -0
- package/vendor/node-addon-api/doc/prebuild_tools.md +16 -0
- package/vendor/node-addon-api/doc/promises.md +79 -0
- package/vendor/node-addon-api/doc/property_descriptor.md +286 -0
- package/vendor/node-addon-api/doc/propertylvalue.md +50 -0
- package/vendor/node-addon-api/doc/range_error.md +59 -0
- package/vendor/node-addon-api/doc/reference.md +113 -0
- package/vendor/node-addon-api/doc/setup.md +110 -0
- package/vendor/node-addon-api/doc/string.md +93 -0
- package/vendor/node-addon-api/doc/symbol.md +61 -0
- package/vendor/node-addon-api/doc/threadsafe.md +121 -0
- package/vendor/node-addon-api/doc/threadsafe_function.md +290 -0
- package/vendor/node-addon-api/doc/type_error.md +59 -0
- package/vendor/node-addon-api/doc/typed_array.md +78 -0
- package/vendor/node-addon-api/doc/typed_array_of.md +137 -0
- package/vendor/node-addon-api/doc/typed_threadsafe_function.md +306 -0
- package/vendor/node-addon-api/doc/value.md +340 -0
- package/vendor/node-addon-api/doc/version_management.md +43 -0
- package/vendor/node-addon-api/except.gypi +25 -0
- package/vendor/node-addon-api/index.js +11 -0
- package/vendor/node-addon-api/napi-inl.deprecated.h +192 -0
- package/vendor/node-addon-api/napi-inl.h +6209 -0
- package/vendor/node-addon-api/napi.h +2983 -0
- package/vendor/node-addon-api/node_api.gyp +9 -0
- package/vendor/node-addon-api/noexcept.gypi +26 -0
- package/vendor/node-addon-api/nothing.c +0 -0
- package/vendor/node-addon-api/package-support.json +21 -0
- package/vendor/node-addon-api/package.json +399 -0
- package/vendor/node-addon-api/test/README.md +91 -0
- package/vendor/node-addon-api/test/addon.cc +36 -0
- package/vendor/node-addon-api/test/addon.js +11 -0
- package/vendor/node-addon-api/test/addon_build/index.js +49 -0
- package/vendor/node-addon-api/test/addon_build/tpl/addon.cc +17 -0
- package/vendor/node-addon-api/test/addon_build/tpl/binding.gyp +62 -0
- package/vendor/node-addon-api/test/addon_build/tpl/index.js +9 -0
- package/vendor/node-addon-api/test/addon_build/tpl/package.json +11 -0
- package/vendor/node-addon-api/test/addon_data.cc +99 -0
- package/vendor/node-addon-api/test/addon_data.js +46 -0
- package/vendor/node-addon-api/test/array_buffer.cc +243 -0
- package/vendor/node-addon-api/test/array_buffer.js +69 -0
- package/vendor/node-addon-api/test/async_context.cc +21 -0
- package/vendor/node-addon-api/test/async_context.js +86 -0
- package/vendor/node-addon-api/test/async_progress_queue_worker.cc +83 -0
- package/vendor/node-addon-api/test/async_progress_queue_worker.js +46 -0
- package/vendor/node-addon-api/test/async_progress_worker.cc +134 -0
- package/vendor/node-addon-api/test/async_progress_worker.js +61 -0
- package/vendor/node-addon-api/test/async_worker.cc +106 -0
- package/vendor/node-addon-api/test/async_worker.js +179 -0
- package/vendor/node-addon-api/test/async_worker_nocallback.js +13 -0
- package/vendor/node-addon-api/test/async_worker_persistent.cc +63 -0
- package/vendor/node-addon-api/test/async_worker_persistent.js +24 -0
- package/vendor/node-addon-api/test/basic_types/array.cc +40 -0
- package/vendor/node-addon-api/test/basic_types/array.js +35 -0
- package/vendor/node-addon-api/test/basic_types/boolean.cc +38 -0
- package/vendor/node-addon-api/test/basic_types/boolean.js +35 -0
- package/vendor/node-addon-api/test/basic_types/number.cc +99 -0
- package/vendor/node-addon-api/test/basic_types/number.js +114 -0
- package/vendor/node-addon-api/test/basic_types/value.cc +120 -0
- package/vendor/node-addon-api/test/basic_types/value.js +133 -0
- package/vendor/node-addon-api/test/bigint.cc +91 -0
- package/vendor/node-addon-api/test/bigint.js +53 -0
- package/vendor/node-addon-api/test/binding-swallowexcept.cc +12 -0
- package/vendor/node-addon-api/test/binding.cc +171 -0
- package/vendor/node-addon-api/test/binding.gyp +117 -0
- package/vendor/node-addon-api/test/buffer.cc +183 -0
- package/vendor/node-addon-api/test/buffer.js +69 -0
- package/vendor/node-addon-api/test/callbackscope.cc +22 -0
- package/vendor/node-addon-api/test/callbackscope.js +49 -0
- package/vendor/node-addon-api/test/common/index.js +113 -0
- package/vendor/node-addon-api/test/common/test_helper.h +61 -0
- package/vendor/node-addon-api/test/dataview/dataview.cc +48 -0
- package/vendor/node-addon-api/test/dataview/dataview.js +35 -0
- package/vendor/node-addon-api/test/dataview/dataview_read_write.cc +115 -0
- package/vendor/node-addon-api/test/dataview/dataview_read_write.js +90 -0
- package/vendor/node-addon-api/test/date.cc +44 -0
- package/vendor/node-addon-api/test/date.js +18 -0
- package/vendor/node-addon-api/test/env_cleanup.cc +88 -0
- package/vendor/node-addon-api/test/env_cleanup.js +56 -0
- package/vendor/node-addon-api/test/error.cc +287 -0
- package/vendor/node-addon-api/test/error.js +81 -0
- package/vendor/node-addon-api/test/error_handling_for_primitives.cc +13 -0
- package/vendor/node-addon-api/test/error_handling_for_primitives.js +29 -0
- package/vendor/node-addon-api/test/error_terminating_environment.js +94 -0
- package/vendor/node-addon-api/test/external.cc +81 -0
- package/vendor/node-addon-api/test/external.js +88 -0
- package/vendor/node-addon-api/test/function.cc +295 -0
- package/vendor/node-addon-api/test/function.js +121 -0
- package/vendor/node-addon-api/test/function_reference.cc +202 -0
- package/vendor/node-addon-api/test/function_reference.js +157 -0
- package/vendor/node-addon-api/test/globalObject/global_object.cc +61 -0
- package/vendor/node-addon-api/test/globalObject/global_object_delete_property.cc +31 -0
- package/vendor/node-addon-api/test/globalObject/global_object_delete_property.js +61 -0
- package/vendor/node-addon-api/test/globalObject/global_object_get_property.cc +40 -0
- package/vendor/node-addon-api/test/globalObject/global_object_get_property.js +57 -0
- package/vendor/node-addon-api/test/globalObject/global_object_has_own_property.cc +28 -0
- package/vendor/node-addon-api/test/globalObject/global_object_has_own_property.js +48 -0
- package/vendor/node-addon-api/test/globalObject/global_object_set_property.cc +31 -0
- package/vendor/node-addon-api/test/globalObject/global_object_set_property.js +58 -0
- package/vendor/node-addon-api/test/handlescope.cc +60 -0
- package/vendor/node-addon-api/test/handlescope.js +14 -0
- package/vendor/node-addon-api/test/index.js +136 -0
- package/vendor/node-addon-api/test/maybe/check.cc +23 -0
- package/vendor/node-addon-api/test/maybe/index.js +38 -0
- package/vendor/node-addon-api/test/memory_management.cc +17 -0
- package/vendor/node-addon-api/test/memory_management.js +9 -0
- package/vendor/node-addon-api/test/movable_callbacks.cc +23 -0
- package/vendor/node-addon-api/test/movable_callbacks.js +21 -0
- package/vendor/node-addon-api/test/name.cc +108 -0
- package/vendor/node-addon-api/test/name.js +59 -0
- package/vendor/node-addon-api/test/napi_child.js +14 -0
- package/vendor/node-addon-api/test/object/delete_property.cc +38 -0
- package/vendor/node-addon-api/test/object/delete_property.js +41 -0
- package/vendor/node-addon-api/test/object/finalizer.cc +29 -0
- package/vendor/node-addon-api/test/object/finalizer.js +28 -0
- package/vendor/node-addon-api/test/object/get_property.cc +34 -0
- package/vendor/node-addon-api/test/object/get_property.js +40 -0
- package/vendor/node-addon-api/test/object/has_own_property.cc +34 -0
- package/vendor/node-addon-api/test/object/has_own_property.js +34 -0
- package/vendor/node-addon-api/test/object/has_property.cc +38 -0
- package/vendor/node-addon-api/test/object/has_property.js +37 -0
- package/vendor/node-addon-api/test/object/object.cc +348 -0
- package/vendor/node-addon-api/test/object/object.js +217 -0
- package/vendor/node-addon-api/test/object/object_deprecated.cc +66 -0
- package/vendor/node-addon-api/test/object/object_deprecated.js +47 -0
- package/vendor/node-addon-api/test/object/object_freeze_seal.cc +25 -0
- package/vendor/node-addon-api/test/object/object_freeze_seal.js +61 -0
- package/vendor/node-addon-api/test/object/set_property.cc +37 -0
- package/vendor/node-addon-api/test/object/set_property.js +29 -0
- package/vendor/node-addon-api/test/object/subscript_operator.cc +42 -0
- package/vendor/node-addon-api/test/object/subscript_operator.js +17 -0
- package/vendor/node-addon-api/test/object_reference.cc +219 -0
- package/vendor/node-addon-api/test/object_reference.js +259 -0
- package/vendor/node-addon-api/test/objectwrap.cc +268 -0
- package/vendor/node-addon-api/test/objectwrap.js +284 -0
- package/vendor/node-addon-api/test/objectwrap_constructor_exception.cc +26 -0
- package/vendor/node-addon-api/test/objectwrap_constructor_exception.js +18 -0
- package/vendor/node-addon-api/test/objectwrap_multiple_inheritance.cc +30 -0
- package/vendor/node-addon-api/test/objectwrap_multiple_inheritance.js +13 -0
- package/vendor/node-addon-api/test/objectwrap_removewrap.cc +45 -0
- package/vendor/node-addon-api/test/objectwrap_removewrap.js +40 -0
- package/vendor/node-addon-api/test/objectwrap_worker_thread.js +19 -0
- package/vendor/node-addon-api/test/promise.cc +29 -0
- package/vendor/node-addon-api/test/promise.js +18 -0
- package/vendor/node-addon-api/test/reference.cc +24 -0
- package/vendor/node-addon-api/test/reference.js +14 -0
- package/vendor/node-addon-api/test/run_script.cc +56 -0
- package/vendor/node-addon-api/test/run_script.js +45 -0
- package/vendor/node-addon-api/test/symbol.cc +79 -0
- package/vendor/node-addon-api/test/symbol.js +73 -0
- package/vendor/node-addon-api/test/testUtil.js +54 -0
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function.cc +195 -0
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function.js +188 -0
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_ctx.cc +63 -0
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_ctx.js +12 -0
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_existing_tsfn.cc +115 -0
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_existing_tsfn.js +14 -0
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_ptr.cc +26 -0
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_ptr.js +7 -0
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_sum.cc +225 -0
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_sum.js +59 -0
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_unref.cc +42 -0
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_unref.js +53 -0
- package/vendor/node-addon-api/test/thunking_manual.cc +140 -0
- package/vendor/node-addon-api/test/thunking_manual.js +17 -0
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function.cc +215 -0
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function.js +188 -0
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_ctx.cc +68 -0
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_ctx.js +12 -0
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_existing_tsfn.cc +127 -0
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_existing_tsfn.js +14 -0
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_ptr.cc +28 -0
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_ptr.js +7 -0
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_sum.cc +237 -0
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_sum.js +59 -0
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_unref.cc +53 -0
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_unref.js +53 -0
- package/vendor/node-addon-api/test/typedarray-bigint.js +58 -0
- package/vendor/node-addon-api/test/typedarray.cc +216 -0
- package/vendor/node-addon-api/test/typedarray.js +69 -0
- package/vendor/node-addon-api/test/version_management.cc +27 -0
- package/vendor/node-addon-api/test/version_management.js +31 -0
- package/vendor/node-addon-api/tools/README.md +73 -0
- package/vendor/node-addon-api/tools/check-napi.js +100 -0
- package/vendor/node-addon-api/tools/clang-format.js +68 -0
- package/vendor/node-addon-api/tools/conversion.js +309 -0
- package/vendor/node-addon-api/tools/eslint-format.js +71 -0
- package/build/ALL_BUILD.vcxproj +0 -190
- package/build/ALL_BUILD.vcxproj.filters +0 -8
- package/build/CMakeCache.txt +0 -429
- package/build/CMakeFiles/3.23.0-rc1/CMakeASMCompiler.cmake +0 -20
- package/build/CMakeFiles/3.23.0-rc1/CMakeASM_MASMCompiler.cmake +0 -20
- package/build/CMakeFiles/3.23.0-rc1/CMakeCCompiler.cmake +0 -72
- package/build/CMakeFiles/3.23.0-rc1/CMakeCXXCompiler.cmake +0 -83
- package/build/CMakeFiles/3.23.0-rc1/CMakeDetermineCompilerABI_C.bin +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CMakeDetermineCompilerABI_CXX.bin +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CMakeRCCompiler.cmake +0 -6
- package/build/CMakeFiles/3.23.0-rc1/CMakeSystem.cmake +0 -15
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/CMakeCCompilerId.c +0 -828
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/CompilerIdC.exe +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/CompilerIdC.vcxproj +0 -71
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CMakeCCompilerId.obj +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.exe.recipe +0 -11
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.tlog/CL.command.1.tlog +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.tlog/CL.read.1.tlog +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.tlog/CL.write.1.tlog +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.tlog/CompilerIdC.lastbuildstate +0 -2
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.tlog/link.command.1.tlog +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.tlog/link.read.1.tlog +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.tlog/link.write.1.tlog +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/CMakeCXXCompilerId.cpp +0 -816
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/CompilerIdCXX.exe +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/CompilerIdCXX.vcxproj +0 -71
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CMakeCXXCompilerId.obj +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.exe.recipe +0 -11
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.command.1.tlog +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.read.1.tlog +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.write.1.tlog +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CompilerIdCXX.lastbuildstate +0 -2
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.command.1.tlog +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.read.1.tlog +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.write.1.tlog +0 -0
- package/build/CMakeFiles/3.23.0-rc1/VCTargetsPath.txt +0 -1
- package/build/CMakeFiles/3.23.0-rc1/VCTargetsPath.vcxproj +0 -31
- package/build/CMakeFiles/3.23.0-rc1/x64/Debug/VCTargetsPath.recipe +0 -11
- package/build/CMakeFiles/3.23.0-rc1/x64/Debug/VCTargetsPath.tlog/VCTargetsPath.lastbuildstate +0 -2
- package/build/CMakeFiles/41bcd16856091d4a38fd1f71fbe2f202/generate.stamp.rule +0 -1
- package/build/CMakeFiles/CMakeError.log +0 -108
- package/build/CMakeFiles/CMakeOutput.log +0 -413
- package/build/CMakeFiles/TargetDirectories.txt +0 -4
- package/build/CMakeFiles/cmake.check_cache +0 -1
- package/build/CMakeFiles/generate.stamp +0 -1
- package/build/CMakeFiles/generate.stamp.depend +0 -28
- package/build/CMakeFiles/generate.stamp.list +0 -1
- package/build/Raylib.dir/Release/Raylib.dll.recipe +0 -14
- package/build/Raylib.dir/Release/Raylib.tlog/CL.command.1.tlog +0 -0
- package/build/Raylib.dir/Release/Raylib.tlog/CL.read.1.tlog +0 -0
- package/build/Raylib.dir/Release/Raylib.tlog/CL.write.1.tlog +0 -0
- package/build/Raylib.dir/Release/Raylib.tlog/CustomBuild.command.1.tlog +0 -10
- package/build/Raylib.dir/Release/Raylib.tlog/CustomBuild.read.1.tlog +0 -27
- package/build/Raylib.dir/Release/Raylib.tlog/CustomBuild.write.1.tlog +0 -2
- package/build/Raylib.dir/Release/Raylib.tlog/Raylib.lastbuildstate +0 -2
- package/build/Raylib.dir/Release/Raylib.tlog/Raylib.write.1u.tlog +0 -0
- package/build/Raylib.dir/Release/Raylib.tlog/link.command.1.tlog +0 -0
- package/build/Raylib.dir/Release/Raylib.tlog/link.read.1.tlog +0 -0
- package/build/Raylib.dir/Release/Raylib.tlog/link.write.1.tlog +0 -0
- package/build/Raylib.dir/Release/raudio.obj +0 -0
- package/build/Raylib.dir/Release/rcore.obj +0 -0
- package/build/Raylib.dir/Release/rglfw.obj +0 -0
- package/build/Raylib.dir/Release/rmodels.obj +0 -0
- package/build/Raylib.dir/Release/rshapes.obj +0 -0
- package/build/Raylib.dir/Release/rtext.obj +0 -0
- package/build/Raylib.dir/Release/rtextures.obj +0 -0
- package/build/Raylib.dir/Release/utils.obj +0 -0
- package/build/Raylib.vcxproj +0 -358
- package/build/Raylib.vcxproj.filters +0 -37
- package/build/Release/Raylib.dll +0 -0
- package/build/Release/Raylib.exp +0 -0
- package/build/Release/Raylib.lib +0 -0
- package/build/Release/koffi.exp +0 -0
- package/build/Release/koffi.lib +0 -0
- package/build/Release/koffi.node +0 -0
- package/build/ZERO_CHECK.vcxproj +0 -176
- package/build/ZERO_CHECK.vcxproj.filters +0 -13
- package/build/cmake_install.cmake +0 -44
- package/build/koffi.dir/Release/call_arm64.obj +0 -0
- package/build/koffi.dir/Release/call_x64_sysv.obj +0 -0
- package/build/koffi.dir/Release/call_x64_win.obj +0 -0
- package/build/koffi.dir/Release/call_x64_win_fwd.obj +0 -0
- package/build/koffi.dir/Release/call_x86.obj +0 -0
- package/build/koffi.dir/Release/ffi.obj +0 -0
- package/build/koffi.dir/Release/koffi.node.recipe +0 -14
- package/build/koffi.dir/Release/koffi.tlog/CL.command.1.tlog +0 -0
- package/build/koffi.dir/Release/koffi.tlog/CL.read.1.tlog +0 -0
- package/build/koffi.dir/Release/koffi.tlog/CL.write.1.tlog +0 -0
- package/build/koffi.dir/Release/koffi.tlog/CustomBuild.command.1.tlog +0 -10
- package/build/koffi.dir/Release/koffi.tlog/CustomBuild.read.1.tlog +0 -27
- package/build/koffi.dir/Release/koffi.tlog/CustomBuild.write.1.tlog +0 -2
- package/build/koffi.dir/Release/koffi.tlog/Masm.read.1u.tlog +0 -0
- package/build/koffi.dir/Release/koffi.tlog/Masm.write.1u.tlog +0 -0
- package/build/koffi.dir/Release/koffi.tlog/koffi.lastbuildstate +0 -2
- package/build/koffi.dir/Release/koffi.tlog/koffi.write.1u.tlog +0 -0
- package/build/koffi.dir/Release/koffi.tlog/link.command.1.tlog +0 -0
- package/build/koffi.dir/Release/koffi.tlog/link.read.1.tlog +0 -0
- package/build/koffi.dir/Release/koffi.tlog/link.write.1.tlog +0 -0
- package/build/koffi.dir/Release/libcc.obj +0 -0
- package/build/koffi.dir/Release/util.obj +0 -0
- package/build/koffi.dir/Release/win_delay_load_hook.obj +0 -0
- package/build/koffi.sln +0 -67
- package/build/koffi.vcxproj +0 -363
- package/build/koffi.vcxproj.filters +0 -40
- package/build/x64/Release/ALL_BUILD/ALL_BUILD.recipe +0 -20
- package/build/x64/Release/ALL_BUILD/ALL_BUILD.tlog/ALL_BUILD.lastbuildstate +0 -2
- package/build/x64/Release/ALL_BUILD/ALL_BUILD.tlog/CustomBuild.command.1.tlog +0 -10
- package/build/x64/Release/ALL_BUILD/ALL_BUILD.tlog/CustomBuild.read.1.tlog +0 -27
- package/build/x64/Release/ALL_BUILD/ALL_BUILD.tlog/CustomBuild.write.1.tlog +0 -2
- package/build/x64/Release/ZERO_CHECK/ZERO_CHECK.recipe +0 -11
- package/build/x64/Release/ZERO_CHECK/ZERO_CHECK.tlog/CustomBuild.command.1.tlog +0 -10
- package/build/x64/Release/ZERO_CHECK/ZERO_CHECK.tlog/CustomBuild.read.1.tlog +0 -28
- package/build/x64/Release/ZERO_CHECK/ZERO_CHECK.tlog/CustomBuild.write.1.tlog +0 -2
- package/build/x64/Release/ZERO_CHECK/ZERO_CHECK.tlog/ZERO_CHECK.lastbuildstate +0 -2
|
@@ -0,0 +1,2047 @@
|
|
|
1
|
+
e,bits_for_multiplication,bits_for_integer_check
|
|
2
|
+
-1074,115,118
|
|
3
|
+
-1073,115,118
|
|
4
|
+
-1072,115,119
|
|
5
|
+
-1071,115,118
|
|
6
|
+
-1070,115,119
|
|
7
|
+
-1069,115,119
|
|
8
|
+
-1068,115,119
|
|
9
|
+
-1067,115,118
|
|
10
|
+
-1066,112,119
|
|
11
|
+
-1065,112,119
|
|
12
|
+
-1064,115,119
|
|
13
|
+
-1063,108,120
|
|
14
|
+
-1062,110,119
|
|
15
|
+
-1061,115,118
|
|
16
|
+
-1060,115,118
|
|
17
|
+
-1059,113,117
|
|
18
|
+
-1058,113,116
|
|
19
|
+
-1057,113,115
|
|
20
|
+
-1056,113,118
|
|
21
|
+
-1055,113,117
|
|
22
|
+
-1054,113,118
|
|
23
|
+
-1053,114,118
|
|
24
|
+
-1052,114,121
|
|
25
|
+
-1051,115,120
|
|
26
|
+
-1050,116,119
|
|
27
|
+
-1049,114,119
|
|
28
|
+
-1048,114,121
|
|
29
|
+
-1047,116,121
|
|
30
|
+
-1046,112,117
|
|
31
|
+
-1045,112,118
|
|
32
|
+
-1044,118,118
|
|
33
|
+
-1043,110,118
|
|
34
|
+
-1042,115,118
|
|
35
|
+
-1041,115,118
|
|
36
|
+
-1040,117,121
|
|
37
|
+
-1039,111,118
|
|
38
|
+
-1038,115,118
|
|
39
|
+
-1037,115,117
|
|
40
|
+
-1036,115,117
|
|
41
|
+
-1035,115,117
|
|
42
|
+
-1034,115,117
|
|
43
|
+
-1033,113,119
|
|
44
|
+
-1032,113,119
|
|
45
|
+
-1031,117,119
|
|
46
|
+
-1030,117,119
|
|
47
|
+
-1029,117,118
|
|
48
|
+
-1028,117,119
|
|
49
|
+
-1027,117,119
|
|
50
|
+
-1026,112,121
|
|
51
|
+
-1025,112,120
|
|
52
|
+
-1024,117,119
|
|
53
|
+
-1023,113,121
|
|
54
|
+
-1022,113,120
|
|
55
|
+
-1021,115,119
|
|
56
|
+
-1020,118,118
|
|
57
|
+
-1019,115,117
|
|
58
|
+
-1018,115,118
|
|
59
|
+
-1017,117,120
|
|
60
|
+
-1016,113,117
|
|
61
|
+
-1015,113,118
|
|
62
|
+
-1014,113,120
|
|
63
|
+
-1013,113,120
|
|
64
|
+
-1012,113,120
|
|
65
|
+
-1011,114,119
|
|
66
|
+
-1010,118,118
|
|
67
|
+
-1009,112,117
|
|
68
|
+
-1008,112,116
|
|
69
|
+
-1007,112,119
|
|
70
|
+
-1006,113,120
|
|
71
|
+
-1005,115,119
|
|
72
|
+
-1004,115,118
|
|
73
|
+
-1003,114,120
|
|
74
|
+
-1002,116,119
|
|
75
|
+
-1001,116,121
|
|
76
|
+
-1000,117,120
|
|
77
|
+
-999,117,118
|
|
78
|
+
-998,117,119
|
|
79
|
+
-997,117,119
|
|
80
|
+
-996,116,118
|
|
81
|
+
-995,116,118
|
|
82
|
+
-994,116,119
|
|
83
|
+
-993,112,120
|
|
84
|
+
-992,114,119
|
|
85
|
+
-991,114,119
|
|
86
|
+
-990,116,119
|
|
87
|
+
-989,115,118
|
|
88
|
+
-988,115,118
|
|
89
|
+
-987,117,118
|
|
90
|
+
-986,118,118
|
|
91
|
+
-985,118,117
|
|
92
|
+
-984,118,116
|
|
93
|
+
-983,118,118
|
|
94
|
+
-982,118,118
|
|
95
|
+
-981,118,118
|
|
96
|
+
-980,118,118
|
|
97
|
+
-979,115,118
|
|
98
|
+
-978,115,121
|
|
99
|
+
-977,117,121
|
|
100
|
+
-976,114,120
|
|
101
|
+
-975,114,119
|
|
102
|
+
-974,114,118
|
|
103
|
+
-973,112,120
|
|
104
|
+
-972,112,119
|
|
105
|
+
-971,119,118
|
|
106
|
+
-970,120,118
|
|
107
|
+
-969,120,117
|
|
108
|
+
-968,120,117
|
|
109
|
+
-967,120,117
|
|
110
|
+
-966,113,119
|
|
111
|
+
-965,113,119
|
|
112
|
+
-964,117,119
|
|
113
|
+
-963,114,122
|
|
114
|
+
-962,114,121
|
|
115
|
+
-961,117,120
|
|
116
|
+
-960,114,118
|
|
117
|
+
-959,114,117
|
|
118
|
+
-958,114,116
|
|
119
|
+
-957,114,116
|
|
120
|
+
-956,115,116
|
|
121
|
+
-955,115,116
|
|
122
|
+
-954,115,116
|
|
123
|
+
-953,113,118
|
|
124
|
+
-952,113,119
|
|
125
|
+
-951,113,119
|
|
126
|
+
-950,113,119
|
|
127
|
+
-949,114,119
|
|
128
|
+
-948,117,118
|
|
129
|
+
-947,117,122
|
|
130
|
+
-946,113,121
|
|
131
|
+
-945,115,120
|
|
132
|
+
-944,115,119
|
|
133
|
+
-943,113,119
|
|
134
|
+
-942,115,121
|
|
135
|
+
-941,116,121
|
|
136
|
+
-940,113,119
|
|
137
|
+
-939,117,118
|
|
138
|
+
-938,117,118
|
|
139
|
+
-937,117,118
|
|
140
|
+
-936,111,121
|
|
141
|
+
-935,115,120
|
|
142
|
+
-934,116,119
|
|
143
|
+
-933,114,120
|
|
144
|
+
-932,116,119
|
|
145
|
+
-931,116,118
|
|
146
|
+
-930,113,118
|
|
147
|
+
-929,115,119
|
|
148
|
+
-928,115,119
|
|
149
|
+
-927,119,118
|
|
150
|
+
-926,120,118
|
|
151
|
+
-925,120,117
|
|
152
|
+
-924,120,116
|
|
153
|
+
-923,119,118
|
|
154
|
+
-922,119,117
|
|
155
|
+
-921,119,117
|
|
156
|
+
-920,111,117
|
|
157
|
+
-919,116,119
|
|
158
|
+
-918,116,119
|
|
159
|
+
-917,116,118
|
|
160
|
+
-916,111,119
|
|
161
|
+
-915,111,119
|
|
162
|
+
-914,116,119
|
|
163
|
+
-913,113,118
|
|
164
|
+
-912,116,121
|
|
165
|
+
-911,116,120
|
|
166
|
+
-910,113,117
|
|
167
|
+
-909,114,119
|
|
168
|
+
-908,114,118
|
|
169
|
+
-907,114,120
|
|
170
|
+
-906,113,120
|
|
171
|
+
-905,113,119
|
|
172
|
+
-904,113,119
|
|
173
|
+
-903,114,119
|
|
174
|
+
-902,114,119
|
|
175
|
+
-901,114,119
|
|
176
|
+
-900,114,119
|
|
177
|
+
-899,114,119
|
|
178
|
+
-898,114,121
|
|
179
|
+
-897,117,120
|
|
180
|
+
-896,116,118
|
|
181
|
+
-895,116,118
|
|
182
|
+
-894,116,122
|
|
183
|
+
-893,111,118
|
|
184
|
+
-892,111,118
|
|
185
|
+
-891,111,118
|
|
186
|
+
-890,114,119
|
|
187
|
+
-889,114,118
|
|
188
|
+
-888,115,121
|
|
189
|
+
-887,115,120
|
|
190
|
+
-886,110,119
|
|
191
|
+
-885,110,119
|
|
192
|
+
-884,116,119
|
|
193
|
+
-883,115,119
|
|
194
|
+
-882,115,119
|
|
195
|
+
-881,115,120
|
|
196
|
+
-880,114,119
|
|
197
|
+
-879,114,120
|
|
198
|
+
-878,117,119
|
|
199
|
+
-877,117,119
|
|
200
|
+
-876,112,120
|
|
201
|
+
-875,112,119
|
|
202
|
+
-874,118,118
|
|
203
|
+
-873,118,118
|
|
204
|
+
-872,118,117
|
|
205
|
+
-871,118,117
|
|
206
|
+
-870,114,119
|
|
207
|
+
-869,114,119
|
|
208
|
+
-868,115,120
|
|
209
|
+
-867,111,122
|
|
210
|
+
-866,114,122
|
|
211
|
+
-865,114,121
|
|
212
|
+
-864,115,120
|
|
213
|
+
-863,113,123
|
|
214
|
+
-862,113,122
|
|
215
|
+
-861,113,121
|
|
216
|
+
-860,111,123
|
|
217
|
+
-859,111,122
|
|
218
|
+
-858,111,121
|
|
219
|
+
-857,105,110
|
|
220
|
+
-856,116,119
|
|
221
|
+
-855,116,119
|
|
222
|
+
-854,116,119
|
|
223
|
+
-853,112,121
|
|
224
|
+
-852,112,121
|
|
225
|
+
-851,112,121
|
|
226
|
+
-850,113,121
|
|
227
|
+
-849,113,121
|
|
228
|
+
-848,113,121
|
|
229
|
+
-847,112,121
|
|
230
|
+
-846,114,120
|
|
231
|
+
-845,116,119
|
|
232
|
+
-844,117,118
|
|
233
|
+
-843,112,118
|
|
234
|
+
-842,112,122
|
|
235
|
+
-841,116,121
|
|
236
|
+
-840,114,118
|
|
237
|
+
-839,118,118
|
|
238
|
+
-838,118,119
|
|
239
|
+
-837,113,121
|
|
240
|
+
-836,113,121
|
|
241
|
+
-835,113,120
|
|
242
|
+
-834,113,119
|
|
243
|
+
-833,113,122
|
|
244
|
+
-832,114,121
|
|
245
|
+
-831,116,120
|
|
246
|
+
-830,113,119
|
|
247
|
+
-829,115,119
|
|
248
|
+
-828,115,119
|
|
249
|
+
-827,115,118
|
|
250
|
+
-826,115,118
|
|
251
|
+
-825,115,117
|
|
252
|
+
-824,115,119
|
|
253
|
+
-823,115,119
|
|
254
|
+
-822,118,118
|
|
255
|
+
-821,118,118
|
|
256
|
+
-820,113,119
|
|
257
|
+
-819,117,119
|
|
258
|
+
-818,117,118
|
|
259
|
+
-817,113,120
|
|
260
|
+
-816,114,119
|
|
261
|
+
-815,114,120
|
|
262
|
+
-814,117,119
|
|
263
|
+
-813,118,118
|
|
264
|
+
-812,118,118
|
|
265
|
+
-811,118,118
|
|
266
|
+
-810,118,118
|
|
267
|
+
-809,118,118
|
|
268
|
+
-808,118,118
|
|
269
|
+
-807,115,119
|
|
270
|
+
-806,115,119
|
|
271
|
+
-805,116,118
|
|
272
|
+
-804,116,117
|
|
273
|
+
-803,114,117
|
|
274
|
+
-802,114,116
|
|
275
|
+
-801,114,116
|
|
276
|
+
-800,112,116
|
|
277
|
+
-799,112,116
|
|
278
|
+
-798,112,116
|
|
279
|
+
-797,109,118
|
|
280
|
+
-796,109,118
|
|
281
|
+
-795,109,118
|
|
282
|
+
-794,119,118
|
|
283
|
+
-793,120,118
|
|
284
|
+
-792,120,117
|
|
285
|
+
-791,120,117
|
|
286
|
+
-790,112,120
|
|
287
|
+
-789,116,119
|
|
288
|
+
-788,116,120
|
|
289
|
+
-787,111,116
|
|
290
|
+
-786,118,118
|
|
291
|
+
-785,118,117
|
|
292
|
+
-784,118,118
|
|
293
|
+
-783,117,117
|
|
294
|
+
-782,117,117
|
|
295
|
+
-781,117,117
|
|
296
|
+
-780,115,119
|
|
297
|
+
-779,115,120
|
|
298
|
+
-778,116,120
|
|
299
|
+
-777,111,119
|
|
300
|
+
-776,114,120
|
|
301
|
+
-775,114,119
|
|
302
|
+
-774,114,119
|
|
303
|
+
-773,120,118
|
|
304
|
+
-772,120,117
|
|
305
|
+
-771,120,116
|
|
306
|
+
-770,121,118
|
|
307
|
+
-769,121,117
|
|
308
|
+
-768,121,117
|
|
309
|
+
-767,113,117
|
|
310
|
+
-766,113,120
|
|
311
|
+
-765,116,120
|
|
312
|
+
-764,113,117
|
|
313
|
+
-763,113,118
|
|
314
|
+
-762,117,118
|
|
315
|
+
-761,117,119
|
|
316
|
+
-760,117,118
|
|
317
|
+
-759,117,118
|
|
318
|
+
-758,117,118
|
|
319
|
+
-757,116,119
|
|
320
|
+
-756,116,119
|
|
321
|
+
-755,116,119
|
|
322
|
+
-754,114,119
|
|
323
|
+
-753,114,119
|
|
324
|
+
-752,114,119
|
|
325
|
+
-751,114,119
|
|
326
|
+
-750,115,119
|
|
327
|
+
-749,115,119
|
|
328
|
+
-748,115,119
|
|
329
|
+
-747,115,119
|
|
330
|
+
-746,115,119
|
|
331
|
+
-745,115,119
|
|
332
|
+
-744,111,119
|
|
333
|
+
-743,114,119
|
|
334
|
+
-742,114,119
|
|
335
|
+
-741,120,118
|
|
336
|
+
-740,119,118
|
|
337
|
+
-739,119,118
|
|
338
|
+
-738,119,118
|
|
339
|
+
-737,114,119
|
|
340
|
+
-736,116,118
|
|
341
|
+
-735,116,119
|
|
342
|
+
-734,113,119
|
|
343
|
+
-733,113,118
|
|
344
|
+
-732,113,118
|
|
345
|
+
-731,113,121
|
|
346
|
+
-730,113,120
|
|
347
|
+
-729,115,119
|
|
348
|
+
-728,115,118
|
|
349
|
+
-727,111,117
|
|
350
|
+
-726,111,118
|
|
351
|
+
-725,111,120
|
|
352
|
+
-724,108,123
|
|
353
|
+
-723,108,122
|
|
354
|
+
-722,115,121
|
|
355
|
+
-721,115,120
|
|
356
|
+
-720,114,122
|
|
357
|
+
-719,114,121
|
|
358
|
+
-718,114,120
|
|
359
|
+
-717,114,120
|
|
360
|
+
-716,116,119
|
|
361
|
+
-715,116,124
|
|
362
|
+
-714,114,119
|
|
363
|
+
-713,116,119
|
|
364
|
+
-712,116,118
|
|
365
|
+
-711,116,119
|
|
366
|
+
-710,114,118
|
|
367
|
+
-709,117,118
|
|
368
|
+
-708,117,118
|
|
369
|
+
-707,113,118
|
|
370
|
+
-706,113,117
|
|
371
|
+
-705,118,118
|
|
372
|
+
-704,111,116
|
|
373
|
+
-703,111,116
|
|
374
|
+
-702,115,118
|
|
375
|
+
-701,115,118
|
|
376
|
+
-700,113,116
|
|
377
|
+
-699,113,119
|
|
378
|
+
-698,116,118
|
|
379
|
+
-697,113,116
|
|
380
|
+
-696,113,117
|
|
381
|
+
-695,118,118
|
|
382
|
+
-694,115,118
|
|
383
|
+
-693,115,118
|
|
384
|
+
-692,115,117
|
|
385
|
+
-691,115,118
|
|
386
|
+
-690,116,118
|
|
387
|
+
-689,116,121
|
|
388
|
+
-688,116,121
|
|
389
|
+
-687,114,119
|
|
390
|
+
-686,114,118
|
|
391
|
+
-685,117,118
|
|
392
|
+
-684,107,121
|
|
393
|
+
-683,107,121
|
|
394
|
+
-682,107,121
|
|
395
|
+
-681,115,120
|
|
396
|
+
-680,114,120
|
|
397
|
+
-679,116,119
|
|
398
|
+
-678,116,120
|
|
399
|
+
-677,112,116
|
|
400
|
+
-676,112,117
|
|
401
|
+
-675,117,120
|
|
402
|
+
-674,113,119
|
|
403
|
+
-673,113,119
|
|
404
|
+
-672,117,118
|
|
405
|
+
-671,115,118
|
|
406
|
+
-670,115,117
|
|
407
|
+
-669,115,118
|
|
408
|
+
-668,118,118
|
|
409
|
+
-667,115,117
|
|
410
|
+
-666,115,117
|
|
411
|
+
-665,119,119
|
|
412
|
+
-664,114,119
|
|
413
|
+
-663,114,119
|
|
414
|
+
-662,114,119
|
|
415
|
+
-661,112,119
|
|
416
|
+
-660,114,120
|
|
417
|
+
-659,114,120
|
|
418
|
+
-658,114,120
|
|
419
|
+
-657,113,119
|
|
420
|
+
-656,113,119
|
|
421
|
+
-655,113,119
|
|
422
|
+
-654,113,119
|
|
423
|
+
-653,115,119
|
|
424
|
+
-652,115,119
|
|
425
|
+
-651,110,119
|
|
426
|
+
-650,110,119
|
|
427
|
+
-649,114,119
|
|
428
|
+
-648,117,118
|
|
429
|
+
-647,117,118
|
|
430
|
+
-646,117,117
|
|
431
|
+
-645,117,117
|
|
432
|
+
-644,111,115
|
|
433
|
+
-643,115,120
|
|
434
|
+
-642,115,120
|
|
435
|
+
-641,113,118
|
|
436
|
+
-640,113,117
|
|
437
|
+
-639,113,120
|
|
438
|
+
-638,118,119
|
|
439
|
+
-637,114,120
|
|
440
|
+
-636,114,120
|
|
441
|
+
-635,114,120
|
|
442
|
+
-634,112,120
|
|
443
|
+
-633,112,120
|
|
444
|
+
-632,116,119
|
|
445
|
+
-631,110,117
|
|
446
|
+
-630,110,117
|
|
447
|
+
-629,110,116
|
|
448
|
+
-628,110,115
|
|
449
|
+
-627,111,117
|
|
450
|
+
-626,114,120
|
|
451
|
+
-625,119,119
|
|
452
|
+
-624,116,117
|
|
453
|
+
-623,116,118
|
|
454
|
+
-622,116,118
|
|
455
|
+
-621,108,115
|
|
456
|
+
-620,117,119
|
|
457
|
+
-619,117,118
|
|
458
|
+
-618,117,118
|
|
459
|
+
-617,116,117
|
|
460
|
+
-616,116,118
|
|
461
|
+
-615,116,118
|
|
462
|
+
-614,115,119
|
|
463
|
+
-613,115,118
|
|
464
|
+
-612,119,119
|
|
465
|
+
-611,117,118
|
|
466
|
+
-610,117,118
|
|
467
|
+
-609,117,118
|
|
468
|
+
-608,117,119
|
|
469
|
+
-607,114,121
|
|
470
|
+
-606,115,120
|
|
471
|
+
-605,115,119
|
|
472
|
+
-604,114,118
|
|
473
|
+
-603,114,126
|
|
474
|
+
-602,114,126
|
|
475
|
+
-601,115,119
|
|
476
|
+
-600,115,119
|
|
477
|
+
-599,115,119
|
|
478
|
+
-598,117,119
|
|
479
|
+
-597,117,119
|
|
480
|
+
-596,117,118
|
|
481
|
+
-595,117,117
|
|
482
|
+
-594,117,116
|
|
483
|
+
-593,117,115
|
|
484
|
+
-592,117,115
|
|
485
|
+
-591,114,118
|
|
486
|
+
-590,114,118
|
|
487
|
+
-589,114,118
|
|
488
|
+
-588,114,118
|
|
489
|
+
-587,112,121
|
|
490
|
+
-586,112,120
|
|
491
|
+
-585,112,119
|
|
492
|
+
-584,113,119
|
|
493
|
+
-583,113,118
|
|
494
|
+
-582,113,117
|
|
495
|
+
-581,110,119
|
|
496
|
+
-580,110,121
|
|
497
|
+
-579,110,121
|
|
498
|
+
-578,108,118
|
|
499
|
+
-577,108,117
|
|
500
|
+
-576,115,118
|
|
501
|
+
-575,115,117
|
|
502
|
+
-574,114,120
|
|
503
|
+
-573,117,119
|
|
504
|
+
-572,117,120
|
|
505
|
+
-571,113,122
|
|
506
|
+
-570,113,121
|
|
507
|
+
-569,113,120
|
|
508
|
+
-568,110,120
|
|
509
|
+
-567,110,120
|
|
510
|
+
-566,110,119
|
|
511
|
+
-565,120,118
|
|
512
|
+
-564,115,118
|
|
513
|
+
-563,115,119
|
|
514
|
+
-562,119,118
|
|
515
|
+
-561,115,118
|
|
516
|
+
-560,115,120
|
|
517
|
+
-559,115,120
|
|
518
|
+
-558,115,118
|
|
519
|
+
-557,115,119
|
|
520
|
+
-556,115,119
|
|
521
|
+
-555,115,118
|
|
522
|
+
-554,113,120
|
|
523
|
+
-553,115,119
|
|
524
|
+
-552,116,118
|
|
525
|
+
-551,116,119
|
|
526
|
+
-550,116,119
|
|
527
|
+
-549,119,118
|
|
528
|
+
-548,115,118
|
|
529
|
+
-547,115,119
|
|
530
|
+
-546,115,119
|
|
531
|
+
-545,115,120
|
|
532
|
+
-544,114,119
|
|
533
|
+
-543,114,120
|
|
534
|
+
-542,114,120
|
|
535
|
+
-541,115,119
|
|
536
|
+
-540,115,120
|
|
537
|
+
-539,115,119
|
|
538
|
+
-538,112,118
|
|
539
|
+
-537,112,117
|
|
540
|
+
-536,112,117
|
|
541
|
+
-535,112,118
|
|
542
|
+
-534,114,118
|
|
543
|
+
-533,114,117
|
|
544
|
+
-532,116,119
|
|
545
|
+
-531,117,119
|
|
546
|
+
-530,117,118
|
|
547
|
+
-529,117,119
|
|
548
|
+
-528,112,119
|
|
549
|
+
-527,114,119
|
|
550
|
+
-526,114,118
|
|
551
|
+
-525,118,119
|
|
552
|
+
-524,113,119
|
|
553
|
+
-523,117,118
|
|
554
|
+
-522,117,119
|
|
555
|
+
-521,114,120
|
|
556
|
+
-520,114,119
|
|
557
|
+
-519,114,118
|
|
558
|
+
-518,110,119
|
|
559
|
+
-517,114,119
|
|
560
|
+
-516,114,118
|
|
561
|
+
-515,114,117
|
|
562
|
+
-514,112,119
|
|
563
|
+
-513,112,120
|
|
564
|
+
-512,112,120
|
|
565
|
+
-511,113,119
|
|
566
|
+
-510,113,120
|
|
567
|
+
-509,116,120
|
|
568
|
+
-508,110,119
|
|
569
|
+
-507,110,120
|
|
570
|
+
-506,115,120
|
|
571
|
+
-505,116,119
|
|
572
|
+
-504,108,119
|
|
573
|
+
-503,115,119
|
|
574
|
+
-502,115,119
|
|
575
|
+
-501,113,118
|
|
576
|
+
-500,113,119
|
|
577
|
+
-499,113,119
|
|
578
|
+
-498,113,118
|
|
579
|
+
-497,113,119
|
|
580
|
+
-496,115,119
|
|
581
|
+
-495,119,118
|
|
582
|
+
-494,115,118
|
|
583
|
+
-493,115,118
|
|
584
|
+
-492,115,120
|
|
585
|
+
-491,113,118
|
|
586
|
+
-490,113,118
|
|
587
|
+
-489,113,117
|
|
588
|
+
-488,114,118
|
|
589
|
+
-487,115,118
|
|
590
|
+
-486,115,121
|
|
591
|
+
-485,111,118
|
|
592
|
+
-484,111,118
|
|
593
|
+
-483,111,118
|
|
594
|
+
-482,116,121
|
|
595
|
+
-481,114,118
|
|
596
|
+
-480,114,118
|
|
597
|
+
-479,114,121
|
|
598
|
+
-478,114,118
|
|
599
|
+
-477,114,118
|
|
600
|
+
-476,114,117
|
|
601
|
+
-475,114,118
|
|
602
|
+
-474,114,118
|
|
603
|
+
-473,114,118
|
|
604
|
+
-472,116,120
|
|
605
|
+
-471,115,118
|
|
606
|
+
-470,115,118
|
|
607
|
+
-469,115,117
|
|
608
|
+
-468,115,119
|
|
609
|
+
-467,115,121
|
|
610
|
+
-466,116,120
|
|
611
|
+
-465,112,119
|
|
612
|
+
-464,118,118
|
|
613
|
+
-463,118,118
|
|
614
|
+
-462,118,119
|
|
615
|
+
-461,119,118
|
|
616
|
+
-460,119,118
|
|
617
|
+
-459,119,119
|
|
618
|
+
-458,114,119
|
|
619
|
+
-457,114,121
|
|
620
|
+
-456,116,120
|
|
621
|
+
-455,116,118
|
|
622
|
+
-454,116,117
|
|
623
|
+
-453,116,117
|
|
624
|
+
-452,116,119
|
|
625
|
+
-451,113,121
|
|
626
|
+
-450,113,121
|
|
627
|
+
-449,113,121
|
|
628
|
+
-448,113,118
|
|
629
|
+
-447,115,121
|
|
630
|
+
-446,115,121
|
|
631
|
+
-445,110,116
|
|
632
|
+
-444,114,121
|
|
633
|
+
-443,114,120
|
|
634
|
+
-442,115,119
|
|
635
|
+
-441,113,120
|
|
636
|
+
-440,113,119
|
|
637
|
+
-439,113,119
|
|
638
|
+
-438,111,120
|
|
639
|
+
-437,113,119
|
|
640
|
+
-436,116,120
|
|
641
|
+
-435,110,118
|
|
642
|
+
-434,110,118
|
|
643
|
+
-433,110,117
|
|
644
|
+
-432,110,116
|
|
645
|
+
-431,114,118
|
|
646
|
+
-430,114,122
|
|
647
|
+
-429,115,122
|
|
648
|
+
-428,115,118
|
|
649
|
+
-427,115,118
|
|
650
|
+
-426,115,117
|
|
651
|
+
-425,115,119
|
|
652
|
+
-424,115,121
|
|
653
|
+
-423,115,121
|
|
654
|
+
-422,115,120
|
|
655
|
+
-421,116,118
|
|
656
|
+
-420,116,117
|
|
657
|
+
-419,116,116
|
|
658
|
+
-418,117,118
|
|
659
|
+
-417,117,118
|
|
660
|
+
-416,117,120
|
|
661
|
+
-415,112,117
|
|
662
|
+
-414,112,118
|
|
663
|
+
-413,116,118
|
|
664
|
+
-412,116,118
|
|
665
|
+
-411,110,118
|
|
666
|
+
-410,110,121
|
|
667
|
+
-409,115,121
|
|
668
|
+
-408,116,119
|
|
669
|
+
-407,116,119
|
|
670
|
+
-406,117,119
|
|
671
|
+
-405,110,119
|
|
672
|
+
-404,116,119
|
|
673
|
+
-403,116,119
|
|
674
|
+
-402,117,119
|
|
675
|
+
-401,115,119
|
|
676
|
+
-400,115,118
|
|
677
|
+
-399,115,118
|
|
678
|
+
-398,113,121
|
|
679
|
+
-397,113,121
|
|
680
|
+
-396,113,121
|
|
681
|
+
-395,112,118
|
|
682
|
+
-394,116,118
|
|
683
|
+
-393,116,118
|
|
684
|
+
-392,116,117
|
|
685
|
+
-391,116,119
|
|
686
|
+
-390,116,118
|
|
687
|
+
-389,118,119
|
|
688
|
+
-388,118,119
|
|
689
|
+
-387,118,118
|
|
690
|
+
-386,118,117
|
|
691
|
+
-385,112,119
|
|
692
|
+
-384,117,118
|
|
693
|
+
-383,117,118
|
|
694
|
+
-382,114,119
|
|
695
|
+
-381,114,118
|
|
696
|
+
-380,114,119
|
|
697
|
+
-379,116,119
|
|
698
|
+
-378,112,117
|
|
699
|
+
-377,112,118
|
|
700
|
+
-376,112,119
|
|
701
|
+
-375,116,117
|
|
702
|
+
-374,116,118
|
|
703
|
+
-373,116,119
|
|
704
|
+
-372,114,121
|
|
705
|
+
-371,114,121
|
|
706
|
+
-370,114,121
|
|
707
|
+
-369,115,120
|
|
708
|
+
-368,115,120
|
|
709
|
+
-367,117,119
|
|
710
|
+
-366,117,121
|
|
711
|
+
-365,115,118
|
|
712
|
+
-364,115,118
|
|
713
|
+
-363,115,120
|
|
714
|
+
-362,115,118
|
|
715
|
+
-361,115,118
|
|
716
|
+
-360,115,117
|
|
717
|
+
-359,115,118
|
|
718
|
+
-358,115,119
|
|
719
|
+
-357,115,119
|
|
720
|
+
-356,115,119
|
|
721
|
+
-355,105,121
|
|
722
|
+
-354,105,121
|
|
723
|
+
-353,105,121
|
|
724
|
+
-352,111,121
|
|
725
|
+
-351,112,120
|
|
726
|
+
-350,114,119
|
|
727
|
+
-349,117,120
|
|
728
|
+
-348,114,120
|
|
729
|
+
-347,114,119
|
|
730
|
+
-346,118,118
|
|
731
|
+
-345,112,120
|
|
732
|
+
-344,112,120
|
|
733
|
+
-343,116,119
|
|
734
|
+
-342,109,119
|
|
735
|
+
-341,109,118
|
|
736
|
+
-340,109,118
|
|
737
|
+
-339,118,118
|
|
738
|
+
-338,114,118
|
|
739
|
+
-337,114,118
|
|
740
|
+
-336,114,118
|
|
741
|
+
-335,115,119
|
|
742
|
+
-334,115,123
|
|
743
|
+
-333,115,123
|
|
744
|
+
-332,109,119
|
|
745
|
+
-331,109,119
|
|
746
|
+
-330,109,119
|
|
747
|
+
-329,117,119
|
|
748
|
+
-328,116,119
|
|
749
|
+
-327,116,119
|
|
750
|
+
-326,118,119
|
|
751
|
+
-325,115,119
|
|
752
|
+
-324,115,119
|
|
753
|
+
-323,115,121
|
|
754
|
+
-322,114,119
|
|
755
|
+
-321,114,119
|
|
756
|
+
-320,115,121
|
|
757
|
+
-319,115,120
|
|
758
|
+
-318,112,117
|
|
759
|
+
-317,115,118
|
|
760
|
+
-316,115,117
|
|
761
|
+
-315,115,118
|
|
762
|
+
-314,115,118
|
|
763
|
+
-313,116,120
|
|
764
|
+
-312,113,119
|
|
765
|
+
-311,113,119
|
|
766
|
+
-310,114,119
|
|
767
|
+
-309,117,119
|
|
768
|
+
-308,114,119
|
|
769
|
+
-307,116,119
|
|
770
|
+
-306,117,119
|
|
771
|
+
-305,114,119
|
|
772
|
+
-304,115,119
|
|
773
|
+
-303,115,119
|
|
774
|
+
-302,113,119
|
|
775
|
+
-301,113,118
|
|
776
|
+
-300,117,118
|
|
777
|
+
-299,117,118
|
|
778
|
+
-298,117,117
|
|
779
|
+
-297,117,117
|
|
780
|
+
-296,117,118
|
|
781
|
+
-295,115,117
|
|
782
|
+
-294,115,117
|
|
783
|
+
-293,115,118
|
|
784
|
+
-292,111,116
|
|
785
|
+
-291,115,120
|
|
786
|
+
-290,115,119
|
|
787
|
+
-289,113,122
|
|
788
|
+
-288,113,121
|
|
789
|
+
-287,113,120
|
|
790
|
+
-286,114,119
|
|
791
|
+
-285,115,118
|
|
792
|
+
-284,115,120
|
|
793
|
+
-283,117,119
|
|
794
|
+
-282,116,118
|
|
795
|
+
-281,116,121
|
|
796
|
+
-280,117,120
|
|
797
|
+
-279,107,121
|
|
798
|
+
-278,107,121
|
|
799
|
+
-277,107,121
|
|
800
|
+
-276,107,121
|
|
801
|
+
-275,112,121
|
|
802
|
+
-274,113,120
|
|
803
|
+
-273,115,119
|
|
804
|
+
-272,116,119
|
|
805
|
+
-271,116,118
|
|
806
|
+
-270,116,119
|
|
807
|
+
-269,113,122
|
|
808
|
+
-268,115,121
|
|
809
|
+
-267,116,120
|
|
810
|
+
-266,118,119
|
|
811
|
+
-265,115,121
|
|
812
|
+
-264,116,120
|
|
813
|
+
-263,116,119
|
|
814
|
+
-262,113,119
|
|
815
|
+
-261,119,118
|
|
816
|
+
-260,119,117
|
|
817
|
+
-259,110,119
|
|
818
|
+
-258,110,118
|
|
819
|
+
-257,110,118
|
|
820
|
+
-256,116,119
|
|
821
|
+
-255,113,122
|
|
822
|
+
-254,115,121
|
|
823
|
+
-253,115,120
|
|
824
|
+
-252,113,122
|
|
825
|
+
-251,115,121
|
|
826
|
+
-250,116,120
|
|
827
|
+
-249,114,118
|
|
828
|
+
-248,114,120
|
|
829
|
+
-247,115,120
|
|
830
|
+
-246,115,120
|
|
831
|
+
-245,111,122
|
|
832
|
+
-244,113,121
|
|
833
|
+
-243,115,120
|
|
834
|
+
-242,112,120
|
|
835
|
+
-241,114,119
|
|
836
|
+
-240,124,118
|
|
837
|
+
-239,114,118
|
|
838
|
+
-238,114,118
|
|
839
|
+
-237,123,118
|
|
840
|
+
-236,123,117
|
|
841
|
+
-235,111,120
|
|
842
|
+
-234,114,119
|
|
843
|
+
-233,124,118
|
|
844
|
+
-232,114,117
|
|
845
|
+
-231,114,116
|
|
846
|
+
-230,114,115
|
|
847
|
+
-229,112,114
|
|
848
|
+
-228,112,114
|
|
849
|
+
-227,112,115
|
|
850
|
+
-226,112,115
|
|
851
|
+
-225,114,117
|
|
852
|
+
-224,118,119
|
|
853
|
+
-223,118,118
|
|
854
|
+
-222,109,117
|
|
855
|
+
-221,112,120
|
|
856
|
+
-220,116,119
|
|
857
|
+
-219,113,121
|
|
858
|
+
-218,113,120
|
|
859
|
+
-217,115,119
|
|
860
|
+
-216,118,118
|
|
861
|
+
-215,114,117
|
|
862
|
+
-214,114,118
|
|
863
|
+
-213,114,121
|
|
864
|
+
-212,114,120
|
|
865
|
+
-211,114,120
|
|
866
|
+
-210,114,119
|
|
867
|
+
-209,111,118
|
|
868
|
+
-208,111,118
|
|
869
|
+
-207,111,123
|
|
870
|
+
-206,116,122
|
|
871
|
+
-205,116,119
|
|
872
|
+
-204,116,118
|
|
873
|
+
-203,116,118
|
|
874
|
+
-202,112,118
|
|
875
|
+
-201,112,117
|
|
876
|
+
-200,112,116
|
|
877
|
+
-199,109,119
|
|
878
|
+
-198,109,118
|
|
879
|
+
-197,109,117
|
|
880
|
+
-196,109,116
|
|
881
|
+
-195,113,118
|
|
882
|
+
-194,113,117
|
|
883
|
+
-193,113,119
|
|
884
|
+
-192,113,119
|
|
885
|
+
-191,113,119
|
|
886
|
+
-190,113,119
|
|
887
|
+
-189,110,119
|
|
888
|
+
-188,110,119
|
|
889
|
+
-187,110,118
|
|
890
|
+
-186,113,120
|
|
891
|
+
-185,113,119
|
|
892
|
+
-184,113,120
|
|
893
|
+
-183,119,119
|
|
894
|
+
-182,113,121
|
|
895
|
+
-181,113,120
|
|
896
|
+
-180,116,119
|
|
897
|
+
-179,113,120
|
|
898
|
+
-178,116,119
|
|
899
|
+
-177,117,118
|
|
900
|
+
-176,111,118
|
|
901
|
+
-175,115,118
|
|
902
|
+
-174,116,118
|
|
903
|
+
-173,116,118
|
|
904
|
+
-172,109,120
|
|
905
|
+
-171,115,119
|
|
906
|
+
-170,115,120
|
|
907
|
+
-169,113,120
|
|
908
|
+
-168,115,119
|
|
909
|
+
-167,116,120
|
|
910
|
+
-166,112,117
|
|
911
|
+
-165,112,117
|
|
912
|
+
-164,112,116
|
|
913
|
+
-163,112,115
|
|
914
|
+
-162,111,117
|
|
915
|
+
-161,111,116
|
|
916
|
+
-160,111,115
|
|
917
|
+
-159,112,117
|
|
918
|
+
-158,116,119
|
|
919
|
+
-157,116,119
|
|
920
|
+
-156,113,119
|
|
921
|
+
-155,114,119
|
|
922
|
+
-154,114,118
|
|
923
|
+
-153,114,118
|
|
924
|
+
-152,112,116
|
|
925
|
+
-151,112,115
|
|
926
|
+
-150,112,114
|
|
927
|
+
-149,110,116
|
|
928
|
+
-148,110,117
|
|
929
|
+
-147,110,117
|
|
930
|
+
-146,107,119
|
|
931
|
+
-145,107,119
|
|
932
|
+
-144,107,119
|
|
933
|
+
-143,107,119
|
|
934
|
+
-142,105,119
|
|
935
|
+
-141,105,118
|
|
936
|
+
-140,105,118
|
|
937
|
+
-139,103,119
|
|
938
|
+
-138,103,119
|
|
939
|
+
-137,103,118
|
|
940
|
+
-136,100,119
|
|
941
|
+
-135,100,120
|
|
942
|
+
-134,100,119
|
|
943
|
+
-133,100,118
|
|
944
|
+
-132,98,117
|
|
945
|
+
-131,98,121
|
|
946
|
+
-130,98,120
|
|
947
|
+
-129,96,118
|
|
948
|
+
-128,96,117
|
|
949
|
+
-127,96,116
|
|
950
|
+
-126,93,118
|
|
951
|
+
-125,93,118
|
|
952
|
+
-124,93,120
|
|
953
|
+
-123,93,119
|
|
954
|
+
-122,91,121
|
|
955
|
+
-121,91,120
|
|
956
|
+
-120,91,119
|
|
957
|
+
-119,89,121
|
|
958
|
+
-118,89,121
|
|
959
|
+
-117,89,121
|
|
960
|
+
-116,86,121
|
|
961
|
+
-115,86,120
|
|
962
|
+
-114,86,119
|
|
963
|
+
-113,86,119
|
|
964
|
+
-112,84,122
|
|
965
|
+
-111,84,122
|
|
966
|
+
-110,84,121
|
|
967
|
+
-109,82,119
|
|
968
|
+
-108,82,119
|
|
969
|
+
-107,82,118
|
|
970
|
+
-106,79,120
|
|
971
|
+
-105,79,119
|
|
972
|
+
-104,79,118
|
|
973
|
+
-103,79,117
|
|
974
|
+
-102,77,119
|
|
975
|
+
-101,77,118
|
|
976
|
+
-100,77,120
|
|
977
|
+
-99,75,120
|
|
978
|
+
-98,75,119
|
|
979
|
+
-97,75,120
|
|
980
|
+
-96,72,120
|
|
981
|
+
-95,72,120
|
|
982
|
+
-94,72,120
|
|
983
|
+
-93,70,120
|
|
984
|
+
-92,70,119
|
|
985
|
+
-91,70,118
|
|
986
|
+
-90,70,118
|
|
987
|
+
-89,68,121
|
|
988
|
+
-88,68,120
|
|
989
|
+
-87,68,119
|
|
990
|
+
-86,66,120
|
|
991
|
+
-85,66,120
|
|
992
|
+
-84,66,119
|
|
993
|
+
-83,63,119
|
|
994
|
+
-82,63,120
|
|
995
|
+
-81,63,119
|
|
996
|
+
-80,63,118
|
|
997
|
+
-79,61,118
|
|
998
|
+
-78,61,117
|
|
999
|
+
-77,61,116
|
|
1000
|
+
-76,59,116
|
|
1001
|
+
-75,59,115
|
|
1002
|
+
-74,59,114
|
|
1003
|
+
-73,56,114
|
|
1004
|
+
-72,56,113
|
|
1005
|
+
-71,56,112
|
|
1006
|
+
-70,56,111
|
|
1007
|
+
-69,54,111
|
|
1008
|
+
-68,54,110
|
|
1009
|
+
-67,54,109
|
|
1010
|
+
-66,52,109
|
|
1011
|
+
-65,52,108
|
|
1012
|
+
-64,52,107
|
|
1013
|
+
-63,49,107
|
|
1014
|
+
-62,49,106
|
|
1015
|
+
-61,49,105
|
|
1016
|
+
-60,49,104
|
|
1017
|
+
-59,47,104
|
|
1018
|
+
-58,47,103
|
|
1019
|
+
-57,47,102
|
|
1020
|
+
-56,45,102
|
|
1021
|
+
-55,45,101
|
|
1022
|
+
-54,45,100
|
|
1023
|
+
-53,42,100
|
|
1024
|
+
-52,42,99
|
|
1025
|
+
-51,42,98
|
|
1026
|
+
-50,42,97
|
|
1027
|
+
-49,40,97
|
|
1028
|
+
-48,40,96
|
|
1029
|
+
-47,40,95
|
|
1030
|
+
-46,38,95
|
|
1031
|
+
-45,38,94
|
|
1032
|
+
-44,38,93
|
|
1033
|
+
-43,35,93
|
|
1034
|
+
-42,35,92
|
|
1035
|
+
-41,35,91
|
|
1036
|
+
-40,35,90
|
|
1037
|
+
-39,33,90
|
|
1038
|
+
-38,33,89
|
|
1039
|
+
-37,33,88
|
|
1040
|
+
-36,31,88
|
|
1041
|
+
-35,31,87
|
|
1042
|
+
-34,31,86
|
|
1043
|
+
-33,28,86
|
|
1044
|
+
-32,28,85
|
|
1045
|
+
-31,28,84
|
|
1046
|
+
-30,28,83
|
|
1047
|
+
-29,26,83
|
|
1048
|
+
-28,26,82
|
|
1049
|
+
-27,26,81
|
|
1050
|
+
-26,24,81
|
|
1051
|
+
-25,24,80
|
|
1052
|
+
-24,24,79
|
|
1053
|
+
-23,21,79
|
|
1054
|
+
-22,21,78
|
|
1055
|
+
-21,21,77
|
|
1056
|
+
-20,21,76
|
|
1057
|
+
-19,19,76
|
|
1058
|
+
-18,19,75
|
|
1059
|
+
-17,19,74
|
|
1060
|
+
-16,17,74
|
|
1061
|
+
-15,17,73
|
|
1062
|
+
-14,17,72
|
|
1063
|
+
-13,14,72
|
|
1064
|
+
-12,14,71
|
|
1065
|
+
-11,14,70
|
|
1066
|
+
-10,14,69
|
|
1067
|
+
-9,12,69
|
|
1068
|
+
-8,12,68
|
|
1069
|
+
-7,12,67
|
|
1070
|
+
-6,10,67
|
|
1071
|
+
-5,10,66
|
|
1072
|
+
-4,10,65
|
|
1073
|
+
-3,7,65
|
|
1074
|
+
-2,7,64
|
|
1075
|
+
-1,7,64
|
|
1076
|
+
0,5,64
|
|
1077
|
+
1,5,64
|
|
1078
|
+
2,5,64
|
|
1079
|
+
3,5,64
|
|
1080
|
+
4,3,64
|
|
1081
|
+
5,3,64
|
|
1082
|
+
6,3,64
|
|
1083
|
+
7,1,64
|
|
1084
|
+
8,1,64
|
|
1085
|
+
9,1,64
|
|
1086
|
+
10,63,67
|
|
1087
|
+
11,63,67
|
|
1088
|
+
12,64,67
|
|
1089
|
+
13,64,67
|
|
1090
|
+
14,65,69
|
|
1091
|
+
15,66,69
|
|
1092
|
+
16,66,69
|
|
1093
|
+
17,68,71
|
|
1094
|
+
18,69,71
|
|
1095
|
+
19,69,71
|
|
1096
|
+
20,69,74
|
|
1097
|
+
21,70,74
|
|
1098
|
+
22,70,74
|
|
1099
|
+
23,70,74
|
|
1100
|
+
24,68,76
|
|
1101
|
+
25,68,76
|
|
1102
|
+
26,75,76
|
|
1103
|
+
27,74,78
|
|
1104
|
+
28,74,78
|
|
1105
|
+
29,74,78
|
|
1106
|
+
30,77,81
|
|
1107
|
+
31,77,81
|
|
1108
|
+
32,78,81
|
|
1109
|
+
33,78,81
|
|
1110
|
+
34,80,83
|
|
1111
|
+
35,81,83
|
|
1112
|
+
36,82,83
|
|
1113
|
+
37,82,85
|
|
1114
|
+
38,83,85
|
|
1115
|
+
39,84,85
|
|
1116
|
+
40,84,88
|
|
1117
|
+
41,84,88
|
|
1118
|
+
42,85,88
|
|
1119
|
+
43,87,88
|
|
1120
|
+
44,86,90
|
|
1121
|
+
45,87,90
|
|
1122
|
+
46,87,90
|
|
1123
|
+
47,85,92
|
|
1124
|
+
48,90,92
|
|
1125
|
+
49,90,92
|
|
1126
|
+
50,87,95
|
|
1127
|
+
51,87,95
|
|
1128
|
+
52,87,95
|
|
1129
|
+
53,93,95
|
|
1130
|
+
54,94,97
|
|
1131
|
+
55,94,97
|
|
1132
|
+
56,95,97
|
|
1133
|
+
57,95,99
|
|
1134
|
+
58,97,99
|
|
1135
|
+
59,97,99
|
|
1136
|
+
60,97,102
|
|
1137
|
+
61,97,102
|
|
1138
|
+
62,97,102
|
|
1139
|
+
63,97,102
|
|
1140
|
+
64,95,104
|
|
1141
|
+
65,95,104
|
|
1142
|
+
66,102,104
|
|
1143
|
+
67,102,106
|
|
1144
|
+
68,104,106
|
|
1145
|
+
69,105,106
|
|
1146
|
+
70,104,109
|
|
1147
|
+
71,105,109
|
|
1148
|
+
72,105,109
|
|
1149
|
+
73,105,109
|
|
1150
|
+
74,106,111
|
|
1151
|
+
75,106,111
|
|
1152
|
+
76,106,111
|
|
1153
|
+
77,110,113
|
|
1154
|
+
78,110,113
|
|
1155
|
+
79,112,113
|
|
1156
|
+
80,111,116
|
|
1157
|
+
81,111,116
|
|
1158
|
+
82,113,116
|
|
1159
|
+
83,113,116
|
|
1160
|
+
84,114,118
|
|
1161
|
+
85,115,118
|
|
1162
|
+
86,117,118
|
|
1163
|
+
87,113,118
|
|
1164
|
+
88,113,118
|
|
1165
|
+
89,117,118
|
|
1166
|
+
90,117,118
|
|
1167
|
+
91,117,118
|
|
1168
|
+
92,117,118
|
|
1169
|
+
93,117,119
|
|
1170
|
+
94,118,118
|
|
1171
|
+
95,118,118
|
|
1172
|
+
96,118,118
|
|
1173
|
+
97,114,121
|
|
1174
|
+
98,117,120
|
|
1175
|
+
99,120,119
|
|
1176
|
+
100,113,121
|
|
1177
|
+
101,113,120
|
|
1178
|
+
102,113,119
|
|
1179
|
+
103,112,121
|
|
1180
|
+
104,112,120
|
|
1181
|
+
105,112,119
|
|
1182
|
+
106,112,122
|
|
1183
|
+
107,111,120
|
|
1184
|
+
108,118,119
|
|
1185
|
+
109,118,119
|
|
1186
|
+
110,112,119
|
|
1187
|
+
111,112,122
|
|
1188
|
+
112,115,122
|
|
1189
|
+
113,113,119
|
|
1190
|
+
114,113,120
|
|
1191
|
+
115,115,120
|
|
1192
|
+
116,116,119
|
|
1193
|
+
117,111,121
|
|
1194
|
+
118,111,120
|
|
1195
|
+
119,115,119
|
|
1196
|
+
120,114,119
|
|
1197
|
+
121,115,119
|
|
1198
|
+
122,115,119
|
|
1199
|
+
123,111,121
|
|
1200
|
+
124,112,120
|
|
1201
|
+
125,112,119
|
|
1202
|
+
126,118,119
|
|
1203
|
+
127,114,118
|
|
1204
|
+
128,114,118
|
|
1205
|
+
129,114,118
|
|
1206
|
+
130,113,120
|
|
1207
|
+
131,114,120
|
|
1208
|
+
132,114,120
|
|
1209
|
+
133,111,120
|
|
1210
|
+
134,111,119
|
|
1211
|
+
135,116,118
|
|
1212
|
+
136,116,119
|
|
1213
|
+
137,111,117
|
|
1214
|
+
138,120,118
|
|
1215
|
+
139,120,117
|
|
1216
|
+
140,114,118
|
|
1217
|
+
141,121,118
|
|
1218
|
+
142,121,118
|
|
1219
|
+
143,113,118
|
|
1220
|
+
144,113,118
|
|
1221
|
+
145,113,118
|
|
1222
|
+
146,113,117
|
|
1223
|
+
147,114,119
|
|
1224
|
+
148,115,119
|
|
1225
|
+
149,115,119
|
|
1226
|
+
150,117,119
|
|
1227
|
+
151,117,119
|
|
1228
|
+
152,117,119
|
|
1229
|
+
153,115,118
|
|
1230
|
+
154,115,118
|
|
1231
|
+
155,119,118
|
|
1232
|
+
156,119,117
|
|
1233
|
+
157,114,120
|
|
1234
|
+
158,115,120
|
|
1235
|
+
159,115,120
|
|
1236
|
+
160,113,120
|
|
1237
|
+
161,113,119
|
|
1238
|
+
162,113,121
|
|
1239
|
+
163,112,123
|
|
1240
|
+
164,112,123
|
|
1241
|
+
165,114,122
|
|
1242
|
+
166,114,121
|
|
1243
|
+
167,113,124
|
|
1244
|
+
168,113,123
|
|
1245
|
+
169,115,122
|
|
1246
|
+
170,113,124
|
|
1247
|
+
171,113,123
|
|
1248
|
+
172,115,122
|
|
1249
|
+
173,111,116
|
|
1250
|
+
174,116,119
|
|
1251
|
+
175,116,118
|
|
1252
|
+
176,116,117
|
|
1253
|
+
177,111,119
|
|
1254
|
+
178,111,124
|
|
1255
|
+
179,115,124
|
|
1256
|
+
180,116,118
|
|
1257
|
+
181,116,117
|
|
1258
|
+
182,116,116
|
|
1259
|
+
183,113,118
|
|
1260
|
+
184,113,118
|
|
1261
|
+
185,113,117
|
|
1262
|
+
186,113,116
|
|
1263
|
+
187,114,118
|
|
1264
|
+
188,114,119
|
|
1265
|
+
189,118,118
|
|
1266
|
+
190,111,118
|
|
1267
|
+
191,113,119
|
|
1268
|
+
192,119,118
|
|
1269
|
+
193,113,121
|
|
1270
|
+
194,113,120
|
|
1271
|
+
195,116,119
|
|
1272
|
+
196,113,121
|
|
1273
|
+
197,113,120
|
|
1274
|
+
198,115,119
|
|
1275
|
+
199,118,118
|
|
1276
|
+
200,115,119
|
|
1277
|
+
201,115,120
|
|
1278
|
+
202,115,120
|
|
1279
|
+
203,114,122
|
|
1280
|
+
204,115,121
|
|
1281
|
+
205,116,120
|
|
1282
|
+
206,109,120
|
|
1283
|
+
207,109,120
|
|
1284
|
+
208,113,119
|
|
1285
|
+
209,113,118
|
|
1286
|
+
210,114,118
|
|
1287
|
+
211,114,118
|
|
1288
|
+
212,114,118
|
|
1289
|
+
213,114,119
|
|
1290
|
+
214,119,118
|
|
1291
|
+
215,119,118
|
|
1292
|
+
216,112,120
|
|
1293
|
+
217,112,120
|
|
1294
|
+
218,112,120
|
|
1295
|
+
219,112,120
|
|
1296
|
+
220,109,123
|
|
1297
|
+
221,110,122
|
|
1298
|
+
222,110,121
|
|
1299
|
+
223,110,121
|
|
1300
|
+
224,112,120
|
|
1301
|
+
225,114,119
|
|
1302
|
+
226,114,119
|
|
1303
|
+
227,114,118
|
|
1304
|
+
228,114,120
|
|
1305
|
+
229,114,120
|
|
1306
|
+
230,114,118
|
|
1307
|
+
231,114,118
|
|
1308
|
+
232,116,120
|
|
1309
|
+
233,113,120
|
|
1310
|
+
234,113,119
|
|
1311
|
+
235,113,119
|
|
1312
|
+
236,111,121
|
|
1313
|
+
237,114,120
|
|
1314
|
+
238,114,119
|
|
1315
|
+
239,114,121
|
|
1316
|
+
240,112,119
|
|
1317
|
+
241,115,118
|
|
1318
|
+
242,115,119
|
|
1319
|
+
243,111,113
|
|
1320
|
+
244,111,112
|
|
1321
|
+
245,111,111
|
|
1322
|
+
246,108,110
|
|
1323
|
+
247,108,109
|
|
1324
|
+
248,108,108
|
|
1325
|
+
249,108,109
|
|
1326
|
+
250,110,111
|
|
1327
|
+
251,110,111
|
|
1328
|
+
252,110,112
|
|
1329
|
+
253,108,114
|
|
1330
|
+
254,118,119
|
|
1331
|
+
255,118,119
|
|
1332
|
+
256,114,119
|
|
1333
|
+
257,114,119
|
|
1334
|
+
258,116,118
|
|
1335
|
+
259,116,119
|
|
1336
|
+
260,114,121
|
|
1337
|
+
261,114,121
|
|
1338
|
+
262,114,120
|
|
1339
|
+
263,113,118
|
|
1340
|
+
264,113,117
|
|
1341
|
+
265,116,124
|
|
1342
|
+
266,113,127
|
|
1343
|
+
267,113,127
|
|
1344
|
+
268,113,127
|
|
1345
|
+
269,114,126
|
|
1346
|
+
270,111,126
|
|
1347
|
+
271,115,125
|
|
1348
|
+
272,116,124
|
|
1349
|
+
273,115,118
|
|
1350
|
+
274,115,118
|
|
1351
|
+
275,117,121
|
|
1352
|
+
276,114,117
|
|
1353
|
+
277,114,117
|
|
1354
|
+
278,114,121
|
|
1355
|
+
279,114,120
|
|
1356
|
+
280,113,120
|
|
1357
|
+
281,113,120
|
|
1358
|
+
282,113,120
|
|
1359
|
+
283,114,120
|
|
1360
|
+
284,114,120
|
|
1361
|
+
285,114,120
|
|
1362
|
+
286,112,120
|
|
1363
|
+
287,112,120
|
|
1364
|
+
288,114,120
|
|
1365
|
+
289,114,120
|
|
1366
|
+
290,114,120
|
|
1367
|
+
291,115,119
|
|
1368
|
+
292,116,118
|
|
1369
|
+
293,112,116
|
|
1370
|
+
294,112,116
|
|
1371
|
+
295,117,120
|
|
1372
|
+
296,109,120
|
|
1373
|
+
297,114,119
|
|
1374
|
+
298,114,118
|
|
1375
|
+
299,109,114
|
|
1376
|
+
300,112,119
|
|
1377
|
+
301,112,118
|
|
1378
|
+
302,112,118
|
|
1379
|
+
303,114,120
|
|
1380
|
+
304,114,119
|
|
1381
|
+
305,114,118
|
|
1382
|
+
306,114,119
|
|
1383
|
+
307,114,119
|
|
1384
|
+
308,116,119
|
|
1385
|
+
309,109,120
|
|
1386
|
+
310,112,119
|
|
1387
|
+
311,116,120
|
|
1388
|
+
312,116,120
|
|
1389
|
+
313,114,118
|
|
1390
|
+
314,114,117
|
|
1391
|
+
315,114,116
|
|
1392
|
+
316,114,118
|
|
1393
|
+
317,114,117
|
|
1394
|
+
318,114,118
|
|
1395
|
+
319,112,120
|
|
1396
|
+
320,113,120
|
|
1397
|
+
321,113,120
|
|
1398
|
+
322,116,119
|
|
1399
|
+
323,116,119
|
|
1400
|
+
324,116,118
|
|
1401
|
+
325,116,117
|
|
1402
|
+
326,114,119
|
|
1403
|
+
327,114,119
|
|
1404
|
+
328,117,119
|
|
1405
|
+
329,116,119
|
|
1406
|
+
330,116,118
|
|
1407
|
+
331,116,118
|
|
1408
|
+
332,116,120
|
|
1409
|
+
333,114,119
|
|
1410
|
+
334,118,118
|
|
1411
|
+
335,118,118
|
|
1412
|
+
336,111,119
|
|
1413
|
+
337,114,119
|
|
1414
|
+
338,114,118
|
|
1415
|
+
339,112,117
|
|
1416
|
+
340,112,116
|
|
1417
|
+
341,112,115
|
|
1418
|
+
342,115,122
|
|
1419
|
+
343,116,119
|
|
1420
|
+
344,116,118
|
|
1421
|
+
345,116,118
|
|
1422
|
+
346,116,118
|
|
1423
|
+
347,116,118
|
|
1424
|
+
348,116,118
|
|
1425
|
+
349,113,120
|
|
1426
|
+
350,114,119
|
|
1427
|
+
351,115,120
|
|
1428
|
+
352,116,120
|
|
1429
|
+
353,114,119
|
|
1430
|
+
354,114,118
|
|
1431
|
+
355,114,117
|
|
1432
|
+
356,114,119
|
|
1433
|
+
357,114,120
|
|
1434
|
+
358,115,120
|
|
1435
|
+
359,115,119
|
|
1436
|
+
360,115,118
|
|
1437
|
+
361,116,120
|
|
1438
|
+
362,116,120
|
|
1439
|
+
363,114,119
|
|
1440
|
+
364,117,119
|
|
1441
|
+
365,117,119
|
|
1442
|
+
366,118,118
|
|
1443
|
+
367,118,119
|
|
1444
|
+
368,118,119
|
|
1445
|
+
369,115,118
|
|
1446
|
+
370,115,119
|
|
1447
|
+
371,115,119
|
|
1448
|
+
372,115,120
|
|
1449
|
+
373,117,119
|
|
1450
|
+
374,117,118
|
|
1451
|
+
375,117,118
|
|
1452
|
+
376,113,121
|
|
1453
|
+
377,115,120
|
|
1454
|
+
378,115,119
|
|
1455
|
+
379,114,119
|
|
1456
|
+
380,115,119
|
|
1457
|
+
381,115,119
|
|
1458
|
+
382,115,119
|
|
1459
|
+
383,115,119
|
|
1460
|
+
384,115,119
|
|
1461
|
+
385,115,118
|
|
1462
|
+
386,119,118
|
|
1463
|
+
387,119,117
|
|
1464
|
+
388,119,117
|
|
1465
|
+
389,110,118
|
|
1466
|
+
390,110,117
|
|
1467
|
+
391,110,116
|
|
1468
|
+
392,112,118
|
|
1469
|
+
393,112,119
|
|
1470
|
+
394,112,119
|
|
1471
|
+
395,119,118
|
|
1472
|
+
396,117,118
|
|
1473
|
+
397,117,118
|
|
1474
|
+
398,117,118
|
|
1475
|
+
399,117,118
|
|
1476
|
+
400,117,119
|
|
1477
|
+
401,117,121
|
|
1478
|
+
402,112,119
|
|
1479
|
+
403,112,118
|
|
1480
|
+
404,112,117
|
|
1481
|
+
405,112,119
|
|
1482
|
+
406,115,117
|
|
1483
|
+
407,115,117
|
|
1484
|
+
408,115,119
|
|
1485
|
+
409,114,117
|
|
1486
|
+
410,114,117
|
|
1487
|
+
411,114,118
|
|
1488
|
+
412,112,119
|
|
1489
|
+
413,112,119
|
|
1490
|
+
414,116,120
|
|
1491
|
+
415,116,119
|
|
1492
|
+
416,114,119
|
|
1493
|
+
417,115,119
|
|
1494
|
+
418,115,119
|
|
1495
|
+
419,116,119
|
|
1496
|
+
420,116,119
|
|
1497
|
+
421,119,118
|
|
1498
|
+
422,114,119
|
|
1499
|
+
423,114,119
|
|
1500
|
+
424,114,120
|
|
1501
|
+
425,116,120
|
|
1502
|
+
426,113,119
|
|
1503
|
+
427,113,120
|
|
1504
|
+
428,115,119
|
|
1505
|
+
429,112,119
|
|
1506
|
+
430,112,118
|
|
1507
|
+
431,112,117
|
|
1508
|
+
432,111,119
|
|
1509
|
+
433,111,118
|
|
1510
|
+
434,111,117
|
|
1511
|
+
435,115,119
|
|
1512
|
+
436,113,120
|
|
1513
|
+
437,113,120
|
|
1514
|
+
438,113,119
|
|
1515
|
+
439,112,117
|
|
1516
|
+
440,113,122
|
|
1517
|
+
441,113,122
|
|
1518
|
+
442,113,119
|
|
1519
|
+
443,113,119
|
|
1520
|
+
444,113,119
|
|
1521
|
+
445,120,118
|
|
1522
|
+
446,115,118
|
|
1523
|
+
447,115,119
|
|
1524
|
+
448,115,120
|
|
1525
|
+
449,114,122
|
|
1526
|
+
450,114,122
|
|
1527
|
+
451,114,122
|
|
1528
|
+
452,114,122
|
|
1529
|
+
453,114,121
|
|
1530
|
+
454,114,120
|
|
1531
|
+
455,115,119
|
|
1532
|
+
456,108,120
|
|
1533
|
+
457,116,119
|
|
1534
|
+
458,116,118
|
|
1535
|
+
459,113,120
|
|
1536
|
+
460,115,119
|
|
1537
|
+
461,115,118
|
|
1538
|
+
462,114,120
|
|
1539
|
+
463,114,120
|
|
1540
|
+
464,116,119
|
|
1541
|
+
465,121,118
|
|
1542
|
+
466,113,120
|
|
1543
|
+
467,115,119
|
|
1544
|
+
468,122,118
|
|
1545
|
+
469,111,119
|
|
1546
|
+
470,111,119
|
|
1547
|
+
471,116,121
|
|
1548
|
+
472,108,119
|
|
1549
|
+
473,108,118
|
|
1550
|
+
474,108,117
|
|
1551
|
+
475,120,118
|
|
1552
|
+
476,114,120
|
|
1553
|
+
477,116,119
|
|
1554
|
+
478,116,118
|
|
1555
|
+
479,116,117
|
|
1556
|
+
480,116,116
|
|
1557
|
+
481,116,115
|
|
1558
|
+
482,113,115
|
|
1559
|
+
483,113,114
|
|
1560
|
+
484,113,113
|
|
1561
|
+
485,113,112
|
|
1562
|
+
486,115,112
|
|
1563
|
+
487,115,111
|
|
1564
|
+
488,115,110
|
|
1565
|
+
489,116,112
|
|
1566
|
+
490,116,112
|
|
1567
|
+
491,116,112
|
|
1568
|
+
492,113,115
|
|
1569
|
+
493,113,115
|
|
1570
|
+
494,113,115
|
|
1571
|
+
495,116,117
|
|
1572
|
+
496,116,117
|
|
1573
|
+
497,116,117
|
|
1574
|
+
498,116,118
|
|
1575
|
+
499,112,120
|
|
1576
|
+
500,112,120
|
|
1577
|
+
501,112,120
|
|
1578
|
+
502,114,120
|
|
1579
|
+
503,118,119
|
|
1580
|
+
504,118,118
|
|
1581
|
+
505,109,120
|
|
1582
|
+
506,109,120
|
|
1583
|
+
507,113,119
|
|
1584
|
+
508,119,118
|
|
1585
|
+
509,109,120
|
|
1586
|
+
510,109,119
|
|
1587
|
+
511,114,121
|
|
1588
|
+
512,113,123
|
|
1589
|
+
513,113,123
|
|
1590
|
+
514,113,123
|
|
1591
|
+
515,112,123
|
|
1592
|
+
516,112,123
|
|
1593
|
+
517,112,122
|
|
1594
|
+
518,112,121
|
|
1595
|
+
519,116,119
|
|
1596
|
+
520,116,118
|
|
1597
|
+
521,116,117
|
|
1598
|
+
522,114,119
|
|
1599
|
+
523,114,119
|
|
1600
|
+
524,114,121
|
|
1601
|
+
525,112,123
|
|
1602
|
+
526,112,123
|
|
1603
|
+
527,112,122
|
|
1604
|
+
528,114,121
|
|
1605
|
+
529,115,119
|
|
1606
|
+
530,115,118
|
|
1607
|
+
531,115,117
|
|
1608
|
+
532,115,119
|
|
1609
|
+
533,118,118
|
|
1610
|
+
534,118,118
|
|
1611
|
+
535,109,120
|
|
1612
|
+
536,109,120
|
|
1613
|
+
537,109,120
|
|
1614
|
+
538,109,120
|
|
1615
|
+
539,108,120
|
|
1616
|
+
540,111,119
|
|
1617
|
+
541,116,123
|
|
1618
|
+
542,113,121
|
|
1619
|
+
543,113,120
|
|
1620
|
+
544,118,119
|
|
1621
|
+
545,113,118
|
|
1622
|
+
546,113,119
|
|
1623
|
+
547,117,119
|
|
1624
|
+
548,117,119
|
|
1625
|
+
549,112,121
|
|
1626
|
+
550,114,120
|
|
1627
|
+
551,116,119
|
|
1628
|
+
552,112,121
|
|
1629
|
+
553,112,120
|
|
1630
|
+
554,112,119
|
|
1631
|
+
555,112,122
|
|
1632
|
+
556,112,121
|
|
1633
|
+
557,114,120
|
|
1634
|
+
558,116,119
|
|
1635
|
+
559,112,118
|
|
1636
|
+
560,112,117
|
|
1637
|
+
561,112,120
|
|
1638
|
+
562,112,122
|
|
1639
|
+
563,116,121
|
|
1640
|
+
564,118,120
|
|
1641
|
+
565,115,119
|
|
1642
|
+
566,115,120
|
|
1643
|
+
567,115,120
|
|
1644
|
+
568,115,120
|
|
1645
|
+
569,114,118
|
|
1646
|
+
570,114,120
|
|
1647
|
+
571,116,119
|
|
1648
|
+
572,113,116
|
|
1649
|
+
573,113,115
|
|
1650
|
+
574,113,114
|
|
1651
|
+
575,112,117
|
|
1652
|
+
576,112,116
|
|
1653
|
+
577,112,117
|
|
1654
|
+
578,117,120
|
|
1655
|
+
579,114,119
|
|
1656
|
+
580,114,120
|
|
1657
|
+
581,116,120
|
|
1658
|
+
582,110,120
|
|
1659
|
+
583,112,119
|
|
1660
|
+
584,117,118
|
|
1661
|
+
585,111,120
|
|
1662
|
+
586,114,119
|
|
1663
|
+
587,114,118
|
|
1664
|
+
588,114,121
|
|
1665
|
+
589,115,120
|
|
1666
|
+
590,116,119
|
|
1667
|
+
591,116,121
|
|
1668
|
+
592,113,120
|
|
1669
|
+
593,116,119
|
|
1670
|
+
594,116,119
|
|
1671
|
+
595,113,120
|
|
1672
|
+
596,113,120
|
|
1673
|
+
597,117,119
|
|
1674
|
+
598,112,119
|
|
1675
|
+
599,112,118
|
|
1676
|
+
600,112,120
|
|
1677
|
+
601,116,120
|
|
1678
|
+
602,115,119
|
|
1679
|
+
603,115,119
|
|
1680
|
+
604,115,120
|
|
1681
|
+
605,111,120
|
|
1682
|
+
606,116,119
|
|
1683
|
+
607,116,120
|
|
1684
|
+
608,113,118
|
|
1685
|
+
609,113,120
|
|
1686
|
+
610,113,120
|
|
1687
|
+
611,113,120
|
|
1688
|
+
612,114,120
|
|
1689
|
+
613,115,119
|
|
1690
|
+
614,115,118
|
|
1691
|
+
615,112,120
|
|
1692
|
+
616,117,119
|
|
1693
|
+
617,117,120
|
|
1694
|
+
618,115,117
|
|
1695
|
+
619,115,116
|
|
1696
|
+
620,115,117
|
|
1697
|
+
621,119,119
|
|
1698
|
+
622,115,119
|
|
1699
|
+
623,117,118
|
|
1700
|
+
624,117,117
|
|
1701
|
+
625,110,118
|
|
1702
|
+
626,115,119
|
|
1703
|
+
627,122,118
|
|
1704
|
+
628,120,118
|
|
1705
|
+
629,120,118
|
|
1706
|
+
630,120,118
|
|
1707
|
+
631,120,118
|
|
1708
|
+
632,116,119
|
|
1709
|
+
633,116,121
|
|
1710
|
+
634,116,121
|
|
1711
|
+
635,116,119
|
|
1712
|
+
636,116,119
|
|
1713
|
+
637,116,121
|
|
1714
|
+
638,113,118
|
|
1715
|
+
639,116,118
|
|
1716
|
+
640,116,118
|
|
1717
|
+
641,116,119
|
|
1718
|
+
642,111,120
|
|
1719
|
+
643,115,119
|
|
1720
|
+
644,117,118
|
|
1721
|
+
645,115,118
|
|
1722
|
+
646,115,118
|
|
1723
|
+
647,115,118
|
|
1724
|
+
648,106,120
|
|
1725
|
+
649,116,119
|
|
1726
|
+
650,116,118
|
|
1727
|
+
651,116,119
|
|
1728
|
+
652,114,121
|
|
1729
|
+
653,114,121
|
|
1730
|
+
654,114,121
|
|
1731
|
+
655,113,121
|
|
1732
|
+
656,116,120
|
|
1733
|
+
657,116,119
|
|
1734
|
+
658,112,116
|
|
1735
|
+
659,112,115
|
|
1736
|
+
660,112,114
|
|
1737
|
+
661,112,113
|
|
1738
|
+
662,113,115
|
|
1739
|
+
663,113,115
|
|
1740
|
+
664,113,125
|
|
1741
|
+
665,113,128
|
|
1742
|
+
666,114,128
|
|
1743
|
+
667,114,128
|
|
1744
|
+
668,112,130
|
|
1745
|
+
669,112,130
|
|
1746
|
+
670,113,129
|
|
1747
|
+
671,114,128
|
|
1748
|
+
672,114,128
|
|
1749
|
+
673,114,127
|
|
1750
|
+
674,115,126
|
|
1751
|
+
675,111,120
|
|
1752
|
+
676,111,120
|
|
1753
|
+
677,111,120
|
|
1754
|
+
678,112,120
|
|
1755
|
+
679,112,120
|
|
1756
|
+
680,113,119
|
|
1757
|
+
681,112,119
|
|
1758
|
+
682,112,123
|
|
1759
|
+
683,114,123
|
|
1760
|
+
684,114,123
|
|
1761
|
+
685,114,123
|
|
1762
|
+
686,116,122
|
|
1763
|
+
687,116,121
|
|
1764
|
+
688,113,119
|
|
1765
|
+
689,115,119
|
|
1766
|
+
690,115,119
|
|
1767
|
+
691,113,118
|
|
1768
|
+
692,113,117
|
|
1769
|
+
693,115,119
|
|
1770
|
+
694,115,119
|
|
1771
|
+
695,116,119
|
|
1772
|
+
696,116,119
|
|
1773
|
+
697,117,118
|
|
1774
|
+
698,114,120
|
|
1775
|
+
699,114,120
|
|
1776
|
+
700,115,119
|
|
1777
|
+
701,112,119
|
|
1778
|
+
702,112,119
|
|
1779
|
+
703,112,126
|
|
1780
|
+
704,112,125
|
|
1781
|
+
705,110,119
|
|
1782
|
+
706,110,118
|
|
1783
|
+
707,110,119
|
|
1784
|
+
708,113,120
|
|
1785
|
+
709,114,119
|
|
1786
|
+
710,117,119
|
|
1787
|
+
711,110,120
|
|
1788
|
+
712,114,119
|
|
1789
|
+
713,118,118
|
|
1790
|
+
714,118,117
|
|
1791
|
+
715,112,120
|
|
1792
|
+
716,116,119
|
|
1793
|
+
717,116,119
|
|
1794
|
+
718,111,121
|
|
1795
|
+
719,117,120
|
|
1796
|
+
720,118,119
|
|
1797
|
+
721,111,119
|
|
1798
|
+
722,124,118
|
|
1799
|
+
723,124,117
|
|
1800
|
+
724,124,117
|
|
1801
|
+
725,115,119
|
|
1802
|
+
726,115,118
|
|
1803
|
+
727,115,117
|
|
1804
|
+
728,115,119
|
|
1805
|
+
729,115,118
|
|
1806
|
+
730,115,118
|
|
1807
|
+
731,113,118
|
|
1808
|
+
732,114,123
|
|
1809
|
+
733,114,123
|
|
1810
|
+
734,114,123
|
|
1811
|
+
735,113,123
|
|
1812
|
+
736,115,122
|
|
1813
|
+
737,115,121
|
|
1814
|
+
738,108,116
|
|
1815
|
+
739,113,120
|
|
1816
|
+
740,113,120
|
|
1817
|
+
741,115,118
|
|
1818
|
+
742,115,120
|
|
1819
|
+
743,118,119
|
|
1820
|
+
744,118,118
|
|
1821
|
+
745,112,120
|
|
1822
|
+
746,113,119
|
|
1823
|
+
747,113,121
|
|
1824
|
+
748,114,123
|
|
1825
|
+
749,114,123
|
|
1826
|
+
750,114,123
|
|
1827
|
+
751,113,123
|
|
1828
|
+
752,113,123
|
|
1829
|
+
753,113,123
|
|
1830
|
+
754,113,123
|
|
1831
|
+
755,114,123
|
|
1832
|
+
756,114,123
|
|
1833
|
+
757,114,123
|
|
1834
|
+
758,114,123
|
|
1835
|
+
759,114,122
|
|
1836
|
+
760,115,121
|
|
1837
|
+
761,114,119
|
|
1838
|
+
762,115,118
|
|
1839
|
+
763,115,118
|
|
1840
|
+
764,123,118
|
|
1841
|
+
765,115,117
|
|
1842
|
+
766,115,118
|
|
1843
|
+
767,116,121
|
|
1844
|
+
768,115,117
|
|
1845
|
+
769,115,118
|
|
1846
|
+
770,116,119
|
|
1847
|
+
771,111,122
|
|
1848
|
+
772,113,121
|
|
1849
|
+
773,115,120
|
|
1850
|
+
774,116,119
|
|
1851
|
+
775,114,119
|
|
1852
|
+
776,114,119
|
|
1853
|
+
777,114,119
|
|
1854
|
+
778,113,121
|
|
1855
|
+
779,113,121
|
|
1856
|
+
780,113,121
|
|
1857
|
+
781,113,119
|
|
1858
|
+
782,113,118
|
|
1859
|
+
783,113,118
|
|
1860
|
+
784,111,117
|
|
1861
|
+
785,111,117
|
|
1862
|
+
786,111,117
|
|
1863
|
+
787,111,120
|
|
1864
|
+
788,111,119
|
|
1865
|
+
789,118,118
|
|
1866
|
+
790,118,118
|
|
1867
|
+
791,119,118
|
|
1868
|
+
792,119,118
|
|
1869
|
+
793,119,118
|
|
1870
|
+
794,111,120
|
|
1871
|
+
795,112,120
|
|
1872
|
+
796,112,119
|
|
1873
|
+
797,120,118
|
|
1874
|
+
798,115,119
|
|
1875
|
+
799,118,119
|
|
1876
|
+
800,118,119
|
|
1877
|
+
801,117,119
|
|
1878
|
+
802,117,119
|
|
1879
|
+
803,117,119
|
|
1880
|
+
804,113,119
|
|
1881
|
+
805,116,118
|
|
1882
|
+
806,116,119
|
|
1883
|
+
807,120,118
|
|
1884
|
+
808,113,120
|
|
1885
|
+
809,113,120
|
|
1886
|
+
810,113,120
|
|
1887
|
+
811,112,120
|
|
1888
|
+
812,112,120
|
|
1889
|
+
813,112,120
|
|
1890
|
+
814,112,120
|
|
1891
|
+
815,112,120
|
|
1892
|
+
816,112,120
|
|
1893
|
+
817,114,119
|
|
1894
|
+
818,113,119
|
|
1895
|
+
819,116,118
|
|
1896
|
+
820,116,118
|
|
1897
|
+
821,119,117
|
|
1898
|
+
822,119,116
|
|
1899
|
+
823,119,116
|
|
1900
|
+
824,111,119
|
|
1901
|
+
825,111,119
|
|
1902
|
+
826,111,119
|
|
1903
|
+
827,115,119
|
|
1904
|
+
828,112,120
|
|
1905
|
+
829,112,120
|
|
1906
|
+
830,112,120
|
|
1907
|
+
831,114,120
|
|
1908
|
+
832,116,119
|
|
1909
|
+
833,116,120
|
|
1910
|
+
834,113,117
|
|
1911
|
+
835,113,116
|
|
1912
|
+
836,113,117
|
|
1913
|
+
837,118,119
|
|
1914
|
+
838,117,118
|
|
1915
|
+
839,117,117
|
|
1916
|
+
840,117,116
|
|
1917
|
+
841,115,119
|
|
1918
|
+
842,115,118
|
|
1919
|
+
843,115,118
|
|
1920
|
+
844,111,118
|
|
1921
|
+
845,115,120
|
|
1922
|
+
846,115,120
|
|
1923
|
+
847,116,119
|
|
1924
|
+
848,113,121
|
|
1925
|
+
849,113,120
|
|
1926
|
+
850,113,119
|
|
1927
|
+
851,115,119
|
|
1928
|
+
852,115,119
|
|
1929
|
+
853,118,119
|
|
1930
|
+
854,113,119
|
|
1931
|
+
855,113,119
|
|
1932
|
+
856,116,119
|
|
1933
|
+
857,117,119
|
|
1934
|
+
858,110,118
|
|
1935
|
+
859,115,119
|
|
1936
|
+
860,115,118
|
|
1937
|
+
861,115,121
|
|
1938
|
+
862,116,120
|
|
1939
|
+
863,116,119
|
|
1940
|
+
864,112,118
|
|
1941
|
+
865,113,119
|
|
1942
|
+
866,113,118
|
|
1943
|
+
867,116,121
|
|
1944
|
+
868,114,118
|
|
1945
|
+
869,114,118
|
|
1946
|
+
870,114,117
|
|
1947
|
+
871,114,118
|
|
1948
|
+
872,114,118
|
|
1949
|
+
873,117,120
|
|
1950
|
+
874,112,119
|
|
1951
|
+
875,114,120
|
|
1952
|
+
876,114,120
|
|
1953
|
+
877,111,119
|
|
1954
|
+
878,116,118
|
|
1955
|
+
879,116,120
|
|
1956
|
+
880,117,119
|
|
1957
|
+
881,113,119
|
|
1958
|
+
882,113,123
|
|
1959
|
+
883,115,123
|
|
1960
|
+
884,113,117
|
|
1961
|
+
885,113,116
|
|
1962
|
+
886,116,119
|
|
1963
|
+
887,115,119
|
|
1964
|
+
888,115,119
|
|
1965
|
+
889,115,121
|
|
1966
|
+
890,115,120
|
|
1967
|
+
891,114,116
|
|
1968
|
+
892,114,117
|
|
1969
|
+
893,118,119
|
|
1970
|
+
894,114,121
|
|
1971
|
+
895,115,120
|
|
1972
|
+
896,116,119
|
|
1973
|
+
897,114,118
|
|
1974
|
+
898,114,117
|
|
1975
|
+
899,114,117
|
|
1976
|
+
900,114,118
|
|
1977
|
+
901,111,119
|
|
1978
|
+
902,118,119
|
|
1979
|
+
903,118,119
|
|
1980
|
+
904,116,118
|
|
1981
|
+
905,116,118
|
|
1982
|
+
906,116,120
|
|
1983
|
+
907,113,119
|
|
1984
|
+
908,116,118
|
|
1985
|
+
909,116,117
|
|
1986
|
+
910,116,116
|
|
1987
|
+
911,116,116
|
|
1988
|
+
912,116,116
|
|
1989
|
+
913,116,116
|
|
1990
|
+
914,117,118
|
|
1991
|
+
915,117,118
|
|
1992
|
+
916,117,119
|
|
1993
|
+
917,111,120
|
|
1994
|
+
918,111,119
|
|
1995
|
+
919,115,118
|
|
1996
|
+
920,115,120
|
|
1997
|
+
921,111,120
|
|
1998
|
+
922,113,119
|
|
1999
|
+
923,113,119
|
|
2000
|
+
924,109,120
|
|
2001
|
+
925,114,119
|
|
2002
|
+
926,117,119
|
|
2003
|
+
927,115,118
|
|
2004
|
+
928,115,117
|
|
2005
|
+
929,115,116
|
|
2006
|
+
930,115,118
|
|
2007
|
+
931,114,120
|
|
2008
|
+
932,114,120
|
|
2009
|
+
933,116,119
|
|
2010
|
+
934,115,119
|
|
2011
|
+
935,115,118
|
|
2012
|
+
936,115,117
|
|
2013
|
+
937,112,117
|
|
2014
|
+
938,112,117
|
|
2015
|
+
939,112,117
|
|
2016
|
+
940,112,117
|
|
2017
|
+
941,115,119
|
|
2018
|
+
942,115,118
|
|
2019
|
+
943,116,119
|
|
2020
|
+
944,115,117
|
|
2021
|
+
945,115,118
|
|
2022
|
+
946,122,118
|
|
2023
|
+
947,120,118
|
|
2024
|
+
948,120,118
|
|
2025
|
+
949,120,118
|
|
2026
|
+
950,120,118
|
|
2027
|
+
951,112,121
|
|
2028
|
+
952,112,121
|
|
2029
|
+
953,115,120
|
|
2030
|
+
954,116,118
|
|
2031
|
+
955,116,119
|
|
2032
|
+
956,116,119
|
|
2033
|
+
957,114,119
|
|
2034
|
+
958,114,119
|
|
2035
|
+
959,114,119
|
|
2036
|
+
960,115,119
|
|
2037
|
+
961,114,122
|
|
2038
|
+
962,114,122
|
|
2039
|
+
963,114,121
|
|
2040
|
+
964,110,117
|
|
2041
|
+
965,116,118
|
|
2042
|
+
966,116,118
|
|
2043
|
+
967,111,116
|
|
2044
|
+
968,114,119
|
|
2045
|
+
969,114,118
|
|
2046
|
+
970,116,119
|
|
2047
|
+
971,114,121
|