@soundscript/soundscript 0.1.13 → 0.1.15
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/package.json +15 -6
- package/project-transform/index.js +2 -0
- package/project-transform/index.ts +8 -0
- package/project-transform/src/annotation_syntax.js +948 -0
- package/project-transform/src/annotation_syntax.ts +1217 -0
- package/project-transform/src/build_package.js +475 -0
- package/project-transform/src/build_package.ts +683 -0
- package/project-transform/src/bundled/portable-web-globals.d.ts +153 -0
- package/project-transform/src/bundled/runtime_externs.js +220 -0
- package/project-transform/src/bundled/runtime_externs.ts +237 -0
- package/project-transform/src/bundled/sound-libs/lib.decorators.d.ts +385 -0
- package/project-transform/src/bundled/sound-libs/lib.decorators.legacy.d.ts +22 -0
- package/project-transform/src/bundled/sound-libs/lib.dom.asynciterable.d.ts +42 -0
- package/project-transform/src/bundled/sound-libs/lib.dom.d.ts +39440 -0
- package/project-transform/src/bundled/sound-libs/lib.es2015.collection.d.ts +149 -0
- package/project-transform/src/bundled/sound-libs/lib.es2015.core.d.ts +657 -0
- package/project-transform/src/bundled/sound-libs/lib.es2015.d.ts +28 -0
- package/project-transform/src/bundled/sound-libs/lib.es2015.generator.d.ts +77 -0
- package/project-transform/src/bundled/sound-libs/lib.es2015.iterable.d.ts +616 -0
- package/project-transform/src/bundled/sound-libs/lib.es2015.promise.d.ts +80 -0
- package/project-transform/src/bundled/sound-libs/lib.es2015.proxy.d.ts +128 -0
- package/project-transform/src/bundled/sound-libs/lib.es2015.reflect.d.ts +144 -0
- package/project-transform/src/bundled/sound-libs/lib.es2015.symbol.d.ts +46 -0
- package/project-transform/src/bundled/sound-libs/lib.es2015.symbol.wellknown.d.ts +170 -0
- package/project-transform/src/bundled/sound-libs/lib.es2016.array.include.d.ts +116 -0
- package/project-transform/src/bundled/sound-libs/lib.es2016.d.ts +21 -0
- package/project-transform/src/bundled/sound-libs/lib.es2017.arraybuffer.d.ts +21 -0
- package/project-transform/src/bundled/sound-libs/lib.es2017.d.ts +26 -0
- package/project-transform/src/bundled/sound-libs/lib.es2017.date.d.ts +31 -0
- package/project-transform/src/bundled/sound-libs/lib.es2017.object.d.ts +49 -0
- package/project-transform/src/bundled/sound-libs/lib.es2017.string.d.ts +45 -0
- package/project-transform/src/bundled/sound-libs/lib.es2017.typedarrays.d.ts +53 -0
- package/project-transform/src/bundled/sound-libs/lib.es2018.asyncgenerator.d.ts +77 -0
- package/project-transform/src/bundled/sound-libs/lib.es2018.asynciterable.d.ts +57 -0
- package/project-transform/src/bundled/sound-libs/lib.es2018.d.ts +24 -0
- package/project-transform/src/bundled/sound-libs/lib.es2018.promise.d.ts +30 -0
- package/project-transform/src/bundled/sound-libs/lib.es2018.regexp.d.ts +37 -0
- package/project-transform/src/bundled/sound-libs/lib.es2019.array.d.ts +79 -0
- package/project-transform/src/bundled/sound-libs/lib.es2019.d.ts +24 -0
- package/project-transform/src/bundled/sound-libs/lib.es2019.object.d.ts +47 -0
- package/project-transform/src/bundled/sound-libs/lib.es2019.string.d.ts +37 -0
- package/project-transform/src/bundled/sound-libs/lib.es2019.symbol.d.ts +24 -0
- package/project-transform/src/bundled/sound-libs/lib.es2020.bigint.d.ts +765 -0
- package/project-transform/src/bundled/sound-libs/lib.es2020.d.ts +27 -0
- package/project-transform/src/bundled/sound-libs/lib.es2020.date.d.ts +42 -0
- package/project-transform/src/bundled/sound-libs/lib.es2020.number.d.ts +28 -0
- package/project-transform/src/bundled/sound-libs/lib.es2020.promise.d.ts +49 -0
- package/project-transform/src/bundled/sound-libs/lib.es2020.string.d.ts +44 -0
- package/project-transform/src/bundled/sound-libs/lib.es2020.symbol.wellknown.d.ts +41 -0
- package/project-transform/src/bundled/sound-libs/lib.es2021.d.ts +23 -0
- package/project-transform/src/bundled/sound-libs/lib.es2021.promise.d.ts +48 -0
- package/project-transform/src/bundled/sound-libs/lib.es2021.string.d.ts +33 -0
- package/project-transform/src/bundled/sound-libs/lib.es2021.weakref.d.ts +78 -0
- package/project-transform/src/bundled/sound-libs/lib.es2022.array.d.ts +121 -0
- package/project-transform/src/bundled/sound-libs/lib.es2022.d.ts +25 -0
- package/project-transform/src/bundled/sound-libs/lib.es2022.error.d.ts +75 -0
- package/project-transform/src/bundled/sound-libs/lib.es2022.object.d.ts +26 -0
- package/project-transform/src/bundled/sound-libs/lib.es2022.regexp.d.ts +39 -0
- package/project-transform/src/bundled/sound-libs/lib.es2022.string.d.ts +25 -0
- package/project-transform/src/bundled/sound-libs/lib.es2023.array.d.ts +924 -0
- package/project-transform/src/bundled/sound-libs/lib.es2023.collection.d.ts +21 -0
- package/project-transform/src/bundled/sound-libs/lib.es2023.d.ts +22 -0
- package/project-transform/src/bundled/sound-libs/lib.es2024.arraybuffer.d.ts +65 -0
- package/project-transform/src/bundled/sound-libs/lib.es2024.collection.d.ts +29 -0
- package/project-transform/src/bundled/sound-libs/lib.es2024.d.ts +26 -0
- package/project-transform/src/bundled/sound-libs/lib.es2024.object.d.ts +33 -0
- package/project-transform/src/bundled/sound-libs/lib.es2024.promise.d.ts +35 -0
- package/project-transform/src/bundled/sound-libs/lib.es2024.regexp.d.ts +25 -0
- package/project-transform/src/bundled/sound-libs/lib.es2024.string.d.ts +29 -0
- package/project-transform/src/bundled/sound-libs/lib.es5.d.ts +4924 -0
- package/project-transform/src/bundled/sound_stdlib.js +142 -0
- package/project-transform/src/bundled/sound_stdlib.ts +180 -0
- package/project-transform/src/checker/analyze_project.js +1361 -0
- package/project-transform/src/checker/analyze_project.ts +2246 -0
- package/project-transform/src/checker/diagnostics.js +112 -0
- package/project-transform/src/checker/diagnostics.ts +222 -0
- package/project-transform/src/checker/engine/context.js +235 -0
- package/project-transform/src/checker/engine/context.ts +340 -0
- package/project-transform/src/checker/engine/diagnostic_codes.js +72 -0
- package/project-transform/src/checker/engine/diagnostic_codes.ts +95 -0
- package/project-transform/src/checker/engine/facts.js +35 -0
- package/project-transform/src/checker/engine/facts.ts +48 -0
- package/project-transform/src/checker/engine/types.js +1 -0
- package/project-transform/src/checker/engine/types.ts +485 -0
- package/project-transform/src/checker/proof_escape_hatch_diagnostics.js +104 -0
- package/project-transform/src/checker/proof_escape_hatch_diagnostics.ts +173 -0
- package/project-transform/src/checker/rules/async_surface.js +231 -0
- package/project-transform/src/checker/rules/async_surface.ts +335 -0
- package/project-transform/src/checker/rules/class_lifecycle.js +798 -0
- package/project-transform/src/checker/rules/class_lifecycle.ts +1276 -0
- package/project-transform/src/checker/rules/directive_validation.js +571 -0
- package/project-transform/src/checker/rules/directive_validation.ts +938 -0
- package/project-transform/src/checker/rules/directives.js +23 -0
- package/project-transform/src/checker/rules/directives.ts +25 -0
- package/project-transform/src/checker/rules/flow.js +202 -0
- package/project-transform/src/checker/rules/flow.ts +333 -0
- package/project-transform/src/checker/rules/flow_facts.js +601 -0
- package/project-transform/src/checker/rules/flow_facts.ts +978 -0
- package/project-transform/src/checker/rules/flow_invalidation.js +1119 -0
- package/project-transform/src/checker/rules/flow_invalidation.ts +2150 -0
- package/project-transform/src/checker/rules/flow_shared.js +2822 -0
- package/project-transform/src/checker/rules/flow_shared.ts +4383 -0
- package/project-transform/src/checker/rules/foreign_boundary.js +120 -0
- package/project-transform/src/checker/rules/foreign_boundary.ts +196 -0
- package/project-transform/src/checker/rules/foreign_projection.js +279 -0
- package/project-transform/src/checker/rules/foreign_projection.ts +425 -0
- package/project-transform/src/checker/rules/generated_helpers.js +13 -0
- package/project-transform/src/checker/rules/generated_helpers.ts +18 -0
- package/project-transform/src/checker/rules/index.js +35 -0
- package/project-transform/src/checker/rules/index.ts +49 -0
- package/project-transform/src/checker/rules/namespace_object.js +845 -0
- package/project-transform/src/checker/rules/namespace_object.ts +1224 -0
- package/project-transform/src/checker/rules/non_ordinary_recovery.js +1328 -0
- package/project-transform/src/checker/rules/non_ordinary_recovery.ts +2391 -0
- package/project-transform/src/checker/rules/null_prototype.js +3 -0
- package/project-transform/src/checker/rules/null_prototype.ts +6 -0
- package/project-transform/src/checker/rules/overloads.js +181 -0
- package/project-transform/src/checker/rules/overloads.ts +317 -0
- package/project-transform/src/checker/rules/predicate_verification.js +691 -0
- package/project-transform/src/checker/rules/predicate_verification.ts +1088 -0
- package/project-transform/src/checker/rules/prototype_hardening.js +237 -0
- package/project-transform/src/checker/rules/prototype_hardening.ts +343 -0
- package/project-transform/src/checker/rules/receiver_discipline.js +263 -0
- package/project-transform/src/checker/rules/receiver_discipline.ts +356 -0
- package/project-transform/src/checker/rules/relations.js +6861 -0
- package/project-transform/src/checker/rules/relations.ts +12158 -0
- package/project-transform/src/checker/rules/resolved_builtins.js +274 -0
- package/project-transform/src/checker/rules/resolved_builtins.ts +438 -0
- package/project-transform/src/checker/rules/trust.js +217 -0
- package/project-transform/src/checker/rules/trust.ts +301 -0
- package/project-transform/src/checker/rules/type_guards.js +173 -0
- package/project-transform/src/checker/rules/type_guards.ts +257 -0
- package/project-transform/src/checker/rules/universal.js +17 -0
- package/project-transform/src/checker/rules/universal.ts +22 -0
- package/project-transform/src/checker/rules/unsafe_value_origin.js +80 -0
- package/project-transform/src/checker/rules/unsafe_value_origin.ts +125 -0
- package/project-transform/src/checker/rules/unsound_imports.js +218 -0
- package/project-transform/src/checker/rules/unsound_imports.ts +301 -0
- package/project-transform/src/checker/rules/unsound_syntax.js +1695 -0
- package/project-transform/src/checker/rules/unsound_syntax.ts +2540 -0
- package/project-transform/src/checker/rules/value_types.js +206 -0
- package/project-transform/src/checker/rules/value_types.ts +407 -0
- package/project-transform/src/checker/timing.js +43 -0
- package/project-transform/src/checker/timing.ts +78 -0
- package/project-transform/src/checker/unsupported_feature_messages.js +337 -0
- package/project-transform/src/checker/unsupported_feature_messages.ts +531 -0
- package/project-transform/src/cli.js +892 -0
- package/project-transform/src/cli.ts +1476 -0
- package/project-transform/src/compiler/compile_project.js +319 -0
- package/project-transform/src/compiler/compile_project.ts +508 -0
- package/project-transform/src/compiler/errors.js +10 -0
- package/project-transform/src/compiler/errors.ts +29 -0
- package/project-transform/src/compiler/ir.js +1 -0
- package/project-transform/src/compiler/ir.ts +1526 -0
- package/project-transform/src/compiler/lower.js +30550 -0
- package/project-transform/src/compiler/lower.ts +43645 -0
- package/project-transform/src/compiler/lower_arrays.js +140 -0
- package/project-transform/src/compiler/lower_arrays.ts +190 -0
- package/project-transform/src/compiler/lower_strings.js +121 -0
- package/project-transform/src/compiler/lower_strings.ts +198 -0
- package/project-transform/src/compiler/lower_tagged.js +329 -0
- package/project-transform/src/compiler/lower_tagged.ts +427 -0
- package/project-transform/src/compiler/lower_views.js +171 -0
- package/project-transform/src/compiler/lower_views.ts +251 -0
- package/project-transform/src/compiler/object_keys.js +25 -0
- package/project-transform/src/compiler/object_keys.ts +35 -0
- package/project-transform/src/compiler/runtime_ir.js +30 -0
- package/project-transform/src/compiler/runtime_ir.ts +727 -0
- package/project-transform/src/compiler/tagged_boundary.js +18 -0
- package/project-transform/src/compiler/tagged_boundary.ts +37 -0
- package/project-transform/src/compiler/toolchain.js +170 -0
- package/project-transform/src/compiler/toolchain.ts +229 -0
- package/project-transform/src/compiler/unicode_case_data.js +2102 -0
- package/project-transform/src/compiler/unicode_case_data.ts +2112 -0
- package/project-transform/src/compiler/wasm_js_host_runtime.js +656 -0
- package/project-transform/src/compiler/wasm_js_host_runtime.ts +762 -0
- package/project-transform/src/compiler/wat_arrays.js +3132 -0
- package/project-transform/src/compiler/wat_arrays.ts +3768 -0
- package/project-transform/src/compiler/wat_emitter.js +17952 -0
- package/project-transform/src/compiler/wat_emitter.ts +22812 -0
- package/project-transform/src/compiler/wat_strings.js +129 -0
- package/project-transform/src/compiler/wat_strings.ts +187 -0
- package/project-transform/src/compiler/wat_tagged.js +548 -0
- package/project-transform/src/compiler/wat_tagged.ts +674 -0
- package/project-transform/src/compiler_generator_runner.js +153 -0
- package/project-transform/src/compiler_generator_runner.ts +171 -0
- package/project-transform/src/compiler_object_test_helpers.js +69 -0
- package/project-transform/src/compiler_object_test_helpers.ts +96 -0
- package/project-transform/src/compiler_promise_runner.js +2116 -0
- package/project-transform/src/compiler_promise_runner.ts +2184 -0
- package/project-transform/src/compiler_test_helpers.js +854 -0
- package/project-transform/src/compiler_test_helpers.ts +1087 -0
- package/project-transform/src/config.js +568 -0
- package/project-transform/src/config.ts +892 -0
- package/project-transform/src/diagnostic_metadata.js +67 -0
- package/project-transform/src/diagnostic_metadata.ts +99 -0
- package/project-transform/src/diagnostic_reference.js +1368 -0
- package/project-transform/src/diagnostic_reference.ts +1523 -0
- package/project-transform/src/editor_diagnostics_worker.js +176 -0
- package/project-transform/src/editor_diagnostics_worker.ts +250 -0
- package/project-transform/src/editor_projection.js +224 -0
- package/project-transform/src/editor_projection.ts +421 -0
- package/project-transform/src/frontend/builtin_expanded_program_test_cleanup.js +47 -0
- package/project-transform/src/frontend/builtin_expanded_program_test_cleanup.ts +72 -0
- package/project-transform/src/frontend/builtin_macro_support.js +842 -0
- package/project-transform/src/frontend/builtin_macro_support.ts +1386 -0
- package/project-transform/src/frontend/builtin_macros.js +409 -0
- package/project-transform/src/frontend/builtin_macros.ts +542 -0
- package/project-transform/src/frontend/component_poc_runtime.js +279 -0
- package/project-transform/src/frontend/component_poc_runtime.ts +372 -0
- package/project-transform/src/frontend/css_macro.js +148 -0
- package/project-transform/src/frontend/css_macro.ts +222 -0
- package/project-transform/src/frontend/derive_macros.js +2072 -0
- package/project-transform/src/frontend/derive_macros.ts +3188 -0
- package/project-transform/src/frontend/embedded_fragment_support.js +106 -0
- package/project-transform/src/frontend/embedded_fragment_support.ts +172 -0
- package/project-transform/src/frontend/error_normalization.js +403 -0
- package/project-transform/src/frontend/error_normalization.ts +832 -0
- package/project-transform/src/frontend/error_stdlib_support.js +1 -0
- package/project-transform/src/frontend/error_stdlib_support.ts +6 -0
- package/project-transform/src/frontend/expand_project.js +169 -0
- package/project-transform/src/frontend/expand_project.ts +248 -0
- package/project-transform/src/frontend/format_soundscript.js +297 -0
- package/project-transform/src/frontend/format_soundscript.ts +582 -0
- package/project-transform/src/frontend/graphql_macro.js +174 -0
- package/project-transform/src/frontend/graphql_macro.ts +253 -0
- package/project-transform/src/frontend/hash_context.js +83 -0
- package/project-transform/src/frontend/hash_context.ts +113 -0
- package/project-transform/src/frontend/hkt_macro.js +448 -0
- package/project-transform/src/frontend/hkt_macro.ts +897 -0
- package/project-transform/src/frontend/import_binding_usage.js +190 -0
- package/project-transform/src/frontend/import_binding_usage.ts +277 -0
- package/project-transform/src/frontend/macro_advanced_backend_adapter.js +58 -0
- package/project-transform/src/frontend/macro_advanced_backend_adapter.ts +123 -0
- package/project-transform/src/frontend/macro_advanced_context.js +826 -0
- package/project-transform/src/frontend/macro_advanced_context.ts +1102 -0
- package/project-transform/src/frontend/macro_advanced_output.js +21 -0
- package/project-transform/src/frontend/macro_advanced_output.ts +41 -0
- package/project-transform/src/frontend/macro_api.js +353 -0
- package/project-transform/src/frontend/macro_api.ts +1722 -0
- package/project-transform/src/frontend/macro_api_internal.js +35 -0
- package/project-transform/src/frontend/macro_api_internal.ts +80 -0
- package/project-transform/src/frontend/macro_api_module_support.js +39 -0
- package/project-transform/src/frontend/macro_api_module_support.ts +65 -0
- package/project-transform/src/frontend/macro_backend_adapter.js +272 -0
- package/project-transform/src/frontend/macro_backend_adapter.ts +420 -0
- package/project-transform/src/frontend/macro_context.js +816 -0
- package/project-transform/src/frontend/macro_context.ts +1105 -0
- package/project-transform/src/frontend/macro_debug.js +99 -0
- package/project-transform/src/frontend/macro_debug.ts +157 -0
- package/project-transform/src/frontend/macro_definition_support.js +28 -0
- package/project-transform/src/frontend/macro_definition_support.ts +73 -0
- package/project-transform/src/frontend/macro_errors.js +40 -0
- package/project-transform/src/frontend/macro_errors.ts +70 -0
- package/project-transform/src/frontend/macro_expander.js +919 -0
- package/project-transform/src/frontend/macro_expander.ts +1611 -0
- package/project-transform/src/frontend/macro_factory_support.js +176 -0
- package/project-transform/src/frontend/macro_factory_support.ts +263 -0
- package/project-transform/src/frontend/macro_host_ast_internal.js +64 -0
- package/project-transform/src/frontend/macro_host_ast_internal.ts +109 -0
- package/project-transform/src/frontend/macro_index.js +27 -0
- package/project-transform/src/frontend/macro_index.ts +50 -0
- package/project-transform/src/frontend/macro_loader.js +281 -0
- package/project-transform/src/frontend/macro_loader.ts +506 -0
- package/project-transform/src/frontend/macro_operand_semantics.js +838 -0
- package/project-transform/src/frontend/macro_operand_semantics.ts +1489 -0
- package/project-transform/src/frontend/macro_output.js +54 -0
- package/project-transform/src/frontend/macro_output.ts +123 -0
- package/project-transform/src/frontend/macro_parser.js +611 -0
- package/project-transform/src/frontend/macro_parser.ts +832 -0
- package/project-transform/src/frontend/macro_resolver.js +69 -0
- package/project-transform/src/frontend/macro_resolver.ts +125 -0
- package/project-transform/src/frontend/macro_rewrite.js +285 -0
- package/project-transform/src/frontend/macro_rewrite.ts +442 -0
- package/project-transform/src/frontend/macro_runtime_support.js +232 -0
- package/project-transform/src/frontend/macro_runtime_support.ts +324 -0
- package/project-transform/src/frontend/macro_scanner.js +393 -0
- package/project-transform/src/frontend/macro_scanner.ts +455 -0
- package/project-transform/src/frontend/macro_semantic_backend_adapter.js +87 -0
- package/project-transform/src/frontend/macro_semantic_backend_adapter.ts +166 -0
- package/project-transform/src/frontend/macro_semantic_context.js +5 -0
- package/project-transform/src/frontend/macro_semantic_context.ts +12 -0
- package/project-transform/src/frontend/macro_semantic_output.js +24 -0
- package/project-transform/src/frontend/macro_semantic_output.ts +47 -0
- package/project-transform/src/frontend/macro_semantic_types.js +1 -0
- package/project-transform/src/frontend/macro_semantic_types.ts +98 -0
- package/project-transform/src/frontend/macro_semantics.js +1172 -0
- package/project-transform/src/frontend/macro_semantics.ts +1502 -0
- package/project-transform/src/frontend/macro_site_kind_support.js +164 -0
- package/project-transform/src/frontend/macro_site_kind_support.ts +255 -0
- package/project-transform/src/frontend/macro_syntax_internal.js +1950 -0
- package/project-transform/src/frontend/macro_syntax_internal.ts +3338 -0
- package/project-transform/src/frontend/macro_templates.js +57 -0
- package/project-transform/src/frontend/macro_templates.ts +143 -0
- package/project-transform/src/frontend/macro_test_helpers.js +82 -0
- package/project-transform/src/frontend/macro_test_helpers.ts +136 -0
- package/project-transform/src/frontend/macro_types.js +1 -0
- package/project-transform/src/frontend/macro_types.ts +103 -0
- package/project-transform/src/frontend/macro_vm.js +39 -0
- package/project-transform/src/frontend/macro_vm.ts +113 -0
- package/project-transform/src/frontend/match_macro.js +885 -0
- package/project-transform/src/frontend/match_macro.ts +1220 -0
- package/project-transform/src/frontend/numeric_normalization.js +824 -0
- package/project-transform/src/frontend/numeric_normalization.ts +1380 -0
- package/project-transform/src/frontend/numeric_prelude.js +278 -0
- package/project-transform/src/frontend/numeric_prelude.ts +370 -0
- package/project-transform/src/frontend/project_frontend.js +2396 -0
- package/project-transform/src/frontend/project_frontend.ts +3776 -0
- package/project-transform/src/frontend/project_macro_support.js +1401 -0
- package/project-transform/src/frontend/project_macro_support.ts +2137 -0
- package/project-transform/src/frontend/sql_macro.js +175 -0
- package/project-transform/src/frontend/sql_macro.ts +254 -0
- package/project-transform/src/frontend/sql_stdlib_support.js +1 -0
- package/project-transform/src/frontend/sql_stdlib_support.ts +6 -0
- package/project-transform/src/frontend/std_package_support.js +228 -0
- package/project-transform/src/frontend/std_package_support.ts +400 -0
- package/project-transform/src/frontend/value_normalization.js +306 -0
- package/project-transform/src/frontend/value_normalization.ts +599 -0
- package/project-transform/src/lsp/project_service.js +4771 -0
- package/project-transform/src/lsp/project_service.ts +7580 -0
- package/project-transform/src/lsp/protocol.js +9 -0
- package/project-transform/src/lsp/protocol.ts +38 -0
- package/project-transform/src/lsp/server.js +355 -0
- package/project-transform/src/lsp/server.ts +671 -0
- package/project-transform/src/lsp/session.js +49 -0
- package/project-transform/src/lsp/session.ts +48 -0
- package/project-transform/src/lsp/timing.js +43 -0
- package/project-transform/src/lsp/timing.ts +76 -0
- package/project-transform/src/lsp/transport.js +205 -0
- package/project-transform/src/lsp/transport.ts +253 -0
- package/project-transform/src/lsp_main.js +5 -0
- package/project-transform/src/lsp_main.ts +7 -0
- package/project-transform/src/macros.d.ts +1 -0
- package/project-transform/src/macros.js +1 -0
- package/project-transform/src/macros.ts +1 -0
- package/project-transform/src/main.js +24 -0
- package/project-transform/src/main.ts +28 -0
- package/project-transform/src/platform/host.js +264 -0
- package/project-transform/src/platform/host.ts +343 -0
- package/project-transform/src/platform/path.js +8 -0
- package/project-transform/src/platform/path.ts +20 -0
- package/project-transform/src/public_macro_api/macro_api.d.ts +1054 -0
- package/project-transform/src/public_macro_api/macro_semantic_types.d.ts +66 -0
- package/project-transform/src/public_macro_api/macro_types.d.ts +70 -0
- package/project-transform/src/run_program.js +14 -0
- package/project-transform/src/run_program.ts +33 -0
- package/project-transform/src/runtime/materialize.js +371 -0
- package/project-transform/src/runtime/materialize.ts +502 -0
- package/project-transform/src/runtime/on_demand.js +203 -0
- package/project-transform/src/runtime/on_demand.ts +305 -0
- package/project-transform/src/runtime/source_maps.js +205 -0
- package/project-transform/src/runtime/source_maps.ts +297 -0
- package/project-transform/src/runtime/transform.js +148 -0
- package/project-transform/src/runtime/transform.ts +295 -0
- package/project-transform/src/service/types.js +1 -0
- package/project-transform/src/service/types.ts +22 -0
- package/project-transform/src/soundscript_packages.js +477 -0
- package/project-transform/src/soundscript_packages.ts +754 -0
- package/project-transform/src/soundscript_runtime_specifiers.js +88 -0
- package/project-transform/src/soundscript_runtime_specifiers.ts +96 -0
- package/project-transform/src/stdlib/async.d.ts +81 -0
- package/project-transform/src/stdlib/async.js +213 -0
- package/project-transform/src/stdlib/async.ts +315 -0
- package/project-transform/src/stdlib/codec.d.ts +32 -0
- package/project-transform/src/stdlib/codec.js +30 -0
- package/project-transform/src/stdlib/codec.ts +76 -0
- package/project-transform/src/stdlib/compare.d.ts +28 -0
- package/project-transform/src/stdlib/compare.js +115 -0
- package/project-transform/src/stdlib/compare.ts +151 -0
- package/project-transform/src/stdlib/css.d.ts +16 -0
- package/project-transform/src/stdlib/css.js +9 -0
- package/project-transform/src/stdlib/css.ts +28 -0
- package/project-transform/src/stdlib/debug.d.ts +2 -0
- package/project-transform/src/stdlib/debug.js +9 -0
- package/project-transform/src/stdlib/debug.ts +10 -0
- package/project-transform/src/stdlib/decode.d.ts +86 -0
- package/project-transform/src/stdlib/decode.js +254 -0
- package/project-transform/src/stdlib/decode.ts +390 -0
- package/project-transform/src/stdlib/derive.d.ts +6 -0
- package/project-transform/src/stdlib/derive.js +7 -0
- package/project-transform/src/stdlib/derive.ts +7 -0
- package/project-transform/src/stdlib/encode.d.ts +100 -0
- package/project-transform/src/stdlib/encode.js +130 -0
- package/project-transform/src/stdlib/encode.ts +259 -0
- package/project-transform/src/stdlib/failures.d.ts +23 -0
- package/project-transform/src/stdlib/failures.js +41 -0
- package/project-transform/src/stdlib/failures.ts +64 -0
- package/project-transform/src/stdlib/fetch.d.ts +67 -0
- package/project-transform/src/stdlib/fetch.js +5 -0
- package/project-transform/src/stdlib/fetch.ts +11 -0
- package/project-transform/src/stdlib/graphql.d.ts +16 -0
- package/project-transform/src/stdlib/graphql.js +9 -0
- package/project-transform/src/stdlib/graphql.ts +28 -0
- package/project-transform/src/stdlib/hash.d.ts +34 -0
- package/project-transform/src/stdlib/hash.js +110 -0
- package/project-transform/src/stdlib/hash.ts +188 -0
- package/project-transform/src/stdlib/hkt.d.ts +40 -0
- package/project-transform/src/stdlib/hkt.js +3 -0
- package/project-transform/src/stdlib/hkt.ts +41 -0
- package/project-transform/src/stdlib/index.d.ts +9 -0
- package/project-transform/src/stdlib/index.js +15 -0
- package/project-transform/src/stdlib/index.ts +23 -0
- package/project-transform/src/stdlib/json.d.ts +125 -0
- package/project-transform/src/stdlib/json.js +764 -0
- package/project-transform/src/stdlib/json.ts +1034 -0
- package/project-transform/src/stdlib/match.d.ts +11 -0
- package/project-transform/src/stdlib/match.js +13 -0
- package/project-transform/src/stdlib/match.ts +26 -0
- package/project-transform/src/stdlib/numerics.d.ts +523 -0
- package/project-transform/src/stdlib/numerics.js +1356 -0
- package/project-transform/src/stdlib/numerics.ts +1937 -0
- package/project-transform/src/stdlib/random.d.ts +19 -0
- package/project-transform/src/stdlib/random.js +3 -0
- package/project-transform/src/stdlib/random.ts +5 -0
- package/project-transform/src/stdlib/result.d.ts +68 -0
- package/project-transform/src/stdlib/result.js +139 -0
- package/project-transform/src/stdlib/result.ts +248 -0
- package/project-transform/src/stdlib/sql.d.ts +22 -0
- package/project-transform/src/stdlib/sql.js +23 -0
- package/project-transform/src/stdlib/sql.ts +53 -0
- package/project-transform/src/stdlib/text.d.ts +24 -0
- package/project-transform/src/stdlib/text.js +3 -0
- package/project-transform/src/stdlib/text.ts +4 -0
- package/project-transform/src/stdlib/thunk.d.ts +2 -0
- package/project-transform/src/stdlib/thunk.js +9 -0
- package/project-transform/src/stdlib/thunk.ts +15 -0
- package/project-transform/src/stdlib/typeclasses.d.ts +57 -0
- package/project-transform/src/stdlib/typeclasses.js +78 -0
- package/project-transform/src/stdlib/typeclasses.ts +173 -0
- package/project-transform/src/stdlib/url.d.ts +37 -0
- package/project-transform/src/stdlib/url.js +3 -0
- package/project-transform/src/stdlib/url.ts +4 -0
- package/project-transform/src/stdlib/value.d.ts +9 -0
- package/project-transform/src/stdlib/value.js +104 -0
- package/project-transform/src/stdlib/value.ts +133 -0
- package/project-transform/src/test_installed_stdlib.js +147 -0
- package/project-transform/src/test_installed_stdlib.ts +245 -0
- package/project-transform/src/test_macro_package_fixture.js +50 -0
- package/project-transform/src/test_macro_package_fixture.ts +68 -0
- package/project-transform/src/value_deep_safe.js +191 -0
- package/project-transform/src/value_deep_safe.ts +273 -0
|
@@ -0,0 +1,2102 @@
|
|
|
1
|
+
export const UPPER_DELTA_RANGES = [
|
|
2
|
+
[0x61, 0x7a, -0x20],
|
|
3
|
+
[0xb5, 0xb5, 0x2e7],
|
|
4
|
+
[0xe0, 0xf6, -0x20],
|
|
5
|
+
[0xf8, 0xfe, -0x20],
|
|
6
|
+
[0xff, 0xff, 0x79],
|
|
7
|
+
[0x101, 0x101, -0x1],
|
|
8
|
+
[0x103, 0x103, -0x1],
|
|
9
|
+
[0x105, 0x105, -0x1],
|
|
10
|
+
[0x107, 0x107, -0x1],
|
|
11
|
+
[0x109, 0x109, -0x1],
|
|
12
|
+
[0x10b, 0x10b, -0x1],
|
|
13
|
+
[0x10d, 0x10d, -0x1],
|
|
14
|
+
[0x10f, 0x10f, -0x1],
|
|
15
|
+
[0x111, 0x111, -0x1],
|
|
16
|
+
[0x113, 0x113, -0x1],
|
|
17
|
+
[0x115, 0x115, -0x1],
|
|
18
|
+
[0x117, 0x117, -0x1],
|
|
19
|
+
[0x119, 0x119, -0x1],
|
|
20
|
+
[0x11b, 0x11b, -0x1],
|
|
21
|
+
[0x11d, 0x11d, -0x1],
|
|
22
|
+
[0x11f, 0x11f, -0x1],
|
|
23
|
+
[0x121, 0x121, -0x1],
|
|
24
|
+
[0x123, 0x123, -0x1],
|
|
25
|
+
[0x125, 0x125, -0x1],
|
|
26
|
+
[0x127, 0x127, -0x1],
|
|
27
|
+
[0x129, 0x129, -0x1],
|
|
28
|
+
[0x12b, 0x12b, -0x1],
|
|
29
|
+
[0x12d, 0x12d, -0x1],
|
|
30
|
+
[0x12f, 0x12f, -0x1],
|
|
31
|
+
[0x131, 0x131, -0xe8],
|
|
32
|
+
[0x133, 0x133, -0x1],
|
|
33
|
+
[0x135, 0x135, -0x1],
|
|
34
|
+
[0x137, 0x137, -0x1],
|
|
35
|
+
[0x13a, 0x13a, -0x1],
|
|
36
|
+
[0x13c, 0x13c, -0x1],
|
|
37
|
+
[0x13e, 0x13e, -0x1],
|
|
38
|
+
[0x140, 0x140, -0x1],
|
|
39
|
+
[0x142, 0x142, -0x1],
|
|
40
|
+
[0x144, 0x144, -0x1],
|
|
41
|
+
[0x146, 0x146, -0x1],
|
|
42
|
+
[0x148, 0x148, -0x1],
|
|
43
|
+
[0x14b, 0x14b, -0x1],
|
|
44
|
+
[0x14d, 0x14d, -0x1],
|
|
45
|
+
[0x14f, 0x14f, -0x1],
|
|
46
|
+
[0x151, 0x151, -0x1],
|
|
47
|
+
[0x153, 0x153, -0x1],
|
|
48
|
+
[0x155, 0x155, -0x1],
|
|
49
|
+
[0x157, 0x157, -0x1],
|
|
50
|
+
[0x159, 0x159, -0x1],
|
|
51
|
+
[0x15b, 0x15b, -0x1],
|
|
52
|
+
[0x15d, 0x15d, -0x1],
|
|
53
|
+
[0x15f, 0x15f, -0x1],
|
|
54
|
+
[0x161, 0x161, -0x1],
|
|
55
|
+
[0x163, 0x163, -0x1],
|
|
56
|
+
[0x165, 0x165, -0x1],
|
|
57
|
+
[0x167, 0x167, -0x1],
|
|
58
|
+
[0x169, 0x169, -0x1],
|
|
59
|
+
[0x16b, 0x16b, -0x1],
|
|
60
|
+
[0x16d, 0x16d, -0x1],
|
|
61
|
+
[0x16f, 0x16f, -0x1],
|
|
62
|
+
[0x171, 0x171, -0x1],
|
|
63
|
+
[0x173, 0x173, -0x1],
|
|
64
|
+
[0x175, 0x175, -0x1],
|
|
65
|
+
[0x177, 0x177, -0x1],
|
|
66
|
+
[0x17a, 0x17a, -0x1],
|
|
67
|
+
[0x17c, 0x17c, -0x1],
|
|
68
|
+
[0x17e, 0x17e, -0x1],
|
|
69
|
+
[0x17f, 0x17f, -0x12c],
|
|
70
|
+
[0x180, 0x180, 0xc3],
|
|
71
|
+
[0x183, 0x183, -0x1],
|
|
72
|
+
[0x185, 0x185, -0x1],
|
|
73
|
+
[0x188, 0x188, -0x1],
|
|
74
|
+
[0x18c, 0x18c, -0x1],
|
|
75
|
+
[0x192, 0x192, -0x1],
|
|
76
|
+
[0x195, 0x195, 0x61],
|
|
77
|
+
[0x199, 0x199, -0x1],
|
|
78
|
+
[0x19a, 0x19a, 0xa3],
|
|
79
|
+
[0x19b, 0x19b, 0xa641],
|
|
80
|
+
[0x19e, 0x19e, 0x82],
|
|
81
|
+
[0x1a1, 0x1a1, -0x1],
|
|
82
|
+
[0x1a3, 0x1a3, -0x1],
|
|
83
|
+
[0x1a5, 0x1a5, -0x1],
|
|
84
|
+
[0x1a8, 0x1a8, -0x1],
|
|
85
|
+
[0x1ad, 0x1ad, -0x1],
|
|
86
|
+
[0x1b0, 0x1b0, -0x1],
|
|
87
|
+
[0x1b4, 0x1b4, -0x1],
|
|
88
|
+
[0x1b6, 0x1b6, -0x1],
|
|
89
|
+
[0x1b9, 0x1b9, -0x1],
|
|
90
|
+
[0x1bd, 0x1bd, -0x1],
|
|
91
|
+
[0x1bf, 0x1bf, 0x38],
|
|
92
|
+
[0x1c5, 0x1c5, -0x1],
|
|
93
|
+
[0x1c6, 0x1c6, -0x2],
|
|
94
|
+
[0x1c8, 0x1c8, -0x1],
|
|
95
|
+
[0x1c9, 0x1c9, -0x2],
|
|
96
|
+
[0x1cb, 0x1cb, -0x1],
|
|
97
|
+
[0x1cc, 0x1cc, -0x2],
|
|
98
|
+
[0x1ce, 0x1ce, -0x1],
|
|
99
|
+
[0x1d0, 0x1d0, -0x1],
|
|
100
|
+
[0x1d2, 0x1d2, -0x1],
|
|
101
|
+
[0x1d4, 0x1d4, -0x1],
|
|
102
|
+
[0x1d6, 0x1d6, -0x1],
|
|
103
|
+
[0x1d8, 0x1d8, -0x1],
|
|
104
|
+
[0x1da, 0x1da, -0x1],
|
|
105
|
+
[0x1dc, 0x1dc, -0x1],
|
|
106
|
+
[0x1dd, 0x1dd, -0x4f],
|
|
107
|
+
[0x1df, 0x1df, -0x1],
|
|
108
|
+
[0x1e1, 0x1e1, -0x1],
|
|
109
|
+
[0x1e3, 0x1e3, -0x1],
|
|
110
|
+
[0x1e5, 0x1e5, -0x1],
|
|
111
|
+
[0x1e7, 0x1e7, -0x1],
|
|
112
|
+
[0x1e9, 0x1e9, -0x1],
|
|
113
|
+
[0x1eb, 0x1eb, -0x1],
|
|
114
|
+
[0x1ed, 0x1ed, -0x1],
|
|
115
|
+
[0x1ef, 0x1ef, -0x1],
|
|
116
|
+
[0x1f2, 0x1f2, -0x1],
|
|
117
|
+
[0x1f3, 0x1f3, -0x2],
|
|
118
|
+
[0x1f5, 0x1f5, -0x1],
|
|
119
|
+
[0x1f9, 0x1f9, -0x1],
|
|
120
|
+
[0x1fb, 0x1fb, -0x1],
|
|
121
|
+
[0x1fd, 0x1fd, -0x1],
|
|
122
|
+
[0x1ff, 0x1ff, -0x1],
|
|
123
|
+
[0x201, 0x201, -0x1],
|
|
124
|
+
[0x203, 0x203, -0x1],
|
|
125
|
+
[0x205, 0x205, -0x1],
|
|
126
|
+
[0x207, 0x207, -0x1],
|
|
127
|
+
[0x209, 0x209, -0x1],
|
|
128
|
+
[0x20b, 0x20b, -0x1],
|
|
129
|
+
[0x20d, 0x20d, -0x1],
|
|
130
|
+
[0x20f, 0x20f, -0x1],
|
|
131
|
+
[0x211, 0x211, -0x1],
|
|
132
|
+
[0x213, 0x213, -0x1],
|
|
133
|
+
[0x215, 0x215, -0x1],
|
|
134
|
+
[0x217, 0x217, -0x1],
|
|
135
|
+
[0x219, 0x219, -0x1],
|
|
136
|
+
[0x21b, 0x21b, -0x1],
|
|
137
|
+
[0x21d, 0x21d, -0x1],
|
|
138
|
+
[0x21f, 0x21f, -0x1],
|
|
139
|
+
[0x223, 0x223, -0x1],
|
|
140
|
+
[0x225, 0x225, -0x1],
|
|
141
|
+
[0x227, 0x227, -0x1],
|
|
142
|
+
[0x229, 0x229, -0x1],
|
|
143
|
+
[0x22b, 0x22b, -0x1],
|
|
144
|
+
[0x22d, 0x22d, -0x1],
|
|
145
|
+
[0x22f, 0x22f, -0x1],
|
|
146
|
+
[0x231, 0x231, -0x1],
|
|
147
|
+
[0x233, 0x233, -0x1],
|
|
148
|
+
[0x23c, 0x23c, -0x1],
|
|
149
|
+
[0x23f, 0x240, 0x2a3f],
|
|
150
|
+
[0x242, 0x242, -0x1],
|
|
151
|
+
[0x247, 0x247, -0x1],
|
|
152
|
+
[0x249, 0x249, -0x1],
|
|
153
|
+
[0x24b, 0x24b, -0x1],
|
|
154
|
+
[0x24d, 0x24d, -0x1],
|
|
155
|
+
[0x24f, 0x24f, -0x1],
|
|
156
|
+
[0x250, 0x250, 0x2a1f],
|
|
157
|
+
[0x251, 0x251, 0x2a1c],
|
|
158
|
+
[0x252, 0x252, 0x2a1e],
|
|
159
|
+
[0x253, 0x253, -0xd2],
|
|
160
|
+
[0x254, 0x254, -0xce],
|
|
161
|
+
[0x256, 0x257, -0xcd],
|
|
162
|
+
[0x259, 0x259, -0xca],
|
|
163
|
+
[0x25b, 0x25b, -0xcb],
|
|
164
|
+
[0x25c, 0x25c, 0xa54f],
|
|
165
|
+
[0x260, 0x260, -0xcd],
|
|
166
|
+
[0x261, 0x261, 0xa54b],
|
|
167
|
+
[0x263, 0x263, -0xcf],
|
|
168
|
+
[0x264, 0x264, 0xa567],
|
|
169
|
+
[0x265, 0x265, 0xa528],
|
|
170
|
+
[0x266, 0x266, 0xa544],
|
|
171
|
+
[0x268, 0x268, -0xd1],
|
|
172
|
+
[0x269, 0x269, -0xd3],
|
|
173
|
+
[0x26a, 0x26a, 0xa544],
|
|
174
|
+
[0x26b, 0x26b, 0x29f7],
|
|
175
|
+
[0x26c, 0x26c, 0xa541],
|
|
176
|
+
[0x26f, 0x26f, -0xd3],
|
|
177
|
+
[0x271, 0x271, 0x29fd],
|
|
178
|
+
[0x272, 0x272, -0xd5],
|
|
179
|
+
[0x275, 0x275, -0xd6],
|
|
180
|
+
[0x27d, 0x27d, 0x29e7],
|
|
181
|
+
[0x280, 0x280, -0xda],
|
|
182
|
+
[0x282, 0x282, 0xa543],
|
|
183
|
+
[0x283, 0x283, -0xda],
|
|
184
|
+
[0x287, 0x287, 0xa52a],
|
|
185
|
+
[0x288, 0x288, -0xda],
|
|
186
|
+
[0x289, 0x289, -0x45],
|
|
187
|
+
[0x28a, 0x28b, -0xd9],
|
|
188
|
+
[0x28c, 0x28c, -0x47],
|
|
189
|
+
[0x292, 0x292, -0xdb],
|
|
190
|
+
[0x29d, 0x29d, 0xa515],
|
|
191
|
+
[0x29e, 0x29e, 0xa512],
|
|
192
|
+
[0x345, 0x345, 0x54],
|
|
193
|
+
[0x371, 0x371, -0x1],
|
|
194
|
+
[0x373, 0x373, -0x1],
|
|
195
|
+
[0x377, 0x377, -0x1],
|
|
196
|
+
[0x37b, 0x37d, 0x82],
|
|
197
|
+
[0x3ac, 0x3ac, -0x26],
|
|
198
|
+
[0x3ad, 0x3af, -0x25],
|
|
199
|
+
[0x3b1, 0x3c1, -0x20],
|
|
200
|
+
[0x3c2, 0x3c2, -0x1f],
|
|
201
|
+
[0x3c3, 0x3cb, -0x20],
|
|
202
|
+
[0x3cc, 0x3cc, -0x40],
|
|
203
|
+
[0x3cd, 0x3ce, -0x3f],
|
|
204
|
+
[0x3d0, 0x3d0, -0x3e],
|
|
205
|
+
[0x3d1, 0x3d1, -0x39],
|
|
206
|
+
[0x3d5, 0x3d5, -0x2f],
|
|
207
|
+
[0x3d6, 0x3d6, -0x36],
|
|
208
|
+
[0x3d7, 0x3d7, -0x8],
|
|
209
|
+
[0x3d9, 0x3d9, -0x1],
|
|
210
|
+
[0x3db, 0x3db, -0x1],
|
|
211
|
+
[0x3dd, 0x3dd, -0x1],
|
|
212
|
+
[0x3df, 0x3df, -0x1],
|
|
213
|
+
[0x3e1, 0x3e1, -0x1],
|
|
214
|
+
[0x3e3, 0x3e3, -0x1],
|
|
215
|
+
[0x3e5, 0x3e5, -0x1],
|
|
216
|
+
[0x3e7, 0x3e7, -0x1],
|
|
217
|
+
[0x3e9, 0x3e9, -0x1],
|
|
218
|
+
[0x3eb, 0x3eb, -0x1],
|
|
219
|
+
[0x3ed, 0x3ed, -0x1],
|
|
220
|
+
[0x3ef, 0x3ef, -0x1],
|
|
221
|
+
[0x3f0, 0x3f0, -0x56],
|
|
222
|
+
[0x3f1, 0x3f1, -0x50],
|
|
223
|
+
[0x3f2, 0x3f2, 0x7],
|
|
224
|
+
[0x3f3, 0x3f3, -0x74],
|
|
225
|
+
[0x3f5, 0x3f5, -0x60],
|
|
226
|
+
[0x3f8, 0x3f8, -0x1],
|
|
227
|
+
[0x3fb, 0x3fb, -0x1],
|
|
228
|
+
[0x430, 0x44f, -0x20],
|
|
229
|
+
[0x450, 0x45f, -0x50],
|
|
230
|
+
[0x461, 0x461, -0x1],
|
|
231
|
+
[0x463, 0x463, -0x1],
|
|
232
|
+
[0x465, 0x465, -0x1],
|
|
233
|
+
[0x467, 0x467, -0x1],
|
|
234
|
+
[0x469, 0x469, -0x1],
|
|
235
|
+
[0x46b, 0x46b, -0x1],
|
|
236
|
+
[0x46d, 0x46d, -0x1],
|
|
237
|
+
[0x46f, 0x46f, -0x1],
|
|
238
|
+
[0x471, 0x471, -0x1],
|
|
239
|
+
[0x473, 0x473, -0x1],
|
|
240
|
+
[0x475, 0x475, -0x1],
|
|
241
|
+
[0x477, 0x477, -0x1],
|
|
242
|
+
[0x479, 0x479, -0x1],
|
|
243
|
+
[0x47b, 0x47b, -0x1],
|
|
244
|
+
[0x47d, 0x47d, -0x1],
|
|
245
|
+
[0x47f, 0x47f, -0x1],
|
|
246
|
+
[0x481, 0x481, -0x1],
|
|
247
|
+
[0x48b, 0x48b, -0x1],
|
|
248
|
+
[0x48d, 0x48d, -0x1],
|
|
249
|
+
[0x48f, 0x48f, -0x1],
|
|
250
|
+
[0x491, 0x491, -0x1],
|
|
251
|
+
[0x493, 0x493, -0x1],
|
|
252
|
+
[0x495, 0x495, -0x1],
|
|
253
|
+
[0x497, 0x497, -0x1],
|
|
254
|
+
[0x499, 0x499, -0x1],
|
|
255
|
+
[0x49b, 0x49b, -0x1],
|
|
256
|
+
[0x49d, 0x49d, -0x1],
|
|
257
|
+
[0x49f, 0x49f, -0x1],
|
|
258
|
+
[0x4a1, 0x4a1, -0x1],
|
|
259
|
+
[0x4a3, 0x4a3, -0x1],
|
|
260
|
+
[0x4a5, 0x4a5, -0x1],
|
|
261
|
+
[0x4a7, 0x4a7, -0x1],
|
|
262
|
+
[0x4a9, 0x4a9, -0x1],
|
|
263
|
+
[0x4ab, 0x4ab, -0x1],
|
|
264
|
+
[0x4ad, 0x4ad, -0x1],
|
|
265
|
+
[0x4af, 0x4af, -0x1],
|
|
266
|
+
[0x4b1, 0x4b1, -0x1],
|
|
267
|
+
[0x4b3, 0x4b3, -0x1],
|
|
268
|
+
[0x4b5, 0x4b5, -0x1],
|
|
269
|
+
[0x4b7, 0x4b7, -0x1],
|
|
270
|
+
[0x4b9, 0x4b9, -0x1],
|
|
271
|
+
[0x4bb, 0x4bb, -0x1],
|
|
272
|
+
[0x4bd, 0x4bd, -0x1],
|
|
273
|
+
[0x4bf, 0x4bf, -0x1],
|
|
274
|
+
[0x4c2, 0x4c2, -0x1],
|
|
275
|
+
[0x4c4, 0x4c4, -0x1],
|
|
276
|
+
[0x4c6, 0x4c6, -0x1],
|
|
277
|
+
[0x4c8, 0x4c8, -0x1],
|
|
278
|
+
[0x4ca, 0x4ca, -0x1],
|
|
279
|
+
[0x4cc, 0x4cc, -0x1],
|
|
280
|
+
[0x4ce, 0x4ce, -0x1],
|
|
281
|
+
[0x4cf, 0x4cf, -0xf],
|
|
282
|
+
[0x4d1, 0x4d1, -0x1],
|
|
283
|
+
[0x4d3, 0x4d3, -0x1],
|
|
284
|
+
[0x4d5, 0x4d5, -0x1],
|
|
285
|
+
[0x4d7, 0x4d7, -0x1],
|
|
286
|
+
[0x4d9, 0x4d9, -0x1],
|
|
287
|
+
[0x4db, 0x4db, -0x1],
|
|
288
|
+
[0x4dd, 0x4dd, -0x1],
|
|
289
|
+
[0x4df, 0x4df, -0x1],
|
|
290
|
+
[0x4e1, 0x4e1, -0x1],
|
|
291
|
+
[0x4e3, 0x4e3, -0x1],
|
|
292
|
+
[0x4e5, 0x4e5, -0x1],
|
|
293
|
+
[0x4e7, 0x4e7, -0x1],
|
|
294
|
+
[0x4e9, 0x4e9, -0x1],
|
|
295
|
+
[0x4eb, 0x4eb, -0x1],
|
|
296
|
+
[0x4ed, 0x4ed, -0x1],
|
|
297
|
+
[0x4ef, 0x4ef, -0x1],
|
|
298
|
+
[0x4f1, 0x4f1, -0x1],
|
|
299
|
+
[0x4f3, 0x4f3, -0x1],
|
|
300
|
+
[0x4f5, 0x4f5, -0x1],
|
|
301
|
+
[0x4f7, 0x4f7, -0x1],
|
|
302
|
+
[0x4f9, 0x4f9, -0x1],
|
|
303
|
+
[0x4fb, 0x4fb, -0x1],
|
|
304
|
+
[0x4fd, 0x4fd, -0x1],
|
|
305
|
+
[0x4ff, 0x4ff, -0x1],
|
|
306
|
+
[0x501, 0x501, -0x1],
|
|
307
|
+
[0x503, 0x503, -0x1],
|
|
308
|
+
[0x505, 0x505, -0x1],
|
|
309
|
+
[0x507, 0x507, -0x1],
|
|
310
|
+
[0x509, 0x509, -0x1],
|
|
311
|
+
[0x50b, 0x50b, -0x1],
|
|
312
|
+
[0x50d, 0x50d, -0x1],
|
|
313
|
+
[0x50f, 0x50f, -0x1],
|
|
314
|
+
[0x511, 0x511, -0x1],
|
|
315
|
+
[0x513, 0x513, -0x1],
|
|
316
|
+
[0x515, 0x515, -0x1],
|
|
317
|
+
[0x517, 0x517, -0x1],
|
|
318
|
+
[0x519, 0x519, -0x1],
|
|
319
|
+
[0x51b, 0x51b, -0x1],
|
|
320
|
+
[0x51d, 0x51d, -0x1],
|
|
321
|
+
[0x51f, 0x51f, -0x1],
|
|
322
|
+
[0x521, 0x521, -0x1],
|
|
323
|
+
[0x523, 0x523, -0x1],
|
|
324
|
+
[0x525, 0x525, -0x1],
|
|
325
|
+
[0x527, 0x527, -0x1],
|
|
326
|
+
[0x529, 0x529, -0x1],
|
|
327
|
+
[0x52b, 0x52b, -0x1],
|
|
328
|
+
[0x52d, 0x52d, -0x1],
|
|
329
|
+
[0x52f, 0x52f, -0x1],
|
|
330
|
+
[0x561, 0x586, -0x30],
|
|
331
|
+
[0x10d0, 0x10fa, 0xbc0],
|
|
332
|
+
[0x10fd, 0x10ff, 0xbc0],
|
|
333
|
+
[0x13f8, 0x13fd, -0x8],
|
|
334
|
+
[0x1c80, 0x1c80, -0x186e],
|
|
335
|
+
[0x1c81, 0x1c81, -0x186d],
|
|
336
|
+
[0x1c82, 0x1c82, -0x1864],
|
|
337
|
+
[0x1c83, 0x1c84, -0x1862],
|
|
338
|
+
[0x1c85, 0x1c85, -0x1863],
|
|
339
|
+
[0x1c86, 0x1c86, -0x185c],
|
|
340
|
+
[0x1c87, 0x1c87, -0x1825],
|
|
341
|
+
[0x1c88, 0x1c88, 0x89c2],
|
|
342
|
+
[0x1c8a, 0x1c8a, -0x1],
|
|
343
|
+
[0x1d79, 0x1d79, 0x8a04],
|
|
344
|
+
[0x1d7d, 0x1d7d, 0xee6],
|
|
345
|
+
[0x1d8e, 0x1d8e, 0x8a38],
|
|
346
|
+
[0x1e01, 0x1e01, -0x1],
|
|
347
|
+
[0x1e03, 0x1e03, -0x1],
|
|
348
|
+
[0x1e05, 0x1e05, -0x1],
|
|
349
|
+
[0x1e07, 0x1e07, -0x1],
|
|
350
|
+
[0x1e09, 0x1e09, -0x1],
|
|
351
|
+
[0x1e0b, 0x1e0b, -0x1],
|
|
352
|
+
[0x1e0d, 0x1e0d, -0x1],
|
|
353
|
+
[0x1e0f, 0x1e0f, -0x1],
|
|
354
|
+
[0x1e11, 0x1e11, -0x1],
|
|
355
|
+
[0x1e13, 0x1e13, -0x1],
|
|
356
|
+
[0x1e15, 0x1e15, -0x1],
|
|
357
|
+
[0x1e17, 0x1e17, -0x1],
|
|
358
|
+
[0x1e19, 0x1e19, -0x1],
|
|
359
|
+
[0x1e1b, 0x1e1b, -0x1],
|
|
360
|
+
[0x1e1d, 0x1e1d, -0x1],
|
|
361
|
+
[0x1e1f, 0x1e1f, -0x1],
|
|
362
|
+
[0x1e21, 0x1e21, -0x1],
|
|
363
|
+
[0x1e23, 0x1e23, -0x1],
|
|
364
|
+
[0x1e25, 0x1e25, -0x1],
|
|
365
|
+
[0x1e27, 0x1e27, -0x1],
|
|
366
|
+
[0x1e29, 0x1e29, -0x1],
|
|
367
|
+
[0x1e2b, 0x1e2b, -0x1],
|
|
368
|
+
[0x1e2d, 0x1e2d, -0x1],
|
|
369
|
+
[0x1e2f, 0x1e2f, -0x1],
|
|
370
|
+
[0x1e31, 0x1e31, -0x1],
|
|
371
|
+
[0x1e33, 0x1e33, -0x1],
|
|
372
|
+
[0x1e35, 0x1e35, -0x1],
|
|
373
|
+
[0x1e37, 0x1e37, -0x1],
|
|
374
|
+
[0x1e39, 0x1e39, -0x1],
|
|
375
|
+
[0x1e3b, 0x1e3b, -0x1],
|
|
376
|
+
[0x1e3d, 0x1e3d, -0x1],
|
|
377
|
+
[0x1e3f, 0x1e3f, -0x1],
|
|
378
|
+
[0x1e41, 0x1e41, -0x1],
|
|
379
|
+
[0x1e43, 0x1e43, -0x1],
|
|
380
|
+
[0x1e45, 0x1e45, -0x1],
|
|
381
|
+
[0x1e47, 0x1e47, -0x1],
|
|
382
|
+
[0x1e49, 0x1e49, -0x1],
|
|
383
|
+
[0x1e4b, 0x1e4b, -0x1],
|
|
384
|
+
[0x1e4d, 0x1e4d, -0x1],
|
|
385
|
+
[0x1e4f, 0x1e4f, -0x1],
|
|
386
|
+
[0x1e51, 0x1e51, -0x1],
|
|
387
|
+
[0x1e53, 0x1e53, -0x1],
|
|
388
|
+
[0x1e55, 0x1e55, -0x1],
|
|
389
|
+
[0x1e57, 0x1e57, -0x1],
|
|
390
|
+
[0x1e59, 0x1e59, -0x1],
|
|
391
|
+
[0x1e5b, 0x1e5b, -0x1],
|
|
392
|
+
[0x1e5d, 0x1e5d, -0x1],
|
|
393
|
+
[0x1e5f, 0x1e5f, -0x1],
|
|
394
|
+
[0x1e61, 0x1e61, -0x1],
|
|
395
|
+
[0x1e63, 0x1e63, -0x1],
|
|
396
|
+
[0x1e65, 0x1e65, -0x1],
|
|
397
|
+
[0x1e67, 0x1e67, -0x1],
|
|
398
|
+
[0x1e69, 0x1e69, -0x1],
|
|
399
|
+
[0x1e6b, 0x1e6b, -0x1],
|
|
400
|
+
[0x1e6d, 0x1e6d, -0x1],
|
|
401
|
+
[0x1e6f, 0x1e6f, -0x1],
|
|
402
|
+
[0x1e71, 0x1e71, -0x1],
|
|
403
|
+
[0x1e73, 0x1e73, -0x1],
|
|
404
|
+
[0x1e75, 0x1e75, -0x1],
|
|
405
|
+
[0x1e77, 0x1e77, -0x1],
|
|
406
|
+
[0x1e79, 0x1e79, -0x1],
|
|
407
|
+
[0x1e7b, 0x1e7b, -0x1],
|
|
408
|
+
[0x1e7d, 0x1e7d, -0x1],
|
|
409
|
+
[0x1e7f, 0x1e7f, -0x1],
|
|
410
|
+
[0x1e81, 0x1e81, -0x1],
|
|
411
|
+
[0x1e83, 0x1e83, -0x1],
|
|
412
|
+
[0x1e85, 0x1e85, -0x1],
|
|
413
|
+
[0x1e87, 0x1e87, -0x1],
|
|
414
|
+
[0x1e89, 0x1e89, -0x1],
|
|
415
|
+
[0x1e8b, 0x1e8b, -0x1],
|
|
416
|
+
[0x1e8d, 0x1e8d, -0x1],
|
|
417
|
+
[0x1e8f, 0x1e8f, -0x1],
|
|
418
|
+
[0x1e91, 0x1e91, -0x1],
|
|
419
|
+
[0x1e93, 0x1e93, -0x1],
|
|
420
|
+
[0x1e95, 0x1e95, -0x1],
|
|
421
|
+
[0x1e9b, 0x1e9b, -0x3b],
|
|
422
|
+
[0x1ea1, 0x1ea1, -0x1],
|
|
423
|
+
[0x1ea3, 0x1ea3, -0x1],
|
|
424
|
+
[0x1ea5, 0x1ea5, -0x1],
|
|
425
|
+
[0x1ea7, 0x1ea7, -0x1],
|
|
426
|
+
[0x1ea9, 0x1ea9, -0x1],
|
|
427
|
+
[0x1eab, 0x1eab, -0x1],
|
|
428
|
+
[0x1ead, 0x1ead, -0x1],
|
|
429
|
+
[0x1eaf, 0x1eaf, -0x1],
|
|
430
|
+
[0x1eb1, 0x1eb1, -0x1],
|
|
431
|
+
[0x1eb3, 0x1eb3, -0x1],
|
|
432
|
+
[0x1eb5, 0x1eb5, -0x1],
|
|
433
|
+
[0x1eb7, 0x1eb7, -0x1],
|
|
434
|
+
[0x1eb9, 0x1eb9, -0x1],
|
|
435
|
+
[0x1ebb, 0x1ebb, -0x1],
|
|
436
|
+
[0x1ebd, 0x1ebd, -0x1],
|
|
437
|
+
[0x1ebf, 0x1ebf, -0x1],
|
|
438
|
+
[0x1ec1, 0x1ec1, -0x1],
|
|
439
|
+
[0x1ec3, 0x1ec3, -0x1],
|
|
440
|
+
[0x1ec5, 0x1ec5, -0x1],
|
|
441
|
+
[0x1ec7, 0x1ec7, -0x1],
|
|
442
|
+
[0x1ec9, 0x1ec9, -0x1],
|
|
443
|
+
[0x1ecb, 0x1ecb, -0x1],
|
|
444
|
+
[0x1ecd, 0x1ecd, -0x1],
|
|
445
|
+
[0x1ecf, 0x1ecf, -0x1],
|
|
446
|
+
[0x1ed1, 0x1ed1, -0x1],
|
|
447
|
+
[0x1ed3, 0x1ed3, -0x1],
|
|
448
|
+
[0x1ed5, 0x1ed5, -0x1],
|
|
449
|
+
[0x1ed7, 0x1ed7, -0x1],
|
|
450
|
+
[0x1ed9, 0x1ed9, -0x1],
|
|
451
|
+
[0x1edb, 0x1edb, -0x1],
|
|
452
|
+
[0x1edd, 0x1edd, -0x1],
|
|
453
|
+
[0x1edf, 0x1edf, -0x1],
|
|
454
|
+
[0x1ee1, 0x1ee1, -0x1],
|
|
455
|
+
[0x1ee3, 0x1ee3, -0x1],
|
|
456
|
+
[0x1ee5, 0x1ee5, -0x1],
|
|
457
|
+
[0x1ee7, 0x1ee7, -0x1],
|
|
458
|
+
[0x1ee9, 0x1ee9, -0x1],
|
|
459
|
+
[0x1eeb, 0x1eeb, -0x1],
|
|
460
|
+
[0x1eed, 0x1eed, -0x1],
|
|
461
|
+
[0x1eef, 0x1eef, -0x1],
|
|
462
|
+
[0x1ef1, 0x1ef1, -0x1],
|
|
463
|
+
[0x1ef3, 0x1ef3, -0x1],
|
|
464
|
+
[0x1ef5, 0x1ef5, -0x1],
|
|
465
|
+
[0x1ef7, 0x1ef7, -0x1],
|
|
466
|
+
[0x1ef9, 0x1ef9, -0x1],
|
|
467
|
+
[0x1efb, 0x1efb, -0x1],
|
|
468
|
+
[0x1efd, 0x1efd, -0x1],
|
|
469
|
+
[0x1eff, 0x1eff, -0x1],
|
|
470
|
+
[0x1f00, 0x1f07, 0x8],
|
|
471
|
+
[0x1f10, 0x1f15, 0x8],
|
|
472
|
+
[0x1f20, 0x1f27, 0x8],
|
|
473
|
+
[0x1f30, 0x1f37, 0x8],
|
|
474
|
+
[0x1f40, 0x1f45, 0x8],
|
|
475
|
+
[0x1f51, 0x1f51, 0x8],
|
|
476
|
+
[0x1f53, 0x1f53, 0x8],
|
|
477
|
+
[0x1f55, 0x1f55, 0x8],
|
|
478
|
+
[0x1f57, 0x1f57, 0x8],
|
|
479
|
+
[0x1f60, 0x1f67, 0x8],
|
|
480
|
+
[0x1f70, 0x1f71, 0x4a],
|
|
481
|
+
[0x1f72, 0x1f75, 0x56],
|
|
482
|
+
[0x1f76, 0x1f77, 0x64],
|
|
483
|
+
[0x1f78, 0x1f79, 0x80],
|
|
484
|
+
[0x1f7a, 0x1f7b, 0x70],
|
|
485
|
+
[0x1f7c, 0x1f7d, 0x7e],
|
|
486
|
+
[0x1fb0, 0x1fb1, 0x8],
|
|
487
|
+
[0x1fbe, 0x1fbe, -0x1c25],
|
|
488
|
+
[0x1fd0, 0x1fd1, 0x8],
|
|
489
|
+
[0x1fe0, 0x1fe1, 0x8],
|
|
490
|
+
[0x1fe5, 0x1fe5, 0x7],
|
|
491
|
+
[0x214e, 0x214e, -0x1c],
|
|
492
|
+
[0x2170, 0x217f, -0x10],
|
|
493
|
+
[0x2184, 0x2184, -0x1],
|
|
494
|
+
[0x24d0, 0x24e9, -0x1a],
|
|
495
|
+
[0x2c30, 0x2c5f, -0x30],
|
|
496
|
+
[0x2c61, 0x2c61, -0x1],
|
|
497
|
+
[0x2c65, 0x2c65, -0x2a2b],
|
|
498
|
+
[0x2c66, 0x2c66, -0x2a28],
|
|
499
|
+
[0x2c68, 0x2c68, -0x1],
|
|
500
|
+
[0x2c6a, 0x2c6a, -0x1],
|
|
501
|
+
[0x2c6c, 0x2c6c, -0x1],
|
|
502
|
+
[0x2c73, 0x2c73, -0x1],
|
|
503
|
+
[0x2c76, 0x2c76, -0x1],
|
|
504
|
+
[0x2c81, 0x2c81, -0x1],
|
|
505
|
+
[0x2c83, 0x2c83, -0x1],
|
|
506
|
+
[0x2c85, 0x2c85, -0x1],
|
|
507
|
+
[0x2c87, 0x2c87, -0x1],
|
|
508
|
+
[0x2c89, 0x2c89, -0x1],
|
|
509
|
+
[0x2c8b, 0x2c8b, -0x1],
|
|
510
|
+
[0x2c8d, 0x2c8d, -0x1],
|
|
511
|
+
[0x2c8f, 0x2c8f, -0x1],
|
|
512
|
+
[0x2c91, 0x2c91, -0x1],
|
|
513
|
+
[0x2c93, 0x2c93, -0x1],
|
|
514
|
+
[0x2c95, 0x2c95, -0x1],
|
|
515
|
+
[0x2c97, 0x2c97, -0x1],
|
|
516
|
+
[0x2c99, 0x2c99, -0x1],
|
|
517
|
+
[0x2c9b, 0x2c9b, -0x1],
|
|
518
|
+
[0x2c9d, 0x2c9d, -0x1],
|
|
519
|
+
[0x2c9f, 0x2c9f, -0x1],
|
|
520
|
+
[0x2ca1, 0x2ca1, -0x1],
|
|
521
|
+
[0x2ca3, 0x2ca3, -0x1],
|
|
522
|
+
[0x2ca5, 0x2ca5, -0x1],
|
|
523
|
+
[0x2ca7, 0x2ca7, -0x1],
|
|
524
|
+
[0x2ca9, 0x2ca9, -0x1],
|
|
525
|
+
[0x2cab, 0x2cab, -0x1],
|
|
526
|
+
[0x2cad, 0x2cad, -0x1],
|
|
527
|
+
[0x2caf, 0x2caf, -0x1],
|
|
528
|
+
[0x2cb1, 0x2cb1, -0x1],
|
|
529
|
+
[0x2cb3, 0x2cb3, -0x1],
|
|
530
|
+
[0x2cb5, 0x2cb5, -0x1],
|
|
531
|
+
[0x2cb7, 0x2cb7, -0x1],
|
|
532
|
+
[0x2cb9, 0x2cb9, -0x1],
|
|
533
|
+
[0x2cbb, 0x2cbb, -0x1],
|
|
534
|
+
[0x2cbd, 0x2cbd, -0x1],
|
|
535
|
+
[0x2cbf, 0x2cbf, -0x1],
|
|
536
|
+
[0x2cc1, 0x2cc1, -0x1],
|
|
537
|
+
[0x2cc3, 0x2cc3, -0x1],
|
|
538
|
+
[0x2cc5, 0x2cc5, -0x1],
|
|
539
|
+
[0x2cc7, 0x2cc7, -0x1],
|
|
540
|
+
[0x2cc9, 0x2cc9, -0x1],
|
|
541
|
+
[0x2ccb, 0x2ccb, -0x1],
|
|
542
|
+
[0x2ccd, 0x2ccd, -0x1],
|
|
543
|
+
[0x2ccf, 0x2ccf, -0x1],
|
|
544
|
+
[0x2cd1, 0x2cd1, -0x1],
|
|
545
|
+
[0x2cd3, 0x2cd3, -0x1],
|
|
546
|
+
[0x2cd5, 0x2cd5, -0x1],
|
|
547
|
+
[0x2cd7, 0x2cd7, -0x1],
|
|
548
|
+
[0x2cd9, 0x2cd9, -0x1],
|
|
549
|
+
[0x2cdb, 0x2cdb, -0x1],
|
|
550
|
+
[0x2cdd, 0x2cdd, -0x1],
|
|
551
|
+
[0x2cdf, 0x2cdf, -0x1],
|
|
552
|
+
[0x2ce1, 0x2ce1, -0x1],
|
|
553
|
+
[0x2ce3, 0x2ce3, -0x1],
|
|
554
|
+
[0x2cec, 0x2cec, -0x1],
|
|
555
|
+
[0x2cee, 0x2cee, -0x1],
|
|
556
|
+
[0x2cf3, 0x2cf3, -0x1],
|
|
557
|
+
[0x2d00, 0x2d25, -0x1c60],
|
|
558
|
+
[0x2d27, 0x2d27, -0x1c60],
|
|
559
|
+
[0x2d2d, 0x2d2d, -0x1c60],
|
|
560
|
+
[0xa641, 0xa641, -0x1],
|
|
561
|
+
[0xa643, 0xa643, -0x1],
|
|
562
|
+
[0xa645, 0xa645, -0x1],
|
|
563
|
+
[0xa647, 0xa647, -0x1],
|
|
564
|
+
[0xa649, 0xa649, -0x1],
|
|
565
|
+
[0xa64b, 0xa64b, -0x1],
|
|
566
|
+
[0xa64d, 0xa64d, -0x1],
|
|
567
|
+
[0xa64f, 0xa64f, -0x1],
|
|
568
|
+
[0xa651, 0xa651, -0x1],
|
|
569
|
+
[0xa653, 0xa653, -0x1],
|
|
570
|
+
[0xa655, 0xa655, -0x1],
|
|
571
|
+
[0xa657, 0xa657, -0x1],
|
|
572
|
+
[0xa659, 0xa659, -0x1],
|
|
573
|
+
[0xa65b, 0xa65b, -0x1],
|
|
574
|
+
[0xa65d, 0xa65d, -0x1],
|
|
575
|
+
[0xa65f, 0xa65f, -0x1],
|
|
576
|
+
[0xa661, 0xa661, -0x1],
|
|
577
|
+
[0xa663, 0xa663, -0x1],
|
|
578
|
+
[0xa665, 0xa665, -0x1],
|
|
579
|
+
[0xa667, 0xa667, -0x1],
|
|
580
|
+
[0xa669, 0xa669, -0x1],
|
|
581
|
+
[0xa66b, 0xa66b, -0x1],
|
|
582
|
+
[0xa66d, 0xa66d, -0x1],
|
|
583
|
+
[0xa681, 0xa681, -0x1],
|
|
584
|
+
[0xa683, 0xa683, -0x1],
|
|
585
|
+
[0xa685, 0xa685, -0x1],
|
|
586
|
+
[0xa687, 0xa687, -0x1],
|
|
587
|
+
[0xa689, 0xa689, -0x1],
|
|
588
|
+
[0xa68b, 0xa68b, -0x1],
|
|
589
|
+
[0xa68d, 0xa68d, -0x1],
|
|
590
|
+
[0xa68f, 0xa68f, -0x1],
|
|
591
|
+
[0xa691, 0xa691, -0x1],
|
|
592
|
+
[0xa693, 0xa693, -0x1],
|
|
593
|
+
[0xa695, 0xa695, -0x1],
|
|
594
|
+
[0xa697, 0xa697, -0x1],
|
|
595
|
+
[0xa699, 0xa699, -0x1],
|
|
596
|
+
[0xa69b, 0xa69b, -0x1],
|
|
597
|
+
[0xa723, 0xa723, -0x1],
|
|
598
|
+
[0xa725, 0xa725, -0x1],
|
|
599
|
+
[0xa727, 0xa727, -0x1],
|
|
600
|
+
[0xa729, 0xa729, -0x1],
|
|
601
|
+
[0xa72b, 0xa72b, -0x1],
|
|
602
|
+
[0xa72d, 0xa72d, -0x1],
|
|
603
|
+
[0xa72f, 0xa72f, -0x1],
|
|
604
|
+
[0xa733, 0xa733, -0x1],
|
|
605
|
+
[0xa735, 0xa735, -0x1],
|
|
606
|
+
[0xa737, 0xa737, -0x1],
|
|
607
|
+
[0xa739, 0xa739, -0x1],
|
|
608
|
+
[0xa73b, 0xa73b, -0x1],
|
|
609
|
+
[0xa73d, 0xa73d, -0x1],
|
|
610
|
+
[0xa73f, 0xa73f, -0x1],
|
|
611
|
+
[0xa741, 0xa741, -0x1],
|
|
612
|
+
[0xa743, 0xa743, -0x1],
|
|
613
|
+
[0xa745, 0xa745, -0x1],
|
|
614
|
+
[0xa747, 0xa747, -0x1],
|
|
615
|
+
[0xa749, 0xa749, -0x1],
|
|
616
|
+
[0xa74b, 0xa74b, -0x1],
|
|
617
|
+
[0xa74d, 0xa74d, -0x1],
|
|
618
|
+
[0xa74f, 0xa74f, -0x1],
|
|
619
|
+
[0xa751, 0xa751, -0x1],
|
|
620
|
+
[0xa753, 0xa753, -0x1],
|
|
621
|
+
[0xa755, 0xa755, -0x1],
|
|
622
|
+
[0xa757, 0xa757, -0x1],
|
|
623
|
+
[0xa759, 0xa759, -0x1],
|
|
624
|
+
[0xa75b, 0xa75b, -0x1],
|
|
625
|
+
[0xa75d, 0xa75d, -0x1],
|
|
626
|
+
[0xa75f, 0xa75f, -0x1],
|
|
627
|
+
[0xa761, 0xa761, -0x1],
|
|
628
|
+
[0xa763, 0xa763, -0x1],
|
|
629
|
+
[0xa765, 0xa765, -0x1],
|
|
630
|
+
[0xa767, 0xa767, -0x1],
|
|
631
|
+
[0xa769, 0xa769, -0x1],
|
|
632
|
+
[0xa76b, 0xa76b, -0x1],
|
|
633
|
+
[0xa76d, 0xa76d, -0x1],
|
|
634
|
+
[0xa76f, 0xa76f, -0x1],
|
|
635
|
+
[0xa77a, 0xa77a, -0x1],
|
|
636
|
+
[0xa77c, 0xa77c, -0x1],
|
|
637
|
+
[0xa77f, 0xa77f, -0x1],
|
|
638
|
+
[0xa781, 0xa781, -0x1],
|
|
639
|
+
[0xa783, 0xa783, -0x1],
|
|
640
|
+
[0xa785, 0xa785, -0x1],
|
|
641
|
+
[0xa787, 0xa787, -0x1],
|
|
642
|
+
[0xa78c, 0xa78c, -0x1],
|
|
643
|
+
[0xa791, 0xa791, -0x1],
|
|
644
|
+
[0xa793, 0xa793, -0x1],
|
|
645
|
+
[0xa794, 0xa794, 0x30],
|
|
646
|
+
[0xa797, 0xa797, -0x1],
|
|
647
|
+
[0xa799, 0xa799, -0x1],
|
|
648
|
+
[0xa79b, 0xa79b, -0x1],
|
|
649
|
+
[0xa79d, 0xa79d, -0x1],
|
|
650
|
+
[0xa79f, 0xa79f, -0x1],
|
|
651
|
+
[0xa7a1, 0xa7a1, -0x1],
|
|
652
|
+
[0xa7a3, 0xa7a3, -0x1],
|
|
653
|
+
[0xa7a5, 0xa7a5, -0x1],
|
|
654
|
+
[0xa7a7, 0xa7a7, -0x1],
|
|
655
|
+
[0xa7a9, 0xa7a9, -0x1],
|
|
656
|
+
[0xa7b5, 0xa7b5, -0x1],
|
|
657
|
+
[0xa7b7, 0xa7b7, -0x1],
|
|
658
|
+
[0xa7b9, 0xa7b9, -0x1],
|
|
659
|
+
[0xa7bb, 0xa7bb, -0x1],
|
|
660
|
+
[0xa7bd, 0xa7bd, -0x1],
|
|
661
|
+
[0xa7bf, 0xa7bf, -0x1],
|
|
662
|
+
[0xa7c1, 0xa7c1, -0x1],
|
|
663
|
+
[0xa7c3, 0xa7c3, -0x1],
|
|
664
|
+
[0xa7c8, 0xa7c8, -0x1],
|
|
665
|
+
[0xa7ca, 0xa7ca, -0x1],
|
|
666
|
+
[0xa7cd, 0xa7cd, -0x1],
|
|
667
|
+
[0xa7cf, 0xa7cf, -0x1],
|
|
668
|
+
[0xa7d1, 0xa7d1, -0x1],
|
|
669
|
+
[0xa7d3, 0xa7d3, -0x1],
|
|
670
|
+
[0xa7d5, 0xa7d5, -0x1],
|
|
671
|
+
[0xa7d7, 0xa7d7, -0x1],
|
|
672
|
+
[0xa7d9, 0xa7d9, -0x1],
|
|
673
|
+
[0xa7db, 0xa7db, -0x1],
|
|
674
|
+
[0xa7f6, 0xa7f6, -0x1],
|
|
675
|
+
[0xab53, 0xab53, -0x3a0],
|
|
676
|
+
[0xab70, 0xabbf, -0x97d0],
|
|
677
|
+
[0xff41, 0xff5a, -0x20],
|
|
678
|
+
[0x10428, 0x1044f, -0x28],
|
|
679
|
+
[0x104d8, 0x104fb, -0x28],
|
|
680
|
+
[0x10597, 0x105a1, -0x27],
|
|
681
|
+
[0x105a3, 0x105b1, -0x27],
|
|
682
|
+
[0x105b3, 0x105b9, -0x27],
|
|
683
|
+
[0x105bb, 0x105bc, -0x27],
|
|
684
|
+
[0x10cc0, 0x10cf2, -0x40],
|
|
685
|
+
[0x10d70, 0x10d85, -0x20],
|
|
686
|
+
[0x118c0, 0x118df, -0x20],
|
|
687
|
+
[0x16e60, 0x16e7f, -0x20],
|
|
688
|
+
[0x16ebb, 0x16ed3, -0x1b],
|
|
689
|
+
[0x1e922, 0x1e943, -0x22]
|
|
690
|
+
];
|
|
691
|
+
export const LOWER_DELTA_RANGES = [
|
|
692
|
+
[0x41, 0x5a, 0x20],
|
|
693
|
+
[0xc0, 0xd6, 0x20],
|
|
694
|
+
[0xd8, 0xde, 0x20],
|
|
695
|
+
[0x100, 0x100, 0x1],
|
|
696
|
+
[0x102, 0x102, 0x1],
|
|
697
|
+
[0x104, 0x104, 0x1],
|
|
698
|
+
[0x106, 0x106, 0x1],
|
|
699
|
+
[0x108, 0x108, 0x1],
|
|
700
|
+
[0x10a, 0x10a, 0x1],
|
|
701
|
+
[0x10c, 0x10c, 0x1],
|
|
702
|
+
[0x10e, 0x10e, 0x1],
|
|
703
|
+
[0x110, 0x110, 0x1],
|
|
704
|
+
[0x112, 0x112, 0x1],
|
|
705
|
+
[0x114, 0x114, 0x1],
|
|
706
|
+
[0x116, 0x116, 0x1],
|
|
707
|
+
[0x118, 0x118, 0x1],
|
|
708
|
+
[0x11a, 0x11a, 0x1],
|
|
709
|
+
[0x11c, 0x11c, 0x1],
|
|
710
|
+
[0x11e, 0x11e, 0x1],
|
|
711
|
+
[0x120, 0x120, 0x1],
|
|
712
|
+
[0x122, 0x122, 0x1],
|
|
713
|
+
[0x124, 0x124, 0x1],
|
|
714
|
+
[0x126, 0x126, 0x1],
|
|
715
|
+
[0x128, 0x128, 0x1],
|
|
716
|
+
[0x12a, 0x12a, 0x1],
|
|
717
|
+
[0x12c, 0x12c, 0x1],
|
|
718
|
+
[0x12e, 0x12e, 0x1],
|
|
719
|
+
[0x132, 0x132, 0x1],
|
|
720
|
+
[0x134, 0x134, 0x1],
|
|
721
|
+
[0x136, 0x136, 0x1],
|
|
722
|
+
[0x139, 0x139, 0x1],
|
|
723
|
+
[0x13b, 0x13b, 0x1],
|
|
724
|
+
[0x13d, 0x13d, 0x1],
|
|
725
|
+
[0x13f, 0x13f, 0x1],
|
|
726
|
+
[0x141, 0x141, 0x1],
|
|
727
|
+
[0x143, 0x143, 0x1],
|
|
728
|
+
[0x145, 0x145, 0x1],
|
|
729
|
+
[0x147, 0x147, 0x1],
|
|
730
|
+
[0x14a, 0x14a, 0x1],
|
|
731
|
+
[0x14c, 0x14c, 0x1],
|
|
732
|
+
[0x14e, 0x14e, 0x1],
|
|
733
|
+
[0x150, 0x150, 0x1],
|
|
734
|
+
[0x152, 0x152, 0x1],
|
|
735
|
+
[0x154, 0x154, 0x1],
|
|
736
|
+
[0x156, 0x156, 0x1],
|
|
737
|
+
[0x158, 0x158, 0x1],
|
|
738
|
+
[0x15a, 0x15a, 0x1],
|
|
739
|
+
[0x15c, 0x15c, 0x1],
|
|
740
|
+
[0x15e, 0x15e, 0x1],
|
|
741
|
+
[0x160, 0x160, 0x1],
|
|
742
|
+
[0x162, 0x162, 0x1],
|
|
743
|
+
[0x164, 0x164, 0x1],
|
|
744
|
+
[0x166, 0x166, 0x1],
|
|
745
|
+
[0x168, 0x168, 0x1],
|
|
746
|
+
[0x16a, 0x16a, 0x1],
|
|
747
|
+
[0x16c, 0x16c, 0x1],
|
|
748
|
+
[0x16e, 0x16e, 0x1],
|
|
749
|
+
[0x170, 0x170, 0x1],
|
|
750
|
+
[0x172, 0x172, 0x1],
|
|
751
|
+
[0x174, 0x174, 0x1],
|
|
752
|
+
[0x176, 0x176, 0x1],
|
|
753
|
+
[0x178, 0x178, -0x79],
|
|
754
|
+
[0x179, 0x179, 0x1],
|
|
755
|
+
[0x17b, 0x17b, 0x1],
|
|
756
|
+
[0x17d, 0x17d, 0x1],
|
|
757
|
+
[0x181, 0x181, 0xd2],
|
|
758
|
+
[0x182, 0x182, 0x1],
|
|
759
|
+
[0x184, 0x184, 0x1],
|
|
760
|
+
[0x186, 0x186, 0xce],
|
|
761
|
+
[0x187, 0x187, 0x1],
|
|
762
|
+
[0x189, 0x18a, 0xcd],
|
|
763
|
+
[0x18b, 0x18b, 0x1],
|
|
764
|
+
[0x18e, 0x18e, 0x4f],
|
|
765
|
+
[0x18f, 0x18f, 0xca],
|
|
766
|
+
[0x190, 0x190, 0xcb],
|
|
767
|
+
[0x191, 0x191, 0x1],
|
|
768
|
+
[0x193, 0x193, 0xcd],
|
|
769
|
+
[0x194, 0x194, 0xcf],
|
|
770
|
+
[0x196, 0x196, 0xd3],
|
|
771
|
+
[0x197, 0x197, 0xd1],
|
|
772
|
+
[0x198, 0x198, 0x1],
|
|
773
|
+
[0x19c, 0x19c, 0xd3],
|
|
774
|
+
[0x19d, 0x19d, 0xd5],
|
|
775
|
+
[0x19f, 0x19f, 0xd6],
|
|
776
|
+
[0x1a0, 0x1a0, 0x1],
|
|
777
|
+
[0x1a2, 0x1a2, 0x1],
|
|
778
|
+
[0x1a4, 0x1a4, 0x1],
|
|
779
|
+
[0x1a6, 0x1a6, 0xda],
|
|
780
|
+
[0x1a7, 0x1a7, 0x1],
|
|
781
|
+
[0x1a9, 0x1a9, 0xda],
|
|
782
|
+
[0x1ac, 0x1ac, 0x1],
|
|
783
|
+
[0x1ae, 0x1ae, 0xda],
|
|
784
|
+
[0x1af, 0x1af, 0x1],
|
|
785
|
+
[0x1b1, 0x1b2, 0xd9],
|
|
786
|
+
[0x1b3, 0x1b3, 0x1],
|
|
787
|
+
[0x1b5, 0x1b5, 0x1],
|
|
788
|
+
[0x1b7, 0x1b7, 0xdb],
|
|
789
|
+
[0x1b8, 0x1b8, 0x1],
|
|
790
|
+
[0x1bc, 0x1bc, 0x1],
|
|
791
|
+
[0x1c4, 0x1c4, 0x2],
|
|
792
|
+
[0x1c5, 0x1c5, 0x1],
|
|
793
|
+
[0x1c7, 0x1c7, 0x2],
|
|
794
|
+
[0x1c8, 0x1c8, 0x1],
|
|
795
|
+
[0x1ca, 0x1ca, 0x2],
|
|
796
|
+
[0x1cb, 0x1cb, 0x1],
|
|
797
|
+
[0x1cd, 0x1cd, 0x1],
|
|
798
|
+
[0x1cf, 0x1cf, 0x1],
|
|
799
|
+
[0x1d1, 0x1d1, 0x1],
|
|
800
|
+
[0x1d3, 0x1d3, 0x1],
|
|
801
|
+
[0x1d5, 0x1d5, 0x1],
|
|
802
|
+
[0x1d7, 0x1d7, 0x1],
|
|
803
|
+
[0x1d9, 0x1d9, 0x1],
|
|
804
|
+
[0x1db, 0x1db, 0x1],
|
|
805
|
+
[0x1de, 0x1de, 0x1],
|
|
806
|
+
[0x1e0, 0x1e0, 0x1],
|
|
807
|
+
[0x1e2, 0x1e2, 0x1],
|
|
808
|
+
[0x1e4, 0x1e4, 0x1],
|
|
809
|
+
[0x1e6, 0x1e6, 0x1],
|
|
810
|
+
[0x1e8, 0x1e8, 0x1],
|
|
811
|
+
[0x1ea, 0x1ea, 0x1],
|
|
812
|
+
[0x1ec, 0x1ec, 0x1],
|
|
813
|
+
[0x1ee, 0x1ee, 0x1],
|
|
814
|
+
[0x1f1, 0x1f1, 0x2],
|
|
815
|
+
[0x1f2, 0x1f2, 0x1],
|
|
816
|
+
[0x1f4, 0x1f4, 0x1],
|
|
817
|
+
[0x1f6, 0x1f6, -0x61],
|
|
818
|
+
[0x1f7, 0x1f7, -0x38],
|
|
819
|
+
[0x1f8, 0x1f8, 0x1],
|
|
820
|
+
[0x1fa, 0x1fa, 0x1],
|
|
821
|
+
[0x1fc, 0x1fc, 0x1],
|
|
822
|
+
[0x1fe, 0x1fe, 0x1],
|
|
823
|
+
[0x200, 0x200, 0x1],
|
|
824
|
+
[0x202, 0x202, 0x1],
|
|
825
|
+
[0x204, 0x204, 0x1],
|
|
826
|
+
[0x206, 0x206, 0x1],
|
|
827
|
+
[0x208, 0x208, 0x1],
|
|
828
|
+
[0x20a, 0x20a, 0x1],
|
|
829
|
+
[0x20c, 0x20c, 0x1],
|
|
830
|
+
[0x20e, 0x20e, 0x1],
|
|
831
|
+
[0x210, 0x210, 0x1],
|
|
832
|
+
[0x212, 0x212, 0x1],
|
|
833
|
+
[0x214, 0x214, 0x1],
|
|
834
|
+
[0x216, 0x216, 0x1],
|
|
835
|
+
[0x218, 0x218, 0x1],
|
|
836
|
+
[0x21a, 0x21a, 0x1],
|
|
837
|
+
[0x21c, 0x21c, 0x1],
|
|
838
|
+
[0x21e, 0x21e, 0x1],
|
|
839
|
+
[0x220, 0x220, -0x82],
|
|
840
|
+
[0x222, 0x222, 0x1],
|
|
841
|
+
[0x224, 0x224, 0x1],
|
|
842
|
+
[0x226, 0x226, 0x1],
|
|
843
|
+
[0x228, 0x228, 0x1],
|
|
844
|
+
[0x22a, 0x22a, 0x1],
|
|
845
|
+
[0x22c, 0x22c, 0x1],
|
|
846
|
+
[0x22e, 0x22e, 0x1],
|
|
847
|
+
[0x230, 0x230, 0x1],
|
|
848
|
+
[0x232, 0x232, 0x1],
|
|
849
|
+
[0x23a, 0x23a, 0x2a2b],
|
|
850
|
+
[0x23b, 0x23b, 0x1],
|
|
851
|
+
[0x23d, 0x23d, -0xa3],
|
|
852
|
+
[0x23e, 0x23e, 0x2a28],
|
|
853
|
+
[0x241, 0x241, 0x1],
|
|
854
|
+
[0x243, 0x243, -0xc3],
|
|
855
|
+
[0x244, 0x244, 0x45],
|
|
856
|
+
[0x245, 0x245, 0x47],
|
|
857
|
+
[0x246, 0x246, 0x1],
|
|
858
|
+
[0x248, 0x248, 0x1],
|
|
859
|
+
[0x24a, 0x24a, 0x1],
|
|
860
|
+
[0x24c, 0x24c, 0x1],
|
|
861
|
+
[0x24e, 0x24e, 0x1],
|
|
862
|
+
[0x370, 0x370, 0x1],
|
|
863
|
+
[0x372, 0x372, 0x1],
|
|
864
|
+
[0x376, 0x376, 0x1],
|
|
865
|
+
[0x37f, 0x37f, 0x74],
|
|
866
|
+
[0x386, 0x386, 0x26],
|
|
867
|
+
[0x388, 0x38a, 0x25],
|
|
868
|
+
[0x38c, 0x38c, 0x40],
|
|
869
|
+
[0x38e, 0x38f, 0x3f],
|
|
870
|
+
[0x391, 0x3a1, 0x20],
|
|
871
|
+
[0x3a3, 0x3ab, 0x20],
|
|
872
|
+
[0x3cf, 0x3cf, 0x8],
|
|
873
|
+
[0x3d8, 0x3d8, 0x1],
|
|
874
|
+
[0x3da, 0x3da, 0x1],
|
|
875
|
+
[0x3dc, 0x3dc, 0x1],
|
|
876
|
+
[0x3de, 0x3de, 0x1],
|
|
877
|
+
[0x3e0, 0x3e0, 0x1],
|
|
878
|
+
[0x3e2, 0x3e2, 0x1],
|
|
879
|
+
[0x3e4, 0x3e4, 0x1],
|
|
880
|
+
[0x3e6, 0x3e6, 0x1],
|
|
881
|
+
[0x3e8, 0x3e8, 0x1],
|
|
882
|
+
[0x3ea, 0x3ea, 0x1],
|
|
883
|
+
[0x3ec, 0x3ec, 0x1],
|
|
884
|
+
[0x3ee, 0x3ee, 0x1],
|
|
885
|
+
[0x3f4, 0x3f4, -0x3c],
|
|
886
|
+
[0x3f7, 0x3f7, 0x1],
|
|
887
|
+
[0x3f9, 0x3f9, -0x7],
|
|
888
|
+
[0x3fa, 0x3fa, 0x1],
|
|
889
|
+
[0x3fd, 0x3ff, -0x82],
|
|
890
|
+
[0x400, 0x40f, 0x50],
|
|
891
|
+
[0x410, 0x42f, 0x20],
|
|
892
|
+
[0x460, 0x460, 0x1],
|
|
893
|
+
[0x462, 0x462, 0x1],
|
|
894
|
+
[0x464, 0x464, 0x1],
|
|
895
|
+
[0x466, 0x466, 0x1],
|
|
896
|
+
[0x468, 0x468, 0x1],
|
|
897
|
+
[0x46a, 0x46a, 0x1],
|
|
898
|
+
[0x46c, 0x46c, 0x1],
|
|
899
|
+
[0x46e, 0x46e, 0x1],
|
|
900
|
+
[0x470, 0x470, 0x1],
|
|
901
|
+
[0x472, 0x472, 0x1],
|
|
902
|
+
[0x474, 0x474, 0x1],
|
|
903
|
+
[0x476, 0x476, 0x1],
|
|
904
|
+
[0x478, 0x478, 0x1],
|
|
905
|
+
[0x47a, 0x47a, 0x1],
|
|
906
|
+
[0x47c, 0x47c, 0x1],
|
|
907
|
+
[0x47e, 0x47e, 0x1],
|
|
908
|
+
[0x480, 0x480, 0x1],
|
|
909
|
+
[0x48a, 0x48a, 0x1],
|
|
910
|
+
[0x48c, 0x48c, 0x1],
|
|
911
|
+
[0x48e, 0x48e, 0x1],
|
|
912
|
+
[0x490, 0x490, 0x1],
|
|
913
|
+
[0x492, 0x492, 0x1],
|
|
914
|
+
[0x494, 0x494, 0x1],
|
|
915
|
+
[0x496, 0x496, 0x1],
|
|
916
|
+
[0x498, 0x498, 0x1],
|
|
917
|
+
[0x49a, 0x49a, 0x1],
|
|
918
|
+
[0x49c, 0x49c, 0x1],
|
|
919
|
+
[0x49e, 0x49e, 0x1],
|
|
920
|
+
[0x4a0, 0x4a0, 0x1],
|
|
921
|
+
[0x4a2, 0x4a2, 0x1],
|
|
922
|
+
[0x4a4, 0x4a4, 0x1],
|
|
923
|
+
[0x4a6, 0x4a6, 0x1],
|
|
924
|
+
[0x4a8, 0x4a8, 0x1],
|
|
925
|
+
[0x4aa, 0x4aa, 0x1],
|
|
926
|
+
[0x4ac, 0x4ac, 0x1],
|
|
927
|
+
[0x4ae, 0x4ae, 0x1],
|
|
928
|
+
[0x4b0, 0x4b0, 0x1],
|
|
929
|
+
[0x4b2, 0x4b2, 0x1],
|
|
930
|
+
[0x4b4, 0x4b4, 0x1],
|
|
931
|
+
[0x4b6, 0x4b6, 0x1],
|
|
932
|
+
[0x4b8, 0x4b8, 0x1],
|
|
933
|
+
[0x4ba, 0x4ba, 0x1],
|
|
934
|
+
[0x4bc, 0x4bc, 0x1],
|
|
935
|
+
[0x4be, 0x4be, 0x1],
|
|
936
|
+
[0x4c0, 0x4c0, 0xf],
|
|
937
|
+
[0x4c1, 0x4c1, 0x1],
|
|
938
|
+
[0x4c3, 0x4c3, 0x1],
|
|
939
|
+
[0x4c5, 0x4c5, 0x1],
|
|
940
|
+
[0x4c7, 0x4c7, 0x1],
|
|
941
|
+
[0x4c9, 0x4c9, 0x1],
|
|
942
|
+
[0x4cb, 0x4cb, 0x1],
|
|
943
|
+
[0x4cd, 0x4cd, 0x1],
|
|
944
|
+
[0x4d0, 0x4d0, 0x1],
|
|
945
|
+
[0x4d2, 0x4d2, 0x1],
|
|
946
|
+
[0x4d4, 0x4d4, 0x1],
|
|
947
|
+
[0x4d6, 0x4d6, 0x1],
|
|
948
|
+
[0x4d8, 0x4d8, 0x1],
|
|
949
|
+
[0x4da, 0x4da, 0x1],
|
|
950
|
+
[0x4dc, 0x4dc, 0x1],
|
|
951
|
+
[0x4de, 0x4de, 0x1],
|
|
952
|
+
[0x4e0, 0x4e0, 0x1],
|
|
953
|
+
[0x4e2, 0x4e2, 0x1],
|
|
954
|
+
[0x4e4, 0x4e4, 0x1],
|
|
955
|
+
[0x4e6, 0x4e6, 0x1],
|
|
956
|
+
[0x4e8, 0x4e8, 0x1],
|
|
957
|
+
[0x4ea, 0x4ea, 0x1],
|
|
958
|
+
[0x4ec, 0x4ec, 0x1],
|
|
959
|
+
[0x4ee, 0x4ee, 0x1],
|
|
960
|
+
[0x4f0, 0x4f0, 0x1],
|
|
961
|
+
[0x4f2, 0x4f2, 0x1],
|
|
962
|
+
[0x4f4, 0x4f4, 0x1],
|
|
963
|
+
[0x4f6, 0x4f6, 0x1],
|
|
964
|
+
[0x4f8, 0x4f8, 0x1],
|
|
965
|
+
[0x4fa, 0x4fa, 0x1],
|
|
966
|
+
[0x4fc, 0x4fc, 0x1],
|
|
967
|
+
[0x4fe, 0x4fe, 0x1],
|
|
968
|
+
[0x500, 0x500, 0x1],
|
|
969
|
+
[0x502, 0x502, 0x1],
|
|
970
|
+
[0x504, 0x504, 0x1],
|
|
971
|
+
[0x506, 0x506, 0x1],
|
|
972
|
+
[0x508, 0x508, 0x1],
|
|
973
|
+
[0x50a, 0x50a, 0x1],
|
|
974
|
+
[0x50c, 0x50c, 0x1],
|
|
975
|
+
[0x50e, 0x50e, 0x1],
|
|
976
|
+
[0x510, 0x510, 0x1],
|
|
977
|
+
[0x512, 0x512, 0x1],
|
|
978
|
+
[0x514, 0x514, 0x1],
|
|
979
|
+
[0x516, 0x516, 0x1],
|
|
980
|
+
[0x518, 0x518, 0x1],
|
|
981
|
+
[0x51a, 0x51a, 0x1],
|
|
982
|
+
[0x51c, 0x51c, 0x1],
|
|
983
|
+
[0x51e, 0x51e, 0x1],
|
|
984
|
+
[0x520, 0x520, 0x1],
|
|
985
|
+
[0x522, 0x522, 0x1],
|
|
986
|
+
[0x524, 0x524, 0x1],
|
|
987
|
+
[0x526, 0x526, 0x1],
|
|
988
|
+
[0x528, 0x528, 0x1],
|
|
989
|
+
[0x52a, 0x52a, 0x1],
|
|
990
|
+
[0x52c, 0x52c, 0x1],
|
|
991
|
+
[0x52e, 0x52e, 0x1],
|
|
992
|
+
[0x531, 0x556, 0x30],
|
|
993
|
+
[0x10a0, 0x10c5, 0x1c60],
|
|
994
|
+
[0x10c7, 0x10c7, 0x1c60],
|
|
995
|
+
[0x10cd, 0x10cd, 0x1c60],
|
|
996
|
+
[0x13a0, 0x13ef, 0x97d0],
|
|
997
|
+
[0x13f0, 0x13f5, 0x8],
|
|
998
|
+
[0x1c89, 0x1c89, 0x1],
|
|
999
|
+
[0x1c90, 0x1cba, -0xbc0],
|
|
1000
|
+
[0x1cbd, 0x1cbf, -0xbc0],
|
|
1001
|
+
[0x1e00, 0x1e00, 0x1],
|
|
1002
|
+
[0x1e02, 0x1e02, 0x1],
|
|
1003
|
+
[0x1e04, 0x1e04, 0x1],
|
|
1004
|
+
[0x1e06, 0x1e06, 0x1],
|
|
1005
|
+
[0x1e08, 0x1e08, 0x1],
|
|
1006
|
+
[0x1e0a, 0x1e0a, 0x1],
|
|
1007
|
+
[0x1e0c, 0x1e0c, 0x1],
|
|
1008
|
+
[0x1e0e, 0x1e0e, 0x1],
|
|
1009
|
+
[0x1e10, 0x1e10, 0x1],
|
|
1010
|
+
[0x1e12, 0x1e12, 0x1],
|
|
1011
|
+
[0x1e14, 0x1e14, 0x1],
|
|
1012
|
+
[0x1e16, 0x1e16, 0x1],
|
|
1013
|
+
[0x1e18, 0x1e18, 0x1],
|
|
1014
|
+
[0x1e1a, 0x1e1a, 0x1],
|
|
1015
|
+
[0x1e1c, 0x1e1c, 0x1],
|
|
1016
|
+
[0x1e1e, 0x1e1e, 0x1],
|
|
1017
|
+
[0x1e20, 0x1e20, 0x1],
|
|
1018
|
+
[0x1e22, 0x1e22, 0x1],
|
|
1019
|
+
[0x1e24, 0x1e24, 0x1],
|
|
1020
|
+
[0x1e26, 0x1e26, 0x1],
|
|
1021
|
+
[0x1e28, 0x1e28, 0x1],
|
|
1022
|
+
[0x1e2a, 0x1e2a, 0x1],
|
|
1023
|
+
[0x1e2c, 0x1e2c, 0x1],
|
|
1024
|
+
[0x1e2e, 0x1e2e, 0x1],
|
|
1025
|
+
[0x1e30, 0x1e30, 0x1],
|
|
1026
|
+
[0x1e32, 0x1e32, 0x1],
|
|
1027
|
+
[0x1e34, 0x1e34, 0x1],
|
|
1028
|
+
[0x1e36, 0x1e36, 0x1],
|
|
1029
|
+
[0x1e38, 0x1e38, 0x1],
|
|
1030
|
+
[0x1e3a, 0x1e3a, 0x1],
|
|
1031
|
+
[0x1e3c, 0x1e3c, 0x1],
|
|
1032
|
+
[0x1e3e, 0x1e3e, 0x1],
|
|
1033
|
+
[0x1e40, 0x1e40, 0x1],
|
|
1034
|
+
[0x1e42, 0x1e42, 0x1],
|
|
1035
|
+
[0x1e44, 0x1e44, 0x1],
|
|
1036
|
+
[0x1e46, 0x1e46, 0x1],
|
|
1037
|
+
[0x1e48, 0x1e48, 0x1],
|
|
1038
|
+
[0x1e4a, 0x1e4a, 0x1],
|
|
1039
|
+
[0x1e4c, 0x1e4c, 0x1],
|
|
1040
|
+
[0x1e4e, 0x1e4e, 0x1],
|
|
1041
|
+
[0x1e50, 0x1e50, 0x1],
|
|
1042
|
+
[0x1e52, 0x1e52, 0x1],
|
|
1043
|
+
[0x1e54, 0x1e54, 0x1],
|
|
1044
|
+
[0x1e56, 0x1e56, 0x1],
|
|
1045
|
+
[0x1e58, 0x1e58, 0x1],
|
|
1046
|
+
[0x1e5a, 0x1e5a, 0x1],
|
|
1047
|
+
[0x1e5c, 0x1e5c, 0x1],
|
|
1048
|
+
[0x1e5e, 0x1e5e, 0x1],
|
|
1049
|
+
[0x1e60, 0x1e60, 0x1],
|
|
1050
|
+
[0x1e62, 0x1e62, 0x1],
|
|
1051
|
+
[0x1e64, 0x1e64, 0x1],
|
|
1052
|
+
[0x1e66, 0x1e66, 0x1],
|
|
1053
|
+
[0x1e68, 0x1e68, 0x1],
|
|
1054
|
+
[0x1e6a, 0x1e6a, 0x1],
|
|
1055
|
+
[0x1e6c, 0x1e6c, 0x1],
|
|
1056
|
+
[0x1e6e, 0x1e6e, 0x1],
|
|
1057
|
+
[0x1e70, 0x1e70, 0x1],
|
|
1058
|
+
[0x1e72, 0x1e72, 0x1],
|
|
1059
|
+
[0x1e74, 0x1e74, 0x1],
|
|
1060
|
+
[0x1e76, 0x1e76, 0x1],
|
|
1061
|
+
[0x1e78, 0x1e78, 0x1],
|
|
1062
|
+
[0x1e7a, 0x1e7a, 0x1],
|
|
1063
|
+
[0x1e7c, 0x1e7c, 0x1],
|
|
1064
|
+
[0x1e7e, 0x1e7e, 0x1],
|
|
1065
|
+
[0x1e80, 0x1e80, 0x1],
|
|
1066
|
+
[0x1e82, 0x1e82, 0x1],
|
|
1067
|
+
[0x1e84, 0x1e84, 0x1],
|
|
1068
|
+
[0x1e86, 0x1e86, 0x1],
|
|
1069
|
+
[0x1e88, 0x1e88, 0x1],
|
|
1070
|
+
[0x1e8a, 0x1e8a, 0x1],
|
|
1071
|
+
[0x1e8c, 0x1e8c, 0x1],
|
|
1072
|
+
[0x1e8e, 0x1e8e, 0x1],
|
|
1073
|
+
[0x1e90, 0x1e90, 0x1],
|
|
1074
|
+
[0x1e92, 0x1e92, 0x1],
|
|
1075
|
+
[0x1e94, 0x1e94, 0x1],
|
|
1076
|
+
[0x1e9e, 0x1e9e, -0x1dbf],
|
|
1077
|
+
[0x1ea0, 0x1ea0, 0x1],
|
|
1078
|
+
[0x1ea2, 0x1ea2, 0x1],
|
|
1079
|
+
[0x1ea4, 0x1ea4, 0x1],
|
|
1080
|
+
[0x1ea6, 0x1ea6, 0x1],
|
|
1081
|
+
[0x1ea8, 0x1ea8, 0x1],
|
|
1082
|
+
[0x1eaa, 0x1eaa, 0x1],
|
|
1083
|
+
[0x1eac, 0x1eac, 0x1],
|
|
1084
|
+
[0x1eae, 0x1eae, 0x1],
|
|
1085
|
+
[0x1eb0, 0x1eb0, 0x1],
|
|
1086
|
+
[0x1eb2, 0x1eb2, 0x1],
|
|
1087
|
+
[0x1eb4, 0x1eb4, 0x1],
|
|
1088
|
+
[0x1eb6, 0x1eb6, 0x1],
|
|
1089
|
+
[0x1eb8, 0x1eb8, 0x1],
|
|
1090
|
+
[0x1eba, 0x1eba, 0x1],
|
|
1091
|
+
[0x1ebc, 0x1ebc, 0x1],
|
|
1092
|
+
[0x1ebe, 0x1ebe, 0x1],
|
|
1093
|
+
[0x1ec0, 0x1ec0, 0x1],
|
|
1094
|
+
[0x1ec2, 0x1ec2, 0x1],
|
|
1095
|
+
[0x1ec4, 0x1ec4, 0x1],
|
|
1096
|
+
[0x1ec6, 0x1ec6, 0x1],
|
|
1097
|
+
[0x1ec8, 0x1ec8, 0x1],
|
|
1098
|
+
[0x1eca, 0x1eca, 0x1],
|
|
1099
|
+
[0x1ecc, 0x1ecc, 0x1],
|
|
1100
|
+
[0x1ece, 0x1ece, 0x1],
|
|
1101
|
+
[0x1ed0, 0x1ed0, 0x1],
|
|
1102
|
+
[0x1ed2, 0x1ed2, 0x1],
|
|
1103
|
+
[0x1ed4, 0x1ed4, 0x1],
|
|
1104
|
+
[0x1ed6, 0x1ed6, 0x1],
|
|
1105
|
+
[0x1ed8, 0x1ed8, 0x1],
|
|
1106
|
+
[0x1eda, 0x1eda, 0x1],
|
|
1107
|
+
[0x1edc, 0x1edc, 0x1],
|
|
1108
|
+
[0x1ede, 0x1ede, 0x1],
|
|
1109
|
+
[0x1ee0, 0x1ee0, 0x1],
|
|
1110
|
+
[0x1ee2, 0x1ee2, 0x1],
|
|
1111
|
+
[0x1ee4, 0x1ee4, 0x1],
|
|
1112
|
+
[0x1ee6, 0x1ee6, 0x1],
|
|
1113
|
+
[0x1ee8, 0x1ee8, 0x1],
|
|
1114
|
+
[0x1eea, 0x1eea, 0x1],
|
|
1115
|
+
[0x1eec, 0x1eec, 0x1],
|
|
1116
|
+
[0x1eee, 0x1eee, 0x1],
|
|
1117
|
+
[0x1ef0, 0x1ef0, 0x1],
|
|
1118
|
+
[0x1ef2, 0x1ef2, 0x1],
|
|
1119
|
+
[0x1ef4, 0x1ef4, 0x1],
|
|
1120
|
+
[0x1ef6, 0x1ef6, 0x1],
|
|
1121
|
+
[0x1ef8, 0x1ef8, 0x1],
|
|
1122
|
+
[0x1efa, 0x1efa, 0x1],
|
|
1123
|
+
[0x1efc, 0x1efc, 0x1],
|
|
1124
|
+
[0x1efe, 0x1efe, 0x1],
|
|
1125
|
+
[0x1f08, 0x1f0f, -0x8],
|
|
1126
|
+
[0x1f18, 0x1f1d, -0x8],
|
|
1127
|
+
[0x1f28, 0x1f2f, -0x8],
|
|
1128
|
+
[0x1f38, 0x1f3f, -0x8],
|
|
1129
|
+
[0x1f48, 0x1f4d, -0x8],
|
|
1130
|
+
[0x1f59, 0x1f59, -0x8],
|
|
1131
|
+
[0x1f5b, 0x1f5b, -0x8],
|
|
1132
|
+
[0x1f5d, 0x1f5d, -0x8],
|
|
1133
|
+
[0x1f5f, 0x1f5f, -0x8],
|
|
1134
|
+
[0x1f68, 0x1f6f, -0x8],
|
|
1135
|
+
[0x1f88, 0x1f8f, -0x8],
|
|
1136
|
+
[0x1f98, 0x1f9f, -0x8],
|
|
1137
|
+
[0x1fa8, 0x1faf, -0x8],
|
|
1138
|
+
[0x1fb8, 0x1fb9, -0x8],
|
|
1139
|
+
[0x1fba, 0x1fbb, -0x4a],
|
|
1140
|
+
[0x1fbc, 0x1fbc, -0x9],
|
|
1141
|
+
[0x1fc8, 0x1fcb, -0x56],
|
|
1142
|
+
[0x1fcc, 0x1fcc, -0x9],
|
|
1143
|
+
[0x1fd8, 0x1fd9, -0x8],
|
|
1144
|
+
[0x1fda, 0x1fdb, -0x64],
|
|
1145
|
+
[0x1fe8, 0x1fe9, -0x8],
|
|
1146
|
+
[0x1fea, 0x1feb, -0x70],
|
|
1147
|
+
[0x1fec, 0x1fec, -0x7],
|
|
1148
|
+
[0x1ff8, 0x1ff9, -0x80],
|
|
1149
|
+
[0x1ffa, 0x1ffb, -0x7e],
|
|
1150
|
+
[0x1ffc, 0x1ffc, -0x9],
|
|
1151
|
+
[0x2126, 0x2126, -0x1d5d],
|
|
1152
|
+
[0x212a, 0x212a, -0x20bf],
|
|
1153
|
+
[0x212b, 0x212b, -0x2046],
|
|
1154
|
+
[0x2132, 0x2132, 0x1c],
|
|
1155
|
+
[0x2160, 0x216f, 0x10],
|
|
1156
|
+
[0x2183, 0x2183, 0x1],
|
|
1157
|
+
[0x24b6, 0x24cf, 0x1a],
|
|
1158
|
+
[0x2c00, 0x2c2f, 0x30],
|
|
1159
|
+
[0x2c60, 0x2c60, 0x1],
|
|
1160
|
+
[0x2c62, 0x2c62, -0x29f7],
|
|
1161
|
+
[0x2c63, 0x2c63, -0xee6],
|
|
1162
|
+
[0x2c64, 0x2c64, -0x29e7],
|
|
1163
|
+
[0x2c67, 0x2c67, 0x1],
|
|
1164
|
+
[0x2c69, 0x2c69, 0x1],
|
|
1165
|
+
[0x2c6b, 0x2c6b, 0x1],
|
|
1166
|
+
[0x2c6d, 0x2c6d, -0x2a1c],
|
|
1167
|
+
[0x2c6e, 0x2c6e, -0x29fd],
|
|
1168
|
+
[0x2c6f, 0x2c6f, -0x2a1f],
|
|
1169
|
+
[0x2c70, 0x2c70, -0x2a1e],
|
|
1170
|
+
[0x2c72, 0x2c72, 0x1],
|
|
1171
|
+
[0x2c75, 0x2c75, 0x1],
|
|
1172
|
+
[0x2c7e, 0x2c7f, -0x2a3f],
|
|
1173
|
+
[0x2c80, 0x2c80, 0x1],
|
|
1174
|
+
[0x2c82, 0x2c82, 0x1],
|
|
1175
|
+
[0x2c84, 0x2c84, 0x1],
|
|
1176
|
+
[0x2c86, 0x2c86, 0x1],
|
|
1177
|
+
[0x2c88, 0x2c88, 0x1],
|
|
1178
|
+
[0x2c8a, 0x2c8a, 0x1],
|
|
1179
|
+
[0x2c8c, 0x2c8c, 0x1],
|
|
1180
|
+
[0x2c8e, 0x2c8e, 0x1],
|
|
1181
|
+
[0x2c90, 0x2c90, 0x1],
|
|
1182
|
+
[0x2c92, 0x2c92, 0x1],
|
|
1183
|
+
[0x2c94, 0x2c94, 0x1],
|
|
1184
|
+
[0x2c96, 0x2c96, 0x1],
|
|
1185
|
+
[0x2c98, 0x2c98, 0x1],
|
|
1186
|
+
[0x2c9a, 0x2c9a, 0x1],
|
|
1187
|
+
[0x2c9c, 0x2c9c, 0x1],
|
|
1188
|
+
[0x2c9e, 0x2c9e, 0x1],
|
|
1189
|
+
[0x2ca0, 0x2ca0, 0x1],
|
|
1190
|
+
[0x2ca2, 0x2ca2, 0x1],
|
|
1191
|
+
[0x2ca4, 0x2ca4, 0x1],
|
|
1192
|
+
[0x2ca6, 0x2ca6, 0x1],
|
|
1193
|
+
[0x2ca8, 0x2ca8, 0x1],
|
|
1194
|
+
[0x2caa, 0x2caa, 0x1],
|
|
1195
|
+
[0x2cac, 0x2cac, 0x1],
|
|
1196
|
+
[0x2cae, 0x2cae, 0x1],
|
|
1197
|
+
[0x2cb0, 0x2cb0, 0x1],
|
|
1198
|
+
[0x2cb2, 0x2cb2, 0x1],
|
|
1199
|
+
[0x2cb4, 0x2cb4, 0x1],
|
|
1200
|
+
[0x2cb6, 0x2cb6, 0x1],
|
|
1201
|
+
[0x2cb8, 0x2cb8, 0x1],
|
|
1202
|
+
[0x2cba, 0x2cba, 0x1],
|
|
1203
|
+
[0x2cbc, 0x2cbc, 0x1],
|
|
1204
|
+
[0x2cbe, 0x2cbe, 0x1],
|
|
1205
|
+
[0x2cc0, 0x2cc0, 0x1],
|
|
1206
|
+
[0x2cc2, 0x2cc2, 0x1],
|
|
1207
|
+
[0x2cc4, 0x2cc4, 0x1],
|
|
1208
|
+
[0x2cc6, 0x2cc6, 0x1],
|
|
1209
|
+
[0x2cc8, 0x2cc8, 0x1],
|
|
1210
|
+
[0x2cca, 0x2cca, 0x1],
|
|
1211
|
+
[0x2ccc, 0x2ccc, 0x1],
|
|
1212
|
+
[0x2cce, 0x2cce, 0x1],
|
|
1213
|
+
[0x2cd0, 0x2cd0, 0x1],
|
|
1214
|
+
[0x2cd2, 0x2cd2, 0x1],
|
|
1215
|
+
[0x2cd4, 0x2cd4, 0x1],
|
|
1216
|
+
[0x2cd6, 0x2cd6, 0x1],
|
|
1217
|
+
[0x2cd8, 0x2cd8, 0x1],
|
|
1218
|
+
[0x2cda, 0x2cda, 0x1],
|
|
1219
|
+
[0x2cdc, 0x2cdc, 0x1],
|
|
1220
|
+
[0x2cde, 0x2cde, 0x1],
|
|
1221
|
+
[0x2ce0, 0x2ce0, 0x1],
|
|
1222
|
+
[0x2ce2, 0x2ce2, 0x1],
|
|
1223
|
+
[0x2ceb, 0x2ceb, 0x1],
|
|
1224
|
+
[0x2ced, 0x2ced, 0x1],
|
|
1225
|
+
[0x2cf2, 0x2cf2, 0x1],
|
|
1226
|
+
[0xa640, 0xa640, 0x1],
|
|
1227
|
+
[0xa642, 0xa642, 0x1],
|
|
1228
|
+
[0xa644, 0xa644, 0x1],
|
|
1229
|
+
[0xa646, 0xa646, 0x1],
|
|
1230
|
+
[0xa648, 0xa648, 0x1],
|
|
1231
|
+
[0xa64a, 0xa64a, 0x1],
|
|
1232
|
+
[0xa64c, 0xa64c, 0x1],
|
|
1233
|
+
[0xa64e, 0xa64e, 0x1],
|
|
1234
|
+
[0xa650, 0xa650, 0x1],
|
|
1235
|
+
[0xa652, 0xa652, 0x1],
|
|
1236
|
+
[0xa654, 0xa654, 0x1],
|
|
1237
|
+
[0xa656, 0xa656, 0x1],
|
|
1238
|
+
[0xa658, 0xa658, 0x1],
|
|
1239
|
+
[0xa65a, 0xa65a, 0x1],
|
|
1240
|
+
[0xa65c, 0xa65c, 0x1],
|
|
1241
|
+
[0xa65e, 0xa65e, 0x1],
|
|
1242
|
+
[0xa660, 0xa660, 0x1],
|
|
1243
|
+
[0xa662, 0xa662, 0x1],
|
|
1244
|
+
[0xa664, 0xa664, 0x1],
|
|
1245
|
+
[0xa666, 0xa666, 0x1],
|
|
1246
|
+
[0xa668, 0xa668, 0x1],
|
|
1247
|
+
[0xa66a, 0xa66a, 0x1],
|
|
1248
|
+
[0xa66c, 0xa66c, 0x1],
|
|
1249
|
+
[0xa680, 0xa680, 0x1],
|
|
1250
|
+
[0xa682, 0xa682, 0x1],
|
|
1251
|
+
[0xa684, 0xa684, 0x1],
|
|
1252
|
+
[0xa686, 0xa686, 0x1],
|
|
1253
|
+
[0xa688, 0xa688, 0x1],
|
|
1254
|
+
[0xa68a, 0xa68a, 0x1],
|
|
1255
|
+
[0xa68c, 0xa68c, 0x1],
|
|
1256
|
+
[0xa68e, 0xa68e, 0x1],
|
|
1257
|
+
[0xa690, 0xa690, 0x1],
|
|
1258
|
+
[0xa692, 0xa692, 0x1],
|
|
1259
|
+
[0xa694, 0xa694, 0x1],
|
|
1260
|
+
[0xa696, 0xa696, 0x1],
|
|
1261
|
+
[0xa698, 0xa698, 0x1],
|
|
1262
|
+
[0xa69a, 0xa69a, 0x1],
|
|
1263
|
+
[0xa722, 0xa722, 0x1],
|
|
1264
|
+
[0xa724, 0xa724, 0x1],
|
|
1265
|
+
[0xa726, 0xa726, 0x1],
|
|
1266
|
+
[0xa728, 0xa728, 0x1],
|
|
1267
|
+
[0xa72a, 0xa72a, 0x1],
|
|
1268
|
+
[0xa72c, 0xa72c, 0x1],
|
|
1269
|
+
[0xa72e, 0xa72e, 0x1],
|
|
1270
|
+
[0xa732, 0xa732, 0x1],
|
|
1271
|
+
[0xa734, 0xa734, 0x1],
|
|
1272
|
+
[0xa736, 0xa736, 0x1],
|
|
1273
|
+
[0xa738, 0xa738, 0x1],
|
|
1274
|
+
[0xa73a, 0xa73a, 0x1],
|
|
1275
|
+
[0xa73c, 0xa73c, 0x1],
|
|
1276
|
+
[0xa73e, 0xa73e, 0x1],
|
|
1277
|
+
[0xa740, 0xa740, 0x1],
|
|
1278
|
+
[0xa742, 0xa742, 0x1],
|
|
1279
|
+
[0xa744, 0xa744, 0x1],
|
|
1280
|
+
[0xa746, 0xa746, 0x1],
|
|
1281
|
+
[0xa748, 0xa748, 0x1],
|
|
1282
|
+
[0xa74a, 0xa74a, 0x1],
|
|
1283
|
+
[0xa74c, 0xa74c, 0x1],
|
|
1284
|
+
[0xa74e, 0xa74e, 0x1],
|
|
1285
|
+
[0xa750, 0xa750, 0x1],
|
|
1286
|
+
[0xa752, 0xa752, 0x1],
|
|
1287
|
+
[0xa754, 0xa754, 0x1],
|
|
1288
|
+
[0xa756, 0xa756, 0x1],
|
|
1289
|
+
[0xa758, 0xa758, 0x1],
|
|
1290
|
+
[0xa75a, 0xa75a, 0x1],
|
|
1291
|
+
[0xa75c, 0xa75c, 0x1],
|
|
1292
|
+
[0xa75e, 0xa75e, 0x1],
|
|
1293
|
+
[0xa760, 0xa760, 0x1],
|
|
1294
|
+
[0xa762, 0xa762, 0x1],
|
|
1295
|
+
[0xa764, 0xa764, 0x1],
|
|
1296
|
+
[0xa766, 0xa766, 0x1],
|
|
1297
|
+
[0xa768, 0xa768, 0x1],
|
|
1298
|
+
[0xa76a, 0xa76a, 0x1],
|
|
1299
|
+
[0xa76c, 0xa76c, 0x1],
|
|
1300
|
+
[0xa76e, 0xa76e, 0x1],
|
|
1301
|
+
[0xa779, 0xa779, 0x1],
|
|
1302
|
+
[0xa77b, 0xa77b, 0x1],
|
|
1303
|
+
[0xa77d, 0xa77d, -0x8a04],
|
|
1304
|
+
[0xa77e, 0xa77e, 0x1],
|
|
1305
|
+
[0xa780, 0xa780, 0x1],
|
|
1306
|
+
[0xa782, 0xa782, 0x1],
|
|
1307
|
+
[0xa784, 0xa784, 0x1],
|
|
1308
|
+
[0xa786, 0xa786, 0x1],
|
|
1309
|
+
[0xa78b, 0xa78b, 0x1],
|
|
1310
|
+
[0xa78d, 0xa78d, -0xa528],
|
|
1311
|
+
[0xa790, 0xa790, 0x1],
|
|
1312
|
+
[0xa792, 0xa792, 0x1],
|
|
1313
|
+
[0xa796, 0xa796, 0x1],
|
|
1314
|
+
[0xa798, 0xa798, 0x1],
|
|
1315
|
+
[0xa79a, 0xa79a, 0x1],
|
|
1316
|
+
[0xa79c, 0xa79c, 0x1],
|
|
1317
|
+
[0xa79e, 0xa79e, 0x1],
|
|
1318
|
+
[0xa7a0, 0xa7a0, 0x1],
|
|
1319
|
+
[0xa7a2, 0xa7a2, 0x1],
|
|
1320
|
+
[0xa7a4, 0xa7a4, 0x1],
|
|
1321
|
+
[0xa7a6, 0xa7a6, 0x1],
|
|
1322
|
+
[0xa7a8, 0xa7a8, 0x1],
|
|
1323
|
+
[0xa7aa, 0xa7aa, -0xa544],
|
|
1324
|
+
[0xa7ab, 0xa7ab, -0xa54f],
|
|
1325
|
+
[0xa7ac, 0xa7ac, -0xa54b],
|
|
1326
|
+
[0xa7ad, 0xa7ad, -0xa541],
|
|
1327
|
+
[0xa7ae, 0xa7ae, -0xa544],
|
|
1328
|
+
[0xa7b0, 0xa7b0, -0xa512],
|
|
1329
|
+
[0xa7b1, 0xa7b1, -0xa52a],
|
|
1330
|
+
[0xa7b2, 0xa7b2, -0xa515],
|
|
1331
|
+
[0xa7b3, 0xa7b3, 0x3a0],
|
|
1332
|
+
[0xa7b4, 0xa7b4, 0x1],
|
|
1333
|
+
[0xa7b6, 0xa7b6, 0x1],
|
|
1334
|
+
[0xa7b8, 0xa7b8, 0x1],
|
|
1335
|
+
[0xa7ba, 0xa7ba, 0x1],
|
|
1336
|
+
[0xa7bc, 0xa7bc, 0x1],
|
|
1337
|
+
[0xa7be, 0xa7be, 0x1],
|
|
1338
|
+
[0xa7c0, 0xa7c0, 0x1],
|
|
1339
|
+
[0xa7c2, 0xa7c2, 0x1],
|
|
1340
|
+
[0xa7c4, 0xa7c4, -0x30],
|
|
1341
|
+
[0xa7c5, 0xa7c5, -0xa543],
|
|
1342
|
+
[0xa7c6, 0xa7c6, -0x8a38],
|
|
1343
|
+
[0xa7c7, 0xa7c7, 0x1],
|
|
1344
|
+
[0xa7c9, 0xa7c9, 0x1],
|
|
1345
|
+
[0xa7cb, 0xa7cb, -0xa567],
|
|
1346
|
+
[0xa7cc, 0xa7cc, 0x1],
|
|
1347
|
+
[0xa7ce, 0xa7ce, 0x1],
|
|
1348
|
+
[0xa7d0, 0xa7d0, 0x1],
|
|
1349
|
+
[0xa7d2, 0xa7d2, 0x1],
|
|
1350
|
+
[0xa7d4, 0xa7d4, 0x1],
|
|
1351
|
+
[0xa7d6, 0xa7d6, 0x1],
|
|
1352
|
+
[0xa7d8, 0xa7d8, 0x1],
|
|
1353
|
+
[0xa7da, 0xa7da, 0x1],
|
|
1354
|
+
[0xa7dc, 0xa7dc, -0xa641],
|
|
1355
|
+
[0xa7f5, 0xa7f5, 0x1],
|
|
1356
|
+
[0xff21, 0xff3a, 0x20],
|
|
1357
|
+
[0x10400, 0x10427, 0x28],
|
|
1358
|
+
[0x104b0, 0x104d3, 0x28],
|
|
1359
|
+
[0x10570, 0x1057a, 0x27],
|
|
1360
|
+
[0x1057c, 0x1058a, 0x27],
|
|
1361
|
+
[0x1058c, 0x10592, 0x27],
|
|
1362
|
+
[0x10594, 0x10595, 0x27],
|
|
1363
|
+
[0x10c80, 0x10cb2, 0x40],
|
|
1364
|
+
[0x10d50, 0x10d65, 0x20],
|
|
1365
|
+
[0x118a0, 0x118bf, 0x20],
|
|
1366
|
+
[0x16e40, 0x16e5f, 0x20],
|
|
1367
|
+
[0x16ea0, 0x16eb8, 0x1b],
|
|
1368
|
+
[0x1e900, 0x1e921, 0x22]
|
|
1369
|
+
];
|
|
1370
|
+
export const UPPER_EXPANSIONS = [
|
|
1371
|
+
[0xdf, [0x53, 0x53]],
|
|
1372
|
+
[0x149, [0x2bc, 0x4e]],
|
|
1373
|
+
[0x1f0, [0x4a, 0x30c]],
|
|
1374
|
+
[0x390, [0x399, 0x308, 0x301]],
|
|
1375
|
+
[0x3b0, [0x3a5, 0x308, 0x301]],
|
|
1376
|
+
[0x587, [0x535, 0x552]],
|
|
1377
|
+
[0x1e96, [0x48, 0x331]],
|
|
1378
|
+
[0x1e97, [0x54, 0x308]],
|
|
1379
|
+
[0x1e98, [0x57, 0x30a]],
|
|
1380
|
+
[0x1e99, [0x59, 0x30a]],
|
|
1381
|
+
[0x1e9a, [0x41, 0x2be]],
|
|
1382
|
+
[0x1f50, [0x3a5, 0x313]],
|
|
1383
|
+
[0x1f52, [0x3a5, 0x313, 0x300]],
|
|
1384
|
+
[0x1f54, [0x3a5, 0x313, 0x301]],
|
|
1385
|
+
[0x1f56, [0x3a5, 0x313, 0x342]],
|
|
1386
|
+
[0x1f80, [0x1f08, 0x399]],
|
|
1387
|
+
[0x1f81, [0x1f09, 0x399]],
|
|
1388
|
+
[0x1f82, [0x1f0a, 0x399]],
|
|
1389
|
+
[0x1f83, [0x1f0b, 0x399]],
|
|
1390
|
+
[0x1f84, [0x1f0c, 0x399]],
|
|
1391
|
+
[0x1f85, [0x1f0d, 0x399]],
|
|
1392
|
+
[0x1f86, [0x1f0e, 0x399]],
|
|
1393
|
+
[0x1f87, [0x1f0f, 0x399]],
|
|
1394
|
+
[0x1f88, [0x1f08, 0x399]],
|
|
1395
|
+
[0x1f89, [0x1f09, 0x399]],
|
|
1396
|
+
[0x1f8a, [0x1f0a, 0x399]],
|
|
1397
|
+
[0x1f8b, [0x1f0b, 0x399]],
|
|
1398
|
+
[0x1f8c, [0x1f0c, 0x399]],
|
|
1399
|
+
[0x1f8d, [0x1f0d, 0x399]],
|
|
1400
|
+
[0x1f8e, [0x1f0e, 0x399]],
|
|
1401
|
+
[0x1f8f, [0x1f0f, 0x399]],
|
|
1402
|
+
[0x1f90, [0x1f28, 0x399]],
|
|
1403
|
+
[0x1f91, [0x1f29, 0x399]],
|
|
1404
|
+
[0x1f92, [0x1f2a, 0x399]],
|
|
1405
|
+
[0x1f93, [0x1f2b, 0x399]],
|
|
1406
|
+
[0x1f94, [0x1f2c, 0x399]],
|
|
1407
|
+
[0x1f95, [0x1f2d, 0x399]],
|
|
1408
|
+
[0x1f96, [0x1f2e, 0x399]],
|
|
1409
|
+
[0x1f97, [0x1f2f, 0x399]],
|
|
1410
|
+
[0x1f98, [0x1f28, 0x399]],
|
|
1411
|
+
[0x1f99, [0x1f29, 0x399]],
|
|
1412
|
+
[0x1f9a, [0x1f2a, 0x399]],
|
|
1413
|
+
[0x1f9b, [0x1f2b, 0x399]],
|
|
1414
|
+
[0x1f9c, [0x1f2c, 0x399]],
|
|
1415
|
+
[0x1f9d, [0x1f2d, 0x399]],
|
|
1416
|
+
[0x1f9e, [0x1f2e, 0x399]],
|
|
1417
|
+
[0x1f9f, [0x1f2f, 0x399]],
|
|
1418
|
+
[0x1fa0, [0x1f68, 0x399]],
|
|
1419
|
+
[0x1fa1, [0x1f69, 0x399]],
|
|
1420
|
+
[0x1fa2, [0x1f6a, 0x399]],
|
|
1421
|
+
[0x1fa3, [0x1f6b, 0x399]],
|
|
1422
|
+
[0x1fa4, [0x1f6c, 0x399]],
|
|
1423
|
+
[0x1fa5, [0x1f6d, 0x399]],
|
|
1424
|
+
[0x1fa6, [0x1f6e, 0x399]],
|
|
1425
|
+
[0x1fa7, [0x1f6f, 0x399]],
|
|
1426
|
+
[0x1fa8, [0x1f68, 0x399]],
|
|
1427
|
+
[0x1fa9, [0x1f69, 0x399]],
|
|
1428
|
+
[0x1faa, [0x1f6a, 0x399]],
|
|
1429
|
+
[0x1fab, [0x1f6b, 0x399]],
|
|
1430
|
+
[0x1fac, [0x1f6c, 0x399]],
|
|
1431
|
+
[0x1fad, [0x1f6d, 0x399]],
|
|
1432
|
+
[0x1fae, [0x1f6e, 0x399]],
|
|
1433
|
+
[0x1faf, [0x1f6f, 0x399]],
|
|
1434
|
+
[0x1fb2, [0x1fba, 0x399]],
|
|
1435
|
+
[0x1fb3, [0x391, 0x399]],
|
|
1436
|
+
[0x1fb4, [0x386, 0x399]],
|
|
1437
|
+
[0x1fb6, [0x391, 0x342]],
|
|
1438
|
+
[0x1fb7, [0x391, 0x342, 0x399]],
|
|
1439
|
+
[0x1fbc, [0x391, 0x399]],
|
|
1440
|
+
[0x1fc2, [0x1fca, 0x399]],
|
|
1441
|
+
[0x1fc3, [0x397, 0x399]],
|
|
1442
|
+
[0x1fc4, [0x389, 0x399]],
|
|
1443
|
+
[0x1fc6, [0x397, 0x342]],
|
|
1444
|
+
[0x1fc7, [0x397, 0x342, 0x399]],
|
|
1445
|
+
[0x1fcc, [0x397, 0x399]],
|
|
1446
|
+
[0x1fd2, [0x399, 0x308, 0x300]],
|
|
1447
|
+
[0x1fd3, [0x399, 0x308, 0x301]],
|
|
1448
|
+
[0x1fd6, [0x399, 0x342]],
|
|
1449
|
+
[0x1fd7, [0x399, 0x308, 0x342]],
|
|
1450
|
+
[0x1fe2, [0x3a5, 0x308, 0x300]],
|
|
1451
|
+
[0x1fe3, [0x3a5, 0x308, 0x301]],
|
|
1452
|
+
[0x1fe4, [0x3a1, 0x313]],
|
|
1453
|
+
[0x1fe6, [0x3a5, 0x342]],
|
|
1454
|
+
[0x1fe7, [0x3a5, 0x308, 0x342]],
|
|
1455
|
+
[0x1ff2, [0x1ffa, 0x399]],
|
|
1456
|
+
[0x1ff3, [0x3a9, 0x399]],
|
|
1457
|
+
[0x1ff4, [0x38f, 0x399]],
|
|
1458
|
+
[0x1ff6, [0x3a9, 0x342]],
|
|
1459
|
+
[0x1ff7, [0x3a9, 0x342, 0x399]],
|
|
1460
|
+
[0x1ffc, [0x3a9, 0x399]],
|
|
1461
|
+
[0xfb00, [0x46, 0x46]],
|
|
1462
|
+
[0xfb01, [0x46, 0x49]],
|
|
1463
|
+
[0xfb02, [0x46, 0x4c]],
|
|
1464
|
+
[0xfb03, [0x46, 0x46, 0x49]],
|
|
1465
|
+
[0xfb04, [0x46, 0x46, 0x4c]],
|
|
1466
|
+
[0xfb05, [0x53, 0x54]],
|
|
1467
|
+
[0xfb06, [0x53, 0x54]],
|
|
1468
|
+
[0xfb13, [0x544, 0x546]],
|
|
1469
|
+
[0xfb14, [0x544, 0x535]],
|
|
1470
|
+
[0xfb15, [0x544, 0x53b]],
|
|
1471
|
+
[0xfb16, [0x54e, 0x546]],
|
|
1472
|
+
[0xfb17, [0x544, 0x53d]]
|
|
1473
|
+
];
|
|
1474
|
+
export const LOWER_EXPANSIONS = [
|
|
1475
|
+
[0x130, [0x69, 0x307]]
|
|
1476
|
+
];
|
|
1477
|
+
export const CASED_RANGES = [
|
|
1478
|
+
[0x41, 0x5a],
|
|
1479
|
+
[0x61, 0x7a],
|
|
1480
|
+
[0xaa, 0xaa],
|
|
1481
|
+
[0xb5, 0xb5],
|
|
1482
|
+
[0xba, 0xba],
|
|
1483
|
+
[0xc0, 0xd6],
|
|
1484
|
+
[0xd8, 0xf6],
|
|
1485
|
+
[0xf8, 0x1ba],
|
|
1486
|
+
[0x1bc, 0x1bf],
|
|
1487
|
+
[0x1c4, 0x293],
|
|
1488
|
+
[0x296, 0x2b8],
|
|
1489
|
+
[0x2c0, 0x2c1],
|
|
1490
|
+
[0x2e0, 0x2e4],
|
|
1491
|
+
[0x345, 0x345],
|
|
1492
|
+
[0x370, 0x373],
|
|
1493
|
+
[0x376, 0x377],
|
|
1494
|
+
[0x37a, 0x37d],
|
|
1495
|
+
[0x37f, 0x37f],
|
|
1496
|
+
[0x386, 0x386],
|
|
1497
|
+
[0x388, 0x38a],
|
|
1498
|
+
[0x38c, 0x38c],
|
|
1499
|
+
[0x38e, 0x3a1],
|
|
1500
|
+
[0x3a3, 0x3f5],
|
|
1501
|
+
[0x3f7, 0x481],
|
|
1502
|
+
[0x48a, 0x52f],
|
|
1503
|
+
[0x531, 0x556],
|
|
1504
|
+
[0x560, 0x588],
|
|
1505
|
+
[0x10a0, 0x10c5],
|
|
1506
|
+
[0x10c7, 0x10c7],
|
|
1507
|
+
[0x10cd, 0x10cd],
|
|
1508
|
+
[0x10d0, 0x10fa],
|
|
1509
|
+
[0x10fc, 0x10ff],
|
|
1510
|
+
[0x13a0, 0x13f5],
|
|
1511
|
+
[0x13f8, 0x13fd],
|
|
1512
|
+
[0x1c80, 0x1c8a],
|
|
1513
|
+
[0x1c90, 0x1cba],
|
|
1514
|
+
[0x1cbd, 0x1cbf],
|
|
1515
|
+
[0x1d00, 0x1dbf],
|
|
1516
|
+
[0x1e00, 0x1f15],
|
|
1517
|
+
[0x1f18, 0x1f1d],
|
|
1518
|
+
[0x1f20, 0x1f45],
|
|
1519
|
+
[0x1f48, 0x1f4d],
|
|
1520
|
+
[0x1f50, 0x1f57],
|
|
1521
|
+
[0x1f59, 0x1f59],
|
|
1522
|
+
[0x1f5b, 0x1f5b],
|
|
1523
|
+
[0x1f5d, 0x1f5d],
|
|
1524
|
+
[0x1f5f, 0x1f7d],
|
|
1525
|
+
[0x1f80, 0x1fb4],
|
|
1526
|
+
[0x1fb6, 0x1fbc],
|
|
1527
|
+
[0x1fbe, 0x1fbe],
|
|
1528
|
+
[0x1fc2, 0x1fc4],
|
|
1529
|
+
[0x1fc6, 0x1fcc],
|
|
1530
|
+
[0x1fd0, 0x1fd3],
|
|
1531
|
+
[0x1fd6, 0x1fdb],
|
|
1532
|
+
[0x1fe0, 0x1fec],
|
|
1533
|
+
[0x1ff2, 0x1ff4],
|
|
1534
|
+
[0x1ff6, 0x1ffc],
|
|
1535
|
+
[0x2071, 0x2071],
|
|
1536
|
+
[0x207f, 0x207f],
|
|
1537
|
+
[0x2090, 0x209c],
|
|
1538
|
+
[0x2102, 0x2102],
|
|
1539
|
+
[0x2107, 0x2107],
|
|
1540
|
+
[0x210a, 0x2113],
|
|
1541
|
+
[0x2115, 0x2115],
|
|
1542
|
+
[0x2119, 0x211d],
|
|
1543
|
+
[0x2124, 0x2124],
|
|
1544
|
+
[0x2126, 0x2126],
|
|
1545
|
+
[0x2128, 0x2128],
|
|
1546
|
+
[0x212a, 0x212d],
|
|
1547
|
+
[0x212f, 0x2134],
|
|
1548
|
+
[0x2139, 0x2139],
|
|
1549
|
+
[0x213c, 0x213f],
|
|
1550
|
+
[0x2145, 0x2149],
|
|
1551
|
+
[0x214e, 0x214e],
|
|
1552
|
+
[0x2160, 0x217f],
|
|
1553
|
+
[0x2183, 0x2184],
|
|
1554
|
+
[0x24b6, 0x24e9],
|
|
1555
|
+
[0x2c00, 0x2ce4],
|
|
1556
|
+
[0x2ceb, 0x2cee],
|
|
1557
|
+
[0x2cf2, 0x2cf3],
|
|
1558
|
+
[0x2d00, 0x2d25],
|
|
1559
|
+
[0x2d27, 0x2d27],
|
|
1560
|
+
[0x2d2d, 0x2d2d],
|
|
1561
|
+
[0xa640, 0xa66d],
|
|
1562
|
+
[0xa680, 0xa69d],
|
|
1563
|
+
[0xa722, 0xa787],
|
|
1564
|
+
[0xa78b, 0xa78e],
|
|
1565
|
+
[0xa790, 0xa7dc],
|
|
1566
|
+
[0xa7f1, 0xa7f6],
|
|
1567
|
+
[0xa7f8, 0xa7fa],
|
|
1568
|
+
[0xab30, 0xab5a],
|
|
1569
|
+
[0xab5c, 0xab69],
|
|
1570
|
+
[0xab70, 0xabbf],
|
|
1571
|
+
[0xfb00, 0xfb06],
|
|
1572
|
+
[0xfb13, 0xfb17],
|
|
1573
|
+
[0xff21, 0xff3a],
|
|
1574
|
+
[0xff41, 0xff5a],
|
|
1575
|
+
[0x10400, 0x1044f],
|
|
1576
|
+
[0x104b0, 0x104d3],
|
|
1577
|
+
[0x104d8, 0x104fb],
|
|
1578
|
+
[0x10570, 0x1057a],
|
|
1579
|
+
[0x1057c, 0x1058a],
|
|
1580
|
+
[0x1058c, 0x10592],
|
|
1581
|
+
[0x10594, 0x10595],
|
|
1582
|
+
[0x10597, 0x105a1],
|
|
1583
|
+
[0x105a3, 0x105b1],
|
|
1584
|
+
[0x105b3, 0x105b9],
|
|
1585
|
+
[0x105bb, 0x105bc],
|
|
1586
|
+
[0x10780, 0x10780],
|
|
1587
|
+
[0x10783, 0x10785],
|
|
1588
|
+
[0x10787, 0x107b0],
|
|
1589
|
+
[0x107b2, 0x107ba],
|
|
1590
|
+
[0x10c80, 0x10cb2],
|
|
1591
|
+
[0x10cc0, 0x10cf2],
|
|
1592
|
+
[0x10d50, 0x10d65],
|
|
1593
|
+
[0x10d70, 0x10d85],
|
|
1594
|
+
[0x118a0, 0x118df],
|
|
1595
|
+
[0x16e40, 0x16e7f],
|
|
1596
|
+
[0x16ea0, 0x16eb8],
|
|
1597
|
+
[0x16ebb, 0x16ed3],
|
|
1598
|
+
[0x1d400, 0x1d454],
|
|
1599
|
+
[0x1d456, 0x1d49c],
|
|
1600
|
+
[0x1d49e, 0x1d49f],
|
|
1601
|
+
[0x1d4a2, 0x1d4a2],
|
|
1602
|
+
[0x1d4a5, 0x1d4a6],
|
|
1603
|
+
[0x1d4a9, 0x1d4ac],
|
|
1604
|
+
[0x1d4ae, 0x1d4b9],
|
|
1605
|
+
[0x1d4bb, 0x1d4bb],
|
|
1606
|
+
[0x1d4bd, 0x1d4c3],
|
|
1607
|
+
[0x1d4c5, 0x1d505],
|
|
1608
|
+
[0x1d507, 0x1d50a],
|
|
1609
|
+
[0x1d50d, 0x1d514],
|
|
1610
|
+
[0x1d516, 0x1d51c],
|
|
1611
|
+
[0x1d51e, 0x1d539],
|
|
1612
|
+
[0x1d53b, 0x1d53e],
|
|
1613
|
+
[0x1d540, 0x1d544],
|
|
1614
|
+
[0x1d546, 0x1d546],
|
|
1615
|
+
[0x1d54a, 0x1d550],
|
|
1616
|
+
[0x1d552, 0x1d6a5],
|
|
1617
|
+
[0x1d6a8, 0x1d6c0],
|
|
1618
|
+
[0x1d6c2, 0x1d6da],
|
|
1619
|
+
[0x1d6dc, 0x1d6fa],
|
|
1620
|
+
[0x1d6fc, 0x1d714],
|
|
1621
|
+
[0x1d716, 0x1d734],
|
|
1622
|
+
[0x1d736, 0x1d74e],
|
|
1623
|
+
[0x1d750, 0x1d76e],
|
|
1624
|
+
[0x1d770, 0x1d788],
|
|
1625
|
+
[0x1d78a, 0x1d7a8],
|
|
1626
|
+
[0x1d7aa, 0x1d7c2],
|
|
1627
|
+
[0x1d7c4, 0x1d7cb],
|
|
1628
|
+
[0x1df00, 0x1df09],
|
|
1629
|
+
[0x1df0b, 0x1df1e],
|
|
1630
|
+
[0x1df25, 0x1df2a],
|
|
1631
|
+
[0x1e030, 0x1e06d],
|
|
1632
|
+
[0x1e900, 0x1e943],
|
|
1633
|
+
[0x1f130, 0x1f149],
|
|
1634
|
+
[0x1f150, 0x1f169],
|
|
1635
|
+
[0x1f170, 0x1f189]
|
|
1636
|
+
];
|
|
1637
|
+
export const CASE_IGNORABLE_RANGES = [
|
|
1638
|
+
[0x27, 0x27],
|
|
1639
|
+
[0x2e, 0x2e],
|
|
1640
|
+
[0x3a, 0x3a],
|
|
1641
|
+
[0x5e, 0x5e],
|
|
1642
|
+
[0x60, 0x60],
|
|
1643
|
+
[0xa8, 0xa8],
|
|
1644
|
+
[0xad, 0xad],
|
|
1645
|
+
[0xaf, 0xaf],
|
|
1646
|
+
[0xb4, 0xb4],
|
|
1647
|
+
[0xb7, 0xb8],
|
|
1648
|
+
[0x2b0, 0x36f],
|
|
1649
|
+
[0x374, 0x375],
|
|
1650
|
+
[0x37a, 0x37a],
|
|
1651
|
+
[0x384, 0x385],
|
|
1652
|
+
[0x387, 0x387],
|
|
1653
|
+
[0x483, 0x489],
|
|
1654
|
+
[0x559, 0x559],
|
|
1655
|
+
[0x55f, 0x55f],
|
|
1656
|
+
[0x591, 0x5bd],
|
|
1657
|
+
[0x5bf, 0x5bf],
|
|
1658
|
+
[0x5c1, 0x5c2],
|
|
1659
|
+
[0x5c4, 0x5c5],
|
|
1660
|
+
[0x5c7, 0x5c7],
|
|
1661
|
+
[0x5f4, 0x5f4],
|
|
1662
|
+
[0x600, 0x605],
|
|
1663
|
+
[0x610, 0x61a],
|
|
1664
|
+
[0x61c, 0x61c],
|
|
1665
|
+
[0x640, 0x640],
|
|
1666
|
+
[0x64b, 0x65f],
|
|
1667
|
+
[0x670, 0x670],
|
|
1668
|
+
[0x6d6, 0x6dd],
|
|
1669
|
+
[0x6df, 0x6e8],
|
|
1670
|
+
[0x6ea, 0x6ed],
|
|
1671
|
+
[0x70f, 0x70f],
|
|
1672
|
+
[0x711, 0x711],
|
|
1673
|
+
[0x730, 0x74a],
|
|
1674
|
+
[0x7a6, 0x7b0],
|
|
1675
|
+
[0x7eb, 0x7f5],
|
|
1676
|
+
[0x7fa, 0x7fa],
|
|
1677
|
+
[0x7fd, 0x7fd],
|
|
1678
|
+
[0x816, 0x82d],
|
|
1679
|
+
[0x859, 0x85b],
|
|
1680
|
+
[0x888, 0x888],
|
|
1681
|
+
[0x890, 0x891],
|
|
1682
|
+
[0x897, 0x89f],
|
|
1683
|
+
[0x8c9, 0x902],
|
|
1684
|
+
[0x93a, 0x93a],
|
|
1685
|
+
[0x93c, 0x93c],
|
|
1686
|
+
[0x941, 0x948],
|
|
1687
|
+
[0x94d, 0x94d],
|
|
1688
|
+
[0x951, 0x957],
|
|
1689
|
+
[0x962, 0x963],
|
|
1690
|
+
[0x971, 0x971],
|
|
1691
|
+
[0x981, 0x981],
|
|
1692
|
+
[0x9bc, 0x9bc],
|
|
1693
|
+
[0x9c1, 0x9c4],
|
|
1694
|
+
[0x9cd, 0x9cd],
|
|
1695
|
+
[0x9e2, 0x9e3],
|
|
1696
|
+
[0x9fe, 0x9fe],
|
|
1697
|
+
[0xa01, 0xa02],
|
|
1698
|
+
[0xa3c, 0xa3c],
|
|
1699
|
+
[0xa41, 0xa42],
|
|
1700
|
+
[0xa47, 0xa48],
|
|
1701
|
+
[0xa4b, 0xa4d],
|
|
1702
|
+
[0xa51, 0xa51],
|
|
1703
|
+
[0xa70, 0xa71],
|
|
1704
|
+
[0xa75, 0xa75],
|
|
1705
|
+
[0xa81, 0xa82],
|
|
1706
|
+
[0xabc, 0xabc],
|
|
1707
|
+
[0xac1, 0xac5],
|
|
1708
|
+
[0xac7, 0xac8],
|
|
1709
|
+
[0xacd, 0xacd],
|
|
1710
|
+
[0xae2, 0xae3],
|
|
1711
|
+
[0xafa, 0xaff],
|
|
1712
|
+
[0xb01, 0xb01],
|
|
1713
|
+
[0xb3c, 0xb3c],
|
|
1714
|
+
[0xb3f, 0xb3f],
|
|
1715
|
+
[0xb41, 0xb44],
|
|
1716
|
+
[0xb4d, 0xb4d],
|
|
1717
|
+
[0xb55, 0xb56],
|
|
1718
|
+
[0xb62, 0xb63],
|
|
1719
|
+
[0xb82, 0xb82],
|
|
1720
|
+
[0xbc0, 0xbc0],
|
|
1721
|
+
[0xbcd, 0xbcd],
|
|
1722
|
+
[0xc00, 0xc00],
|
|
1723
|
+
[0xc04, 0xc04],
|
|
1724
|
+
[0xc3c, 0xc3c],
|
|
1725
|
+
[0xc3e, 0xc40],
|
|
1726
|
+
[0xc46, 0xc48],
|
|
1727
|
+
[0xc4a, 0xc4d],
|
|
1728
|
+
[0xc55, 0xc56],
|
|
1729
|
+
[0xc62, 0xc63],
|
|
1730
|
+
[0xc81, 0xc81],
|
|
1731
|
+
[0xcbc, 0xcbc],
|
|
1732
|
+
[0xcbf, 0xcbf],
|
|
1733
|
+
[0xcc6, 0xcc6],
|
|
1734
|
+
[0xccc, 0xccd],
|
|
1735
|
+
[0xce2, 0xce3],
|
|
1736
|
+
[0xd00, 0xd01],
|
|
1737
|
+
[0xd3b, 0xd3c],
|
|
1738
|
+
[0xd41, 0xd44],
|
|
1739
|
+
[0xd4d, 0xd4d],
|
|
1740
|
+
[0xd62, 0xd63],
|
|
1741
|
+
[0xd81, 0xd81],
|
|
1742
|
+
[0xdca, 0xdca],
|
|
1743
|
+
[0xdd2, 0xdd4],
|
|
1744
|
+
[0xdd6, 0xdd6],
|
|
1745
|
+
[0xe31, 0xe31],
|
|
1746
|
+
[0xe34, 0xe3a],
|
|
1747
|
+
[0xe46, 0xe4e],
|
|
1748
|
+
[0xeb1, 0xeb1],
|
|
1749
|
+
[0xeb4, 0xebc],
|
|
1750
|
+
[0xec6, 0xec6],
|
|
1751
|
+
[0xec8, 0xece],
|
|
1752
|
+
[0xf18, 0xf19],
|
|
1753
|
+
[0xf35, 0xf35],
|
|
1754
|
+
[0xf37, 0xf37],
|
|
1755
|
+
[0xf39, 0xf39],
|
|
1756
|
+
[0xf71, 0xf7e],
|
|
1757
|
+
[0xf80, 0xf84],
|
|
1758
|
+
[0xf86, 0xf87],
|
|
1759
|
+
[0xf8d, 0xf97],
|
|
1760
|
+
[0xf99, 0xfbc],
|
|
1761
|
+
[0xfc6, 0xfc6],
|
|
1762
|
+
[0x102d, 0x1030],
|
|
1763
|
+
[0x1032, 0x1037],
|
|
1764
|
+
[0x1039, 0x103a],
|
|
1765
|
+
[0x103d, 0x103e],
|
|
1766
|
+
[0x1058, 0x1059],
|
|
1767
|
+
[0x105e, 0x1060],
|
|
1768
|
+
[0x1071, 0x1074],
|
|
1769
|
+
[0x1082, 0x1082],
|
|
1770
|
+
[0x1085, 0x1086],
|
|
1771
|
+
[0x108d, 0x108d],
|
|
1772
|
+
[0x109d, 0x109d],
|
|
1773
|
+
[0x10fc, 0x10fc],
|
|
1774
|
+
[0x135d, 0x135f],
|
|
1775
|
+
[0x1712, 0x1714],
|
|
1776
|
+
[0x1732, 0x1733],
|
|
1777
|
+
[0x1752, 0x1753],
|
|
1778
|
+
[0x1772, 0x1773],
|
|
1779
|
+
[0x17b4, 0x17b5],
|
|
1780
|
+
[0x17b7, 0x17bd],
|
|
1781
|
+
[0x17c6, 0x17c6],
|
|
1782
|
+
[0x17c9, 0x17d3],
|
|
1783
|
+
[0x17d7, 0x17d7],
|
|
1784
|
+
[0x17dd, 0x17dd],
|
|
1785
|
+
[0x180b, 0x180f],
|
|
1786
|
+
[0x1843, 0x1843],
|
|
1787
|
+
[0x1885, 0x1886],
|
|
1788
|
+
[0x18a9, 0x18a9],
|
|
1789
|
+
[0x1920, 0x1922],
|
|
1790
|
+
[0x1927, 0x1928],
|
|
1791
|
+
[0x1932, 0x1932],
|
|
1792
|
+
[0x1939, 0x193b],
|
|
1793
|
+
[0x1a17, 0x1a18],
|
|
1794
|
+
[0x1a1b, 0x1a1b],
|
|
1795
|
+
[0x1a56, 0x1a56],
|
|
1796
|
+
[0x1a58, 0x1a5e],
|
|
1797
|
+
[0x1a60, 0x1a60],
|
|
1798
|
+
[0x1a62, 0x1a62],
|
|
1799
|
+
[0x1a65, 0x1a6c],
|
|
1800
|
+
[0x1a73, 0x1a7c],
|
|
1801
|
+
[0x1a7f, 0x1a7f],
|
|
1802
|
+
[0x1aa7, 0x1aa7],
|
|
1803
|
+
[0x1ab0, 0x1add],
|
|
1804
|
+
[0x1ae0, 0x1aeb],
|
|
1805
|
+
[0x1b00, 0x1b03],
|
|
1806
|
+
[0x1b34, 0x1b34],
|
|
1807
|
+
[0x1b36, 0x1b3a],
|
|
1808
|
+
[0x1b3c, 0x1b3c],
|
|
1809
|
+
[0x1b42, 0x1b42],
|
|
1810
|
+
[0x1b6b, 0x1b73],
|
|
1811
|
+
[0x1b80, 0x1b81],
|
|
1812
|
+
[0x1ba2, 0x1ba5],
|
|
1813
|
+
[0x1ba8, 0x1ba9],
|
|
1814
|
+
[0x1bab, 0x1bad],
|
|
1815
|
+
[0x1be6, 0x1be6],
|
|
1816
|
+
[0x1be8, 0x1be9],
|
|
1817
|
+
[0x1bed, 0x1bed],
|
|
1818
|
+
[0x1bef, 0x1bf1],
|
|
1819
|
+
[0x1c2c, 0x1c33],
|
|
1820
|
+
[0x1c36, 0x1c37],
|
|
1821
|
+
[0x1c78, 0x1c7d],
|
|
1822
|
+
[0x1cd0, 0x1cd2],
|
|
1823
|
+
[0x1cd4, 0x1ce0],
|
|
1824
|
+
[0x1ce2, 0x1ce8],
|
|
1825
|
+
[0x1ced, 0x1ced],
|
|
1826
|
+
[0x1cf4, 0x1cf4],
|
|
1827
|
+
[0x1cf8, 0x1cf9],
|
|
1828
|
+
[0x1d2c, 0x1d6a],
|
|
1829
|
+
[0x1d78, 0x1d78],
|
|
1830
|
+
[0x1d9b, 0x1dff],
|
|
1831
|
+
[0x1fbd, 0x1fbd],
|
|
1832
|
+
[0x1fbf, 0x1fc1],
|
|
1833
|
+
[0x1fcd, 0x1fcf],
|
|
1834
|
+
[0x1fdd, 0x1fdf],
|
|
1835
|
+
[0x1fed, 0x1fef],
|
|
1836
|
+
[0x1ffd, 0x1ffe],
|
|
1837
|
+
[0x200b, 0x200f],
|
|
1838
|
+
[0x2018, 0x2019],
|
|
1839
|
+
[0x2024, 0x2024],
|
|
1840
|
+
[0x2027, 0x2027],
|
|
1841
|
+
[0x202a, 0x202e],
|
|
1842
|
+
[0x2060, 0x2064],
|
|
1843
|
+
[0x2066, 0x206f],
|
|
1844
|
+
[0x2071, 0x2071],
|
|
1845
|
+
[0x207f, 0x207f],
|
|
1846
|
+
[0x2090, 0x209c],
|
|
1847
|
+
[0x20d0, 0x20f0],
|
|
1848
|
+
[0x2c7c, 0x2c7d],
|
|
1849
|
+
[0x2cef, 0x2cf1],
|
|
1850
|
+
[0x2d6f, 0x2d6f],
|
|
1851
|
+
[0x2d7f, 0x2d7f],
|
|
1852
|
+
[0x2de0, 0x2dff],
|
|
1853
|
+
[0x2e2f, 0x2e2f],
|
|
1854
|
+
[0x3005, 0x3005],
|
|
1855
|
+
[0x302a, 0x302d],
|
|
1856
|
+
[0x3031, 0x3035],
|
|
1857
|
+
[0x303b, 0x303b],
|
|
1858
|
+
[0x3099, 0x309e],
|
|
1859
|
+
[0x30fc, 0x30fe],
|
|
1860
|
+
[0xa015, 0xa015],
|
|
1861
|
+
[0xa4f8, 0xa4fd],
|
|
1862
|
+
[0xa60c, 0xa60c],
|
|
1863
|
+
[0xa66f, 0xa672],
|
|
1864
|
+
[0xa674, 0xa67d],
|
|
1865
|
+
[0xa67f, 0xa67f],
|
|
1866
|
+
[0xa69c, 0xa69f],
|
|
1867
|
+
[0xa6f0, 0xa6f1],
|
|
1868
|
+
[0xa700, 0xa721],
|
|
1869
|
+
[0xa770, 0xa770],
|
|
1870
|
+
[0xa788, 0xa78a],
|
|
1871
|
+
[0xa7f1, 0xa7f4],
|
|
1872
|
+
[0xa7f8, 0xa7f9],
|
|
1873
|
+
[0xa802, 0xa802],
|
|
1874
|
+
[0xa806, 0xa806],
|
|
1875
|
+
[0xa80b, 0xa80b],
|
|
1876
|
+
[0xa825, 0xa826],
|
|
1877
|
+
[0xa82c, 0xa82c],
|
|
1878
|
+
[0xa8c4, 0xa8c5],
|
|
1879
|
+
[0xa8e0, 0xa8f1],
|
|
1880
|
+
[0xa8ff, 0xa8ff],
|
|
1881
|
+
[0xa926, 0xa92d],
|
|
1882
|
+
[0xa947, 0xa951],
|
|
1883
|
+
[0xa980, 0xa982],
|
|
1884
|
+
[0xa9b3, 0xa9b3],
|
|
1885
|
+
[0xa9b6, 0xa9b9],
|
|
1886
|
+
[0xa9bc, 0xa9bd],
|
|
1887
|
+
[0xa9cf, 0xa9cf],
|
|
1888
|
+
[0xa9e5, 0xa9e6],
|
|
1889
|
+
[0xaa29, 0xaa2e],
|
|
1890
|
+
[0xaa31, 0xaa32],
|
|
1891
|
+
[0xaa35, 0xaa36],
|
|
1892
|
+
[0xaa43, 0xaa43],
|
|
1893
|
+
[0xaa4c, 0xaa4c],
|
|
1894
|
+
[0xaa70, 0xaa70],
|
|
1895
|
+
[0xaa7c, 0xaa7c],
|
|
1896
|
+
[0xaab0, 0xaab0],
|
|
1897
|
+
[0xaab2, 0xaab4],
|
|
1898
|
+
[0xaab7, 0xaab8],
|
|
1899
|
+
[0xaabe, 0xaabf],
|
|
1900
|
+
[0xaac1, 0xaac1],
|
|
1901
|
+
[0xaadd, 0xaadd],
|
|
1902
|
+
[0xaaec, 0xaaed],
|
|
1903
|
+
[0xaaf3, 0xaaf4],
|
|
1904
|
+
[0xaaf6, 0xaaf6],
|
|
1905
|
+
[0xab5b, 0xab5f],
|
|
1906
|
+
[0xab69, 0xab6b],
|
|
1907
|
+
[0xabe5, 0xabe5],
|
|
1908
|
+
[0xabe8, 0xabe8],
|
|
1909
|
+
[0xabed, 0xabed],
|
|
1910
|
+
[0xfb1e, 0xfb1e],
|
|
1911
|
+
[0xfbb2, 0xfbc2],
|
|
1912
|
+
[0xfe00, 0xfe0f],
|
|
1913
|
+
[0xfe13, 0xfe13],
|
|
1914
|
+
[0xfe20, 0xfe2f],
|
|
1915
|
+
[0xfe52, 0xfe52],
|
|
1916
|
+
[0xfe55, 0xfe55],
|
|
1917
|
+
[0xfeff, 0xfeff],
|
|
1918
|
+
[0xff07, 0xff07],
|
|
1919
|
+
[0xff0e, 0xff0e],
|
|
1920
|
+
[0xff1a, 0xff1a],
|
|
1921
|
+
[0xff3e, 0xff3e],
|
|
1922
|
+
[0xff40, 0xff40],
|
|
1923
|
+
[0xff70, 0xff70],
|
|
1924
|
+
[0xff9e, 0xff9f],
|
|
1925
|
+
[0xffe3, 0xffe3],
|
|
1926
|
+
[0xfff9, 0xfffb],
|
|
1927
|
+
[0x101fd, 0x101fd],
|
|
1928
|
+
[0x102e0, 0x102e0],
|
|
1929
|
+
[0x10376, 0x1037a],
|
|
1930
|
+
[0x10780, 0x10785],
|
|
1931
|
+
[0x10787, 0x107b0],
|
|
1932
|
+
[0x107b2, 0x107ba],
|
|
1933
|
+
[0x10a01, 0x10a03],
|
|
1934
|
+
[0x10a05, 0x10a06],
|
|
1935
|
+
[0x10a0c, 0x10a0f],
|
|
1936
|
+
[0x10a38, 0x10a3a],
|
|
1937
|
+
[0x10a3f, 0x10a3f],
|
|
1938
|
+
[0x10ae5, 0x10ae6],
|
|
1939
|
+
[0x10d24, 0x10d27],
|
|
1940
|
+
[0x10d4e, 0x10d4e],
|
|
1941
|
+
[0x10d69, 0x10d6d],
|
|
1942
|
+
[0x10d6f, 0x10d6f],
|
|
1943
|
+
[0x10eab, 0x10eac],
|
|
1944
|
+
[0x10ec5, 0x10ec5],
|
|
1945
|
+
[0x10efa, 0x10eff],
|
|
1946
|
+
[0x10f46, 0x10f50],
|
|
1947
|
+
[0x10f82, 0x10f85],
|
|
1948
|
+
[0x11001, 0x11001],
|
|
1949
|
+
[0x11038, 0x11046],
|
|
1950
|
+
[0x11070, 0x11070],
|
|
1951
|
+
[0x11073, 0x11074],
|
|
1952
|
+
[0x1107f, 0x11081],
|
|
1953
|
+
[0x110b3, 0x110b6],
|
|
1954
|
+
[0x110b9, 0x110ba],
|
|
1955
|
+
[0x110bd, 0x110bd],
|
|
1956
|
+
[0x110c2, 0x110c2],
|
|
1957
|
+
[0x110cd, 0x110cd],
|
|
1958
|
+
[0x11100, 0x11102],
|
|
1959
|
+
[0x11127, 0x1112b],
|
|
1960
|
+
[0x1112d, 0x11134],
|
|
1961
|
+
[0x11173, 0x11173],
|
|
1962
|
+
[0x11180, 0x11181],
|
|
1963
|
+
[0x111b6, 0x111be],
|
|
1964
|
+
[0x111c9, 0x111cc],
|
|
1965
|
+
[0x111cf, 0x111cf],
|
|
1966
|
+
[0x1122f, 0x11231],
|
|
1967
|
+
[0x11234, 0x11234],
|
|
1968
|
+
[0x11236, 0x11237],
|
|
1969
|
+
[0x1123e, 0x1123e],
|
|
1970
|
+
[0x11241, 0x11241],
|
|
1971
|
+
[0x112df, 0x112df],
|
|
1972
|
+
[0x112e3, 0x112ea],
|
|
1973
|
+
[0x11300, 0x11301],
|
|
1974
|
+
[0x1133b, 0x1133c],
|
|
1975
|
+
[0x11340, 0x11340],
|
|
1976
|
+
[0x11366, 0x1136c],
|
|
1977
|
+
[0x11370, 0x11374],
|
|
1978
|
+
[0x113bb, 0x113c0],
|
|
1979
|
+
[0x113ce, 0x113ce],
|
|
1980
|
+
[0x113d0, 0x113d0],
|
|
1981
|
+
[0x113d2, 0x113d2],
|
|
1982
|
+
[0x113e1, 0x113e2],
|
|
1983
|
+
[0x11438, 0x1143f],
|
|
1984
|
+
[0x11442, 0x11444],
|
|
1985
|
+
[0x11446, 0x11446],
|
|
1986
|
+
[0x1145e, 0x1145e],
|
|
1987
|
+
[0x114b3, 0x114b8],
|
|
1988
|
+
[0x114ba, 0x114ba],
|
|
1989
|
+
[0x114bf, 0x114c0],
|
|
1990
|
+
[0x114c2, 0x114c3],
|
|
1991
|
+
[0x115b2, 0x115b5],
|
|
1992
|
+
[0x115bc, 0x115bd],
|
|
1993
|
+
[0x115bf, 0x115c0],
|
|
1994
|
+
[0x115dc, 0x115dd],
|
|
1995
|
+
[0x11633, 0x1163a],
|
|
1996
|
+
[0x1163d, 0x1163d],
|
|
1997
|
+
[0x1163f, 0x11640],
|
|
1998
|
+
[0x116ab, 0x116ab],
|
|
1999
|
+
[0x116ad, 0x116ad],
|
|
2000
|
+
[0x116b0, 0x116b5],
|
|
2001
|
+
[0x116b7, 0x116b7],
|
|
2002
|
+
[0x1171d, 0x1171d],
|
|
2003
|
+
[0x1171f, 0x1171f],
|
|
2004
|
+
[0x11722, 0x11725],
|
|
2005
|
+
[0x11727, 0x1172b],
|
|
2006
|
+
[0x1182f, 0x11837],
|
|
2007
|
+
[0x11839, 0x1183a],
|
|
2008
|
+
[0x1193b, 0x1193c],
|
|
2009
|
+
[0x1193e, 0x1193e],
|
|
2010
|
+
[0x11943, 0x11943],
|
|
2011
|
+
[0x119d4, 0x119d7],
|
|
2012
|
+
[0x119da, 0x119db],
|
|
2013
|
+
[0x119e0, 0x119e0],
|
|
2014
|
+
[0x11a01, 0x11a0a],
|
|
2015
|
+
[0x11a33, 0x11a38],
|
|
2016
|
+
[0x11a3b, 0x11a3e],
|
|
2017
|
+
[0x11a47, 0x11a47],
|
|
2018
|
+
[0x11a51, 0x11a56],
|
|
2019
|
+
[0x11a59, 0x11a5b],
|
|
2020
|
+
[0x11a8a, 0x11a96],
|
|
2021
|
+
[0x11a98, 0x11a99],
|
|
2022
|
+
[0x11b60, 0x11b60],
|
|
2023
|
+
[0x11b62, 0x11b64],
|
|
2024
|
+
[0x11b66, 0x11b66],
|
|
2025
|
+
[0x11c30, 0x11c36],
|
|
2026
|
+
[0x11c38, 0x11c3d],
|
|
2027
|
+
[0x11c3f, 0x11c3f],
|
|
2028
|
+
[0x11c92, 0x11ca7],
|
|
2029
|
+
[0x11caa, 0x11cb0],
|
|
2030
|
+
[0x11cb2, 0x11cb3],
|
|
2031
|
+
[0x11cb5, 0x11cb6],
|
|
2032
|
+
[0x11d31, 0x11d36],
|
|
2033
|
+
[0x11d3a, 0x11d3a],
|
|
2034
|
+
[0x11d3c, 0x11d3d],
|
|
2035
|
+
[0x11d3f, 0x11d45],
|
|
2036
|
+
[0x11d47, 0x11d47],
|
|
2037
|
+
[0x11d90, 0x11d91],
|
|
2038
|
+
[0x11d95, 0x11d95],
|
|
2039
|
+
[0x11d97, 0x11d97],
|
|
2040
|
+
[0x11dd9, 0x11dd9],
|
|
2041
|
+
[0x11ef3, 0x11ef4],
|
|
2042
|
+
[0x11f00, 0x11f01],
|
|
2043
|
+
[0x11f36, 0x11f3a],
|
|
2044
|
+
[0x11f40, 0x11f40],
|
|
2045
|
+
[0x11f42, 0x11f42],
|
|
2046
|
+
[0x11f5a, 0x11f5a],
|
|
2047
|
+
[0x13430, 0x13440],
|
|
2048
|
+
[0x13447, 0x13455],
|
|
2049
|
+
[0x1611e, 0x16129],
|
|
2050
|
+
[0x1612d, 0x1612f],
|
|
2051
|
+
[0x16af0, 0x16af4],
|
|
2052
|
+
[0x16b30, 0x16b36],
|
|
2053
|
+
[0x16b40, 0x16b43],
|
|
2054
|
+
[0x16d40, 0x16d42],
|
|
2055
|
+
[0x16d6b, 0x16d6c],
|
|
2056
|
+
[0x16f4f, 0x16f4f],
|
|
2057
|
+
[0x16f8f, 0x16f9f],
|
|
2058
|
+
[0x16fe0, 0x16fe1],
|
|
2059
|
+
[0x16fe3, 0x16fe4],
|
|
2060
|
+
[0x16ff2, 0x16ff3],
|
|
2061
|
+
[0x1aff0, 0x1aff3],
|
|
2062
|
+
[0x1aff5, 0x1affb],
|
|
2063
|
+
[0x1affd, 0x1affe],
|
|
2064
|
+
[0x1bc9d, 0x1bc9e],
|
|
2065
|
+
[0x1bca0, 0x1bca3],
|
|
2066
|
+
[0x1cf00, 0x1cf2d],
|
|
2067
|
+
[0x1cf30, 0x1cf46],
|
|
2068
|
+
[0x1d167, 0x1d169],
|
|
2069
|
+
[0x1d173, 0x1d182],
|
|
2070
|
+
[0x1d185, 0x1d18b],
|
|
2071
|
+
[0x1d1aa, 0x1d1ad],
|
|
2072
|
+
[0x1d242, 0x1d244],
|
|
2073
|
+
[0x1da00, 0x1da36],
|
|
2074
|
+
[0x1da3b, 0x1da6c],
|
|
2075
|
+
[0x1da75, 0x1da75],
|
|
2076
|
+
[0x1da84, 0x1da84],
|
|
2077
|
+
[0x1da9b, 0x1da9f],
|
|
2078
|
+
[0x1daa1, 0x1daaf],
|
|
2079
|
+
[0x1e000, 0x1e006],
|
|
2080
|
+
[0x1e008, 0x1e018],
|
|
2081
|
+
[0x1e01b, 0x1e021],
|
|
2082
|
+
[0x1e023, 0x1e024],
|
|
2083
|
+
[0x1e026, 0x1e02a],
|
|
2084
|
+
[0x1e030, 0x1e06d],
|
|
2085
|
+
[0x1e08f, 0x1e08f],
|
|
2086
|
+
[0x1e130, 0x1e13d],
|
|
2087
|
+
[0x1e2ae, 0x1e2ae],
|
|
2088
|
+
[0x1e2ec, 0x1e2ef],
|
|
2089
|
+
[0x1e4eb, 0x1e4ef],
|
|
2090
|
+
[0x1e5ee, 0x1e5ef],
|
|
2091
|
+
[0x1e6e3, 0x1e6e3],
|
|
2092
|
+
[0x1e6e6, 0x1e6e6],
|
|
2093
|
+
[0x1e6ee, 0x1e6ef],
|
|
2094
|
+
[0x1e6f5, 0x1e6f5],
|
|
2095
|
+
[0x1e6ff, 0x1e6ff],
|
|
2096
|
+
[0x1e8d0, 0x1e8d6],
|
|
2097
|
+
[0x1e944, 0x1e94b],
|
|
2098
|
+
[0x1f3fb, 0x1f3ff],
|
|
2099
|
+
[0xe0001, 0xe0001],
|
|
2100
|
+
[0xe0020, 0xe007f],
|
|
2101
|
+
[0xe0100, 0xe01ef]
|
|
2102
|
+
];
|