diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index f1499ac..0000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,12 +0,0 @@ -# These are supported funding model platforms - -github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] -patreon: # Replace with a single Patreon username -open_collective: # Replace with a single Open Collective username -ko_fi: # Replace with a single Ko-fi username -tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel -community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry -liberapay: # Replace with a single Liberapay username -issuehunt: # Replace with a single IssueHunt username -otechie: # Replace with a single Otechie username -custom: ['paypal.me/ayushpgupta'] diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index ed3a2ff..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve ---- - -**Describe the bug** -A clear and concise description of what the bug is. - -**To Reproduce** -Steps to reproduce the behavior: - -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Additional context** -Add any other context about the problem here. \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index b2ac4c4..0000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project ---- - -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. - -**Additional context** -Add any other context or screenshots about the feature request here. \ No newline at end of file diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index 02b2c62..0000000 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1,23 +0,0 @@ - - -## Description - - - -## Type of Change - - - -- [ ] โœจ New feature (non-breaking change which adds functionality) -- [ ] ๐Ÿ› ๏ธ Bug fix (non-breaking change which fixes an issue) -- [ ] โŒ Breaking change (fix or feature that would cause existing functionality to change) -- [ ] ๐Ÿงน Code refactor -- [ ] โœ… Build configuration change -- [ ] ๐Ÿ“ Documentation -- [ ] ๐Ÿ—‘๏ธ Chore \ No newline at end of file diff --git a/.github/workflows/avatar_glow.yaml b/.github/workflows/avatar_glow.yaml deleted file mode 100644 index 369e5df..0000000 --- a/.github/workflows/avatar_glow.yaml +++ /dev/null @@ -1,66 +0,0 @@ -name: avatar_glow - -on: - push: - branches: - - master - pull_request: - branches: - - master - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - -jobs: - semantic-pull-request: - uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/semantic_pull_request.yml@v1 - - build: - runs-on: ubuntu-latest - steps: - - name: ๐Ÿ“š Git Checkout - uses: actions/checkout@v3 - - - name: ๐Ÿฆ Setup Flutter - uses: subosito/flutter-action@v2 - with: - flutter-version: 3.10.0 - channel: stable - cache: true - - - name: ๐Ÿ“ฆ Install Dependencies - run: flutter packages get - - - name: โœจ Check Formatting - run: dart format --set-exit-if-changed lib - - - name: ๐Ÿ•ต๏ธ Analyze - run: flutter analyze lib - - release: - needs: build - runs-on: ubuntu-latest - if: github.event_name == 'push' && github.ref == 'refs/heads/master' - defaults: - run: - working-directory: example - steps: - - name: ๐Ÿ“š Git Checkout - uses: actions/checkout@v3 - - - name: ๐Ÿฆ Setup Flutter - uses: subosito/flutter-action@v2 - with: - flutter-version: 3.10.0 - channel: stable - cache: true - - - name: ๐Ÿ“ Build and release - uses: bluefireteam/flutter-gh-pages@v8 - with: - baseHref: /avatar_glow/ - workingDir: example - - pana: - uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/pana.yml@v1 \ No newline at end of file diff --git a/.github/workflows/create-release-prod.yml b/.github/workflows/create-release-prod.yml deleted file mode 100644 index d5e0764..0000000 --- a/.github/workflows/create-release-prod.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Misc on Prod Release - -on: - push: - tags: - - 'v*.*.*' - -jobs: - build: - name: 'Create a new release' - permissions: - contents: write - steps: - - uses: actions/checkout@v3 - with: - persist-credentials: false - - - name: 'Extract changelog' - id: extract-changelog - uses: TheDotLabs/extract-release-notes@main - - - name: Create release - uses: ncipollo/release-action@v1 - with: - body: ${{ steps.extract-changelog.outputs.release_notes }} - token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 3e93595..0000000 --- a/.gitignore +++ /dev/null @@ -1,32 +0,0 @@ -# Miscellaneous -*.class -*.log -*.pyc -*.swp -.DS_Store -.atom/ -.buildlog/ -.history -.svn/ -migrate_working_dir/ - -# IntelliJ related -*.iml -*.ipr -*.iws -.idea/ - -# The .vscode folder contains launch configuration and tasks you configure in -# VS Code which you may wish to be included in version control, so this line -# is commented out by default. -#.vscode/ - -# Flutter/Dart/Pub related -# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock. -/pubspec.lock -**/doc/api/ -.dart_tool/ -.packages -build/ -.flutter-plugins -.flutter-plugins-dependencies \ No newline at end of file diff --git a/.last_build_id b/.last_build_id new file mode 100644 index 0000000..846bf89 --- /dev/null +++ b/.last_build_id @@ -0,0 +1 @@ +a7941255a73c8f70777c86a76a4a77ea \ No newline at end of file diff --git a/.metadata b/.metadata deleted file mode 100644 index 91cf879..0000000 --- a/.metadata +++ /dev/null @@ -1,10 +0,0 @@ -# This file tracks properties of this Flutter project. -# Used by Flutter tool to assess capabilities and perform upgrades etc. -# -# This file should be version controlled and should not be manually edited. - -version: - revision: 5391447fae6209bb21a89e6a5a6583cac1af9b4b - channel: unknown - -project_type: package diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 76ea2b1..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,66 +0,0 @@ -# Change Log - -Official Changelog for different addition, changes, modifications. - -## [3.0.1] - -- chore(misc): update README.md (Ayush P Gupta) -- chore(misc): upgrade package lock (Ayush P Gupta) -- refactor!: v3.0.0 (#34) (Sahil Kumar) -- feat: upgrade example to Flutter 3.0 (#33) (BradInTheUSA) -- fix: late timer issue (#28) (jakeBrightHR) -- Fix timer issue in unit tests (#27) (jakeBrightHR) -- refactor: follow linting rules by Lint package (#26) (Yousef Almutairi) - -## [2.0.2+1] - -- Upgrade example to Flutter 3.0 - -## [2.0.2] - -- Hide circle if animate false (#21) - -## [2.0.1] - -- Fix #17 thanks to [@nurassylive](@nurassylive) -- Fix stop animation jank when `animate` is set to false - -## [2.0.0] - -- Migrate example to android v2 -- [Null Safety] Migrate package to support null safety -- [Pubspec] Remove author -- [Misc] Add linux desktop support -- [Refactor] Remove redundant code and refactor - -## [1.2.0] - -- Fix README with updated code - -## [1.1.0] - -### Merged - -- [#6](https://github.com/apgapg/avatar_glow/pull/6) Add 'animate', 'curve' option. - Thanks [@Nolence](https://github.com/Nolence) for PR. Thanks [@Sahil](https://github.com/xsahil03x) for feedback. -- Add macos support - -## [1.0.0] - -### Merged - -- [#5](https://github.com/apgapg/avatar_glow/pull/5) Add option to change shape of widget. - Thanks [@gildurao](https://github.com/gildurao) - -## [0.2.0] - -### Merged - -- [#2](https://github.com/apgapg/avatar_glow/issues/2) Fixes exception when using widget inside scroll widget. Fixed - missing repeat parameter usage. Thanks [@Sahil](https://github.com/xsahil03x) - -### Added - -- Delay in starting animation 'startDelay' - -## [0.1.0] - Initial Release diff --git a/LICENSE b/LICENSE deleted file mode 100644 index e3b52b0..0000000 --- a/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) [2019] [Ayush P Gupta] - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/README.md b/README.md deleted file mode 100644 index 51f1a97..0000000 --- a/README.md +++ /dev/null @@ -1,97 +0,0 @@ -# Avatar Glow [![GitHub stars](https://img.shields.io/github/stars/apgapg/avatar_glow.svg?style=social)](https://github.com/apgapg/avatar_glow) [![Twitter Follow](https://img.shields.io/twitter/url/https/@ayushpgupta.svg?style=social)](https://twitter.com/ayushpgupta) ![GitHub last commit](https://img.shields.io/github/last-commit/apgapg/avatar_glow.svg) [![Website shields.io](https://img.shields.io/website-up-down-green-red/http/shields.io.svg)](https://play.google.com/store/apps/details?id=com.coddu.flutterprofile)[![Open Source Love](https://badges.frapsoft.com/os/v2/open-source.svg?v=103)](https://github.com/apgapg/avatar_glow) - -An Avatar Glow Flutter Widget with cool background glowing animation. - -Live Demo: [https://apgapg.github.io/avatar_glow/](https://apgapg.github.io/avatar_glow/) - -PieChart - -## ๐Ÿ’ป Installation -In the `dependencies:` section of your `pubspec.yaml`, add the following line: - -[![Version](https://img.shields.io/pub/v/avatar_glow.svg)](https://pub.dartlang.org/packages/avatar_glow) - -```yaml -dependencies: - avatar_glow: -``` - -To use the latest changes: - -```yaml - avatar_glow: - git: - url: https://github.com/apgapg/avatar_glow - ref: master -``` - -## โ” Usage - -### Import - -```dart -import 'package:avatar_glow/avatar_glow.dart'; -``` - -Usage is simple. Avatar Glow is a widget offering different customizable optional parameters with child displayed at its center. - -### Simple Implementation - -```dart -AvatarGlow( - endRadius: 60.0, - child: Material( // Replace this child with your own - elevation: 8.0, - shape: CircleBorder(), - child: CircleAvatar( - backgroundColor: Colors.grey[100], - child: Image.asset( - 'assets/images/dart.png', - height: 50, - ), - radius: 30.0, - ), - ), -), -``` - -### Full Implementation - -```dart -AvatarGlow( - startDelay: const Duration(milliseconds: 1000), - glowColor: Colors.white, - glowShape: BoxShape.circle, - animate: _animate, - curve: Curves.fastOutSlowIn, - child: const Material( - elevation: 8.0, - shape: CircleBorder(), - color: Colors.transparent, - child: CircleAvatar( - backgroundImage: AssetImage('assets/images/avatar.png'), - radius: 50.0, - ), - ), -), -``` - -## โญ My Flutter Packages - -- [json_table](https://pub.dartlang.org/packages/json_table) [![GitHub stars](https://img.shields.io/github/stars/apgapg/json_table.svg?style=social)](https://github.com/apgapg/json_table) Create Flutter Json Table from json map directly. -- [pie_chart](https://pub.dartlang.org/packages/pie_chart) [![GitHub stars](https://img.shields.io/github/stars/apgapg/pie_chart.svg?style=social)](https://github.com/apgapg/pie_chart) Flutter Pie Chart with cool animation. -- [search_widget](https://pub.dartlang.org/packages/search_widget) [![GitHub stars](https://img.shields.io/github/stars/apgapg/search_widget.svg?style=social)](https://github.com/apgapg/search_widget) Flutter Search Widget for selecting an option from list. -- [animating_location_pin](https://pub.dev/packages/animating_location_pin) [![GitHub stars](https://img.shields.io/github/stars/apgapg/animating_location_pin.svg?style=social)](https://github.com/apgapg/animating_location_pin) Flutter Animating Location Pin Widget providing Animating Location Pin Widget which can be used while fetching device location. - -## โญ My Flutter Apps - -- [flutter_profile](https://github.com/apgapg/flutter_profile) [![GitHub stars](https://img.shields.io/github/stars/apgapg/flutter_profile.svg?style=social)](https://github.com/apgapg/flutter_profile) Showcase My Portfolio: Ayush P Gupta on Playstore. -- [flutter_sankalan](https://github.com/apgapg/flutter_sankalan) [![GitHub stars](https://img.shields.io/github/stars/apgapg/flutter_sankalan.svg?style=social)](https://github.com/apgapg/flutter_sankalan) Flutter App which allows reading/uploading short stories. - -## ๐Ÿ‘ Contribution - -1. Fork it -2. Create your feature branch (git checkout -b my-new-feature) -3. Commit your changes (git commit -m 'Add some feature') -4. Push to the branch (git push origin my-new-feature) -5. Create new Pull Request diff --git a/analysis_options.yaml b/analysis_options.yaml deleted file mode 100644 index 872a1eb..0000000 --- a/analysis_options.yaml +++ /dev/null @@ -1,4 +0,0 @@ -include: package:flutter_lints/flutter.yaml - -# Additional information about this file can be found at -# https://dart.dev/guides/language/analysis-options \ No newline at end of file diff --git a/assets/AssetManifest.bin b/assets/AssetManifest.bin new file mode 100644 index 0000000..913723f Binary files /dev/null and b/assets/AssetManifest.bin differ diff --git a/assets/AssetManifest.json b/assets/AssetManifest.json new file mode 100644 index 0000000..e4b7f22 --- /dev/null +++ b/assets/AssetManifest.json @@ -0,0 +1 @@ +{"assets/images/avatar.png":["assets/images/avatar.png"],"assets/images/dart.png":["assets/images/dart.png"],"assets/images/flutter.png":["assets/images/flutter.png"],"assets/images/love.png":["assets/images/love.png"]} \ No newline at end of file diff --git a/assets/FontManifest.json b/assets/FontManifest.json new file mode 100644 index 0000000..3abf18c --- /dev/null +++ b/assets/FontManifest.json @@ -0,0 +1 @@ +[{"family":"MaterialIcons","fonts":[{"asset":"fonts/MaterialIcons-Regular.otf"}]}] \ No newline at end of file diff --git a/assets/NOTICES b/assets/NOTICES new file mode 100644 index 0000000..6b21830 --- /dev/null +++ b/assets/NOTICES @@ -0,0 +1,33064 @@ +abseil-cpp + +Apache License +Version 2.0, January 2004 +https://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +abseil-cpp +angle +etc1 +expat +flatbuffers +fuchsia-vulkan +fuchsia_sdk +glslang +khronos +perfetto +shaderc +spirv-cross +txt +vulkan +vulkan-headers +vulkan-validation-layers +wuffs + +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +accessibility + +Copyright (c) 2009 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +accessibility + +Copyright (c) 2010 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +accessibility + +Copyright (c) 2014 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +accessibility + +Copyright 2013 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +accessibility + +Copyright 2016 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +accessibility + +Copyright 2020 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +accessibility +angle + +Copyright (c) 2013 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +accessibility +angle +fuchsia_sdk +skia +zlib + +Copyright 2018 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +accessibility +angle +icu +zlib + +Copyright 2014 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +accessibility +angle +zlib + +Copyright (c) 2011 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +accessibility +angle +zlib + +Copyright 2017 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +accessibility +engine +spring_animation +tonic +txt +web_test_fonts +web_unicode + +Copyright 2013 The Flutter Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +accessibility +fuchsia_sdk +zlib + +Copyright 2019 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +accessibility +skia + +Copyright 2015 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +accessibility +zlib + +Copyright (c) 2012 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +angle + +Copyright (c) 2008-2018 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Materials. + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +-------------------------------------------------------------------------------- +angle + +Copyright (c) 2013-2017 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Materials. + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +-------------------------------------------------------------------------------- +angle + +Copyright (c) 2020 The ANGLE Project Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. + Ltd., nor the names of their contributors may be used to endorse + or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +angle + +Copyright 2002 The ANGLE Project Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. + Ltd., nor the names of their contributors may be used to endorse + or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +angle + +Copyright 2010 The ANGLE Project Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. + Ltd., nor the names of their contributors may be used to endorse + or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +angle + +Copyright 2011 The ANGLE Project Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. + Ltd., nor the names of their contributors may be used to endorse + or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +angle + +Copyright 2012 The ANGLE Project Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. + Ltd., nor the names of their contributors may be used to endorse + or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +angle + +Copyright 2013 The ANGLE Project Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. + Ltd., nor the names of their contributors may be used to endorse + or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +angle + +Copyright 2013-2020 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +angle + +Copyright 2014 The ANGLE Project Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. + Ltd., nor the names of their contributors may be used to endorse + or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +angle + +Copyright 2015 The ANGLE Project Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. + Ltd., nor the names of their contributors may be used to endorse + or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +angle + +Copyright 2016 The ANGLE Project Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. + Ltd., nor the names of their contributors may be used to endorse + or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +angle + +Copyright 2017 The ANGLE Project Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. + Ltd., nor the names of their contributors may be used to endorse + or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +angle + +Copyright 2018 The ANGLE Project Authors. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. + Ltd., nor the names of their contributors may be used to endorse + or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +angle + +Copyright 2018 The ANGLE Project Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. + Ltd., nor the names of their contributors may be used to endorse + or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +angle + +Copyright 2019 The ANGLE Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. + Ltd., nor the names of their contributors may be used to endorse + or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +angle + +Copyright 2020 The ANGLE Project Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. + Ltd., nor the names of their contributors may be used to endorse + or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +angle + +Copyright 2020 The ANGLE Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. + Ltd., nor the names of their contributors may be used to endorse + or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +angle + +Copyright 2021 The ANGLE Project Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. + Ltd., nor the names of their contributors may be used to endorse + or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +angle + +Copyright 2021 The ANGLE Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. + Ltd., nor the names of their contributors may be used to endorse + or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +angle + +Copyright 2021-2022 The ANGLE Project Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. + Ltd., nor the names of their contributors may be used to endorse + or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +angle + +Copyright 2022 The ANGLE Project Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. + Ltd., nor the names of their contributors may be used to endorse + or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +angle + +Copyright The ANGLE Project Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. + Ltd., nor the names of their contributors may be used to endorse + or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +angle +khronos + +Copyright (c) 2013-2018 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Materials. + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +-------------------------------------------------------------------------------- +angle +xxhash + +Copyright 2019 The ANGLE Project Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. + Ltd., nor the names of their contributors may be used to endorse + or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +avatar_glow + +MIT License + +Copyright (c) [2019] [Ayush P Gupta] + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +-------------------------------------------------------------------------------- +boringssl + +Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) +All rights reserved. + +This package is an SSL implementation written +by Eric Young (eay@cryptsoft.com). +The implementation was written so as to conform with Netscapes SSL. + +This library is free for commercial and non-commercial use as long as +the following conditions are aheared to. The following conditions +apply to all code found in this distribution, be it the RC4, RSA, +lhash, DES, etc., code; not just the SSL code. The SSL documentation +included with this distribution is covered by the same copyright terms +except that the holder is Tim Hudson (tjh@cryptsoft.com). + +Copyright remains Eric Young's, and as such any Copyright notices in +the code are not to be removed. +If this package is used in a product, Eric Young should be given attribution +as the author of the parts of the library used. +This can be in the form of a textual message at program startup or +in documentation (online or textual) provided with the package. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +3. All advertising materials mentioning features or use of this software + must display the following acknowledgement: + "This product includes cryptographic software written by + Eric Young (eay@cryptsoft.com)" + The word 'cryptographic' can be left out if the rouines from the library + being used are not cryptographic related :-). +4. If you include any Windows specific code (or a derivative thereof) from + the apps directory (application code) you must include an acknowledgement: + "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" + +THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. + +The licence and distribution terms for any publically available version or +derivative of this code cannot be changed. i.e. this code cannot simply be +copied and put under another distribution licence +[including the GNU Public Licence.] +-------------------------------------------------------------------------------- +boringssl + +Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) +All rights reserved. + +This package is an SSL implementation written +by Eric Young (eay@cryptsoft.com). +The implementation was written so as to conform with Netscapes SSL. + +This library is free for commercial and non-commercial use as long as +the following conditions are aheared to. The following conditions +apply to all code found in this distribution, be it the RC4, RSA, +lhash, DES, etc., code; not just the SSL code. The SSL documentation +included with this distribution is covered by the same copyright terms +except that the holder is Tim Hudson (tjh@cryptsoft.com). + +Copyright remains Eric Young's, and as such any Copyright notices in +the code are not to be removed. +If this package is used in a product, Eric Young should be given attribution +as the author of the parts of the library used. +This can be in the form of a textual message at program startup or +in documentation (online or textual) provided with the package. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +3. All advertising materials mentioning features or use of this software + must display the following acknowledgement: + "This product includes cryptographic software written by + Eric Young (eay@cryptsoft.com)" + The word 'cryptographic' can be left out if the rouines from the library + being used are not cryptographic related :-). +4. If you include any Windows specific code (or a derivative thereof) from + the apps directory (application code) you must include an acknowledgement: + "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" + +THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. + +The licence and distribution terms for any publically available version or +derivative of this code cannot be changed. i.e. this code cannot simply be +copied and put under another distribution licence +[including the GNU Public Licence.] +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1998-2000 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1998-2003 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1998-2004 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@OpenSSL.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1999 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + licensing@OpenSSL.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1999-2002 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + licensing@OpenSSL.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1999-2003 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + licensing@OpenSSL.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1999-2004 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + licensing@OpenSSL.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1999-2005 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@OpenSSL.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1999-2007 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + licensing@OpenSSL.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1999-2008 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + licensing@OpenSSL.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2000 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + licensing@OpenSSL.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2000-2002 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + licensing@OpenSSL.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2000-2003 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + licensing@OpenSSL.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2000-2005 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + licensing@OpenSSL.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2001 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + licensing@OpenSSL.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2001-2011 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2002-2006 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2003 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + licensing@OpenSSL.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2004 Kungliga Tekniska Hรถgskolan +(Royal Institute of Technology, Stockholm, Sweden). +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +3. Neither the name of the Institute nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2004 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + licensing@OpenSSL.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2005 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + licensing@OpenSSL.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2006 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + licensing@OpenSSL.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2006,2007 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + licensing@OpenSSL.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2008 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2010 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + licensing@OpenSSL.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2011 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + licensing@OpenSSL.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2011 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2012 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2013 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + licensing@OpenSSL.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2014, Google Inc. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION +OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2015, Google Inc. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION +OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2016, Google Inc. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION +OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2017, Google Inc. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION +OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2017, the HRSS authors. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION +OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2018, Google Inc. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION +OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2018, Google Inc. +Copyright (c) 2020, Arm Ltd. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION +OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2019, Google Inc. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION +OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2020, Google Inc. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION +OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2021, Google Inc. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION +OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +-------------------------------------------------------------------------------- +boringssl + +Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved. + +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html +-------------------------------------------------------------------------------- +boringssl + +Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved. + +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html +-------------------------------------------------------------------------------- +boringssl + +Copyright 2001-2017 The OpenSSL Project Authors. All Rights Reserved. + +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html +-------------------------------------------------------------------------------- +boringssl + +Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. + +Portions of the attached software ("Contribution") are developed by +SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project. + +The Contribution is licensed pursuant to the Eric Young open source +license provided above. +-------------------------------------------------------------------------------- +boringssl + +Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. + +Portions of the attached software ("Contribution") are developed by +SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project. + +The Contribution is licensed pursuant to the OpenSSL open source +license provided above. +-------------------------------------------------------------------------------- +boringssl + +Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + licensing@OpenSSL.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. +ECC cipher suite support in OpenSSL originally developed by +SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. +-------------------------------------------------------------------------------- +boringssl + +Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. +ECDH support in OpenSSL originally developed by +SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. +-------------------------------------------------------------------------------- +boringssl + +Copyright 2005 Nokia. All rights reserved. + +The portions of the attached software ("Contribution") is developed by +Nokia Corporation and is licensed pursuant to the OpenSSL open source +license. + +The Contribution, originally written by Mika Kousa and Pasi Eronen of +Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites +support (see RFC 4279) to OpenSSL. + +No patent licenses or other rights except those expressly stated in +the OpenSSL open source license shall be deemed granted or received +expressly, by implication, estoppel, or otherwise. + +No assurances are provided by Nokia that the Contribution does not +infringe the patent or other intellectual property rights of any third +party or that the license provides you with all the necessary rights +to make use of the Contribution. + +THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN +ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA +SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY +OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR +OTHERWISE. +-------------------------------------------------------------------------------- +boringssl + +Copyright 2006-2017 The OpenSSL Project Authors. All Rights Reserved. + +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html +-------------------------------------------------------------------------------- +boringssl + +Copyright 2007-2016 The OpenSSL Project Authors. All Rights Reserved. + +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html +-------------------------------------------------------------------------------- +boringssl + +Copyright 2012-2016 The OpenSSL Project Authors. All Rights Reserved. + +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html +-------------------------------------------------------------------------------- +boringssl + +Copyright 2013-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright (c) 2012, Intel Corporation. All Rights Reserved. + +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html +-------------------------------------------------------------------------------- +boringssl + +Copyright 2014-2016 The OpenSSL Project Authors. All Rights Reserved. + +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html +-------------------------------------------------------------------------------- +boringssl + +Copyright 2014-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright (c) 2014, Intel Corporation. All Rights Reserved. + +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html +-------------------------------------------------------------------------------- +boringssl + +Copyright 2014-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright (c) 2015, Intel Inc. + +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html +-------------------------------------------------------------------------------- +boringssl + +Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved. + +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html +-------------------------------------------------------------------------------- +boringssl + +Copyright 2016 Brian Smith. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION +OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +-------------------------------------------------------------------------------- +boringssl + +DTLS code by Eric Rescorla + +Copyright (C) 2006, Network Resonance, Inc. +Copyright (C) 2011, RTFM, Inc. +-------------------------------------------------------------------------------- +boringssl + +OpenSSL License +--------------- + +Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. + + +This product includes cryptographic software written by Eric Young +(eay@cryptsoft.com). This product includes software written by Tim +Hudson (tjh@cryptsoft.com). + +Original SSLeay License +----------------------- + +Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) +All rights reserved. + +This package is an SSL implementation written +by Eric Young (eay@cryptsoft.com). +The implementation was written so as to conform with Netscapes SSL. + +This library is free for commercial and non-commercial use as long as +the following conditions are aheared to. The following conditions +apply to all code found in this distribution, be it the RC4, RSA, +lhash, DES, etc., code; not just the SSL code. The SSL documentation +included with this distribution is covered by the same copyright terms +except that the holder is Tim Hudson (tjh@cryptsoft.com). + +Copyright remains Eric Young's, and as such any Copyright notices in +the code are not to be removed. +If this package is used in a product, Eric Young should be given attribution +as the author of the parts of the library used. +This can be in the form of a textual message at program startup or +in documentation (online or textual) provided with the package. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +3. All advertising materials mentioning features or use of this software + must display the following acknowledgement: + "This product includes cryptographic software written by + Eric Young (eay@cryptsoft.com)" + The word 'cryptographic' can be left out if the rouines from the library + being used are not cryptographic related :-). +4. If you include any Windows specific code (or a derivative thereof) from + the apps directory (application code) you must include an acknowledgement: + "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" + +THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. + +The licence and distribution terms for any publically available version or +derivative of this code cannot be changed. i.e. this code cannot simply be +copied and put under another distribution licence +[including the GNU Public Licence.] + +ISC license used for completely new code in BoringSSL: + +Copyright (c) 2015, Google Inc. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION +OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +The code in third_party/fiat carries the MIT license: + +Copyright (c) 2015-2016 the fiat-crypto authors (see +https://github.com/mit-plv/fiat-crypto/blob/master/AUTHORS). + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +Licenses for support code +------------------------- + +Parts of the TLS test suite are under the Go license. This code is not included +in BoringSSL (i.e. libcrypto and libssl) when compiled, however, so +distributing code linked against BoringSSL does not trigger this license: + +Copyright (c) 2009 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +BoringSSL uses the Chromium test infrastructure to run a continuous build, +trybots etc. The scripts which manage this, and the script for generating build +metadata, are under the Chromium license. Distributing code linked against +BoringSSL does not trigger this license. + +Copyright 2015 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +ceval + +Copyright (c) 2021 e_t + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +-------------------------------------------------------------------------------- +characters + +Copyright 2019, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +collection + +Copyright 2015, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2003-2005 Tom Wu +Copyright (c) 2012 Adam Singer (adam@solvr.io) +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, +EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY +WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + +IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL, +INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER +RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF +THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT +OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +In addition, the following condition applies: + +All redistributions must retain an intact copy of this copyright notice +and disclaimer. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2010, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2014 The Polymer Project Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2021, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2022, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +dart + +Copyright 2012, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +double-conversion +icu + +Copyright 2006-2008 the V8 project authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +double-conversion +icu + +Copyright 2010 the V8 project authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +double-conversion +icu + +Copyright 2012 the V8 project authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +engine + +License for the Ahem font embedded below is from: +https://www.w3.org/Style/CSS/Test/Fonts/Ahem/COPYING + +The Ahem font in this directory belongs to the public domain. In +jurisdictions that do not recognize public domain ownership of these +files, the following Creative Commons Zero declaration applies: + + + +which is quoted below: + + The person who has associated a work with this document (the "Work") + affirms that he or she (the "Affirmer") is the/an author or owner of + the Work. The Work may be any work of authorship, including a + database. + + The Affirmer hereby fully, permanently and irrevocably waives and + relinquishes all of her or his copyright and related or neighboring + legal rights in the Work available under any federal or state law, + treaty or contract, including but not limited to moral rights, + publicity and privacy rights, rights protecting against unfair + competition and any rights protecting the extraction, dissemination + and reuse of data, whether such rights are present or future, vested + or contingent (the "Waiver"). The Affirmer makes the Waiver for the + benefit of the public at large and to the detriment of the Affirmer's + heirs or successors. + + The Affirmer understands and intends that the Waiver has the effect + of eliminating and entirely removing from the Affirmer's control all + the copyright and related or neighboring legal rights previously held + by the Affirmer in the Work, to that extent making the Work freely + available to the public for any and all uses and purposes without + restriction of any kind, including commercial use and uses in media + and formats or by methods that have not yet been invented or + conceived. Should the Waiver for any reason be judged legally + ineffective in any jurisdiction, the Affirmer hereby grants a free, + full, permanent, irrevocable, nonexclusive and worldwide license for + all her or his copyright and related or neighboring legal rights in + the Work. +-------------------------------------------------------------------------------- +etc_decoder + +Copyright (c) 2020-2022 Hans-Kristian Arntzen + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2000-2004 Fred L. Drake, Jr. +Copyright (c) 2001-2002 Greg Stein +Copyright (c) 2002-2006 Karl Waclawek +Copyright (c) 2016 Cristian Rodrรญguez +Copyright (c) 2016-2019 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2018 Yury Gribov + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2000-2005 Fred L. Drake, Jr. +Copyright (c) 2001-2002 Greg Stein +Copyright (c) 2002-2016 Karl Waclawek +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2016 Cristian Rodrรญguez +Copyright (c) 2016 Thomas Beutlich +Copyright (c) 2017 Rhodri James +Copyright (c) 2022 Thijs Schreijer + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2000-2006 Fred L. Drake, Jr. +Copyright (c) 2001-2002 Greg Stein +Copyright (c) 2002-2016 Karl Waclawek +Copyright (c) 2005-2009 Steven Solie +Copyright (c) 2016 Eric Rahm +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2016 Gaurav +Copyright (c) 2016 Thomas Beutlich +Copyright (c) 2016 Gustavo Grieco +Copyright (c) 2016 Pascal Cuoq +Copyright (c) 2016 Ed Schouten +Copyright (c) 2017-2022 Rhodri James +Copyright (c) 2017 Vรกclav Slavรญk +Copyright (c) 2017 Viktor Szakats +Copyright (c) 2017 Chanho Park +Copyright (c) 2017 Rolf Eike Beer +Copyright (c) 2017 Hans Wennborg +Copyright (c) 2018 Anton Maklakov +Copyright (c) 2018 Benjamin Peterson +Copyright (c) 2018 Marco Maggi +Copyright (c) 2018 Mariusz Zaborski +Copyright (c) 2019 David Loffredo +Copyright (c) 2019-2020 Ben Wagner +Copyright (c) 2019 Vadim Zeitlin +Copyright (c) 2021 Dong-hee Na +Copyright (c) 2022 Samanta Navarro +Copyright (c) 2022 Jeffrey Walton +Copyright (c) 2022 Jann Horn + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2001-2002 Fred L. Drake, Jr. +Copyright (c) 2006 Karl Waclawek +Copyright (c) 2016-2017 Sebastian Pipping +Copyright (c) 2017 Rhodri James + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2001-2003 Fred L. Drake, Jr. +Copyright (c) 2002 Greg Stein +Copyright (c) 2002-2016 Karl Waclawek +Copyright (c) 2005-2009 Steven Solie +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2016 Pascal Cuoq +Copyright (c) 2016 Don Lewis +Copyright (c) 2017 Rhodri James +Copyright (c) 2017 Alexander Bluhm +Copyright (c) 2017 Benbuck Nason +Copyright (c) 2017 Josรฉ Gutiรฉrrez de la Concha +Copyright (c) 2019 David Loffredo +Copyright (c) 2021 Dong-hee Na +Copyright (c) 2022 Martin Ettl + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2001-2003 Fred L. Drake, Jr. +Copyright (c) 2004-2009 Karl Waclawek +Copyright (c) 2005-2007 Steven Solie +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2019 David Loffredo +Copyright (c) 2020 Joe Orton +Copyright (c) 2020 Kleber Tarcรญsio +Copyright (c) 2021 Tim Bray +Copyright (c) 2022 Martin Ettl + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2001-2004 Fred L. Drake, Jr. +Copyright (c) 2002-2009 Karl Waclawek +Copyright (c) 2016-2017 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2017 Franek Korta + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2002-2005 Karl Waclawek +Copyright (c) 2016-2017 Sebastian Pipping +Copyright (c) 2017 Rhodri James + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2002-2016 Karl Waclawek +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2018 Benjamin Peterson +Copyright (c) 2018 Anton Maklakov +Copyright (c) 2019 David Loffredo +Copyright (c) 2020 Boris Kolpackov +Copyright (c) 2022 Martin Ettl + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2005 Karl Waclawek +Copyright (c) 2016-2019 Sebastian Pipping + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2005-2006 Karl Waclawek +Copyright (c) 2016-2019 Sebastian Pipping +Copyright (c) 2019 David Loffredo + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2016-2017 Sebastian Pipping + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2022 Martin Ettl + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2017 Sebastian Pipping + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Greg Stein +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2002-2006 Karl Waclawek +Copyright (c) 2017-2021 Sebastian Pipping + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Greg Stein +Copyright (c) 2002-2006 Karl Waclawek +Copyright (c) 2002-2003 Fred L. Drake, Jr. +Copyright (c) 2005-2009 Steven Solie +Copyright (c) 2016-2021 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2019 David Loffredo +Copyright (c) 2021 Dong-hee Na + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Karl Waclawek +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2017 Sebastian Pipping + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002-2003 Fred L. Drake, Jr. +Copyright (c) 2004-2006 Karl Waclawek +Copyright (c) 2005-2007 Steven Solie +Copyright (c) 2016-2021 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2019 David Loffredo +Copyright (c) 2021 Dong-hee Na + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2017-2019 Sebastian Pipping + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2016-2017 Sebastian Pipping + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2016-2018 Sebastian Pipping +Copyright (c) 2018 Marco Maggi + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2016-2021 Sebastian Pipping +Copyright (c) 2017 Rhodri James + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper +Copyright (c) 2001-2022 Expat maintainers + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1999-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2007 Karl Waclawek +Copyright (c) 2017 Sebastian Pipping + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Greg Stein +Copyright (c) 2005 Karl Waclawek +Copyright (c) 2017-2021 Sebastian Pipping + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 2000 Clark Cooper +Copyright (c) 2017 Sebastian Pipping + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 2002-2003 Fred L. Drake, Jr. +Copyright (c) 2002-2006 Karl Waclawek +Copyright (c) 2003 Greg Stein +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2018 Yury Gribov +Copyright (c) 2019 David Loffredo + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat +harfbuzz + +Copyright (c) 2021 Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +ffx_spd + +Copyright (c) 2017-2019 Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) <2014> + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, +modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the +Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +ffx_spd + +Copyright (c) 2017-2020 Advanced Micro Devices, Inc. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, +modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the +Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +fiat + +Copyright (c) 2015-2016 the fiat-crypto authors (see + +https://github.com/mit-plv/fiat-crypto/blob/master/AUTHORS). + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +-------------------------------------------------------------------------------- +flatbuffers + +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright 2014 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +flutter + +Copyright 2014 The Flutter Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +flutter_lints + +Copyright 2013 The Flutter Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +freetype2 + +Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +freetype2 + +Copyright (C) 2000, 2001, 2002, 2003, 2006, 2010 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +-------------------------------------------------------------------------------- +freetype2 + +Copyright (C) 2000-2004, 2006-2011, 2013, 2014 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +-------------------------------------------------------------------------------- +freetype2 + +Copyright (C) 2001, 2002 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +-------------------------------------------------------------------------------- +freetype2 + +Copyright (C) 2001, 2002, 2003, 2004 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +-------------------------------------------------------------------------------- +freetype2 + +Copyright (C) 2001-2008, 2011, 2013, 2014 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +-------------------------------------------------------------------------------- +freetype2 + +Copyright 1990, 1994, 1998 The Open Group + +Permission to use, copy, modify, distribute, and sell this software and its +documentation for any purpose is hereby granted without fee, provided that +the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation. + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of The Open Group shall not be +used in advertising or otherwise to promote the sale, use or other dealings +in this Software without prior written authorization from The Open Group. +-------------------------------------------------------------------------------- +freetype2 + +Copyright 2000 Computing Research Labs, New Mexico State University +Copyright 2001-2004, 2011 Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT +OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR +THE USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +freetype2 + +Copyright 2000 Computing Research Labs, New Mexico State University +Copyright 2001-2014 + Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT +OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR +THE USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +freetype2 + +Copyright 2000 Computing Research Labs, New Mexico State University +Copyright 2001-2015 + Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT +OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR +THE USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +freetype2 + +Copyright 2000, 2001, 2004 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +-------------------------------------------------------------------------------- +freetype2 + +Copyright 2000-2001, 2002 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +-------------------------------------------------------------------------------- +freetype2 + +Copyright 2000-2001, 2003 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +-------------------------------------------------------------------------------- +freetype2 + +Copyright 2000-2010, 2012-2014 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +-------------------------------------------------------------------------------- +freetype2 + +Copyright 2001, 2002, 2012 Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT +OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR +THE USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +freetype2 + +Copyright 2003 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +-------------------------------------------------------------------------------- +freetype2 + +The FreeType Project LICENSE +---------------------------- + + 2006-Jan-27 + + Copyright 1996-2002, 2006 by + David Turner, Robert Wilhelm, and Werner Lemberg + + + +Introduction +============ + + The FreeType Project is distributed in several archive packages; + some of them may contain, in addition to the FreeType font engine, + various tools and contributions which rely on, or relate to, the + FreeType Project. + + This license applies to all files found in such packages, and + which do not fall under their own explicit license. The license + affects thus the FreeType font engine, the test programs, + documentation and makefiles, at the very least. + + This license was inspired by the BSD, Artistic, and IJG + (Independent JPEG Group) licenses, which all encourage inclusion + and use of free software in commercial and freeware products + alike. As a consequence, its main points are that: + + o We don't promise that this software works. However, we will be + interested in any kind of bug reports. (`as is' distribution) + + o You can use this software for whatever you want, in parts or + full form, without having to pay us. (`royalty-free' usage) + + o You may not pretend that you wrote this software. If you use + it, or only parts of it, in a program, you must acknowledge + somewhere in your documentation that you have used the + FreeType code. (`credits') + + We specifically permit and encourage the inclusion of this + software, with or without modifications, in commercial products. + We disclaim all warranties covering The FreeType Project and + assume no liability related to The FreeType Project. + + + Finally, many people asked us for a preferred form for a + credit/disclaimer to use in compliance with this license. We thus + encourage you to use the following text: + + """ + Portions of this software are copyright ยฉ The FreeType + Project (www.freetype.org). All rights reserved. + """ + + Please replace with the value from the FreeType version you + actually use. + + +Legal Terms +=========== + +0. Definitions +-------------- + + Throughout this license, the terms `package', `FreeType Project', + and `FreeType archive' refer to the set of files originally + distributed by the authors (David Turner, Robert Wilhelm, and + Werner Lemberg) as the `FreeType Project', be they named as alpha, + beta or final release. + + `You' refers to the licensee, or person using the project, where + `using' is a generic term including compiling the project's source + code as well as linking it to form a `program' or `executable'. + This program is referred to as `a program using the FreeType + engine'. + + This license applies to all files distributed in the original + FreeType Project, including all source code, binaries and + documentation, unless otherwise stated in the file in its + original, unmodified form as distributed in the original archive. + If you are unsure whether or not a particular file is covered by + this license, you must contact us to verify this. + + The FreeType Project is copyright (C) 1996-2000 by David Turner, + Robert Wilhelm, and Werner Lemberg. All rights reserved except as + specified below. + +1. No Warranty +-------------- + + THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY + KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS + BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO + USE, OF THE FREETYPE PROJECT. + +2. Redistribution +----------------- + + This license grants a worldwide, royalty-free, perpetual and + irrevocable right and license to use, execute, perform, compile, + display, copy, create derivative works of, distribute and + sublicense the FreeType Project (in both source and object code + forms) and derivative works thereof for any purpose; and to + authorize others to exercise some or all of the rights granted + herein, subject to the following conditions: + + o Redistribution of source code must retain this license file + (`FTL.TXT') unaltered; any additions, deletions or changes to + the original files must be clearly indicated in accompanying + documentation. The copyright notices of the unaltered, + original files must be preserved in all copies of source + files. + + o Redistribution in binary form must provide a disclaimer that + states that the software is based in part of the work of the + FreeType Team, in the distribution documentation. We also + encourage you to put an URL to the FreeType web page in your + documentation, though this isn't mandatory. + + These conditions apply to any software derived from or based on + the FreeType Project, not just the unmodified files. If you use + our work, you must acknowledge us. However, no fee need be paid + to us. + +3. Advertising +-------------- + + Neither the FreeType authors and contributors nor you shall use + the name of the other for commercial, advertising, or promotional + purposes without specific prior written permission. + + We suggest, but do not require, that you use one or more of the + following phrases to refer to this software in your documentation + or advertising materials: `FreeType Project', `FreeType Engine', + `FreeType library', or `FreeType Distribution'. + + As you have not signed this license, you are not required to + accept it. However, as the FreeType Project is copyrighted + material, only this license, or another one contracted with the + authors, grants you the right to use, distribute, and modify it. + Therefore, by using, distributing, or modifying the FreeType + Project, you indicate that you understand and accept all the terms + of this license. + +4. Contacts +----------- + + There are two mailing lists related to FreeType: + + o freetype@nongnu.org + + Discusses general use and applications of FreeType, as well as + future and wanted additions to the library and distribution. + If you are looking for support, start in this list if you + haven't found anything to help you in the documentation. + + o freetype-devel@nongnu.org + + Discusses bugs, as well as engine internals, design issues, + specific licenses, porting, etc. + + Our home page can be found at + + https://www.freetype.org + + +--- end of FTL.TXT --- +-------------------------------------------------------------------------------- +freetype2 + +This software was written by Alexander Peslyak in 2001. No copyright is +claimed, and the software is hereby placed in the public domain. +In case this attempt to disclaim copyright and place the software in the +public domain is deemed null and void, then the software is +Copyright (c) 2001 Alexander Peslyak and it is hereby released to the +general public under the following terms: + +Redistribution and use in source and binary forms, with or without +modification, are permitted. + +There's ABSOLUTELY NO WARRANTY, express or implied. +-------------------------------------------------------------------------------- +freetype2 + +This software was written by Alexander Peslyak in 2001. No copyright is +claimed, and the software is hereby placed in the public domain. +In case this attempt to disclaim copyright and place the software in the +public domain is deemed null and void, then the software is +Copyright (c) 2001 Alexander Peslyak and it is hereby released to the +general public under the following terms: + +Redistribution and use in source and binary forms, with or without +modification, are permitted. + +There's ABSOLUTELY NO WARRANTY, express or implied. + +(This is a heavily cut-down "BSD license".) +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2014 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2016 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2017 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2018 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2019 The Fuchsia Authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2019 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2020 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2021 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2022 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2023 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +fuchsia_sdk + +musl as a whole is licensed under the following standard MIT license: + + +Copyright ยฉ 2005-2014 Rich Felker, et al. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +Authors/contributors include: + +Alex Dowad +Alexander Monakov +Anthony G. Basile +Arvid Picciani +Bobby Bingham +Boris Brezillon +Brent Cook +Chris Spiegel +Clรฉment Vasseur +Daniel Micay +Denys Vlasenko +Emil Renner Berthing +Felix Fietkau +Felix Janda +Gianluca Anzolin +Hauke Mehrtens +Hiltjo Posthuma +Isaac Dunham +Jaydeep Patil +Jens Gustedt +Jeremy Huntwork +Jo-Philipp Wich +Joakim Sindholt +John Spencer +Josiah Worcester +Justin Cormack +Khem Raj +Kylie McClain +Luca Barbato +Luka Perkov +M Farkas-Dyck (Strake) +Mahesh Bodapati +Michael Forney +Natanael Copa +Nicholas J. Kain +orc +Pascal Cuoq +Petr Hosek +Pierre Carrier +Rich Felker +Richard Pennington +Shiz +sin +Solar Designer +Stefan Kristiansson +Szabolcs Nagy +Timo Terรคs +Trutz Behn +Valentin Ochs +William Haddon + +Portions of this software are derived from third-party works licensed +under terms compatible with the above MIT license: + +Much of the math library code (third_party/math/* and +third_party/complex/*, and third_party/include/libm.h) is +Copyright ยฉ 1993,2004 Sun Microsystems or +Copyright ยฉ 2003-2011 David Schultz or +Copyright ยฉ 2003-2009 Steven G. Kargl or +Copyright ยฉ 2003-2009 Bruce D. Evans or +Copyright ยฉ 2008 Stephen L. Moshier +and labelled as such in comments in the individual source files. All +have been licensed under extremely permissive terms. + +The smoothsort implementation (third_party/smoothsort/qsort.c) is +Copyright ยฉ 2011 Valentin Ochs and is licensed under an MIT-style +license. + +The x86_64 files in third_party/arch were written by Nicholas J. Kain +and is licensed under the standard MIT terms. + +All other files which have no copyright comments are original works +produced specifically for use as part of this library, written either +by Rich Felker, the main author of the library, or by one or more +contibutors listed above. Details on authorship of individual files +can be found in the git version control history of the project. The +omission of copyright and license comments in each file is in the +interest of source tree size. + +In addition, permission is hereby granted for all public header files +(include/* and arch/*/bits/*) and crt files intended to be linked into +applications (crt/*, ldso/dlstart.c, and arch/*/crt_arch.h) to omit +the copyright notice and permission notice otherwise required by the +license, and to use these files without any requirement of +attribution. These files include substantial contributions from: + +Bobby Bingham +John Spencer +Nicholas J. Kain +Rich Felker +Richard Pennington +Stefan Kristiansson +Szabolcs Nagy + +all of whom have explicitly granted such permission. + +This file previously contained text expressing a belief that most of +the files covered by the above exception were sufficiently trivial not +to be subject to copyright, resulting in confusion over whether it +negated the permissions granted in the license. In the spirit of +permissive licensing, and of not having licensing issues being an +obstacle to adoption, that text has been removed. +-------------------------------------------------------------------------------- +fuchsia_sdk +libjxl + +Copyright 2021 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glfw + +Copyright (C) 1997-2013 Sam Lantinga + +This software is provided 'as-is', without any express or implied warranty. +In no event will the authors be held liable for any damages arising from the +use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2002-2006 Marcus Geelnard + +Copyright (c) 2006-2019 Camilla Lรถwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2002-2006 Marcus Geelnard +Copyright (c) 2006-2016 Camilla Lรถwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2002-2006 Marcus Geelnard +Copyright (c) 2006-2017 Camilla Lรถwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2002-2006 Marcus Geelnard +Copyright (c) 2006-2018 Camilla Lรถwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2002-2006 Marcus Geelnard +Copyright (c) 2006-2019 Camilla Lรถwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2002-2006 Marcus Geelnard +Copyright (c) 2006-2019 Camilla Lรถwy +Copyright (c) 2012 Torsten Walluhn + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2006-2017 Camilla Lรถwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2006-2018 Camilla Lรถwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2009-2016 Camilla Lรถwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2009-2019 Camilla Lรถwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2009-2019 Camilla Lรถwy +Copyright (c) 2012 Torsten Walluhn + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2009-2021 Camilla Lรถwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2014 Jonas ร…dahl + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2016 Google Inc. +Copyright (c) 2016-2017 Camilla Lรถwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2016 Google Inc. +Copyright (c) 2016-2019 Camilla Lรถwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2016-2017 Camilla Lรถwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2021 Camilla Lรถwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2022 Camilla Lรถwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2018 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2019 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2020 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2018-2020 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2015 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. +Copyright (C) 2017, 2019 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2015 LunarG, Inc. +Copyright (C) 2015-2020 Google, Inc. +Copyright (C) 2017 ARM Limited. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2016 LunarG, Inc. +Copyright (C) 2015-2016 Google, Inc. +Copyright (C) 2017 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2016 LunarG, Inc. +Copyright (C) 2015-2020 Google, Inc. +Copyright (C) 2017 ARM Limited. +Modifications Copyright (C) 2020-2021 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2016 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2020 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (c) 2002-2010 The ANGLE Project Authors. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013-2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013-2016 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013-2016 LunarG, Inc. +Copyright (C) 2015-2020 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013-2016 LunarG, Inc. +Copyright (C) 2016-2020 Google, Inc. +Modifications Copyright(C) 2021 Advanced Micro Devices, Inc.All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2016 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2016 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2017 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2013 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2013-2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2015 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2015 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2015 LunarG, Inc. +Copyright (C) 2015-2020 Google, Inc. +Copyright (C) 2017 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2015 LunarG, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2016 LunarG, Inc. +Copyright (C) 2015-2020 Google, Inc. +Copyright (C) 2017 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2016 LunarG, Inc. +Copyright (C) 2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2016 LunarG, Inc. +Copyright (C) 2018-2020 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2015 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2015-2016 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2015-2018 Google, Inc. +Copyright (C) 2017 ARM Limited. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google, Inc., nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 Google, Inc. +Copyright (C) 2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 Google, Inc. +Copyright (C) 2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google, Inc., nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 Google, Inc. +Copyright (C) 2019 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google, Inc., nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016-2017 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016-2017 Google, Inc. +Copyright (C) 2020 The Khronos Group Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016-2017 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016-2018 Google, Inc. +Copyright (C) 2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016-2018 Google, Inc. +Copyright (C) 2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google, Inc., nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2017 LunarG, Inc. +Copyright (C) 2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2017 LunarG, Inc. +Copyright (C) 2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google, Inc., nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2017-2018 Google, Inc. +Copyright (C) 2017 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2018 The Khronos Group Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2020 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google, Inc., nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2020 The Khronos Group Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of The Khronos Group Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2002, NVIDIA Corporation. + +NVIDIA Corporation("NVIDIA") supplies this software to you in +consideration of your agreement to the following terms, and your use, +installation, modification or redistribution of this NVIDIA software +constitutes acceptance of these terms. If you do not agree with these +terms, please do not use, install, modify or redistribute this NVIDIA +software. + +In consideration of your agreement to abide by the following terms, and +subject to these terms, NVIDIA grants you a personal, non-exclusive +license, under NVIDIA's copyrights in this original NVIDIA software (the +"NVIDIA Software"), to use, reproduce, modify and redistribute the +NVIDIA Software, with or without modifications, in source and/or binary +forms; provided that if you redistribute the NVIDIA Software, you must +retain the copyright notice of NVIDIA, this notice and the following +text and disclaimers in all such redistributions of the NVIDIA Software. +Neither the name, trademarks, service marks nor logos of NVIDIA +Corporation may be used to endorse or promote products derived from the +NVIDIA Software without specific prior written permission from NVIDIA. +Except as expressly stated in this notice, no other rights or licenses +express or implied, are granted by NVIDIA herein, including but not +limited to any patent rights that may be infringed by your derivative +works or by other works in which the NVIDIA Software may be +incorporated. No hardware is licensed hereunder. + +THE NVIDIA SOFTWARE IS BEING PROVIDED ON AN "AS IS" BASIS, WITHOUT +WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, +INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF TITLE, +NON-INFRINGEMENT, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR +ITS USE AND OPERATION EITHER ALONE OR IN COMBINATION WITH OTHER +PRODUCTS. + +IN NO EVENT SHALL NVIDIA BE LIABLE FOR ANY SPECIAL, INDIRECT, +INCIDENTAL, EXEMPLARY, CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, LOST PROFITS; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF +USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) OR ARISING IN ANY WAY +OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION OF THE +NVIDIA SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT, +TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF +NVIDIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2013 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Materials. + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2014-2017 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and/or associated documentation files (the "Materials"), +to deal in the Materials without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Materials, and to permit persons to whom the +Materials are furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2014-2020 The Khronos Group Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and/or associated documentation files (the "Materials"), +to deal in the Materials without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Materials, and to permit persons to whom the +Materials are furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2018 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and/or associated documentation files (the "Materials"), +to deal in the Materials without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Materials, and to permit persons to whom the +Materials are furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2019, Viktor Latypov +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2020 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS +KHRONOS STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS +SPECIFICATIONS AND HEADER INFORMATION ARE LOCATED AT + https://www.khronos.org/registry/ + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2020, Travis Fort +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2022 ARM Limited + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and/or associated documentation files (the "Materials"), +to deal in the Materials without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Materials, and to permit persons to whom the +Materials are furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. +-------------------------------------------------------------------------------- +glslang + +Copyright(C) 2021 Advanced Micro Devices, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang +skia + +Copyright (c) 2014-2016 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and/or associated documentation files (the "Materials"), +to deal in the Materials without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Materials, and to permit persons to whom the +Materials are furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. +-------------------------------------------------------------------------------- +glslang +spirv-cross + +Copyright (c) 2014-2020 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and/or associated documentation files (the "Materials"), +to deal in the Materials without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Materials, and to permit persons to whom the +Materials are furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright (C) 2011 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright (C) 2012 Grigori Goronzy + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright (C) 2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright (c) Microsoft Corporation. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 1998-2004 David Turner and Werner Lemberg +Copyright ยฉ 2004,2007,2009 Red Hat, Inc. +Copyright ยฉ 2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 1998-2004 David Turner and Werner Lemberg +Copyright ยฉ 2004,2007,2009,2010 Red Hat, Inc. +Copyright ยฉ 2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 1998-2004 David Turner and Werner Lemberg +Copyright ยฉ 2006 Behdad Esfahbod +Copyright ยฉ 2007,2008,2009 Red Hat, Inc. +Copyright ยฉ 2012,2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2007 Chris Wilson +Copyright ยฉ 2009,2010 Red Hat, Inc. +Copyright ยฉ 2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2007,2008,2009 Red Hat, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2007,2008,2009 Red Hat, Inc. +Copyright ยฉ 2010,2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2007,2008,2009 Red Hat, Inc. +Copyright ยฉ 2010,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2007,2008,2009 Red Hat, Inc. +Copyright ยฉ 2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2007,2008,2009 Red Hat, Inc. +Copyright ยฉ 2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2007,2008,2009 Red Hat, Inc. +Copyright ยฉ 2012,2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2007,2008,2009 Red Hat, Inc. +Copyright ยฉ 2012,2013 Google, Inc. +Copyright ยฉ 2019, Facebook Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2007,2008,2009 Red Hat, Inc. +Copyright ยฉ 2018,2019,2020 Ebrahim Byagowi +Copyright ยฉ 2018 Khaled Hosny + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2007,2008,2009,2010 Red Hat, Inc. +Copyright ยฉ 2010,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2007,2008,2009,2010 Red Hat, Inc. +Copyright ยฉ 2010,2012,2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2007,2008,2009,2010 Red Hat, Inc. +Copyright ยฉ 2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2007,2008,2009,2010 Red Hat, Inc. +Copyright ยฉ 2012,2018 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2007,2008,2009,2010 Red Hat, Inc. +Copyright ยฉ 2012,2018 Google, Inc. +Copyright ยฉ 2019 Facebook, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2009 Red Hat, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2009 Red Hat, Inc. +Copyright ยฉ 2009 Keith Stribley +Copyright ยฉ 2011 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2009 Red Hat, Inc. +Copyright ยฉ 2009 Keith Stribley +Copyright ยฉ 2015 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2009 Red Hat, Inc. +Copyright ยฉ 2011 Codethink Limited +Copyright ยฉ 2010,2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2009 Red Hat, Inc. +Copyright ยฉ 2011 Codethink Limited +Copyright ยฉ 2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2009 Red Hat, Inc. +Copyright ยฉ 2011 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2009 Red Hat, Inc. +Copyright ยฉ 2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2009 Red Hat, Inc. +Copyright ยฉ 2015 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2009 Red Hat, Inc. +Copyright ยฉ 2018 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2009 Red Hat, Inc. +Copyright ยฉ 2018 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2009,2010 Red Hat, Inc. +Copyright ยฉ 2010,2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2009,2010 Red Hat, Inc. +Copyright ยฉ 2010,2011,2012,2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2009,2010 Red Hat, Inc. +Copyright ยฉ 2010,2011,2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2009,2010 Red Hat, Inc. +Copyright ยฉ 2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2010 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2010 Red Hat, Inc. +Copyright ยฉ 2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2010,2011 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2010,2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2010,2011,2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2010,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2011 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2011 Martin Hosken +Copyright ยฉ 2011 SIL International + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2011 Martin Hosken +Copyright ยฉ 2011 SIL International +Copyright ยฉ 2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2011,2012 Google, Inc. +Copyright ยฉ 2018 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2011,2012,2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2011,2012,2013 Google, Inc. +Copyright ยฉ 2021 Khaled Hosny + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2011,2012,2014 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2011,2014 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2012 Mozilla Foundation. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2012,2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2012,2013 Mozilla Foundation. +Copyright ยฉ 2012,2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2012,2017 Google, Inc. +Copyright ยฉ 2021 Behdad Esfahbod + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2012,2018 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2013 Red Hat, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2014 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2015 Google, Inc. +Copyright ยฉ 2019 Adobe Inc. +Copyright ยฉ 2019 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2015 Mozilla Foundation. +Copyright ยฉ 2015 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2015-2019 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2016 Elie Roux +Copyright ยฉ 2018 Google, Inc. +Copyright ยฉ 2018-2019 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2016 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2016 Google, Inc. +Copyright ยฉ 2018 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2016 Google, Inc. +Copyright ยฉ 2018 Khaled Hosny +Copyright ยฉ 2018 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2016 Igalia S.L. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2017 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2017 Google, Inc. +Copyright ยฉ 2018 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2017 Google, Inc. +Copyright ยฉ 2019 Facebook, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2017,2018 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2018 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2018 Ebrahim Byagowi +Copyright ยฉ 2018 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2018 Ebrahim Byagowi +Copyright ยฉ 2020 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2018 Ebrahim Byagowi. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2018 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2018 Google, Inc. +Copyright ยฉ 2019 Facebook, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2018 Adobe Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2018-2019 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2019 Adobe Inc. +Copyright ยฉ 2019 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2019 Adobe, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2019 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2019 Facebook, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2019 Adobe Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2019-2020 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2020 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2020 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2021 Behdad Esfahbod + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2021 Behdad Esfahbod. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2021 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2022 Behdad Esfahbod + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2022 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2022 Red Hat, Inc + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2022 Red Hat, Inc +Copyright ยฉ 2021, 2022 Black Foundry + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2022 Red Hat, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2022 Behdad Esfahbod + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2022 Matthias Clasen + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2022 Red Hat, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2023 Behdad Esfahbod + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2023 Behdad Esfahbod +Copyright ยฉ 1999 David Turner +Copyright ยฉ 2005 Werner Lemberg +Copyright ยฉ 2013-2015 Alexei Podtelezhnikov + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright ยฉ 2023 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz + +HarfBuzz is licensed under the so-called "Old MIT" license. Details follow. +For parts of HarfBuzz that are licensed under different licenses see individual +files names COPYING in subdirectories where applicable. + +Copyright ยฉ 2010-2022 Google, Inc. +Copyright ยฉ 2015-2020 Ebrahim Byagowi +Copyright ยฉ 2019,2020 Facebook, Inc. +Copyright ยฉ 2012,2015 Mozilla Foundation +Copyright ยฉ 2011 Codethink Limited +Copyright ยฉ 2008,2010 Nokia Corporation and/or its subsidiary(-ies) +Copyright ยฉ 2009 Keith Stribley +Copyright ยฉ 2011 Martin Hosken and SIL International +Copyright ยฉ 2007 Chris Wilson +Copyright ยฉ 2005,2006,2020,2021,2022,2023 Behdad Esfahbod +Copyright ยฉ 2004,2007,2008,2009,2010,2013,2021,2022,2023 Red Hat, Inc. +Copyright ยฉ 1998-2005 David Turner and Werner Lemberg +Copyright ยฉ 2016 Igalia S.L. +Copyright ยฉ 2022 Matthias Clasen +Copyright ยฉ 2018,2021 Khaled Hosny +Copyright ยฉ 2018,2019,2020 Adobe, Inc +Copyright ยฉ 2013-2015 Alexei Podtelezhnikov + +For full copyright notices consult the individual files in the package. + + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +harfbuzz +icu +web_unicode + +Unicodeยฎ Copyright and Terms of Use +For the general privacy policy governing access to this site, see the Unicode Privacy Policy. + +A. Unicode Copyright +1. Copyright ยฉ 1991-2022 Unicode, Inc. All rights reserved. +B. Definitions +Unicode Data Files ("DATA FILES") include all data files under the directories: +https://www.unicode.org/Public/ +https://www.unicode.org/reports/ +https://www.unicode.org/ivd/data/ + +Unicode Data Files do not include PDF online code charts under the directory: +https://www.unicode.org/Public/ + +Unicode Software ("SOFTWARE") includes any source code published in the Unicode Standard +or any source code or compiled code under the directories: +https://www.unicode.org/Public/PROGRAMS/ +https://www.unicode.org/Public/cldr/ +http://site.icu-project.org/download/ +C. Terms of Use +1. Certain documents and files on this website contain a legend indicating that "Modification is permitted." Any person is hereby authorized, without fee, to modify such documents and files to create derivative works conforming to the Unicodeยฎ Standard, subject to Terms and Conditions herein. +2. Any person is hereby authorized, without fee, to view, use, reproduce, and distribute all documents and files, subject to the Terms and Conditions herein. +3. Further specifications of rights and restrictions pertaining to the use of the Unicode DATA FILES and SOFTWARE can be found in the Unicode Data Files and Software License. +4. Each version of the Unicode Standard has further specifications of rights and restrictions of use. For the book editions (Unicode 5.0 and earlier), these are found on the back of the title page. +5. The Unicode PDF online code charts carry specific restrictions. Those restrictions are incorporated as the first page of each PDF code chart. +6. All other files, including online documentation of the core specification for Unicode 6.0 and later, are covered under these general Terms of Use. +7. No license is granted to "mirror" the Unicode website where a fee is charged for access to the "mirror" site. +8. Modification is not permitted with respect to this document. All copies of this document must be verbatim. +D. Restricted Rights Legend +1. Any technical data or software which is licensed to the United States of America, its agencies and/or instrumentalities under this Agreement is commercial technical data or commercial computer software developed exclusively at private expense as defined in FAR 2.101, or DFARS 252.227-7014 (June 1995), as applicable. For technical data, use, duplication, or disclosure by the Government is subject to restrictions as set forth in DFARS 202.227-7015 Technical Data, Commercial and Items (Nov 1995) and this Agreement. For Software, in accordance with FAR 12-212 or DFARS 227-7202, as applicable, use, duplication or disclosure by the Government is subject to the restrictions set forth in this Agreement. +E.Warranties and Disclaimers +1. This publication and/or website may include technical or typographical errors or other inaccuracies. Changes are periodically added to the information herein; these changes will be incorporated in new editions of the publication and/or website. Unicode, Inc. may make improvements and/or changes in the product(s) and/or program(s) described in this publication and/or website at any time. +2. If this file has been purchased on magnetic or optical media from Unicode, Inc. the sole and exclusive remedy for any claim will be exchange of the defective media within ninety (90) days of original purchase. +3. EXCEPT AS PROVIDED IN SECTION E.2, THIS PUBLICATION AND/OR SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND EITHER EXPRESS, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. UNICODE, INC. AND ITS LICENSORS ASSUME NO RESPONSIBILITY FOR ERRORS OR OMISSIONS IN THIS PUBLICATION AND/OR SOFTWARE OR OTHER DOCUMENTS WHICH ARE REFERENCED BY OR LINKED TO THIS PUBLICATION OR THE UNICODE WEBSITE. +F. Waiver of Damages +1. In no event shall Unicode, Inc. or its licensors be liable for any special, incidental, indirect or consequential damages of any kind, or any damages whatsoever, whether or not Unicode, Inc. was advised of the possibility of the damage, including, without limitation, those resulting from the following: loss of use, data or profits, in connection with the use, modification or distribution of this information or its derivatives. +G. Trademarks & Logos +1. The Unicode Word Mark and the Unicode Logo are trademarks of Unicode, Inc. โ€œThe Unicode Consortiumโ€ and โ€œUnicode, Inc.โ€ are trade names of Unicode, Inc. Use of the information and materials found on this website indicates your acknowledgement of Unicode, Inc.โ€™s exclusive worldwide rights in the Unicode Word Mark, the Unicode Logo, and the Unicode trade names. +3. The Unicode Consortium Name and Trademark Usage Policy (โ€œTrademark Policyโ€) are incorporated herein by reference and you agree to abide by the provisions of the Trademark Policy, which may be changed from time to time in the sole discretion of Unicode, Inc. +4. All third party trademarks referenced herein are the property of their respective owners. +H. Miscellaneous +1. Jurisdiction and Venue. This website is operated from a location in the State of California, United States of America. Unicode, Inc. makes no representation that the materials are appropriate for use in other locations. If you access this website from other locations, you are responsible for compliance with local laws. This Agreement, all use of this website and any claims and damages resulting from use of this website are governed solely by the laws of the State of California without regard to any principles which would apply the laws of a different jurisdiction. The user agrees that any disputes regarding this website shall be resolved solely in the courts located in Santa Clara County, California. The user agrees said courts have personal jurisdiction and agree to waive any right to transfer the dispute to any other forum. +2. Modification by Unicode, Inc. Unicode, Inc. shall have the right to modify this Agreement at any time by posting it to this website. The user may not assign any part of this Agreement without Unicode, Inc.โ€™s prior written consent. +3. Taxes. The user agrees to pay any taxes arising from access to this website or use of the information herein, except for those based on Unicodeโ€™s net income. +4. Severability. If any provision of this Agreement is declared invalid or unenforceable, the remaining provisions of this Agreement shall remain in effect. +5. Entire Agreement. This Agreement constitutes the entire agreement between the parties. + +EXHIBIT 1 +UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE + +See Terms of Use +for definitions of Unicode Inc.โ€™s Data Files and Software. + +NOTICE TO USER: Carefully read the following legal agreement. +BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S +DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), +YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. +IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE +THE DATA FILES OR SOFTWARE. + +COPYRIGHT AND PERMISSION NOTICE + +Copyright ยฉ 1991-2022 Unicode, Inc. All rights reserved. +Distributed under the Terms of Use in https://www.unicode.org/copyright.html. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +# Copyright (c) 2006-2015 International Business Machines Corporation, + # Apple Inc., and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1995-2001, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1995-2002, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1995-2003, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1995-2005, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1995-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1995-2007, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1995-2009, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1995-2010, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1995-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1995-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1995-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1996-2008, International Business Machines Corporation * +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1996-2012, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1996-2012, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1996-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1996-2013, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1996-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1996-2014, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1996-2014, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1996-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1996-2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1996-2015, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1996-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1996-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1996-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2000, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2003, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2005, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2005, International Business Machines Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2009,2014 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2010, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2010, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2011, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2011,2014-2015 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2012, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2013, International Business Machines * +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2013, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2013, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2013, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2015, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2015, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2015, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2016, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2016, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1998-2004, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1998-2005, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1998-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1998-2008, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1998-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1998-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1998-2012, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1998-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1998-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1998-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1998-2016, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2001, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2003, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2004, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2005, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2006,2013 IBM Corp. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2007, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2007, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2008, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2009, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2010, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2010, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2011, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2012, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2013, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2014 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2014 International Business Machines Corporation * +and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2015 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2016 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2016 International Business Machines Corporation +and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2016 International Business Machines Corporation * +and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2016, International Business Machines + Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2016, International Business Machines Corporation + and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2016, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2016, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2003, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2004, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2004, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2007, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2008, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2010, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2012, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2016, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2003, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2005, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2005, International Business Machines Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2007, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2008, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2008,2010 IBM and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2010, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2011 IBM and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2011, International Business Machines * + Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2011, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2011, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2011, International Business Machines Corporation. * +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2011,2014 IBM and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2012, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2013, International Business Machines + Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2014 IBM and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2014 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2014, International Business Machines + Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2014, International Business Machines * + Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2014, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2014, International Business Machines Corporation. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2015 IBM and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2015, International Business Machines + Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2016, International Business Machines + Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2003, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2005, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2008 International Business Machines Corporation * +and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2008, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2010, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2011 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2011, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2013, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2014 International Business Machines Corporation +and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2014, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2015 International Business Machines Corporation +and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2015, International Business Machines Corporation and others. + All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2015, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2016 International Business Machines Corporation +and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2016 International Business Machines Corporation * +and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2016 International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2016, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2016, International Business Machines Corporation and others. + All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2016, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003 - 2008, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003 - 2009, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003 - 2013, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003 - 2013, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2003, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2004, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2007, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2008, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2009, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2009,2012,2016 International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2010, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2013, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2013, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2013, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2014, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2015, International Business Machines * + Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2015, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2016, International Business Machines * + Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2016, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004 - 2008, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2005, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2007, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2010, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2012, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2015, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2005, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2005-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2005-2008, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2005-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2005-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2005-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2005-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2005-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2005-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2006 International Business Machines Corporation * +and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2006-2012, International Business Machines Corporation and others. * +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2006-2014, International Business Machines Corporation * +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2006-2016, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2008, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2008, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2008, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2012, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2013, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2013, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2013, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2014, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2014, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2016, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008, Google, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2009, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2011, International Business Machines +Corporation, Google and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2012, International Business Machines Corporation * +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2013, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2013, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2014, Google, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2014, Google, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2015, Google, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2015, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2016, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2010 IBM Corporation and Others. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2010, Google, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2010, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2011, International Business Machines + Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2011, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2012, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2013, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2014 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2014, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2015, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2016, International Business Machines Corporation, * +Google, and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2017, International Business Machines Corporation, * +Google, and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010 , Yahoo! Inc. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2012,2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2012,2015 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2014, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2014, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2014, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2016 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2012, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2013, Apple Inc. and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2013, Apple Inc.; Unicode, Inc.; and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2014 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2015, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2012 International Business Machines Corporation +and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2012,2014 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2012-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2012-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2012-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013-2014, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013-2014, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013-2015, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2014 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2014 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2014-2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2014-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2014-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2014-2016, International Business Machines Corporation and +others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2014-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2014-2016, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2015, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2015-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2015-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2015-2016, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) The Internet Society (2002). All Rights Reserved. + +This document and translations of it may be copied and furnished to +others, and derivative works that comment on or otherwise explain it +or assist in its implementation may be prepared, copied, published +and distributed, in whole or in part, without restriction of any +kind, provided that the above copyright notice and this paragraph are +included on all such copies and derivative works. However, this +document itself may not be modified in any way, such as by removing +the copyright notice or references to the Internet Society or other +Internet organizations, except as needed for the purpose of +developing Internet standards in which case the procedures for +copyrights defined in the Internet Standards process must be +followed, or as required to translate it into languages other than +English. + +The limited permissions granted above are perpetual and will not be +revoked by the Internet Society or its successors or assigns. + +This document and the information contained herein is provided on an +"AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING +TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING +BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION +HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF +MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. +-------------------------------------------------------------------------------- +icu + +Copyright (C) {1999-2001}, International Business Machines Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1996-2012, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1996-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1996-2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1996-2015, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1996-2016, International Business Machines Corporation + and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1996-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1997-2011, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1997-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1997-2012, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1997-2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1997-2016, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1999-2012, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1999-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2000-2004 IBM, Inc. and Others. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2000-2005, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2000-2007, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2001-2005, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2001-2007, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2001-2010 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2001-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2001-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2001-2012, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2001-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2001-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2001-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2001-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2004, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2005, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2005, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2006, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2007, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2010, International Business Machines Corporation * +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2011, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2012, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2012, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2014, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2014, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2016 International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2003, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2003-2004, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2003-2008, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2003-2010 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2003-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2003-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2003-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2004, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2004-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2004-2010, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2004-2014 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2004-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2004-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2004-2015, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2004-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2007-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2007-2012, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2007-2013, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2007-2014, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2007-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2008-2010, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2008-2011, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2008-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2009, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2011-2012 International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2014-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) IBM Corporation, 2000-2010. All rights reserved. + +This software is made available under the terms of the +ICU License -- ICU 1.8.1 and later. +-------------------------------------------------------------------------------- +icu + +Copyright (c) IBM Corporation, 2000-2011. All rights reserved. + +This software is made available under the terms of the +ICU License -- ICU 1.8.1 and later. +-------------------------------------------------------------------------------- +icu + +Copyright (c) IBM Corporation, 2000-2012. All rights reserved. + +This software is made available under the terms of the +ICU License -- ICU 1.8.1 and later. +-------------------------------------------------------------------------------- +icu + +Copyright (c) IBM Corporation, 2000-2014. All rights reserved. + +This software is made available under the terms of the +ICU License -- ICU 1.8.1 and later. +-------------------------------------------------------------------------------- +icu + +Copyright (c) IBM Corporation, 2000-2016. All rights reserved. + +This software is made available under the terms of the +ICU License -- ICU 1.8.1 and later. +-------------------------------------------------------------------------------- +icu + +Copyright 2001 and onwards Google Inc. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright 2004 and onwards Google Inc. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright 2007 Google Inc. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE + +See Terms of Use +for definitions of Unicode Inc.โ€™s Data Files and Software. + +NOTICE TO USER: Carefully read the following legal agreement. +BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S +DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), +YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. +IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE +THE DATA FILES OR SOFTWARE. + +COPYRIGHT AND PERMISSION NOTICE + +Copyright ยฉ 1991-2022 Unicode, Inc. All rights reserved. +Distributed under the Terms of Use in https://www.unicode.org/copyright.html. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. + +Third-Party Software Licenses + +This section contains third-party software notices and/or additional +terms for licensed third-party software components included within ICU +libraries. + +ICU License - ICU 1.8.1 to ICU 57.1 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright (c) 1995-2016 International Business Machines Corporation and others +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, and/or sell copies of the Software, and to permit persons +to whom the Software is furnished to do so, provided that the above +copyright notice(s) and this permission notice appear in all copies of +the Software and that both the above copyright notice(s) and this +permission notice appear in supporting documentation. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR +HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY +SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER +RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF +CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, use +or other dealings in this Software without prior written authorization +of the copyright holder. + +All trademarks and registered trademarks mentioned herein are the +property of their respective owners. + +Chinese/Japanese Word Break Dictionary Data (cjdict.txt) + +The Google Chrome software developed by Google is licensed under +the BSD license. Other software included in this distribution is +provided under other licenses, as set forth below. + +The BSD License +http://opensource.org/licenses/bsd-license.php +Copyright (C) 2006-2008, Google Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +Redistributions of source code must retain the above copyright notice, +this list of conditions and the following disclaimer. +Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following +disclaimer in the documentation and/or other materials provided with +the distribution. +Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND +CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +The word list in cjdict.txt are generated by combining three word lists +listed below with further processing for compound word breaking. The +frequency is generated with an iterative training against Google web +corpora. + +* Libtabe (Chinese) + - https://sourceforge.net/project/?group_id=1519 + - Its license terms and conditions are shown below. + +* IPADIC (Japanese) + - http://chasen.aist-nara.ac.jp/chasen/distribution.html + - Its license terms and conditions are shown below. + +Copyright (c) 1999 TaBE Project. +Copyright (c) 1999 Pai-Hsiang Hsiao. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. +. Neither the name of the TaBE Project nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. + +Copyright (c) 1999 Computer Systems and Communication Lab, + Institute of Information Science, Academia + Sinica. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. +. Neither the name of the Computer Systems and Communication Lab + nor the names of its contributors may be used to endorse or + promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. + +Copyright 1996 Chih-Hao Tsai @ Beckman Institute, + University of Illinois +c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4 + +Copyright 2000, 2001, 2002, 2003 Nara Institute of Science +and Technology. All Rights Reserved. + +Use, reproduction, and distribution of this software is permitted. +Any copy of this software, whether in its original form or modified, +must include both the above copyright notice and the following +paragraphs. + +Nara Institute of Science and Technology (NAIST), +the copyright holders, disclaims all warranties with regard to this +software, including all implied warranties of merchantability and +fitness, in no event shall NAIST be liable for +any special, indirect or consequential damages or any damages +whatsoever resulting from loss of use, data or profits, whether in an +action of contract, negligence or other tortuous action, arising out +of or in connection with the use or performance of this software. + +A large portion of the dictionary entries +originate from ICOT Free Software. The following conditions for ICOT +Free Software applies to the current dictionary as well. + +Each User may also freely distribute the Program, whether in its +original form or modified, to any third party or parties, PROVIDED +that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear +on, or be attached to, the Program, which is distributed substantially +in the same form as set out herein and that such intended +distribution, if actually made, will neither violate or otherwise +contravene any of the laws and regulations of the countries having +jurisdiction over the User or the intended distribution itself. + +NO WARRANTY + +The program was produced on an experimental basis in the course of the +research and development conducted during the project and is provided +to users as so produced on an experimental basis. Accordingly, the +program is provided without any warranty whatsoever, whether express, +implied, statutory or otherwise. The term "warranty" used herein +includes, but is not limited to, any warranty of the quality, +performance, merchantability and fitness for a particular purpose of +the program and the nonexistence of any infringement or violation of +any right of any third party. + +Each user of the program will agree and understand, and be deemed to +have agreed and understood, that there is no warranty whatsoever for +the program and, accordingly, the entire risk arising from or +otherwise connected with the program is assumed by the user. + +Therefore, neither ICOT, the copyright holder, or any other +organization that participated in or was otherwise related to the +development of the program and their respective officials, directors, +officers and other employees shall be held liable for any and all +damages, including, without limitation, general, special, incidental +and consequential damages, arising out of or otherwise in connection +with the use or inability to use the program or any product, material +or result produced or otherwise obtained by using the program, +regardless of whether they have been advised of, or otherwise had +knowledge of, the possibility of such damages at any time during the +project or thereafter. Each user will be deemed to have agreed to the +foregoing by his or her commencement of use of the program. The term +"use" as used herein includes, but is not limited to, the use, +modification, copying and distribution of the program and the +production of secondary products from the program. + +In the case where the program, whether in its original form or +modified, was distributed or delivered to or received by a user from +any person, organization or entity other than ICOT, unless it makes or +grants independently of ICOT any specific warranty to the user in +writing, such person, organization or entity, will also be exempted +from and not be held liable to the user for any such damages as noted +above as far as the program is concerned. + +Lao Word Break Dictionary Data (laodict.txt) + +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2015 International Business Machines Corporation +and others. All Rights Reserved. + +Project: https://github.com/rober42539/lao-dictionary +Dictionary: https://github.com/rober42539/lao-dictionary/laodict.txt +License: https://github.com/rober42539/lao-dictionary/LICENSE.txt + (copied below) + +This file is derived from the above dictionary version of Nov 22, 2020 + +Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. Redistributions in binary +form must reproduce the above copyright notice, this list of conditions and +the following disclaimer in the documentation and/or other materials +provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, +INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. + +Burmese Word Break Dictionary Data (burmesedict.txt) + +Copyright (c) 2014 International Business Machines Corporation +and others. All Rights Reserved. + +This list is part of a project hosted at: + github.com/kanyawtech/myanmar-karen-word-lists + +Copyright (c) 2013, LeRoy Benjamin Sharon +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: Redistributions of source code must retain the above +copyright notice, this list of conditions and the following +disclaimer. Redistributions in binary form must reproduce the +above copyright notice, this list of conditions and the following +disclaimer in the documentation and/or other materials provided +with the distribution. + + Neither the name Myanmar Karen Word Lists, nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND +CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS +BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR +TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF +THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. + +Google double-conversion + +Copyright 2006-2011, the V8 project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +File: install-sh (only for ICU4C) + + +Copyright 1991 by the Massachusetts Institute of Technology + +Permission to use, copy, modify, distribute, and sell this software and its +documentation for any purpose is hereby granted without fee, provided that +the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation, and that the name of M.I.T. not be used in advertising or +publicity pertaining to distribution of the software without specific, +written prior permission. M.I.T. makes no representations about the +suitability of this software for any purpose. It is provided "as is" +without express or implied warranty. +-------------------------------------------------------------------------------- +icu + +punycode.c 0.4.0 (2001-Nov-17-Sat) +http://www.cs.berkeley.edu/~amc/idn/ +Adam M. Costello +http://www.nicemice.net/amc/ + +Disclaimer and license + + Regarding this entire document or any portion of it (including + the pseudocode and C code), the author makes no guarantees and + is not responsible for any damage resulting from its use. The + author grants irrevocable permission to anyone to use, modify, + and distribute it in any way that does not diminish the rights + of anyone else to use, modify, and distribute it, provided that + redistributed derivative works do not contain misleading author or + version information. Derivative works need not be licensed under + similar terms. +-------------------------------------------------------------------------------- +include + +Copyright (C) 2011 Nick Bruun +Copyright (C) 2013 Vlad Lazarenko +Copyright (C) 2014 Nicolas Pauss +-------------------------------------------------------------------------------- +include + +Copyright (c) 2008-2009 Bjoern Hoehrmann + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +-------------------------------------------------------------------------------- +include + +Copyright (c) 2009 Florian Loitsch. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +-------------------------------------------------------------------------------- +include + +Copyright (c) 2011 - Nick Bruun. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. If you meet (any of) the author(s), you're encouraged to buy them a beer, + a drink or whatever is suited to the situation, given that you like the + software. +4. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +include + +Copyright (c) 2013-2019 Niels Lohmann . + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +-------------------------------------------------------------------------------- +inja + +Copyright (c) 2018-2021 Berscheid + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +-------------------------------------------------------------------------------- +inja + +Copyright (c) 2018-2021 Lars Berscheid + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +-------------------------------------------------------------------------------- +js + +Copyright 2012, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +json + +Copyright (c) 2013-2022 Niels Lohmann + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +-------------------------------------------------------------------------------- +khronos + +Copyright (c) 2007-2012 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Materials. + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +-------------------------------------------------------------------------------- +khronos + +Copyright (c) 2008-2009 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Materials. + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +-------------------------------------------------------------------------------- +khronos + +Copyright (c) 2013-2014 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Materials. + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +-------------------------------------------------------------------------------- +khronos + +Copyright (c) 2013-2016 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Materials. + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +-------------------------------------------------------------------------------- +libXNVCtrl + +Copyright (c) 2008 NVIDIA, Corporation + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice (including the next +paragraph) shall be included in all copies or substantial portions of the +Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +-------------------------------------------------------------------------------- +libXNVCtrl + +Copyright (c) 2010 NVIDIA, Corporation + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice (including the next +paragraph) shall be included in all copies or substantial portions of the +Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +-------------------------------------------------------------------------------- +libcxx + +Copyright 2018 Ulf Adams +Copyright (c) Microsoft Corporation. All rights reserved. + +Boost Software License - Version 1.0 - August 17th, 2003 + +Permission is hereby granted, free of charge, to any person or organization +obtaining a copy of the software and accompanying documentation covered by +this license (the "Software") to use, reproduce, display, distribute, +execute, and transmit the Software, and to prepare derivative works of the +Software, and to permit third-parties to whom the Software is furnished to +do so, all subject to the following: + +The copyright notices in the Software and this entire statement, including +the above license grant, this restriction and the following disclaimer, +must be included in all copies of the Software, in whole or in part, and +all derivative works of the Software, unless such copies or derivative +works are solely in the form of machine-executable object code generated by +a source language processor. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT +SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE +FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +libcxx +libcxxabi + +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + + +--- LLVM Exceptions to the Apache 2.0 License ---- + +As an exception, if, as a result of your compiling your source code, portions +of this Software are embedded into an Object form of such source code, you +may redistribute such embedded portions in such Object form without complying +with the conditions of Sections 4(a), 4(b) and 4(d) of the License. + +In addition, if you combine or link compiled forms of this Software with +software that is licensed under the GPLv2 ("Combined Software") and if a +court of competent jurisdiction determines that the patent provision (Section +3), the indemnity provision (Section 9) or other Section of the License +conflicts with the conditions of the GPLv2, you may retroactively and +prospectively choose to deem waived or otherwise exclude such Section(s) of +the License, but only in their entirety and only with respect to the Combined +Software. +-------------------------------------------------------------------------------- +libcxx +libcxxabi + +Copyright (c) 2009-2014 by the contributors listed in CREDITS.TXT + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +-------------------------------------------------------------------------------- +libcxx +libcxxabi + +Copyright (c) 2009-2019 by the contributors listed in CREDITS.TXT + +All rights reserved. + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE +SOFTWARE. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 1988 by Jef Poskanzer. + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, provided +that the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation. This software is provided "as is" without express or +implied warranty. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 1989 by Jef Poskanzer. +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, provided +that the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation. This software is provided "as is" without express or +implied warranty. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2009-2011, Nokia Corporation and/or its subsidiary(-ies). +All Rights Reserved. +Author: Siarhei Siamashka +Copyright (C) 2013-2014, Linaro Limited. All Rights Reserved. +Author: Ragesh Radhakrishnan +Copyright (C) 2014-2016, D. R. Commander. All Rights Reserved. +Copyright (C) 2015-2016, Matthieu Darbois. All Rights Reserved. +Copyright (C) 2016, Siarhei Siamashka. All Rights Reserved. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2009-2011, Nokia Corporation and/or its subsidiary(-ies). +All Rights Reserved. +Author: Siarhei Siamashka +Copyright (C) 2014, Siarhei Siamashka. All Rights Reserved. +Copyright (C) 2014, Linaro Limited. All Rights Reserved. +Copyright (C) 2015, D. R. Commander. All Rights Reserved. +Copyright (C) 2015-2016, Matthieu Darbois. All Rights Reserved. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2013, MIPS Technologies, Inc., California. +All Rights Reserved. +Authors: Teodora Novkovic (teodora.novkovic@imgtec.com) + Darko Laus (darko.laus@imgtec.com) +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2013-2014, MIPS Technologies, Inc., California. +All Rights Reserved. +Authors: Teodora Novkovic (teodora.novkovic@imgtec.com) + Darko Laus (darko.laus@imgtec.com) +Copyright (C) 2015, D. R. Commander. All Rights Reserved. +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2014, D. R. Commander. All Rights Reserved. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2014-2015, D. R. Commander. All Rights Reserved. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2014-2015, D. R. Commander. All Rights Reserved. +Copyright (C) 2014, Jay Foad. All Rights Reserved. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2015, D. R. Commander. All Rights Reserved. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C)2009-2014 D. R. Commander. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +- Neither the name of the libjpeg-turbo Project nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C)2009-2015 D. R. Commander. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +- Neither the name of the libjpeg-turbo Project nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C)2009-2016 D. R. Commander. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +- Neither the name of the libjpeg-turbo Project nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C)2011 D. R. Commander. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +- Neither the name of the libjpeg-turbo Project nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C)2011, 2015 D. R. Commander. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +- Neither the name of the libjpeg-turbo Project nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C)2011-2016 D. R. Commander. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +- Neither the name of the libjpeg-turbo Project nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright 2009 Pierre Ossman for Cendio AB +Copyright (C) 2010, D. R. Commander. + +Based on the x86 SIMD extension for IJG JPEG library - version 1.02 + +Copyright (C) 1999-2006, MIYASAKA Masaru. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +libjpeg-turbo + +We are also required to state that + "The Graphics Interchange Format(c) is the Copyright property of + CompuServe Incorporated. GIF(sm) is a Service Mark property of + CompuServe Incorporated." +-------------------------------------------------------------------------------- +libjpeg-turbo + +libjpeg-turbo Licenses +====================== + +libjpeg-turbo is covered by three compatible BSD-style open source licenses: + +- The IJG (Independent JPEG Group) License, which is listed in + [README.ijg](README.ijg) + + This license applies to the libjpeg API library and associated programs + (any code inherited from libjpeg, and any modifications to that code.) + +- The Modified (3-clause) BSD License, which is listed in + [turbojpeg.c](turbojpeg.c) + + This license covers the TurboJPEG API library and associated programs. + +- The zlib License, which is listed in [simd/jsimdext.inc](simd/jsimdext.inc) + + This license is a subset of the other two, and it covers the libjpeg-turbo + SIMD extensions. + + +Complying with the libjpeg-turbo Licenses +========================================= + +This section provides a roll-up of the libjpeg-turbo licensing terms, to the +best of our understanding. + +1. If you are distributing a modified version of the libjpeg-turbo source, + then: + + 1. You cannot alter or remove any existing copyright or license notices + from the source. + + **Origin** + - Clause 1 of the IJG License + - Clause 1 of the Modified BSD License + - Clauses 1 and 3 of the zlib License + + 2. You must add your own copyright notice to the header of each source + file you modified, so others can tell that you modified that file (if + there is not an existing copyright header in that file, then you can + simply add a notice stating that you modified the file.) + + **Origin** + - Clause 1 of the IJG License + - Clause 2 of the zlib License + + 3. You must include the IJG README file, and you must not alter any of the + copyright or license text in that file. + + **Origin** + - Clause 1 of the IJG License + +2. If you are distributing only libjpeg-turbo binaries without the source, or + if you are distributing an application that statically links with + libjpeg-turbo, then: + + 1. Your product documentation must include a message stating: + + This software is based in part on the work of the Independent JPEG + Group. + + **Origin** + - Clause 2 of the IJG license + + 2. If your binary distribution includes or uses the TurboJPEG API, then + your product documentation must include the text of the Modified BSD + License. + + **Origin** + - Clause 2 of the Modified BSD License + +3. You cannot use the name of the IJG or The libjpeg-turbo Project or the + contributors thereof in advertising, publicity, etc. + + **Origin** + - IJG License + - Clause 3 of the Modified BSD License + +4. The IJG and The libjpeg-turbo Project do not warrant libjpeg-turbo to be + free of defects, nor do we accept any liability for undesirable + consequences resulting from your use of the software. + + **Origin** + - IJG License + - Modified BSD License + - zlib License +-------------------------------------------------------------------------------- +libjpeg-turbo + +libjpeg-turbo note: This file has been modified by The libjpeg-turbo Project +to include only information relevant to libjpeg-turbo, to wordsmith certain +sections, and to remove impolitic language that existed in the libjpeg v8 +README. It is included only for reference. Please see README.md for +information specific to libjpeg-turbo. + + +The Independent JPEG Group's JPEG software +========================================== + +This distribution contains a release of the Independent JPEG Group's free JPEG +software. You are welcome to redistribute this software and to use it for any +purpose, subject to the conditions under LEGAL ISSUES, below. + +This software is the work of Tom Lane, Guido Vollbeding, Philip Gladstone, +Bill Allombert, Jim Boucher, Lee Crocker, Bob Friesenhahn, Ben Jackson, +Julian Minguillon, Luis Ortiz, George Phillips, Davide Rossi, Ge' Weijers, +and other members of the Independent JPEG Group. + +IJG is not affiliated with the ISO/IEC JTC1/SC29/WG1 standards committee +(also known as JPEG, together with ITU-T SG16). + + +DOCUMENTATION ROADMAP +===================== + +This file contains the following sections: + +OVERVIEW General description of JPEG and the IJG software. +LEGAL ISSUES Copyright, lack of warranty, terms of distribution. +REFERENCES Where to learn more about JPEG. +ARCHIVE LOCATIONS Where to find newer versions of this software. +FILE FORMAT WARS Software *not* to get. +TO DO Plans for future IJG releases. + +Other documentation files in the distribution are: + +User documentation: + usage.txt Usage instructions for cjpeg, djpeg, jpegtran, + rdjpgcom, and wrjpgcom. + *.1 Unix-style man pages for programs (same info as usage.txt). + wizard.txt Advanced usage instructions for JPEG wizards only. + change.log Version-to-version change highlights. +Programmer and internal documentation: + libjpeg.txt How to use the JPEG library in your own programs. + example.c Sample code for calling the JPEG library. + structure.txt Overview of the JPEG library's internal structure. + coderules.txt Coding style rules --- please read if you contribute code. + +Please read at least usage.txt. Some information can also be found in the JPEG +FAQ (Frequently Asked Questions) article. See ARCHIVE LOCATIONS below to find +out where to obtain the FAQ article. + +If you want to understand how the JPEG code works, we suggest reading one or +more of the REFERENCES, then looking at the documentation files (in roughly +the order listed) before diving into the code. + + +OVERVIEW +======== + +This package contains C software to implement JPEG image encoding, decoding, +and transcoding. JPEG (pronounced "jay-peg") is a standardized compression +method for full-color and grayscale images. JPEG's strong suit is compressing +photographic images or other types of images that have smooth color and +brightness transitions between neighboring pixels. Images with sharp lines or +other abrupt features may not compress well with JPEG, and a higher JPEG +quality may have to be used to avoid visible compression artifacts with such +images. + +JPEG is lossy, meaning that the output pixels are not necessarily identical to +the input pixels. However, on photographic content and other "smooth" images, +very good compression ratios can be obtained with no visible compression +artifacts, and extremely high compression ratios are possible if you are +willing to sacrifice image quality (by reducing the "quality" setting in the +compressor.) + +This software implements JPEG baseline, extended-sequential, and progressive +compression processes. Provision is made for supporting all variants of these +processes, although some uncommon parameter settings aren't implemented yet. +We have made no provision for supporting the hierarchical or lossless +processes defined in the standard. + +We provide a set of library routines for reading and writing JPEG image files, +plus two sample applications "cjpeg" and "djpeg", which use the library to +perform conversion between JPEG and some other popular image file formats. +The library is intended to be reused in other applications. + +In order to support file conversion and viewing software, we have included +considerable functionality beyond the bare JPEG coding/decoding capability; +for example, the color quantization modules are not strictly part of JPEG +decoding, but they are essential for output to colormapped file formats or +colormapped displays. These extra functions can be compiled out of the +library if not required for a particular application. + +We have also included "jpegtran", a utility for lossless transcoding between +different JPEG processes, and "rdjpgcom" and "wrjpgcom", two simple +applications for inserting and extracting textual comments in JFIF files. + +The emphasis in designing this software has been on achieving portability and +flexibility, while also making it fast enough to be useful. In particular, +the software is not intended to be read as a tutorial on JPEG. (See the +REFERENCES section for introductory material.) Rather, it is intended to +be reliable, portable, industrial-strength code. We do not claim to have +achieved that goal in every aspect of the software, but we strive for it. + +We welcome the use of this software as a component of commercial products. +No royalty is required, but we do ask for an acknowledgement in product +documentation, as described under LEGAL ISSUES. + + +LEGAL ISSUES +============ + +In plain English: + +1. We don't promise that this software works. (But if you find any bugs, + please let us know!) +2. You can use this software for whatever you want. You don't have to pay us. +3. You may not pretend that you wrote this software. If you use it in a + program, you must acknowledge somewhere in your documentation that + you've used the IJG code. + +In legalese: + +The authors make NO WARRANTY or representation, either express or implied, +with respect to this software, its quality, accuracy, merchantability, or +fitness for a particular purpose. This software is provided "AS IS", and you, +its user, assume the entire risk as to its quality and accuracy. + +This software is copyright (C) 1991-2016, Thomas G. Lane, Guido Vollbeding. +All Rights Reserved except as specified below. + +Permission is hereby granted to use, copy, modify, and distribute this +software (or portions thereof) for any purpose, without fee, subject to these +conditions: +(1) If any part of the source code for this software is distributed, then this +README file must be included, with this copyright and no-warranty notice +unaltered; and any additions, deletions, or changes to the original files +must be clearly indicated in accompanying documentation. +(2) If only executable code is distributed, then the accompanying +documentation must state that "this software is based in part on the work of +the Independent JPEG Group". +(3) Permission for use of this software is granted only if the user accepts +full responsibility for any undesirable consequences; the authors accept +NO LIABILITY for damages of any kind. + +These conditions apply to any software derived from or based on the IJG code, +not just to the unmodified library. If you use our work, you ought to +acknowledge us. + +Permission is NOT granted for the use of any IJG author's name or company name +in advertising or publicity relating to this software or products derived from +it. This software may be referred to only as "the Independent JPEG Group's +software". + +We specifically permit and encourage the use of this software as the basis of +commercial products, provided that all warranty or liability claims are +assumed by the product vendor. + + +The Unix configuration script "configure" was produced with GNU Autoconf. +It is copyright by the Free Software Foundation but is freely distributable. +The same holds for its supporting scripts (config.guess, config.sub, +ltmain.sh). Another support script, install-sh, is copyright by X Consortium +but is also freely distributable. + +The IJG distribution formerly included code to read and write GIF files. +To avoid entanglement with the Unisys LZW patent (now expired), GIF reading +support has been removed altogether, and the GIF writer has been simplified +to produce "uncompressed GIFs". This technique does not use the LZW +algorithm; the resulting GIF files are larger than usual, but are readable +by all standard GIF decoders. + +We are required to state that + "The Graphics Interchange Format(c) is the Copyright property of + CompuServe Incorporated. GIF(sm) is a Service Mark property of + CompuServe Incorporated." + + +REFERENCES +========== + +We recommend reading one or more of these references before trying to +understand the innards of the JPEG software. + +The best short technical introduction to the JPEG compression algorithm is + Wallace, Gregory K. "The JPEG Still Picture Compression Standard", + Communications of the ACM, April 1991 (vol. 34 no. 4), pp. 30-44. +(Adjacent articles in that issue discuss MPEG motion picture compression, +applications of JPEG, and related topics.) If you don't have the CACM issue +handy, a PDF file containing a revised version of Wallace's article is +available at http://www.ijg.org/files/Wallace.JPEG.pdf. The file (actually +a preprint for an article that appeared in IEEE Trans. Consumer Electronics) +omits the sample images that appeared in CACM, but it includes corrections +and some added material. Note: the Wallace article is copyright ACM and IEEE, +and it may not be used for commercial purposes. + +A somewhat less technical, more leisurely introduction to JPEG can be found in +"The Data Compression Book" by Mark Nelson and Jean-loup Gailly, published by +M&T Books (New York), 2nd ed. 1996, ISBN 1-55851-434-1. This book provides +good explanations and example C code for a multitude of compression methods +including JPEG. It is an excellent source if you are comfortable reading C +code but don't know much about data compression in general. The book's JPEG +sample code is far from industrial-strength, but when you are ready to look +at a full implementation, you've got one here... + +The best currently available description of JPEG is the textbook "JPEG Still +Image Data Compression Standard" by William B. Pennebaker and Joan L. +Mitchell, published by Van Nostrand Reinhold, 1993, ISBN 0-442-01272-1. +Price US$59.95, 638 pp. The book includes the complete text of the ISO JPEG +standards (DIS 10918-1 and draft DIS 10918-2). + +The original JPEG standard is divided into two parts, Part 1 being the actual +specification, while Part 2 covers compliance testing methods. Part 1 is +titled "Digital Compression and Coding of Continuous-tone Still Images, +Part 1: Requirements and guidelines" and has document numbers ISO/IEC IS +10918-1, ITU-T T.81. Part 2 is titled "Digital Compression and Coding of +Continuous-tone Still Images, Part 2: Compliance testing" and has document +numbers ISO/IEC IS 10918-2, ITU-T T.83. + +The JPEG standard does not specify all details of an interchangeable file +format. For the omitted details we follow the "JFIF" conventions, revision +1.02. JFIF 1.02 has been adopted as an Ecma International Technical Report +and thus received a formal publication status. It is available as a free +download in PDF format from +http://www.ecma-international.org/publications/techreports/E-TR-098.htm. +A PostScript version of the JFIF document is available at +http://www.ijg.org/files/jfif.ps.gz. There is also a plain text version at +http://www.ijg.org/files/jfif.txt.gz, but it is missing the figures. + +The TIFF 6.0 file format specification can be obtained by FTP from +ftp://ftp.sgi.com/graphics/tiff/TIFF6.ps.gz. The JPEG incorporation scheme +found in the TIFF 6.0 spec of 3-June-92 has a number of serious problems. +IJG does not recommend use of the TIFF 6.0 design (TIFF Compression tag 6). +Instead, we recommend the JPEG design proposed by TIFF Technical Note #2 +(Compression tag 7). Copies of this Note can be obtained from +http://www.ijg.org/files/. It is expected that the next revision +of the TIFF spec will replace the 6.0 JPEG design with the Note's design. +Although IJG's own code does not support TIFF/JPEG, the free libtiff library +uses our library to implement TIFF/JPEG per the Note. + + +ARCHIVE LOCATIONS +================= + +The "official" archive site for this software is www.ijg.org. +The most recent released version can always be found there in +directory "files". + +The JPEG FAQ (Frequently Asked Questions) article is a source of some +general information about JPEG. +It is available on the World Wide Web at http://www.faqs.org/faqs/jpeg-faq/ +and other news.answers archive sites, including the official news.answers +archive at rtfm.mit.edu: ftp://rtfm.mit.edu/pub/usenet/news.answers/jpeg-faq/. +If you don't have Web or FTP access, send e-mail to mail-server@rtfm.mit.edu +with body + send usenet/news.answers/jpeg-faq/part1 + send usenet/news.answers/jpeg-faq/part2 + + +FILE FORMAT WARS +================ + +The ISO/IEC JTC1/SC29/WG1 standards committee (also known as JPEG, together +with ITU-T SG16) currently promotes different formats containing the name +"JPEG" which are incompatible with original DCT-based JPEG. IJG therefore does +not support these formats (see REFERENCES). Indeed, one of the original +reasons for developing this free software was to help force convergence on +common, interoperable format standards for JPEG files. +Don't use an incompatible file format! +(In any case, our decoder will remain capable of reading existing JPEG +image files indefinitely.) + + +TO DO +===== + +Please send bug reports, offers of help, etc. to jpeg-info@jpegclub.org. +-------------------------------------------------------------------------------- +libmicrohttpd +skia + +Copyright (c) 2011 Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libpng + +COPYRIGHT NOTICE, DISCLAIMER, and LICENSE +========================================= + +PNG Reference Library License version 2 +--------------------------------------- + +* Copyright (c) 1995-2019 The PNG Reference Library Authors. +* Copyright (c) 2018-2019 Cosmin Truta. +* Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson. +* Copyright (c) 1996-1997 Andreas Dilger. +* Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. + +The software is supplied "as is", without warranty of any kind, +express or implied, including, without limitation, the warranties +of merchantability, fitness for a particular purpose, title, and +non-infringement. In no event shall the Copyright owners, or +anyone distributing the software, be liable for any damages or +other liability, whether in contract, tort or otherwise, arising +from, out of, or in connection with the software, or the use or +other dealings in the software, even if advised of the possibility +of such damage. + +Permission is hereby granted to use, copy, modify, and distribute +this software, or portions hereof, for any purpose, without fee, +subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you + must not claim that you wrote the original software. If you + use this software in a product, an acknowledgment in the product + documentation would be appreciated, but is not required. + +2. Altered source versions must be plainly marked as such, and must + not be misrepresented as being the original software. + +3. This Copyright notice may not be removed or altered from any + source or altered source distribution. + + +PNG Reference Library License version 1 (for libpng 0.5 through 1.6.35) +----------------------------------------------------------------------- + +libpng versions 1.0.7, July 1, 2000, through 1.6.35, July 15, 2018 are +Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson, are +derived from libpng-1.0.6, and are distributed according to the same +disclaimer and license as libpng-1.0.6 with the following individuals +added to the list of Contributing Authors: + + Simon-Pierre Cadieux + Eric S. Raymond + Mans Rullgard + Cosmin Truta + Gilles Vollant + James Yu + Mandar Sahastrabuddhe + Google Inc. + Vadim Barkov + +and with the following additions to the disclaimer: + + There is no warranty against interference with your enjoyment of + the library or against infringement. There is no warranty that our + efforts or the library will fulfill any of your particular purposes + or needs. This library is provided with all faults, and the entire + risk of satisfactory quality, performance, accuracy, and effort is + with the user. + +Some files in the "contrib" directory and some configure-generated +files that are distributed with libpng have other copyright owners, and +are released under other open source licenses. + +libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are +Copyright (c) 1998-2000 Glenn Randers-Pehrson, are derived from +libpng-0.96, and are distributed according to the same disclaimer and +license as libpng-0.96, with the following individuals added to the +list of Contributing Authors: + + Tom Lane + Glenn Randers-Pehrson + Willem van Schaik + +libpng versions 0.89, June 1996, through 0.96, May 1997, are +Copyright (c) 1996-1997 Andreas Dilger, are derived from libpng-0.88, +and are distributed according to the same disclaimer and license as +libpng-0.88, with the following individuals added to the list of +Contributing Authors: + + John Bowler + Kevin Bracey + Sam Bushell + Magnus Holmgren + Greg Roelofs + Tom Tanner + +Some files in the "scripts" directory have other copyright owners, +but are released under this license. + +libpng versions 0.5, May 1995, through 0.88, January 1996, are +Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. + +For the purposes of this copyright and license, "Contributing Authors" +is defined as the following set of individuals: + + Andreas Dilger + Dave Martindale + Guy Eric Schalnat + Paul Schmidt + Tim Wegner + +The PNG Reference Library is supplied "AS IS". The Contributing +Authors and Group 42, Inc. disclaim all warranties, expressed or +implied, including, without limitation, the warranties of +merchantability and of fitness for any purpose. The Contributing +Authors and Group 42, Inc. assume no liability for direct, indirect, +incidental, special, exemplary, or consequential damages, which may +result from the use of the PNG Reference Library, even if advised of +the possibility of such damage. + +Permission is hereby granted to use, copy, modify, and distribute this +source code, or portions hereof, for any purpose, without fee, subject +to the following restrictions: + +1. The origin of this source code must not be misrepresented. + +2. Altered versions must be plainly marked as such and must not + be misrepresented as being the original source. + +3. This Copyright notice may not be removed or altered from any + source or altered source distribution. + +The Contributing Authors and Group 42, Inc. specifically permit, +without fee, and encourage the use of this source code as a component +to supporting the PNG file format in commercial products. If you use +this source code in a product, acknowledgment is not required but would +be appreciated. +-------------------------------------------------------------------------------- +libtess2 + +Copyright (C) [dates of first publication] Silicon Graphics, Inc. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice including the dates of first publication and either this +permission notice or a reference to http://oss.sgi.com/projects/FreeB/ shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, +INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL SILICON GRAPHICS, INC. +BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE +OR OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of Silicon Graphics, Inc. shall not +be used in advertising or otherwise to promote the sale, use or other dealings in +this Software without prior written authorization from Silicon Graphics, Inc. +-------------------------------------------------------------------------------- +libwebp + +Copyright (c) 2010, Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2010 Google Inc. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2011 Google Inc. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2012 Google Inc. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2013 Google Inc. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2014 Google Inc. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2015 Google Inc. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2016 Google Inc. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2017 Google Inc. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2018 Google Inc. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +lints + +Copyright 2021, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +material_color_utilities + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +-------------------------------------------------------------------------------- +meta + +Copyright 2016, the Dart project authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +perfetto + +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +Copyright (c) 2017, The Android Open Source Project + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +-------------------------------------------------------------------------------- +rapidjson + +Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip-> All rights reserved-> + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +rapidjson + +Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +rapidjson + +Copyright (c) 2006-2013 Alexander Chemeris + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + 3. Neither the name of the product nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED +WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +rapidjson + +The above software in this distribution may have been modified by +THL A29 Limited ("Tencent Modifications"). +All Tencent Modifications are Copyright (C) 2015 THL A29 Limited. +-------------------------------------------------------------------------------- +root_certificates + +Mozilla Public License Version 2.0 +================================== + +1. Definitions +-------------- + +1.1. "Contributor" + means each individual or legal entity that creates, contributes to + the creation of, or owns Covered Software. + +1.2. "Contributor Version" + means the combination of the Contributions of others (if any) used + by a Contributor and that particular Contributor's Contribution. + +1.3. "Contribution" + means Covered Software of a particular Contributor. + +1.4. "Covered Software" + means Source Code Form to which the initial Contributor has attached + the notice in Exhibit A, the Executable Form of such Source Code + Form, and Modifications of such Source Code Form, in each case + including portions thereof. + +1.5. "Incompatible With Secondary Licenses" + means + + (a) that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or + + (b) that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. + +1.6. "Executable Form" + means any form of the work other than Source Code Form. + +1.7. "Larger Work" + means a work that combines Covered Software with other material, in + a separate file or files, that is not Covered Software. + +1.8. "License" + means this document. + +1.9. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any and + all of the rights conveyed by this License. + +1.10. "Modifications" + means any of the following: + + (a) any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or + + (b) any new file in Source Code Form that contains any Covered + Software. + +1.11. "Patent Claims" of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, having + made, import, or transfer of either its Contributions or its + Contributor Version. + +1.12. "Secondary License" + means either the GNU General Public License, Version 2.0, the GNU + Lesser General Public License, Version 2.1, the GNU Affero General + Public License, Version 3.0, or any later versions of those + licenses. + +1.13. "Source Code Form" + means the form of the work preferred for making modifications. + +1.14. "You" (or "Your") + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that + controls, is controlled by, or is under common control with You. For + purposes of this definition, "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. + +2. License Grants and Conditions +-------------------------------- + +2.1. Grants + +Each Contributor hereby grants You a world-wide, royalty-free, +non-exclusive license: + +(a) under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and + +(b) under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + +2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. + +2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: + +(a) for any code that a Contributor has removed from Covered Software; + or + +(b) for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + +(c) under Patent Claims infringed by Covered Software in the absence of + its Contributions. + +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). + +2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). + +2.5. Representation + +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. + +2.6. Fair Use + +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. + +2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. + +3. Responsibilities +------------------- + +3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. + +3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + +(a) such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and + +(b) You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). + +3.4. Notices + +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. + +4. Inability to Comply Due to Statute or Regulation +--------------------------------------------------- + +If it is impossible for You to comply with any of the terms of this +License with respect to some or all of the Covered Software due to +statute, judicial order, or regulation then You must: (a) comply with +the terms of this License to the maximum extent possible; and (b) +describe the limitations and the code they affect. Such description must +be placed in a text file included with all distributions of the Covered +Software under this License. Except to the extent prohibited by statute +or regulation, such description must be sufficiently detailed for a +recipient of ordinary skill to be able to understand it. + +5. Termination +-------------- + +5.1. The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated (a) provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and (b) on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. + +************************************************************************ +* * +* 6. Disclaimer of Warranty * +* ------------------------- * +* * +* Covered Software is provided under this License on an "as is" * +* basis, without warranty of any kind, either expressed, implied, or * +* statutory, including, without limitation, warranties that the * +* Covered Software is free of defects, merchantable, fit for a * +* particular purpose or non-infringing. The entire risk as to the * +* quality and performance of the Covered Software is with You. * +* Should any Covered Software prove defective in any respect, You * +* (not any Contributor) assume the cost of any necessary servicing, * +* repair, or correction. This disclaimer of warranty constitutes an * +* essential part of this License. No use of any Covered Software is * +* authorized under this License except under this disclaimer. * +* * +************************************************************************ + +************************************************************************ +* * +* 7. Limitation of Liability * +* -------------------------- * +* * +* Under no circumstances and under no legal theory, whether tort * +* (including negligence), contract, or otherwise, shall any * +* Contributor, or anyone who distributes Covered Software as * +* permitted above, be liable to You for any direct, indirect, * +* special, incidental, or consequential damages of any character * +* including, without limitation, damages for lost profits, loss of * +* goodwill, work stoppage, computer failure or malfunction, or any * +* and all other commercial damages or losses, even if such party * +* shall have been informed of the possibility of such damages. This * +* limitation of liability shall not apply to liability for death or * +* personal injury resulting from such party's negligence to the * +* extent applicable law prohibits such limitation. Some * +* jurisdictions do not allow the exclusion or limitation of * +* incidental or consequential damages, so this exclusion and * +* limitation may not apply to You. * +* * +************************************************************************ + +8. Litigation +------------- + +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. + +9. Miscellaneous +---------------- + +This License represents the complete agreement concerning the subject +matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent +necessary to make it enforceable. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. + +10. Versions of the License +--------------------------- + +10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. + +10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. + +10.3. Modified Versions + +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary +Licenses + +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice +------------------------------------------- + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice +--------------------------------------------------------- + + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. + +You may obtain a copy of this library's Source Code Form from: https://dart.googlesource.com/root_certificates/+/692f6d6488af68e0121317a9c2c9eb393eb0ee50 + +-------------------------------------------------------------------------------- +skia + +Copyright (C) 2014 Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright (c) 2011 Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright (c) 2014 Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2005 The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2006 The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2006-2012 The Android Open Source Project +Copyright 2012 Mozilla Foundation + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2007 The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2008 Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2008 The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2009 The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2009-2015 Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2010 Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2010 The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2011 Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2011 Google Inc. +Copyright 2012 Mozilla Foundation + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2011 The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2012 Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2012 Google LLC + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2012 The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2013 Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2013 The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2014 Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2014 Google Inc. +Copyright 2017 ARM Ltd. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2014 The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2015 Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2015 The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2016 Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2016 Mozilla Foundation + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2016 The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2017 ARM Ltd. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2017 Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2018 Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2018 Google LLC + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2018 Google LLC. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2018 Google, LLC + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2018 The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 Google LLC + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 Google LLC. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 Google LLC. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 Google, LLC + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2020 Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2020 Google LLC + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2020 Google LLC. +-------------------------------------------------------------------------------- +skia + +Copyright 2020 Google LLC. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2020 Google, LLC + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2021 Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2021 Google LLC + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2021 Google LLC. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2021 Google, LLC + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2022 Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2022 Google LLC + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2022 Google LLC. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2022 Google, LLC + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2023 Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2023 Google LLC + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +skia + +Copyright 2023 The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +spirv-cross + +Copyright 2014-2016,2021 The Khronos Group, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +spring_animation + +Copyright (c) Meta Platforms, Inc. and affiliates. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +-------------------------------------------------------------------------------- +sqlite + +The source code for SQLite is in the public domain. No claim of +copyright is made on any part of the core source code. (The +documentation and test code is a different matter - some sections of +documentation and test logic are governed by open-source licenses.) +All contributors to the SQLite core software have signed affidavits +specifically disavowing any copyright interest in the code. This means +that anybody is able to legally do anything they want with the SQLite +source code. + +There are other SQL database engines with liberal licenses that allow +the code to be broadly and freely used. But those other engines are +still governed by copyright law. SQLite is different in that copyright +law simply does not apply. + +The source code files for other SQL database engines typically begin +with a comment describing your legal rights to view and copy that +file. The SQLite source code contains no license since it is not +governed by copyright. Instead of a license, the SQLite source code +offers a blessing: + +May you do good and not evil +May you find forgiveness for yourself and forgive others +May you share freely, never taking more than you give. +-------------------------------------------------------------------------------- +systeminfo + +Copyright (C) 2009 Apple Inc. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY +EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY +OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +tcmalloc + +Copyright (c) 2003, Google Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +tcmalloc + +Copyright (c) 2005, Google Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +vector_math + +Copyright 2015, Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Copyright (C) 2013 Andrew Magill + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (C) 2012-2020 Yann Collet + +BSD 2-Clause License (https://www.opensource.org/licenses/bsd-license.php) + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following disclaimer + in the documentation and/or other materials provided with the + distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +vulkan-validation-layers +vulkan_memory_allocator + +Copyright (c) 2017-2022 Advanced Micro Devices, Inc. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +-------------------------------------------------------------------------------- +vulkanmemoryallocator + +Copyright 2018 Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +web_locale_keymap + +Copyright (c) 2022 Google LLC + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +-------------------------------------------------------------------------------- +xxhash + +Copyright (C) 2012-2016, Yann Collet + +BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +* Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. +* Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +xxhash + +Copyright (C) 2012-2016, Yann Collet. + +BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +zlib + +Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +zlib + +Copyright (C) 1998-2005 Gilles Vollant +-------------------------------------------------------------------------------- +zlib + +Copyright (C) 2017 ARM, Inc. +Copyright 2017 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +zlib + +Copyright (c) 2022 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +zlib + +Copyright 2022 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +zlib + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +zlib + +version 1.2.12, March 27th, 2022 + +Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. diff --git a/example/assets/images/avatar.png b/assets/assets/images/avatar.png similarity index 100% rename from example/assets/images/avatar.png rename to assets/assets/images/avatar.png diff --git a/example/assets/images/dart.png b/assets/assets/images/dart.png similarity index 100% rename from example/assets/images/dart.png rename to assets/assets/images/dart.png diff --git a/example/assets/images/flutter.png b/assets/assets/images/flutter.png similarity index 100% rename from example/assets/images/flutter.png rename to assets/assets/images/flutter.png diff --git a/example/assets/images/love.png b/assets/assets/images/love.png similarity index 100% rename from example/assets/images/love.png rename to assets/assets/images/love.png diff --git a/assets/fonts/MaterialIcons-Regular.otf b/assets/fonts/MaterialIcons-Regular.otf new file mode 100644 index 0000000..ea6bdb6 Binary files /dev/null and b/assets/fonts/MaterialIcons-Regular.otf differ diff --git a/assets/shaders/ink_sparkle.frag b/assets/shaders/ink_sparkle.frag new file mode 100644 index 0000000..3591af4 --- /dev/null +++ b/assets/shaders/ink_sparkle.frag @@ -0,0 +1,160 @@ +{ + "sksl": "// This SkSL shader is autogenerated by spirv-cross.\n\nfloat4 flutter_FragCoord;\n\nuniform vec4 u_color;\nuniform float u_alpha;\nuniform vec4 u_sparkle_color;\nuniform float u_sparkle_alpha;\nuniform float u_blur;\nuniform vec2 u_center;\nuniform float u_radius_scale;\nuniform float u_max_radius;\nuniform vec2 u_resolution_scale;\nuniform vec2 u_noise_scale;\nuniform float u_noise_phase;\nuniform vec2 u_circle1;\nuniform vec2 u_circle2;\nuniform vec2 u_circle3;\nuniform vec2 u_rotation1;\nuniform vec2 u_rotation2;\nuniform vec2 u_rotation3;\n\nvec4 fragColor;\n\nvec2 FLT_flutter_local_FlutterFragCoord()\n{\n return flutter_FragCoord.xy;\n}\n\nmat2 FLT_flutter_local_rotate2d(vec2 rad)\n{\n return mat2(vec2(rad.x, -rad.y), vec2(rad.y, rad.x));\n}\n\nfloat FLT_flutter_local_soft_circle(vec2 uv, vec2 xy, float radius, float blur)\n{\n float blur_half = blur * 0.5;\n float d = distance(uv, xy);\n return 1.0 - smoothstep(1.0 - blur_half, 1.0 + blur_half, d / radius);\n}\n\nfloat FLT_flutter_local_circle_grid(vec2 resolution, inout vec2 p, vec2 xy, vec2 rotation, float cell_diameter)\n{\n vec2 param = rotation;\n p = (FLT_flutter_local_rotate2d(param) * (xy - p)) + xy;\n p = mod(p, vec2(cell_diameter)) / resolution;\n float cell_uv = (cell_diameter / resolution.y) * 0.5;\n float r = 0.64999997615814208984375 * cell_uv;\n vec2 param_1 = p;\n vec2 param_2 = vec2(cell_uv);\n float param_3 = r;\n float param_4 = r * 50.0;\n return FLT_flutter_local_soft_circle(param_1, param_2, param_3, param_4);\n}\n\nfloat FLT_flutter_local_turbulence(vec2 uv)\n{\n vec2 uv_scale = uv * vec2(0.800000011920928955078125);\n vec2 param = vec2(0.800000011920928955078125);\n vec2 param_1 = uv_scale;\n vec2 param_2 = u_circle1;\n vec2 param_3 = u_rotation1;\n float param_4 = 0.17000000178813934326171875;\n float _301 = FLT_flutter_local_circle_grid(param, param_1, param_2, param_3, param_4);\n float g1 = _301;\n vec2 param_5 = vec2(0.800000011920928955078125);\n vec2 param_6 = uv_scale;\n vec2 param_7 = u_circle2;\n vec2 param_8 = u_rotation2;\n float param_9 = 0.20000000298023223876953125;\n float _313 = FLT_flutter_local_circle_grid(param_5, param_6, param_7, param_8, param_9);\n float g2 = _313;\n vec2 param_10 = vec2(0.800000011920928955078125);\n vec2 param_11 = uv_scale;\n vec2 param_12 = u_circle3;\n vec2 param_13 = u_rotation3;\n float param_14 = 0.2750000059604644775390625;\n float _326 = FLT_flutter_local_circle_grid(param_10, param_11, param_12, param_13, param_14);\n float g3 = _326;\n float v = (((g1 * g1) + g2) - g3) * 0.5;\n return clamp(0.449999988079071044921875 + (0.800000011920928955078125 * v), 0.0, 1.0);\n}\n\nfloat FLT_flutter_local_soft_ring(vec2 uv, vec2 xy, float radius, float thickness, float blur)\n{\n vec2 param = uv;\n vec2 param_1 = xy;\n float param_2 = radius + thickness;\n float param_3 = blur;\n float circle_outer = FLT_flutter_local_soft_circle(param, param_1, param_2, param_3);\n vec2 param_4 = uv;\n vec2 param_5 = xy;\n float param_6 = max(radius - thickness, 0.0);\n float param_7 = blur;\n float circle_inner = FLT_flutter_local_soft_circle(param_4, param_5, param_6, param_7);\n return clamp(circle_outer - circle_inner, 0.0, 1.0);\n}\n\nfloat FLT_flutter_local_triangle_noise(inout vec2 n)\n{\n n = fract(n * vec2(5.398700237274169921875, 5.442100048065185546875));\n n += vec2(dot(n.yx, n + vec2(21.5351009368896484375, 14.3136997222900390625)));\n float xy = n.x * n.y;\n return (fract(xy * 95.43070220947265625) + fract(xy * 75.0496063232421875)) - 1.0;\n}\n\nfloat FLT_flutter_local_threshold(float v, float l, float h)\n{\n return step(l, v) * (1.0 - step(h, v));\n}\n\nfloat FLT_flutter_local_sparkle(vec2 uv, float t)\n{\n vec2 param = uv;\n float _224 = FLT_flutter_local_triangle_noise(param);\n float n = _224;\n float param_1 = n;\n float param_2 = 0.0;\n float param_3 = 0.0500000007450580596923828125;\n float s = FLT_flutter_local_threshold(param_1, param_2, param_3);\n float param_4 = n + sin(3.1415927410125732421875 * (t + 0.3499999940395355224609375));\n float param_5 = 0.100000001490116119384765625;\n float param_6 = 0.1500000059604644775390625;\n s += FLT_flutter_local_threshold(param_4, param_5, param_6);\n float param_7 = n + sin(3.1415927410125732421875 * (t + 0.699999988079071044921875));\n float param_8 = 0.20000000298023223876953125;\n float param_9 = 0.25;\n s += FLT_flutter_local_threshold(param_7, param_8, param_9);\n float param_10 = n + sin(3.1415927410125732421875 * (t + 1.0499999523162841796875));\n float param_11 = 0.300000011920928955078125;\n float param_12 = 0.3499999940395355224609375;\n s += FLT_flutter_local_threshold(param_10, param_11, param_12);\n return clamp(s, 0.0, 1.0) * 0.550000011920928955078125;\n}\n\nvoid FLT_main()\n{\n vec2 p = FLT_flutter_local_FlutterFragCoord();\n vec2 uv_1 = p * u_resolution_scale;\n vec2 density_uv = uv_1 - mod(p, u_noise_scale);\n float radius = u_max_radius * u_radius_scale;\n vec2 param_13 = uv_1;\n float turbulence = FLT_flutter_local_turbulence(param_13);\n vec2 param_14 = p;\n vec2 param_15 = u_center;\n float param_16 = radius;\n float param_17 = 0.0500000007450580596923828125 * u_max_radius;\n float param_18 = u_blur;\n float ring = FLT_flutter_local_soft_ring(param_14, param_15, param_16, param_17, param_18);\n vec2 param_19 = density_uv;\n float param_20 = u_noise_phase;\n float sparkle = ((FLT_flutter_local_sparkle(param_19, param_20) * ring) * turbulence) * u_sparkle_alpha;\n vec2 param_21 = p;\n vec2 param_22 = u_center;\n float param_23 = radius;\n float param_24 = u_blur;\n float wave_alpha = (FLT_flutter_local_soft_circle(param_21, param_22, param_23, param_24) * u_alpha) * u_color.w;\n vec4 wave_color = vec4(u_color.xyz * wave_alpha, wave_alpha);\n vec4 sparkle_color = vec4(u_sparkle_color.xyz * u_sparkle_color.w, u_sparkle_color.w);\n fragColor = mix(wave_color, sparkle_color, vec4(sparkle));\n}\n\nhalf4 main(float2 iFragCoord)\n{\n flutter_FragCoord = float4(iFragCoord, 0, 0);\n FLT_main();\n return fragColor;\n}\n", + "stage": 1, + "target_platform": 2, + "uniforms": [ + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 0, + "name": "u_color", + "rows": 4, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 1, + "name": "u_alpha", + "rows": 1, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 2, + "name": "u_sparkle_color", + "rows": 4, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 3, + "name": "u_sparkle_alpha", + "rows": 1, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 4, + "name": "u_blur", + "rows": 1, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 5, + "name": "u_center", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 6, + "name": "u_radius_scale", + "rows": 1, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 7, + "name": "u_max_radius", + "rows": 1, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 8, + "name": "u_resolution_scale", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 9, + "name": "u_noise_scale", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 10, + "name": "u_noise_phase", + "rows": 1, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 11, + "name": "u_circle1", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 12, + "name": "u_circle2", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 13, + "name": "u_circle3", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 14, + "name": "u_rotation1", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 15, + "name": "u_rotation2", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 16, + "name": "u_rotation3", + "rows": 2, + "type": 10 + } + ] +} \ No newline at end of file diff --git a/canvaskit/canvaskit.js b/canvaskit/canvaskit.js new file mode 100644 index 0000000..5134e64 --- /dev/null +++ b/canvaskit/canvaskit.js @@ -0,0 +1,224 @@ + +var CanvasKitInit = (() => { + var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined; + if (typeof __filename !== 'undefined') _scriptDir = _scriptDir || __filename; + return ( +function(CanvasKitInit) { + CanvasKitInit = CanvasKitInit || {}; + + +null;var r;r||(r=typeof CanvasKitInit !== 'undefined' ? CanvasKitInit : {});var aa=Object.assign,ba,ca;r.ready=new Promise(function(a,b){ba=a;ca=b}); +(function(a){a.Rd=a.Rd||[];a.Rd.push(function(){a.MakeSWCanvasSurface=function(b){var c=b;if("CANVAS"!==c.tagName&&(c=document.getElementById(b),!c))throw"Canvas with id "+b+" was not found";if(b=a.MakeSurface(c.width,c.height))b.pe=c;return b};a.MakeCanvasSurface||(a.MakeCanvasSurface=a.MakeSWCanvasSurface);a.MakeSurface=function(b,c){var e={width:b,height:c,colorType:a.ColorType.RGBA_8888,alphaType:a.AlphaType.Unpremul,colorSpace:a.ColorSpace.SRGB},f=b*c*4,k=a._malloc(f);if(e=a.Surface._makeRasterDirect(e, +k,4*b))e.pe=null,e.Ve=b,e.Se=c,e.Te=f,e.ze=k,e.getCanvas().clear(a.TRANSPARENT);return e};a.MakeRasterDirectSurface=function(b,c,e){return a.Surface._makeRasterDirect(b,c.byteOffset,e)};a.Surface.prototype.flush=function(b){a.Od(this.Nd);this._flush();if(this.pe){var c=new Uint8ClampedArray(a.HEAPU8.buffer,this.ze,this.Te);c=new ImageData(c,this.Ve,this.Se);b?this.pe.getContext("2d").putImageData(c,0,0,b[0],b[1],b[2]-b[0],b[3]-b[1]):this.pe.getContext("2d").putImageData(c,0,0)}};a.Surface.prototype.dispose= +function(){this.ze&&a._free(this.ze);this.delete()};a.Od=a.Od||function(){};a.qe=a.qe||function(){return null}})})(r); +(function(a){a.Rd=a.Rd||[];a.Rd.push(function(){function b(n,q,x){return n&&n.hasOwnProperty(q)?n[q]:x}function c(n){var q=ea(fa);fa[q]=n;return q}function e(n){return n.naturalHeight||n.videoHeight||n.displayHeight||n.height}function f(n){return n.naturalWidth||n.videoWidth||n.displayWidth||n.width}function k(n,q,x,y){n.bindTexture(n.TEXTURE_2D,q);y||x.alphaType!==a.AlphaType.Premul||n.pixelStorei(n.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!0);return q}function l(n,q,x){x||q.alphaType!==a.AlphaType.Premul|| +n.pixelStorei(n.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!1);n.bindTexture(n.TEXTURE_2D,null)}a.GetWebGLContext=function(n,q){if(!n)throw"null canvas passed into makeWebGLContext";var x={alpha:b(q,"alpha",1),depth:b(q,"depth",1),stencil:b(q,"stencil",8),antialias:b(q,"antialias",0),premultipliedAlpha:b(q,"premultipliedAlpha",1),preserveDrawingBuffer:b(q,"preserveDrawingBuffer",0),preferLowPowerToHighPerformance:b(q,"preferLowPowerToHighPerformance",0),failIfMajorPerformanceCaveat:b(q,"failIfMajorPerformanceCaveat", +0),enableExtensionsByDefault:b(q,"enableExtensionsByDefault",1),explicitSwapControl:b(q,"explicitSwapControl",0),renderViaOffscreenBackBuffer:b(q,"renderViaOffscreenBackBuffer",0)};x.majorVersion=q&&q.majorVersion?q.majorVersion:"undefined"!==typeof WebGL2RenderingContext?2:1;if(x.explicitSwapControl)throw"explicitSwapControl is not supported";n=ha(n,x);if(!n)return 0;ia(n);t.Zd.getExtension("WEBGL_debug_renderer_info");return n};a.deleteContext=function(n){t===ja[n]&&(t=null);"object"===typeof JSEvents&& +JSEvents.Nf(ja[n].Zd.canvas);ja[n]&&ja[n].Zd.canvas&&(ja[n].Zd.canvas.Qe=void 0);ja[n]=null};a._setTextureCleanup({deleteTexture:function(n,q){var x=fa[q];x&&ja[n].Zd.deleteTexture(x);fa[q]=null}});a.MakeWebGLContext=function(n){if(!this.Od(n))return null;var q=this._MakeGrContext();if(!q)return null;q.Nd=n;var x=q.delete.bind(q);q["delete"]=function(){a.Od(this.Nd);x()}.bind(q);return t.Ce=q};a.MakeGrContext=a.MakeWebGLContext;a.GrDirectContext.prototype.getResourceCacheLimitBytes=function(){a.Od(this.Nd); +this._getResourceCacheLimitBytes()};a.GrDirectContext.prototype.getResourceCacheUsageBytes=function(){a.Od(this.Nd);this._getResourceCacheUsageBytes()};a.GrDirectContext.prototype.releaseResourcesAndAbandonContext=function(){a.Od(this.Nd);this._releaseResourcesAndAbandonContext()};a.GrDirectContext.prototype.setResourceCacheLimitBytes=function(n){a.Od(this.Nd);this._setResourceCacheLimitBytes(n)};a.MakeOnScreenGLSurface=function(n,q,x,y,C,E){if(!this.Od(n.Nd))return null;q=void 0===C||void 0===E? +this._MakeOnScreenGLSurface(n,q,x,y):this._MakeOnScreenGLSurface(n,q,x,y,C,E);if(!q)return null;q.Nd=n.Nd;return q};a.MakeRenderTarget=function(){var n=arguments[0];if(!this.Od(n.Nd))return null;if(3===arguments.length){var q=this._MakeRenderTargetWH(n,arguments[1],arguments[2]);if(!q)return null}else if(2===arguments.length){if(q=this._MakeRenderTargetII(n,arguments[1]),!q)return null}else return null;q.Nd=n.Nd;return q};a.MakeWebGLCanvasSurface=function(n,q,x){q=q||null;var y=n,C="undefined"!== +typeof OffscreenCanvas&&y instanceof OffscreenCanvas;if(!("undefined"!==typeof HTMLCanvasElement&&y instanceof HTMLCanvasElement||C||(y=document.getElementById(n),y)))throw"Canvas with id "+n+" was not found";n=this.GetWebGLContext(y,x);if(!n||0>n)throw"failed to create webgl context: err "+n;n=this.MakeWebGLContext(n);q=this.MakeOnScreenGLSurface(n,y.width,y.height,q);return q?q:(q=y.cloneNode(!0),y.parentNode.replaceChild(q,y),q.classList.add("ck-replaced"),a.MakeSWCanvasSurface(q))};a.MakeCanvasSurface= +a.MakeWebGLCanvasSurface;a.Surface.prototype.makeImageFromTexture=function(n,q){a.Od(this.Nd);n=c(n);if(q=this._makeImageFromTexture(this.Nd,n,q))q.je=n;return q};a.Surface.prototype.makeImageFromTextureSource=function(n,q,x){q||(q={height:e(n),width:f(n),colorType:a.ColorType.RGBA_8888,alphaType:x?a.AlphaType.Premul:a.AlphaType.Unpremul});q.colorSpace||(q.colorSpace=a.ColorSpace.SRGB);a.Od(this.Nd);var y=t.Zd;x=k(y,y.createTexture(),q,x);2===t.version?y.texImage2D(y.TEXTURE_2D,0,y.RGBA,q.width,q.height, +0,y.RGBA,y.UNSIGNED_BYTE,n):y.texImage2D(y.TEXTURE_2D,0,y.RGBA,y.RGBA,y.UNSIGNED_BYTE,n);l(y,q);this._resetContext();return this.makeImageFromTexture(x,q)};a.Surface.prototype.updateTextureFromSource=function(n,q,x){if(n.je){a.Od(this.Nd);var y=n.getImageInfo(),C=t.Zd,E=k(C,fa[n.je],y,x);2===t.version?C.texImage2D(C.TEXTURE_2D,0,C.RGBA,f(q),e(q),0,C.RGBA,C.UNSIGNED_BYTE,q):C.texImage2D(C.TEXTURE_2D,0,C.RGBA,C.RGBA,C.UNSIGNED_BYTE,q);l(C,y,x);this._resetContext();fa[n.je]=null;n.je=c(E);y.colorSpace= +n.getColorSpace();q=this._makeImageFromTexture(this.Nd,n.je,y);x=n.Md.Pd;C=n.Md.Ud;n.Md.Pd=q.Md.Pd;n.Md.Ud=q.Md.Ud;q.Md.Pd=x;q.Md.Ud=C;q.delete();y.colorSpace.delete()}};a.MakeLazyImageFromTextureSource=function(n,q,x){q||(q={height:e(n),width:f(n),colorType:a.ColorType.RGBA_8888,alphaType:x?a.AlphaType.Premul:a.AlphaType.Unpremul});q.colorSpace||(q.colorSpace=a.ColorSpace.SRGB);var y={makeTexture:function(){var C=t,E=C.Zd,v=k(E,E.createTexture(),q,x);2===C.version?E.texImage2D(E.TEXTURE_2D,0,E.RGBA, +q.width,q.height,0,E.RGBA,E.UNSIGNED_BYTE,n):E.texImage2D(E.TEXTURE_2D,0,E.RGBA,E.RGBA,E.UNSIGNED_BYTE,n);l(E,q,x);return c(v)},freeSrc:function(){}};"VideoFrame"===n.constructor.name&&(y.freeSrc=function(){n.close()});return a.Image._makeFromGenerator(q,y)};a.Od=function(n){return n?ia(n):!1};a.qe=function(){return t&&t.Ce&&!t.Ce.isDeleted()?t.Ce:null}})})(r); +(function(a){function b(g){return(f(255*g[3])<<24|f(255*g[0])<<16|f(255*g[1])<<8|f(255*g[2])<<0)>>>0}function c(g){if(g&&g._ck)return g;if(g instanceof Float32Array){for(var d=Math.floor(g.length/4),h=new Uint32Array(d),m=0;mz;z++)a.HEAPF32[u+m]=g[w][z],m++;g=h}else g=M;d.Wd=g}else throw"Invalid argument to copyFlexibleColorArray, Not a color array "+typeof g;return d}function q(g){if(!g)return M;var d=R.toTypedArray();if(g.length){if(6===g.length||9===g.length)return l(g,"HEAPF32",I),6===g.length&&a.HEAPF32.set(od,6+I/4),I;if(16===g.length)return d[0]=g[0],d[1]=g[1],d[2]=g[3],d[3]=g[4],d[4]=g[5],d[5]=g[7],d[6]=g[12],d[7]=g[13],d[8]=g[15],I;throw"invalid matrix size";}if(void 0=== +g.m11)throw"invalid matrix argument";d[0]=g.m11;d[1]=g.m21;d[2]=g.m41;d[3]=g.m12;d[4]=g.m22;d[5]=g.m42;d[6]=g.m14;d[7]=g.m24;d[8]=g.m44;return I}function x(g){if(!g)return M;var d=da.toTypedArray();if(g.length){if(16!==g.length&&6!==g.length&&9!==g.length)throw"invalid matrix size";if(16===g.length)return l(g,"HEAPF32",Z);d.fill(0);d[0]=g[0];d[1]=g[1];d[3]=g[2];d[4]=g[3];d[5]=g[4];d[7]=g[5];d[10]=1;d[12]=g[6];d[13]=g[7];d[15]=g[8];6===g.length&&(d[12]=0,d[13]=0,d[15]=1);return Z}if(void 0===g.m11)throw"invalid matrix argument"; +d[0]=g.m11;d[1]=g.m21;d[2]=g.m31;d[3]=g.m41;d[4]=g.m12;d[5]=g.m22;d[6]=g.m32;d[7]=g.m42;d[8]=g.m13;d[9]=g.m23;d[10]=g.m33;d[11]=g.m43;d[12]=g.m14;d[13]=g.m24;d[14]=g.m34;d[15]=g.m44;return Z}function y(g,d){return l(g,"HEAPF32",d||ua)}function C(g,d,h,m){var u=Ma.toTypedArray();u[0]=g;u[1]=d;u[2]=h;u[3]=m;return ua}function E(g){for(var d=new Float32Array(4),h=0;4>h;h++)d[h]=a.HEAPF32[g/4+h];return d}function v(g,d){return l(g,"HEAPF32",d||V)}function D(g,d){return l(g,"HEAPF32",d||Gb)}a.Color=function(g, +d,h,m){void 0===m&&(m=1);return a.Color4f(f(g)/255,f(d)/255,f(h)/255,m)};a.ColorAsInt=function(g,d,h,m){void 0===m&&(m=255);return(f(m)<<24|f(g)<<16|f(d)<<8|f(h)<<0&268435455)>>>0};a.Color4f=function(g,d,h,m){void 0===m&&(m=1);return Float32Array.of(g,d,h,m)};Object.defineProperty(a,"TRANSPARENT",{get:function(){return a.Color4f(0,0,0,0)}});Object.defineProperty(a,"BLACK",{get:function(){return a.Color4f(0,0,0,1)}});Object.defineProperty(a,"WHITE",{get:function(){return a.Color4f(1,1,1,1)}});Object.defineProperty(a, +"RED",{get:function(){return a.Color4f(1,0,0,1)}});Object.defineProperty(a,"GREEN",{get:function(){return a.Color4f(0,1,0,1)}});Object.defineProperty(a,"BLUE",{get:function(){return a.Color4f(0,0,1,1)}});Object.defineProperty(a,"YELLOW",{get:function(){return a.Color4f(1,1,0,1)}});Object.defineProperty(a,"CYAN",{get:function(){return a.Color4f(0,1,1,1)}});Object.defineProperty(a,"MAGENTA",{get:function(){return a.Color4f(1,0,1,1)}});a.getColorComponents=function(g){return[Math.floor(255*g[0]),Math.floor(255* +g[1]),Math.floor(255*g[2]),g[3]]};a.parseColorString=function(g,d){g=g.toLowerCase();if(g.startsWith("#")){d=255;switch(g.length){case 9:d=parseInt(g.slice(7,9),16);case 7:var h=parseInt(g.slice(1,3),16);var m=parseInt(g.slice(3,5),16);var u=parseInt(g.slice(5,7),16);break;case 5:d=17*parseInt(g.slice(4,5),16);case 4:h=17*parseInt(g.slice(1,2),16),m=17*parseInt(g.slice(2,3),16),u=17*parseInt(g.slice(3,4),16)}return a.Color(h,m,u,d/255)}return g.startsWith("rgba")?(g=g.slice(5,-1),g=g.split(","),a.Color(+g[0], ++g[1],+g[2],e(g[3]))):g.startsWith("rgb")?(g=g.slice(4,-1),g=g.split(","),a.Color(+g[0],+g[1],+g[2],e(g[3]))):g.startsWith("gray(")||g.startsWith("hsl")||!d||(g=d[g],void 0===g)?a.BLACK:g};a.multiplyByAlpha=function(g,d){g=g.slice();g[3]=Math.max(0,Math.min(g[3]*d,1));return g};a.Malloc=function(g,d){var h=a._malloc(d*g.BYTES_PER_ELEMENT);return{_ck:!0,length:d,byteOffset:h,ce:null,subarray:function(m,u){m=this.toTypedArray().subarray(m,u);m._ck=!0;return m},toTypedArray:function(){if(this.ce&&this.ce.length)return this.ce; +this.ce=new g(a.HEAPU8.buffer,h,d);this.ce._ck=!0;return this.ce}}};a.Free=function(g){a._free(g.byteOffset);g.byteOffset=M;g.toTypedArray=null;g.ce=null};var I=M,R,Z=M,da,ua=M,Ma,va,V=M,pc,Ba=M,qc,Hb=M,rc,Ib=M,Jb,gb=M,sc,Gb=M,tc,uc=M,od=Float32Array.of(0,0,1),M=0;a.onRuntimeInitialized=function(){function g(d,h,m,u,w,z,F){z||(z=4*u.width,u.colorType===a.ColorType.RGBA_F16?z*=2:u.colorType===a.ColorType.RGBA_F32&&(z*=4));var K=z*u.height;var H=w?w.byteOffset:a._malloc(K);if(F?!d._readPixels(u,H,z, +h,m,F):!d._readPixels(u,H,z,h,m))return w||a._free(H),null;if(w)return w.toTypedArray();switch(u.colorType){case a.ColorType.RGBA_8888:case a.ColorType.RGBA_F16:d=(new Uint8Array(a.HEAPU8.buffer,H,K)).slice();break;case a.ColorType.RGBA_F32:d=(new Float32Array(a.HEAPU8.buffer,H,K)).slice();break;default:return null}a._free(H);return d}Ma=a.Malloc(Float32Array,4);ua=Ma.byteOffset;da=a.Malloc(Float32Array,16);Z=da.byteOffset;R=a.Malloc(Float32Array,9);I=R.byteOffset;sc=a.Malloc(Float32Array,12);Gb= +sc.byteOffset;tc=a.Malloc(Float32Array,12);uc=tc.byteOffset;va=a.Malloc(Float32Array,4);V=va.byteOffset;pc=a.Malloc(Float32Array,4);Ba=pc.byteOffset;qc=a.Malloc(Float32Array,3);Hb=qc.byteOffset;rc=a.Malloc(Float32Array,3);Ib=rc.byteOffset;Jb=a.Malloc(Int32Array,4);gb=Jb.byteOffset;a.ColorSpace.SRGB=a.ColorSpace._MakeSRGB();a.ColorSpace.DISPLAY_P3=a.ColorSpace._MakeDisplayP3();a.ColorSpace.ADOBE_RGB=a.ColorSpace._MakeAdobeRGB();a.GlyphRunFlags={IsWhiteSpace:a._GlyphRunFlags_isWhiteSpace};a.Path.MakeFromCmds= +function(d){var h=l(d,"HEAPF32"),m=a.Path._MakeFromCmds(h,d.length);k(h,d);return m};a.Path.MakeFromVerbsPointsWeights=function(d,h,m){var u=l(d,"HEAPU8"),w=l(h,"HEAPF32"),z=l(m,"HEAPF32"),F=a.Path._MakeFromVerbsPointsWeights(u,d.length,w,h.length,z,m&&m.length||0);k(u,d);k(w,h);k(z,m);return F};a.Path.prototype.addArc=function(d,h,m){d=v(d);this._addArc(d,h,m);return this};a.Path.prototype.addCircle=function(d,h,m,u){this._addCircle(d,h,m,!!u);return this};a.Path.prototype.addOval=function(d,h,m){void 0=== +m&&(m=1);d=v(d);this._addOval(d,!!h,m);return this};a.Path.prototype.addPath=function(){var d=Array.prototype.slice.call(arguments),h=d[0],m=!1;"boolean"===typeof d[d.length-1]&&(m=d.pop());if(1===d.length)this._addPath(h,1,0,0,0,1,0,0,0,1,m);else if(2===d.length)d=d[1],this._addPath(h,d[0],d[1],d[2],d[3],d[4],d[5],d[6]||0,d[7]||0,d[8]||1,m);else if(7===d.length||10===d.length)this._addPath(h,d[1],d[2],d[3],d[4],d[5],d[6],d[7]||0,d[8]||0,d[9]||1,m);else return null;return this};a.Path.prototype.addPoly= +function(d,h){var m=l(d,"HEAPF32");this._addPoly(m,d.length/2,h);k(m,d);return this};a.Path.prototype.addRect=function(d,h){d=v(d);this._addRect(d,!!h);return this};a.Path.prototype.addRRect=function(d,h){d=D(d);this._addRRect(d,!!h);return this};a.Path.prototype.addVerbsPointsWeights=function(d,h,m){var u=l(d,"HEAPU8"),w=l(h,"HEAPF32"),z=l(m,"HEAPF32");this._addVerbsPointsWeights(u,d.length,w,h.length,z,m&&m.length||0);k(u,d);k(w,h);k(z,m)};a.Path.prototype.arc=function(d,h,m,u,w,z){d=a.LTRBRect(d- +m,h-m,d+m,h+m);w=(w-u)/Math.PI*180-360*!!z;z=new a.Path;z.addArc(d,u/Math.PI*180,w);this.addPath(z,!0);z.delete();return this};a.Path.prototype.arcToOval=function(d,h,m,u){d=v(d);this._arcToOval(d,h,m,u);return this};a.Path.prototype.arcToRotated=function(d,h,m,u,w,z,F){this._arcToRotated(d,h,m,!!u,!!w,z,F);return this};a.Path.prototype.arcToTangent=function(d,h,m,u,w){this._arcToTangent(d,h,m,u,w);return this};a.Path.prototype.close=function(){this._close();return this};a.Path.prototype.conicTo= +function(d,h,m,u,w){this._conicTo(d,h,m,u,w);return this};a.Path.prototype.computeTightBounds=function(d){this._computeTightBounds(V);var h=va.toTypedArray();return d?(d.set(h),d):h.slice()};a.Path.prototype.cubicTo=function(d,h,m,u,w,z){this._cubicTo(d,h,m,u,w,z);return this};a.Path.prototype.dash=function(d,h,m){return this._dash(d,h,m)?this:null};a.Path.prototype.getBounds=function(d){this._getBounds(V);var h=va.toTypedArray();return d?(d.set(h),d):h.slice()};a.Path.prototype.lineTo=function(d, +h){this._lineTo(d,h);return this};a.Path.prototype.moveTo=function(d,h){this._moveTo(d,h);return this};a.Path.prototype.offset=function(d,h){this._transform(1,0,d,0,1,h,0,0,1);return this};a.Path.prototype.quadTo=function(d,h,m,u){this._quadTo(d,h,m,u);return this};a.Path.prototype.rArcTo=function(d,h,m,u,w,z,F){this._rArcTo(d,h,m,u,w,z,F);return this};a.Path.prototype.rConicTo=function(d,h,m,u,w){this._rConicTo(d,h,m,u,w);return this};a.Path.prototype.rCubicTo=function(d,h,m,u,w,z){this._rCubicTo(d, +h,m,u,w,z);return this};a.Path.prototype.rLineTo=function(d,h){this._rLineTo(d,h);return this};a.Path.prototype.rMoveTo=function(d,h){this._rMoveTo(d,h);return this};a.Path.prototype.rQuadTo=function(d,h,m,u){this._rQuadTo(d,h,m,u);return this};a.Path.prototype.stroke=function(d){d=d||{};d.width=d.width||1;d.miter_limit=d.miter_limit||4;d.cap=d.cap||a.StrokeCap.Butt;d.join=d.join||a.StrokeJoin.Miter;d.precision=d.precision||1;return this._stroke(d)?this:null};a.Path.prototype.transform=function(){if(1=== +arguments.length){var d=arguments[0];this._transform(d[0],d[1],d[2],d[3],d[4],d[5],d[6]||0,d[7]||0,d[8]||1)}else if(6===arguments.length||9===arguments.length)d=arguments,this._transform(d[0],d[1],d[2],d[3],d[4],d[5],d[6]||0,d[7]||0,d[8]||1);else throw"transform expected to take 1 or 9 arguments. Got "+arguments.length;return this};a.Path.prototype.trim=function(d,h,m){return this._trim(d,h,!!m)?this:null};a.Image.prototype.encodeToBytes=function(d,h){var m=a.qe();d=d||a.ImageFormat.PNG;h=h||100; +return m?this._encodeToBytes(d,h,m):this._encodeToBytes(d,h)};a.Image.prototype.makeShaderCubic=function(d,h,m,u,w){w=q(w);return this._makeShaderCubic(d,h,m,u,w)};a.Image.prototype.makeShaderOptions=function(d,h,m,u,w){w=q(w);return this._makeShaderOptions(d,h,m,u,w)};a.Image.prototype.readPixels=function(d,h,m,u,w){var z=a.qe();return g(this,d,h,m,u,w,z)};a.Canvas.prototype.clear=function(d){a.Od(this.Nd);d=y(d);this._clear(d)};a.Canvas.prototype.clipRRect=function(d,h,m){a.Od(this.Nd);d=D(d);this._clipRRect(d, +h,m)};a.Canvas.prototype.clipRect=function(d,h,m){a.Od(this.Nd);d=v(d);this._clipRect(d,h,m)};a.Canvas.prototype.concat=function(d){a.Od(this.Nd);d=x(d);this._concat(d)};a.Canvas.prototype.drawArc=function(d,h,m,u,w){a.Od(this.Nd);d=v(d);this._drawArc(d,h,m,u,w)};a.Canvas.prototype.drawAtlas=function(d,h,m,u,w,z,F){if(d&&u&&h&&m&&h.length===m.length){a.Od(this.Nd);w||(w=a.BlendMode.SrcOver);var K=l(h,"HEAPF32"),H=l(m,"HEAPF32"),S=m.length/4,p=l(c(z),"HEAPU32");if(F&&"B"in F&&"C"in F)this._drawAtlasCubic(d, +H,K,p,S,w,F.B,F.C,u);else{let A=a.FilterMode.Linear,L=a.MipmapMode.None;F&&(A=F.filter,"mipmap"in F&&(L=F.mipmap));this._drawAtlasOptions(d,H,K,p,S,w,A,L,u)}k(K,h);k(H,m);k(p,z)}};a.Canvas.prototype.drawCircle=function(d,h,m,u){a.Od(this.Nd);this._drawCircle(d,h,m,u)};a.Canvas.prototype.drawColor=function(d,h){a.Od(this.Nd);d=y(d);void 0!==h?this._drawColor(d,h):this._drawColor(d)};a.Canvas.prototype.drawColorInt=function(d,h){a.Od(this.Nd);this._drawColorInt(d,h||a.BlendMode.SrcOver)};a.Canvas.prototype.drawColorComponents= +function(d,h,m,u,w){a.Od(this.Nd);d=C(d,h,m,u);void 0!==w?this._drawColor(d,w):this._drawColor(d)};a.Canvas.prototype.drawDRRect=function(d,h,m){a.Od(this.Nd);d=D(d,Gb);h=D(h,uc);this._drawDRRect(d,h,m)};a.Canvas.prototype.drawImage=function(d,h,m,u){a.Od(this.Nd);this._drawImage(d,h,m,u||null)};a.Canvas.prototype.drawImageCubic=function(d,h,m,u,w,z){a.Od(this.Nd);this._drawImageCubic(d,h,m,u,w,z||null)};a.Canvas.prototype.drawImageOptions=function(d,h,m,u,w,z){a.Od(this.Nd);this._drawImageOptions(d, +h,m,u,w,z||null)};a.Canvas.prototype.drawImageNine=function(d,h,m,u,w){a.Od(this.Nd);h=l(h,"HEAP32",gb);m=v(m);this._drawImageNine(d,h,m,u,w||null)};a.Canvas.prototype.drawImageRect=function(d,h,m,u,w){a.Od(this.Nd);v(h,V);v(m,Ba);this._drawImageRect(d,V,Ba,u,!!w)};a.Canvas.prototype.drawImageRectCubic=function(d,h,m,u,w,z){a.Od(this.Nd);v(h,V);v(m,Ba);this._drawImageRectCubic(d,V,Ba,u,w,z||null)};a.Canvas.prototype.drawImageRectOptions=function(d,h,m,u,w,z){a.Od(this.Nd);v(h,V);v(m,Ba);this._drawImageRectOptions(d, +V,Ba,u,w,z||null)};a.Canvas.prototype.drawLine=function(d,h,m,u,w){a.Od(this.Nd);this._drawLine(d,h,m,u,w)};a.Canvas.prototype.drawOval=function(d,h){a.Od(this.Nd);d=v(d);this._drawOval(d,h)};a.Canvas.prototype.drawPaint=function(d){a.Od(this.Nd);this._drawPaint(d)};a.Canvas.prototype.drawParagraph=function(d,h,m){a.Od(this.Nd);this._drawParagraph(d,h,m)};a.Canvas.prototype.drawPatch=function(d,h,m,u,w){if(24>d.length)throw"Need 12 cubic points";if(h&&4>h.length)throw"Need 4 colors";if(m&&8>m.length)throw"Need 4 shader coordinates"; +a.Od(this.Nd);const z=l(d,"HEAPF32"),F=h?l(c(h),"HEAPU32"):M,K=m?l(m,"HEAPF32"):M;u||(u=a.BlendMode.Modulate);this._drawPatch(z,F,K,u,w);k(K,m);k(F,h);k(z,d)};a.Canvas.prototype.drawPath=function(d,h){a.Od(this.Nd);this._drawPath(d,h)};a.Canvas.prototype.drawPicture=function(d){a.Od(this.Nd);this._drawPicture(d)};a.Canvas.prototype.drawPoints=function(d,h,m){a.Od(this.Nd);var u=l(h,"HEAPF32");this._drawPoints(d,u,h.length/2,m);k(u,h)};a.Canvas.prototype.drawRRect=function(d,h){a.Od(this.Nd);d=D(d); +this._drawRRect(d,h)};a.Canvas.prototype.drawRect=function(d,h){a.Od(this.Nd);d=v(d);this._drawRect(d,h)};a.Canvas.prototype.drawRect4f=function(d,h,m,u,w){a.Od(this.Nd);this._drawRect4f(d,h,m,u,w)};a.Canvas.prototype.drawShadow=function(d,h,m,u,w,z,F){a.Od(this.Nd);var K=l(w,"HEAPF32"),H=l(z,"HEAPF32");h=l(h,"HEAPF32",Hb);m=l(m,"HEAPF32",Ib);this._drawShadow(d,h,m,u,K,H,F);k(K,w);k(H,z)};a.getShadowLocalBounds=function(d,h,m,u,w,z,F){d=q(d);m=l(m,"HEAPF32",Hb);u=l(u,"HEAPF32",Ib);if(!this._getShadowLocalBounds(d, +h,m,u,w,z,V))return null;h=va.toTypedArray();return F?(F.set(h),F):h.slice()};a.Canvas.prototype.drawTextBlob=function(d,h,m,u){a.Od(this.Nd);this._drawTextBlob(d,h,m,u)};a.Canvas.prototype.drawVertices=function(d,h,m){a.Od(this.Nd);this._drawVertices(d,h,m)};a.Canvas.prototype.getDeviceClipBounds=function(d){this._getDeviceClipBounds(gb);var h=Jb.toTypedArray();d?d.set(h):d=h.slice();return d};a.Canvas.prototype.getLocalToDevice=function(){this._getLocalToDevice(Z);for(var d=Z,h=Array(16),m=0;16> +m;m++)h[m]=a.HEAPF32[d/4+m];return h};a.Canvas.prototype.getTotalMatrix=function(){this._getTotalMatrix(I);for(var d=Array(9),h=0;9>h;h++)d[h]=a.HEAPF32[I/4+h];return d};a.Canvas.prototype.makeSurface=function(d){d=this._makeSurface(d);d.Nd=this.Nd;return d};a.Canvas.prototype.readPixels=function(d,h,m,u,w){a.Od(this.Nd);return g(this,d,h,m,u,w)};a.Canvas.prototype.saveLayer=function(d,h,m,u){h=v(h);return this._saveLayer(d||null,h,m||null,u||0)};a.Canvas.prototype.writePixels=function(d,h,m,u,w, +z,F,K){if(d.byteLength%(h*m))throw"pixels length must be a multiple of the srcWidth * srcHeight";a.Od(this.Nd);var H=d.byteLength/(h*m);z=z||a.AlphaType.Unpremul;F=F||a.ColorType.RGBA_8888;K=K||a.ColorSpace.SRGB;var S=H*h;H=l(d,"HEAPU8");h=this._writePixels({width:h,height:m,colorType:F,alphaType:z,colorSpace:K},H,S,u,w);k(H,d);return h};a.ColorFilter.MakeBlend=function(d,h,m){d=y(d);m=m||a.ColorSpace.SRGB;return a.ColorFilter._MakeBlend(d,h,m)};a.ColorFilter.MakeMatrix=function(d){if(!d||20!==d.length)throw"invalid color matrix"; +var h=l(d,"HEAPF32"),m=a.ColorFilter._makeMatrix(h);k(h,d);return m};a.ContourMeasure.prototype.getPosTan=function(d,h){this._getPosTan(d,V);d=va.toTypedArray();return h?(h.set(d),h):d.slice()};a.ImageFilter.MakeDropShadow=function(d,h,m,u,w,z){w=y(w,ua);return a.ImageFilter._MakeDropShadow(d,h,m,u,w,z)};a.ImageFilter.MakeDropShadowOnly=function(d,h,m,u,w,z){w=y(w,ua);return a.ImageFilter._MakeDropShadowOnly(d,h,m,u,w,z)};a.ImageFilter.MakeImage=function(d,h,m,u){m=v(m,V);u=v(u,Ba);if("B"in h&&"C"in +h)return a.ImageFilter._MakeImageCubic(d,h.B,h.C,m,u);const w=h.filter;let z=a.MipmapMode.None;"mipmap"in h&&(z=h.mipmap);return a.ImageFilter._MakeImageOptions(d,w,z,m,u)};a.ImageFilter.MakeMatrixTransform=function(d,h,m){d=q(d);if("B"in h&&"C"in h)return a.ImageFilter._MakeMatrixTransformCubic(d,h.B,h.C,m);const u=h.filter;let w=a.MipmapMode.None;"mipmap"in h&&(w=h.mipmap);return a.ImageFilter._MakeMatrixTransformOptions(d,u,w,m)};a.Paint.prototype.getColor=function(){this._getColor(ua);return E(ua)}; +a.Paint.prototype.setColor=function(d,h){h=h||null;d=y(d);this._setColor(d,h)};a.Paint.prototype.setColorComponents=function(d,h,m,u,w){w=w||null;d=C(d,h,m,u);this._setColor(d,w)};a.Path.prototype.getPoint=function(d,h){this._getPoint(d,V);d=va.toTypedArray();return h?(h[0]=d[0],h[1]=d[1],h):d.slice(0,2)};a.Picture.prototype.makeShader=function(d,h,m,u,w){u=q(u);w=v(w);return this._makeShader(d,h,m,u,w)};a.PictureRecorder.prototype.beginRecording=function(d){d=v(d);return this._beginRecording(d)}; +a.Surface.prototype.getCanvas=function(){var d=this._getCanvas();d.Nd=this.Nd;return d};a.Surface.prototype.makeImageSnapshot=function(d){a.Od(this.Nd);d=l(d,"HEAP32",gb);return this._makeImageSnapshot(d)};a.Surface.prototype.makeSurface=function(d){a.Od(this.Nd);d=this._makeSurface(d);d.Nd=this.Nd;return d};a.Surface.prototype.Ue=function(d,h){this.ie||(this.ie=this.getCanvas());return requestAnimationFrame(function(){a.Od(this.Nd);d(this.ie);this.flush(h)}.bind(this))};a.Surface.prototype.requestAnimationFrame|| +(a.Surface.prototype.requestAnimationFrame=a.Surface.prototype.Ue);a.Surface.prototype.Re=function(d,h){this.ie||(this.ie=this.getCanvas());requestAnimationFrame(function(){a.Od(this.Nd);d(this.ie);this.flush(h);this.dispose()}.bind(this))};a.Surface.prototype.drawOnce||(a.Surface.prototype.drawOnce=a.Surface.prototype.Re);a.PathEffect.MakeDash=function(d,h){h||(h=0);if(!d.length||1===d.length%2)throw"Intervals array must have even length";var m=l(d,"HEAPF32");h=a.PathEffect._MakeDash(m,d.length, +h);k(m,d);return h};a.PathEffect.MakeLine2D=function(d,h){h=q(h);return a.PathEffect._MakeLine2D(d,h)};a.PathEffect.MakePath2D=function(d,h){d=q(d);return a.PathEffect._MakePath2D(d,h)};a.Shader.MakeColor=function(d,h){h=h||null;d=y(d);return a.Shader._MakeColor(d,h)};a.Shader.Blend=a.Shader.MakeBlend;a.Shader.Color=a.Shader.MakeColor;a.Shader.MakeLinearGradient=function(d,h,m,u,w,z,F,K){K=K||null;var H=n(m),S=l(u,"HEAPF32");F=F||0;z=q(z);var p=va.toTypedArray();p.set(d);p.set(h,2);d=a.Shader._MakeLinearGradient(V, +H.Wd,H.ke,S,H.count,w,F,z,K);k(H.Wd,m);u&&k(S,u);return d};a.Shader.MakeRadialGradient=function(d,h,m,u,w,z,F,K){K=K||null;var H=n(m),S=l(u,"HEAPF32");F=F||0;z=q(z);d=a.Shader._MakeRadialGradient(d[0],d[1],h,H.Wd,H.ke,S,H.count,w,F,z,K);k(H.Wd,m);u&&k(S,u);return d};a.Shader.MakeSweepGradient=function(d,h,m,u,w,z,F,K,H,S){S=S||null;var p=n(m),A=l(u,"HEAPF32");F=F||0;K=K||0;H=H||360;z=q(z);d=a.Shader._MakeSweepGradient(d,h,p.Wd,p.ke,A,p.count,w,K,H,F,z,S);k(p.Wd,m);u&&k(A,u);return d};a.Shader.MakeTwoPointConicalGradient= +function(d,h,m,u,w,z,F,K,H,S){S=S||null;var p=n(w),A=l(z,"HEAPF32");H=H||0;K=q(K);var L=va.toTypedArray();L.set(d);L.set(m,2);d=a.Shader._MakeTwoPointConicalGradient(V,h,u,p.Wd,p.ke,A,p.count,F,H,K,S);k(p.Wd,w);z&&k(A,z);return d};a.Vertices.prototype.bounds=function(d){this._bounds(V);var h=va.toTypedArray();return d?(d.set(h),d):h.slice()};a.Rd&&a.Rd.forEach(function(d){d()})};a.computeTonalColors=function(g){var d=l(g.ambient,"HEAPF32"),h=l(g.spot,"HEAPF32");this._computeTonalColors(d,h);var m= +{ambient:E(d),spot:E(h)};k(d,g.ambient);k(h,g.spot);return m};a.LTRBRect=function(g,d,h,m){return Float32Array.of(g,d,h,m)};a.XYWHRect=function(g,d,h,m){return Float32Array.of(g,d,g+h,d+m)};a.LTRBiRect=function(g,d,h,m){return Int32Array.of(g,d,h,m)};a.XYWHiRect=function(g,d,h,m){return Int32Array.of(g,d,g+h,d+m)};a.RRectXY=function(g,d,h){return Float32Array.of(g[0],g[1],g[2],g[3],d,h,d,h,d,h,d,h)};a.MakeAnimatedImageFromEncoded=function(g){g=new Uint8Array(g);var d=a._malloc(g.byteLength);a.HEAPU8.set(g, +d);return(g=a._decodeAnimatedImage(d,g.byteLength))?g:null};a.MakeImageFromEncoded=function(g){g=new Uint8Array(g);var d=a._malloc(g.byteLength);a.HEAPU8.set(g,d);return(g=a._decodeImage(d,g.byteLength))?g:null};var Ra=null;a.MakeImageFromCanvasImageSource=function(g){var d=g.width,h=g.height;Ra||(Ra=document.createElement("canvas"));Ra.width=d;Ra.height=h;var m=Ra.getContext("2d",{Pf:!0});m.drawImage(g,0,0);g=m.getImageData(0,0,d,h);return a.MakeImage({width:d,height:h,alphaType:a.AlphaType.Unpremul, +colorType:a.ColorType.RGBA_8888,colorSpace:a.ColorSpace.SRGB},g.data,4*d)};a.MakeImage=function(g,d,h){var m=a._malloc(d.length);a.HEAPU8.set(d,m);return a._MakeImage(g,m,d.length,h)};a.MakeVertices=function(g,d,h,m,u,w){var z=u&&u.length||0,F=0;h&&h.length&&(F|=1);m&&m.length&&(F|=2);void 0===w||w||(F|=4);g=new a._VerticesBuilder(g,d.length/2,z,F);l(d,"HEAPF32",g.positions());g.texCoords()&&l(h,"HEAPF32",g.texCoords());g.colors()&&l(c(m),"HEAPU32",g.colors());g.indices()&&l(u,"HEAPU16",g.indices()); +return g.detach()};(function(g){g.Rd=g.Rd||[];g.Rd.push(function(){function d(p){if(!p||!p.length)return[];for(var A=[],L=0;Ld)return a._free(g),null;u=new Uint16Array(a.HEAPU8.buffer,g,d);if(h)return h.set(u),a._free(g),h;h=Uint16Array.from(u);a._free(g);return h};a.Font.prototype.getGlyphIntercepts=function(g,d,h,m){var u=l(g,"HEAPU16"),w=l(d,"HEAPF32");return this._getGlyphIntercepts(u,g.length,!(g&&g._ck),w,d.length,!(d&&d._ck),h,m)};a.Font.prototype.getGlyphWidths=function(g,d,h){var m=l(g,"HEAPU16"),u=a._malloc(4* +g.length);this._getGlyphWidthBounds(m,g.length,u,M,d||null);d=new Float32Array(a.HEAPU8.buffer,u,g.length);k(m,g);if(h)return h.set(d),a._free(u),h;g=Float32Array.from(d);a._free(u);return g};a.FontMgr.FromData=function(){if(!arguments.length)return null;var g=arguments;1===g.length&&Array.isArray(g[0])&&(g=arguments[0]);if(!g.length)return null;for(var d=[],h=[],m=0;md)return a._free(g),null;u=new Uint16Array(a.HEAPU8.buffer,g,d);if(h)return h.set(u),a._free(g),h;h=Uint16Array.from(u);a._free(g); +return h};a.TextBlob.MakeOnPath=function(g,d,h,m){if(g&&g.length&&d&&d.countPoints()){if(1===d.countPoints())return this.MakeFromText(g,h);m||(m=0);var u=h.getGlyphIDs(g);u=h.getGlyphWidths(u);var w=[];d=new a.ContourMeasureIter(d,!1,1);for(var z=d.next(),F=new Float32Array(4),K=0;Kz.length()){z.delete();z=d.next();if(!z){g=g.substring(0,K);break}m=H/2}z.getPosTan(m,F);var S=F[2],p=F[3];w.push(S,p,F[0]-H/2*S,F[1]-H/2*p);m+=H/2}g=this.MakeFromRSXform(g,w,h); +z&&z.delete();d.delete();return g}};a.TextBlob.MakeFromRSXform=function(g,d,h){var m=ka(g)+1,u=a._malloc(m);la(g,B,u,m);g=l(d,"HEAPF32");h=a.TextBlob._MakeFromRSXform(u,m-1,g,h);a._free(u);return h?h:null};a.TextBlob.MakeFromRSXformGlyphs=function(g,d,h){var m=l(g,"HEAPU16");d=l(d,"HEAPF32");h=a.TextBlob._MakeFromRSXformGlyphs(m,2*g.length,d,h);k(m,g);return h?h:null};a.TextBlob.MakeFromGlyphs=function(g,d){var h=l(g,"HEAPU16");d=a.TextBlob._MakeFromGlyphs(h,2*g.length,d);k(h,g);return d?d:null}; +a.TextBlob.MakeFromText=function(g,d){var h=ka(g)+1,m=a._malloc(h);la(g,B,m,h);g=a.TextBlob._MakeFromText(m,h-1,d);a._free(m);return g?g:null};a.MallocGlyphIDs=function(g){return a.Malloc(Uint16Array,g)}});a.Rd=a.Rd||[];a.Rd.push(function(){a.MakePicture=function(g){g=new Uint8Array(g);var d=a._malloc(g.byteLength);a.HEAPU8.set(g,d);return(g=a._MakePicture(d,g.byteLength))?g:null}});a.Rd=a.Rd||[];a.Rd.push(function(){a.RuntimeEffect.Make=function(g,d){return a.RuntimeEffect._Make(g,{onError:d||function(h){console.log("RuntimeEffect error", +h)}})};a.RuntimeEffect.prototype.makeShader=function(g,d){var h=!g._ck,m=l(g,"HEAPF32");d=q(d);return this._makeShader(m,4*g.length,h,d)};a.RuntimeEffect.prototype.makeShaderWithChildren=function(g,d,h){var m=!g._ck,u=l(g,"HEAPF32");h=q(h);for(var w=[],z=0;z{throw b;},qa="object"===typeof window,ra="function"===typeof importScripts,sa="object"===typeof process&&"object"===typeof process.versions&&"string"===typeof process.versions.node,ta="",wa,xa,ya,fs,Aa,Ca; +if(sa)ta=ra?require("path").dirname(ta)+"/":__dirname+"/",Ca=()=>{Aa||(fs=require("fs"),Aa=require("path"))},wa=function(a,b){Ca();a=Aa.normalize(a);return fs.readFileSync(a,b?null:"utf8")},ya=a=>{a=wa(a,!0);a.buffer||(a=new Uint8Array(a));return a},xa=(a,b,c)=>{Ca();a=Aa.normalize(a);fs.readFile(a,function(e,f){e?c(e):b(f.buffer)})},1{if(noExitRuntime|| +0{var b=new XMLHttpRequest;b.open("GET",a,!1);b.send(null);return b.responseText},ra&&(ya=a=>{var b= +new XMLHttpRequest;b.open("GET",a,!1);b.responseType="arraybuffer";b.send(null);return new Uint8Array(b.response)}),xa=(a,b,c)=>{var e=new XMLHttpRequest;e.open("GET",a,!0);e.responseType="arraybuffer";e.onload=()=>{200==e.status||0==e.status&&e.response?b(e.response):c()};e.onerror=c;e.send(null)};var Ga=r.print||console.log.bind(console),Fa=r.printErr||console.warn.bind(console);aa(r,ma);ma=null;r.thisProgram&&(na=r.thisProgram);r.quit&&(oa=r.quit);var Ha=0,Ia;r.wasmBinary&&(Ia=r.wasmBinary); +var noExitRuntime=r.noExitRuntime||!0;"object"!==typeof WebAssembly&&Ja("no native wasm support detected");var Ka,La=!1,Na="undefined"!==typeof TextDecoder?new TextDecoder("utf8"):void 0; +function Oa(a,b,c){var e=b+c;for(c=b;a[c]&&!(c>=e);)++c;if(16f?e+=String.fromCharCode(f):(f-=65536,e+=String.fromCharCode(55296|f>>10,56320|f&1023))}}else e+=String.fromCharCode(f)}return e}function Pa(a,b){return a?Oa(B,a,b):""} +function la(a,b,c,e){if(!(0=l){var n=a.charCodeAt(++k);l=65536+((l&1023)<<10)|n&1023}if(127>=l){if(c>=e)break;b[c++]=l}else{if(2047>=l){if(c+1>=e)break;b[c++]=192|l>>6}else{if(65535>=l){if(c+2>=e)break;b[c++]=224|l>>12}else{if(c+3>=e)break;b[c++]=240|l>>18;b[c++]=128|l>>12&63}b[c++]=128|l>>6&63}b[c++]=128|l&63}}b[c]=0;return c-f} +function ka(a){for(var b=0,c=0;c=e&&(e=65536+((e&1023)<<10)|a.charCodeAt(++c)&1023);127>=e?++b:b=2047>=e?b+2:65535>=e?b+3:b+4}return b}var Qa="undefined"!==typeof TextDecoder?new TextDecoder("utf-16le"):void 0;function Sa(a,b){var c=a>>1;for(var e=c+b/2;!(c>=e)&&Ta[c];)++c;c<<=1;if(32=b/2);++e){var f=Ua[a+2*e>>1];if(0==f)break;c+=String.fromCharCode(f)}return c} +function Va(a,b,c){void 0===c&&(c=2147483647);if(2>c)return 0;c-=2;var e=b;c=c<2*a.length?c/2:a.length;for(var f=0;f>1]=a.charCodeAt(f),b+=2;Ua[b>>1]=0;return b-e}function Wa(a){return 2*a.length}function Xa(a,b){for(var c=0,e="";!(c>=b/4);){var f=G[a+4*c>>2];if(0==f)break;++c;65536<=f?(f-=65536,e+=String.fromCharCode(55296|f>>10,56320|f&1023)):e+=String.fromCharCode(f)}return e} +function Ya(a,b,c){void 0===c&&(c=2147483647);if(4>c)return 0;var e=b;c=e+c-4;for(var f=0;f=k){var l=a.charCodeAt(++f);k=65536+((k&1023)<<10)|l&1023}G[b>>2]=k;b+=4;if(b+4>c)break}G[b>>2]=0;return b-e}function Za(a){for(var b=0,c=0;c=e&&++c;b+=4}return b}var $a,ab,B,Ua,Ta,G,J,N,bb; +function cb(){var a=Ka.buffer;$a=a;r.HEAP8=ab=new Int8Array(a);r.HEAP16=Ua=new Int16Array(a);r.HEAP32=G=new Int32Array(a);r.HEAPU8=B=new Uint8Array(a);r.HEAPU16=Ta=new Uint16Array(a);r.HEAPU32=J=new Uint32Array(a);r.HEAPF32=N=new Float32Array(a);r.HEAPF64=bb=new Float64Array(a)}var db,eb=[],fb=[],hb=[],Da=0;function ib(){var a=r.preRun.shift();eb.unshift(a)}var jb=0,kb=null,lb=null;r.preloadedImages={};r.preloadedAudios={}; +function Ja(a){if(r.onAbort)r.onAbort(a);a="Aborted("+a+")";Fa(a);La=!0;a=new WebAssembly.RuntimeError(a+". Build with -s ASSERTIONS=1 for more info.");ca(a);throw a;}function mb(){return nb.startsWith("data:application/octet-stream;base64,")}var nb;nb="canvaskit.wasm";if(!mb()){var ob=nb;nb=r.locateFile?r.locateFile(ob,ta):ta+ob}function pb(){var a=nb;try{if(a==nb&&Ia)return new Uint8Array(Ia);if(ya)return ya(a);throw"both async and sync fetching of the wasm failed";}catch(b){Ja(b)}} +function qb(){if(!Ia&&(qa||ra)){if("function"===typeof fetch&&!nb.startsWith("file://"))return fetch(nb,{credentials:"same-origin"}).then(function(a){if(!a.ok)throw"failed to load wasm binary file at '"+nb+"'";return a.arrayBuffer()}).catch(function(){return pb()});if(xa)return new Promise(function(a,b){xa(nb,function(c){a(new Uint8Array(c))},b)})}return Promise.resolve().then(function(){return pb()})} +function rb(a){for(;0>2]=b};this.wf=function(b){G[this.Pd+8>>2]=b};this.xf=function(){G[this.Pd>>2]=0};this.vf=function(){ab[this.Pd+12>>0]=0};this.yf=function(){ab[this.Pd+13>>0]=0};this.mf=function(b,c){this.zf(b);this.wf(c);this.xf();this.vf();this.yf()}}var tb=0,ub={},vb=[null,[],[]],wb={},xb={};function yb(a){for(;a.length;){var b=a.pop();a.pop()(b)}}function zb(a){return this.fromWireType(J[a>>2])}var Ab={},Bb={},Cb={}; +function Db(a){if(void 0===a)return"_unknown";a=a.replace(/[^a-zA-Z0-9_]/g,"$");var b=a.charCodeAt(0);return 48<=b&&57>=b?"_"+a:a}function Eb(a,b){a=Db(a);return function(){null;return b.apply(this,arguments)}} +function Fb(a){var b=Error,c=Eb(a,function(e){this.name=a;this.message=e;e=Error(e).stack;void 0!==e&&(this.stack=this.toString()+"\n"+e.replace(/^Error(:[^\n]*)?\n/,""))});c.prototype=Object.create(b.prototype);c.prototype.constructor=c;c.prototype.toString=function(){return void 0===this.message?this.name:this.name+": "+this.message};return c}var Mb=void 0;function Nb(a){throw new Mb(a);} +function Ob(a,b,c){function e(n){n=c(n);n.length!==a.length&&Nb("Mismatched type converter count");for(var q=0;qb,a;Ub=new FinalizationGroup(function(b){for(var c=b.next();!c.done;c=b.next())c=c.value,c.Pd?Wb(c):console.warn("object already deleted: "+c.Pd)});Xb=b=>{Ub.register(b,b.Md,b.Md);return b};Vb=b=>{Ub.unregister(b.Md)};return Xb(a)}var Yb=void 0,Zb=[];function $b(){for(;Zb.length;){var a=Zb.pop();a.Md.fe=!1;a["delete"]()}}function ac(){} +var bc={};function cc(a,b,c){if(void 0===a[b].Td){var e=a[b];a[b]=function(){a[b].Td.hasOwnProperty(arguments.length)||Q("Function '"+c+"' called with an invalid number of arguments ("+arguments.length+") - expects one of ("+a[b].Td+")!");return a[b].Td[arguments.length].apply(this,arguments)};a[b].Td=[];a[b].Td[e.de]=e}} +function dc(a,b,c){r.hasOwnProperty(a)?((void 0===c||void 0!==r[a].Td&&void 0!==r[a].Td[c])&&Q("Cannot register public name '"+a+"' twice"),cc(r,a,a),r.hasOwnProperty(c)&&Q("Cannot register multiple overloads of a function with the same number of arguments ("+c+")!"),r[a].Td[c]=b):(r[a]=b,void 0!==c&&(r[a].Lf=c))}function ec(a,b,c,e,f,k,l,n){this.name=a;this.constructor=b;this.ge=c;this.ae=e;this.$d=f;this.df=k;this.oe=l;this.af=n;this.tf=[]} +function fc(a,b,c){for(;b!==c;)b.oe||Q("Expected null or instance of "+c.name+", got an instance of "+b.name),a=b.oe(a),b=b.$d;return a}function gc(a,b){if(null===b)return this.De&&Q("null is not a valid "+this.name),0;b.Md||Q('Cannot pass "'+hc(b)+'" as a '+this.name);b.Md.Pd||Q("Cannot pass deleted object as a pointer of type "+this.name);return fc(b.Md.Pd,b.Md.Sd.Qd,this.Qd)} +function ic(a,b){if(null===b){this.De&&Q("null is not a valid "+this.name);if(this.se){var c=this.Ee();null!==a&&a.push(this.ae,c);return c}return 0}b.Md||Q('Cannot pass "'+hc(b)+'" as a '+this.name);b.Md.Pd||Q("Cannot pass deleted object as a pointer of type "+this.name);!this.re&&b.Md.Sd.re&&Q("Cannot convert argument of type "+(b.Md.Yd?b.Md.Yd.name:b.Md.Sd.name)+" to parameter type "+this.name);c=fc(b.Md.Pd,b.Md.Sd.Qd,this.Qd);if(this.se)switch(void 0===b.Md.Ud&&Q("Passing raw pointer to smart pointer is illegal"), +this.Df){case 0:b.Md.Yd===this?c=b.Md.Ud:Q("Cannot convert argument of type "+(b.Md.Yd?b.Md.Yd.name:b.Md.Sd.name)+" to parameter type "+this.name);break;case 1:c=b.Md.Ud;break;case 2:if(b.Md.Yd===this)c=b.Md.Ud;else{var e=b.clone();c=this.uf(c,jc(function(){e["delete"]()}));null!==a&&a.push(this.ae,c)}break;default:Q("Unsupporting sharing policy")}return c} +function kc(a,b){if(null===b)return this.De&&Q("null is not a valid "+this.name),0;b.Md||Q('Cannot pass "'+hc(b)+'" as a '+this.name);b.Md.Pd||Q("Cannot pass deleted object as a pointer of type "+this.name);b.Md.Sd.re&&Q("Cannot convert argument of type "+b.Md.Sd.name+" to parameter type "+this.name);return fc(b.Md.Pd,b.Md.Sd.Qd,this.Qd)}function lc(a,b,c){if(b===c)return a;if(void 0===c.$d)return null;a=lc(a,b,c.$d);return null===a?null:c.af(a)}var mc={}; +function nc(a,b){for(void 0===b&&Q("ptr should not be undefined");a.$d;)b=a.oe(b),a=a.$d;return mc[b]}function oc(a,b){b.Sd&&b.Pd||Nb("makeClassHandle requires ptr and ptrType");!!b.Yd!==!!b.Ud&&Nb("Both smartPtrType and smartPtr must be specified");b.count={value:1};return Xb(Object.create(a,{Md:{value:b}}))} +function wc(a,b,c,e,f,k,l,n,q,x,y){this.name=a;this.Qd=b;this.De=c;this.re=e;this.se=f;this.sf=k;this.Df=l;this.Ne=n;this.Ee=q;this.uf=x;this.ae=y;f||void 0!==b.$d?this.toWireType=ic:(this.toWireType=e?gc:kc,this.Xd=null)}function xc(a,b,c){r.hasOwnProperty(a)||Nb("Replacing nonexistant public symbol");void 0!==r[a].Td&&void 0!==c?r[a].Td[c]=b:(r[a]=b,r[a].de=c)} +function yc(a,b){var c=[];return function(){c.length=arguments.length;for(var e=0;ek&&Q("argTypes array size mismatch! Must at least get return value and 'this' types!");var l=null!==b[1]&&null!==c,n=!1;for(c=1;c>2)+e]);return c}var Gc=[],Hc=[{},{value:void 0},{value:null},{value:!0},{value:!1}];function Ic(a){4>2])};case 3:return function(c){return this.fromWireType(bb[c>>3])};default:throw new TypeError("Unknown float type: "+a);}} +function Nc(a,b,c){switch(b){case 0:return c?function(e){return ab[e]}:function(e){return B[e]};case 1:return c?function(e){return Ua[e>>1]}:function(e){return Ta[e>>1]};case 2:return c?function(e){return G[e>>2]}:function(e){return J[e>>2]};default:throw new TypeError("Unknown integer type: "+a);}}var Oc={};function Pc(a){var b=Oc[a];return void 0===b?P(a):b}var Qc=[]; +function Rc(){function a(b){b.$$$embind_global$$$=b;var c="object"===typeof $$$embind_global$$$&&b.$$$embind_global$$$===b;c||delete b.$$$embind_global$$$;return c}if("object"===typeof globalThis)return globalThis;if("object"===typeof $$$embind_global$$$)return $$$embind_global$$$;"object"===typeof global&&a(global)?$$$embind_global$$$=global:"object"===typeof self&&a(self)&&($$$embind_global$$$=self);if("object"===typeof $$$embind_global$$$)return $$$embind_global$$$;throw Error("unable to get global object."); +}function Sc(a){var b=Qc.length;Qc.push(a);return b}function Tc(a,b){for(var c=Array(a),e=0;e>2)+e],"parameter "+e);return c}var Uc=[];function Vc(a){var b=Array(a+1);return function(c,e,f){b[0]=c;for(var k=0;k>2)+k],"parameter "+k);b[k+1]=l.readValueFromPointer(f);f+=l.argPackAdvance}c=new (c.bind.apply(c,b));return jc(c)}}var Wc={},Xc;Xc=sa?()=>{var a=process.hrtime();return 1E3*a[0]+a[1]/1E6}:()=>performance.now(); +function Yc(a){var b=a.getExtension("ANGLE_instanced_arrays");b&&(a.vertexAttribDivisor=function(c,e){b.vertexAttribDivisorANGLE(c,e)},a.drawArraysInstanced=function(c,e,f,k){b.drawArraysInstancedANGLE(c,e,f,k)},a.drawElementsInstanced=function(c,e,f,k,l){b.drawElementsInstancedANGLE(c,e,f,k,l)})} +function Zc(a){var b=a.getExtension("OES_vertex_array_object");b&&(a.createVertexArray=function(){return b.createVertexArrayOES()},a.deleteVertexArray=function(c){b.deleteVertexArrayOES(c)},a.bindVertexArray=function(c){b.bindVertexArrayOES(c)},a.isVertexArray=function(c){return b.isVertexArrayOES(c)})}function $c(a){var b=a.getExtension("WEBGL_draw_buffers");b&&(a.drawBuffers=function(c,e){b.drawBuffersWEBGL(c,e)})} +var ad=1,bd=[],cd=[],dd=[],ed=[],fa=[],fd=[],gd=[],ja=[],hd=[],jd=[],kd={},ld={},md=4;function W(a){nd||(nd=a)}function ea(a){for(var b=ad++,c=a.length;ca.version||!b.Je)b.Je=b.getExtension("EXT_disjoint_timer_query");b.Kf=b.getExtension("WEBGL_multi_draw");(b.getSupportedExtensions()||[]).forEach(function(c){c.includes("lose_context")||c.includes("debug")||b.getExtension(c)})}} +var t,nd,rd=[];function sd(a,b,c,e){for(var f=0;f>2]=l}} +function td(a,b,c){if(b){var e=void 0;switch(a){case 36346:e=1;break;case 36344:0!=c&&1!=c&&W(1280);return;case 34814:case 36345:e=0;break;case 34466:var f=X.getParameter(34467);e=f?f.length:0;break;case 33309:if(2>t.version){W(1282);return}e=2*(X.getSupportedExtensions()||[]).length;break;case 33307:case 33308:if(2>t.version){W(1280);return}e=33307==a?3:0}if(void 0===e)switch(f=X.getParameter(a),typeof f){case "number":e=f;break;case "boolean":e=f?1:0;break;case "string":W(1280);return;case "object":if(null=== +f)switch(a){case 34964:case 35725:case 34965:case 36006:case 36007:case 32873:case 34229:case 36662:case 36663:case 35053:case 35055:case 36010:case 35097:case 35869:case 32874:case 36389:case 35983:case 35368:case 34068:e=0;break;default:W(1280);return}else{if(f instanceof Float32Array||f instanceof Uint32Array||f instanceof Int32Array||f instanceof Array){for(a=0;a>2]=f[a];break;case 2:N[b+4*a>>2]=f[a];break;case 4:ab[b+a>>0]=f[a]?1:0}return}try{e=f.name|0}catch(k){W(1280); +Fa("GL_INVALID_ENUM in glGet"+c+"v: Unknown object returned from WebGL getParameter("+a+")! (error: "+k+")");return}}break;default:W(1280);Fa("GL_INVALID_ENUM in glGet"+c+"v: Native code calling glGet"+c+"v("+a+") and it returns "+f+" of type "+typeof f+"!");return}switch(c){case 1:c=e;J[b>>2]=c;J[b+4>>2]=(c-J[b>>2])/4294967296;break;case 0:G[b>>2]=e;break;case 2:N[b>>2]=e;break;case 4:ab[b>>0]=e?1:0}}else W(1281)}function ud(a){var b=ka(a)+1,c=vd(b);la(a,B,c,b);return c} +function wd(a){return"]"==a.slice(-1)&&a.lastIndexOf("[")}function xd(a){a-=5120;return 0==a?ab:1==a?B:2==a?Ua:4==a?G:6==a?N:5==a||28922==a||28520==a||30779==a||30782==a?J:Ta}function yd(a,b,c,e,f){a=xd(a);var k=31-Math.clz32(a.BYTES_PER_ELEMENT),l=md;return a.subarray(f>>k,f+e*(c*({5:3,6:4,8:2,29502:3,29504:4,26917:2,26918:2,29846:3,29847:4}[b-6402]||1)*(1<>k)} +function Y(a){var b=X.Ye;if(b){var c=b.ne[a];"number"===typeof c&&(b.ne[a]=c=X.getUniformLocation(b,b.Oe[a]+(0Z?-1:0=l(I,v)?0>=l(D,v)?v.getFullYear()+1:v.getFullYear():v.getFullYear()-1}var x=G[e+40>>2];e={Gf:G[e>>2],Ff:G[e+4>>2],we:G[e+8>>2],me:G[e+12>>2],he:G[e+16>>2],Vd:G[e+20>>2],xe:G[e+24>>2],ye:G[e+28>>2],Of:G[e+32>>2],Ef:G[e+ +36>>2],Hf:x?Pa(x):""};c=Pa(c);x={"%c":"%a %b %d %H:%M:%S %Y","%D":"%m/%d/%y","%F":"%Y-%m-%d","%h":"%b","%r":"%I:%M:%S %p","%R":"%H:%M","%T":"%H:%M:%S","%x":"%m/%d/%y","%X":"%H:%M:%S","%Ec":"%c","%EC":"%C","%Ex":"%m/%d/%y","%EX":"%H:%M:%S","%Ey":"%y","%EY":"%Y","%Od":"%d","%Oe":"%e","%OH":"%H","%OI":"%I","%Om":"%m","%OM":"%M","%OS":"%S","%Ou":"%u","%OU":"%U","%OV":"%V","%Ow":"%w","%OW":"%W","%Oy":"%y"};for(var y in x)c=c.replace(new RegExp(y,"g"),x[y]);var C="Sunday Monday Tuesday Wednesday Thursday Friday Saturday".split(" "), +E="January February March April May June July August September October November December".split(" ");x={"%a":function(v){return C[v.xe].substring(0,3)},"%A":function(v){return C[v.xe]},"%b":function(v){return E[v.he].substring(0,3)},"%B":function(v){return E[v.he]},"%C":function(v){return k((v.Vd+1900)/100|0,2)},"%d":function(v){return k(v.me,2)},"%e":function(v){return f(v.me,2," ")},"%g":function(v){return q(v).toString().substring(2)},"%G":function(v){return q(v)},"%H":function(v){return k(v.we, +2)},"%I":function(v){v=v.we;0==v?v=12:12v.we?"AM":"PM"},"%S":function(v){return k(v.Gf,2)},"%t":function(){return"\t"},"%u":function(v){return v.xe||7},"%U":function(v){var D=new Date(v.Vd+1900,0,1),I=0===D.getDay()?D:Id(D,7-D.getDay());v=new Date(v.Vd+1900,v.he,v.me);return 0> +l(I,v)?k(Math.ceil((31-I.getDate()+(Fd(Ed(v.getFullYear())?Gd:Hd,v.getMonth()-1)-31)+v.getDate())/7),2):0===l(I,D)?"01":"00"},"%V":function(v){var D=new Date(v.Vd+1901,0,4),I=n(new Date(v.Vd+1900,0,4));D=n(D);var R=Id(new Date(v.Vd+1900,0,1),v.ye);return 0>l(R,I)?"53":0>=l(D,R)?"01":k(Math.ceil((I.getFullYear()l(I,v)?k(Math.ceil((31-I.getDate()+(Fd(Ed(v.getFullYear())?Gd:Hd,v.getMonth()-1)-31)+v.getDate())/7),2):0===l(I,D)?"01":"00"},"%y":function(v){return(v.Vd+1900).toString().substring(2)},"%Y":function(v){return v.Vd+1900},"%z":function(v){v=v.Ef;var D=0<=v;v=Math.abs(v)/60;return(D?"+":"-")+String("0000"+(v/60*100+v%60)).slice(-4)},"%Z":function(v){return v.Hf},"%%":function(){return"%"}};for(y in x)c.includes(y)&&(c=c.replace(new RegExp(y,"g"),x[y](e)));y=Kd(c); +if(y.length>b)return 0;ab.set(y,a);return y.length-1}Mb=r.InternalError=Fb("InternalError");for(var Ld=Array(256),Md=0;256>Md;++Md)Ld[Md]=String.fromCharCode(Md);Rb=Ld;Sb=r.BindingError=Fb("BindingError");ac.prototype.isAliasOf=function(a){if(!(this instanceof ac&&a instanceof ac))return!1;var b=this.Md.Sd.Qd,c=this.Md.Pd,e=a.Md.Sd.Qd;for(a=a.Md.Pd;b.$d;)c=b.oe(c),b=b.$d;for(;e.$d;)a=e.oe(a),e=e.$d;return b===e&&c===a}; +ac.prototype.clone=function(){this.Md.Pd||Tb(this);if(this.Md.le)return this.Md.count.value+=1,this;var a=Xb,b=Object,c=b.create,e=Object.getPrototypeOf(this),f=this.Md;a=a(c.call(b,e,{Md:{value:{count:f.count,fe:f.fe,le:f.le,Pd:f.Pd,Sd:f.Sd,Ud:f.Ud,Yd:f.Yd}}}));a.Md.count.value+=1;a.Md.fe=!1;return a};ac.prototype["delete"]=function(){this.Md.Pd||Tb(this);this.Md.fe&&!this.Md.le&&Q("Object already scheduled for deletion");Vb(this);Wb(this.Md);this.Md.le||(this.Md.Ud=void 0,this.Md.Pd=void 0)}; +ac.prototype.isDeleted=function(){return!this.Md.Pd};ac.prototype.deleteLater=function(){this.Md.Pd||Tb(this);this.Md.fe&&!this.Md.le&&Q("Object already scheduled for deletion");Zb.push(this);1===Zb.length&&Yb&&Yb($b);this.Md.fe=!0;return this};wc.prototype.ef=function(a){this.Ne&&(a=this.Ne(a));return a};wc.prototype.He=function(a){this.ae&&this.ae(a)};wc.prototype.argPackAdvance=8;wc.prototype.readValueFromPointer=zb;wc.prototype.deleteObject=function(a){if(null!==a)a["delete"]()}; +wc.prototype.fromWireType=function(a){function b(){return this.se?oc(this.Qd.ge,{Sd:this.sf,Pd:c,Yd:this,Ud:a}):oc(this.Qd.ge,{Sd:this,Pd:a})}var c=this.ef(a);if(!c)return this.He(a),null;var e=nc(this.Qd,c);if(void 0!==e){if(0===e.Md.count.value)return e.Md.Pd=c,e.Md.Ud=a,e.clone();e=e.clone();this.He(a);return e}e=this.Qd.df(c);e=bc[e];if(!e)return b.call(this);e=this.re?e.Xe:e.pointerType;var f=lc(c,this.Qd,e.Qd);return null===f?b.call(this):this.se?oc(e.Qd.ge,{Sd:e,Pd:f,Yd:this,Ud:a}):oc(e.Qd.ge, +{Sd:e,Pd:f})};r.getInheritedInstanceCount=function(){return Object.keys(mc).length};r.getLiveInheritedInstances=function(){var a=[],b;for(b in mc)mc.hasOwnProperty(b)&&a.push(mc[b]);return a};r.flushPendingDeletes=$b;r.setDelayFunction=function(a){Yb=a;Zb.length&&Yb&&Yb($b)};zc=r.UnboundTypeError=Fb("UnboundTypeError");r.count_emval_handles=function(){for(var a=0,b=5;bNd;++Nd)rd.push(Array(Nd));var Od=new Float32Array(288);for(Nd=0;288>Nd;++Nd)zd[Nd]=Od.subarray(0,Nd+1);var Pd=new Int32Array(288);for(Nd=0;288>Nd;++Nd)Ad[Nd]=Pd.subarray(0,Nd+1);function Kd(a){var b=Array(ka(a)+1);la(a,b,0,b.length);return b} +var ee={K:function(a){return vd(a+16)+16},J:function(a,b,c){(new sb(a)).mf(b,c);tb++;throw a;},X:function(){return 0},vb:function(){},tb:function(){},xb:function(){return 0},sb:function(){},pb:function(a,b,c,e,f,k){k<<=12;if(0!==(e&16)&&0!==a%65536)b=-28;else if(0!==(e&32)){a=65536*Math.ceil(b/65536);var l=Qd(65536,a);l?(B.fill(0,l,l+a),a=l):a=0;a?(ub[a]={rf:a,qf:b,We:!0,fd:f,Mf:c,flags:e,offset:k},b=a):b=-48}else b=-52;return b},ob:function(a,b){var c=ub[a];0!==b&&c?(b===c.qf&&(ub[a]=null,c.We&& +Cc(c.rf)),a=0):a=-28;return a},Y:function(){},ub:function(){},C:function(a){var b=xb[a];delete xb[a];var c=b.Ee,e=b.ae,f=b.Ke,k=f.map(function(l){return l.jf}).concat(f.map(function(l){return l.Bf}));Ob([a],k,function(l){var n={};f.forEach(function(q,x){var y=l[x],C=q.gf,E=q.hf,v=l[x+f.length],D=q.Af,I=q.Cf;n[q.cf]={read:function(R){return y.fromWireType(C(E,R))},write:function(R,Z){var da=[];D(I,R,v.toWireType(da,Z));yb(da)}}});return[{name:b.name,fromWireType:function(q){var x={},y;for(y in n)x[y]= +n[y].read(q);e(q);return x},toWireType:function(q,x){for(var y in n)if(!(y in x))throw new TypeError('Missing field: "'+y+'"');var C=c();for(y in n)n[y].write(C,x[y]);null!==q&&q.push(e,C);return C},argPackAdvance:8,readValueFromPointer:zb,Xd:e}]})},jb:function(){},zb:function(a,b,c,e,f){var k=Qb(c);b=P(b);Pb(a,{name:b,fromWireType:function(l){return!!l},toWireType:function(l,n){return n?e:f},argPackAdvance:8,readValueFromPointer:function(l){if(1===c)var n=ab;else if(2===c)n=Ua;else if(4===c)n=G; +else throw new TypeError("Unknown boolean type size: "+b);return this.fromWireType(n[l>>k])},Xd:null})},n:function(a,b,c,e,f,k,l,n,q,x,y,C,E){y=P(y);k=T(f,k);n&&(n=T(l,n));x&&(x=T(q,x));E=T(C,E);var v=Db(y);dc(v,function(){Dc("Cannot construct "+y+" due to unbound types",[e])});Ob([a,b,c],e?[e]:[],function(D){D=D[0];if(e){var I=D.Qd;var R=I.ge}else R=ac.prototype;D=Eb(v,function(){if(Object.getPrototypeOf(this)!==Z)throw new Sb("Use 'new' to construct "+y);if(void 0===da.be)throw new Sb(y+" has no accessible constructor"); +var Ma=da.be[arguments.length];if(void 0===Ma)throw new Sb("Tried to invoke ctor of "+y+" with invalid number of parameters ("+arguments.length+") - expected ("+Object.keys(da.be).toString()+") parameters instead!");return Ma.apply(this,arguments)});var Z=Object.create(R,{constructor:{value:D}});D.prototype=Z;var da=new ec(y,D,Z,E,I,k,n,x);I=new wc(y,da,!0,!1,!1);R=new wc(y+"*",da,!1,!1,!1);var ua=new wc(y+" const*",da,!1,!0,!1);bc[a]={pointerType:R,Xe:ua};xc(v,D);return[I,R,ua]})},g:function(a,b, +c,e,f,k,l){var n=Fc(c,e);b=P(b);k=T(f,k);Ob([],[a],function(q){function x(){Dc("Cannot call "+y+" due to unbound types",n)}q=q[0];var y=q.name+"."+b;b.startsWith("@@")&&(b=Symbol[b.substring(2)]);var C=q.Qd.constructor;void 0===C[b]?(x.de=c-1,C[b]=x):(cc(C,b,y),C[b].Td[c-1]=x);Ob([],n,function(E){E=[E[0],null].concat(E.slice(1));E=Ec(y,E,null,k,l);void 0===C[b].Td?(E.de=c-1,C[b]=E):C[b].Td[c-1]=E;return[]});return[]})},A:function(a,b,c,e,f,k){0{Dc("Cannot construct "+n.name+" due to unbound types",l)};Ob([],l,function(x){x.splice(1,0,null);n.Qd.be[b-1]=Ec(q,x,null,f,k);return[]});return[]})},a:function(a,b,c,e,f, +k,l,n){var q=Fc(c,e);b=P(b);k=T(f,k);Ob([],[a],function(x){function y(){Dc("Cannot call "+C+" due to unbound types",q)}x=x[0];var C=x.name+"."+b;b.startsWith("@@")&&(b=Symbol[b.substring(2)]);n&&x.Qd.tf.push(b);var E=x.Qd.ge,v=E[b];void 0===v||void 0===v.Td&&v.className!==x.name&&v.de===c-2?(y.de=c-2,y.className=x.name,E[b]=y):(cc(E,b,C),E[b].Td[c-2]=y);Ob([],q,function(D){D=Ec(C,D,x,k,l);void 0===E[b].Td?(D.de=c-2,E[b]=D):E[b].Td[c-2]=D;return[]});return[]})},s:function(a,b,c){a=P(a);Ob([],[b],function(e){e= +e[0];r[a]=e.fromWireType(c);return[]})},yb:function(a,b){b=P(b);Pb(a,{name:b,fromWireType:function(c){var e=Jc(c);Ic(c);return e},toWireType:function(c,e){return jc(e)},argPackAdvance:8,readValueFromPointer:zb,Xd:null})},l:function(a,b,c,e){function f(){}c=Qb(c);b=P(b);f.values={};Pb(a,{name:b,constructor:f,fromWireType:function(k){return this.constructor.values[k]},toWireType:function(k,l){return l.value},argPackAdvance:8,readValueFromPointer:Kc(b,c,e),Xd:null});dc(b,f)},d:function(a,b,c){var e= +Lc(a,"enum");b=P(b);a=e.constructor;e=Object.create(e.constructor.prototype,{value:{value:c},constructor:{value:Eb(e.name+"_"+b,function(){})}});a.values[c]=e;a[b]=e},_:function(a,b,c){c=Qb(c);b=P(b);Pb(a,{name:b,fromWireType:function(e){return e},toWireType:function(e,f){return f},argPackAdvance:8,readValueFromPointer:Mc(b,c),Xd:null})},v:function(a,b,c,e,f,k){var l=Fc(b,c);a=P(a);f=T(e,f);dc(a,function(){Dc("Cannot call "+a+" due to unbound types",l)},b-1);Ob([],l,function(n){n=[n[0],null].concat(n.slice(1)); +xc(a,Ec(a,n,null,f,k),b-1);return[]})},E:function(a,b,c,e,f){b=P(b);-1===f&&(f=4294967295);f=Qb(c);var k=n=>n;if(0===e){var l=32-8*c;k=n=>n<>>l}c=b.includes("unsigned")?function(n,q){return q>>>0}:function(n,q){return q};Pb(a,{name:b,fromWireType:k,toWireType:c,argPackAdvance:8,readValueFromPointer:Nc(b,f,0!==e),Xd:null})},u:function(a,b,c){function e(k){k>>=2;var l=J;return new f($a,l[k+1],l[k])}var f=[Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array][b]; +c=P(c);Pb(a,{name:c,fromWireType:e,argPackAdvance:8,readValueFromPointer:e},{lf:!0})},r:function(a,b,c,e,f,k,l,n,q,x,y,C){c=P(c);k=T(f,k);n=T(l,n);x=T(q,x);C=T(y,C);Ob([a],[b],function(E){E=E[0];return[new wc(c,E.Qd,!1,!1,!0,E,e,k,n,x,C)]})},Z:function(a,b){b=P(b);var c="std::string"===b;Pb(a,{name:b,fromWireType:function(e){var f=J[e>>2];if(c)for(var k=e+4,l=0;l<=f;++l){var n=e+4+l;if(l==f||0==B[n]){k=Pa(k,n-k);if(void 0===q)var q=k;else q+=String.fromCharCode(0),q+=k;k=n+1}}else{q=Array(f);for(l= +0;lka(f):()=>f.length)(),n=vd(4+l+1);J[n>>2]=l;if(c&&k)la(f,B,n+4,l+1);else if(k)for(k=0;kTa;var n=1}else 4===b&&(e=Xa,f=Ya,k=Za,l=()=>J,n=2);Pb(a,{name:c,fromWireType:function(q){for(var x=J[q>>2],y=l(),C,E=q+4,v=0;v<=x;++v){var D=q+4+v*b;if(v==x||0==y[D>>n])E=e(E,D-E),void 0===C?C=E:(C+=String.fromCharCode(0),C+=E),E=D+b}Cc(q);return C},toWireType:function(q,x){"string"!== +typeof x&&Q("Cannot pass non-string to C++ string type "+c);var y=k(x),C=vd(4+y+b);J[C>>2]=y>>n;f(x,C+4,y+b);null!==q&&q.push(Cc,C);return C},argPackAdvance:8,readValueFromPointer:zb,Xd:function(q){Cc(q)}})},D:function(a,b,c,e,f,k){xb[a]={name:P(b),Ee:T(c,e),ae:T(f,k),Ke:[]}},f:function(a,b,c,e,f,k,l,n,q,x){xb[a].Ke.push({cf:P(b),jf:c,gf:T(e,f),hf:k,Bf:l,Af:T(n,q),Cf:x})},Ab:function(a,b){b=P(b);Pb(a,{pf:!0,name:b,argPackAdvance:0,fromWireType:function(){},toWireType:function(){}})},mb:function(){throw"longjmp"; +},I:function(a,b,c){a=Jc(a);b=Lc(b,"emval::as");var e=[],f=jc(e);G[c>>2]=f;return b.toWireType(e,a)},L:function(a,b,c,e,f){a=Qc[a];b=Jc(b);c=Pc(c);var k=[];G[e>>2]=jc(k);return a(b,c,k,f)},B:function(a,b,c,e){a=Qc[a];b=Jc(b);c=Pc(c);a(b,c,null,e)},e:Ic,N:function(a){if(0===a)return jc(Rc());a=Pc(a);return jc(Rc()[a])},w:function(a,b){var c=Tc(a,b),e=c[0];b=e.name+"_$"+c.slice(1).map(function(l){return l.name}).join("_")+"$";var f=Uc[b];if(void 0!==f)return f;var k=Array(a-1);f=Sc((l,n,q,x)=>{for(var y= +0,C=0;C>2]=28,-1;G[b>>2]=a/1E3|0;G[b+4>>2]=a%1E3*1E6|0;return 0},Tc:function(a){X.activeTexture(a)},Uc:function(a,b){X.attachShader(cd[a],fd[b])},Vc:function(a,b,c){X.bindAttribLocation(cd[a],b,Pa(c))},Wc:function(a,b){35051==a?X.Be=b:35052==a&&(X.ee=b); +X.bindBuffer(a,bd[b])},da:function(a,b){X.bindFramebuffer(a,dd[b])},Xb:function(a,b){X.bindRenderbuffer(a,ed[b])},Hb:function(a,b){X.bindSampler(a,hd[b])},Xc:function(a,b){X.bindTexture(a,fa[b])},pc:function(a){X.bindVertexArray(gd[a])},sc:function(a){X.bindVertexArray(gd[a])},Yc:function(a,b,c,e){X.blendColor(a,b,c,e)},Zc:function(a){X.blendEquation(a)},_c:function(a,b){X.blendFunc(a,b)},Rb:function(a,b,c,e,f,k,l,n,q,x){X.blitFramebuffer(a,b,c,e,f,k,l,n,q,x)},$c:function(a,b,c,e){2<=t.version?c? +X.bufferData(a,B,e,c,b):X.bufferData(a,b,e):X.bufferData(a,c?B.subarray(c,c+b):b,e)},ad:function(a,b,c,e){2<=t.version?X.bufferSubData(a,b,B,e,c):X.bufferSubData(a,b,B.subarray(e,e+c))},Yb:function(a){return X.checkFramebufferStatus(a)},U:function(a){X.clear(a)},ca:function(a,b,c,e){X.clearColor(a,b,c,e)},W:function(a){X.clearStencil(a)},db:function(a,b,c,e){return X.clientWaitSync(jd[a],b,(c>>>0)+4294967296*e)},bd:function(a,b,c,e){X.colorMask(!!a,!!b,!!c,!!e)},ea:function(a){X.compileShader(fd[a])}, +fa:function(a,b,c,e,f,k,l,n){2<=t.version?X.ee?X.compressedTexImage2D(a,b,c,e,f,k,l,n):X.compressedTexImage2D(a,b,c,e,f,k,B,n,l):X.compressedTexImage2D(a,b,c,e,f,k,n?B.subarray(n,n+l):null)},ga:function(a,b,c,e,f,k,l,n,q){2<=t.version?X.ee?X.compressedTexSubImage2D(a,b,c,e,f,k,l,n,q):X.compressedTexSubImage2D(a,b,c,e,f,k,l,B,q,n):X.compressedTexSubImage2D(a,b,c,e,f,k,l,q?B.subarray(q,q+n):null)},Pb:function(a,b,c,e,f){X.copyBufferSubData(a,b,c,e,f)},ha:function(a,b,c,e,f,k,l,n){X.copyTexSubImage2D(a, +b,c,e,f,k,l,n)},ia:function(){var a=ea(cd),b=X.createProgram();b.name=a;b.ve=b.te=b.ue=0;b.Ge=1;cd[a]=b;return a},ja:function(a){var b=ea(fd);fd[b]=X.createShader(a);return b},ka:function(a){X.cullFace(a)},la:function(a,b){for(var c=0;c>2],f=bd[e];f&&(X.deleteBuffer(f),f.name=0,bd[e]=null,e==X.Be&&(X.Be=0),e==X.ee&&(X.ee=0))}},Zb:function(a,b){for(var c=0;c>2],f=dd[e];f&&(X.deleteFramebuffer(f),f.name=0,dd[e]=null)}},ma:function(a){if(a){var b=cd[a];b?(X.deleteProgram(b), +b.name=0,cd[a]=null):W(1281)}},_b:function(a,b){for(var c=0;c>2],f=ed[e];f&&(X.deleteRenderbuffer(f),f.name=0,ed[e]=null)}},Ib:function(a,b){for(var c=0;c>2],f=hd[e];f&&(X.deleteSampler(f),f.name=0,hd[e]=null)}},na:function(a){if(a){var b=fd[a];b?(X.deleteShader(b),fd[a]=null):W(1281)}},Qb:function(a){if(a){var b=jd[a];b?(X.deleteSync(b),b.name=0,jd[a]=null):W(1281)}},oa:function(a,b){for(var c=0;c>2],f=fa[e];f&&(X.deleteTexture(f), +f.name=0,fa[e]=null)}},qc:function(a,b){for(var c=0;c>2];X.deleteVertexArray(gd[e]);gd[e]=null}},tc:function(a,b){for(var c=0;c>2];X.deleteVertexArray(gd[e]);gd[e]=null}},pa:function(a){X.depthMask(!!a)},qa:function(a){X.disable(a)},ra:function(a){X.disableVertexAttribArray(a)},sa:function(a,b,c){X.drawArrays(a,b,c)},nc:function(a,b,c,e){X.drawArraysInstanced(a,b,c,e)},lc:function(a,b,c,e,f){X.Ie.drawArraysInstancedBaseInstanceWEBGL(a,b,c,e,f)},jc:function(a, +b){for(var c=rd[a],e=0;e>2];X.drawBuffers(c)},ta:function(a,b,c,e){X.drawElements(a,b,c,e)},oc:function(a,b,c,e,f){X.drawElementsInstanced(a,b,c,e,f)},mc:function(a,b,c,e,f,k,l){X.Ie.drawElementsInstancedBaseVertexBaseInstanceWEBGL(a,b,c,e,f,k,l)},dc:function(a,b,c,e,f,k){X.drawElements(a,e,f,k)},ua:function(a){X.enable(a)},va:function(a){X.enableVertexAttribArray(a)},Nb:function(a,b){return(a=X.fenceSync(a,b))?(b=ea(jd),a.name=b,jd[b]=a,b):0},wa:function(){X.finish()},xa:function(){X.flush()}, +$b:function(a,b,c,e){X.framebufferRenderbuffer(a,b,c,ed[e])},ac:function(a,b,c,e,f){X.framebufferTexture2D(a,b,c,fa[e],f)},ya:function(a){X.frontFace(a)},za:function(a,b){sd(a,b,"createBuffer",bd)},bc:function(a,b){sd(a,b,"createFramebuffer",dd)},cc:function(a,b){sd(a,b,"createRenderbuffer",ed)},Jb:function(a,b){sd(a,b,"createSampler",hd)},Aa:function(a,b){sd(a,b,"createTexture",fa)},rc:function(a,b){sd(a,b,"createVertexArray",gd)},uc:function(a,b){sd(a,b,"createVertexArray",gd)},Tb:function(a){X.generateMipmap(a)}, +Ba:function(a,b,c){c?G[c>>2]=X.getBufferParameter(a,b):W(1281)},Ca:function(){var a=X.getError()||nd;nd=0;return a},Da:function(a,b){td(a,b,2)},Ub:function(a,b,c,e){a=X.getFramebufferAttachmentParameter(a,b,c);if(a instanceof WebGLRenderbuffer||a instanceof WebGLTexture)a=a.name|0;G[e>>2]=a},O:function(a,b){td(a,b,0)},Ea:function(a,b,c,e){a=X.getProgramInfoLog(cd[a]);null===a&&(a="(unknown error)");b=0>2]=b)},Fa:function(a,b,c){if(c)if(a>=ad)W(1281);else if(a=cd[a],35716== +b)a=X.getProgramInfoLog(a),null===a&&(a="(unknown error)"),G[c>>2]=a.length+1;else if(35719==b){if(!a.ve)for(b=0;b>2]=a.ve}else if(35722==b){if(!a.te)for(b=0;b>2]=a.te}else if(35381==b){if(!a.ue)for(b=0;b> +2]=a.ue}else G[c>>2]=X.getProgramParameter(a,b);else W(1281)},Vb:function(a,b,c){c?G[c>>2]=X.getRenderbufferParameter(a,b):W(1281)},Ga:function(a,b,c,e){a=X.getShaderInfoLog(fd[a]);null===a&&(a="(unknown error)");b=0>2]=b)},Eb:function(a,b,c,e){a=X.getShaderPrecisionFormat(a,b);G[c>>2]=a.rangeMin;G[c+4>>2]=a.rangeMax;G[e>>2]=a.precision},Ha:function(a,b,c){c?35716==b?(a=X.getShaderInfoLog(fd[a]),null===a&&(a="(unknown error)"),G[c>>2]=a?a.length+1:0):35720==b?(a=X.getShaderSource(fd[a]), +G[c>>2]=a?a.length+1:0):G[c>>2]=X.getShaderParameter(fd[a],b):W(1281)},T:function(a){var b=kd[a];if(!b){switch(a){case 7939:b=X.getSupportedExtensions()||[];b=b.concat(b.map(function(e){return"GL_"+e}));b=ud(b.join(" "));break;case 7936:case 7937:case 37445:case 37446:(b=X.getParameter(a))||W(1280);b=b&&ud(b);break;case 7938:b=X.getParameter(7938);b=2<=t.version?"OpenGL ES 3.0 ("+b+")":"OpenGL ES 2.0 ("+b+")";b=ud(b);break;case 35724:b=X.getParameter(35724);var c=b.match(/^WebGL GLSL ES ([0-9]\.[0-9][0-9]?)(?:$| .*)/); +null!==c&&(3==c[1].length&&(c[1]+="0"),b="OpenGL ES GLSL ES "+c[1]+" ("+b+")");b=ud(b);break;default:W(1280)}kd[a]=b}return b},cb:function(a,b){if(2>t.version)return W(1282),0;var c=ld[a];if(c)return 0>b||b>=c.length?(W(1281),0):c[b];switch(a){case 7939:return c=X.getSupportedExtensions()||[],c=c.concat(c.map(function(e){return"GL_"+e})),c=c.map(function(e){return ud(e)}),c=ld[a]=c,0>b||b>=c.length?(W(1281),0):c[b];default:return W(1280),0}},Ia:function(a,b){b=Pa(b);if(a=cd[a]){var c=a,e=c.ne,f=c.Pe, +k;if(!e)for(c.ne=e={},c.Oe={},k=0;k>>0,f=b.slice(0,k));if((f=a.Pe[f])&&e>2];X.invalidateFramebuffer(a,e)},Gb:function(a, +b,c,e,f,k,l){for(var n=rd[b],q=0;q>2];X.invalidateSubFramebuffer(a,n,e,f,k,l)},Ob:function(a){return X.isSync(jd[a])},Ja:function(a){return(a=fa[a])?X.isTexture(a):0},Ka:function(a){X.lineWidth(a)},La:function(a){a=cd[a];X.linkProgram(a);a.ne=0;a.Pe={}},hc:function(a,b,c,e,f,k){X.Me.multiDrawArraysInstancedBaseInstanceWEBGL(a,G,b>>2,G,c>>2,G,e>>2,J,f>>2,k)},ic:function(a,b,c,e,f,k,l,n){X.Me.multiDrawElementsInstancedBaseVertexBaseInstanceWEBGL(a,G,b>>2,c,G,e>>2,G,f>>2,G,k>>2,J, +l>>2,n)},Ma:function(a,b){3317==a&&(md=b);X.pixelStorei(a,b)},kc:function(a){X.readBuffer(a)},Na:function(a,b,c,e,f,k,l){if(2<=t.version)if(X.Be)X.readPixels(a,b,c,e,f,k,l);else{var n=xd(k);X.readPixels(a,b,c,e,f,k,n,l>>31-Math.clz32(n.BYTES_PER_ELEMENT))}else(l=yd(k,f,c,e,l))?X.readPixels(a,b,c,e,f,k,l):W(1280)},Wb:function(a,b,c,e){X.renderbufferStorage(a,b,c,e)},Sb:function(a,b,c,e,f){X.renderbufferStorageMultisample(a,b,c,e,f)},Kb:function(a,b,c){X.samplerParameterf(hd[a],b,c)},Lb:function(a, +b,c){X.samplerParameteri(hd[a],b,c)},Mb:function(a,b,c){X.samplerParameteri(hd[a],b,G[c>>2])},Oa:function(a,b,c,e){X.scissor(a,b,c,e)},Pa:function(a,b,c,e){for(var f="",k=0;k>2]:-1;f+=Pa(G[c+4*k>>2],0>l?void 0:l)}X.shaderSource(fd[a],f)},Qa:function(a,b,c){X.stencilFunc(a,b,c)},Ra:function(a,b,c,e){X.stencilFuncSeparate(a,b,c,e)},Sa:function(a){X.stencilMask(a)},Ta:function(a,b){X.stencilMaskSeparate(a,b)},Ua:function(a,b,c){X.stencilOp(a,b,c)},Va:function(a,b,c,e){X.stencilOpSeparate(a, +b,c,e)},Wa:function(a,b,c,e,f,k,l,n,q){if(2<=t.version)if(X.ee)X.texImage2D(a,b,c,e,f,k,l,n,q);else if(q){var x=xd(n);X.texImage2D(a,b,c,e,f,k,l,n,x,q>>31-Math.clz32(x.BYTES_PER_ELEMENT))}else X.texImage2D(a,b,c,e,f,k,l,n,null);else X.texImage2D(a,b,c,e,f,k,l,n,q?yd(n,l,e,f,q):null)},Xa:function(a,b,c){X.texParameterf(a,b,c)},Ya:function(a,b,c){X.texParameterf(a,b,N[c>>2])},Za:function(a,b,c){X.texParameteri(a,b,c)},_a:function(a,b,c){X.texParameteri(a,b,G[c>>2])},ec:function(a,b,c,e,f){X.texStorage2D(a, +b,c,e,f)},$a:function(a,b,c,e,f,k,l,n,q){if(2<=t.version)if(X.ee)X.texSubImage2D(a,b,c,e,f,k,l,n,q);else if(q){var x=xd(n);X.texSubImage2D(a,b,c,e,f,k,l,n,x,q>>31-Math.clz32(x.BYTES_PER_ELEMENT))}else X.texSubImage2D(a,b,c,e,f,k,l,n,null);else x=null,q&&(x=yd(n,l,f,k,q)),X.texSubImage2D(a,b,c,e,f,k,l,n,x)},ab:function(a,b){X.uniform1f(Y(a),b)},bb:function(a,b,c){if(2<=t.version)X.uniform1fv(Y(a),N,c>>2,b);else{if(288>=b)for(var e=zd[b-1],f=0;f>2];else e=N.subarray(c>>2,c+4*b>> +2);X.uniform1fv(Y(a),e)}},Pc:function(a,b){X.uniform1i(Y(a),b)},Qc:function(a,b,c){if(2<=t.version)X.uniform1iv(Y(a),G,c>>2,b);else{if(288>=b)for(var e=Ad[b-1],f=0;f>2];else e=G.subarray(c>>2,c+4*b>>2);X.uniform1iv(Y(a),e)}},Rc:function(a,b,c){X.uniform2f(Y(a),b,c)},Sc:function(a,b,c){if(2<=t.version)X.uniform2fv(Y(a),N,c>>2,2*b);else{if(144>=b)for(var e=zd[2*b-1],f=0;f<2*b;f+=2)e[f]=N[c+4*f>>2],e[f+1]=N[c+(4*f+4)>>2];else e=N.subarray(c>>2,c+8*b>>2);X.uniform2fv(Y(a),e)}},Oc:function(a, +b,c){X.uniform2i(Y(a),b,c)},Nc:function(a,b,c){if(2<=t.version)X.uniform2iv(Y(a),G,c>>2,2*b);else{if(144>=b)for(var e=Ad[2*b-1],f=0;f<2*b;f+=2)e[f]=G[c+4*f>>2],e[f+1]=G[c+(4*f+4)>>2];else e=G.subarray(c>>2,c+8*b>>2);X.uniform2iv(Y(a),e)}},Mc:function(a,b,c,e){X.uniform3f(Y(a),b,c,e)},Lc:function(a,b,c){if(2<=t.version)X.uniform3fv(Y(a),N,c>>2,3*b);else{if(96>=b)for(var e=zd[3*b-1],f=0;f<3*b;f+=3)e[f]=N[c+4*f>>2],e[f+1]=N[c+(4*f+4)>>2],e[f+2]=N[c+(4*f+8)>>2];else e=N.subarray(c>>2,c+12*b>>2);X.uniform3fv(Y(a), +e)}},Kc:function(a,b,c,e){X.uniform3i(Y(a),b,c,e)},Jc:function(a,b,c){if(2<=t.version)X.uniform3iv(Y(a),G,c>>2,3*b);else{if(96>=b)for(var e=Ad[3*b-1],f=0;f<3*b;f+=3)e[f]=G[c+4*f>>2],e[f+1]=G[c+(4*f+4)>>2],e[f+2]=G[c+(4*f+8)>>2];else e=G.subarray(c>>2,c+12*b>>2);X.uniform3iv(Y(a),e)}},Ic:function(a,b,c,e,f){X.uniform4f(Y(a),b,c,e,f)},Hc:function(a,b,c){if(2<=t.version)X.uniform4fv(Y(a),N,c>>2,4*b);else{if(72>=b){var e=zd[4*b-1],f=N;c>>=2;for(var k=0;k<4*b;k+=4){var l=c+k;e[k]=f[l];e[k+1]=f[l+1];e[k+ +2]=f[l+2];e[k+3]=f[l+3]}}else e=N.subarray(c>>2,c+16*b>>2);X.uniform4fv(Y(a),e)}},vc:function(a,b,c,e,f){X.uniform4i(Y(a),b,c,e,f)},wc:function(a,b,c){if(2<=t.version)X.uniform4iv(Y(a),G,c>>2,4*b);else{if(72>=b)for(var e=Ad[4*b-1],f=0;f<4*b;f+=4)e[f]=G[c+4*f>>2],e[f+1]=G[c+(4*f+4)>>2],e[f+2]=G[c+(4*f+8)>>2],e[f+3]=G[c+(4*f+12)>>2];else e=G.subarray(c>>2,c+16*b>>2);X.uniform4iv(Y(a),e)}},xc:function(a,b,c,e){if(2<=t.version)X.uniformMatrix2fv(Y(a),!!c,N,e>>2,4*b);else{if(72>=b)for(var f=zd[4*b-1], +k=0;k<4*b;k+=4)f[k]=N[e+4*k>>2],f[k+1]=N[e+(4*k+4)>>2],f[k+2]=N[e+(4*k+8)>>2],f[k+3]=N[e+(4*k+12)>>2];else f=N.subarray(e>>2,e+16*b>>2);X.uniformMatrix2fv(Y(a),!!c,f)}},yc:function(a,b,c,e){if(2<=t.version)X.uniformMatrix3fv(Y(a),!!c,N,e>>2,9*b);else{if(32>=b)for(var f=zd[9*b-1],k=0;k<9*b;k+=9)f[k]=N[e+4*k>>2],f[k+1]=N[e+(4*k+4)>>2],f[k+2]=N[e+(4*k+8)>>2],f[k+3]=N[e+(4*k+12)>>2],f[k+4]=N[e+(4*k+16)>>2],f[k+5]=N[e+(4*k+20)>>2],f[k+6]=N[e+(4*k+24)>>2],f[k+7]=N[e+(4*k+28)>>2],f[k+8]=N[e+(4*k+32)>>2]; +else f=N.subarray(e>>2,e+36*b>>2);X.uniformMatrix3fv(Y(a),!!c,f)}},zc:function(a,b,c,e){if(2<=t.version)X.uniformMatrix4fv(Y(a),!!c,N,e>>2,16*b);else{if(18>=b){var f=zd[16*b-1],k=N;e>>=2;for(var l=0;l<16*b;l+=16){var n=e+l;f[l]=k[n];f[l+1]=k[n+1];f[l+2]=k[n+2];f[l+3]=k[n+3];f[l+4]=k[n+4];f[l+5]=k[n+5];f[l+6]=k[n+6];f[l+7]=k[n+7];f[l+8]=k[n+8];f[l+9]=k[n+9];f[l+10]=k[n+10];f[l+11]=k[n+11];f[l+12]=k[n+12];f[l+13]=k[n+13];f[l+14]=k[n+14];f[l+15]=k[n+15]}}else f=N.subarray(e>>2,e+64*b>>2);X.uniformMatrix4fv(Y(a), +!!c,f)}},Ac:function(a){a=cd[a];X.useProgram(a);X.Ye=a},Bc:function(a,b){X.vertexAttrib1f(a,b)},Cc:function(a,b){X.vertexAttrib2f(a,N[b>>2],N[b+4>>2])},Dc:function(a,b){X.vertexAttrib3f(a,N[b>>2],N[b+4>>2],N[b+8>>2])},Ec:function(a,b){X.vertexAttrib4f(a,N[b>>2],N[b+4>>2],N[b+8>>2],N[b+12>>2])},fc:function(a,b){X.vertexAttribDivisor(a,b)},gc:function(a,b,c,e,f){X.vertexAttribIPointer(a,b,c,e,f)},Fc:function(a,b,c,e,f,k){X.vertexAttribPointer(a,b,c,!!e,f,k)},Gc:function(a,b,c,e){X.viewport(a,b,c,e)}, +eb:function(a,b,c,e){X.waitSync(jd[a],b,(c>>>0)+4294967296*e)},nb:function(a){var b=B.length;a>>>=0;if(2147483648=c;c*=2){var e=b*(1+.2/c);e=Math.min(e,a+100663296);e=Math.max(a,e);0>>16);cb();var f=1;break a}catch(k){}f=void 0}if(f)return!0}return!1},gb:function(){return t?t.kf:0},qb:function(a,b){var c=0;Cd().forEach(function(e,f){var k=b+c;f=G[a+4*f>>2]=k;for(k=0;k> +0]=e.charCodeAt(k);ab[f>>0]=0;c+=e.length+1});return 0},rb:function(a,b){var c=Cd();G[a>>2]=c.length;var e=0;c.forEach(function(f){e+=f.length+1});G[b>>2]=e;return 0},Bb:function(a){if(!(noExitRuntime||0>2]=b;return 0},wb:function(a,b,c,e){a=wb.ff(a);b=wb.$e(a,b,c);G[e>>2]=b;return 0},ib:function(){},V:function(a,b,c,e){for(var f=0,k=0;k>2],n=G[b+4>> +2];b+=8;for(var q=0;q>2]=f;return 0},b:function(){return Ha},q:Sd,o:Td,m:Ud,S:Vd,aa:Wd,$:Xd,z:Yd,y:Zd,t:$d,x:ae,ba:be,Cb:ce,Db:de,c:function(a){Ha=a},kb:function(a,b,c,e){return Jd(a,b,c,e)}}; +(function(){function a(f){r.asm=f.exports;Ka=r.asm.cd;cb();db=r.asm.ed;fb.unshift(r.asm.dd);jb--;r.monitorRunDependencies&&r.monitorRunDependencies(jb);0==jb&&(null!==kb&&(clearInterval(kb),kb=null),lb&&(f=lb,lb=null,f()))}function b(f){a(f.instance)}function c(f){return qb().then(function(k){return WebAssembly.instantiate(k,e)}).then(function(k){return k}).then(f,function(k){Fa("failed to asynchronously prepare wasm: "+k);Ja(k)})}var e={a:ee};jb++;r.monitorRunDependencies&&r.monitorRunDependencies(jb); +if(r.instantiateWasm)try{return r.instantiateWasm(e,a)}catch(f){return Fa("Module.instantiateWasm callback failed with error: "+f),!1}(function(){return Ia||"function"!==typeof WebAssembly.instantiateStreaming||mb()||nb.startsWith("file://")||"function"!==typeof fetch?c(b):fetch(nb,{credentials:"same-origin"}).then(function(f){return WebAssembly.instantiateStreaming(f,e).then(b,function(k){Fa("wasm streaming compile failed: "+k);Fa("falling back to ArrayBuffer instantiation");return c(b)})})})().catch(ca); +return{}})();r.___wasm_call_ctors=function(){return(r.___wasm_call_ctors=r.asm.dd).apply(null,arguments)};var Rd=r.___errno_location=function(){return(Rd=r.___errno_location=r.asm.fd).apply(null,arguments)},Cc=r._free=function(){return(Cc=r._free=r.asm.gd).apply(null,arguments)},vd=r._malloc=function(){return(vd=r._malloc=r.asm.hd).apply(null,arguments)},Bc=r.___getTypeName=function(){return(Bc=r.___getTypeName=r.asm.id).apply(null,arguments)}; +r.___embind_register_native_and_builtin_types=function(){return(r.___embind_register_native_and_builtin_types=r.asm.jd).apply(null,arguments)};var Qd=r._memalign=function(){return(Qd=r._memalign=r.asm.kd).apply(null,arguments)},fe=r._setThrew=function(){return(fe=r._setThrew=r.asm.ld).apply(null,arguments)},ge=r.stackSave=function(){return(ge=r.stackSave=r.asm.md).apply(null,arguments)},he=r.stackRestore=function(){return(he=r.stackRestore=r.asm.nd).apply(null,arguments)}; +r.dynCall_viji=function(){return(r.dynCall_viji=r.asm.od).apply(null,arguments)};r.dynCall_vijiii=function(){return(r.dynCall_vijiii=r.asm.pd).apply(null,arguments)};r.dynCall_viiiiij=function(){return(r.dynCall_viiiiij=r.asm.qd).apply(null,arguments)};r.dynCall_iiiji=function(){return(r.dynCall_iiiji=r.asm.rd).apply(null,arguments)};r.dynCall_jii=function(){return(r.dynCall_jii=r.asm.sd).apply(null,arguments)};r.dynCall_vij=function(){return(r.dynCall_vij=r.asm.td).apply(null,arguments)}; +r.dynCall_iiij=function(){return(r.dynCall_iiij=r.asm.ud).apply(null,arguments)};r.dynCall_iiiij=function(){return(r.dynCall_iiiij=r.asm.vd).apply(null,arguments)};r.dynCall_viij=function(){return(r.dynCall_viij=r.asm.wd).apply(null,arguments)};r.dynCall_viiij=function(){return(r.dynCall_viiij=r.asm.xd).apply(null,arguments)};r.dynCall_ji=function(){return(r.dynCall_ji=r.asm.yd).apply(null,arguments)};r.dynCall_iij=function(){return(r.dynCall_iij=r.asm.zd).apply(null,arguments)}; +r.dynCall_jiiii=function(){return(r.dynCall_jiiii=r.asm.Ad).apply(null,arguments)};r.dynCall_jiiiiii=function(){return(r.dynCall_jiiiiii=r.asm.Bd).apply(null,arguments)};r.dynCall_jiiiiji=function(){return(r.dynCall_jiiiiji=r.asm.Cd).apply(null,arguments)};r.dynCall_iijj=function(){return(r.dynCall_iijj=r.asm.Dd).apply(null,arguments)};r.dynCall_iiji=function(){return(r.dynCall_iiji=r.asm.Ed).apply(null,arguments)};r.dynCall_iijjiii=function(){return(r.dynCall_iijjiii=r.asm.Fd).apply(null,arguments)}; +r.dynCall_vijjjii=function(){return(r.dynCall_vijjjii=r.asm.Gd).apply(null,arguments)};r.dynCall_jiji=function(){return(r.dynCall_jiji=r.asm.Hd).apply(null,arguments)};r.dynCall_viijii=function(){return(r.dynCall_viijii=r.asm.Id).apply(null,arguments)};r.dynCall_iiiiij=function(){return(r.dynCall_iiiiij=r.asm.Jd).apply(null,arguments)};r.dynCall_iiiiijj=function(){return(r.dynCall_iiiiijj=r.asm.Kd).apply(null,arguments)}; +r.dynCall_iiiiiijj=function(){return(r.dynCall_iiiiiijj=r.asm.Ld).apply(null,arguments)};function ae(a,b,c,e,f){var k=ge();try{O(a)(b,c,e,f)}catch(l){he(k);if(l!==l+0&&"longjmp"!==l)throw l;fe(1,0)}}function Td(a,b,c){var e=ge();try{return O(a)(b,c)}catch(f){he(e);if(f!==f+0&&"longjmp"!==f)throw f;fe(1,0)}}function Zd(a,b,c){var e=ge();try{O(a)(b,c)}catch(f){he(e);if(f!==f+0&&"longjmp"!==f)throw f;fe(1,0)}} +function Sd(a,b){var c=ge();try{return O(a)(b)}catch(e){he(c);if(e!==e+0&&"longjmp"!==e)throw e;fe(1,0)}}function Yd(a,b){var c=ge();try{O(a)(b)}catch(e){he(c);if(e!==e+0&&"longjmp"!==e)throw e;fe(1,0)}}function Ud(a,b,c,e){var f=ge();try{return O(a)(b,c,e)}catch(k){he(f);if(k!==k+0&&"longjmp"!==k)throw k;fe(1,0)}}function $d(a,b,c,e){var f=ge();try{O(a)(b,c,e)}catch(k){he(f);if(k!==k+0&&"longjmp"!==k)throw k;fe(1,0)}} +function be(a,b,c,e,f,k){var l=ge();try{O(a)(b,c,e,f,k)}catch(n){he(l);if(n!==n+0&&"longjmp"!==n)throw n;fe(1,0)}}function Wd(a,b,c,e,f,k,l){var n=ge();try{return O(a)(b,c,e,f,k,l)}catch(q){he(n);if(q!==q+0&&"longjmp"!==q)throw q;fe(1,0)}}function Vd(a,b,c,e,f){var k=ge();try{return O(a)(b,c,e,f)}catch(l){he(k);if(l!==l+0&&"longjmp"!==l)throw l;fe(1,0)}}function de(a,b,c,e,f,k,l,n,q,x){var y=ge();try{O(a)(b,c,e,f,k,l,n,q,x)}catch(C){he(y);if(C!==C+0&&"longjmp"!==C)throw C;fe(1,0)}} +function ce(a,b,c,e,f,k,l){var n=ge();try{O(a)(b,c,e,f,k,l)}catch(q){he(n);if(q!==q+0&&"longjmp"!==q)throw q;fe(1,0)}}function Xd(a,b,c,e,f,k,l,n,q,x){var y=ge();try{return O(a)(b,c,e,f,k,l,n,q,x)}catch(C){he(y);if(C!==C+0&&"longjmp"!==C)throw C;fe(1,0)}}var ie;function Ea(a){this.name="ExitStatus";this.message="Program terminated with exit("+a+")";this.status=a}lb=function je(){ie||ke();ie||(lb=je)}; +function ke(){function a(){if(!ie&&(ie=!0,r.calledRun=!0,!La)){rb(fb);ba(r);if(r.onRuntimeInitialized)r.onRuntimeInitialized();if(r.postRun)for("function"==typeof r.postRun&&(r.postRun=[r.postRun]);r.postRun.length;){var b=r.postRun.shift();hb.unshift(b)}rb(hb)}}if(!(0 { + var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined; + if (typeof __filename !== 'undefined') _scriptDir = _scriptDir || __filename; + return ( +function(CanvasKitInit) { + CanvasKitInit = CanvasKitInit || {}; + + +null;var r;r||(r=typeof CanvasKitInit !== 'undefined' ? CanvasKitInit : {});var aa=Object.assign,ba,ca;r.ready=new Promise(function(a,b){ba=a;ca=b}); +(function(a){a.Md=a.Md||[];a.Md.push(function(){a.MakeSWCanvasSurface=function(b){var c=b;if("CANVAS"!==c.tagName&&(c=document.getElementById(b),!c))throw"Canvas with id "+b+" was not found";if(b=a.MakeSurface(c.width,c.height))b.ke=c;return b};a.MakeCanvasSurface||(a.MakeCanvasSurface=a.MakeSWCanvasSurface);a.MakeSurface=function(b,c){var e={width:b,height:c,colorType:a.ColorType.RGBA_8888,alphaType:a.AlphaType.Unpremul,colorSpace:a.ColorSpace.SRGB},f=b*c*4,k=a._malloc(f);if(e=a.Surface._makeRasterDirect(e, +k,4*b))e.ke=null,e.Qe=b,e.Ne=c,e.Oe=f,e.ue=k,e.getCanvas().clear(a.TRANSPARENT);return e};a.MakeRasterDirectSurface=function(b,c,e){return a.Surface._makeRasterDirect(b,c.byteOffset,e)};a.Surface.prototype.flush=function(b){a.Jd(this.Id);this._flush();if(this.ke){var c=new Uint8ClampedArray(a.HEAPU8.buffer,this.ue,this.Oe);c=new ImageData(c,this.Qe,this.Ne);b?this.ke.getContext("2d").putImageData(c,0,0,b[0],b[1],b[2]-b[0],b[3]-b[1]):this.ke.getContext("2d").putImageData(c,0,0)}};a.Surface.prototype.dispose= +function(){this.ue&&a._free(this.ue);this.delete()};a.Jd=a.Jd||function(){};a.le=a.le||function(){return null}})})(r); +(function(a){a.Md=a.Md||[];a.Md.push(function(){function b(n,q,x){return n&&n.hasOwnProperty(q)?n[q]:x}function c(n){var q=ea(fa);fa[q]=n;return q}function e(n){return n.naturalHeight||n.videoHeight||n.displayHeight||n.height}function f(n){return n.naturalWidth||n.videoWidth||n.displayWidth||n.width}function k(n,q,x,y){n.bindTexture(n.TEXTURE_2D,q);y||x.alphaType!==a.AlphaType.Premul||n.pixelStorei(n.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!0);return q}function l(n,q,x){x||q.alphaType!==a.AlphaType.Premul|| +n.pixelStorei(n.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!1);n.bindTexture(n.TEXTURE_2D,null)}a.GetWebGLContext=function(n,q){if(!n)throw"null canvas passed into makeWebGLContext";var x={alpha:b(q,"alpha",1),depth:b(q,"depth",1),stencil:b(q,"stencil",8),antialias:b(q,"antialias",0),premultipliedAlpha:b(q,"premultipliedAlpha",1),preserveDrawingBuffer:b(q,"preserveDrawingBuffer",0),preferLowPowerToHighPerformance:b(q,"preferLowPowerToHighPerformance",0),failIfMajorPerformanceCaveat:b(q,"failIfMajorPerformanceCaveat", +0),enableExtensionsByDefault:b(q,"enableExtensionsByDefault",1),explicitSwapControl:b(q,"explicitSwapControl",0),renderViaOffscreenBackBuffer:b(q,"renderViaOffscreenBackBuffer",0)};x.majorVersion=q&&q.majorVersion?q.majorVersion:"undefined"!==typeof WebGL2RenderingContext?2:1;if(x.explicitSwapControl)throw"explicitSwapControl is not supported";n=ha(n,x);if(!n)return 0;ia(n);u.Ud.getExtension("WEBGL_debug_renderer_info");return n};a.deleteContext=function(n){u===ja[n]&&(u=null);"object"===typeof JSEvents&& +JSEvents.If(ja[n].Ud.canvas);ja[n]&&ja[n].Ud.canvas&&(ja[n].Ud.canvas.Le=void 0);ja[n]=null};a._setTextureCleanup({deleteTexture:function(n,q){var x=fa[q];x&&ja[n].Ud.deleteTexture(x);fa[q]=null}});a.MakeWebGLContext=function(n){if(!this.Jd(n))return null;var q=this._MakeGrContext();if(!q)return null;q.Id=n;var x=q.delete.bind(q);q["delete"]=function(){a.Jd(this.Id);x()}.bind(q);return u.xe=q};a.MakeGrContext=a.MakeWebGLContext;a.GrDirectContext.prototype.getResourceCacheLimitBytes=function(){a.Jd(this.Id); +this._getResourceCacheLimitBytes()};a.GrDirectContext.prototype.getResourceCacheUsageBytes=function(){a.Jd(this.Id);this._getResourceCacheUsageBytes()};a.GrDirectContext.prototype.releaseResourcesAndAbandonContext=function(){a.Jd(this.Id);this._releaseResourcesAndAbandonContext()};a.GrDirectContext.prototype.setResourceCacheLimitBytes=function(n){a.Jd(this.Id);this._setResourceCacheLimitBytes(n)};a.MakeOnScreenGLSurface=function(n,q,x,y,C,E){if(!this.Jd(n.Id))return null;q=void 0===C||void 0===E? +this._MakeOnScreenGLSurface(n,q,x,y):this._MakeOnScreenGLSurface(n,q,x,y,C,E);if(!q)return null;q.Id=n.Id;return q};a.MakeRenderTarget=function(){var n=arguments[0];if(!this.Jd(n.Id))return null;if(3===arguments.length){var q=this._MakeRenderTargetWH(n,arguments[1],arguments[2]);if(!q)return null}else if(2===arguments.length){if(q=this._MakeRenderTargetII(n,arguments[1]),!q)return null}else return null;q.Id=n.Id;return q};a.MakeWebGLCanvasSurface=function(n,q,x){q=q||null;var y=n,C="undefined"!== +typeof OffscreenCanvas&&y instanceof OffscreenCanvas;if(!("undefined"!==typeof HTMLCanvasElement&&y instanceof HTMLCanvasElement||C||(y=document.getElementById(n),y)))throw"Canvas with id "+n+" was not found";n=this.GetWebGLContext(y,x);if(!n||0>n)throw"failed to create webgl context: err "+n;n=this.MakeWebGLContext(n);q=this.MakeOnScreenGLSurface(n,y.width,y.height,q);return q?q:(q=y.cloneNode(!0),y.parentNode.replaceChild(q,y),q.classList.add("ck-replaced"),a.MakeSWCanvasSurface(q))};a.MakeCanvasSurface= +a.MakeWebGLCanvasSurface;a.Surface.prototype.makeImageFromTexture=function(n,q){a.Jd(this.Id);n=c(n);if(q=this._makeImageFromTexture(this.Id,n,q))q.ee=n;return q};a.Surface.prototype.makeImageFromTextureSource=function(n,q,x){q||(q={height:e(n),width:f(n),colorType:a.ColorType.RGBA_8888,alphaType:x?a.AlphaType.Premul:a.AlphaType.Unpremul});q.colorSpace||(q.colorSpace=a.ColorSpace.SRGB);a.Jd(this.Id);var y=u.Ud;x=k(y,y.createTexture(),q,x);2===u.version?y.texImage2D(y.TEXTURE_2D,0,y.RGBA,q.width,q.height, +0,y.RGBA,y.UNSIGNED_BYTE,n):y.texImage2D(y.TEXTURE_2D,0,y.RGBA,y.RGBA,y.UNSIGNED_BYTE,n);l(y,q);this._resetContext();return this.makeImageFromTexture(x,q)};a.Surface.prototype.updateTextureFromSource=function(n,q,x){if(n.ee){a.Jd(this.Id);var y=n.getImageInfo(),C=u.Ud,E=k(C,fa[n.ee],y,x);2===u.version?C.texImage2D(C.TEXTURE_2D,0,C.RGBA,f(q),e(q),0,C.RGBA,C.UNSIGNED_BYTE,q):C.texImage2D(C.TEXTURE_2D,0,C.RGBA,C.RGBA,C.UNSIGNED_BYTE,q);l(C,y,x);this._resetContext();fa[n.ee]=null;n.ee=c(E);y.colorSpace= +n.getColorSpace();q=this._makeImageFromTexture(this.Id,n.ee,y);x=n.Hd.Kd;C=n.Hd.Pd;n.Hd.Kd=q.Hd.Kd;n.Hd.Pd=q.Hd.Pd;q.Hd.Kd=x;q.Hd.Pd=C;q.delete();y.colorSpace.delete()}};a.MakeLazyImageFromTextureSource=function(n,q,x){q||(q={height:e(n),width:f(n),colorType:a.ColorType.RGBA_8888,alphaType:x?a.AlphaType.Premul:a.AlphaType.Unpremul});q.colorSpace||(q.colorSpace=a.ColorSpace.SRGB);var y={makeTexture:function(){var C=u,E=C.Ud,v=k(E,E.createTexture(),q,x);2===C.version?E.texImage2D(E.TEXTURE_2D,0,E.RGBA, +q.width,q.height,0,E.RGBA,E.UNSIGNED_BYTE,n):E.texImage2D(E.TEXTURE_2D,0,E.RGBA,E.RGBA,E.UNSIGNED_BYTE,n);l(E,q,x);return c(v)},freeSrc:function(){}};"VideoFrame"===n.constructor.name&&(y.freeSrc=function(){n.close()});return a.Image._makeFromGenerator(q,y)};a.Jd=function(n){return n?ia(n):!1};a.le=function(){return u&&u.xe&&!u.xe.isDeleted()?u.xe:null}})})(r); +(function(a){function b(g){return(f(255*g[3])<<24|f(255*g[0])<<16|f(255*g[1])<<8|f(255*g[2])<<0)>>>0}function c(g){if(g&&g._ck)return g;if(g instanceof Float32Array){for(var d=Math.floor(g.length/4),h=new Uint32Array(d),m=0;mz;z++)a.HEAPF32[t+m]=g[w][z],m++;g=h}else g=M;d.Rd=g}else throw"Invalid argument to copyFlexibleColorArray, Not a color array "+typeof g;return d}function q(g){if(!g)return M;var d=R.toTypedArray();if(g.length){if(6===g.length||9===g.length)return l(g,"HEAPF32",I),6===g.length&&a.HEAPF32.set(od,6+I/4),I;if(16===g.length)return d[0]=g[0],d[1]=g[1],d[2]=g[3],d[3]=g[4],d[4]=g[5],d[5]=g[7],d[6]=g[12],d[7]=g[13],d[8]=g[15],I;throw"invalid matrix size";}if(void 0=== +g.m11)throw"invalid matrix argument";d[0]=g.m11;d[1]=g.m21;d[2]=g.m41;d[3]=g.m12;d[4]=g.m22;d[5]=g.m42;d[6]=g.m14;d[7]=g.m24;d[8]=g.m44;return I}function x(g){if(!g)return M;var d=da.toTypedArray();if(g.length){if(16!==g.length&&6!==g.length&&9!==g.length)throw"invalid matrix size";if(16===g.length)return l(g,"HEAPF32",Z);d.fill(0);d[0]=g[0];d[1]=g[1];d[3]=g[2];d[4]=g[3];d[5]=g[4];d[7]=g[5];d[10]=1;d[12]=g[6];d[13]=g[7];d[15]=g[8];6===g.length&&(d[12]=0,d[13]=0,d[15]=1);return Z}if(void 0===g.m11)throw"invalid matrix argument"; +d[0]=g.m11;d[1]=g.m21;d[2]=g.m31;d[3]=g.m41;d[4]=g.m12;d[5]=g.m22;d[6]=g.m32;d[7]=g.m42;d[8]=g.m13;d[9]=g.m23;d[10]=g.m33;d[11]=g.m43;d[12]=g.m14;d[13]=g.m24;d[14]=g.m34;d[15]=g.m44;return Z}function y(g,d){return l(g,"HEAPF32",d||ua)}function C(g,d,h,m){var t=Ma.toTypedArray();t[0]=g;t[1]=d;t[2]=h;t[3]=m;return ua}function E(g){for(var d=new Float32Array(4),h=0;4>h;h++)d[h]=a.HEAPF32[g/4+h];return d}function v(g,d){return l(g,"HEAPF32",d||V)}function D(g,d){return l(g,"HEAPF32",d||Gb)}a.Color=function(g, +d,h,m){void 0===m&&(m=1);return a.Color4f(f(g)/255,f(d)/255,f(h)/255,m)};a.ColorAsInt=function(g,d,h,m){void 0===m&&(m=255);return(f(m)<<24|f(g)<<16|f(d)<<8|f(h)<<0&268435455)>>>0};a.Color4f=function(g,d,h,m){void 0===m&&(m=1);return Float32Array.of(g,d,h,m)};Object.defineProperty(a,"TRANSPARENT",{get:function(){return a.Color4f(0,0,0,0)}});Object.defineProperty(a,"BLACK",{get:function(){return a.Color4f(0,0,0,1)}});Object.defineProperty(a,"WHITE",{get:function(){return a.Color4f(1,1,1,1)}});Object.defineProperty(a, +"RED",{get:function(){return a.Color4f(1,0,0,1)}});Object.defineProperty(a,"GREEN",{get:function(){return a.Color4f(0,1,0,1)}});Object.defineProperty(a,"BLUE",{get:function(){return a.Color4f(0,0,1,1)}});Object.defineProperty(a,"YELLOW",{get:function(){return a.Color4f(1,1,0,1)}});Object.defineProperty(a,"CYAN",{get:function(){return a.Color4f(0,1,1,1)}});Object.defineProperty(a,"MAGENTA",{get:function(){return a.Color4f(1,0,1,1)}});a.getColorComponents=function(g){return[Math.floor(255*g[0]),Math.floor(255* +g[1]),Math.floor(255*g[2]),g[3]]};a.parseColorString=function(g,d){g=g.toLowerCase();if(g.startsWith("#")){d=255;switch(g.length){case 9:d=parseInt(g.slice(7,9),16);case 7:var h=parseInt(g.slice(1,3),16);var m=parseInt(g.slice(3,5),16);var t=parseInt(g.slice(5,7),16);break;case 5:d=17*parseInt(g.slice(4,5),16);case 4:h=17*parseInt(g.slice(1,2),16),m=17*parseInt(g.slice(2,3),16),t=17*parseInt(g.slice(3,4),16)}return a.Color(h,m,t,d/255)}return g.startsWith("rgba")?(g=g.slice(5,-1),g=g.split(","),a.Color(+g[0], ++g[1],+g[2],e(g[3]))):g.startsWith("rgb")?(g=g.slice(4,-1),g=g.split(","),a.Color(+g[0],+g[1],+g[2],e(g[3]))):g.startsWith("gray(")||g.startsWith("hsl")||!d||(g=d[g],void 0===g)?a.BLACK:g};a.multiplyByAlpha=function(g,d){g=g.slice();g[3]=Math.max(0,Math.min(g[3]*d,1));return g};a.Malloc=function(g,d){var h=a._malloc(d*g.BYTES_PER_ELEMENT);return{_ck:!0,length:d,byteOffset:h,Yd:null,subarray:function(m,t){m=this.toTypedArray().subarray(m,t);m._ck=!0;return m},toTypedArray:function(){if(this.Yd&&this.Yd.length)return this.Yd; +this.Yd=new g(a.HEAPU8.buffer,h,d);this.Yd._ck=!0;return this.Yd}}};a.Free=function(g){a._free(g.byteOffset);g.byteOffset=M;g.toTypedArray=null;g.Yd=null};var I=M,R,Z=M,da,ua=M,Ma,va,V=M,pc,Ba=M,qc,Hb=M,rc,Ib=M,Jb,gb=M,sc,Gb=M,tc,uc=M,od=Float32Array.of(0,0,1),M=0;a.onRuntimeInitialized=function(){function g(d,h,m,t,w,z,F){z||(z=4*t.width,t.colorType===a.ColorType.RGBA_F16?z*=2:t.colorType===a.ColorType.RGBA_F32&&(z*=4));var K=z*t.height;var H=w?w.byteOffset:a._malloc(K);if(F?!d._readPixels(t,H,z, +h,m,F):!d._readPixels(t,H,z,h,m))return w||a._free(H),null;if(w)return w.toTypedArray();switch(t.colorType){case a.ColorType.RGBA_8888:case a.ColorType.RGBA_F16:d=(new Uint8Array(a.HEAPU8.buffer,H,K)).slice();break;case a.ColorType.RGBA_F32:d=(new Float32Array(a.HEAPU8.buffer,H,K)).slice();break;default:return null}a._free(H);return d}Ma=a.Malloc(Float32Array,4);ua=Ma.byteOffset;da=a.Malloc(Float32Array,16);Z=da.byteOffset;R=a.Malloc(Float32Array,9);I=R.byteOffset;sc=a.Malloc(Float32Array,12);Gb= +sc.byteOffset;tc=a.Malloc(Float32Array,12);uc=tc.byteOffset;va=a.Malloc(Float32Array,4);V=va.byteOffset;pc=a.Malloc(Float32Array,4);Ba=pc.byteOffset;qc=a.Malloc(Float32Array,3);Hb=qc.byteOffset;rc=a.Malloc(Float32Array,3);Ib=rc.byteOffset;Jb=a.Malloc(Int32Array,4);gb=Jb.byteOffset;a.ColorSpace.SRGB=a.ColorSpace._MakeSRGB();a.ColorSpace.DISPLAY_P3=a.ColorSpace._MakeDisplayP3();a.ColorSpace.ADOBE_RGB=a.ColorSpace._MakeAdobeRGB();a.GlyphRunFlags={IsWhiteSpace:a._GlyphRunFlags_isWhiteSpace};a.Path.MakeFromCmds= +function(d){var h=l(d,"HEAPF32"),m=a.Path._MakeFromCmds(h,d.length);k(h,d);return m};a.Path.MakeFromVerbsPointsWeights=function(d,h,m){var t=l(d,"HEAPU8"),w=l(h,"HEAPF32"),z=l(m,"HEAPF32"),F=a.Path._MakeFromVerbsPointsWeights(t,d.length,w,h.length,z,m&&m.length||0);k(t,d);k(w,h);k(z,m);return F};a.Path.prototype.addArc=function(d,h,m){d=v(d);this._addArc(d,h,m);return this};a.Path.prototype.addCircle=function(d,h,m,t){this._addCircle(d,h,m,!!t);return this};a.Path.prototype.addOval=function(d,h,m){void 0=== +m&&(m=1);d=v(d);this._addOval(d,!!h,m);return this};a.Path.prototype.addPath=function(){var d=Array.prototype.slice.call(arguments),h=d[0],m=!1;"boolean"===typeof d[d.length-1]&&(m=d.pop());if(1===d.length)this._addPath(h,1,0,0,0,1,0,0,0,1,m);else if(2===d.length)d=d[1],this._addPath(h,d[0],d[1],d[2],d[3],d[4],d[5],d[6]||0,d[7]||0,d[8]||1,m);else if(7===d.length||10===d.length)this._addPath(h,d[1],d[2],d[3],d[4],d[5],d[6],d[7]||0,d[8]||0,d[9]||1,m);else return null;return this};a.Path.prototype.addPoly= +function(d,h){var m=l(d,"HEAPF32");this._addPoly(m,d.length/2,h);k(m,d);return this};a.Path.prototype.addRect=function(d,h){d=v(d);this._addRect(d,!!h);return this};a.Path.prototype.addRRect=function(d,h){d=D(d);this._addRRect(d,!!h);return this};a.Path.prototype.addVerbsPointsWeights=function(d,h,m){var t=l(d,"HEAPU8"),w=l(h,"HEAPF32"),z=l(m,"HEAPF32");this._addVerbsPointsWeights(t,d.length,w,h.length,z,m&&m.length||0);k(t,d);k(w,h);k(z,m)};a.Path.prototype.arc=function(d,h,m,t,w,z){d=a.LTRBRect(d- +m,h-m,d+m,h+m);w=(w-t)/Math.PI*180-360*!!z;z=new a.Path;z.addArc(d,t/Math.PI*180,w);this.addPath(z,!0);z.delete();return this};a.Path.prototype.arcToOval=function(d,h,m,t){d=v(d);this._arcToOval(d,h,m,t);return this};a.Path.prototype.arcToRotated=function(d,h,m,t,w,z,F){this._arcToRotated(d,h,m,!!t,!!w,z,F);return this};a.Path.prototype.arcToTangent=function(d,h,m,t,w){this._arcToTangent(d,h,m,t,w);return this};a.Path.prototype.close=function(){this._close();return this};a.Path.prototype.conicTo= +function(d,h,m,t,w){this._conicTo(d,h,m,t,w);return this};a.Path.prototype.computeTightBounds=function(d){this._computeTightBounds(V);var h=va.toTypedArray();return d?(d.set(h),d):h.slice()};a.Path.prototype.cubicTo=function(d,h,m,t,w,z){this._cubicTo(d,h,m,t,w,z);return this};a.Path.prototype.dash=function(d,h,m){return this._dash(d,h,m)?this:null};a.Path.prototype.getBounds=function(d){this._getBounds(V);var h=va.toTypedArray();return d?(d.set(h),d):h.slice()};a.Path.prototype.lineTo=function(d, +h){this._lineTo(d,h);return this};a.Path.prototype.moveTo=function(d,h){this._moveTo(d,h);return this};a.Path.prototype.offset=function(d,h){this._transform(1,0,d,0,1,h,0,0,1);return this};a.Path.prototype.quadTo=function(d,h,m,t){this._quadTo(d,h,m,t);return this};a.Path.prototype.rArcTo=function(d,h,m,t,w,z,F){this._rArcTo(d,h,m,t,w,z,F);return this};a.Path.prototype.rConicTo=function(d,h,m,t,w){this._rConicTo(d,h,m,t,w);return this};a.Path.prototype.rCubicTo=function(d,h,m,t,w,z){this._rCubicTo(d, +h,m,t,w,z);return this};a.Path.prototype.rLineTo=function(d,h){this._rLineTo(d,h);return this};a.Path.prototype.rMoveTo=function(d,h){this._rMoveTo(d,h);return this};a.Path.prototype.rQuadTo=function(d,h,m,t){this._rQuadTo(d,h,m,t);return this};a.Path.prototype.stroke=function(d){d=d||{};d.width=d.width||1;d.miter_limit=d.miter_limit||4;d.cap=d.cap||a.StrokeCap.Butt;d.join=d.join||a.StrokeJoin.Miter;d.precision=d.precision||1;return this._stroke(d)?this:null};a.Path.prototype.transform=function(){if(1=== +arguments.length){var d=arguments[0];this._transform(d[0],d[1],d[2],d[3],d[4],d[5],d[6]||0,d[7]||0,d[8]||1)}else if(6===arguments.length||9===arguments.length)d=arguments,this._transform(d[0],d[1],d[2],d[3],d[4],d[5],d[6]||0,d[7]||0,d[8]||1);else throw"transform expected to take 1 or 9 arguments. Got "+arguments.length;return this};a.Path.prototype.trim=function(d,h,m){return this._trim(d,h,!!m)?this:null};a.Image.prototype.encodeToBytes=function(d,h){var m=a.le();d=d||a.ImageFormat.PNG;h=h||100; +return m?this._encodeToBytes(d,h,m):this._encodeToBytes(d,h)};a.Image.prototype.makeShaderCubic=function(d,h,m,t,w){w=q(w);return this._makeShaderCubic(d,h,m,t,w)};a.Image.prototype.makeShaderOptions=function(d,h,m,t,w){w=q(w);return this._makeShaderOptions(d,h,m,t,w)};a.Image.prototype.readPixels=function(d,h,m,t,w){var z=a.le();return g(this,d,h,m,t,w,z)};a.Canvas.prototype.clear=function(d){a.Jd(this.Id);d=y(d);this._clear(d)};a.Canvas.prototype.clipRRect=function(d,h,m){a.Jd(this.Id);d=D(d);this._clipRRect(d, +h,m)};a.Canvas.prototype.clipRect=function(d,h,m){a.Jd(this.Id);d=v(d);this._clipRect(d,h,m)};a.Canvas.prototype.concat=function(d){a.Jd(this.Id);d=x(d);this._concat(d)};a.Canvas.prototype.drawArc=function(d,h,m,t,w){a.Jd(this.Id);d=v(d);this._drawArc(d,h,m,t,w)};a.Canvas.prototype.drawAtlas=function(d,h,m,t,w,z,F){if(d&&t&&h&&m&&h.length===m.length){a.Jd(this.Id);w||(w=a.BlendMode.SrcOver);var K=l(h,"HEAPF32"),H=l(m,"HEAPF32"),S=m.length/4,p=l(c(z),"HEAPU32");if(F&&"B"in F&&"C"in F)this._drawAtlasCubic(d, +H,K,p,S,w,F.B,F.C,t);else{let A=a.FilterMode.Linear,L=a.MipmapMode.None;F&&(A=F.filter,"mipmap"in F&&(L=F.mipmap));this._drawAtlasOptions(d,H,K,p,S,w,A,L,t)}k(K,h);k(H,m);k(p,z)}};a.Canvas.prototype.drawCircle=function(d,h,m,t){a.Jd(this.Id);this._drawCircle(d,h,m,t)};a.Canvas.prototype.drawColor=function(d,h){a.Jd(this.Id);d=y(d);void 0!==h?this._drawColor(d,h):this._drawColor(d)};a.Canvas.prototype.drawColorInt=function(d,h){a.Jd(this.Id);this._drawColorInt(d,h||a.BlendMode.SrcOver)};a.Canvas.prototype.drawColorComponents= +function(d,h,m,t,w){a.Jd(this.Id);d=C(d,h,m,t);void 0!==w?this._drawColor(d,w):this._drawColor(d)};a.Canvas.prototype.drawDRRect=function(d,h,m){a.Jd(this.Id);d=D(d,Gb);h=D(h,uc);this._drawDRRect(d,h,m)};a.Canvas.prototype.drawImage=function(d,h,m,t){a.Jd(this.Id);this._drawImage(d,h,m,t||null)};a.Canvas.prototype.drawImageCubic=function(d,h,m,t,w,z){a.Jd(this.Id);this._drawImageCubic(d,h,m,t,w,z||null)};a.Canvas.prototype.drawImageOptions=function(d,h,m,t,w,z){a.Jd(this.Id);this._drawImageOptions(d, +h,m,t,w,z||null)};a.Canvas.prototype.drawImageNine=function(d,h,m,t,w){a.Jd(this.Id);h=l(h,"HEAP32",gb);m=v(m);this._drawImageNine(d,h,m,t,w||null)};a.Canvas.prototype.drawImageRect=function(d,h,m,t,w){a.Jd(this.Id);v(h,V);v(m,Ba);this._drawImageRect(d,V,Ba,t,!!w)};a.Canvas.prototype.drawImageRectCubic=function(d,h,m,t,w,z){a.Jd(this.Id);v(h,V);v(m,Ba);this._drawImageRectCubic(d,V,Ba,t,w,z||null)};a.Canvas.prototype.drawImageRectOptions=function(d,h,m,t,w,z){a.Jd(this.Id);v(h,V);v(m,Ba);this._drawImageRectOptions(d, +V,Ba,t,w,z||null)};a.Canvas.prototype.drawLine=function(d,h,m,t,w){a.Jd(this.Id);this._drawLine(d,h,m,t,w)};a.Canvas.prototype.drawOval=function(d,h){a.Jd(this.Id);d=v(d);this._drawOval(d,h)};a.Canvas.prototype.drawPaint=function(d){a.Jd(this.Id);this._drawPaint(d)};a.Canvas.prototype.drawParagraph=function(d,h,m){a.Jd(this.Id);this._drawParagraph(d,h,m)};a.Canvas.prototype.drawPatch=function(d,h,m,t,w){if(24>d.length)throw"Need 12 cubic points";if(h&&4>h.length)throw"Need 4 colors";if(m&&8>m.length)throw"Need 4 shader coordinates"; +a.Jd(this.Id);const z=l(d,"HEAPF32"),F=h?l(c(h),"HEAPU32"):M,K=m?l(m,"HEAPF32"):M;t||(t=a.BlendMode.Modulate);this._drawPatch(z,F,K,t,w);k(K,m);k(F,h);k(z,d)};a.Canvas.prototype.drawPath=function(d,h){a.Jd(this.Id);this._drawPath(d,h)};a.Canvas.prototype.drawPicture=function(d){a.Jd(this.Id);this._drawPicture(d)};a.Canvas.prototype.drawPoints=function(d,h,m){a.Jd(this.Id);var t=l(h,"HEAPF32");this._drawPoints(d,t,h.length/2,m);k(t,h)};a.Canvas.prototype.drawRRect=function(d,h){a.Jd(this.Id);d=D(d); +this._drawRRect(d,h)};a.Canvas.prototype.drawRect=function(d,h){a.Jd(this.Id);d=v(d);this._drawRect(d,h)};a.Canvas.prototype.drawRect4f=function(d,h,m,t,w){a.Jd(this.Id);this._drawRect4f(d,h,m,t,w)};a.Canvas.prototype.drawShadow=function(d,h,m,t,w,z,F){a.Jd(this.Id);var K=l(w,"HEAPF32"),H=l(z,"HEAPF32");h=l(h,"HEAPF32",Hb);m=l(m,"HEAPF32",Ib);this._drawShadow(d,h,m,t,K,H,F);k(K,w);k(H,z)};a.getShadowLocalBounds=function(d,h,m,t,w,z,F){d=q(d);m=l(m,"HEAPF32",Hb);t=l(t,"HEAPF32",Ib);if(!this._getShadowLocalBounds(d, +h,m,t,w,z,V))return null;h=va.toTypedArray();return F?(F.set(h),F):h.slice()};a.Canvas.prototype.drawTextBlob=function(d,h,m,t){a.Jd(this.Id);this._drawTextBlob(d,h,m,t)};a.Canvas.prototype.drawVertices=function(d,h,m){a.Jd(this.Id);this._drawVertices(d,h,m)};a.Canvas.prototype.getDeviceClipBounds=function(d){this._getDeviceClipBounds(gb);var h=Jb.toTypedArray();d?d.set(h):d=h.slice();return d};a.Canvas.prototype.getLocalToDevice=function(){this._getLocalToDevice(Z);for(var d=Z,h=Array(16),m=0;16> +m;m++)h[m]=a.HEAPF32[d/4+m];return h};a.Canvas.prototype.getTotalMatrix=function(){this._getTotalMatrix(I);for(var d=Array(9),h=0;9>h;h++)d[h]=a.HEAPF32[I/4+h];return d};a.Canvas.prototype.makeSurface=function(d){d=this._makeSurface(d);d.Id=this.Id;return d};a.Canvas.prototype.readPixels=function(d,h,m,t,w){a.Jd(this.Id);return g(this,d,h,m,t,w)};a.Canvas.prototype.saveLayer=function(d,h,m,t){h=v(h);return this._saveLayer(d||null,h,m||null,t||0)};a.Canvas.prototype.writePixels=function(d,h,m,t,w, +z,F,K){if(d.byteLength%(h*m))throw"pixels length must be a multiple of the srcWidth * srcHeight";a.Jd(this.Id);var H=d.byteLength/(h*m);z=z||a.AlphaType.Unpremul;F=F||a.ColorType.RGBA_8888;K=K||a.ColorSpace.SRGB;var S=H*h;H=l(d,"HEAPU8");h=this._writePixels({width:h,height:m,colorType:F,alphaType:z,colorSpace:K},H,S,t,w);k(H,d);return h};a.ColorFilter.MakeBlend=function(d,h,m){d=y(d);m=m||a.ColorSpace.SRGB;return a.ColorFilter._MakeBlend(d,h,m)};a.ColorFilter.MakeMatrix=function(d){if(!d||20!==d.length)throw"invalid color matrix"; +var h=l(d,"HEAPF32"),m=a.ColorFilter._makeMatrix(h);k(h,d);return m};a.ContourMeasure.prototype.getPosTan=function(d,h){this._getPosTan(d,V);d=va.toTypedArray();return h?(h.set(d),h):d.slice()};a.ImageFilter.MakeDropShadow=function(d,h,m,t,w,z){w=y(w,ua);return a.ImageFilter._MakeDropShadow(d,h,m,t,w,z)};a.ImageFilter.MakeDropShadowOnly=function(d,h,m,t,w,z){w=y(w,ua);return a.ImageFilter._MakeDropShadowOnly(d,h,m,t,w,z)};a.ImageFilter.MakeImage=function(d,h,m,t){m=v(m,V);t=v(t,Ba);if("B"in h&&"C"in +h)return a.ImageFilter._MakeImageCubic(d,h.B,h.C,m,t);const w=h.filter;let z=a.MipmapMode.None;"mipmap"in h&&(z=h.mipmap);return a.ImageFilter._MakeImageOptions(d,w,z,m,t)};a.ImageFilter.MakeMatrixTransform=function(d,h,m){d=q(d);if("B"in h&&"C"in h)return a.ImageFilter._MakeMatrixTransformCubic(d,h.B,h.C,m);const t=h.filter;let w=a.MipmapMode.None;"mipmap"in h&&(w=h.mipmap);return a.ImageFilter._MakeMatrixTransformOptions(d,t,w,m)};a.Paint.prototype.getColor=function(){this._getColor(ua);return E(ua)}; +a.Paint.prototype.setColor=function(d,h){h=h||null;d=y(d);this._setColor(d,h)};a.Paint.prototype.setColorComponents=function(d,h,m,t,w){w=w||null;d=C(d,h,m,t);this._setColor(d,w)};a.Path.prototype.getPoint=function(d,h){this._getPoint(d,V);d=va.toTypedArray();return h?(h[0]=d[0],h[1]=d[1],h):d.slice(0,2)};a.Picture.prototype.makeShader=function(d,h,m,t,w){t=q(t);w=v(w);return this._makeShader(d,h,m,t,w)};a.PictureRecorder.prototype.beginRecording=function(d){d=v(d);return this._beginRecording(d)}; +a.Surface.prototype.getCanvas=function(){var d=this._getCanvas();d.Id=this.Id;return d};a.Surface.prototype.makeImageSnapshot=function(d){a.Jd(this.Id);d=l(d,"HEAP32",gb);return this._makeImageSnapshot(d)};a.Surface.prototype.makeSurface=function(d){a.Jd(this.Id);d=this._makeSurface(d);d.Id=this.Id;return d};a.Surface.prototype.Pe=function(d,h){this.de||(this.de=this.getCanvas());return requestAnimationFrame(function(){a.Jd(this.Id);d(this.de);this.flush(h)}.bind(this))};a.Surface.prototype.requestAnimationFrame|| +(a.Surface.prototype.requestAnimationFrame=a.Surface.prototype.Pe);a.Surface.prototype.Me=function(d,h){this.de||(this.de=this.getCanvas());requestAnimationFrame(function(){a.Jd(this.Id);d(this.de);this.flush(h);this.dispose()}.bind(this))};a.Surface.prototype.drawOnce||(a.Surface.prototype.drawOnce=a.Surface.prototype.Me);a.PathEffect.MakeDash=function(d,h){h||(h=0);if(!d.length||1===d.length%2)throw"Intervals array must have even length";var m=l(d,"HEAPF32");h=a.PathEffect._MakeDash(m,d.length, +h);k(m,d);return h};a.PathEffect.MakeLine2D=function(d,h){h=q(h);return a.PathEffect._MakeLine2D(d,h)};a.PathEffect.MakePath2D=function(d,h){d=q(d);return a.PathEffect._MakePath2D(d,h)};a.Shader.MakeColor=function(d,h){h=h||null;d=y(d);return a.Shader._MakeColor(d,h)};a.Shader.Blend=a.Shader.MakeBlend;a.Shader.Color=a.Shader.MakeColor;a.Shader.MakeLinearGradient=function(d,h,m,t,w,z,F,K){K=K||null;var H=n(m),S=l(t,"HEAPF32");F=F||0;z=q(z);var p=va.toTypedArray();p.set(d);p.set(h,2);d=a.Shader._MakeLinearGradient(V, +H.Rd,H.fe,S,H.count,w,F,z,K);k(H.Rd,m);t&&k(S,t);return d};a.Shader.MakeRadialGradient=function(d,h,m,t,w,z,F,K){K=K||null;var H=n(m),S=l(t,"HEAPF32");F=F||0;z=q(z);d=a.Shader._MakeRadialGradient(d[0],d[1],h,H.Rd,H.fe,S,H.count,w,F,z,K);k(H.Rd,m);t&&k(S,t);return d};a.Shader.MakeSweepGradient=function(d,h,m,t,w,z,F,K,H,S){S=S||null;var p=n(m),A=l(t,"HEAPF32");F=F||0;K=K||0;H=H||360;z=q(z);d=a.Shader._MakeSweepGradient(d,h,p.Rd,p.fe,A,p.count,w,K,H,F,z,S);k(p.Rd,m);t&&k(A,t);return d};a.Shader.MakeTwoPointConicalGradient= +function(d,h,m,t,w,z,F,K,H,S){S=S||null;var p=n(w),A=l(z,"HEAPF32");H=H||0;K=q(K);var L=va.toTypedArray();L.set(d);L.set(m,2);d=a.Shader._MakeTwoPointConicalGradient(V,h,t,p.Rd,p.fe,A,p.count,F,H,K,S);k(p.Rd,w);z&&k(A,z);return d};a.Vertices.prototype.bounds=function(d){this._bounds(V);var h=va.toTypedArray();return d?(d.set(h),d):h.slice()};a.Md&&a.Md.forEach(function(d){d()})};a.computeTonalColors=function(g){var d=l(g.ambient,"HEAPF32"),h=l(g.spot,"HEAPF32");this._computeTonalColors(d,h);var m= +{ambient:E(d),spot:E(h)};k(d,g.ambient);k(h,g.spot);return m};a.LTRBRect=function(g,d,h,m){return Float32Array.of(g,d,h,m)};a.XYWHRect=function(g,d,h,m){return Float32Array.of(g,d,g+h,d+m)};a.LTRBiRect=function(g,d,h,m){return Int32Array.of(g,d,h,m)};a.XYWHiRect=function(g,d,h,m){return Int32Array.of(g,d,g+h,d+m)};a.RRectXY=function(g,d,h){return Float32Array.of(g[0],g[1],g[2],g[3],d,h,d,h,d,h,d,h)};a.MakeAnimatedImageFromEncoded=function(g){g=new Uint8Array(g);var d=a._malloc(g.byteLength);a.HEAPU8.set(g, +d);return(g=a._decodeAnimatedImage(d,g.byteLength))?g:null};a.MakeImageFromEncoded=function(g){g=new Uint8Array(g);var d=a._malloc(g.byteLength);a.HEAPU8.set(g,d);return(g=a._decodeImage(d,g.byteLength))?g:null};var Ra=null;a.MakeImageFromCanvasImageSource=function(g){var d=g.width,h=g.height;Ra||(Ra=document.createElement("canvas"));Ra.width=d;Ra.height=h;var m=Ra.getContext("2d",{Kf:!0});m.drawImage(g,0,0);g=m.getImageData(0,0,d,h);return a.MakeImage({width:d,height:h,alphaType:a.AlphaType.Unpremul, +colorType:a.ColorType.RGBA_8888,colorSpace:a.ColorSpace.SRGB},g.data,4*d)};a.MakeImage=function(g,d,h){var m=a._malloc(d.length);a.HEAPU8.set(d,m);return a._MakeImage(g,m,d.length,h)};a.MakeVertices=function(g,d,h,m,t,w){var z=t&&t.length||0,F=0;h&&h.length&&(F|=1);m&&m.length&&(F|=2);void 0===w||w||(F|=4);g=new a._VerticesBuilder(g,d.length/2,z,F);l(d,"HEAPF32",g.positions());g.texCoords()&&l(h,"HEAPF32",g.texCoords());g.colors()&&l(c(m),"HEAPU32",g.colors());g.indices()&&l(t,"HEAPU16",g.indices()); +return g.detach()};(function(g){g.Md=g.Md||[];g.Md.push(function(){function d(p){if(!p||!p.length)return[];for(var A=[],L=0;Ld)return a._free(g),null;t=new Uint16Array(a.HEAPU8.buffer,g,d);if(h)return h.set(t),a._free(g),h;h=Uint16Array.from(t);a._free(g);return h};a.Font.prototype.getGlyphIntercepts=function(g,d,h,m){var t=l(g,"HEAPU16"),w=l(d,"HEAPF32");return this._getGlyphIntercepts(t,g.length,!(g&&g._ck),w,d.length,!(d&&d._ck),h,m)};a.Font.prototype.getGlyphWidths=function(g,d,h){var m=l(g,"HEAPU16"),t=a._malloc(4* +g.length);this._getGlyphWidthBounds(m,g.length,t,M,d||null);d=new Float32Array(a.HEAPU8.buffer,t,g.length);k(m,g);if(h)return h.set(d),a._free(t),h;g=Float32Array.from(d);a._free(t);return g};a.FontMgr.FromData=function(){if(!arguments.length)return null;var g=arguments;1===g.length&&Array.isArray(g[0])&&(g=arguments[0]);if(!g.length)return null;for(var d=[],h=[],m=0;md)return a._free(g),null;t=new Uint16Array(a.HEAPU8.buffer,g,d);if(h)return h.set(t),a._free(g),h;h=Uint16Array.from(t);a._free(g); +return h};a.TextBlob.MakeOnPath=function(g,d,h,m){if(g&&g.length&&d&&d.countPoints()){if(1===d.countPoints())return this.MakeFromText(g,h);m||(m=0);var t=h.getGlyphIDs(g);t=h.getGlyphWidths(t);var w=[];d=new a.ContourMeasureIter(d,!1,1);for(var z=d.next(),F=new Float32Array(4),K=0;Kz.length()){z.delete();z=d.next();if(!z){g=g.substring(0,K);break}m=H/2}z.getPosTan(m,F);var S=F[2],p=F[3];w.push(S,p,F[0]-H/2*S,F[1]-H/2*p);m+=H/2}g=this.MakeFromRSXform(g,w,h); +z&&z.delete();d.delete();return g}};a.TextBlob.MakeFromRSXform=function(g,d,h){var m=ka(g)+1,t=a._malloc(m);la(g,B,t,m);g=l(d,"HEAPF32");h=a.TextBlob._MakeFromRSXform(t,m-1,g,h);a._free(t);return h?h:null};a.TextBlob.MakeFromRSXformGlyphs=function(g,d,h){var m=l(g,"HEAPU16");d=l(d,"HEAPF32");h=a.TextBlob._MakeFromRSXformGlyphs(m,2*g.length,d,h);k(m,g);return h?h:null};a.TextBlob.MakeFromGlyphs=function(g,d){var h=l(g,"HEAPU16");d=a.TextBlob._MakeFromGlyphs(h,2*g.length,d);k(h,g);return d?d:null}; +a.TextBlob.MakeFromText=function(g,d){var h=ka(g)+1,m=a._malloc(h);la(g,B,m,h);g=a.TextBlob._MakeFromText(m,h-1,d);a._free(m);return g?g:null};a.MallocGlyphIDs=function(g){return a.Malloc(Uint16Array,g)}});a.Md=a.Md||[];a.Md.push(function(){a.MakePicture=function(g){g=new Uint8Array(g);var d=a._malloc(g.byteLength);a.HEAPU8.set(g,d);return(g=a._MakePicture(d,g.byteLength))?g:null}});a.Md=a.Md||[];a.Md.push(function(){a.RuntimeEffect.Make=function(g,d){return a.RuntimeEffect._Make(g,{onError:d||function(h){console.log("RuntimeEffect error", +h)}})};a.RuntimeEffect.prototype.makeShader=function(g,d){var h=!g._ck,m=l(g,"HEAPF32");d=q(d);return this._makeShader(m,4*g.length,h,d)};a.RuntimeEffect.prototype.makeShaderWithChildren=function(g,d,h){var m=!g._ck,t=l(g,"HEAPF32");h=q(h);for(var w=[],z=0;z{throw b;},qa="object"===typeof window,ra="function"===typeof importScripts,sa="object"===typeof process&&"object"===typeof process.versions&&"string"===typeof process.versions.node,ta="",wa,xa,ya,fs,Aa,Ca; +if(sa)ta=ra?require("path").dirname(ta)+"/":__dirname+"/",Ca=()=>{Aa||(fs=require("fs"),Aa=require("path"))},wa=function(a,b){Ca();a=Aa.normalize(a);return fs.readFileSync(a,b?null:"utf8")},ya=a=>{a=wa(a,!0);a.buffer||(a=new Uint8Array(a));return a},xa=(a,b,c)=>{Ca();a=Aa.normalize(a);fs.readFile(a,function(e,f){e?c(e):b(f.buffer)})},1{if(noExitRuntime|| +0{var b=new XMLHttpRequest;b.open("GET",a,!1);b.send(null);return b.responseText},ra&&(ya=a=>{var b= +new XMLHttpRequest;b.open("GET",a,!1);b.responseType="arraybuffer";b.send(null);return new Uint8Array(b.response)}),xa=(a,b,c)=>{var e=new XMLHttpRequest;e.open("GET",a,!0);e.responseType="arraybuffer";e.onload=()=>{200==e.status||0==e.status&&e.response?b(e.response):c()};e.onerror=c;e.send(null)};var Ga=r.print||console.log.bind(console),Fa=r.printErr||console.warn.bind(console);aa(r,ma);ma=null;r.thisProgram&&(na=r.thisProgram);r.quit&&(oa=r.quit);var Ha=0,Ia;r.wasmBinary&&(Ia=r.wasmBinary); +var noExitRuntime=r.noExitRuntime||!0;"object"!==typeof WebAssembly&&Ja("no native wasm support detected");var Ka,La=!1,Na="undefined"!==typeof TextDecoder?new TextDecoder("utf8"):void 0; +function Oa(a,b,c){var e=b+c;for(c=b;a[c]&&!(c>=e);)++c;if(16f?e+=String.fromCharCode(f):(f-=65536,e+=String.fromCharCode(55296|f>>10,56320|f&1023))}}else e+=String.fromCharCode(f)}return e}function Pa(a,b){return a?Oa(B,a,b):""} +function la(a,b,c,e){if(!(0=l){var n=a.charCodeAt(++k);l=65536+((l&1023)<<10)|n&1023}if(127>=l){if(c>=e)break;b[c++]=l}else{if(2047>=l){if(c+1>=e)break;b[c++]=192|l>>6}else{if(65535>=l){if(c+2>=e)break;b[c++]=224|l>>12}else{if(c+3>=e)break;b[c++]=240|l>>18;b[c++]=128|l>>12&63}b[c++]=128|l>>6&63}b[c++]=128|l&63}}b[c]=0;return c-f} +function ka(a){for(var b=0,c=0;c=e&&(e=65536+((e&1023)<<10)|a.charCodeAt(++c)&1023);127>=e?++b:b=2047>=e?b+2:65535>=e?b+3:b+4}return b}var Qa="undefined"!==typeof TextDecoder?new TextDecoder("utf-16le"):void 0;function Sa(a,b){var c=a>>1;for(var e=c+b/2;!(c>=e)&&Ta[c];)++c;c<<=1;if(32=b/2);++e){var f=Ua[a+2*e>>1];if(0==f)break;c+=String.fromCharCode(f)}return c} +function Va(a,b,c){void 0===c&&(c=2147483647);if(2>c)return 0;c-=2;var e=b;c=c<2*a.length?c/2:a.length;for(var f=0;f>1]=a.charCodeAt(f),b+=2;Ua[b>>1]=0;return b-e}function Wa(a){return 2*a.length}function Xa(a,b){for(var c=0,e="";!(c>=b/4);){var f=G[a+4*c>>2];if(0==f)break;++c;65536<=f?(f-=65536,e+=String.fromCharCode(55296|f>>10,56320|f&1023)):e+=String.fromCharCode(f)}return e} +function Ya(a,b,c){void 0===c&&(c=2147483647);if(4>c)return 0;var e=b;c=e+c-4;for(var f=0;f=k){var l=a.charCodeAt(++f);k=65536+((k&1023)<<10)|l&1023}G[b>>2]=k;b+=4;if(b+4>c)break}G[b>>2]=0;return b-e}function Za(a){for(var b=0,c=0;c=e&&++c;b+=4}return b}var $a,ab,B,Ua,Ta,G,J,N,bb; +function cb(){var a=Ka.buffer;$a=a;r.HEAP8=ab=new Int8Array(a);r.HEAP16=Ua=new Int16Array(a);r.HEAP32=G=new Int32Array(a);r.HEAPU8=B=new Uint8Array(a);r.HEAPU16=Ta=new Uint16Array(a);r.HEAPU32=J=new Uint32Array(a);r.HEAPF32=N=new Float32Array(a);r.HEAPF64=bb=new Float64Array(a)}var db,eb=[],fb=[],hb=[],Da=0;function ib(){var a=r.preRun.shift();eb.unshift(a)}var jb=0,kb=null,lb=null;r.preloadedImages={};r.preloadedAudios={}; +function Ja(a){if(r.onAbort)r.onAbort(a);a="Aborted("+a+")";Fa(a);La=!0;a=new WebAssembly.RuntimeError(a+". Build with -s ASSERTIONS=1 for more info.");ca(a);throw a;}function mb(){return nb.startsWith("data:application/octet-stream;base64,")}var nb;nb="canvaskit.wasm";if(!mb()){var ob=nb;nb=r.locateFile?r.locateFile(ob,ta):ta+ob}function pb(){var a=nb;try{if(a==nb&&Ia)return new Uint8Array(Ia);if(ya)return ya(a);throw"both async and sync fetching of the wasm failed";}catch(b){Ja(b)}} +function qb(){if(!Ia&&(qa||ra)){if("function"===typeof fetch&&!nb.startsWith("file://"))return fetch(nb,{credentials:"same-origin"}).then(function(a){if(!a.ok)throw"failed to load wasm binary file at '"+nb+"'";return a.arrayBuffer()}).catch(function(){return pb()});if(xa)return new Promise(function(a,b){xa(nb,function(c){a(new Uint8Array(c))},b)})}return Promise.resolve().then(function(){return pb()})} +function rb(a){for(;0>2]=b};this.rf=function(b){G[this.Kd+8>>2]=b};this.sf=function(){G[this.Kd>>2]=0};this.qf=function(){ab[this.Kd+12>>0]=0};this.tf=function(){ab[this.Kd+13>>0]=0};this.gf=function(b,c){this.uf(b);this.rf(c);this.sf();this.qf();this.tf()}}var tb=0,ub={},vb=[null,[],[]],wb={},xb={};function yb(a){for(;a.length;){var b=a.pop();a.pop()(b)}}function zb(a){return this.fromWireType(J[a>>2])}var Ab={},Bb={},Cb={}; +function Db(a){if(void 0===a)return"_unknown";a=a.replace(/[^a-zA-Z0-9_]/g,"$");var b=a.charCodeAt(0);return 48<=b&&57>=b?"_"+a:a}function Eb(a,b){a=Db(a);return function(){null;return b.apply(this,arguments)}} +function Fb(a){var b=Error,c=Eb(a,function(e){this.name=a;this.message=e;e=Error(e).stack;void 0!==e&&(this.stack=this.toString()+"\n"+e.replace(/^Error(:[^\n]*)?\n/,""))});c.prototype=Object.create(b.prototype);c.prototype.constructor=c;c.prototype.toString=function(){return void 0===this.message?this.name:this.name+": "+this.message};return c}var Mb=void 0;function Nb(a){throw new Mb(a);} +function Ob(a,b,c){function e(n){n=c(n);n.length!==a.length&&Nb("Mismatched type converter count");for(var q=0;qb,a;Ub=new FinalizationGroup(function(b){for(var c=b.next();!c.done;c=b.next())c=c.value,c.Kd?Wb(c):console.warn("object already deleted: "+c.Kd)});Xb=b=>{Ub.register(b,b.Hd,b.Hd);return b};Vb=b=>{Ub.unregister(b.Hd)};return Xb(a)}var Yb=void 0,Zb=[];function $b(){for(;Zb.length;){var a=Zb.pop();a.Hd.ae=!1;a["delete"]()}}function ac(){} +var bc={};function cc(a,b,c){if(void 0===a[b].Od){var e=a[b];a[b]=function(){a[b].Od.hasOwnProperty(arguments.length)||Q("Function '"+c+"' called with an invalid number of arguments ("+arguments.length+") - expects one of ("+a[b].Od+")!");return a[b].Od[arguments.length].apply(this,arguments)};a[b].Od=[];a[b].Od[e.Zd]=e}} +function dc(a,b,c){r.hasOwnProperty(a)?((void 0===c||void 0!==r[a].Od&&void 0!==r[a].Od[c])&&Q("Cannot register public name '"+a+"' twice"),cc(r,a,a),r.hasOwnProperty(c)&&Q("Cannot register multiple overloads of a function with the same number of arguments ("+c+")!"),r[a].Od[c]=b):(r[a]=b,void 0!==c&&(r[a].Gf=c))}function ec(a,b,c,e,f,k,l,n){this.name=a;this.constructor=b;this.be=c;this.Wd=e;this.Vd=f;this.Ze=k;this.je=l;this.We=n;this.nf=[]} +function fc(a,b,c){for(;b!==c;)b.je||Q("Expected null or instance of "+c.name+", got an instance of "+b.name),a=b.je(a),b=b.Vd;return a}function gc(a,b){if(null===b)return this.ye&&Q("null is not a valid "+this.name),0;b.Hd||Q('Cannot pass "'+hc(b)+'" as a '+this.name);b.Hd.Kd||Q("Cannot pass deleted object as a pointer of type "+this.name);return fc(b.Hd.Kd,b.Hd.Nd.Ld,this.Ld)} +function ic(a,b){if(null===b){this.ye&&Q("null is not a valid "+this.name);if(this.ne){var c=this.ze();null!==a&&a.push(this.Wd,c);return c}return 0}b.Hd||Q('Cannot pass "'+hc(b)+'" as a '+this.name);b.Hd.Kd||Q("Cannot pass deleted object as a pointer of type "+this.name);!this.me&&b.Hd.Nd.me&&Q("Cannot convert argument of type "+(b.Hd.Td?b.Hd.Td.name:b.Hd.Nd.name)+" to parameter type "+this.name);c=fc(b.Hd.Kd,b.Hd.Nd.Ld,this.Ld);if(this.ne)switch(void 0===b.Hd.Pd&&Q("Passing raw pointer to smart pointer is illegal"), +this.yf){case 0:b.Hd.Td===this?c=b.Hd.Pd:Q("Cannot convert argument of type "+(b.Hd.Td?b.Hd.Td.name:b.Hd.Nd.name)+" to parameter type "+this.name);break;case 1:c=b.Hd.Pd;break;case 2:if(b.Hd.Td===this)c=b.Hd.Pd;else{var e=b.clone();c=this.pf(c,jc(function(){e["delete"]()}));null!==a&&a.push(this.Wd,c)}break;default:Q("Unsupporting sharing policy")}return c} +function kc(a,b){if(null===b)return this.ye&&Q("null is not a valid "+this.name),0;b.Hd||Q('Cannot pass "'+hc(b)+'" as a '+this.name);b.Hd.Kd||Q("Cannot pass deleted object as a pointer of type "+this.name);b.Hd.Nd.me&&Q("Cannot convert argument of type "+b.Hd.Nd.name+" to parameter type "+this.name);return fc(b.Hd.Kd,b.Hd.Nd.Ld,this.Ld)}function lc(a,b,c){if(b===c)return a;if(void 0===c.Vd)return null;a=lc(a,b,c.Vd);return null===a?null:c.We(a)}var mc={}; +function nc(a,b){for(void 0===b&&Q("ptr should not be undefined");a.Vd;)b=a.je(b),a=a.Vd;return mc[b]}function oc(a,b){b.Nd&&b.Kd||Nb("makeClassHandle requires ptr and ptrType");!!b.Td!==!!b.Pd&&Nb("Both smartPtrType and smartPtr must be specified");b.count={value:1};return Xb(Object.create(a,{Hd:{value:b}}))} +function wc(a,b,c,e,f,k,l,n,q,x,y){this.name=a;this.Ld=b;this.ye=c;this.me=e;this.ne=f;this.mf=k;this.yf=l;this.Ie=n;this.ze=q;this.pf=x;this.Wd=y;f||void 0!==b.Vd?this.toWireType=ic:(this.toWireType=e?gc:kc,this.Sd=null)}function xc(a,b,c){r.hasOwnProperty(a)||Nb("Replacing nonexistant public symbol");void 0!==r[a].Od&&void 0!==c?r[a].Od[c]=b:(r[a]=b,r[a].Zd=c)} +function yc(a,b){var c=[];return function(){c.length=arguments.length;for(var e=0;ek&&Q("argTypes array size mismatch! Must at least get return value and 'this' types!");var l=null!==b[1]&&null!==c,n=!1;for(c=1;c>2)+e]);return c}var Gc=[],Hc=[{},{value:void 0},{value:null},{value:!0},{value:!1}];function Ic(a){4>2])};case 3:return function(c){return this.fromWireType(bb[c>>3])};default:throw new TypeError("Unknown float type: "+a);}} +function Nc(a,b,c){switch(b){case 0:return c?function(e){return ab[e]}:function(e){return B[e]};case 1:return c?function(e){return Ua[e>>1]}:function(e){return Ta[e>>1]};case 2:return c?function(e){return G[e>>2]}:function(e){return J[e>>2]};default:throw new TypeError("Unknown integer type: "+a);}}var Oc={};function Pc(a){var b=Oc[a];return void 0===b?P(a):b}var Qc=[]; +function Rc(){function a(b){b.$$$embind_global$$$=b;var c="object"===typeof $$$embind_global$$$&&b.$$$embind_global$$$===b;c||delete b.$$$embind_global$$$;return c}if("object"===typeof globalThis)return globalThis;if("object"===typeof $$$embind_global$$$)return $$$embind_global$$$;"object"===typeof global&&a(global)?$$$embind_global$$$=global:"object"===typeof self&&a(self)&&($$$embind_global$$$=self);if("object"===typeof $$$embind_global$$$)return $$$embind_global$$$;throw Error("unable to get global object."); +}function Sc(a){var b=Qc.length;Qc.push(a);return b}function Tc(a,b){for(var c=Array(a),e=0;e>2)+e],"parameter "+e);return c}var Uc=[];function Vc(a){var b=Array(a+1);return function(c,e,f){b[0]=c;for(var k=0;k>2)+k],"parameter "+k);b[k+1]=l.readValueFromPointer(f);f+=l.argPackAdvance}c=new (c.bind.apply(c,b));return jc(c)}}var Wc={},Xc;Xc=sa?()=>{var a=process.hrtime();return 1E3*a[0]+a[1]/1E6}:()=>performance.now(); +function Yc(a){var b=a.getExtension("ANGLE_instanced_arrays");b&&(a.vertexAttribDivisor=function(c,e){b.vertexAttribDivisorANGLE(c,e)},a.drawArraysInstanced=function(c,e,f,k){b.drawArraysInstancedANGLE(c,e,f,k)},a.drawElementsInstanced=function(c,e,f,k,l){b.drawElementsInstancedANGLE(c,e,f,k,l)})} +function Zc(a){var b=a.getExtension("OES_vertex_array_object");b&&(a.createVertexArray=function(){return b.createVertexArrayOES()},a.deleteVertexArray=function(c){b.deleteVertexArrayOES(c)},a.bindVertexArray=function(c){b.bindVertexArrayOES(c)},a.isVertexArray=function(c){return b.isVertexArrayOES(c)})}function $c(a){var b=a.getExtension("WEBGL_draw_buffers");b&&(a.drawBuffers=function(c,e){b.drawBuffersWEBGL(c,e)})} +var ad=1,bd=[],cd=[],dd=[],ed=[],fa=[],fd=[],gd=[],ja=[],hd=[],jd=[],kd={},ld={},md=4;function W(a){nd||(nd=a)}function ea(a){for(var b=ad++,c=a.length;ca.version||!b.Ee)b.Ee=b.getExtension("EXT_disjoint_timer_query");b.Ff=b.getExtension("WEBGL_multi_draw");(b.getSupportedExtensions()||[]).forEach(function(c){c.includes("lose_context")||c.includes("debug")||b.getExtension(c)})}} +var u,nd,rd=[];function sd(a,b,c,e){for(var f=0;f>2]=l}} +function td(a,b,c){if(b){var e=void 0;switch(a){case 36346:e=1;break;case 36344:0!=c&&1!=c&&W(1280);return;case 34814:case 36345:e=0;break;case 34466:var f=X.getParameter(34467);e=f?f.length:0;break;case 33309:if(2>u.version){W(1282);return}e=2*(X.getSupportedExtensions()||[]).length;break;case 33307:case 33308:if(2>u.version){W(1280);return}e=33307==a?3:0}if(void 0===e)switch(f=X.getParameter(a),typeof f){case "number":e=f;break;case "boolean":e=f?1:0;break;case "string":W(1280);return;case "object":if(null=== +f)switch(a){case 34964:case 35725:case 34965:case 36006:case 36007:case 32873:case 34229:case 36662:case 36663:case 35053:case 35055:case 36010:case 35097:case 35869:case 32874:case 36389:case 35983:case 35368:case 34068:e=0;break;default:W(1280);return}else{if(f instanceof Float32Array||f instanceof Uint32Array||f instanceof Int32Array||f instanceof Array){for(a=0;a>2]=f[a];break;case 2:N[b+4*a>>2]=f[a];break;case 4:ab[b+a>>0]=f[a]?1:0}return}try{e=f.name|0}catch(k){W(1280); +Fa("GL_INVALID_ENUM in glGet"+c+"v: Unknown object returned from WebGL getParameter("+a+")! (error: "+k+")");return}}break;default:W(1280);Fa("GL_INVALID_ENUM in glGet"+c+"v: Native code calling glGet"+c+"v("+a+") and it returns "+f+" of type "+typeof f+"!");return}switch(c){case 1:c=e;J[b>>2]=c;J[b+4>>2]=(c-J[b>>2])/4294967296;break;case 0:G[b>>2]=e;break;case 2:N[b>>2]=e;break;case 4:ab[b>>0]=e?1:0}}else W(1281)}function ud(a){var b=ka(a)+1,c=vd(b);la(a,B,c,b);return c} +function wd(a){return"]"==a.slice(-1)&&a.lastIndexOf("[")}function xd(a){a-=5120;return 0==a?ab:1==a?B:2==a?Ua:4==a?G:6==a?N:5==a||28922==a||28520==a||30779==a||30782==a?J:Ta}function yd(a,b,c,e,f){a=xd(a);var k=31-Math.clz32(a.BYTES_PER_ELEMENT),l=md;return a.subarray(f>>k,f+e*(c*({5:3,6:4,8:2,29502:3,29504:4,26917:2,26918:2,29846:3,29847:4}[b-6402]||1)*(1<>k)} +function Y(a){var b=X.Te;if(b){var c=b.ie[a];"number"===typeof c&&(b.ie[a]=c=X.getUniformLocation(b,b.Je[a]+(0Z?-1:0=l(I,v)?0>=l(D,v)?v.getFullYear()+1:v.getFullYear():v.getFullYear()-1}var x=G[e+40>>2];e={Bf:G[e>>2],Af:G[e+4>>2],re:G[e+8>>2],he:G[e+12>>2],ce:G[e+16>>2],Qd:G[e+20>>2],se:G[e+24>>2],te:G[e+28>>2],Jf:G[e+32>>2],zf:G[e+ +36>>2],Cf:x?Pa(x):""};c=Pa(c);x={"%c":"%a %b %d %H:%M:%S %Y","%D":"%m/%d/%y","%F":"%Y-%m-%d","%h":"%b","%r":"%I:%M:%S %p","%R":"%H:%M","%T":"%H:%M:%S","%x":"%m/%d/%y","%X":"%H:%M:%S","%Ec":"%c","%EC":"%C","%Ex":"%m/%d/%y","%EX":"%H:%M:%S","%Ey":"%y","%EY":"%Y","%Od":"%d","%Oe":"%e","%OH":"%H","%OI":"%I","%Om":"%m","%OM":"%M","%OS":"%S","%Ou":"%u","%OU":"%U","%OV":"%V","%Ow":"%w","%OW":"%W","%Oy":"%y"};for(var y in x)c=c.replace(new RegExp(y,"g"),x[y]);var C="Sunday Monday Tuesday Wednesday Thursday Friday Saturday".split(" "), +E="January February March April May June July August September October November December".split(" ");x={"%a":function(v){return C[v.se].substring(0,3)},"%A":function(v){return C[v.se]},"%b":function(v){return E[v.ce].substring(0,3)},"%B":function(v){return E[v.ce]},"%C":function(v){return k((v.Qd+1900)/100|0,2)},"%d":function(v){return k(v.he,2)},"%e":function(v){return f(v.he,2," ")},"%g":function(v){return q(v).toString().substring(2)},"%G":function(v){return q(v)},"%H":function(v){return k(v.re, +2)},"%I":function(v){v=v.re;0==v?v=12:12v.re?"AM":"PM"},"%S":function(v){return k(v.Bf,2)},"%t":function(){return"\t"},"%u":function(v){return v.se||7},"%U":function(v){var D=new Date(v.Qd+1900,0,1),I=0===D.getDay()?D:Id(D,7-D.getDay());v=new Date(v.Qd+1900,v.ce,v.he);return 0> +l(I,v)?k(Math.ceil((31-I.getDate()+(Fd(Ed(v.getFullYear())?Gd:Hd,v.getMonth()-1)-31)+v.getDate())/7),2):0===l(I,D)?"01":"00"},"%V":function(v){var D=new Date(v.Qd+1901,0,4),I=n(new Date(v.Qd+1900,0,4));D=n(D);var R=Id(new Date(v.Qd+1900,0,1),v.te);return 0>l(R,I)?"53":0>=l(D,R)?"01":k(Math.ceil((I.getFullYear()l(I,v)?k(Math.ceil((31-I.getDate()+(Fd(Ed(v.getFullYear())?Gd:Hd,v.getMonth()-1)-31)+v.getDate())/7),2):0===l(I,D)?"01":"00"},"%y":function(v){return(v.Qd+1900).toString().substring(2)},"%Y":function(v){return v.Qd+1900},"%z":function(v){v=v.zf;var D=0<=v;v=Math.abs(v)/60;return(D?"+":"-")+String("0000"+(v/60*100+v%60)).slice(-4)},"%Z":function(v){return v.Cf},"%%":function(){return"%"}};for(y in x)c.includes(y)&&(c=c.replace(new RegExp(y,"g"),x[y](e)));y=Kd(c); +if(y.length>b)return 0;ab.set(y,a);return y.length-1}Mb=r.InternalError=Fb("InternalError");for(var Ld=Array(256),Md=0;256>Md;++Md)Ld[Md]=String.fromCharCode(Md);Rb=Ld;Sb=r.BindingError=Fb("BindingError");ac.prototype.isAliasOf=function(a){if(!(this instanceof ac&&a instanceof ac))return!1;var b=this.Hd.Nd.Ld,c=this.Hd.Kd,e=a.Hd.Nd.Ld;for(a=a.Hd.Kd;b.Vd;)c=b.je(c),b=b.Vd;for(;e.Vd;)a=e.je(a),e=e.Vd;return b===e&&c===a}; +ac.prototype.clone=function(){this.Hd.Kd||Tb(this);if(this.Hd.ge)return this.Hd.count.value+=1,this;var a=Xb,b=Object,c=b.create,e=Object.getPrototypeOf(this),f=this.Hd;a=a(c.call(b,e,{Hd:{value:{count:f.count,ae:f.ae,ge:f.ge,Kd:f.Kd,Nd:f.Nd,Pd:f.Pd,Td:f.Td}}}));a.Hd.count.value+=1;a.Hd.ae=!1;return a};ac.prototype["delete"]=function(){this.Hd.Kd||Tb(this);this.Hd.ae&&!this.Hd.ge&&Q("Object already scheduled for deletion");Vb(this);Wb(this.Hd);this.Hd.ge||(this.Hd.Pd=void 0,this.Hd.Kd=void 0)}; +ac.prototype.isDeleted=function(){return!this.Hd.Kd};ac.prototype.deleteLater=function(){this.Hd.Kd||Tb(this);this.Hd.ae&&!this.Hd.ge&&Q("Object already scheduled for deletion");Zb.push(this);1===Zb.length&&Yb&&Yb($b);this.Hd.ae=!0;return this};wc.prototype.$e=function(a){this.Ie&&(a=this.Ie(a));return a};wc.prototype.Ce=function(a){this.Wd&&this.Wd(a)};wc.prototype.argPackAdvance=8;wc.prototype.readValueFromPointer=zb;wc.prototype.deleteObject=function(a){if(null!==a)a["delete"]()}; +wc.prototype.fromWireType=function(a){function b(){return this.ne?oc(this.Ld.be,{Nd:this.mf,Kd:c,Td:this,Pd:a}):oc(this.Ld.be,{Nd:this,Kd:a})}var c=this.$e(a);if(!c)return this.Ce(a),null;var e=nc(this.Ld,c);if(void 0!==e){if(0===e.Hd.count.value)return e.Hd.Kd=c,e.Hd.Pd=a,e.clone();e=e.clone();this.Ce(a);return e}e=this.Ld.Ze(c);e=bc[e];if(!e)return b.call(this);e=this.me?e.Se:e.pointerType;var f=lc(c,this.Ld,e.Ld);return null===f?b.call(this):this.ne?oc(e.Ld.be,{Nd:e,Kd:f,Td:this,Pd:a}):oc(e.Ld.be, +{Nd:e,Kd:f})};r.getInheritedInstanceCount=function(){return Object.keys(mc).length};r.getLiveInheritedInstances=function(){var a=[],b;for(b in mc)mc.hasOwnProperty(b)&&a.push(mc[b]);return a};r.flushPendingDeletes=$b;r.setDelayFunction=function(a){Yb=a;Zb.length&&Yb&&Yb($b)};zc=r.UnboundTypeError=Fb("UnboundTypeError");r.count_emval_handles=function(){for(var a=0,b=5;bNd;++Nd)rd.push(Array(Nd));var Od=new Float32Array(288);for(Nd=0;288>Nd;++Nd)zd[Nd]=Od.subarray(0,Nd+1);var Pd=new Int32Array(288);for(Nd=0;288>Nd;++Nd)Ad[Nd]=Pd.subarray(0,Nd+1);function Kd(a){var b=Array(ka(a)+1);la(a,b,0,b.length);return b} +var ee={K:function(a){return vd(a+16)+16},J:function(a,b,c){(new sb(a)).gf(b,c);tb++;throw a;},W:function(){return 0},tb:function(){},rb:function(){},vb:function(){return 0},ob:function(a,b,c,e,f,k){k<<=12;if(0!==(e&16)&&0!==a%65536)b=-28;else if(0!==(e&32)){a=65536*Math.ceil(b/65536);var l=Qd(65536,a);l?(B.fill(0,l,l+a),a=l):a=0;a?(ub[a]={lf:a,kf:b,Re:!0,fd:f,Hf:c,flags:e,offset:k},b=a):b=-48}else b=-52;return b},nb:function(a,b){var c=ub[a];0!==b&&c?(b===c.kf&&(ub[a]=null,c.Re&&Cc(c.lf)),a=0):a= +-28;return a},wb:function(){},sb:function(){},C:function(a){var b=xb[a];delete xb[a];var c=b.ze,e=b.Wd,f=b.Fe,k=f.map(function(l){return l.df}).concat(f.map(function(l){return l.wf}));Ob([a],k,function(l){var n={};f.forEach(function(q,x){var y=l[x],C=q.bf,E=q.cf,v=l[x+f.length],D=q.vf,I=q.xf;n[q.Ye]={read:function(R){return y.fromWireType(C(E,R))},write:function(R,Z){var da=[];D(I,R,v.toWireType(da,Z));yb(da)}}});return[{name:b.name,fromWireType:function(q){var x={},y;for(y in n)x[y]=n[y].read(q); +e(q);return x},toWireType:function(q,x){for(var y in n)if(!(y in x))throw new TypeError('Missing field: "'+y+'"');var C=c();for(y in n)n[y].write(C,x[y]);null!==q&&q.push(e,C);return C},argPackAdvance:8,readValueFromPointer:zb,Sd:e}]})},ib:function(){},yb:function(a,b,c,e,f){var k=Qb(c);b=P(b);Pb(a,{name:b,fromWireType:function(l){return!!l},toWireType:function(l,n){return n?e:f},argPackAdvance:8,readValueFromPointer:function(l){if(1===c)var n=ab;else if(2===c)n=Ua;else if(4===c)n=G;else throw new TypeError("Unknown boolean type size: "+ +b);return this.fromWireType(n[l>>k])},Sd:null})},n:function(a,b,c,e,f,k,l,n,q,x,y,C,E){y=P(y);k=T(f,k);n&&(n=T(l,n));x&&(x=T(q,x));E=T(C,E);var v=Db(y);dc(v,function(){Dc("Cannot construct "+y+" due to unbound types",[e])});Ob([a,b,c],e?[e]:[],function(D){D=D[0];if(e){var I=D.Ld;var R=I.be}else R=ac.prototype;D=Eb(v,function(){if(Object.getPrototypeOf(this)!==Z)throw new Sb("Use 'new' to construct "+y);if(void 0===da.Xd)throw new Sb(y+" has no accessible constructor");var Ma=da.Xd[arguments.length]; +if(void 0===Ma)throw new Sb("Tried to invoke ctor of "+y+" with invalid number of parameters ("+arguments.length+") - expected ("+Object.keys(da.Xd).toString()+") parameters instead!");return Ma.apply(this,arguments)});var Z=Object.create(R,{constructor:{value:D}});D.prototype=Z;var da=new ec(y,D,Z,E,I,k,n,x);I=new wc(y,da,!0,!1,!1);R=new wc(y+"*",da,!1,!1,!1);var ua=new wc(y+" const*",da,!1,!0,!1);bc[a]={pointerType:R,Se:ua};xc(v,D);return[I,R,ua]})},g:function(a,b,c,e,f,k,l){var n=Fc(c,e);b=P(b); +k=T(f,k);Ob([],[a],function(q){function x(){Dc("Cannot call "+y+" due to unbound types",n)}q=q[0];var y=q.name+"."+b;b.startsWith("@@")&&(b=Symbol[b.substring(2)]);var C=q.Ld.constructor;void 0===C[b]?(x.Zd=c-1,C[b]=x):(cc(C,b,y),C[b].Od[c-1]=x);Ob([],n,function(E){E=[E[0],null].concat(E.slice(1));E=Ec(y,E,null,k,l);void 0===C[b].Od?(E.Zd=c-1,C[b]=E):C[b].Od[c-1]=E;return[]});return[]})},A:function(a,b,c,e,f,k){0{Dc("Cannot construct "+n.name+" due to unbound types",l)};Ob([],l,function(x){x.splice(1,0,null);n.Ld.Xd[b-1]=Ec(q,x,null,f,k);return[]});return[]})},a:function(a,b,c,e,f,k,l,n){var q=Fc(c,e);b=P(b); +k=T(f,k);Ob([],[a],function(x){function y(){Dc("Cannot call "+C+" due to unbound types",q)}x=x[0];var C=x.name+"."+b;b.startsWith("@@")&&(b=Symbol[b.substring(2)]);n&&x.Ld.nf.push(b);var E=x.Ld.be,v=E[b];void 0===v||void 0===v.Od&&v.className!==x.name&&v.Zd===c-2?(y.Zd=c-2,y.className=x.name,E[b]=y):(cc(E,b,C),E[b].Od[c-2]=y);Ob([],q,function(D){D=Ec(C,D,x,k,l);void 0===E[b].Od?(D.Zd=c-2,E[b]=D):E[b].Od[c-2]=D;return[]});return[]})},s:function(a,b,c){a=P(a);Ob([],[b],function(e){e=e[0];r[a]=e.fromWireType(c); +return[]})},xb:function(a,b){b=P(b);Pb(a,{name:b,fromWireType:function(c){var e=Jc(c);Ic(c);return e},toWireType:function(c,e){return jc(e)},argPackAdvance:8,readValueFromPointer:zb,Sd:null})},k:function(a,b,c,e){function f(){}c=Qb(c);b=P(b);f.values={};Pb(a,{name:b,constructor:f,fromWireType:function(k){return this.constructor.values[k]},toWireType:function(k,l){return l.value},argPackAdvance:8,readValueFromPointer:Kc(b,c,e),Sd:null});dc(b,f)},d:function(a,b,c){var e=Lc(a,"enum");b=P(b);a=e.constructor; +e=Object.create(e.constructor.prototype,{value:{value:c},constructor:{value:Eb(e.name+"_"+b,function(){})}});a.values[c]=e;a[b]=e},Z:function(a,b,c){c=Qb(c);b=P(b);Pb(a,{name:b,fromWireType:function(e){return e},toWireType:function(e,f){return f},argPackAdvance:8,readValueFromPointer:Mc(b,c),Sd:null})},v:function(a,b,c,e,f,k){var l=Fc(b,c);a=P(a);f=T(e,f);dc(a,function(){Dc("Cannot call "+a+" due to unbound types",l)},b-1);Ob([],l,function(n){n=[n[0],null].concat(n.slice(1));xc(a,Ec(a,n,null,f,k), +b-1);return[]})},E:function(a,b,c,e,f){b=P(b);-1===f&&(f=4294967295);f=Qb(c);var k=n=>n;if(0===e){var l=32-8*c;k=n=>n<>>l}c=b.includes("unsigned")?function(n,q){return q>>>0}:function(n,q){return q};Pb(a,{name:b,fromWireType:k,toWireType:c,argPackAdvance:8,readValueFromPointer:Nc(b,f,0!==e),Sd:null})},u:function(a,b,c){function e(k){k>>=2;var l=J;return new f($a,l[k+1],l[k])}var f=[Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array][b];c=P(c);Pb(a,{name:c, +fromWireType:e,argPackAdvance:8,readValueFromPointer:e},{ff:!0})},r:function(a,b,c,e,f,k,l,n,q,x,y,C){c=P(c);k=T(f,k);n=T(l,n);x=T(q,x);C=T(y,C);Ob([a],[b],function(E){E=E[0];return[new wc(c,E.Ld,!1,!1,!0,E,e,k,n,x,C)]})},Y:function(a,b){b=P(b);var c="std::string"===b;Pb(a,{name:b,fromWireType:function(e){var f=J[e>>2];if(c)for(var k=e+4,l=0;l<=f;++l){var n=e+4+l;if(l==f||0==B[n]){k=Pa(k,n-k);if(void 0===q)var q=k;else q+=String.fromCharCode(0),q+=k;k=n+1}}else{q=Array(f);for(l=0;lka(f):()=>f.length)(),n=vd(4+l+1);J[n>>2]=l;if(c&&k)la(f,B,n+4,l+1);else if(k)for(k=0;kTa;var n=1}else 4===b&&(e=Xa,f=Ya,k=Za,l=()=>J,n=2);Pb(a,{name:c,fromWireType:function(q){for(var x=J[q>>2],y=l(),C,E=q+4,v=0;v<=x;++v){var D=q+4+v*b;if(v==x||0==y[D>>n])E=e(E,D-E),void 0===C?C=E:(C+=String.fromCharCode(0),C+=E),E=D+b}Cc(q);return C},toWireType:function(q,x){"string"!==typeof x&&Q("Cannot pass non-string to C++ string type "+ +c);var y=k(x),C=vd(4+y+b);J[C>>2]=y>>n;f(x,C+4,y+b);null!==q&&q.push(Cc,C);return C},argPackAdvance:8,readValueFromPointer:zb,Sd:function(q){Cc(q)}})},D:function(a,b,c,e,f,k){xb[a]={name:P(b),ze:T(c,e),Wd:T(f,k),Fe:[]}},f:function(a,b,c,e,f,k,l,n,q,x){xb[a].Fe.push({Ye:P(b),df:c,bf:T(e,f),cf:k,wf:l,vf:T(n,q),xf:x})},zb:function(a,b){b=P(b);Pb(a,{jf:!0,name:b,argPackAdvance:0,fromWireType:function(){},toWireType:function(){}})},lb:function(){throw"longjmp";},I:function(a,b,c){a=Jc(a);b=Lc(b,"emval::as"); +var e=[],f=jc(e);G[c>>2]=f;return b.toWireType(e,a)},L:function(a,b,c,e,f){a=Qc[a];b=Jc(b);c=Pc(c);var k=[];G[e>>2]=jc(k);return a(b,c,k,f)},B:function(a,b,c,e){a=Qc[a];b=Jc(b);c=Pc(c);a(b,c,null,e)},e:Ic,N:function(a){if(0===a)return jc(Rc());a=Pc(a);return jc(Rc()[a])},w:function(a,b){var c=Tc(a,b),e=c[0];b=e.name+"_$"+c.slice(1).map(function(l){return l.name}).join("_")+"$";var f=Uc[b];if(void 0!==f)return f;var k=Array(a-1);f=Sc((l,n,q,x)=>{for(var y=0,C=0;C>2]=28,-1;G[b>>2]=a/1E3|0;G[b+4>>2]=a%1E3*1E6|0;return 0},Sc:function(a){X.activeTexture(a)},Tc:function(a,b){X.attachShader(cd[a],fd[b])},Uc:function(a,b,c){X.bindAttribLocation(cd[a],b,Pa(c))},Vc:function(a,b){35051==a?X.we=b:35052==a&&(X.$d=b);X.bindBuffer(a,bd[b])},ca:function(a,b){X.bindFramebuffer(a, +dd[b])},Wb:function(a,b){X.bindRenderbuffer(a,ed[b])},Gb:function(a,b){X.bindSampler(a,hd[b])},Wc:function(a,b){X.bindTexture(a,fa[b])},oc:function(a){X.bindVertexArray(gd[a])},rc:function(a){X.bindVertexArray(gd[a])},Xc:function(a,b,c,e){X.blendColor(a,b,c,e)},Yc:function(a){X.blendEquation(a)},Zc:function(a,b){X.blendFunc(a,b)},Qb:function(a,b,c,e,f,k,l,n,q,x){X.blitFramebuffer(a,b,c,e,f,k,l,n,q,x)},_c:function(a,b,c,e){2<=u.version?c?X.bufferData(a,B,e,c,b):X.bufferData(a,b,e):X.bufferData(a,c? +B.subarray(c,c+b):b,e)},$c:function(a,b,c,e){2<=u.version?X.bufferSubData(a,b,B,e,c):X.bufferSubData(a,b,B.subarray(e,e+c))},Xb:function(a){return X.checkFramebufferStatus(a)},T:function(a){X.clear(a)},ba:function(a,b,c,e){X.clearColor(a,b,c,e)},V:function(a){X.clearStencil(a)},cb:function(a,b,c,e){return X.clientWaitSync(jd[a],b,(c>>>0)+4294967296*e)},ad:function(a,b,c,e){X.colorMask(!!a,!!b,!!c,!!e)},da:function(a){X.compileShader(fd[a])},ea:function(a,b,c,e,f,k,l,n){2<=u.version?X.$d?X.compressedTexImage2D(a, +b,c,e,f,k,l,n):X.compressedTexImage2D(a,b,c,e,f,k,B,n,l):X.compressedTexImage2D(a,b,c,e,f,k,n?B.subarray(n,n+l):null)},fa:function(a,b,c,e,f,k,l,n,q){2<=u.version?X.$d?X.compressedTexSubImage2D(a,b,c,e,f,k,l,n,q):X.compressedTexSubImage2D(a,b,c,e,f,k,l,B,q,n):X.compressedTexSubImage2D(a,b,c,e,f,k,l,q?B.subarray(q,q+n):null)},Ob:function(a,b,c,e,f){X.copyBufferSubData(a,b,c,e,f)},ga:function(a,b,c,e,f,k,l,n){X.copyTexSubImage2D(a,b,c,e,f,k,l,n)},ha:function(){var a=ea(cd),b=X.createProgram();b.name= +a;b.qe=b.oe=b.pe=0;b.Be=1;cd[a]=b;return a},ia:function(a){var b=ea(fd);fd[b]=X.createShader(a);return b},ja:function(a){X.cullFace(a)},ka:function(a,b){for(var c=0;c>2],f=bd[e];f&&(X.deleteBuffer(f),f.name=0,bd[e]=null,e==X.we&&(X.we=0),e==X.$d&&(X.$d=0))}},Yb:function(a,b){for(var c=0;c>2],f=dd[e];f&&(X.deleteFramebuffer(f),f.name=0,dd[e]=null)}},la:function(a){if(a){var b=cd[a];b?(X.deleteProgram(b),b.name=0,cd[a]=null):W(1281)}},Zb:function(a,b){for(var c= +0;c>2],f=ed[e];f&&(X.deleteRenderbuffer(f),f.name=0,ed[e]=null)}},Hb:function(a,b){for(var c=0;c>2],f=hd[e];f&&(X.deleteSampler(f),f.name=0,hd[e]=null)}},ma:function(a){if(a){var b=fd[a];b?(X.deleteShader(b),fd[a]=null):W(1281)}},Pb:function(a){if(a){var b=jd[a];b?(X.deleteSync(b),b.name=0,jd[a]=null):W(1281)}},na:function(a,b){for(var c=0;c>2],f=fa[e];f&&(X.deleteTexture(f),f.name=0,fa[e]=null)}},pc:function(a,b){for(var c=0;c>2];X.deleteVertexArray(gd[e]);gd[e]=null}},sc:function(a,b){for(var c=0;c>2];X.deleteVertexArray(gd[e]);gd[e]=null}},oa:function(a){X.depthMask(!!a)},pa:function(a){X.disable(a)},qa:function(a){X.disableVertexAttribArray(a)},ra:function(a,b,c){X.drawArrays(a,b,c)},mc:function(a,b,c,e){X.drawArraysInstanced(a,b,c,e)},kc:function(a,b,c,e,f){X.De.drawArraysInstancedBaseInstanceWEBGL(a,b,c,e,f)},ic:function(a,b){for(var c=rd[a],e=0;e>2];X.drawBuffers(c)}, +sa:function(a,b,c,e){X.drawElements(a,b,c,e)},nc:function(a,b,c,e,f){X.drawElementsInstanced(a,b,c,e,f)},lc:function(a,b,c,e,f,k,l){X.De.drawElementsInstancedBaseVertexBaseInstanceWEBGL(a,b,c,e,f,k,l)},cc:function(a,b,c,e,f,k){X.drawElements(a,e,f,k)},ta:function(a){X.enable(a)},ua:function(a){X.enableVertexAttribArray(a)},Mb:function(a,b){return(a=X.fenceSync(a,b))?(b=ea(jd),a.name=b,jd[b]=a,b):0},va:function(){X.finish()},wa:function(){X.flush()},_b:function(a,b,c,e){X.framebufferRenderbuffer(a, +b,c,ed[e])},$b:function(a,b,c,e,f){X.framebufferTexture2D(a,b,c,fa[e],f)},xa:function(a){X.frontFace(a)},ya:function(a,b){sd(a,b,"createBuffer",bd)},ac:function(a,b){sd(a,b,"createFramebuffer",dd)},bc:function(a,b){sd(a,b,"createRenderbuffer",ed)},Ib:function(a,b){sd(a,b,"createSampler",hd)},za:function(a,b){sd(a,b,"createTexture",fa)},qc:function(a,b){sd(a,b,"createVertexArray",gd)},tc:function(a,b){sd(a,b,"createVertexArray",gd)},Sb:function(a){X.generateMipmap(a)},Aa:function(a,b,c){c?G[c>>2]= +X.getBufferParameter(a,b):W(1281)},Ba:function(){var a=X.getError()||nd;nd=0;return a},Ca:function(a,b){td(a,b,2)},Tb:function(a,b,c,e){a=X.getFramebufferAttachmentParameter(a,b,c);if(a instanceof WebGLRenderbuffer||a instanceof WebGLTexture)a=a.name|0;G[e>>2]=a},O:function(a,b){td(a,b,0)},Da:function(a,b,c,e){a=X.getProgramInfoLog(cd[a]);null===a&&(a="(unknown error)");b=0>2]=b)},Ea:function(a,b,c){if(c)if(a>=ad)W(1281);else if(a=cd[a],35716==b)a=X.getProgramInfoLog(a), +null===a&&(a="(unknown error)"),G[c>>2]=a.length+1;else if(35719==b){if(!a.qe)for(b=0;b>2]=a.qe}else if(35722==b){if(!a.oe)for(b=0;b>2]=a.oe}else if(35381==b){if(!a.pe)for(b=0;b>2]=a.pe}else G[c>>2]=X.getProgramParameter(a, +b);else W(1281)},Ub:function(a,b,c){c?G[c>>2]=X.getRenderbufferParameter(a,b):W(1281)},Fa:function(a,b,c,e){a=X.getShaderInfoLog(fd[a]);null===a&&(a="(unknown error)");b=0>2]=b)},Db:function(a,b,c,e){a=X.getShaderPrecisionFormat(a,b);G[c>>2]=a.rangeMin;G[c+4>>2]=a.rangeMax;G[e>>2]=a.precision},Ga:function(a,b,c){c?35716==b?(a=X.getShaderInfoLog(fd[a]),null===a&&(a="(unknown error)"),G[c>>2]=a?a.length+1:0):35720==b?(a=X.getShaderSource(fd[a]),G[c>>2]=a?a.length+1:0):G[c>> +2]=X.getShaderParameter(fd[a],b):W(1281)},S:function(a){var b=kd[a];if(!b){switch(a){case 7939:b=X.getSupportedExtensions()||[];b=b.concat(b.map(function(e){return"GL_"+e}));b=ud(b.join(" "));break;case 7936:case 7937:case 37445:case 37446:(b=X.getParameter(a))||W(1280);b=b&&ud(b);break;case 7938:b=X.getParameter(7938);b=2<=u.version?"OpenGL ES 3.0 ("+b+")":"OpenGL ES 2.0 ("+b+")";b=ud(b);break;case 35724:b=X.getParameter(35724);var c=b.match(/^WebGL GLSL ES ([0-9]\.[0-9][0-9]?)(?:$| .*)/);null!== +c&&(3==c[1].length&&(c[1]+="0"),b="OpenGL ES GLSL ES "+c[1]+" ("+b+")");b=ud(b);break;default:W(1280)}kd[a]=b}return b},bb:function(a,b){if(2>u.version)return W(1282),0;var c=ld[a];if(c)return 0>b||b>=c.length?(W(1281),0):c[b];switch(a){case 7939:return c=X.getSupportedExtensions()||[],c=c.concat(c.map(function(e){return"GL_"+e})),c=c.map(function(e){return ud(e)}),c=ld[a]=c,0>b||b>=c.length?(W(1281),0):c[b];default:return W(1280),0}},Ha:function(a,b){b=Pa(b);if(a=cd[a]){var c=a,e=c.ie,f=c.Ke,k;if(!e)for(c.ie= +e={},c.Je={},k=0;k>>0,f=b.slice(0,k));if((f=a.Ke[f])&&e>2];X.invalidateFramebuffer(a,e)},Fb:function(a,b,c,e,f,k,l){for(var n= +rd[b],q=0;q>2];X.invalidateSubFramebuffer(a,n,e,f,k,l)},Nb:function(a){return X.isSync(jd[a])},Ia:function(a){return(a=fa[a])?X.isTexture(a):0},Ja:function(a){X.lineWidth(a)},Ka:function(a){a=cd[a];X.linkProgram(a);a.ie=0;a.Ke={}},gc:function(a,b,c,e,f,k){X.He.multiDrawArraysInstancedBaseInstanceWEBGL(a,G,b>>2,G,c>>2,G,e>>2,J,f>>2,k)},hc:function(a,b,c,e,f,k,l,n){X.He.multiDrawElementsInstancedBaseVertexBaseInstanceWEBGL(a,G,b>>2,c,G,e>>2,G,f>>2,G,k>>2,J,l>>2,n)},La:function(a, +b){3317==a&&(md=b);X.pixelStorei(a,b)},jc:function(a){X.readBuffer(a)},Ma:function(a,b,c,e,f,k,l){if(2<=u.version)if(X.we)X.readPixels(a,b,c,e,f,k,l);else{var n=xd(k);X.readPixels(a,b,c,e,f,k,n,l>>31-Math.clz32(n.BYTES_PER_ELEMENT))}else(l=yd(k,f,c,e,l))?X.readPixels(a,b,c,e,f,k,l):W(1280)},Vb:function(a,b,c,e){X.renderbufferStorage(a,b,c,e)},Rb:function(a,b,c,e,f){X.renderbufferStorageMultisample(a,b,c,e,f)},Jb:function(a,b,c){X.samplerParameterf(hd[a],b,c)},Kb:function(a,b,c){X.samplerParameteri(hd[a], +b,c)},Lb:function(a,b,c){X.samplerParameteri(hd[a],b,G[c>>2])},Na:function(a,b,c,e){X.scissor(a,b,c,e)},Oa:function(a,b,c,e){for(var f="",k=0;k>2]:-1;f+=Pa(G[c+4*k>>2],0>l?void 0:l)}X.shaderSource(fd[a],f)},Pa:function(a,b,c){X.stencilFunc(a,b,c)},Qa:function(a,b,c,e){X.stencilFuncSeparate(a,b,c,e)},Ra:function(a){X.stencilMask(a)},Sa:function(a,b){X.stencilMaskSeparate(a,b)},Ta:function(a,b,c){X.stencilOp(a,b,c)},Ua:function(a,b,c,e){X.stencilOpSeparate(a,b,c,e)},Va:function(a, +b,c,e,f,k,l,n,q){if(2<=u.version)if(X.$d)X.texImage2D(a,b,c,e,f,k,l,n,q);else if(q){var x=xd(n);X.texImage2D(a,b,c,e,f,k,l,n,x,q>>31-Math.clz32(x.BYTES_PER_ELEMENT))}else X.texImage2D(a,b,c,e,f,k,l,n,null);else X.texImage2D(a,b,c,e,f,k,l,n,q?yd(n,l,e,f,q):null)},Wa:function(a,b,c){X.texParameterf(a,b,c)},Xa:function(a,b,c){X.texParameterf(a,b,N[c>>2])},Ya:function(a,b,c){X.texParameteri(a,b,c)},Za:function(a,b,c){X.texParameteri(a,b,G[c>>2])},dc:function(a,b,c,e,f){X.texStorage2D(a,b,c,e,f)},_a:function(a, +b,c,e,f,k,l,n,q){if(2<=u.version)if(X.$d)X.texSubImage2D(a,b,c,e,f,k,l,n,q);else if(q){var x=xd(n);X.texSubImage2D(a,b,c,e,f,k,l,n,x,q>>31-Math.clz32(x.BYTES_PER_ELEMENT))}else X.texSubImage2D(a,b,c,e,f,k,l,n,null);else x=null,q&&(x=yd(n,l,f,k,q)),X.texSubImage2D(a,b,c,e,f,k,l,n,x)},$a:function(a,b){X.uniform1f(Y(a),b)},ab:function(a,b,c){if(2<=u.version)X.uniform1fv(Y(a),N,c>>2,b);else{if(288>=b)for(var e=zd[b-1],f=0;f>2];else e=N.subarray(c>>2,c+4*b>>2);X.uniform1fv(Y(a),e)}}, +Oc:function(a,b){X.uniform1i(Y(a),b)},Pc:function(a,b,c){if(2<=u.version)X.uniform1iv(Y(a),G,c>>2,b);else{if(288>=b)for(var e=Ad[b-1],f=0;f>2];else e=G.subarray(c>>2,c+4*b>>2);X.uniform1iv(Y(a),e)}},Qc:function(a,b,c){X.uniform2f(Y(a),b,c)},Rc:function(a,b,c){if(2<=u.version)X.uniform2fv(Y(a),N,c>>2,2*b);else{if(144>=b)for(var e=zd[2*b-1],f=0;f<2*b;f+=2)e[f]=N[c+4*f>>2],e[f+1]=N[c+(4*f+4)>>2];else e=N.subarray(c>>2,c+8*b>>2);X.uniform2fv(Y(a),e)}},Nc:function(a,b,c){X.uniform2i(Y(a), +b,c)},Mc:function(a,b,c){if(2<=u.version)X.uniform2iv(Y(a),G,c>>2,2*b);else{if(144>=b)for(var e=Ad[2*b-1],f=0;f<2*b;f+=2)e[f]=G[c+4*f>>2],e[f+1]=G[c+(4*f+4)>>2];else e=G.subarray(c>>2,c+8*b>>2);X.uniform2iv(Y(a),e)}},Lc:function(a,b,c,e){X.uniform3f(Y(a),b,c,e)},Kc:function(a,b,c){if(2<=u.version)X.uniform3fv(Y(a),N,c>>2,3*b);else{if(96>=b)for(var e=zd[3*b-1],f=0;f<3*b;f+=3)e[f]=N[c+4*f>>2],e[f+1]=N[c+(4*f+4)>>2],e[f+2]=N[c+(4*f+8)>>2];else e=N.subarray(c>>2,c+12*b>>2);X.uniform3fv(Y(a),e)}},Jc:function(a, +b,c,e){X.uniform3i(Y(a),b,c,e)},Ic:function(a,b,c){if(2<=u.version)X.uniform3iv(Y(a),G,c>>2,3*b);else{if(96>=b)for(var e=Ad[3*b-1],f=0;f<3*b;f+=3)e[f]=G[c+4*f>>2],e[f+1]=G[c+(4*f+4)>>2],e[f+2]=G[c+(4*f+8)>>2];else e=G.subarray(c>>2,c+12*b>>2);X.uniform3iv(Y(a),e)}},Hc:function(a,b,c,e,f){X.uniform4f(Y(a),b,c,e,f)},Gc:function(a,b,c){if(2<=u.version)X.uniform4fv(Y(a),N,c>>2,4*b);else{if(72>=b){var e=zd[4*b-1],f=N;c>>=2;for(var k=0;k<4*b;k+=4){var l=c+k;e[k]=f[l];e[k+1]=f[l+1];e[k+2]=f[l+2];e[k+3]= +f[l+3]}}else e=N.subarray(c>>2,c+16*b>>2);X.uniform4fv(Y(a),e)}},uc:function(a,b,c,e,f){X.uniform4i(Y(a),b,c,e,f)},vc:function(a,b,c){if(2<=u.version)X.uniform4iv(Y(a),G,c>>2,4*b);else{if(72>=b)for(var e=Ad[4*b-1],f=0;f<4*b;f+=4)e[f]=G[c+4*f>>2],e[f+1]=G[c+(4*f+4)>>2],e[f+2]=G[c+(4*f+8)>>2],e[f+3]=G[c+(4*f+12)>>2];else e=G.subarray(c>>2,c+16*b>>2);X.uniform4iv(Y(a),e)}},wc:function(a,b,c,e){if(2<=u.version)X.uniformMatrix2fv(Y(a),!!c,N,e>>2,4*b);else{if(72>=b)for(var f=zd[4*b-1],k=0;k<4*b;k+=4)f[k]= +N[e+4*k>>2],f[k+1]=N[e+(4*k+4)>>2],f[k+2]=N[e+(4*k+8)>>2],f[k+3]=N[e+(4*k+12)>>2];else f=N.subarray(e>>2,e+16*b>>2);X.uniformMatrix2fv(Y(a),!!c,f)}},xc:function(a,b,c,e){if(2<=u.version)X.uniformMatrix3fv(Y(a),!!c,N,e>>2,9*b);else{if(32>=b)for(var f=zd[9*b-1],k=0;k<9*b;k+=9)f[k]=N[e+4*k>>2],f[k+1]=N[e+(4*k+4)>>2],f[k+2]=N[e+(4*k+8)>>2],f[k+3]=N[e+(4*k+12)>>2],f[k+4]=N[e+(4*k+16)>>2],f[k+5]=N[e+(4*k+20)>>2],f[k+6]=N[e+(4*k+24)>>2],f[k+7]=N[e+(4*k+28)>>2],f[k+8]=N[e+(4*k+32)>>2];else f=N.subarray(e>> +2,e+36*b>>2);X.uniformMatrix3fv(Y(a),!!c,f)}},yc:function(a,b,c,e){if(2<=u.version)X.uniformMatrix4fv(Y(a),!!c,N,e>>2,16*b);else{if(18>=b){var f=zd[16*b-1],k=N;e>>=2;for(var l=0;l<16*b;l+=16){var n=e+l;f[l]=k[n];f[l+1]=k[n+1];f[l+2]=k[n+2];f[l+3]=k[n+3];f[l+4]=k[n+4];f[l+5]=k[n+5];f[l+6]=k[n+6];f[l+7]=k[n+7];f[l+8]=k[n+8];f[l+9]=k[n+9];f[l+10]=k[n+10];f[l+11]=k[n+11];f[l+12]=k[n+12];f[l+13]=k[n+13];f[l+14]=k[n+14];f[l+15]=k[n+15]}}else f=N.subarray(e>>2,e+64*b>>2);X.uniformMatrix4fv(Y(a),!!c,f)}}, +zc:function(a){a=cd[a];X.useProgram(a);X.Te=a},Ac:function(a,b){X.vertexAttrib1f(a,b)},Bc:function(a,b){X.vertexAttrib2f(a,N[b>>2],N[b+4>>2])},Cc:function(a,b){X.vertexAttrib3f(a,N[b>>2],N[b+4>>2],N[b+8>>2])},Dc:function(a,b){X.vertexAttrib4f(a,N[b>>2],N[b+4>>2],N[b+8>>2],N[b+12>>2])},ec:function(a,b){X.vertexAttribDivisor(a,b)},fc:function(a,b,c,e,f){X.vertexAttribIPointer(a,b,c,e,f)},Ec:function(a,b,c,e,f,k){X.vertexAttribPointer(a,b,c,!!e,f,k)},Fc:function(a,b,c,e){X.viewport(a,b,c,e)},db:function(a, +b,c,e){X.waitSync(jd[a],b,(c>>>0)+4294967296*e)},mb:function(a){var b=B.length;a>>>=0;if(2147483648=c;c*=2){var e=b*(1+.2/c);e=Math.min(e,a+100663296);e=Math.max(a,e);0>>16);cb();var f=1;break a}catch(k){}f=void 0}if(f)return!0}return!1},fb:function(){return u?u.ef:0},pb:function(a,b){var c=0;Cd().forEach(function(e,f){var k=b+c;f=G[a+4*f>>2]=k;for(k=0;k>0]=e.charCodeAt(k); +ab[f>>0]=0;c+=e.length+1});return 0},qb:function(a,b){var c=Cd();G[a>>2]=c.length;var e=0;c.forEach(function(f){e+=f.length+1});G[b>>2]=e;return 0},Ab:function(a){if(!(noExitRuntime||0>2]=b;return 0},ub:function(a,b,c,e){a=wb.af(a);b=wb.Ve(a,b,c);G[e>>2]=b;return 0},hb:function(){},U:function(a,b,c,e){for(var f=0,k=0;k>2],n=G[b+4>>2];b+=8;for(var q= +0;q>2]=f;return 0},b:function(){return Ha},q:Sd,o:Td,l:Ud,R:Vd,$:Wd,_:Xd,z:Yd,y:Zd,t:$d,x:ae,aa:be,Bb:ce,Cb:de,c:function(a){Ha=a},jb:function(a,b,c,e){return Jd(a,b,c,e)}}; +(function(){function a(f){r.asm=f.exports;Ka=r.asm.bd;cb();db=r.asm.dd;fb.unshift(r.asm.cd);jb--;r.monitorRunDependencies&&r.monitorRunDependencies(jb);0==jb&&(null!==kb&&(clearInterval(kb),kb=null),lb&&(f=lb,lb=null,f()))}function b(f){a(f.instance)}function c(f){return qb().then(function(k){return WebAssembly.instantiate(k,e)}).then(function(k){return k}).then(f,function(k){Fa("failed to asynchronously prepare wasm: "+k);Ja(k)})}var e={a:ee};jb++;r.monitorRunDependencies&&r.monitorRunDependencies(jb); +if(r.instantiateWasm)try{return r.instantiateWasm(e,a)}catch(f){return Fa("Module.instantiateWasm callback failed with error: "+f),!1}(function(){return Ia||"function"!==typeof WebAssembly.instantiateStreaming||mb()||nb.startsWith("file://")||"function"!==typeof fetch?c(b):fetch(nb,{credentials:"same-origin"}).then(function(f){return WebAssembly.instantiateStreaming(f,e).then(b,function(k){Fa("wasm streaming compile failed: "+k);Fa("falling back to ArrayBuffer instantiation");return c(b)})})})().catch(ca); +return{}})();r.___wasm_call_ctors=function(){return(r.___wasm_call_ctors=r.asm.cd).apply(null,arguments)};var Rd=r.___errno_location=function(){return(Rd=r.___errno_location=r.asm.ed).apply(null,arguments)},Cc=r._free=function(){return(Cc=r._free=r.asm.fd).apply(null,arguments)},vd=r._malloc=function(){return(vd=r._malloc=r.asm.gd).apply(null,arguments)},Bc=r.___getTypeName=function(){return(Bc=r.___getTypeName=r.asm.hd).apply(null,arguments)}; +r.___embind_register_native_and_builtin_types=function(){return(r.___embind_register_native_and_builtin_types=r.asm.id).apply(null,arguments)};var Qd=r._memalign=function(){return(Qd=r._memalign=r.asm.jd).apply(null,arguments)},fe=r._setThrew=function(){return(fe=r._setThrew=r.asm.kd).apply(null,arguments)},ge=r.stackSave=function(){return(ge=r.stackSave=r.asm.ld).apply(null,arguments)},he=r.stackRestore=function(){return(he=r.stackRestore=r.asm.md).apply(null,arguments)}; +r.dynCall_viji=function(){return(r.dynCall_viji=r.asm.nd).apply(null,arguments)};r.dynCall_vijiii=function(){return(r.dynCall_vijiii=r.asm.od).apply(null,arguments)};r.dynCall_viiiiij=function(){return(r.dynCall_viiiiij=r.asm.pd).apply(null,arguments)};r.dynCall_jii=function(){return(r.dynCall_jii=r.asm.qd).apply(null,arguments)};r.dynCall_vij=function(){return(r.dynCall_vij=r.asm.rd).apply(null,arguments)};r.dynCall_iiij=function(){return(r.dynCall_iiij=r.asm.sd).apply(null,arguments)}; +r.dynCall_iiiij=function(){return(r.dynCall_iiiij=r.asm.td).apply(null,arguments)};r.dynCall_viij=function(){return(r.dynCall_viij=r.asm.ud).apply(null,arguments)};r.dynCall_viiij=function(){return(r.dynCall_viiij=r.asm.vd).apply(null,arguments)};r.dynCall_ji=function(){return(r.dynCall_ji=r.asm.wd).apply(null,arguments)};r.dynCall_iij=function(){return(r.dynCall_iij=r.asm.xd).apply(null,arguments)};r.dynCall_jiiii=function(){return(r.dynCall_jiiii=r.asm.yd).apply(null,arguments)}; +r.dynCall_jiiiiii=function(){return(r.dynCall_jiiiiii=r.asm.zd).apply(null,arguments)};r.dynCall_jiiiiji=function(){return(r.dynCall_jiiiiji=r.asm.Ad).apply(null,arguments)};r.dynCall_iijj=function(){return(r.dynCall_iijj=r.asm.Bd).apply(null,arguments)};r.dynCall_jiji=function(){return(r.dynCall_jiji=r.asm.Cd).apply(null,arguments)};r.dynCall_viijii=function(){return(r.dynCall_viijii=r.asm.Dd).apply(null,arguments)};r.dynCall_iiiiij=function(){return(r.dynCall_iiiiij=r.asm.Ed).apply(null,arguments)}; +r.dynCall_iiiiijj=function(){return(r.dynCall_iiiiijj=r.asm.Fd).apply(null,arguments)};r.dynCall_iiiiiijj=function(){return(r.dynCall_iiiiiijj=r.asm.Gd).apply(null,arguments)};function ae(a,b,c,e,f){var k=ge();try{O(a)(b,c,e,f)}catch(l){he(k);if(l!==l+0&&"longjmp"!==l)throw l;fe(1,0)}}function Td(a,b,c){var e=ge();try{return O(a)(b,c)}catch(f){he(e);if(f!==f+0&&"longjmp"!==f)throw f;fe(1,0)}}function Zd(a,b,c){var e=ge();try{O(a)(b,c)}catch(f){he(e);if(f!==f+0&&"longjmp"!==f)throw f;fe(1,0)}} +function Sd(a,b){var c=ge();try{return O(a)(b)}catch(e){he(c);if(e!==e+0&&"longjmp"!==e)throw e;fe(1,0)}}function Yd(a,b){var c=ge();try{O(a)(b)}catch(e){he(c);if(e!==e+0&&"longjmp"!==e)throw e;fe(1,0)}}function Ud(a,b,c,e){var f=ge();try{return O(a)(b,c,e)}catch(k){he(f);if(k!==k+0&&"longjmp"!==k)throw k;fe(1,0)}}function $d(a,b,c,e){var f=ge();try{O(a)(b,c,e)}catch(k){he(f);if(k!==k+0&&"longjmp"!==k)throw k;fe(1,0)}} +function be(a,b,c,e,f,k){var l=ge();try{O(a)(b,c,e,f,k)}catch(n){he(l);if(n!==n+0&&"longjmp"!==n)throw n;fe(1,0)}}function Wd(a,b,c,e,f,k,l){var n=ge();try{return O(a)(b,c,e,f,k,l)}catch(q){he(n);if(q!==q+0&&"longjmp"!==q)throw q;fe(1,0)}}function Vd(a,b,c,e,f){var k=ge();try{return O(a)(b,c,e,f)}catch(l){he(k);if(l!==l+0&&"longjmp"!==l)throw l;fe(1,0)}}function de(a,b,c,e,f,k,l,n,q,x){var y=ge();try{O(a)(b,c,e,f,k,l,n,q,x)}catch(C){he(y);if(C!==C+0&&"longjmp"!==C)throw C;fe(1,0)}} +function ce(a,b,c,e,f,k,l){var n=ge();try{O(a)(b,c,e,f,k,l)}catch(q){he(n);if(q!==q+0&&"longjmp"!==q)throw q;fe(1,0)}}function Xd(a,b,c,e,f,k,l,n,q,x){var y=ge();try{return O(a)(b,c,e,f,k,l,n,q,x)}catch(C){he(y);if(C!==C+0&&"longjmp"!==C)throw C;fe(1,0)}}var ie;function Ea(a){this.name="ExitStatus";this.message="Program terminated with exit("+a+")";this.status=a}lb=function je(){ie||ke();ie||(lb=je)}; +function ke(){function a(){if(!ie&&(ie=!0,r.calledRun=!0,!La)){rb(fb);ba(r);if(r.onRuntimeInitialized)r.onRuntimeInitialized();if(r.postRun)for("function"==typeof r.postRun&&(r.postRun=[r.postRun]);r.postRun.length;){var b=r.postRun.shift();hb.unshift(b)}rb(hb)}}if(!(0 { + var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined; + if (typeof __filename !== 'undefined') _scriptDir = _scriptDir || __filename; + return ( +function(skwasm) { + skwasm = skwasm || {}; + + +function e(){h.buffer!=l&&q(h.buffer);return aa}function r(){h.buffer!=l&&q(h.buffer);return ba}function u(){h.buffer!=l&&q(h.buffer);return ca}function ea(){h.buffer!=l&&q(h.buffer);return fa}function w(){h.buffer!=l&&q(h.buffer);return ha}function ia(){h.buffer!=l&&q(h.buffer);return ja}null;var y;y||(y=typeof skwasm !== 'undefined' ? skwasm : {});var ka=Object.assign,la,ma;y.ready=new Promise(function(a,b){la=a;ma=b}); +var na=ka({},y),oa="./this.program",pa=(a,b)=>{throw b;},qa="object"===typeof window,z="function"===typeof importScripts,A="object"===typeof process&&"object"===typeof process.versions&&"string"===typeof process.versions.node,B=y.ENVIRONMENT_IS_PTHREAD||!1,D="";function ra(a){return y.locateFile?y.locateFile(a,D):D+a}var sa,ta,ua,fs,va,wa; +if(A){D=z?require("path").dirname(D)+"/":__dirname+"/";wa=()=>{va||(fs=require("fs"),va=require("path"))};sa=function(b,c){wa();b=va.normalize(b);return fs.readFileSync(b,c?null:"utf8")};ua=b=>{b=sa(b,!0);b.buffer||(b=new Uint8Array(b));return b};ta=(b,c,d)=>{wa();b=va.normalize(b);fs.readFile(b,function(f,g){f?d(f):c(g.buffer)})};1{if(ya())throw process.exitCode=b,c;c instanceof xa||E("exiting due to exception: "+c);process.exit(b)};y.inspect=function(){return"[Emscripten Module object]"};let a;try{a=require("worker_threads")}catch(b){throw console.error('The "worker_threads" module is not supported in this node.js build - perhaps a newer version is needed?'),b;}global.Worker=a.Worker}else if(qa||z)z?D=self.location.href:"undefined"!==typeof document&&document.currentScript&&(D=document.currentScript.src), +_scriptDir&&(D=_scriptDir),0!==D.indexOf("blob:")?D=D.substr(0,D.replace(/[?#].*/,"").lastIndexOf("/")+1):D="",A||(sa=a=>{var b=new XMLHttpRequest;b.open("GET",a,!1);b.send(null);return b.responseText},z&&(ua=a=>{var b=new XMLHttpRequest;b.open("GET",a,!1);b.responseType="arraybuffer";b.send(null);return new Uint8Array(b.response)}),ta=(a,b,c)=>{var d=new XMLHttpRequest;d.open("GET",a,!0);d.responseType="arraybuffer";d.onload=()=>{200==d.status||0==d.status&&d.response?b(d.response):c()};d.onerror= +c;d.send(null)});A&&"undefined"===typeof performance&&(global.performance=require("perf_hooks").performance);var za=console.log.bind(console),Aa=console.warn.bind(console);A&&(wa(),za=a=>fs.writeSync(1,a+"\n"),Aa=a=>fs.writeSync(2,a+"\n"));var Ba=y.print||za,E=y.printErr||Aa;ka(y,na);na=null;y.thisProgram&&(oa=y.thisProgram);y.quit&&(pa=y.quit);var Ca,Da=0,Ea;y.wasmBinary&&(Ea=y.wasmBinary);var noExitRuntime=y.noExitRuntime||!0;"object"!==typeof WebAssembly&&Fa("no native wasm support detected"); +var h,Ga,Ha=!1;function Ia(a){var b=new TextDecoder(a);this.decode=c=>{c.buffer instanceof SharedArrayBuffer&&(c=new Uint8Array(c));return b.decode.call(b,c)}}var Ja="undefined"!==typeof TextDecoder?new Ia("utf8"):void 0; +function Ka(a,b,c){var d=b+c;for(c=b;a[c]&&!(c>=d);)++c;if(16f?d+=String.fromCharCode(f):(f-=65536,d+=String.fromCharCode(55296|f>>10,56320|f&1023))}}else d+=String.fromCharCode(f)}return d}function F(a,b){return a?Ka(r(),a,b):""} +function La(a,b,c,d){if(!(0=k){var n=a.charCodeAt(++g);k=65536+((k&1023)<<10)|n&1023}if(127>=k){if(c>=d)break;b[c++]=k}else{if(2047>=k){if(c+1>=d)break;b[c++]=192|k>>6}else{if(65535>=k){if(c+2>=d)break;b[c++]=224|k>>12}else{if(c+3>=d)break;b[c++]=240|k>>18;b[c++]=128|k>>12&63}b[c++]=128|k>>6&63}b[c++]=128|k&63}}b[c]=0;return c-f}function Ma(a,b,c){return La(a,r(),b,c)} +function Na(a){for(var b=0,c=0;c=d&&(d=65536+((d&1023)<<10)|a.charCodeAt(++c)&1023);127>=d?++b:b=2047>=d?b+2:65535>=d?b+3:b+4}return b}"undefined"!==typeof TextDecoder&&new Ia("utf-16le");function Oa(a,b){e().set(a,b)}var l,aa,ba,Pa,Qa,ca,fa,ha,ja;B&&(l=y.buffer); +function q(a){l=a;y.HEAP8=aa=new Int8Array(a);y.HEAP16=Pa=new Int16Array(a);y.HEAP32=ca=new Int32Array(a);y.HEAPU8=ba=new Uint8Array(a);y.HEAPU16=Qa=new Uint16Array(a);y.HEAPU32=fa=new Uint32Array(a);y.HEAPF32=ha=new Float32Array(a);y.HEAPF64=ja=new Float64Array(a)}var Ra=y.INITIAL_MEMORY||16777216; +if(B)h=y.wasmMemory,l=y.buffer;else if(y.wasmMemory)h=y.wasmMemory;else if(h=new WebAssembly.Memory({initial:Ra/65536,maximum:32768,shared:!0}),!(h.buffer instanceof SharedArrayBuffer))throw E("requested a shared WebAssembly.Memory but the returned buffer is not a SharedArrayBuffer, indicating that while the browser has SharedArrayBuffer it does not have WebAssembly threads support - you may need to set a flag"),A&&console.log("(on node you may need: --experimental-wasm-threads --experimental-wasm-bulk-memory and also use a recent version)"), +Error("bad memory");h&&(l=h.buffer);Ra=l.byteLength;q(l);var Sa,Ta=[],Ua=[],Va=[],Wa=0;function ya(){return noExitRuntime||0>2]=0,M.ea(b.worker))} +var M={j:[],D:[],U:[],sa:function(){for(var a=0;1>a;++a)M.W()},ta:function(){M.receiveObjectTransfer=M.wa;M.threadInit=M.ga;M.setExitStatus=M.ya},i:{},ya:function(){},fa:function(){for(var a in M.i){var b=M.i[a];b&&b.worker&&M.ea(b.worker)}for(a=0;a>2]=0;try{a()}finally{u()[hb>>2]=1}},wa:function(a){if("undefined"!==typeof ib){for(var b in a.M)N[b]= +a.M[b];!y.canvas&&a.o&&N[a.o]&&(y.canvas=N[a.o].l,y.canvas.id=a.o)}},ga:function(){for(var a in M.U)M.U[a]()},aa:function(a,b){a.onmessage=c=>{c=c.data;var d=c.cmd;a.s&&(M.la=a.s.T);if(c.targetThread&&c.targetThread!=jb()){var f=M.i[c.Ta];f?f.worker.postMessage(c,c.transferList):E('Internal error! Worker sent a message "'+d+'" to target pthread '+c.targetThread+", but that thread no longer exists!")}else if("processQueuedMainThreadWork"===d)kb();else if("spawnThread"===d)lb(c);else if("cleanupThread"=== +d)fb(c.thread);else if("killThread"===d)c=c.thread,u()[c>>2]=0,d=M.i[c],delete M.i[c],d.worker.terminate(),gb(c),M.D.splice(M.D.indexOf(d.worker),1),d.worker.s=void 0;else if("cancelThread"===d)M.i[c.thread].worker.postMessage({cmd:"cancel"});else if("loaded"===d)a.loaded=!0,b&&b(a),a.C&&(a.C(),delete a.C);else if("print"===d)Ba("Thread "+c.threadId+": "+c.text);else if("printErr"===d)E("Thread "+c.threadId+": "+c.text);else if("alert"===d)alert("Thread "+c.threadId+": "+c.text);else if("setimmediate"=== +c.target)a.postMessage(c);else if("onAbort"===d){if(y.onAbort)y.onAbort(c.arg)}else E("worker sent an unknown command "+d);M.la=void 0};a.onerror=c=>{E("worker sent an error! "+c.filename+":"+c.lineno+": "+c.message);throw c;};A&&(a.on("message",function(c){a.onmessage({data:c})}),a.on("error",function(c){a.onerror(c)}),a.on("detachedExit",function(){}));a.postMessage({cmd:"load",urlOrBlob:y.mainScriptUrlOrBlob||_scriptDir,wasmMemory:h,wasmModule:Ga})},W:function(){var a=ra("skwasm.worker.js");M.j.push(new Worker(a))}, +oa:function(){0==M.j.length&&(M.W(),M.aa(M.j[0]));return M.j.pop()}};y.establishStackSpace=function(){var a=jb(),b=u()[a+44>>2];a=u()[a+48>>2];mb(b,b-a);L(b)};function nb(a){if(B)return O(1,0,a);try{ob(a)}catch(b){b instanceof xa||"unwind"==b||pa(1,b)}}function J(a){return Sa.get(a)}y.invokeEntryPoint=function(a,b){return J(a)(b)};var pb;pb=A?()=>{var a=process.hrtime();return 1E3*a[0]+a[1]/1E6}:B?()=>performance.now()-y.__performance_now_clock_drift:()=>performance.now(); +function qb(a){this.B=a-16;this.Da=function(b){u()[this.B+4>>2]=b};this.Aa=function(b){u()[this.B+8>>2]=b};this.Ba=function(){u()[this.B>>2]=0};this.za=function(){var b=0;e()[this.B+12>>0]=b};this.Ca=function(){var b=0;e()[this.B+13>>0]=b};this.qa=function(b,c){this.Da(b);this.Aa(c);this.Ba();this.za();this.Ca()}}var rb=0; +function lb(a){var b=M.oa();if(!b)return 6;M.D.push(b);var c=M.i[a.S]={worker:b,T:a.S};b.s=c;var d={cmd:"run",start_routine:a.Ea,arg:a.A,threadInfoStruct:a.S};d.o=a.o;d.M=a.M;b.C=()=>{d.time=performance.now();b.postMessage(d,a.Ja)};b.loaded&&(b.C(),delete b.C);return 0}var sb={},tb=[null,[],[]],ub={};function vb(a,b,c){return B?O(2,1,a,b,c):0}function wb(a,b){if(B)return O(3,1,a,b)}function xb(a,b,c){return B?O(4,1,a,b,c):0} +function yb(a,b,c,d,f,g){if(B)b=O(5,1,a,b,c,d,f,g);else if(g<<=12,0!==(d&16)&&0!==a%65536)b=-28;else if(0!==(d&32)){var k=65536*Math.ceil(b/65536);(a=zb(65536,k))?r().fill(0,a,a+k):a=0;a?(sb[a]={va:a,ua:b,ja:!0,fd:f,Qa:c,flags:d,offset:g},b=a):b=-48}else b=-52;return b}function Ab(a,b){if(B)a=O(6,1,a,b);else{var c=sb[a];0!==b&&c?(b===c.ua&&(sb[a]=null,c.ja&&Bb(c.va)),a=0):a=-28}return a}function Cb(a,b,c){if(B)return O(7,1,a,b,c)} +function Db(a){var b=a.getExtension("ANGLE_instanced_arrays");b&&(a.vertexAttribDivisor=function(c,d){b.vertexAttribDivisorANGLE(c,d)},a.drawArraysInstanced=function(c,d,f,g){b.drawArraysInstancedANGLE(c,d,f,g)},a.drawElementsInstanced=function(c,d,f,g,k){b.drawElementsInstancedANGLE(c,d,f,g,k)})} +function Eb(a){var b=a.getExtension("OES_vertex_array_object");b&&(a.createVertexArray=function(){return b.createVertexArrayOES()},a.deleteVertexArray=function(c){b.deleteVertexArrayOES(c)},a.bindVertexArray=function(c){b.bindVertexArrayOES(c)},a.isVertexArray=function(c){return b.isVertexArrayOES(c)})}function Fb(a){var b=a.getExtension("WEBGL_draw_buffers");b&&(a.drawBuffers=function(c,d){b.drawBuffersWEBGL(c,d)})} +var Gb=1,Hb=[],P=[],Ib=[],Jb=[],Kb=[],Q=[],R=[],Lb={},N={},Mb=[],Nb=[],Ob={},Pb={},Qb=4;function S(a){Rb||(Rb=a)}function Sb(a){for(var b=Gb++,c=a.length;c>2]=jb();var d={Na:c,attributes:b,version:b.ba,v:a};a.canvas&&(a.canvas.H=d);Lb[c]=d;("undefined"===typeof b.Z||b.Z)&&Wb(d);return c} +function Wb(a){a||(a=T);if(!a.ra){a.ra=!0;var b=a.v;Db(b);Eb(b);Fb(b);b.X=b.getExtension("WEBGL_draw_instanced_base_vertex_base_instance");b.da=b.getExtension("WEBGL_multi_draw_instanced_base_vertex_base_instance");2<=a.version&&(b.Y=b.getExtension("EXT_disjoint_timer_query_webgl2"));if(2>a.version||!b.Y)b.Y=b.getExtension("EXT_disjoint_timer_query");b.Pa=b.getExtension("WEBGL_multi_draw");(b.getSupportedExtensions()||[]).forEach(function(c){c.includes("lose_context")||c.includes("debug")||b.getExtension(c)})}} +var ib={},Rb,T,Xb=[];function Yb(a,b,c,d){for(var f=0;f>2]=k}} +function Zb(a,b,c){if(b){var d=void 0;switch(a){case 36346:d=1;break;case 36344:0!=c&&1!=c&&S(1280);return;case 34814:case 36345:d=0;break;case 34466:var f=U.getParameter(34467);d=f?f.length:0;break;case 33309:if(2>T.version){S(1282);return}d=2*(U.getSupportedExtensions()||[]).length;break;case 33307:case 33308:if(2>T.version){S(1280);return}d=33307==a?3:0}if(void 0===d)switch(f=U.getParameter(a),typeof f){case "number":d=f;break;case "boolean":d=f?1:0;break;case "string":S(1280);return;case "object":if(null=== +f)switch(a){case 34964:case 35725:case 34965:case 36006:case 36007:case 32873:case 34229:case 36662:case 36663:case 35053:case 35055:case 36010:case 35097:case 35869:case 32874:case 36389:case 35983:case 35368:case 34068:d=0;break;default:S(1280);return}else{if(f instanceof Float32Array||f instanceof Uint32Array||f instanceof Int32Array||f instanceof Array){for(a=0;a>2]=f[a];break;case 2:w()[b+4*a>>2]=f[a];break;case 4:e()[b+a>>0]=f[a]?1:0}return}try{d=f.name| +0}catch(g){S(1280);E("GL_INVALID_ENUM in glGet"+c+"v: Unknown object returned from WebGL getParameter("+a+")! (error: "+g+")");return}}break;default:S(1280);E("GL_INVALID_ENUM in glGet"+c+"v: Native code calling glGet"+c+"v("+a+") and it returns "+f+" of type "+typeof f+"!");return}switch(c){case 1:c=d;ea()[b>>2]=c;ea()[b+4>>2]=(c-ea()[b>>2])/4294967296;break;case 0:u()[b>>2]=d;break;case 2:w()[b>>2]=d;break;case 4:e()[b>>0]=d?1:0}}else S(1281)} +function $b(a){var b=Na(a)+1,c=Vb(b);Ma(a,c,b);return c}function ac(a){return"]"==a.slice(-1)&&a.lastIndexOf("[")}function bc(a){a-=5120;0==a?a=e():1==a?a=r():2==a?(h.buffer!=l&&q(h.buffer),a=Pa):4==a?a=u():6==a?a=w():5==a||28922==a||28520==a||30779==a||30782==a?a=ea():(h.buffer!=l&&q(h.buffer),a=Qa);return a} +function cc(a,b,c,d,f){a=bc(a);var g=31-Math.clz32(a.BYTES_PER_ELEMENT),k=Qb;return a.subarray(f>>g,f+d*(c*({5:3,6:4,8:2,29502:3,29504:4,26917:2,26918:2,29846:3,29847:4}[b-6402]||1)*(1<>g)}function V(a){var b=U.ka;if(b){var c=b.G[a];"number"===typeof c&&(b.G[a]=c=U.getUniformLocation(b,b.ha[a]+(0>3,k=0;k>2]=g;u()[f+4>>2]=c;u()[f+8>>2]=d;ic(a,657457152,0,g,f)})}function jc(a){a=2>2]=b,u()[d.g+4>>2]=c);if(d.l||!d.I)d.l&&(d=d.l),a=!1,d.H&&d.H.v&&(a=d.H.v.getParameter(2978),a=0===a[0]&&0===a[1]&&a[2]===d.width&&a[3]===d.height),d.width=b,d.height=c,a&&d.H.v.viewport(0,0,b,c);else return d.g?(d=u()[d.g+8>>2],a=a?F(a):"",hc(d,a,b,c),1):-4;return 0}function lc(a,b,c){return B?O(8,1,a,b,c):kc(a,b,c)}var mc=["default","low-power","high-performance"]; +function nc(a,b){b>>=2;var c=u()[b+6];b={alpha:!!u()[b],depth:!!u()[b+1],stencil:!!u()[b+2],antialias:!!u()[b+3],premultipliedAlpha:!!u()[b+4],preserveDrawingBuffer:!!u()[b+5],powerPreference:mc[c],failIfMajorPerformanceCaveat:!!u()[b+7],ba:u()[b+8],Oa:u()[b+9],Z:u()[b+10],na:u()[b+11],Ra:u()[b+12],Sa:u()[b+13]};a=jc(a);if(!a)return 0;a.l&&(a=a.l);if(b.na){if(!(a.transferControlToOffscreen||"undefined"!==typeof OffscreenCanvas&&a instanceof OffscreenCanvas))return 0;if(a.transferControlToOffscreen){if(!a.I)N[a.id]= +{canvas:a.transferControlToOffscreen(),g:Vb(12),id:a.id},a.I=!0;else if(!N[a.id])return 0;a=N[a.id]}}return Tb(a,b)}var pc={};function qc(){if(!rc){var a={USER:"web_user",LOGNAME:"web_user",PATH:"/",PWD:"/",HOME:"/home/web_user",LANG:("object"===typeof navigator&&navigator.languages&&navigator.languages[0]||"C").replace("-","_")+".UTF-8",_:oa||"./this.program"},b;for(b in pc)void 0===pc[b]?delete a[b]:a[b]=pc[b];var c=[];for(b in a)c.push(b+"="+a[b]);rc=c}return rc}var rc; +function sc(a,b){if(B)return O(9,1,a,b);var c=0;qc().forEach(function(d,f){var g=b+c;f=u()[a+4*f>>2]=g;for(g=0;g>0]=d.charCodeAt(g);e()[f>>0]=0;c+=d.length+1});return 0}function tc(a,b){if(B)return O(10,1,a,b);var c=qc();u()[a>>2]=c.length;var d=0;c.forEach(function(f){d+=f.length+1});u()[b>>2]=d;return 0}function uc(a){return B?O(11,1,a):0}function vc(a,b,c,d,f,g){if(B)return O(12,1,a,b,c,d,f,g);a=ub.pa(a);b=ub.ma(a,b,c,d);u()[g>>2]=b;return 0} +function wc(a,b,c,d){if(B)return O(13,1,a,b,c,d);a=ub.pa(a);b=ub.ma(a,b,c);u()[d>>2]=b;return 0}function xc(a,b,c,d,f){if(B)return O(14,1,a,b,c,d,f)}function yc(a,b,c,d){if(B)return O(15,1,a,b,c,d);for(var f=0,g=0;g>2],n=u()[b+4>>2];b+=8;for(var p=0;p>2]=f;return 0}function zc(a){return 0===a%4&&(0!==a%100||0===a%400)}function Ac(a,b){for(var c=0,d=0;d<=b;c+=a[d++]);return c} +var Bc=[31,29,31,30,31,30,31,31,30,31,30,31],Cc=[31,28,31,30,31,30,31,31,30,31,30,31];function Dc(a,b){for(a=new Date(a.getTime());0d-a.getDate())b-=d-a.getDate()+1,a.setDate(1),11>c?a.setMonth(c+1):(a.setMonth(0),a.setFullYear(a.getFullYear()+1));else{a.setDate(a.getDate()+b);break}}return a} +function Ec(a,b,c,d){function f(m,x,C){for(m="number"===typeof m?m.toString():m||"";m.lengthoc?-1:0=k(C,m)?0>=k(x,m)?m.getFullYear()+1:m.getFullYear():m.getFullYear()-1}var t=u()[d+40>>2];d={Ha:u()[d>>2],Ga:u()[d+4>>2],N:u()[d+8>>2],F:u()[d+12>>2],u:u()[d+16>>2],h:u()[d+20>>2],O:u()[d+24>>2],P:u()[d+28>>2],Ua:u()[d+32>> +2],Fa:u()[d+36>>2],Ia:t?F(t):""};c=F(c);t={"%c":"%a %b %d %H:%M:%S %Y","%D":"%m/%d/%y","%F":"%Y-%m-%d","%h":"%b","%r":"%I:%M:%S %p","%R":"%H:%M","%T":"%H:%M:%S","%x":"%m/%d/%y","%X":"%H:%M:%S","%Ec":"%c","%EC":"%C","%Ex":"%m/%d/%y","%EX":"%H:%M:%S","%Ey":"%y","%EY":"%Y","%Od":"%d","%Oe":"%e","%OH":"%H","%OI":"%I","%Om":"%m","%OM":"%M","%OS":"%S","%Ou":"%u","%OU":"%U","%OV":"%V","%Ow":"%w","%OW":"%W","%Oy":"%y"};for(var v in t)c=c.replace(new RegExp(v,"g"),t[v]);var Y="Sunday Monday Tuesday Wednesday Thursday Friday Saturday".split(" "), +G="January February March April May June July August September October November December".split(" ");t={"%a":function(m){return Y[m.O].substring(0,3)},"%A":function(m){return Y[m.O]},"%b":function(m){return G[m.u].substring(0,3)},"%B":function(m){return G[m.u]},"%C":function(m){return g((m.h+1900)/100|0,2)},"%d":function(m){return g(m.F,2)},"%e":function(m){return f(m.F,2," ")},"%g":function(m){return p(m).toString().substring(2)},"%G":function(m){return p(m)},"%H":function(m){return g(m.N,2)},"%I":function(m){m= +m.N;0==m?m=12:12m.N?"AM":"PM"},"%S":function(m){return g(m.Ha,2)},"%t":function(){return"\t"},"%u":function(m){return m.O||7},"%U":function(m){var x=new Date(m.h+1900,0,1),C=0===x.getDay()?x:Dc(x,7-x.getDay());m=new Date(m.h+1900,m.u,m.F);return 0>k(C,m)?g(Math.ceil((31-C.getDate()+ +(Ac(zc(m.getFullYear())?Bc:Cc,m.getMonth()-1)-31)+m.getDate())/7),2):0===k(C,x)?"01":"00"},"%V":function(m){var x=new Date(m.h+1901,0,4),C=n(new Date(m.h+1900,0,4));x=n(x);var da=Dc(new Date(m.h+1900,0,1),m.P);return 0>k(da,C)?"53":0>=k(x,da)?"01":g(Math.ceil((C.getFullYear()k(C,m)? +g(Math.ceil((31-C.getDate()+(Ac(zc(m.getFullYear())?Bc:Cc,m.getMonth()-1)-31)+m.getDate())/7),2):0===k(C,x)?"01":"00"},"%y":function(m){return(m.h+1900).toString().substring(2)},"%Y":function(m){return m.h+1900},"%z":function(m){m=m.Fa;var x=0<=m;m=Math.abs(m)/60;return(x?"+":"-")+String("0000"+(m/60*100+m%60)).slice(-4)},"%Z":function(m){return m.Ia},"%%":function(){return"%"}};for(v in t)c.includes(v)&&(c=c.replace(new RegExp(v,"g"),t[v](d)));v=Fc(c);if(v.length>b)return 0;Oa(v,a);return v.length- +1}B||M.sa();for(var U,X=0;32>X;++X)Xb.push(Array(X));var Gc=new Float32Array(288);for(X=0;288>X;++X)W[X]=Gc.subarray(0,X+1);var Hc=new Int32Array(288);for(X=0;288>X;++X)dc[X]=Hc.subarray(0,X+1);var Ic=[null,nb,vb,wb,xb,yb,Ab,Cb,lc,sc,tc,uc,vc,wc,xc,yc];function Fc(a){var b=Array(Na(a)+1);La(a,b,0,b.length);return b} +var bd={__cxa_allocate_exception:function(a){return Vb(a+16)+16},__cxa_throw:function(a,b,c){(new qb(a)).qa(b,c);rb++;throw a;},__emscripten_init_main_thread_js:function(a){Jc(a,!z,1,!qa);M.ga()},__emscripten_thread_cleanup:function(a){B?postMessage({cmd:"cleanupThread",thread:a}):fb(a)},__pthread_create_js:function(a,b,c,d){if("undefined"===typeof SharedArrayBuffer)return E("Current environment does not support SharedArrayBuffer, pthreads are not available!"),6;var f=[],g=0,k=b?u()[b+40>>2]:0;-1== +k?k="#canvas":k&&(k=F(k).trim());k&&(k=k.split(","));var n={},p=y.canvas?y.canvas.id:"",t;for(t in k){var v=k[t].trim();try{if("#canvas"==v){if(!y.canvas){E('pthread_create: could not find canvas with ID "'+v+'" to transfer to thread!');g=28;break}v=y.canvas.id}if(N[v]){var Y=N[v];N[v]=null;y.canvas instanceof OffscreenCanvas&&v===y.canvas.id&&(y.canvas=null)}else if(!B){var G=y.canvas&&y.canvas.id===v?y.canvas:document.querySelector(v);if(!G){E('pthread_create: could not find canvas with ID "'+v+ +'" to transfer to thread!');g=28;break}if(G.I){E('pthread_create: cannot transfer canvas with ID "'+v+'" to thread, since the current thread does not have control over it!');g=63;break}if(G.transferControlToOffscreen)G.g||(G.g=Vb(12),u()[G.g>>2]=G.width,u()[G.g+4>>2]=G.height,u()[G.g+8>>2]=0),Y={l:G.transferControlToOffscreen(),g:G.g,id:G.id},G.I=!0;else return E('pthread_create: cannot transfer control of canvas "'+v+'" to pthread, because current browser does not support OffscreenCanvas!'),E("pthread_create: Build with -s OFFSCREEN_FRAMEBUFFER=1 to enable fallback proxying of GL commands from pthread to main thread."), +52}Y&&(f.push(Y.l),n[Y.id]=Y)}catch(m){return E('pthread_create: failed to transfer control of canvas "'+v+'" to OffscreenCanvas! Error: '+m),28}}if(B&&(0===f.length||g))return Kc(687865856,a,b,c,d);if(g)return g;for(t in n)u()[n[t].g+8>>2]=a;a={Ea:c,S:a,A:d,o:p,M:n,Ja:f};return B?(a.Ka="spawnThread",postMessage(a,f),0):lb(a)},__syscall_fcntl64:vb,__syscall_fstat64:wb,__syscall_ioctl:xb,__syscall_mmap2:yb,__syscall_munmap:Ab,__syscall_open:Cb,_emscripten_default_pthread_stack_size:function(){return 2097152}, +_emscripten_futex_wait_non_blocking:function(a,b,c){var d=performance.now();c=d+c;for(Atomics.exchange(u(),Lc>>2,a);;){d=performance.now();if(d>c)return Atomics.exchange(u(),Lc>>2,0),-73;d=Atomics.exchange(u(),Lc>>2,0);if(0==d)break;kb();if(Atomics.load(u(),a>>2)!=b)return-6;Atomics.exchange(u(),Lc>>2,a)}return 0},_emscripten_notify_thread_queue:function(a,b){if(a==b)postMessage({cmd:"processQueuedMainThreadWork"});else if(B)postMessage({targetThread:a,cmd:"processThreadQueue"});else{a=(a=M.i[a])&& +a.worker;if(!a)return;a.postMessage({cmd:"processThreadQueue"})}return 1},_emscripten_throw_longjmp:function(){throw"longjmp";},abort:function(){Fa("")},clock_gettime:function(a,b){if(0===a)a=Date.now();else if(1===a||4===a)a=pb();else return u()[Mc()>>2]=28,-1;u()[b>>2]=a/1E3|0;u()[b+4>>2]=a%1E3*1E6|0;return 0},emscripten_check_blocking_allowed:function(){A||z||(Ca||(Ca={}),Ca["Blocking on the main thread is very dangerous, see https://emscripten.org/docs/porting/pthreads.html#blocking-on-the-main-browser-thread"]|| +(Ca["Blocking on the main thread is very dangerous, see https://emscripten.org/docs/porting/pthreads.html#blocking-on-the-main-browser-thread"]=1,E("Blocking on the main thread is very dangerous, see https://emscripten.org/docs/porting/pthreads.html#blocking-on-the-main-browser-thread")))},emscripten_get_now:pb,emscripten_glActiveTexture:function(a){U.activeTexture(a)},emscripten_glAttachShader:function(a,b){U.attachShader(P[a],Q[b])},emscripten_glBindAttribLocation:function(a,b,c){U.bindAttribLocation(P[a], +b,F(c))},emscripten_glBindBuffer:function(a,b){35051==a?U.R=b:35052==a&&(U.m=b);U.bindBuffer(a,Hb[b])},emscripten_glBindFramebuffer:function(a,b){U.bindFramebuffer(a,Ib[b])},emscripten_glBindRenderbuffer:function(a,b){U.bindRenderbuffer(a,Jb[b])},emscripten_glBindSampler:function(a,b){U.bindSampler(a,Mb[b])},emscripten_glBindTexture:function(a,b){U.bindTexture(a,Kb[b])},emscripten_glBindVertexArray:function(a){U.bindVertexArray(R[a])},emscripten_glBindVertexArrayOES:function(a){U.bindVertexArray(R[a])}, +emscripten_glBlendColor:function(a,b,c,d){U.blendColor(a,b,c,d)},emscripten_glBlendEquation:function(a){U.blendEquation(a)},emscripten_glBlendFunc:function(a,b){U.blendFunc(a,b)},emscripten_glBlitFramebuffer:function(a,b,c,d,f,g,k,n,p,t){U.blitFramebuffer(a,b,c,d,f,g,k,n,p,t)},emscripten_glBufferData:function(a,b,c,d){2<=T.version?c?U.bufferData(a,r(),d,c,b):U.bufferData(a,b,d):U.bufferData(a,c?r().subarray(c,c+b):b,d)},emscripten_glBufferSubData:function(a,b,c,d){2<=T.version?U.bufferSubData(a,b, +r(),d,c):U.bufferSubData(a,b,r().subarray(d,d+c))},emscripten_glCheckFramebufferStatus:function(a){return U.checkFramebufferStatus(a)},emscripten_glClear:function(a){U.clear(a)},emscripten_glClearColor:function(a,b,c,d){U.clearColor(a,b,c,d)},emscripten_glClearStencil:function(a){U.clearStencil(a)},emscripten_glClientWaitSync:function(a,b,c,d){return U.clientWaitSync(Nb[a],b,(c>>>0)+4294967296*d)},emscripten_glColorMask:function(a,b,c,d){U.colorMask(!!a,!!b,!!c,!!d)},emscripten_glCompileShader:function(a){U.compileShader(Q[a])}, +emscripten_glCompressedTexImage2D:function(a,b,c,d,f,g,k,n){2<=T.version?U.m?U.compressedTexImage2D(a,b,c,d,f,g,k,n):U.compressedTexImage2D(a,b,c,d,f,g,r(),n,k):U.compressedTexImage2D(a,b,c,d,f,g,n?r().subarray(n,n+k):null)},emscripten_glCompressedTexSubImage2D:function(a,b,c,d,f,g,k,n,p){2<=T.version?U.m?U.compressedTexSubImage2D(a,b,c,d,f,g,k,n,p):U.compressedTexSubImage2D(a,b,c,d,f,g,k,r(),p,n):U.compressedTexSubImage2D(a,b,c,d,f,g,k,p?r().subarray(p,p+n):null)},emscripten_glCopyBufferSubData:function(a, +b,c,d,f){U.copyBufferSubData(a,b,c,d,f)},emscripten_glCopyTexSubImage2D:function(a,b,c,d,f,g,k,n){U.copyTexSubImage2D(a,b,c,d,f,g,k,n)},emscripten_glCreateProgram:function(){var a=Sb(P),b=U.createProgram();b.name=a;b.L=b.J=b.K=0;b.V=1;P[a]=b;return a},emscripten_glCreateShader:function(a){var b=Sb(Q);Q[b]=U.createShader(a);return b},emscripten_glCullFace:function(a){U.cullFace(a)},emscripten_glDeleteBuffers:function(a,b){for(var c=0;c>2],f=Hb[d];f&&(U.deleteBuffer(f),f.name= +0,Hb[d]=null,d==U.R&&(U.R=0),d==U.m&&(U.m=0))}},emscripten_glDeleteFramebuffers:function(a,b){for(var c=0;c>2],f=Ib[d];f&&(U.deleteFramebuffer(f),f.name=0,Ib[d]=null)}},emscripten_glDeleteProgram:function(a){if(a){var b=P[a];b?(U.deleteProgram(b),b.name=0,P[a]=null):S(1281)}},emscripten_glDeleteRenderbuffers:function(a,b){for(var c=0;c>2],f=Jb[d];f&&(U.deleteRenderbuffer(f),f.name=0,Jb[d]=null)}},emscripten_glDeleteSamplers:function(a,b){for(var c=0;c< +a;c++){var d=u()[b+4*c>>2],f=Mb[d];f&&(U.deleteSampler(f),f.name=0,Mb[d]=null)}},emscripten_glDeleteShader:function(a){if(a){var b=Q[a];b?(U.deleteShader(b),Q[a]=null):S(1281)}},emscripten_glDeleteSync:function(a){if(a){var b=Nb[a];b?(U.deleteSync(b),b.name=0,Nb[a]=null):S(1281)}},emscripten_glDeleteTextures:function(a,b){for(var c=0;c>2],f=Kb[d];f&&(U.deleteTexture(f),f.name=0,Kb[d]=null)}},emscripten_glDeleteVertexArrays:function(a,b){for(var c=0;c> +2];U.deleteVertexArray(R[d]);R[d]=null}},emscripten_glDeleteVertexArraysOES:function(a,b){for(var c=0;c>2];U.deleteVertexArray(R[d]);R[d]=null}},emscripten_glDepthMask:function(a){U.depthMask(!!a)},emscripten_glDisable:function(a){U.disable(a)},emscripten_glDisableVertexAttribArray:function(a){U.disableVertexAttribArray(a)},emscripten_glDrawArrays:function(a,b,c){U.drawArrays(a,b,c)},emscripten_glDrawArraysInstanced:function(a,b,c,d){U.drawArraysInstanced(a,b,c,d)},emscripten_glDrawArraysInstancedBaseInstanceWEBGL:function(a, +b,c,d,f){U.X.drawArraysInstancedBaseInstanceWEBGL(a,b,c,d,f)},emscripten_glDrawBuffers:function(a,b){for(var c=Xb[a],d=0;d>2];U.drawBuffers(c)},emscripten_glDrawElements:function(a,b,c,d){U.drawElements(a,b,c,d)},emscripten_glDrawElementsInstanced:function(a,b,c,d,f){U.drawElementsInstanced(a,b,c,d,f)},emscripten_glDrawElementsInstancedBaseVertexBaseInstanceWEBGL:function(a,b,c,d,f,g,k){U.X.drawElementsInstancedBaseVertexBaseInstanceWEBGL(a,b,c,d,f,g,k)},emscripten_glDrawRangeElements:function(a, +b,c,d,f,g){U.drawElements(a,d,f,g)},emscripten_glEnable:function(a){U.enable(a)},emscripten_glEnableVertexAttribArray:function(a){U.enableVertexAttribArray(a)},emscripten_glFenceSync:function(a,b){return(a=U.fenceSync(a,b))?(b=Sb(Nb),a.name=b,Nb[b]=a,b):0},emscripten_glFinish:function(){U.finish()},emscripten_glFlush:function(){U.flush()},emscripten_glFramebufferRenderbuffer:function(a,b,c,d){U.framebufferRenderbuffer(a,b,c,Jb[d])},emscripten_glFramebufferTexture2D:function(a,b,c,d,f){U.framebufferTexture2D(a, +b,c,Kb[d],f)},emscripten_glFrontFace:function(a){U.frontFace(a)},emscripten_glGenBuffers:function(a,b){Yb(a,b,"createBuffer",Hb)},emscripten_glGenFramebuffers:function(a,b){Yb(a,b,"createFramebuffer",Ib)},emscripten_glGenRenderbuffers:function(a,b){Yb(a,b,"createRenderbuffer",Jb)},emscripten_glGenSamplers:function(a,b){Yb(a,b,"createSampler",Mb)},emscripten_glGenTextures:function(a,b){Yb(a,b,"createTexture",Kb)},emscripten_glGenVertexArrays:function(a,b){Yb(a,b,"createVertexArray",R)},emscripten_glGenVertexArraysOES:function(a, +b){Yb(a,b,"createVertexArray",R)},emscripten_glGenerateMipmap:function(a){U.generateMipmap(a)},emscripten_glGetBufferParameteriv:function(a,b,c){c?u()[c>>2]=U.getBufferParameter(a,b):S(1281)},emscripten_glGetError:function(){var a=U.getError()||Rb;Rb=0;return a},emscripten_glGetFloatv:function(a,b){Zb(a,b,2)},emscripten_glGetFramebufferAttachmentParameteriv:function(a,b,c,d){a=U.getFramebufferAttachmentParameter(a,b,c);if(a instanceof WebGLRenderbuffer||a instanceof WebGLTexture)a=a.name|0;u()[d>> +2]=a},emscripten_glGetIntegerv:function(a,b){Zb(a,b,0)},emscripten_glGetProgramInfoLog:function(a,b,c,d){a=U.getProgramInfoLog(P[a]);null===a&&(a="(unknown error)");b=0>2]=b)},emscripten_glGetProgramiv:function(a,b,c){if(c)if(a>=Gb)S(1281);else if(a=P[a],35716==b)a=U.getProgramInfoLog(a),null===a&&(a="(unknown error)"),u()[c>>2]=a.length+1;else if(35719==b){if(!a.L)for(b=0;b> +2]=a.L}else if(35722==b){if(!a.J)for(b=0;b>2]=a.J}else if(35381==b){if(!a.K)for(b=0;b>2]=a.K}else u()[c>>2]=U.getProgramParameter(a,b);else S(1281)},emscripten_glGetRenderbufferParameteriv:function(a,b,c){c?u()[c>>2]=U.getRenderbufferParameter(a,b):S(1281)},emscripten_glGetShaderInfoLog:function(a,b,c, +d){a=U.getShaderInfoLog(Q[a]);null===a&&(a="(unknown error)");b=0>2]=b)},emscripten_glGetShaderPrecisionFormat:function(a,b,c,d){a=U.getShaderPrecisionFormat(a,b);u()[c>>2]=a.rangeMin;u()[c+4>>2]=a.rangeMax;u()[d>>2]=a.precision},emscripten_glGetShaderiv:function(a,b,c){c?35716==b?(a=U.getShaderInfoLog(Q[a]),null===a&&(a="(unknown error)"),a=a?a.length+1:0,u()[c>>2]=a):35720==b?(a=(a=U.getShaderSource(Q[a]))?a.length+1:0,u()[c>>2]=a):u()[c>>2]=U.getShaderParameter(Q[a], +b):S(1281)},emscripten_glGetString:function(a){var b=Ob[a];if(!b){switch(a){case 7939:b=U.getSupportedExtensions()||[];b=b.concat(b.map(function(d){return"GL_"+d}));b=$b(b.join(" "));break;case 7936:case 7937:case 37445:case 37446:(b=U.getParameter(a))||S(1280);b=b&&$b(b);break;case 7938:b=U.getParameter(7938);b=2<=T.version?"OpenGL ES 3.0 ("+b+")":"OpenGL ES 2.0 ("+b+")";b=$b(b);break;case 35724:b=U.getParameter(35724);var c=b.match(/^WebGL GLSL ES ([0-9]\.[0-9][0-9]?)(?:$| .*)/);null!==c&&(3==c[1].length&& +(c[1]+="0"),b="OpenGL ES GLSL ES "+c[1]+" ("+b+")");b=$b(b);break;default:S(1280)}Ob[a]=b}return b},emscripten_glGetStringi:function(a,b){if(2>T.version)return S(1282),0;var c=Pb[a];if(c)return 0>b||b>=c.length?(S(1281),0):c[b];switch(a){case 7939:return c=U.getSupportedExtensions()||[],c=c.concat(c.map(function(d){return"GL_"+d})),c=c.map(function(d){return $b(d)}),c=Pb[a]=c,0>b||b>=c.length?(S(1281),0):c[b];default:return S(1280),0}},emscripten_glGetUniformLocation:function(a,b){b=F(b);if(a=P[a]){var c= +a,d=c.G,f=c.ia,g;if(!d)for(c.G=d={},c.ha={},g=0;g>>0,f=b.slice(0,g));if((f=a.ia[f])&&d>2];U.invalidateFramebuffer(a,d)},emscripten_glInvalidateSubFramebuffer:function(a,b,c,d,f,g,k){for(var n=Xb[b],p=0;p>2];U.invalidateSubFramebuffer(a,n,d,f,g,k)},emscripten_glIsSync:function(a){return U.isSync(Nb[a])},emscripten_glIsTexture:function(a){return(a=Kb[a])?U.isTexture(a):0},emscripten_glLineWidth:function(a){U.lineWidth(a)},emscripten_glLinkProgram:function(a){a=P[a];U.linkProgram(a);a.G=0;a.ia={}},emscripten_glMultiDrawArraysInstancedBaseInstanceWEBGL:function(a, +b,c,d,f,g){U.da.multiDrawArraysInstancedBaseInstanceWEBGL(a,u(),b>>2,u(),c>>2,u(),d>>2,ea(),f>>2,g)},emscripten_glMultiDrawElementsInstancedBaseVertexBaseInstanceWEBGL:function(a,b,c,d,f,g,k,n){U.da.multiDrawElementsInstancedBaseVertexBaseInstanceWEBGL(a,u(),b>>2,c,u(),d>>2,u(),f>>2,u(),g>>2,ea(),k>>2,n)},emscripten_glPixelStorei:function(a,b){3317==a&&(Qb=b);U.pixelStorei(a,b)},emscripten_glReadBuffer:function(a){U.readBuffer(a)},emscripten_glReadPixels:function(a,b,c,d,f,g,k){if(2<=T.version)if(U.R)U.readPixels(a, +b,c,d,f,g,k);else{var n=bc(g);U.readPixels(a,b,c,d,f,g,n,k>>31-Math.clz32(n.BYTES_PER_ELEMENT))}else(k=cc(g,f,c,d,k))?U.readPixels(a,b,c,d,f,g,k):S(1280)},emscripten_glRenderbufferStorage:function(a,b,c,d){U.renderbufferStorage(a,b,c,d)},emscripten_glRenderbufferStorageMultisample:function(a,b,c,d,f){U.renderbufferStorageMultisample(a,b,c,d,f)},emscripten_glSamplerParameterf:function(a,b,c){U.samplerParameterf(Mb[a],b,c)},emscripten_glSamplerParameteri:function(a,b,c){U.samplerParameteri(Mb[a],b, +c)},emscripten_glSamplerParameteriv:function(a,b,c){c=u()[c>>2];U.samplerParameteri(Mb[a],b,c)},emscripten_glScissor:function(a,b,c,d){U.scissor(a,b,c,d)},emscripten_glShaderSource:function(a,b,c,d){for(var f="",g=0;g>2]:-1;f+=F(u()[c+4*g>>2],0>k?void 0:k)}U.shaderSource(Q[a],f)},emscripten_glStencilFunc:function(a,b,c){U.stencilFunc(a,b,c)},emscripten_glStencilFuncSeparate:function(a,b,c,d){U.stencilFuncSeparate(a,b,c,d)},emscripten_glStencilMask:function(a){U.stencilMask(a)}, +emscripten_glStencilMaskSeparate:function(a,b){U.stencilMaskSeparate(a,b)},emscripten_glStencilOp:function(a,b,c){U.stencilOp(a,b,c)},emscripten_glStencilOpSeparate:function(a,b,c,d){U.stencilOpSeparate(a,b,c,d)},emscripten_glTexImage2D:function(a,b,c,d,f,g,k,n,p){if(2<=T.version)if(U.m)U.texImage2D(a,b,c,d,f,g,k,n,p);else if(p){var t=bc(n);U.texImage2D(a,b,c,d,f,g,k,n,t,p>>31-Math.clz32(t.BYTES_PER_ELEMENT))}else U.texImage2D(a,b,c,d,f,g,k,n,null);else U.texImage2D(a,b,c,d,f,g,k,n,p?cc(n,k,d,f,p): +null)},emscripten_glTexParameterf:function(a,b,c){U.texParameterf(a,b,c)},emscripten_glTexParameterfv:function(a,b,c){c=w()[c>>2];U.texParameterf(a,b,c)},emscripten_glTexParameteri:function(a,b,c){U.texParameteri(a,b,c)},emscripten_glTexParameteriv:function(a,b,c){c=u()[c>>2];U.texParameteri(a,b,c)},emscripten_glTexStorage2D:function(a,b,c,d,f){U.texStorage2D(a,b,c,d,f)},emscripten_glTexSubImage2D:function(a,b,c,d,f,g,k,n,p){if(2<=T.version)if(U.m)U.texSubImage2D(a,b,c,d,f,g,k,n,p);else if(p){var t= +bc(n);U.texSubImage2D(a,b,c,d,f,g,k,n,t,p>>31-Math.clz32(t.BYTES_PER_ELEMENT))}else U.texSubImage2D(a,b,c,d,f,g,k,n,null);else t=null,p&&(t=cc(n,k,f,g,p)),U.texSubImage2D(a,b,c,d,f,g,k,n,t)},emscripten_glUniform1f:function(a,b){U.uniform1f(V(a),b)},emscripten_glUniform1fv:function(a,b,c){if(2<=T.version)U.uniform1fv(V(a),w(),c>>2,b);else{if(288>=b)for(var d=W[b-1],f=0;f>2];else d=w().subarray(c>>2,c+4*b>>2);U.uniform1fv(V(a),d)}},emscripten_glUniform1i:function(a,b){U.uniform1i(V(a), +b)},emscripten_glUniform1iv:function(a,b,c){if(2<=T.version)U.uniform1iv(V(a),u(),c>>2,b);else{if(288>=b)for(var d=dc[b-1],f=0;f>2];else d=u().subarray(c>>2,c+4*b>>2);U.uniform1iv(V(a),d)}},emscripten_glUniform2f:function(a,b,c){U.uniform2f(V(a),b,c)},emscripten_glUniform2fv:function(a,b,c){if(2<=T.version)U.uniform2fv(V(a),w(),c>>2,2*b);else{if(144>=b)for(var d=W[2*b-1],f=0;f<2*b;f+=2)d[f]=w()[c+4*f>>2],d[f+1]=w()[c+(4*f+4)>>2];else d=w().subarray(c>>2,c+8*b>>2);U.uniform2fv(V(a), +d)}},emscripten_glUniform2i:function(a,b,c){U.uniform2i(V(a),b,c)},emscripten_glUniform2iv:function(a,b,c){if(2<=T.version)U.uniform2iv(V(a),u(),c>>2,2*b);else{if(144>=b)for(var d=dc[2*b-1],f=0;f<2*b;f+=2)d[f]=u()[c+4*f>>2],d[f+1]=u()[c+(4*f+4)>>2];else d=u().subarray(c>>2,c+8*b>>2);U.uniform2iv(V(a),d)}},emscripten_glUniform3f:function(a,b,c,d){U.uniform3f(V(a),b,c,d)},emscripten_glUniform3fv:function(a,b,c){if(2<=T.version)U.uniform3fv(V(a),w(),c>>2,3*b);else{if(96>=b)for(var d=W[3*b-1],f=0;f<3* +b;f+=3)d[f]=w()[c+4*f>>2],d[f+1]=w()[c+(4*f+4)>>2],d[f+2]=w()[c+(4*f+8)>>2];else d=w().subarray(c>>2,c+12*b>>2);U.uniform3fv(V(a),d)}},emscripten_glUniform3i:function(a,b,c,d){U.uniform3i(V(a),b,c,d)},emscripten_glUniform3iv:function(a,b,c){if(2<=T.version)U.uniform3iv(V(a),u(),c>>2,3*b);else{if(96>=b)for(var d=dc[3*b-1],f=0;f<3*b;f+=3)d[f]=u()[c+4*f>>2],d[f+1]=u()[c+(4*f+4)>>2],d[f+2]=u()[c+(4*f+8)>>2];else d=u().subarray(c>>2,c+12*b>>2);U.uniform3iv(V(a),d)}},emscripten_glUniform4f:function(a,b, +c,d,f){U.uniform4f(V(a),b,c,d,f)},emscripten_glUniform4fv:function(a,b,c){if(2<=T.version)U.uniform4fv(V(a),w(),c>>2,4*b);else{if(72>=b){var d=W[4*b-1],f=w();c>>=2;for(var g=0;g<4*b;g+=4){var k=c+g;d[g]=f[k];d[g+1]=f[k+1];d[g+2]=f[k+2];d[g+3]=f[k+3]}}else d=w().subarray(c>>2,c+16*b>>2);U.uniform4fv(V(a),d)}},emscripten_glUniform4i:function(a,b,c,d,f){U.uniform4i(V(a),b,c,d,f)},emscripten_glUniform4iv:function(a,b,c){if(2<=T.version)U.uniform4iv(V(a),u(),c>>2,4*b);else{if(72>=b)for(var d=dc[4*b-1], +f=0;f<4*b;f+=4)d[f]=u()[c+4*f>>2],d[f+1]=u()[c+(4*f+4)>>2],d[f+2]=u()[c+(4*f+8)>>2],d[f+3]=u()[c+(4*f+12)>>2];else d=u().subarray(c>>2,c+16*b>>2);U.uniform4iv(V(a),d)}},emscripten_glUniformMatrix2fv:function(a,b,c,d){if(2<=T.version)U.uniformMatrix2fv(V(a),!!c,w(),d>>2,4*b);else{if(72>=b)for(var f=W[4*b-1],g=0;g<4*b;g+=4)f[g]=w()[d+4*g>>2],f[g+1]=w()[d+(4*g+4)>>2],f[g+2]=w()[d+(4*g+8)>>2],f[g+3]=w()[d+(4*g+12)>>2];else f=w().subarray(d>>2,d+16*b>>2);U.uniformMatrix2fv(V(a),!!c,f)}},emscripten_glUniformMatrix3fv:function(a, +b,c,d){if(2<=T.version)U.uniformMatrix3fv(V(a),!!c,w(),d>>2,9*b);else{if(32>=b)for(var f=W[9*b-1],g=0;g<9*b;g+=9)f[g]=w()[d+4*g>>2],f[g+1]=w()[d+(4*g+4)>>2],f[g+2]=w()[d+(4*g+8)>>2],f[g+3]=w()[d+(4*g+12)>>2],f[g+4]=w()[d+(4*g+16)>>2],f[g+5]=w()[d+(4*g+20)>>2],f[g+6]=w()[d+(4*g+24)>>2],f[g+7]=w()[d+(4*g+28)>>2],f[g+8]=w()[d+(4*g+32)>>2];else f=w().subarray(d>>2,d+36*b>>2);U.uniformMatrix3fv(V(a),!!c,f)}},emscripten_glUniformMatrix4fv:function(a,b,c,d){if(2<=T.version)U.uniformMatrix4fv(V(a),!!c,w(), +d>>2,16*b);else{if(18>=b){var f=W[16*b-1],g=w();d>>=2;for(var k=0;k<16*b;k+=16){var n=d+k;f[k]=g[n];f[k+1]=g[n+1];f[k+2]=g[n+2];f[k+3]=g[n+3];f[k+4]=g[n+4];f[k+5]=g[n+5];f[k+6]=g[n+6];f[k+7]=g[n+7];f[k+8]=g[n+8];f[k+9]=g[n+9];f[k+10]=g[n+10];f[k+11]=g[n+11];f[k+12]=g[n+12];f[k+13]=g[n+13];f[k+14]=g[n+14];f[k+15]=g[n+15]}}else f=w().subarray(d>>2,d+64*b>>2);U.uniformMatrix4fv(V(a),!!c,f)}},emscripten_glUseProgram:function(a){a=P[a];U.useProgram(a);U.ka=a},emscripten_glVertexAttrib1f:function(a,b){U.vertexAttrib1f(a, +b)},emscripten_glVertexAttrib2fv:function(a,b){U.vertexAttrib2f(a,w()[b>>2],w()[b+4>>2])},emscripten_glVertexAttrib3fv:function(a,b){U.vertexAttrib3f(a,w()[b>>2],w()[b+4>>2],w()[b+8>>2])},emscripten_glVertexAttrib4fv:function(a,b){U.vertexAttrib4f(a,w()[b>>2],w()[b+4>>2],w()[b+8>>2],w()[b+12>>2])},emscripten_glVertexAttribDivisor:function(a,b){U.vertexAttribDivisor(a,b)},emscripten_glVertexAttribIPointer:function(a,b,c,d,f){U.vertexAttribIPointer(a,b,c,d,f)},emscripten_glVertexAttribPointer:function(a, +b,c,d,f,g){U.vertexAttribPointer(a,b,c,!!d,f,g)},emscripten_glViewport:function(a,b,c,d){U.viewport(a,b,c,d)},emscripten_glWaitSync:function(a,b,c,d){U.waitSync(Nb[a],b,(c>>>0)+4294967296*d)},emscripten_receive_on_main_thread_js:function(a,b,c){gc.length=b;c>>=3;for(var d=0;da?cb[-a-1]:Ic[a]).apply(null,gc)},emscripten_resize_heap:function(a){var b=r().length;a>>>=0;if(a<=b||2147483648=c;c*=2){var d=b*(1+.2/c);d=Math.min(d,a+100663296);d=Math.max(a, +d);0>>16);q(h.buffer);var f=1;break a}catch(g){}f=void 0}if(f)return!0}return!1},emscripten_set_canvas_element_size:function(a,b,c){return jc(a)?kc(a,b,c):lc(a,b,c)},emscripten_unwind_to_js_event_loop:function(){throw"unwind";},emscripten_webgl_create_context:function(a,b){return nc(a,b)},emscripten_webgl_init_context_attributes:function(a){for(var b=a>>2,c=0;14>c;++c)u()[b+c]=0;u()[b]=u()[b+1]=u()[b+3]=u()[b+4]= +u()[b+8]=u()[b+10]=1;z&&(u()[a+48>>2]=1)},emscripten_webgl_make_context_current:function(a){T=Lb[a];y.La=U=T&&T.v;return!a||U?0:-5},environ_get:sc,environ_sizes_get:tc,exit:function(a){ob(a)},fd_close:uc,fd_pread:vc,fd_read:wc,fd_seek:xc,fd_write:yc,getTempRet0:function(){return Da},invoke_ii:Nc,invoke_iii:Oc,invoke_iiii:Pc,invoke_iiiii:Qc,invoke_iiiiii:Rc,invoke_iiiiiii:Sc,invoke_v:Tc,invoke_vi:Uc,invoke_vii:Vc,invoke_viii:Wc,invoke_viiii:Xc,invoke_viiiii:Yc,invoke_viiiiii:Zc,invoke_viiiiiii:$c, +invoke_viiiiiiii:ad,memory:h||y.wasmMemory,setTempRet0:function(a){Da=a},strftime_l:function(a,b,c,d){return Ec(a,b,c,d)}}; +(function(){function a(f,g){y.asm=f.exports;M.U.push(y.asm.emscripten_tls_init);Sa=y.asm.__indirect_function_table;Ua.unshift(y.asm.__wasm_call_ctors);Ga=g;if(!B){var k=M.j.length;M.j.forEach(function(n){M.aa(n,function(){if(!--k&&(H--,y.monitorRunDependencies&&y.monitorRunDependencies(H),0==H&&(null!==Ya&&(clearInterval(Ya),Ya=null),Za))){var p=Za;Za=null;p()}})})}}function b(f){a(f.instance,f.module)}function c(f){return bb().then(function(g){return WebAssembly.instantiate(g,d)}).then(function(g){return g}).then(f, +function(g){E("failed to asynchronously prepare wasm: "+g);Fa(g)})}var d={env:bd,wasi_snapshot_preview1:bd};B||(H++,y.monitorRunDependencies&&y.monitorRunDependencies(H));if(y.instantiateWasm)try{return y.instantiateWasm(d,a)}catch(f){return E("Module.instantiateWasm callback failed with error: "+f),!1}(function(){return Ea||"function"!==typeof WebAssembly.instantiateStreaming||$a()||I.startsWith("file://")||"function"!==typeof fetch?c(b):fetch(I,{credentials:"same-origin"}).then(function(f){return WebAssembly.instantiateStreaming(f, +d).then(b,function(g){E("wasm streaming compile failed: "+g);E("falling back to ArrayBuffer instantiation");return c(b)})})})().catch(ma);return{}})();y.___wasm_call_ctors=function(){return(y.___wasm_call_ctors=y.asm.__wasm_call_ctors).apply(null,arguments)};y._canvas_destroy=function(){return(y._canvas_destroy=y.asm.canvas_destroy).apply(null,arguments)};y._canvas_saveLayer=function(){return(y._canvas_saveLayer=y.asm.canvas_saveLayer).apply(null,arguments)}; +y._canvas_save=function(){return(y._canvas_save=y.asm.canvas_save).apply(null,arguments)};y._canvas_restore=function(){return(y._canvas_restore=y.asm.canvas_restore).apply(null,arguments)};y._canvas_restoreToCount=function(){return(y._canvas_restoreToCount=y.asm.canvas_restoreToCount).apply(null,arguments)};y._canvas_getSaveCount=function(){return(y._canvas_getSaveCount=y.asm.canvas_getSaveCount).apply(null,arguments)}; +y._canvas_translate=function(){return(y._canvas_translate=y.asm.canvas_translate).apply(null,arguments)};y._canvas_scale=function(){return(y._canvas_scale=y.asm.canvas_scale).apply(null,arguments)};y._canvas_rotate=function(){return(y._canvas_rotate=y.asm.canvas_rotate).apply(null,arguments)};y._canvas_skew=function(){return(y._canvas_skew=y.asm.canvas_skew).apply(null,arguments)};y._canvas_transform=function(){return(y._canvas_transform=y.asm.canvas_transform).apply(null,arguments)}; +y._canvas_clipRect=function(){return(y._canvas_clipRect=y.asm.canvas_clipRect).apply(null,arguments)};y._canvas_clipRRect=function(){return(y._canvas_clipRRect=y.asm.canvas_clipRRect).apply(null,arguments)};y._canvas_clipPath=function(){return(y._canvas_clipPath=y.asm.canvas_clipPath).apply(null,arguments)};y._canvas_drawColor=function(){return(y._canvas_drawColor=y.asm.canvas_drawColor).apply(null,arguments)}; +y._canvas_drawLine=function(){return(y._canvas_drawLine=y.asm.canvas_drawLine).apply(null,arguments)};y._canvas_drawPaint=function(){return(y._canvas_drawPaint=y.asm.canvas_drawPaint).apply(null,arguments)};y._canvas_drawRect=function(){return(y._canvas_drawRect=y.asm.canvas_drawRect).apply(null,arguments)};y._canvas_drawRRect=function(){return(y._canvas_drawRRect=y.asm.canvas_drawRRect).apply(null,arguments)}; +y._canvas_drawDRRect=function(){return(y._canvas_drawDRRect=y.asm.canvas_drawDRRect).apply(null,arguments)};y._canvas_drawOval=function(){return(y._canvas_drawOval=y.asm.canvas_drawOval).apply(null,arguments)};y._canvas_drawCircle=function(){return(y._canvas_drawCircle=y.asm.canvas_drawCircle).apply(null,arguments)};y._canvas_drawArc=function(){return(y._canvas_drawArc=y.asm.canvas_drawArc).apply(null,arguments)}; +y._canvas_drawPath=function(){return(y._canvas_drawPath=y.asm.canvas_drawPath).apply(null,arguments)};y._canvas_drawPicture=function(){return(y._canvas_drawPicture=y.asm.canvas_drawPicture).apply(null,arguments)};y._canvas_getTransform=function(){return(y._canvas_getTransform=y.asm.canvas_getTransform).apply(null,arguments)};y._canvas_getLocalClipBounds=function(){return(y._canvas_getLocalClipBounds=y.asm.canvas_getLocalClipBounds).apply(null,arguments)}; +y._canvas_getDeviceClipBounds=function(){return(y._canvas_getDeviceClipBounds=y.asm.canvas_getDeviceClipBounds).apply(null,arguments)};y._contourMeasureIter_create=function(){return(y._contourMeasureIter_create=y.asm.contourMeasureIter_create).apply(null,arguments)};y._contourMeasureIter_next=function(){return(y._contourMeasureIter_next=y.asm.contourMeasureIter_next).apply(null,arguments)}; +y._contourMeasure_dispose=function(){return(y._contourMeasure_dispose=y.asm.contourMeasure_dispose).apply(null,arguments)};y._contourMeasure_length=function(){return(y._contourMeasure_length=y.asm.contourMeasure_length).apply(null,arguments)};y._contourMeasure_isClosed=function(){return(y._contourMeasure_isClosed=y.asm.contourMeasure_isClosed).apply(null,arguments)};y._contourMeasure_getPosTan=function(){return(y._contourMeasure_getPosTan=y.asm.contourMeasure_getPosTan).apply(null,arguments)}; +y._contourMeasure_getSegment=function(){return(y._contourMeasure_getSegment=y.asm.contourMeasure_getSegment).apply(null,arguments)};y._paint_create=function(){return(y._paint_create=y.asm.paint_create).apply(null,arguments)};y._paint_destroy=function(){return(y._paint_destroy=y.asm.paint_destroy).apply(null,arguments)};y._paint_setBlendMode=function(){return(y._paint_setBlendMode=y.asm.paint_setBlendMode).apply(null,arguments)}; +y._paint_setStyle=function(){return(y._paint_setStyle=y.asm.paint_setStyle).apply(null,arguments)};y._paint_getStyle=function(){return(y._paint_getStyle=y.asm.paint_getStyle).apply(null,arguments)};y._paint_setStrokeWidth=function(){return(y._paint_setStrokeWidth=y.asm.paint_setStrokeWidth).apply(null,arguments)};y._paint_getStrokeWidth=function(){return(y._paint_getStrokeWidth=y.asm.paint_getStrokeWidth).apply(null,arguments)}; +y._paint_setStrokeCap=function(){return(y._paint_setStrokeCap=y.asm.paint_setStrokeCap).apply(null,arguments)};y._paint_getStrokeCap=function(){return(y._paint_getStrokeCap=y.asm.paint_getStrokeCap).apply(null,arguments)};y._paint_setStrokeJoin=function(){return(y._paint_setStrokeJoin=y.asm.paint_setStrokeJoin).apply(null,arguments)};y._paint_getStrokeJoin=function(){return(y._paint_getStrokeJoin=y.asm.paint_getStrokeJoin).apply(null,arguments)}; +y._paint_setAntiAlias=function(){return(y._paint_setAntiAlias=y.asm.paint_setAntiAlias).apply(null,arguments)};y._paint_getAntiAlias=function(){return(y._paint_getAntiAlias=y.asm.paint_getAntiAlias).apply(null,arguments)};y._paint_setColorInt=function(){return(y._paint_setColorInt=y.asm.paint_setColorInt).apply(null,arguments)};y._paint_getColorInt=function(){return(y._paint_getColorInt=y.asm.paint_getColorInt).apply(null,arguments)}; +y._paint_setMiterLimit=function(){return(y._paint_setMiterLimit=y.asm.paint_setMiterLimit).apply(null,arguments)};y._paint_getMiterLImit=function(){return(y._paint_getMiterLImit=y.asm.paint_getMiterLImit).apply(null,arguments)};y._path_create=function(){return(y._path_create=y.asm.path_create).apply(null,arguments)};y._path_destroy=function(){return(y._path_destroy=y.asm.path_destroy).apply(null,arguments)};y._path_copy=function(){return(y._path_copy=y.asm.path_copy).apply(null,arguments)}; +y._path_setFillType=function(){return(y._path_setFillType=y.asm.path_setFillType).apply(null,arguments)};y._path_getFillType=function(){return(y._path_getFillType=y.asm.path_getFillType).apply(null,arguments)};y._path_moveTo=function(){return(y._path_moveTo=y.asm.path_moveTo).apply(null,arguments)};y._path_relativeMoveTo=function(){return(y._path_relativeMoveTo=y.asm.path_relativeMoveTo).apply(null,arguments)};y._path_lineTo=function(){return(y._path_lineTo=y.asm.path_lineTo).apply(null,arguments)}; +y._path_relativeLineTo=function(){return(y._path_relativeLineTo=y.asm.path_relativeLineTo).apply(null,arguments)};y._path_quadraticBezierTo=function(){return(y._path_quadraticBezierTo=y.asm.path_quadraticBezierTo).apply(null,arguments)};y._path_relativeQuadraticBezierTo=function(){return(y._path_relativeQuadraticBezierTo=y.asm.path_relativeQuadraticBezierTo).apply(null,arguments)};y._path_cubicTo=function(){return(y._path_cubicTo=y.asm.path_cubicTo).apply(null,arguments)}; +y._path_relativeCubicTo=function(){return(y._path_relativeCubicTo=y.asm.path_relativeCubicTo).apply(null,arguments)};y._path_conicTo=function(){return(y._path_conicTo=y.asm.path_conicTo).apply(null,arguments)};y._path_relativeConicTo=function(){return(y._path_relativeConicTo=y.asm.path_relativeConicTo).apply(null,arguments)};y._path_arcToOval=function(){return(y._path_arcToOval=y.asm.path_arcToOval).apply(null,arguments)}; +y._path_arcToRotated=function(){return(y._path_arcToRotated=y.asm.path_arcToRotated).apply(null,arguments)};y._path_relativeArcToRotated=function(){return(y._path_relativeArcToRotated=y.asm.path_relativeArcToRotated).apply(null,arguments)};y._path_addRect=function(){return(y._path_addRect=y.asm.path_addRect).apply(null,arguments)};y._path_addOval=function(){return(y._path_addOval=y.asm.path_addOval).apply(null,arguments)}; +y._path_addArc=function(){return(y._path_addArc=y.asm.path_addArc).apply(null,arguments)};y._path_addPolygon=function(){return(y._path_addPolygon=y.asm.path_addPolygon).apply(null,arguments)};y._path_addRRect=function(){return(y._path_addRRect=y.asm.path_addRRect).apply(null,arguments)};y._path_addPath=function(){return(y._path_addPath=y.asm.path_addPath).apply(null,arguments)};y._path_close=function(){return(y._path_close=y.asm.path_close).apply(null,arguments)}; +y._path_reset=function(){return(y._path_reset=y.asm.path_reset).apply(null,arguments)};y._path_contains=function(){return(y._path_contains=y.asm.path_contains).apply(null,arguments)};y._path_transform=function(){return(y._path_transform=y.asm.path_transform).apply(null,arguments)};y._path_getBounds=function(){return(y._path_getBounds=y.asm.path_getBounds).apply(null,arguments)};y._path_combine=function(){return(y._path_combine=y.asm.path_combine).apply(null,arguments)}; +y._pictureRecorder_create=function(){return(y._pictureRecorder_create=y.asm.pictureRecorder_create).apply(null,arguments)};y._pictureRecorder_dispose=function(){return(y._pictureRecorder_dispose=y.asm.pictureRecorder_dispose).apply(null,arguments)};y._pictureRecorder_beginRecording=function(){return(y._pictureRecorder_beginRecording=y.asm.pictureRecorder_beginRecording).apply(null,arguments)}; +y._pictureRecorder_endRecording=function(){return(y._pictureRecorder_endRecording=y.asm.pictureRecorder_endRecording).apply(null,arguments)};y._picture_dispose=function(){return(y._picture_dispose=y.asm.picture_dispose).apply(null,arguments)};y._picture_approximateBytesUsed=function(){return(y._picture_approximateBytesUsed=y.asm.picture_approximateBytesUsed).apply(null,arguments)}; +y._surface_createFromCanvas=function(){return(y._surface_createFromCanvas=y.asm.surface_createFromCanvas).apply(null,arguments)};y._surface_destroy=function(){return(y._surface_destroy=y.asm.surface_destroy).apply(null,arguments)};y._surface_setCanvasSize=function(){return(y._surface_setCanvasSize=y.asm.surface_setCanvasSize).apply(null,arguments)};y._surface_renderPicture=function(){return(y._surface_renderPicture=y.asm.surface_renderPicture).apply(null,arguments)}; +var ic=y._emscripten_dispatch_to_thread_=function(){return(ic=y._emscripten_dispatch_to_thread_=y.asm.emscripten_dispatch_to_thread_).apply(null,arguments)},Mc=y.___errno_location=function(){return(Mc=y.___errno_location=y.asm.__errno_location).apply(null,arguments)},jb=y._pthread_self=function(){return(jb=y._pthread_self=y.asm.pthread_self).apply(null,arguments)},Bb=y._free=function(){return(Bb=y._free=y.asm.free).apply(null,arguments)},Vb=y._malloc=function(){return(Vb=y._malloc=y.asm.malloc).apply(null, +arguments)};y._emscripten_tls_init=function(){return(y._emscripten_tls_init=y.asm.emscripten_tls_init).apply(null,arguments)};var kb=y._emscripten_main_thread_process_queued_calls=function(){return(kb=y._emscripten_main_thread_process_queued_calls=y.asm.emscripten_main_thread_process_queued_calls).apply(null,arguments)},Jc=y.__emscripten_thread_init=function(){return(Jc=y.__emscripten_thread_init=y.asm._emscripten_thread_init).apply(null,arguments)}; +y._emscripten_current_thread_process_queued_calls=function(){return(y._emscripten_current_thread_process_queued_calls=y.asm.emscripten_current_thread_process_queued_calls).apply(null,arguments)}; +var Kc=y._emscripten_sync_run_in_main_thread_4=function(){return(Kc=y._emscripten_sync_run_in_main_thread_4=y.asm.emscripten_sync_run_in_main_thread_4).apply(null,arguments)},fc=y._emscripten_run_in_main_runtime_thread_js=function(){return(fc=y._emscripten_run_in_main_runtime_thread_js=y.asm.emscripten_run_in_main_runtime_thread_js).apply(null,arguments)},gb=y.__emscripten_thread_free_data=function(){return(gb=y.__emscripten_thread_free_data=y.asm._emscripten_thread_free_data).apply(null,arguments)}; +y.__emscripten_thread_exit=function(){return(y.__emscripten_thread_exit=y.asm._emscripten_thread_exit).apply(null,arguments)}; +var zb=y._memalign=function(){return(zb=y._memalign=y.asm.memalign).apply(null,arguments)},Z=y._setThrew=function(){return(Z=y._setThrew=y.asm.setThrew).apply(null,arguments)},mb=y._emscripten_stack_set_limits=function(){return(mb=y._emscripten_stack_set_limits=y.asm.emscripten_stack_set_limits).apply(null,arguments)},K=y.stackSave=function(){return(K=y.stackSave=y.asm.stackSave).apply(null,arguments)},L=y.stackRestore=function(){return(L=y.stackRestore=y.asm.stackRestore).apply(null,arguments)}, +ec=y.stackAlloc=function(){return(ec=y.stackAlloc=y.asm.stackAlloc).apply(null,arguments)},Lc=y.__emscripten_main_thread_futex=246984,hb=y.__emscripten_allow_main_runtime_queued_calls=243904;function Vc(a,b,c){var d=K();try{J(a)(b,c)}catch(f){L(d);if(f!==f+0&&"longjmp"!==f)throw f;Z(1,0)}}function Oc(a,b,c){var d=K();try{return J(a)(b,c)}catch(f){L(d);if(f!==f+0&&"longjmp"!==f)throw f;Z(1,0)}} +function ad(a,b,c,d,f,g,k,n,p){var t=K();try{J(a)(b,c,d,f,g,k,n,p)}catch(v){L(t);if(v!==v+0&&"longjmp"!==v)throw v;Z(1,0)}}function Tc(a){var b=K();try{J(a)()}catch(c){L(b);if(c!==c+0&&"longjmp"!==c)throw c;Z(1,0)}}function Nc(a,b){var c=K();try{return J(a)(b)}catch(d){L(c);if(d!==d+0&&"longjmp"!==d)throw d;Z(1,0)}}function Uc(a,b){var c=K();try{J(a)(b)}catch(d){L(c);if(d!==d+0&&"longjmp"!==d)throw d;Z(1,0)}} +function Qc(a,b,c,d,f){var g=K();try{return J(a)(b,c,d,f)}catch(k){L(g);if(k!==k+0&&"longjmp"!==k)throw k;Z(1,0)}}function Pc(a,b,c,d){var f=K();try{return J(a)(b,c,d)}catch(g){L(f);if(g!==g+0&&"longjmp"!==g)throw g;Z(1,0)}}function Wc(a,b,c,d){var f=K();try{J(a)(b,c,d)}catch(g){L(f);if(g!==g+0&&"longjmp"!==g)throw g;Z(1,0)}}function Yc(a,b,c,d,f,g){var k=K();try{J(a)(b,c,d,f,g)}catch(n){L(k);if(n!==n+0&&"longjmp"!==n)throw n;Z(1,0)}} +function Sc(a,b,c,d,f,g,k){var n=K();try{return J(a)(b,c,d,f,g,k)}catch(p){L(n);if(p!==p+0&&"longjmp"!==p)throw p;Z(1,0)}}function Rc(a,b,c,d,f,g){var k=K();try{return J(a)(b,c,d,f,g)}catch(n){L(k);if(n!==n+0&&"longjmp"!==n)throw n;Z(1,0)}}function Xc(a,b,c,d,f){var g=K();try{J(a)(b,c,d,f)}catch(k){L(g);if(k!==k+0&&"longjmp"!==k)throw k;Z(1,0)}}function Zc(a,b,c,d,f,g,k){var n=K();try{J(a)(b,c,d,f,g,k)}catch(p){L(n);if(p!==p+0&&"longjmp"!==p)throw p;Z(1,0)}} +function $c(a,b,c,d,f,g,k,n){var p=K();try{J(a)(b,c,d,f,g,k,n)}catch(t){L(p);if(t!==t+0&&"longjmp"!==t)throw t;Z(1,0)}}y.keepRuntimeAlive=ya;y.PThread=M;y.PThread=M;y.wasmMemory=h;y.ExitStatus=xa;var cd;function xa(a){this.name="ExitStatus";this.message="Program terminated with exit("+a+")";this.status=a}Za=function dd(){cd||ed();cd||(Za=dd)}; +function ed(){function a(){if(!cd&&(cd=!0,y.calledRun=!0,!Ha)){B||db(Ua);la(y);if(y.onRuntimeInitialized)y.onRuntimeInitialized();if(!B){if(y.postRun)for("function"==typeof y.postRun&&(y.postRun=[y.postRun]);y.postRun.length;){var b=y.postRun.shift();Va.unshift(b)}db(Va)}}}if(!(0{var instance=new WebAssembly.Instance(Module["wasmModule"],info);receiveInstance(instance);Module["wasmModule"]=null;return instance.exports});self.onmessage=(e=>{try{if(e.data.cmd==="load"){Module["wasmModule"]=e.data.wasmModule;Module["wasmMemory"]=e.data.wasmMemory;Module["buffer"]=Module["wasmMemory"].buffer;Module["ENVIRONMENT_IS_PTHREAD"]=true;if(typeof e.data.urlOrBlob==="string"){importScripts(e.data.urlOrBlob)}else{var objectUrl=URL.createObjectURL(e.data.urlOrBlob);importScripts(objectUrl);URL.revokeObjectURL(objectUrl)}skwasm(Module).then(function(instance){Module=instance})}else if(e.data.cmd==="run"){Module["__performance_now_clock_drift"]=performance.now()-e.data.time;Module["__emscripten_thread_init"](e.data.threadInfoStruct,/*isMainBrowserThread=*/0,/*isMainRuntimeThread=*/0,/*canBlock=*/1);Module["establishStackSpace"]();Module["PThread"].receiveObjectTransfer(e.data);Module["PThread"].threadInit();try{var result=Module["invokeEntryPoint"](e.data.start_routine,e.data.arg);if(Module["keepRuntimeAlive"]()){Module["PThread"].setExitStatus(result)}else{Module["__emscripten_thread_exit"](result)}}catch(ex){if(ex!="unwind"){if(ex instanceof Module["ExitStatus"]){if(Module["keepRuntimeAlive"]()){}else{Module["__emscripten_thread_exit"](ex.status)}}else{throw ex}}}}else if(e.data.cmd==="cancel"){if(Module["_pthread_self"]()){Module["__emscripten_thread_exit"](-1)}}else if(e.data.target==="setimmediate"){}else if(e.data.cmd==="processThreadQueue"){if(Module["_pthread_self"]()){Module["_emscripten_current_thread_process_queued_calls"]()}}else{err("worker.js received unknown command "+e.data.cmd);err(e.data)}}catch(ex){err("worker.js onmessage() captured an uncaught exception: "+ex);if(ex&&ex.stack)err(ex.stack);throw ex}}); diff --git a/example/.metadata b/example/.metadata deleted file mode 100644 index 30d90a7..0000000 --- a/example/.metadata +++ /dev/null @@ -1,45 +0,0 @@ -# This file tracks properties of this Flutter project. -# Used by Flutter tool to assess capabilities and perform upgrades etc. -# -# This file should be version controlled. - -version: - revision: 796c8ef79279f9c774545b3771238c3098dbefab - channel: stable - -project_type: app - -# Tracks metadata for the flutter migrate command -migration: - platforms: - - platform: root - create_revision: 796c8ef79279f9c774545b3771238c3098dbefab - base_revision: 796c8ef79279f9c774545b3771238c3098dbefab - - platform: android - create_revision: 796c8ef79279f9c774545b3771238c3098dbefab - base_revision: 796c8ef79279f9c774545b3771238c3098dbefab - - platform: ios - create_revision: 796c8ef79279f9c774545b3771238c3098dbefab - base_revision: 796c8ef79279f9c774545b3771238c3098dbefab - - platform: linux - create_revision: 796c8ef79279f9c774545b3771238c3098dbefab - base_revision: 796c8ef79279f9c774545b3771238c3098dbefab - - platform: macos - create_revision: 796c8ef79279f9c774545b3771238c3098dbefab - base_revision: 796c8ef79279f9c774545b3771238c3098dbefab - - platform: web - create_revision: 796c8ef79279f9c774545b3771238c3098dbefab - base_revision: 796c8ef79279f9c774545b3771238c3098dbefab - - platform: windows - create_revision: 796c8ef79279f9c774545b3771238c3098dbefab - base_revision: 796c8ef79279f9c774545b3771238c3098dbefab - - # User provided section - - # List of Local paths (relative to this file) that should be - # ignored by the migrate tool. - # - # Files that are not part of the templates will be ignored by default. - unmanaged_files: - - 'lib/main.dart' - - 'ios/Runner.xcodeproj/project.pbxproj' diff --git a/example/README.md b/example/README.md deleted file mode 100644 index 2b3fce4..0000000 --- a/example/README.md +++ /dev/null @@ -1,16 +0,0 @@ -# example - -A new Flutter project. - -## Getting Started - -This project is a starting point for a Flutter application. - -A few resources to get you started if this is your first Flutter project: - -- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab) -- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook) - -For help getting started with Flutter development, view the -[online documentation](https://docs.flutter.dev/), which offers tutorials, -samples, guidance on mobile development, and a full API reference. diff --git a/example/analysis_options.yaml b/example/analysis_options.yaml deleted file mode 100644 index 872a1eb..0000000 --- a/example/analysis_options.yaml +++ /dev/null @@ -1,4 +0,0 @@ -include: package:flutter_lints/flutter.yaml - -# Additional information about this file can be found at -# https://dart.dev/guides/language/analysis-options \ No newline at end of file diff --git a/example/android/.gitignore b/example/android/.gitignore deleted file mode 100644 index 6f56801..0000000 --- a/example/android/.gitignore +++ /dev/null @@ -1,13 +0,0 @@ -gradle-wrapper.jar -/.gradle -/captures/ -/gradlew -/gradlew.bat -/local.properties -GeneratedPluginRegistrant.java - -# Remember to never publicly share your keystore. -# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app -key.properties -**/*.keystore -**/*.jks diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle deleted file mode 100644 index 4c908eb..0000000 --- a/example/android/app/build.gradle +++ /dev/null @@ -1,72 +0,0 @@ -def localProperties = new Properties() -def localPropertiesFile = rootProject.file('local.properties') -if (localPropertiesFile.exists()) { - localPropertiesFile.withReader('UTF-8') { reader -> - localProperties.load(reader) - } -} - -def flutterRoot = localProperties.getProperty('flutter.sdk') -if (flutterRoot == null) { - throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") -} - -def flutterVersionCode = localProperties.getProperty('flutter.versionCode') -if (flutterVersionCode == null) { - flutterVersionCode = '1' -} - -def flutterVersionName = localProperties.getProperty('flutter.versionName') -if (flutterVersionName == null) { - flutterVersionName = '1.0' -} - -apply plugin: 'com.android.application' -apply plugin: 'kotlin-android' -apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" - -android { - namespace "com.example.example" - compileSdkVersion flutter.compileSdkVersion - ndkVersion flutter.ndkVersion - - compileOptions { - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 - } - - kotlinOptions { - jvmTarget = '1.8' - } - - sourceSets { - main.java.srcDirs += 'src/main/kotlin' - } - - defaultConfig { - // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). - applicationId "com.example.example" - // You can update the following values to match your application needs. - // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration. - minSdkVersion flutter.minSdkVersion - targetSdkVersion flutter.targetSdkVersion - versionCode flutterVersionCode.toInteger() - versionName flutterVersionName - } - - buildTypes { - release { - // TODO: Add your own signing config for the release build. - // Signing with the debug keys for now, so `flutter run --release` works. - signingConfig signingConfigs.debug - } - } -} - -flutter { - source '../..' -} - -dependencies { - implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" -} diff --git a/example/android/app/src/debug/AndroidManifest.xml b/example/android/app/src/debug/AndroidManifest.xml deleted file mode 100644 index 399f698..0000000 --- a/example/android/app/src/debug/AndroidManifest.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - diff --git a/example/android/app/src/main/AndroidManifest.xml b/example/android/app/src/main/AndroidManifest.xml deleted file mode 100644 index 19b862e..0000000 --- a/example/android/app/src/main/AndroidManifest.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - diff --git a/example/android/app/src/main/kotlin/com/example/example/MainActivity.kt b/example/android/app/src/main/kotlin/com/example/example/MainActivity.kt deleted file mode 100644 index e793a00..0000000 --- a/example/android/app/src/main/kotlin/com/example/example/MainActivity.kt +++ /dev/null @@ -1,6 +0,0 @@ -package com.example.example - -import io.flutter.embedding.android.FlutterActivity - -class MainActivity: FlutterActivity() { -} diff --git a/example/android/app/src/main/res/drawable-v21/launch_background.xml b/example/android/app/src/main/res/drawable-v21/launch_background.xml deleted file mode 100644 index f74085f..0000000 --- a/example/android/app/src/main/res/drawable-v21/launch_background.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - diff --git a/example/android/app/src/main/res/drawable/launch_background.xml b/example/android/app/src/main/res/drawable/launch_background.xml deleted file mode 100644 index 304732f..0000000 --- a/example/android/app/src/main/res/drawable/launch_background.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - diff --git a/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png deleted file mode 100644 index db77bb4..0000000 Binary files a/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png and /dev/null differ diff --git a/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png deleted file mode 100644 index 17987b7..0000000 Binary files a/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png and /dev/null differ diff --git a/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png deleted file mode 100644 index 09d4391..0000000 Binary files a/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ diff --git a/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png deleted file mode 100644 index d5f1c8d..0000000 Binary files a/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ diff --git a/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png deleted file mode 100644 index 4d6372e..0000000 Binary files a/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ diff --git a/example/android/app/src/main/res/values-night/styles.xml b/example/android/app/src/main/res/values-night/styles.xml deleted file mode 100644 index 06952be..0000000 --- a/example/android/app/src/main/res/values-night/styles.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - diff --git a/example/android/app/src/main/res/values/styles.xml b/example/android/app/src/main/res/values/styles.xml deleted file mode 100644 index cb1ef88..0000000 --- a/example/android/app/src/main/res/values/styles.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - diff --git a/example/android/app/src/profile/AndroidManifest.xml b/example/android/app/src/profile/AndroidManifest.xml deleted file mode 100644 index 399f698..0000000 --- a/example/android/app/src/profile/AndroidManifest.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - diff --git a/example/android/build.gradle b/example/android/build.gradle deleted file mode 100644 index f7eb7f6..0000000 --- a/example/android/build.gradle +++ /dev/null @@ -1,31 +0,0 @@ -buildscript { - ext.kotlin_version = '1.7.10' - repositories { - google() - mavenCentral() - } - - dependencies { - classpath 'com.android.tools.build:gradle:7.3.0' - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" - } -} - -allprojects { - repositories { - google() - mavenCentral() - } -} - -rootProject.buildDir = '../build' -subprojects { - project.buildDir = "${rootProject.buildDir}/${project.name}" -} -subprojects { - project.evaluationDependsOn(':app') -} - -tasks.register("clean", Delete) { - delete rootProject.buildDir -} diff --git a/example/android/gradle.properties b/example/android/gradle.properties deleted file mode 100644 index 94adc3a..0000000 --- a/example/android/gradle.properties +++ /dev/null @@ -1,3 +0,0 @@ -org.gradle.jvmargs=-Xmx1536M -android.useAndroidX=true -android.enableJetifier=true diff --git a/example/android/gradle/wrapper/gradle-wrapper.properties b/example/android/gradle/wrapper/gradle-wrapper.properties deleted file mode 100644 index 3c472b9..0000000 --- a/example/android/gradle/wrapper/gradle-wrapper.properties +++ /dev/null @@ -1,5 +0,0 @@ -distributionBase=GRADLE_USER_HOME -distributionPath=wrapper/dists -zipStoreBase=GRADLE_USER_HOME -zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip diff --git a/example/android/settings.gradle b/example/android/settings.gradle deleted file mode 100644 index 44e62bc..0000000 --- a/example/android/settings.gradle +++ /dev/null @@ -1,11 +0,0 @@ -include ':app' - -def localPropertiesFile = new File(rootProject.projectDir, "local.properties") -def properties = new Properties() - -assert localPropertiesFile.exists() -localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) } - -def flutterSdkPath = properties.getProperty("flutter.sdk") -assert flutterSdkPath != null, "flutter.sdk not set in local.properties" -apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle" diff --git a/example/ios/.gitignore b/example/ios/.gitignore deleted file mode 100644 index 7a7f987..0000000 --- a/example/ios/.gitignore +++ /dev/null @@ -1,34 +0,0 @@ -**/dgph -*.mode1v3 -*.mode2v3 -*.moved-aside -*.pbxuser -*.perspectivev3 -**/*sync/ -.sconsign.dblite -.tags* -**/.vagrant/ -**/DerivedData/ -Icon? -**/Pods/ -**/.symlinks/ -profile -xcuserdata -**/.generated/ -Flutter/App.framework -Flutter/Flutter.framework -Flutter/Flutter.podspec -Flutter/Generated.xcconfig -Flutter/ephemeral/ -Flutter/app.flx -Flutter/app.zip -Flutter/flutter_assets/ -Flutter/flutter_export_environment.sh -ServiceDefinitions.json -Runner/GeneratedPluginRegistrant.* - -# Exceptions to above rules. -!default.mode1v3 -!default.mode2v3 -!default.pbxuser -!default.perspectivev3 diff --git a/example/ios/Flutter/AppFrameworkInfo.plist b/example/ios/Flutter/AppFrameworkInfo.plist deleted file mode 100644 index 9625e10..0000000 --- a/example/ios/Flutter/AppFrameworkInfo.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - App - CFBundleIdentifier - io.flutter.flutter.app - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - App - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - 1.0 - MinimumOSVersion - 11.0 - - diff --git a/example/ios/Flutter/Debug.xcconfig b/example/ios/Flutter/Debug.xcconfig deleted file mode 100644 index 592ceee..0000000 --- a/example/ios/Flutter/Debug.xcconfig +++ /dev/null @@ -1 +0,0 @@ -#include "Generated.xcconfig" diff --git a/example/ios/Flutter/Release.xcconfig b/example/ios/Flutter/Release.xcconfig deleted file mode 100644 index 592ceee..0000000 --- a/example/ios/Flutter/Release.xcconfig +++ /dev/null @@ -1 +0,0 @@ -#include "Generated.xcconfig" diff --git a/example/ios/Runner.xcodeproj/project.pbxproj b/example/ios/Runner.xcodeproj/project.pbxproj deleted file mode 100644 index d6a25f8..0000000 --- a/example/ios/Runner.xcodeproj/project.pbxproj +++ /dev/null @@ -1,616 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 54; - objects = { - -/* Begin PBXBuildFile section */ - 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; - 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; - 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; - 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; - 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; - 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; - 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - 331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 97C146E61CF9000F007C117D /* Project object */; - proxyType = 1; - remoteGlobalIDString = 97C146ED1CF9000F007C117D; - remoteInfo = Runner; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXCopyFilesBuildPhase section */ - 9705A1C41CF9048500538489 /* Embed Frameworks */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = ""; - dstSubfolderSpec = 10; - files = ( - ); - name = "Embed Frameworks"; - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXCopyFilesBuildPhase section */ - -/* Begin PBXFileReference section */ - 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; - 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; - 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; - 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; - 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; - 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; - 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; - 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; - 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; - 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; - 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; - 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; - 331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 97C146EB1CF9000F007C117D /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 9740EEB11CF90186004384FC /* Flutter */ = { - isa = PBXGroup; - children = ( - 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, - 9740EEB21CF90195004384FC /* Debug.xcconfig */, - 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, - 9740EEB31CF90195004384FC /* Generated.xcconfig */, - ); - name = Flutter; - sourceTree = ""; - }; - 331C8082294A63A400263BE5 /* RunnerTests */ = { - isa = PBXGroup; - children = ( - 331C807B294A618700263BE5 /* RunnerTests.swift */, - ); - path = RunnerTests; - sourceTree = ""; - }; - 97C146E51CF9000F007C117D = { - isa = PBXGroup; - children = ( - 9740EEB11CF90186004384FC /* Flutter */, - 97C146F01CF9000F007C117D /* Runner */, - 97C146EF1CF9000F007C117D /* Products */, - 331C8082294A63A400263BE5 /* RunnerTests */, - ); - sourceTree = ""; - }; - 97C146EF1CF9000F007C117D /* Products */ = { - isa = PBXGroup; - children = ( - 97C146EE1CF9000F007C117D /* Runner.app */, - 331C8081294A63A400263BE5 /* RunnerTests.xctest */, - ); - name = Products; - sourceTree = ""; - }; - 97C146F01CF9000F007C117D /* Runner */ = { - isa = PBXGroup; - children = ( - 97C146FA1CF9000F007C117D /* Main.storyboard */, - 97C146FD1CF9000F007C117D /* Assets.xcassets */, - 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, - 97C147021CF9000F007C117D /* Info.plist */, - 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, - 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, - 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, - 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, - ); - path = Runner; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 331C8080294A63A400263BE5 /* RunnerTests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; - buildPhases = ( - 331C807D294A63A400263BE5 /* Sources */, - 331C807E294A63A400263BE5 /* Frameworks */, - 331C807F294A63A400263BE5 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 331C8086294A63A400263BE5 /* PBXTargetDependency */, - ); - name = RunnerTests; - productName = RunnerTests; - productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */; - productType = "com.apple.product-type.bundle.unit-test"; - }; - 97C146ED1CF9000F007C117D /* Runner */ = { - isa = PBXNativeTarget; - buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; - buildPhases = ( - 9740EEB61CF901F6004384FC /* Run Script */, - 97C146EA1CF9000F007C117D /* Sources */, - 97C146EB1CF9000F007C117D /* Frameworks */, - 97C146EC1CF9000F007C117D /* Resources */, - 9705A1C41CF9048500538489 /* Embed Frameworks */, - 3B06AD1E1E4923F5004D2608 /* Thin Binary */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = Runner; - productName = Runner; - productReference = 97C146EE1CF9000F007C117D /* Runner.app */; - productType = "com.apple.product-type.application"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 97C146E61CF9000F007C117D /* Project object */ = { - isa = PBXProject; - attributes = { - LastUpgradeCheck = 1300; - ORGANIZATIONNAME = ""; - TargetAttributes = { - 331C8080294A63A400263BE5 = { - CreatedOnToolsVersion = 14.0; - TestTargetID = 97C146ED1CF9000F007C117D; - }; - 97C146ED1CF9000F007C117D = { - CreatedOnToolsVersion = 7.3.1; - LastSwiftMigration = 1100; - }; - }; - }; - buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; - compatibilityVersion = "Xcode 9.3"; - developmentRegion = en; - hasScannedForEncodings = 0; - knownRegions = ( - en, - Base, - ); - mainGroup = 97C146E51CF9000F007C117D; - productRefGroup = 97C146EF1CF9000F007C117D /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 97C146ED1CF9000F007C117D /* Runner */, - 331C8080294A63A400263BE5 /* RunnerTests */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 331C807F294A63A400263BE5 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 97C146EC1CF9000F007C117D /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, - 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, - 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, - 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXShellScriptBuildPhase section */ - 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { - isa = PBXShellScriptBuildPhase; - alwaysOutOfDate = 1; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}", - ); - name = "Thin Binary"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; - }; - 9740EEB61CF901F6004384FC /* Run Script */ = { - isa = PBXShellScriptBuildPhase; - alwaysOutOfDate = 1; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "Run Script"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; - }; -/* End PBXShellScriptBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 331C807D294A63A400263BE5 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 97C146EA1CF9000F007C117D /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, - 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 331C8086294A63A400263BE5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 97C146ED1CF9000F007C117D /* Runner */; - targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin PBXVariantGroup section */ - 97C146FA1CF9000F007C117D /* Main.storyboard */ = { - isa = PBXVariantGroup; - children = ( - 97C146FB1CF9000F007C117D /* Base */, - ); - name = Main.storyboard; - sourceTree = ""; - }; - 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { - isa = PBXVariantGroup; - children = ( - 97C147001CF9000F007C117D /* Base */, - ); - name = LaunchScreen.storyboard; - sourceTree = ""; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - 249021D3217E4FDB00AE95B9 /* Profile */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = iphoneos; - SUPPORTED_PLATFORMS = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Profile; - }; - 249021D4217E4FDB00AE95B9 /* Profile */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_MODULES = YES; - CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; - DEVELOPMENT_TEAM = H6448R3DRS; - ENABLE_BITCODE = NO; - INFOPLIST_FILE = Runner/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - PRODUCT_BUNDLE_IDENTIFIER = com.example.example; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; - SWIFT_VERSION = 5.0; - VERSIONING_SYSTEM = "apple-generic"; - }; - name = Profile; - }; - 331C8088294A63A400263BE5 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = AE0B7B92F70575B8D7E0D07E /* Pods-RunnerTests.debug.xcconfig */; - buildSettings = { - BUNDLE_LOADER = "$(TEST_HOST)"; - CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1; - GENERATE_INFOPLIST_FILE = YES; - MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = com.example.example.RunnerTests; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 5.0; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; - }; - name = Debug; - }; - 331C8089294A63A400263BE5 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 89B67EB44CE7B6631473024E /* Pods-RunnerTests.release.xcconfig */; - buildSettings = { - BUNDLE_LOADER = "$(TEST_HOST)"; - CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1; - GENERATE_INFOPLIST_FILE = YES; - MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = com.example.example.RunnerTests; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 5.0; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; - }; - name = Release; - }; - 331C808A294A63A400263BE5 /* Profile */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 640959BDD8F10B91D80A66BE /* Pods-RunnerTests.profile.xcconfig */; - buildSettings = { - BUNDLE_LOADER = "$(TEST_HOST)"; - CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1; - GENERATE_INFOPLIST_FILE = YES; - MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = com.example.example.RunnerTests; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 5.0; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; - }; - name = Profile; - }; - 97C147031CF9000F007C117D /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = dwarf; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MTL_ENABLE_DEBUG_INFO = YES; - ONLY_ACTIVE_ARCH = YES; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 97C147041CF9000F007C117D /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = iphoneos; - SUPPORTED_PLATFORMS = iphoneos; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 97C147061CF9000F007C117D /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_MODULES = YES; - CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; - DEVELOPMENT_TEAM = H6448R3DRS; - ENABLE_BITCODE = NO; - INFOPLIST_FILE = Runner/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - PRODUCT_BUNDLE_IDENTIFIER = com.example.example; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 5.0; - VERSIONING_SYSTEM = "apple-generic"; - }; - name = Debug; - }; - 97C147071CF9000F007C117D /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_MODULES = YES; - CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; - DEVELOPMENT_TEAM = H6448R3DRS; - ENABLE_BITCODE = NO; - INFOPLIST_FILE = Runner/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - PRODUCT_BUNDLE_IDENTIFIER = com.example.example; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; - SWIFT_VERSION = 5.0; - VERSIONING_SYSTEM = "apple-generic"; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 331C8088294A63A400263BE5 /* Debug */, - 331C8089294A63A400263BE5 /* Release */, - 331C808A294A63A400263BE5 /* Profile */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 97C147031CF9000F007C117D /* Debug */, - 97C147041CF9000F007C117D /* Release */, - 249021D3217E4FDB00AE95B9 /* Profile */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 97C147061CF9000F007C117D /* Debug */, - 97C147071CF9000F007C117D /* Release */, - 249021D4217E4FDB00AE95B9 /* Profile */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = 97C146E61CF9000F007C117D /* Project object */; -} diff --git a/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 919434a..0000000 --- a/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist deleted file mode 100644 index 18d9810..0000000 --- a/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEDidComputeMac32BitWarning - - - diff --git a/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings deleted file mode 100644 index f9b0d7c..0000000 --- a/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +++ /dev/null @@ -1,8 +0,0 @@ - - - - - PreviewsEnabled - - - diff --git a/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme deleted file mode 100644 index e42adcb..0000000 --- a/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/example/ios/Runner.xcworkspace/contents.xcworkspacedata b/example/ios/Runner.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 1d526a1..0000000 --- a/example/ios/Runner.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist deleted file mode 100644 index 18d9810..0000000 --- a/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEDidComputeMac32BitWarning - - - diff --git a/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings deleted file mode 100644 index f9b0d7c..0000000 --- a/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +++ /dev/null @@ -1,8 +0,0 @@ - - - - - PreviewsEnabled - - - diff --git a/example/ios/Runner/AppDelegate.swift b/example/ios/Runner/AppDelegate.swift deleted file mode 100644 index 70693e4..0000000 --- a/example/ios/Runner/AppDelegate.swift +++ /dev/null @@ -1,13 +0,0 @@ -import UIKit -import Flutter - -@UIApplicationMain -@objc class AppDelegate: FlutterAppDelegate { - override func application( - _ application: UIApplication, - didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? - ) -> Bool { - GeneratedPluginRegistrant.register(with: self) - return super.application(application, didFinishLaunchingWithOptions: launchOptions) - } -} diff --git a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json deleted file mode 100644 index d36b1fa..0000000 --- a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "images" : [ - { - "size" : "20x20", - "idiom" : "iphone", - "filename" : "Icon-App-20x20@2x.png", - "scale" : "2x" - }, - { - "size" : "20x20", - "idiom" : "iphone", - "filename" : "Icon-App-20x20@3x.png", - "scale" : "3x" - }, - { - "size" : "29x29", - "idiom" : "iphone", - "filename" : "Icon-App-29x29@1x.png", - "scale" : "1x" - }, - { - "size" : "29x29", - "idiom" : "iphone", - "filename" : "Icon-App-29x29@2x.png", - "scale" : "2x" - }, - { - "size" : "29x29", - "idiom" : "iphone", - "filename" : "Icon-App-29x29@3x.png", - "scale" : "3x" - }, - { - "size" : "40x40", - "idiom" : "iphone", - "filename" : "Icon-App-40x40@2x.png", - "scale" : "2x" - }, - { - "size" : "40x40", - "idiom" : "iphone", - "filename" : "Icon-App-40x40@3x.png", - "scale" : "3x" - }, - { - "size" : "60x60", - "idiom" : "iphone", - "filename" : "Icon-App-60x60@2x.png", - "scale" : "2x" - }, - { - "size" : "60x60", - "idiom" : "iphone", - "filename" : "Icon-App-60x60@3x.png", - "scale" : "3x" - }, - { - "size" : "20x20", - "idiom" : "ipad", - "filename" : "Icon-App-20x20@1x.png", - "scale" : "1x" - }, - { - "size" : "20x20", - "idiom" : "ipad", - "filename" : "Icon-App-20x20@2x.png", - "scale" : "2x" - }, - { - "size" : "29x29", - "idiom" : "ipad", - "filename" : "Icon-App-29x29@1x.png", - "scale" : "1x" - }, - { - "size" : "29x29", - "idiom" : "ipad", - "filename" : "Icon-App-29x29@2x.png", - "scale" : "2x" - }, - { - "size" : "40x40", - "idiom" : "ipad", - "filename" : "Icon-App-40x40@1x.png", - "scale" : "1x" - }, - { - "size" : "40x40", - "idiom" : "ipad", - "filename" : "Icon-App-40x40@2x.png", - "scale" : "2x" - }, - { - "size" : "76x76", - "idiom" : "ipad", - "filename" : "Icon-App-76x76@1x.png", - "scale" : "1x" - }, - { - "size" : "76x76", - "idiom" : "ipad", - "filename" : "Icon-App-76x76@2x.png", - "scale" : "2x" - }, - { - "size" : "83.5x83.5", - "idiom" : "ipad", - "filename" : "Icon-App-83.5x83.5@2x.png", - "scale" : "2x" - }, - { - "size" : "1024x1024", - "idiom" : "ios-marketing", - "filename" : "Icon-App-1024x1024@1x.png", - "scale" : "1x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} diff --git a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png deleted file mode 100644 index dc9ada4..0000000 Binary files a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png and /dev/null differ diff --git a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png deleted file mode 100644 index 7353c41..0000000 Binary files a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png and /dev/null differ diff --git a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png deleted file mode 100644 index 797d452..0000000 Binary files a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png and /dev/null differ diff --git a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png deleted file mode 100644 index 6ed2d93..0000000 Binary files a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png and /dev/null differ diff --git a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png deleted file mode 100644 index 4cd7b00..0000000 Binary files a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png and /dev/null differ diff --git a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png deleted file mode 100644 index fe73094..0000000 Binary files a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png and /dev/null differ diff --git a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png deleted file mode 100644 index 321773c..0000000 Binary files a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png and /dev/null differ diff --git a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png deleted file mode 100644 index 797d452..0000000 Binary files a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png and /dev/null differ diff --git a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png deleted file mode 100644 index 502f463..0000000 Binary files a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png and /dev/null differ diff --git a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png deleted file mode 100644 index 0ec3034..0000000 Binary files a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png and /dev/null differ diff --git a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png deleted file mode 100644 index 0ec3034..0000000 Binary files a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png and /dev/null differ diff --git a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png deleted file mode 100644 index e9f5fea..0000000 Binary files a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png and /dev/null differ diff --git a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png deleted file mode 100644 index 84ac32a..0000000 Binary files a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png and /dev/null differ diff --git a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png deleted file mode 100644 index 8953cba..0000000 Binary files a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png and /dev/null differ diff --git a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png deleted file mode 100644 index 0467bf1..0000000 Binary files a/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png and /dev/null differ diff --git a/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json deleted file mode 100644 index 0bedcf2..0000000 --- a/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "images" : [ - { - "idiom" : "universal", - "filename" : "LaunchImage.png", - "scale" : "1x" - }, - { - "idiom" : "universal", - "filename" : "LaunchImage@2x.png", - "scale" : "2x" - }, - { - "idiom" : "universal", - "filename" : "LaunchImage@3x.png", - "scale" : "3x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} diff --git a/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png deleted file mode 100644 index 9da19ea..0000000 Binary files a/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png and /dev/null differ diff --git a/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png deleted file mode 100644 index 9da19ea..0000000 Binary files a/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png and /dev/null differ diff --git a/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png deleted file mode 100644 index 9da19ea..0000000 Binary files a/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png and /dev/null differ diff --git a/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md deleted file mode 100644 index 89c2725..0000000 --- a/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# Launch Screen Assets - -You can customize the launch screen with your own desired assets by replacing the image files in this directory. - -You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. \ No newline at end of file diff --git a/example/ios/Runner/Base.lproj/LaunchScreen.storyboard b/example/ios/Runner/Base.lproj/LaunchScreen.storyboard deleted file mode 100644 index f2e259c..0000000 --- a/example/ios/Runner/Base.lproj/LaunchScreen.storyboard +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/example/ios/Runner/Base.lproj/Main.storyboard b/example/ios/Runner/Base.lproj/Main.storyboard deleted file mode 100644 index f3c2851..0000000 --- a/example/ios/Runner/Base.lproj/Main.storyboard +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/example/ios/Runner/Info.plist b/example/ios/Runner/Info.plist deleted file mode 100644 index 7f55346..0000000 --- a/example/ios/Runner/Info.plist +++ /dev/null @@ -1,51 +0,0 @@ - - - - - CFBundleDevelopmentRegion - $(DEVELOPMENT_LANGUAGE) - CFBundleDisplayName - Example - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - example - CFBundlePackageType - APPL - CFBundleShortVersionString - $(FLUTTER_BUILD_NAME) - CFBundleSignature - ???? - CFBundleVersion - $(FLUTTER_BUILD_NUMBER) - LSRequiresIPhoneOS - - UILaunchStoryboardName - LaunchScreen - UIMainStoryboardFile - Main - UISupportedInterfaceOrientations - - UIInterfaceOrientationPortrait - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - UISupportedInterfaceOrientations~ipad - - UIInterfaceOrientationPortrait - UIInterfaceOrientationPortraitUpsideDown - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - UIViewControllerBasedStatusBarAppearance - - CADisableMinimumFrameDurationOnPhone - - UIApplicationSupportsIndirectInputEvents - - - diff --git a/example/ios/Runner/Runner-Bridging-Header.h b/example/ios/Runner/Runner-Bridging-Header.h deleted file mode 100644 index 308a2a5..0000000 --- a/example/ios/Runner/Runner-Bridging-Header.h +++ /dev/null @@ -1 +0,0 @@ -#import "GeneratedPluginRegistrant.h" diff --git a/example/ios/RunnerTests/RunnerTests.swift b/example/ios/RunnerTests/RunnerTests.swift deleted file mode 100644 index 86a7c3b..0000000 --- a/example/ios/RunnerTests/RunnerTests.swift +++ /dev/null @@ -1,12 +0,0 @@ -import Flutter -import UIKit -import XCTest - -class RunnerTests: XCTestCase { - - func testExample() { - // If you add code to the Runner application, consider adding tests here. - // See https://developer.apple.com/documentation/xctest for more information about using XCTest. - } - -} diff --git a/example/lib/main.dart b/example/lib/main.dart deleted file mode 100644 index 2240f86..0000000 --- a/example/lib/main.dart +++ /dev/null @@ -1,160 +0,0 @@ -import 'package:avatar_glow/avatar_glow.dart'; -import 'package:flutter/material.dart'; - -void main() { - runApp(const MyApp()); -} - -class MyApp extends StatelessWidget { - const MyApp({super.key}); - - @override - Widget build(BuildContext context) { - return MaterialApp( - title: 'Avatar Glow Demo', - theme: ThemeData(useMaterial3: true), - home: const HomePage(), - ); - } -} - -class HomePage extends StatefulWidget { - const HomePage({Key? key}) : super(key: key); - - @override - State createState() => _HomePageState(); -} - -class _HomePageState extends State { - bool _animate = true; - - @override - Widget build(BuildContext context) { - return Scaffold( - appBar: AppBar( - title: const Text("Avatar Glow by @apgapg"), - ), - body: ListView( - children: [ - Container( - padding: const EdgeInsets.all(32.0), - color: Theme.of(context).primaryColor, - child: Column( - children: [ - AvatarGlow( - animate: _animate, - child: Material( - elevation: 8.0, - shape: const CircleBorder(), - child: CircleAvatar( - backgroundColor: Colors.grey[100], - radius: 30, - child: Image.asset( - 'assets/images/dart.png', - height: 50, - ), - ), - ), - ), - const SizedBox(height: 32.0), - AvatarGlow( - startDelay: const Duration(milliseconds: 1000), - glowColor: Colors.white, - glowShape: BoxShape.circle, - animate: _animate, - curve: Curves.fastOutSlowIn, - child: const Material( - elevation: 8.0, - shape: CircleBorder(), - color: Colors.transparent, - child: CircleAvatar( - backgroundImage: AssetImage('assets/images/avatar.png'), - radius: 50.0, - ), - ), - ), - ], - ), - ), - const SizedBox(height: 32.0), - Row( - mainAxisSize: MainAxisSize.min, - mainAxisAlignment: MainAxisAlignment.spaceEvenly, - children: [ - AvatarGlow( - animate: _animate, - glowColor: Colors.red, - child: Material( - elevation: 8.0, - shape: const CircleBorder(), - child: CircleAvatar( - backgroundColor: Colors.grey[100], - radius: 40.0, - child: Image.asset( - 'assets/images/flutter.png', - height: 60, - ), - ), - ), - ), - AvatarGlow( - animate: _animate, - glowColor: Colors.red, - child: Material( - elevation: 8.0, - shape: const CircleBorder(), - child: CircleAvatar( - backgroundColor: Colors.grey[100], - radius: 40.0, - child: Image.asset( - 'assets/images/love.png', - height: 60, - ), - ), - ), - ), - ], - ), - const SizedBox(height: 32.0), - AvatarGlow( - animate: _animate, - glowColor: Colors.cyan, - child: Material( - elevation: 8.0, - shape: const CircleBorder(), - child: CircleAvatar( - backgroundColor: Colors.grey[100], - radius: 30.0, - child: Image.asset( - 'assets/images/dart.png', - height: 50, - ), - ), - ), - ), - ], - ), - floatingActionButton: AvatarGlow( - animate: _animate, - glowColor: Colors.red, - child: IconButton( - onPressed: () { - setState(() => _animate = !_animate); - }, - iconSize: 42.0, - icon: Icon( - _animate ? Icons.pause_rounded : Icons.play_arrow_rounded, - color: Colors.white, - ), - ), - ), - floatingActionButtonLocation: FloatingActionButtonLocation.centerDocked, - bottomNavigationBar: BottomAppBar( - notchMargin: 8, - clipBehavior: Clip.antiAlias, - color: Theme.of(context).primaryColor, - shape: const CircularNotchedRectangle(), - ), - ); - } -} diff --git a/example/linux/.gitignore b/example/linux/.gitignore deleted file mode 100644 index d3896c9..0000000 --- a/example/linux/.gitignore +++ /dev/null @@ -1 +0,0 @@ -flutter/ephemeral diff --git a/example/linux/CMakeLists.txt b/example/linux/CMakeLists.txt deleted file mode 100644 index d67bd4e..0000000 --- a/example/linux/CMakeLists.txt +++ /dev/null @@ -1,139 +0,0 @@ -# Project-level configuration. -cmake_minimum_required(VERSION 3.10) -project(runner LANGUAGES CXX) - -# The name of the executable created for the application. Change this to change -# the on-disk name of your application. -set(BINARY_NAME "example") -# The unique GTK application identifier for this application. See: -# https://wiki.gnome.org/HowDoI/ChooseApplicationID -set(APPLICATION_ID "com.example.example") - -# Explicitly opt in to modern CMake behaviors to avoid warnings with recent -# versions of CMake. -cmake_policy(SET CMP0063 NEW) - -# Load bundled libraries from the lib/ directory relative to the binary. -set(CMAKE_INSTALL_RPATH "$ORIGIN/lib") - -# Root filesystem for cross-building. -if(FLUTTER_TARGET_PLATFORM_SYSROOT) - set(CMAKE_SYSROOT ${FLUTTER_TARGET_PLATFORM_SYSROOT}) - set(CMAKE_FIND_ROOT_PATH ${CMAKE_SYSROOT}) - set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) - set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY) - set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) - set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) -endif() - -# Define build configuration options. -if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) - set(CMAKE_BUILD_TYPE "Debug" CACHE - STRING "Flutter build mode" FORCE) - set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS - "Debug" "Profile" "Release") -endif() - -# Compilation settings that should be applied to most targets. -# -# Be cautious about adding new options here, as plugins use this function by -# default. In most cases, you should add new options to specific targets instead -# of modifying this function. -function(APPLY_STANDARD_SETTINGS TARGET) - target_compile_features(${TARGET} PUBLIC cxx_std_14) - target_compile_options(${TARGET} PRIVATE -Wall -Werror) - target_compile_options(${TARGET} PRIVATE "$<$>:-O3>") - target_compile_definitions(${TARGET} PRIVATE "$<$>:NDEBUG>") -endfunction() - -# Flutter library and tool build rules. -set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter") -add_subdirectory(${FLUTTER_MANAGED_DIR}) - -# System-level dependencies. -find_package(PkgConfig REQUIRED) -pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0) - -add_definitions(-DAPPLICATION_ID="${APPLICATION_ID}") - -# Define the application target. To change its name, change BINARY_NAME above, -# not the value here, or `flutter run` will no longer work. -# -# Any new source files that you add to the application should be added here. -add_executable(${BINARY_NAME} - "main.cc" - "my_application.cc" - "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc" -) - -# Apply the standard set of build settings. This can be removed for applications -# that need different build settings. -apply_standard_settings(${BINARY_NAME}) - -# Add dependency libraries. Add any application-specific dependencies here. -target_link_libraries(${BINARY_NAME} PRIVATE flutter) -target_link_libraries(${BINARY_NAME} PRIVATE PkgConfig::GTK) - -# Run the Flutter tool portions of the build. This must not be removed. -add_dependencies(${BINARY_NAME} flutter_assemble) - -# Only the install-generated bundle's copy of the executable will launch -# correctly, since the resources must in the right relative locations. To avoid -# people trying to run the unbundled copy, put it in a subdirectory instead of -# the default top-level location. -set_target_properties(${BINARY_NAME} - PROPERTIES - RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/intermediates_do_not_run" -) - - -# Generated plugin build rules, which manage building the plugins and adding -# them to the application. -include(flutter/generated_plugins.cmake) - - -# === Installation === -# By default, "installing" just makes a relocatable bundle in the build -# directory. -set(BUILD_BUNDLE_DIR "${PROJECT_BINARY_DIR}/bundle") -if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) - set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE) -endif() - -# Start with a clean build bundle directory every time. -install(CODE " - file(REMOVE_RECURSE \"${BUILD_BUNDLE_DIR}/\") - " COMPONENT Runtime) - -set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data") -set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}/lib") - -install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}" - COMPONENT Runtime) - -install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" - COMPONENT Runtime) - -install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" - COMPONENT Runtime) - -foreach(bundled_library ${PLUGIN_BUNDLED_LIBRARIES}) - install(FILES "${bundled_library}" - DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" - COMPONENT Runtime) -endforeach(bundled_library) - -# Fully re-copy the assets directory on each build to avoid having stale files -# from a previous install. -set(FLUTTER_ASSET_DIR_NAME "flutter_assets") -install(CODE " - file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\") - " COMPONENT Runtime) -install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}" - DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) - -# Install the AOT library on non-Debug builds only. -if(NOT CMAKE_BUILD_TYPE MATCHES "Debug") - install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" - COMPONENT Runtime) -endif() diff --git a/example/linux/flutter/CMakeLists.txt b/example/linux/flutter/CMakeLists.txt deleted file mode 100644 index d5bd016..0000000 --- a/example/linux/flutter/CMakeLists.txt +++ /dev/null @@ -1,88 +0,0 @@ -# This file controls Flutter-level build steps. It should not be edited. -cmake_minimum_required(VERSION 3.10) - -set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral") - -# Configuration provided via flutter tool. -include(${EPHEMERAL_DIR}/generated_config.cmake) - -# TODO: Move the rest of this into files in ephemeral. See -# https://github.com/flutter/flutter/issues/57146. - -# Serves the same purpose as list(TRANSFORM ... PREPEND ...), -# which isn't available in 3.10. -function(list_prepend LIST_NAME PREFIX) - set(NEW_LIST "") - foreach(element ${${LIST_NAME}}) - list(APPEND NEW_LIST "${PREFIX}${element}") - endforeach(element) - set(${LIST_NAME} "${NEW_LIST}" PARENT_SCOPE) -endfunction() - -# === Flutter Library === -# System-level dependencies. -find_package(PkgConfig REQUIRED) -pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0) -pkg_check_modules(GLIB REQUIRED IMPORTED_TARGET glib-2.0) -pkg_check_modules(GIO REQUIRED IMPORTED_TARGET gio-2.0) - -set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/libflutter_linux_gtk.so") - -# Published to parent scope for install step. -set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE) -set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE) -set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE) -set(AOT_LIBRARY "${PROJECT_DIR}/build/lib/libapp.so" PARENT_SCOPE) - -list(APPEND FLUTTER_LIBRARY_HEADERS - "fl_basic_message_channel.h" - "fl_binary_codec.h" - "fl_binary_messenger.h" - "fl_dart_project.h" - "fl_engine.h" - "fl_json_message_codec.h" - "fl_json_method_codec.h" - "fl_message_codec.h" - "fl_method_call.h" - "fl_method_channel.h" - "fl_method_codec.h" - "fl_method_response.h" - "fl_plugin_registrar.h" - "fl_plugin_registry.h" - "fl_standard_message_codec.h" - "fl_standard_method_codec.h" - "fl_string_codec.h" - "fl_value.h" - "fl_view.h" - "flutter_linux.h" -) -list_prepend(FLUTTER_LIBRARY_HEADERS "${EPHEMERAL_DIR}/flutter_linux/") -add_library(flutter INTERFACE) -target_include_directories(flutter INTERFACE - "${EPHEMERAL_DIR}" -) -target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}") -target_link_libraries(flutter INTERFACE - PkgConfig::GTK - PkgConfig::GLIB - PkgConfig::GIO -) -add_dependencies(flutter flutter_assemble) - -# === Flutter tool backend === -# _phony_ is a non-existent file to force this command to run every time, -# since currently there's no way to get a full input/output list from the -# flutter tool. -add_custom_command( - OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS} - ${CMAKE_CURRENT_BINARY_DIR}/_phony_ - COMMAND ${CMAKE_COMMAND} -E env - ${FLUTTER_TOOL_ENVIRONMENT} - "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.sh" - ${FLUTTER_TARGET_PLATFORM} ${CMAKE_BUILD_TYPE} - VERBATIM -) -add_custom_target(flutter_assemble DEPENDS - "${FLUTTER_LIBRARY}" - ${FLUTTER_LIBRARY_HEADERS} -) diff --git a/example/linux/flutter/generated_plugin_registrant.cc b/example/linux/flutter/generated_plugin_registrant.cc deleted file mode 100644 index e71a16d..0000000 --- a/example/linux/flutter/generated_plugin_registrant.cc +++ /dev/null @@ -1,11 +0,0 @@ -// -// Generated file. Do not edit. -// - -// clang-format off - -#include "generated_plugin_registrant.h" - - -void fl_register_plugins(FlPluginRegistry* registry) { -} diff --git a/example/linux/flutter/generated_plugin_registrant.h b/example/linux/flutter/generated_plugin_registrant.h deleted file mode 100644 index e0f0a47..0000000 --- a/example/linux/flutter/generated_plugin_registrant.h +++ /dev/null @@ -1,15 +0,0 @@ -// -// Generated file. Do not edit. -// - -// clang-format off - -#ifndef GENERATED_PLUGIN_REGISTRANT_ -#define GENERATED_PLUGIN_REGISTRANT_ - -#include - -// Registers Flutter plugins. -void fl_register_plugins(FlPluginRegistry* registry); - -#endif // GENERATED_PLUGIN_REGISTRANT_ diff --git a/example/linux/flutter/generated_plugins.cmake b/example/linux/flutter/generated_plugins.cmake deleted file mode 100644 index 2e1de87..0000000 --- a/example/linux/flutter/generated_plugins.cmake +++ /dev/null @@ -1,23 +0,0 @@ -# -# Generated file, do not edit. -# - -list(APPEND FLUTTER_PLUGIN_LIST -) - -list(APPEND FLUTTER_FFI_PLUGIN_LIST -) - -set(PLUGIN_BUNDLED_LIBRARIES) - -foreach(plugin ${FLUTTER_PLUGIN_LIST}) - add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/linux plugins/${plugin}) - target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) - list(APPEND PLUGIN_BUNDLED_LIBRARIES $) - list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) -endforeach(plugin) - -foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST}) - add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/linux plugins/${ffi_plugin}) - list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries}) -endforeach(ffi_plugin) diff --git a/example/linux/main.cc b/example/linux/main.cc deleted file mode 100644 index e7c5c54..0000000 --- a/example/linux/main.cc +++ /dev/null @@ -1,6 +0,0 @@ -#include "my_application.h" - -int main(int argc, char** argv) { - g_autoptr(MyApplication) app = my_application_new(); - return g_application_run(G_APPLICATION(app), argc, argv); -} diff --git a/example/linux/my_application.cc b/example/linux/my_application.cc deleted file mode 100644 index 0ba8f43..0000000 --- a/example/linux/my_application.cc +++ /dev/null @@ -1,104 +0,0 @@ -#include "my_application.h" - -#include -#ifdef GDK_WINDOWING_X11 -#include -#endif - -#include "flutter/generated_plugin_registrant.h" - -struct _MyApplication { - GtkApplication parent_instance; - char** dart_entrypoint_arguments; -}; - -G_DEFINE_TYPE(MyApplication, my_application, GTK_TYPE_APPLICATION) - -// Implements GApplication::activate. -static void my_application_activate(GApplication* application) { - MyApplication* self = MY_APPLICATION(application); - GtkWindow* window = - GTK_WINDOW(gtk_application_window_new(GTK_APPLICATION(application))); - - // Use a header bar when running in GNOME as this is the common style used - // by applications and is the setup most users will be using (e.g. Ubuntu - // desktop). - // If running on X and not using GNOME then just use a traditional title bar - // in case the window manager does more exotic layout, e.g. tiling. - // If running on Wayland assume the header bar will work (may need changing - // if future cases occur). - gboolean use_header_bar = TRUE; -#ifdef GDK_WINDOWING_X11 - GdkScreen* screen = gtk_window_get_screen(window); - if (GDK_IS_X11_SCREEN(screen)) { - const gchar* wm_name = gdk_x11_screen_get_window_manager_name(screen); - if (g_strcmp0(wm_name, "GNOME Shell") != 0) { - use_header_bar = FALSE; - } - } -#endif - if (use_header_bar) { - GtkHeaderBar* header_bar = GTK_HEADER_BAR(gtk_header_bar_new()); - gtk_widget_show(GTK_WIDGET(header_bar)); - gtk_header_bar_set_title(header_bar, "example"); - gtk_header_bar_set_show_close_button(header_bar, TRUE); - gtk_window_set_titlebar(window, GTK_WIDGET(header_bar)); - } else { - gtk_window_set_title(window, "example"); - } - - gtk_window_set_default_size(window, 1280, 720); - gtk_widget_show(GTK_WIDGET(window)); - - g_autoptr(FlDartProject) project = fl_dart_project_new(); - fl_dart_project_set_dart_entrypoint_arguments(project, self->dart_entrypoint_arguments); - - FlView* view = fl_view_new(project); - gtk_widget_show(GTK_WIDGET(view)); - gtk_container_add(GTK_CONTAINER(window), GTK_WIDGET(view)); - - fl_register_plugins(FL_PLUGIN_REGISTRY(view)); - - gtk_widget_grab_focus(GTK_WIDGET(view)); -} - -// Implements GApplication::local_command_line. -static gboolean my_application_local_command_line(GApplication* application, gchar*** arguments, int* exit_status) { - MyApplication* self = MY_APPLICATION(application); - // Strip out the first argument as it is the binary name. - self->dart_entrypoint_arguments = g_strdupv(*arguments + 1); - - g_autoptr(GError) error = nullptr; - if (!g_application_register(application, nullptr, &error)) { - g_warning("Failed to register: %s", error->message); - *exit_status = 1; - return TRUE; - } - - g_application_activate(application); - *exit_status = 0; - - return TRUE; -} - -// Implements GObject::dispose. -static void my_application_dispose(GObject* object) { - MyApplication* self = MY_APPLICATION(object); - g_clear_pointer(&self->dart_entrypoint_arguments, g_strfreev); - G_OBJECT_CLASS(my_application_parent_class)->dispose(object); -} - -static void my_application_class_init(MyApplicationClass* klass) { - G_APPLICATION_CLASS(klass)->activate = my_application_activate; - G_APPLICATION_CLASS(klass)->local_command_line = my_application_local_command_line; - G_OBJECT_CLASS(klass)->dispose = my_application_dispose; -} - -static void my_application_init(MyApplication* self) {} - -MyApplication* my_application_new() { - return MY_APPLICATION(g_object_new(my_application_get_type(), - "application-id", APPLICATION_ID, - "flags", G_APPLICATION_NON_UNIQUE, - nullptr)); -} diff --git a/example/linux/my_application.h b/example/linux/my_application.h deleted file mode 100644 index 72271d5..0000000 --- a/example/linux/my_application.h +++ /dev/null @@ -1,18 +0,0 @@ -#ifndef FLUTTER_MY_APPLICATION_H_ -#define FLUTTER_MY_APPLICATION_H_ - -#include - -G_DECLARE_FINAL_TYPE(MyApplication, my_application, MY, APPLICATION, - GtkApplication) - -/** - * my_application_new: - * - * Creates a new Flutter-based application. - * - * Returns: a new #MyApplication. - */ -MyApplication* my_application_new(); - -#endif // FLUTTER_MY_APPLICATION_H_ diff --git a/example/macos/.gitignore b/example/macos/.gitignore deleted file mode 100644 index 746adbb..0000000 --- a/example/macos/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -# Flutter-related -**/Flutter/ephemeral/ -**/Pods/ - -# Xcode-related -**/dgph -**/xcuserdata/ diff --git a/example/macos/Flutter/Flutter-Debug.xcconfig b/example/macos/Flutter/Flutter-Debug.xcconfig deleted file mode 100644 index c2efd0b..0000000 --- a/example/macos/Flutter/Flutter-Debug.xcconfig +++ /dev/null @@ -1 +0,0 @@ -#include "ephemeral/Flutter-Generated.xcconfig" diff --git a/example/macos/Flutter/Flutter-Release.xcconfig b/example/macos/Flutter/Flutter-Release.xcconfig deleted file mode 100644 index c2efd0b..0000000 --- a/example/macos/Flutter/Flutter-Release.xcconfig +++ /dev/null @@ -1 +0,0 @@ -#include "ephemeral/Flutter-Generated.xcconfig" diff --git a/example/macos/Flutter/GeneratedPluginRegistrant.swift b/example/macos/Flutter/GeneratedPluginRegistrant.swift deleted file mode 100644 index cccf817..0000000 --- a/example/macos/Flutter/GeneratedPluginRegistrant.swift +++ /dev/null @@ -1,10 +0,0 @@ -// -// Generated file. Do not edit. -// - -import FlutterMacOS -import Foundation - - -func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { -} diff --git a/example/macos/Runner.xcodeproj/project.pbxproj b/example/macos/Runner.xcodeproj/project.pbxproj deleted file mode 100644 index 79158a2..0000000 --- a/example/macos/Runner.xcodeproj/project.pbxproj +++ /dev/null @@ -1,695 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 54; - objects = { - -/* Begin PBXAggregateTarget section */ - 33CC111A2044C6BA0003C045 /* Flutter Assemble */ = { - isa = PBXAggregateTarget; - buildConfigurationList = 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */; - buildPhases = ( - 33CC111E2044C6BF0003C045 /* ShellScript */, - ); - dependencies = ( - ); - name = "Flutter Assemble"; - productName = FLX; - }; -/* End PBXAggregateTarget section */ - -/* Begin PBXBuildFile section */ - 331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C80D7294CF71000263BE5 /* RunnerTests.swift */; }; - 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */; }; - 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC10F02044A3C60003C045 /* AppDelegate.swift */; }; - 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; }; - 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; }; - 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 33CC10E52044A3C60003C045 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 33CC10EC2044A3C60003C045; - remoteInfo = Runner; - }; - 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 33CC10E52044A3C60003C045 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 33CC111A2044C6BA0003C045; - remoteInfo = FLX; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXCopyFilesBuildPhase section */ - 33CC110E2044A8840003C045 /* Bundle Framework */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = ""; - dstSubfolderSpec = 10; - files = ( - ); - name = "Bundle Framework"; - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXCopyFilesBuildPhase section */ - -/* Begin PBXFileReference section */ - 331C80D5294CF71000263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; - 331C80D7294CF71000263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; - 333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = ""; }; - 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = ""; }; - 33CC10ED2044A3C60003C045 /* example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "example.app"; sourceTree = BUILT_PRODUCTS_DIR; }; - 33CC10F02044A3C60003C045 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; - 33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = ""; }; - 33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = ""; }; - 33CC10F72044A3C60003C045 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Runner/Info.plist; sourceTree = ""; }; - 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainFlutterWindow.swift; sourceTree = ""; }; - 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Debug.xcconfig"; sourceTree = ""; }; - 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Release.xcconfig"; sourceTree = ""; }; - 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "Flutter-Generated.xcconfig"; path = "ephemeral/Flutter-Generated.xcconfig"; sourceTree = ""; }; - 33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = ""; }; - 33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = ""; }; - 33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = ""; }; - 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = ""; }; - 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 331C80D2294CF70F00263BE5 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 33CC10EA2044A3C60003C045 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 331C80D6294CF71000263BE5 /* RunnerTests */ = { - isa = PBXGroup; - children = ( - 331C80D7294CF71000263BE5 /* RunnerTests.swift */, - ); - path = RunnerTests; - sourceTree = ""; - }; - 33BA886A226E78AF003329D5 /* Configs */ = { - isa = PBXGroup; - children = ( - 33E5194F232828860026EE4D /* AppInfo.xcconfig */, - 9740EEB21CF90195004384FC /* Debug.xcconfig */, - 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, - 333000ED22D3DE5D00554162 /* Warnings.xcconfig */, - ); - path = Configs; - sourceTree = ""; - }; - 33CC10E42044A3C60003C045 = { - isa = PBXGroup; - children = ( - 33FAB671232836740065AC1E /* Runner */, - 33CEB47122A05771004F2AC0 /* Flutter */, - 331C80D6294CF71000263BE5 /* RunnerTests */, - 33CC10EE2044A3C60003C045 /* Products */, - D73912EC22F37F3D000D13A0 /* Frameworks */, - ); - sourceTree = ""; - }; - 33CC10EE2044A3C60003C045 /* Products */ = { - isa = PBXGroup; - children = ( - 33CC10ED2044A3C60003C045 /* example.app */, - 331C80D5294CF71000263BE5 /* RunnerTests.xctest */, - ); - name = Products; - sourceTree = ""; - }; - 33CC11242044D66E0003C045 /* Resources */ = { - isa = PBXGroup; - children = ( - 33CC10F22044A3C60003C045 /* Assets.xcassets */, - 33CC10F42044A3C60003C045 /* MainMenu.xib */, - 33CC10F72044A3C60003C045 /* Info.plist */, - ); - name = Resources; - path = ..; - sourceTree = ""; - }; - 33CEB47122A05771004F2AC0 /* Flutter */ = { - isa = PBXGroup; - children = ( - 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */, - 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */, - 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */, - 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */, - ); - path = Flutter; - sourceTree = ""; - }; - 33FAB671232836740065AC1E /* Runner */ = { - isa = PBXGroup; - children = ( - 33CC10F02044A3C60003C045 /* AppDelegate.swift */, - 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */, - 33E51913231747F40026EE4D /* DebugProfile.entitlements */, - 33E51914231749380026EE4D /* Release.entitlements */, - 33CC11242044D66E0003C045 /* Resources */, - 33BA886A226E78AF003329D5 /* Configs */, - ); - path = Runner; - sourceTree = ""; - }; - D73912EC22F37F3D000D13A0 /* Frameworks */ = { - isa = PBXGroup; - children = ( - ); - name = Frameworks; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 331C80D4294CF70F00263BE5 /* RunnerTests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; - buildPhases = ( - 331C80D1294CF70F00263BE5 /* Sources */, - 331C80D2294CF70F00263BE5 /* Frameworks */, - 331C80D3294CF70F00263BE5 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 331C80DA294CF71000263BE5 /* PBXTargetDependency */, - ); - name = RunnerTests; - productName = RunnerTests; - productReference = 331C80D5294CF71000263BE5 /* RunnerTests.xctest */; - productType = "com.apple.product-type.bundle.unit-test"; - }; - 33CC10EC2044A3C60003C045 /* Runner */ = { - isa = PBXNativeTarget; - buildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */; - buildPhases = ( - 33CC10E92044A3C60003C045 /* Sources */, - 33CC10EA2044A3C60003C045 /* Frameworks */, - 33CC10EB2044A3C60003C045 /* Resources */, - 33CC110E2044A8840003C045 /* Bundle Framework */, - 3399D490228B24CF009A79C7 /* ShellScript */, - ); - buildRules = ( - ); - dependencies = ( - 33CC11202044C79F0003C045 /* PBXTargetDependency */, - ); - name = Runner; - productName = Runner; - productReference = 33CC10ED2044A3C60003C045 /* example.app */; - productType = "com.apple.product-type.application"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 33CC10E52044A3C60003C045 /* Project object */ = { - isa = PBXProject; - attributes = { - LastSwiftUpdateCheck = 0920; - LastUpgradeCheck = 1300; - ORGANIZATIONNAME = ""; - TargetAttributes = { - 331C80D4294CF70F00263BE5 = { - CreatedOnToolsVersion = 14.0; - TestTargetID = 33CC10EC2044A3C60003C045; - }; - 33CC10EC2044A3C60003C045 = { - CreatedOnToolsVersion = 9.2; - LastSwiftMigration = 1100; - ProvisioningStyle = Automatic; - SystemCapabilities = { - com.apple.Sandbox = { - enabled = 1; - }; - }; - }; - 33CC111A2044C6BA0003C045 = { - CreatedOnToolsVersion = 9.2; - ProvisioningStyle = Manual; - }; - }; - }; - buildConfigurationList = 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */; - compatibilityVersion = "Xcode 9.3"; - developmentRegion = en; - hasScannedForEncodings = 0; - knownRegions = ( - en, - Base, - ); - mainGroup = 33CC10E42044A3C60003C045; - productRefGroup = 33CC10EE2044A3C60003C045 /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 33CC10EC2044A3C60003C045 /* Runner */, - 331C80D4294CF70F00263BE5 /* RunnerTests */, - 33CC111A2044C6BA0003C045 /* Flutter Assemble */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 331C80D3294CF70F00263BE5 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 33CC10EB2044A3C60003C045 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */, - 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXShellScriptBuildPhase section */ - 3399D490228B24CF009A79C7 /* ShellScript */ = { - isa = PBXShellScriptBuildPhase; - alwaysOutOfDate = 1; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - ); - outputFileListPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "echo \"$PRODUCT_NAME.app\" > \"$PROJECT_DIR\"/Flutter/ephemeral/.app_filename && \"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh embed\n"; - }; - 33CC111E2044C6BF0003C045 /* ShellScript */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - Flutter/ephemeral/FlutterInputs.xcfilelist, - ); - inputPaths = ( - Flutter/ephemeral/tripwire, - ); - outputFileListPaths = ( - Flutter/ephemeral/FlutterOutputs.xcfilelist, - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh && touch Flutter/ephemeral/tripwire"; - }; -/* End PBXShellScriptBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 331C80D1294CF70F00263BE5 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 33CC10E92044A3C60003C045 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */, - 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */, - 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 331C80DA294CF71000263BE5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 33CC10EC2044A3C60003C045 /* Runner */; - targetProxy = 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */; - }; - 33CC11202044C79F0003C045 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 33CC111A2044C6BA0003C045 /* Flutter Assemble */; - targetProxy = 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin PBXVariantGroup section */ - 33CC10F42044A3C60003C045 /* MainMenu.xib */ = { - isa = PBXVariantGroup; - children = ( - 33CC10F52044A3C60003C045 /* Base */, - ); - name = MainMenu.xib; - path = Runner; - sourceTree = ""; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - 331C80DB294CF71000263BE5 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - BUNDLE_LOADER = "$(TEST_HOST)"; - CURRENT_PROJECT_VERSION = 1; - GENERATE_INFOPLIST_FILE = YES; - MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = com.example.example.RunnerTests; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 5.0; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/example"; - }; - name = Debug; - }; - 331C80DC294CF71000263BE5 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - BUNDLE_LOADER = "$(TEST_HOST)"; - CURRENT_PROJECT_VERSION = 1; - GENERATE_INFOPLIST_FILE = YES; - MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = com.example.example.RunnerTests; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 5.0; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/example"; - }; - name = Release; - }; - 331C80DD294CF71000263BE5 /* Profile */ = { - isa = XCBuildConfiguration; - buildSettings = { - BUNDLE_LOADER = "$(TEST_HOST)"; - CURRENT_PROJECT_VERSION = 1; - GENERATE_INFOPLIST_FILE = YES; - MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = com.example.example.RunnerTests; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 5.0; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/example"; - }; - name = Profile; - }; - 338D0CE9231458BD00FA5F75 /* Profile */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CODE_SIGN_IDENTITY = "-"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.14; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = macosx; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; - }; - name = Profile; - }; - 338D0CEA231458BD00FA5F75 /* Profile */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_MODULES = YES; - CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; - INFOPLIST_FILE = Runner/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/../Frameworks", - ); - PROVISIONING_PROFILE_SPECIFIER = ""; - SWIFT_VERSION = 5.0; - }; - name = Profile; - }; - 338D0CEB231458BD00FA5F75 /* Profile */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_STYLE = Manual; - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = Profile; - }; - 33CC10F92044A3C60003C045 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CODE_SIGN_IDENTITY = "-"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = dwarf; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.14; - MTL_ENABLE_DEBUG_INFO = YES; - ONLY_ACTIVE_ARCH = YES; - SDKROOT = macosx; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - }; - name = Debug; - }; - 33CC10FA2044A3C60003C045 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CODE_SIGN_IDENTITY = "-"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.14; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = macosx; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; - }; - name = Release; - }; - 33CC10FC2044A3C60003C045 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_MODULES = YES; - CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; - INFOPLIST_FILE = Runner/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/../Frameworks", - ); - PROVISIONING_PROFILE_SPECIFIER = ""; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 5.0; - }; - name = Debug; - }; - 33CC10FD2044A3C60003C045 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_MODULES = YES; - CODE_SIGN_ENTITLEMENTS = Runner/Release.entitlements; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; - INFOPLIST_FILE = Runner/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/../Frameworks", - ); - PROVISIONING_PROFILE_SPECIFIER = ""; - SWIFT_VERSION = 5.0; - }; - name = Release; - }; - 33CC111C2044C6BA0003C045 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_STYLE = Manual; - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = Debug; - }; - 33CC111D2044C6BA0003C045 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_STYLE = Automatic; - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 331C80DB294CF71000263BE5 /* Debug */, - 331C80DC294CF71000263BE5 /* Release */, - 331C80DD294CF71000263BE5 /* Profile */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 33CC10F92044A3C60003C045 /* Debug */, - 33CC10FA2044A3C60003C045 /* Release */, - 338D0CE9231458BD00FA5F75 /* Profile */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 33CC10FC2044A3C60003C045 /* Debug */, - 33CC10FD2044A3C60003C045 /* Release */, - 338D0CEA231458BD00FA5F75 /* Profile */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 33CC111C2044C6BA0003C045 /* Debug */, - 33CC111D2044C6BA0003C045 /* Release */, - 338D0CEB231458BD00FA5F75 /* Profile */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = 33CC10E52044A3C60003C045 /* Project object */; -} diff --git a/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist deleted file mode 100644 index 18d9810..0000000 --- a/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEDidComputeMac32BitWarning - - - diff --git a/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme deleted file mode 100644 index 8fedab6..0000000 --- a/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/example/macos/Runner.xcworkspace/contents.xcworkspacedata b/example/macos/Runner.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 1d526a1..0000000 --- a/example/macos/Runner.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist deleted file mode 100644 index 18d9810..0000000 --- a/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEDidComputeMac32BitWarning - - - diff --git a/example/macos/Runner/AppDelegate.swift b/example/macos/Runner/AppDelegate.swift deleted file mode 100644 index d53ef64..0000000 --- a/example/macos/Runner/AppDelegate.swift +++ /dev/null @@ -1,9 +0,0 @@ -import Cocoa -import FlutterMacOS - -@NSApplicationMain -class AppDelegate: FlutterAppDelegate { - override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { - return true - } -} diff --git a/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json deleted file mode 100644 index a2ec33f..0000000 --- a/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "images" : [ - { - "size" : "16x16", - "idiom" : "mac", - "filename" : "app_icon_16.png", - "scale" : "1x" - }, - { - "size" : "16x16", - "idiom" : "mac", - "filename" : "app_icon_32.png", - "scale" : "2x" - }, - { - "size" : "32x32", - "idiom" : "mac", - "filename" : "app_icon_32.png", - "scale" : "1x" - }, - { - "size" : "32x32", - "idiom" : "mac", - "filename" : "app_icon_64.png", - "scale" : "2x" - }, - { - "size" : "128x128", - "idiom" : "mac", - "filename" : "app_icon_128.png", - "scale" : "1x" - }, - { - "size" : "128x128", - "idiom" : "mac", - "filename" : "app_icon_256.png", - "scale" : "2x" - }, - { - "size" : "256x256", - "idiom" : "mac", - "filename" : "app_icon_256.png", - "scale" : "1x" - }, - { - "size" : "256x256", - "idiom" : "mac", - "filename" : "app_icon_512.png", - "scale" : "2x" - }, - { - "size" : "512x512", - "idiom" : "mac", - "filename" : "app_icon_512.png", - "scale" : "1x" - }, - { - "size" : "512x512", - "idiom" : "mac", - "filename" : "app_icon_1024.png", - "scale" : "2x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} diff --git a/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png b/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png deleted file mode 100644 index 82b6f9d..0000000 Binary files a/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png and /dev/null differ diff --git a/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png b/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png deleted file mode 100644 index 13b35eb..0000000 Binary files a/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png and /dev/null differ diff --git a/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png b/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png deleted file mode 100644 index 0a3f5fa..0000000 Binary files a/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png and /dev/null differ diff --git a/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png b/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png deleted file mode 100644 index bdb5722..0000000 Binary files a/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png and /dev/null differ diff --git a/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png b/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png deleted file mode 100644 index f083318..0000000 Binary files a/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png and /dev/null differ diff --git a/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png b/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png deleted file mode 100644 index 326c0e7..0000000 Binary files a/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png and /dev/null differ diff --git a/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png b/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png deleted file mode 100644 index 2f1632c..0000000 Binary files a/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png and /dev/null differ diff --git a/example/macos/Runner/Base.lproj/MainMenu.xib b/example/macos/Runner/Base.lproj/MainMenu.xib deleted file mode 100644 index 80e867a..0000000 --- a/example/macos/Runner/Base.lproj/MainMenu.xib +++ /dev/null @@ -1,343 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/example/macos/Runner/Configs/AppInfo.xcconfig b/example/macos/Runner/Configs/AppInfo.xcconfig deleted file mode 100644 index dda192b..0000000 --- a/example/macos/Runner/Configs/AppInfo.xcconfig +++ /dev/null @@ -1,14 +0,0 @@ -// Application-level settings for the Runner target. -// -// This may be replaced with something auto-generated from metadata (e.g., pubspec.yaml) in the -// future. If not, the values below would default to using the project name when this becomes a -// 'flutter create' template. - -// The application's name. By default this is also the title of the Flutter window. -PRODUCT_NAME = example - -// The application's bundle identifier -PRODUCT_BUNDLE_IDENTIFIER = com.example.example - -// The copyright displayed in application information -PRODUCT_COPYRIGHT = Copyright ยฉ 2023 com.example. All rights reserved. diff --git a/example/macos/Runner/Configs/Debug.xcconfig b/example/macos/Runner/Configs/Debug.xcconfig deleted file mode 100644 index 36b0fd9..0000000 --- a/example/macos/Runner/Configs/Debug.xcconfig +++ /dev/null @@ -1,2 +0,0 @@ -#include "../../Flutter/Flutter-Debug.xcconfig" -#include "Warnings.xcconfig" diff --git a/example/macos/Runner/Configs/Release.xcconfig b/example/macos/Runner/Configs/Release.xcconfig deleted file mode 100644 index dff4f49..0000000 --- a/example/macos/Runner/Configs/Release.xcconfig +++ /dev/null @@ -1,2 +0,0 @@ -#include "../../Flutter/Flutter-Release.xcconfig" -#include "Warnings.xcconfig" diff --git a/example/macos/Runner/Configs/Warnings.xcconfig b/example/macos/Runner/Configs/Warnings.xcconfig deleted file mode 100644 index 42bcbf4..0000000 --- a/example/macos/Runner/Configs/Warnings.xcconfig +++ /dev/null @@ -1,13 +0,0 @@ -WARNING_CFLAGS = -Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings -GCC_WARN_UNDECLARED_SELECTOR = YES -CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES -CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE -CLANG_WARN__DUPLICATE_METHOD_MATCH = YES -CLANG_WARN_PRAGMA_PACK = YES -CLANG_WARN_STRICT_PROTOTYPES = YES -CLANG_WARN_COMMA = YES -GCC_WARN_STRICT_SELECTOR_MATCH = YES -CLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES -CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES -GCC_WARN_SHADOW = YES -CLANG_WARN_UNREACHABLE_CODE = YES diff --git a/example/macos/Runner/DebugProfile.entitlements b/example/macos/Runner/DebugProfile.entitlements deleted file mode 100644 index dddb8a3..0000000 --- a/example/macos/Runner/DebugProfile.entitlements +++ /dev/null @@ -1,12 +0,0 @@ - - - - - com.apple.security.app-sandbox - - com.apple.security.cs.allow-jit - - com.apple.security.network.server - - - diff --git a/example/macos/Runner/Info.plist b/example/macos/Runner/Info.plist deleted file mode 100644 index 4789daa..0000000 --- a/example/macos/Runner/Info.plist +++ /dev/null @@ -1,32 +0,0 @@ - - - - - CFBundleDevelopmentRegion - $(DEVELOPMENT_LANGUAGE) - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIconFile - - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - APPL - CFBundleShortVersionString - $(FLUTTER_BUILD_NAME) - CFBundleVersion - $(FLUTTER_BUILD_NUMBER) - LSMinimumSystemVersion - $(MACOSX_DEPLOYMENT_TARGET) - NSHumanReadableCopyright - $(PRODUCT_COPYRIGHT) - NSMainNibFile - MainMenu - NSPrincipalClass - NSApplication - - diff --git a/example/macos/Runner/MainFlutterWindow.swift b/example/macos/Runner/MainFlutterWindow.swift deleted file mode 100644 index 3cc05eb..0000000 --- a/example/macos/Runner/MainFlutterWindow.swift +++ /dev/null @@ -1,15 +0,0 @@ -import Cocoa -import FlutterMacOS - -class MainFlutterWindow: NSWindow { - override func awakeFromNib() { - let flutterViewController = FlutterViewController() - let windowFrame = self.frame - self.contentViewController = flutterViewController - self.setFrame(windowFrame, display: true) - - RegisterGeneratedPlugins(registry: flutterViewController) - - super.awakeFromNib() - } -} diff --git a/example/macos/Runner/Release.entitlements b/example/macos/Runner/Release.entitlements deleted file mode 100644 index 852fa1a..0000000 --- a/example/macos/Runner/Release.entitlements +++ /dev/null @@ -1,8 +0,0 @@ - - - - - com.apple.security.app-sandbox - - - diff --git a/example/macos/RunnerTests/RunnerTests.swift b/example/macos/RunnerTests/RunnerTests.swift deleted file mode 100644 index 5418c9f..0000000 --- a/example/macos/RunnerTests/RunnerTests.swift +++ /dev/null @@ -1,12 +0,0 @@ -import FlutterMacOS -import Cocoa -import XCTest - -class RunnerTests: XCTestCase { - - func testExample() { - // If you add code to the Runner application, consider adding tests here. - // See https://developer.apple.com/documentation/xctest for more information about using XCTest. - } - -} diff --git a/example/pubspec.lock b/example/pubspec.lock deleted file mode 100644 index 3b47f43..0000000 --- a/example/pubspec.lock +++ /dev/null @@ -1,87 +0,0 @@ -# Generated by pub -# See https://dart.dev/tools/pub/glossary#lockfile -packages: - avatar_glow: - dependency: "direct main" - description: - path: ".." - relative: true - source: path - version: "3.0.1" - characters: - dependency: transitive - description: - name: characters - sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605" - url: "https://pub.dev" - source: hosted - version: "1.3.0" - collection: - dependency: transitive - description: - name: collection - sha256: f092b211a4319e98e5ff58223576de6c2803db36221657b46c82574721240687 - url: "https://pub.dev" - source: hosted - version: "1.17.2" - flutter: - dependency: "direct main" - description: flutter - source: sdk - version: "0.0.0" - flutter_lints: - dependency: "direct dev" - description: - name: flutter_lints - sha256: "2118df84ef0c3ca93f96123a616ae8540879991b8b57af2f81b76a7ada49b2a4" - url: "https://pub.dev" - source: hosted - version: "2.0.2" - lints: - dependency: transitive - description: - name: lints - sha256: "0a217c6c989d21039f1498c3ed9f3ed71b354e69873f13a8dfc3c9fe76f1b452" - url: "https://pub.dev" - source: hosted - version: "2.1.1" - material_color_utilities: - dependency: transitive - description: - name: material_color_utilities - sha256: "9528f2f296073ff54cb9fee677df673ace1218163c3bc7628093e7eed5203d41" - url: "https://pub.dev" - source: hosted - version: "0.5.0" - meta: - dependency: transitive - description: - name: meta - sha256: "3c74dbf8763d36539f114c799d8a2d87343b5067e9d796ca22b5eb8437090ee3" - url: "https://pub.dev" - source: hosted - version: "1.9.1" - sky_engine: - dependency: transitive - description: flutter - source: sdk - version: "0.0.99" - vector_math: - dependency: transitive - description: - name: vector_math - sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" - url: "https://pub.dev" - source: hosted - version: "2.1.4" - web: - dependency: transitive - description: - name: web - sha256: dc8ccd225a2005c1be616fe02951e2e342092edf968cf0844220383757ef8f10 - url: "https://pub.dev" - source: hosted - version: "0.1.4-beta" -sdks: - dart: ">=3.1.0-185.0.dev <4.0.0" - flutter: ">=3.10.0" diff --git a/example/pubspec.yaml b/example/pubspec.yaml deleted file mode 100644 index 98ea89c..0000000 --- a/example/pubspec.yaml +++ /dev/null @@ -1,27 +0,0 @@ -name: example -description: A new Flutter application. - -version: 1.0.0+1 -publish_to: "none" - -environment: - sdk: '>=3.0.0 <4.0.0' - flutter: '>=3.10.0' - -dependencies: - flutter: - sdk: flutter - avatar_glow: - path: ../ - -dev_dependencies: - flutter_lints: ^2.0.0 - -flutter: - uses-material-design: true - - assets: - - assets/images/avatar.png - - assets/images/flutter.png - - assets/images/love.png - - assets/images/dart.png diff --git a/example/windows/.gitignore b/example/windows/.gitignore deleted file mode 100644 index d492d0d..0000000 --- a/example/windows/.gitignore +++ /dev/null @@ -1,17 +0,0 @@ -flutter/ephemeral/ - -# Visual Studio user-specific files. -*.suo -*.user -*.userosscache -*.sln.docstates - -# Visual Studio build-related files. -x64/ -x86/ - -# Visual Studio cache files -# files ending in .cache can be ignored -*.[Cc]ache -# but keep track of directories ending in .cache -!*.[Cc]ache/ diff --git a/example/windows/CMakeLists.txt b/example/windows/CMakeLists.txt deleted file mode 100644 index 1378672..0000000 --- a/example/windows/CMakeLists.txt +++ /dev/null @@ -1,102 +0,0 @@ -# Project-level configuration. -cmake_minimum_required(VERSION 3.14) -project(example LANGUAGES CXX) - -# The name of the executable created for the application. Change this to change -# the on-disk name of your application. -set(BINARY_NAME "example") - -# Explicitly opt in to modern CMake behaviors to avoid warnings with recent -# versions of CMake. -cmake_policy(SET CMP0063 NEW) - -# Define build configuration option. -get_property(IS_MULTICONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) -if(IS_MULTICONFIG) - set(CMAKE_CONFIGURATION_TYPES "Debug;Profile;Release" - CACHE STRING "" FORCE) -else() - if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) - set(CMAKE_BUILD_TYPE "Debug" CACHE - STRING "Flutter build mode" FORCE) - set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS - "Debug" "Profile" "Release") - endif() -endif() -# Define settings for the Profile build mode. -set(CMAKE_EXE_LINKER_FLAGS_PROFILE "${CMAKE_EXE_LINKER_FLAGS_RELEASE}") -set(CMAKE_SHARED_LINKER_FLAGS_PROFILE "${CMAKE_SHARED_LINKER_FLAGS_RELEASE}") -set(CMAKE_C_FLAGS_PROFILE "${CMAKE_C_FLAGS_RELEASE}") -set(CMAKE_CXX_FLAGS_PROFILE "${CMAKE_CXX_FLAGS_RELEASE}") - -# Use Unicode for all projects. -add_definitions(-DUNICODE -D_UNICODE) - -# Compilation settings that should be applied to most targets. -# -# Be cautious about adding new options here, as plugins use this function by -# default. In most cases, you should add new options to specific targets instead -# of modifying this function. -function(APPLY_STANDARD_SETTINGS TARGET) - target_compile_features(${TARGET} PUBLIC cxx_std_17) - target_compile_options(${TARGET} PRIVATE /W4 /WX /wd"4100") - target_compile_options(${TARGET} PRIVATE /EHsc) - target_compile_definitions(${TARGET} PRIVATE "_HAS_EXCEPTIONS=0") - target_compile_definitions(${TARGET} PRIVATE "$<$:_DEBUG>") -endfunction() - -# Flutter library and tool build rules. -set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter") -add_subdirectory(${FLUTTER_MANAGED_DIR}) - -# Application build; see runner/CMakeLists.txt. -add_subdirectory("runner") - - -# Generated plugin build rules, which manage building the plugins and adding -# them to the application. -include(flutter/generated_plugins.cmake) - - -# === Installation === -# Support files are copied into place next to the executable, so that it can -# run in place. This is done instead of making a separate bundle (as on Linux) -# so that building and running from within Visual Studio will work. -set(BUILD_BUNDLE_DIR "$") -# Make the "install" step default, as it's required to run. -set(CMAKE_VS_INCLUDE_INSTALL_TO_DEFAULT_BUILD 1) -if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) - set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE) -endif() - -set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data") -set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}") - -install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}" - COMPONENT Runtime) - -install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" - COMPONENT Runtime) - -install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" - COMPONENT Runtime) - -if(PLUGIN_BUNDLED_LIBRARIES) - install(FILES "${PLUGIN_BUNDLED_LIBRARIES}" - DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" - COMPONENT Runtime) -endif() - -# Fully re-copy the assets directory on each build to avoid having stale files -# from a previous install. -set(FLUTTER_ASSET_DIR_NAME "flutter_assets") -install(CODE " - file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\") - " COMPONENT Runtime) -install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}" - DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) - -# Install the AOT library on non-Debug builds only. -install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" - CONFIGURATIONS Profile;Release - COMPONENT Runtime) diff --git a/example/windows/flutter/CMakeLists.txt b/example/windows/flutter/CMakeLists.txt deleted file mode 100644 index 930d207..0000000 --- a/example/windows/flutter/CMakeLists.txt +++ /dev/null @@ -1,104 +0,0 @@ -# This file controls Flutter-level build steps. It should not be edited. -cmake_minimum_required(VERSION 3.14) - -set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral") - -# Configuration provided via flutter tool. -include(${EPHEMERAL_DIR}/generated_config.cmake) - -# TODO: Move the rest of this into files in ephemeral. See -# https://github.com/flutter/flutter/issues/57146. -set(WRAPPER_ROOT "${EPHEMERAL_DIR}/cpp_client_wrapper") - -# === Flutter Library === -set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/flutter_windows.dll") - -# Published to parent scope for install step. -set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE) -set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE) -set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE) -set(AOT_LIBRARY "${PROJECT_DIR}/build/windows/app.so" PARENT_SCOPE) - -list(APPEND FLUTTER_LIBRARY_HEADERS - "flutter_export.h" - "flutter_windows.h" - "flutter_messenger.h" - "flutter_plugin_registrar.h" - "flutter_texture_registrar.h" -) -list(TRANSFORM FLUTTER_LIBRARY_HEADERS PREPEND "${EPHEMERAL_DIR}/") -add_library(flutter INTERFACE) -target_include_directories(flutter INTERFACE - "${EPHEMERAL_DIR}" -) -target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}.lib") -add_dependencies(flutter flutter_assemble) - -# === Wrapper === -list(APPEND CPP_WRAPPER_SOURCES_CORE - "core_implementations.cc" - "standard_codec.cc" -) -list(TRANSFORM CPP_WRAPPER_SOURCES_CORE PREPEND "${WRAPPER_ROOT}/") -list(APPEND CPP_WRAPPER_SOURCES_PLUGIN - "plugin_registrar.cc" -) -list(TRANSFORM CPP_WRAPPER_SOURCES_PLUGIN PREPEND "${WRAPPER_ROOT}/") -list(APPEND CPP_WRAPPER_SOURCES_APP - "flutter_engine.cc" - "flutter_view_controller.cc" -) -list(TRANSFORM CPP_WRAPPER_SOURCES_APP PREPEND "${WRAPPER_ROOT}/") - -# Wrapper sources needed for a plugin. -add_library(flutter_wrapper_plugin STATIC - ${CPP_WRAPPER_SOURCES_CORE} - ${CPP_WRAPPER_SOURCES_PLUGIN} -) -apply_standard_settings(flutter_wrapper_plugin) -set_target_properties(flutter_wrapper_plugin PROPERTIES - POSITION_INDEPENDENT_CODE ON) -set_target_properties(flutter_wrapper_plugin PROPERTIES - CXX_VISIBILITY_PRESET hidden) -target_link_libraries(flutter_wrapper_plugin PUBLIC flutter) -target_include_directories(flutter_wrapper_plugin PUBLIC - "${WRAPPER_ROOT}/include" -) -add_dependencies(flutter_wrapper_plugin flutter_assemble) - -# Wrapper sources needed for the runner. -add_library(flutter_wrapper_app STATIC - ${CPP_WRAPPER_SOURCES_CORE} - ${CPP_WRAPPER_SOURCES_APP} -) -apply_standard_settings(flutter_wrapper_app) -target_link_libraries(flutter_wrapper_app PUBLIC flutter) -target_include_directories(flutter_wrapper_app PUBLIC - "${WRAPPER_ROOT}/include" -) -add_dependencies(flutter_wrapper_app flutter_assemble) - -# === Flutter tool backend === -# _phony_ is a non-existent file to force this command to run every time, -# since currently there's no way to get a full input/output list from the -# flutter tool. -set(PHONY_OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/_phony_") -set_source_files_properties("${PHONY_OUTPUT}" PROPERTIES SYMBOLIC TRUE) -add_custom_command( - OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS} - ${CPP_WRAPPER_SOURCES_CORE} ${CPP_WRAPPER_SOURCES_PLUGIN} - ${CPP_WRAPPER_SOURCES_APP} - ${PHONY_OUTPUT} - COMMAND ${CMAKE_COMMAND} -E env - ${FLUTTER_TOOL_ENVIRONMENT} - "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.bat" - windows-x64 $ - VERBATIM -) -add_custom_target(flutter_assemble DEPENDS - "${FLUTTER_LIBRARY}" - ${FLUTTER_LIBRARY_HEADERS} - ${CPP_WRAPPER_SOURCES_CORE} - ${CPP_WRAPPER_SOURCES_PLUGIN} - ${CPP_WRAPPER_SOURCES_APP} -) diff --git a/example/windows/flutter/generated_plugin_registrant.cc b/example/windows/flutter/generated_plugin_registrant.cc deleted file mode 100644 index 8b6d468..0000000 --- a/example/windows/flutter/generated_plugin_registrant.cc +++ /dev/null @@ -1,11 +0,0 @@ -// -// Generated file. Do not edit. -// - -// clang-format off - -#include "generated_plugin_registrant.h" - - -void RegisterPlugins(flutter::PluginRegistry* registry) { -} diff --git a/example/windows/flutter/generated_plugin_registrant.h b/example/windows/flutter/generated_plugin_registrant.h deleted file mode 100644 index dc139d8..0000000 --- a/example/windows/flutter/generated_plugin_registrant.h +++ /dev/null @@ -1,15 +0,0 @@ -// -// Generated file. Do not edit. -// - -// clang-format off - -#ifndef GENERATED_PLUGIN_REGISTRANT_ -#define GENERATED_PLUGIN_REGISTRANT_ - -#include - -// Registers Flutter plugins. -void RegisterPlugins(flutter::PluginRegistry* registry); - -#endif // GENERATED_PLUGIN_REGISTRANT_ diff --git a/example/windows/flutter/generated_plugins.cmake b/example/windows/flutter/generated_plugins.cmake deleted file mode 100644 index b93c4c3..0000000 --- a/example/windows/flutter/generated_plugins.cmake +++ /dev/null @@ -1,23 +0,0 @@ -# -# Generated file, do not edit. -# - -list(APPEND FLUTTER_PLUGIN_LIST -) - -list(APPEND FLUTTER_FFI_PLUGIN_LIST -) - -set(PLUGIN_BUNDLED_LIBRARIES) - -foreach(plugin ${FLUTTER_PLUGIN_LIST}) - add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/windows plugins/${plugin}) - target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) - list(APPEND PLUGIN_BUNDLED_LIBRARIES $) - list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) -endforeach(plugin) - -foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST}) - add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/windows plugins/${ffi_plugin}) - list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries}) -endforeach(ffi_plugin) diff --git a/example/windows/runner/CMakeLists.txt b/example/windows/runner/CMakeLists.txt deleted file mode 100644 index 394917c..0000000 --- a/example/windows/runner/CMakeLists.txt +++ /dev/null @@ -1,40 +0,0 @@ -cmake_minimum_required(VERSION 3.14) -project(runner LANGUAGES CXX) - -# Define the application target. To change its name, change BINARY_NAME in the -# top-level CMakeLists.txt, not the value here, or `flutter run` will no longer -# work. -# -# Any new source files that you add to the application should be added here. -add_executable(${BINARY_NAME} WIN32 - "flutter_window.cpp" - "main.cpp" - "utils.cpp" - "win32_window.cpp" - "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc" - "Runner.rc" - "runner.exe.manifest" -) - -# Apply the standard set of build settings. This can be removed for applications -# that need different build settings. -apply_standard_settings(${BINARY_NAME}) - -# Add preprocessor definitions for the build version. -target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION=\"${FLUTTER_VERSION}\"") -target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_MAJOR=${FLUTTER_VERSION_MAJOR}") -target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_MINOR=${FLUTTER_VERSION_MINOR}") -target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_PATCH=${FLUTTER_VERSION_PATCH}") -target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_BUILD=${FLUTTER_VERSION_BUILD}") - -# Disable Windows macros that collide with C++ standard library functions. -target_compile_definitions(${BINARY_NAME} PRIVATE "NOMINMAX") - -# Add dependency libraries and include directories. Add any application-specific -# dependencies here. -target_link_libraries(${BINARY_NAME} PRIVATE flutter flutter_wrapper_app) -target_link_libraries(${BINARY_NAME} PRIVATE "dwmapi.lib") -target_include_directories(${BINARY_NAME} PRIVATE "${CMAKE_SOURCE_DIR}") - -# Run the Flutter tool portions of the build. This must not be removed. -add_dependencies(${BINARY_NAME} flutter_assemble) diff --git a/example/windows/runner/Runner.rc b/example/windows/runner/Runner.rc deleted file mode 100644 index aecaa2b..0000000 --- a/example/windows/runner/Runner.rc +++ /dev/null @@ -1,121 +0,0 @@ -// Microsoft Visual C++ generated resource script. -// -#pragma code_page(65001) -#include "resource.h" - -#define APSTUDIO_READONLY_SYMBOLS -///////////////////////////////////////////////////////////////////////////// -// -// Generated from the TEXTINCLUDE 2 resource. -// -#include "winres.h" - -///////////////////////////////////////////////////////////////////////////// -#undef APSTUDIO_READONLY_SYMBOLS - -///////////////////////////////////////////////////////////////////////////// -// English (United States) resources - -#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) -LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US - -#ifdef APSTUDIO_INVOKED -///////////////////////////////////////////////////////////////////////////// -// -// TEXTINCLUDE -// - -1 TEXTINCLUDE -BEGIN - "resource.h\0" -END - -2 TEXTINCLUDE -BEGIN - "#include ""winres.h""\r\n" - "\0" -END - -3 TEXTINCLUDE -BEGIN - "\r\n" - "\0" -END - -#endif // APSTUDIO_INVOKED - - -///////////////////////////////////////////////////////////////////////////// -// -// Icon -// - -// Icon with lowest ID value placed first to ensure application icon -// remains consistent on all systems. -IDI_APP_ICON ICON "resources\\app_icon.ico" - - -///////////////////////////////////////////////////////////////////////////// -// -// Version -// - -#if defined(FLUTTER_VERSION_MAJOR) && defined(FLUTTER_VERSION_MINOR) && defined(FLUTTER_VERSION_PATCH) && defined(FLUTTER_VERSION_BUILD) -#define VERSION_AS_NUMBER FLUTTER_VERSION_MAJOR,FLUTTER_VERSION_MINOR,FLUTTER_VERSION_PATCH,FLUTTER_VERSION_BUILD -#else -#define VERSION_AS_NUMBER 1,0,0,0 -#endif - -#if defined(FLUTTER_VERSION) -#define VERSION_AS_STRING FLUTTER_VERSION -#else -#define VERSION_AS_STRING "1.0.0" -#endif - -VS_VERSION_INFO VERSIONINFO - FILEVERSION VERSION_AS_NUMBER - PRODUCTVERSION VERSION_AS_NUMBER - FILEFLAGSMASK VS_FFI_FILEFLAGSMASK -#ifdef _DEBUG - FILEFLAGS VS_FF_DEBUG -#else - FILEFLAGS 0x0L -#endif - FILEOS VOS__WINDOWS32 - FILETYPE VFT_APP - FILESUBTYPE 0x0L -BEGIN - BLOCK "StringFileInfo" - BEGIN - BLOCK "040904e4" - BEGIN - VALUE "CompanyName", "com.example" "\0" - VALUE "FileDescription", "example" "\0" - VALUE "FileVersion", VERSION_AS_STRING "\0" - VALUE "InternalName", "example" "\0" - VALUE "LegalCopyright", "Copyright (C) 2023 com.example. All rights reserved." "\0" - VALUE "OriginalFilename", "example.exe" "\0" - VALUE "ProductName", "example" "\0" - VALUE "ProductVersion", VERSION_AS_STRING "\0" - END - END - BLOCK "VarFileInfo" - BEGIN - VALUE "Translation", 0x409, 1252 - END -END - -#endif // English (United States) resources -///////////////////////////////////////////////////////////////////////////// - - - -#ifndef APSTUDIO_INVOKED -///////////////////////////////////////////////////////////////////////////// -// -// Generated from the TEXTINCLUDE 3 resource. -// - - -///////////////////////////////////////////////////////////////////////////// -#endif // not APSTUDIO_INVOKED diff --git a/example/windows/runner/flutter_window.cpp b/example/windows/runner/flutter_window.cpp deleted file mode 100644 index b25e363..0000000 --- a/example/windows/runner/flutter_window.cpp +++ /dev/null @@ -1,66 +0,0 @@ -#include "flutter_window.h" - -#include - -#include "flutter/generated_plugin_registrant.h" - -FlutterWindow::FlutterWindow(const flutter::DartProject& project) - : project_(project) {} - -FlutterWindow::~FlutterWindow() {} - -bool FlutterWindow::OnCreate() { - if (!Win32Window::OnCreate()) { - return false; - } - - RECT frame = GetClientArea(); - - // The size here must match the window dimensions to avoid unnecessary surface - // creation / destruction in the startup path. - flutter_controller_ = std::make_unique( - frame.right - frame.left, frame.bottom - frame.top, project_); - // Ensure that basic setup of the controller was successful. - if (!flutter_controller_->engine() || !flutter_controller_->view()) { - return false; - } - RegisterPlugins(flutter_controller_->engine()); - SetChildContent(flutter_controller_->view()->GetNativeWindow()); - - flutter_controller_->engine()->SetNextFrameCallback([&]() { - this->Show(); - }); - - return true; -} - -void FlutterWindow::OnDestroy() { - if (flutter_controller_) { - flutter_controller_ = nullptr; - } - - Win32Window::OnDestroy(); -} - -LRESULT -FlutterWindow::MessageHandler(HWND hwnd, UINT const message, - WPARAM const wparam, - LPARAM const lparam) noexcept { - // Give Flutter, including plugins, an opportunity to handle window messages. - if (flutter_controller_) { - std::optional result = - flutter_controller_->HandleTopLevelWindowProc(hwnd, message, wparam, - lparam); - if (result) { - return *result; - } - } - - switch (message) { - case WM_FONTCHANGE: - flutter_controller_->engine()->ReloadSystemFonts(); - break; - } - - return Win32Window::MessageHandler(hwnd, message, wparam, lparam); -} diff --git a/example/windows/runner/flutter_window.h b/example/windows/runner/flutter_window.h deleted file mode 100644 index 6da0652..0000000 --- a/example/windows/runner/flutter_window.h +++ /dev/null @@ -1,33 +0,0 @@ -#ifndef RUNNER_FLUTTER_WINDOW_H_ -#define RUNNER_FLUTTER_WINDOW_H_ - -#include -#include - -#include - -#include "win32_window.h" - -// A window that does nothing but host a Flutter view. -class FlutterWindow : public Win32Window { - public: - // Creates a new FlutterWindow hosting a Flutter view running |project|. - explicit FlutterWindow(const flutter::DartProject& project); - virtual ~FlutterWindow(); - - protected: - // Win32Window: - bool OnCreate() override; - void OnDestroy() override; - LRESULT MessageHandler(HWND window, UINT const message, WPARAM const wparam, - LPARAM const lparam) noexcept override; - - private: - // The project to run. - flutter::DartProject project_; - - // The Flutter instance hosted by this window. - std::unique_ptr flutter_controller_; -}; - -#endif // RUNNER_FLUTTER_WINDOW_H_ diff --git a/example/windows/runner/main.cpp b/example/windows/runner/main.cpp deleted file mode 100644 index a61bf80..0000000 --- a/example/windows/runner/main.cpp +++ /dev/null @@ -1,43 +0,0 @@ -#include -#include -#include - -#include "flutter_window.h" -#include "utils.h" - -int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev, - _In_ wchar_t *command_line, _In_ int show_command) { - // Attach to console when present (e.g., 'flutter run') or create a - // new console when running with a debugger. - if (!::AttachConsole(ATTACH_PARENT_PROCESS) && ::IsDebuggerPresent()) { - CreateAndAttachConsole(); - } - - // Initialize COM, so that it is available for use in the library and/or - // plugins. - ::CoInitializeEx(nullptr, COINIT_APARTMENTTHREADED); - - flutter::DartProject project(L"data"); - - std::vector command_line_arguments = - GetCommandLineArguments(); - - project.set_dart_entrypoint_arguments(std::move(command_line_arguments)); - - FlutterWindow window(project); - Win32Window::Point origin(10, 10); - Win32Window::Size size(1280, 720); - if (!window.Create(L"example", origin, size)) { - return EXIT_FAILURE; - } - window.SetQuitOnClose(true); - - ::MSG msg; - while (::GetMessage(&msg, nullptr, 0, 0)) { - ::TranslateMessage(&msg); - ::DispatchMessage(&msg); - } - - ::CoUninitialize(); - return EXIT_SUCCESS; -} diff --git a/example/windows/runner/resource.h b/example/windows/runner/resource.h deleted file mode 100644 index 66a65d1..0000000 --- a/example/windows/runner/resource.h +++ /dev/null @@ -1,16 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by Runner.rc -// -#define IDI_APP_ICON 101 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 102 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1001 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/example/windows/runner/resources/app_icon.ico b/example/windows/runner/resources/app_icon.ico deleted file mode 100644 index c04e20c..0000000 Binary files a/example/windows/runner/resources/app_icon.ico and /dev/null differ diff --git a/example/windows/runner/runner.exe.manifest b/example/windows/runner/runner.exe.manifest deleted file mode 100644 index a42ea76..0000000 --- a/example/windows/runner/runner.exe.manifest +++ /dev/null @@ -1,20 +0,0 @@ - - - - - PerMonitorV2 - - - - - - - - - - - - - - - diff --git a/example/windows/runner/utils.cpp b/example/windows/runner/utils.cpp deleted file mode 100644 index b2b0873..0000000 --- a/example/windows/runner/utils.cpp +++ /dev/null @@ -1,65 +0,0 @@ -#include "utils.h" - -#include -#include -#include -#include - -#include - -void CreateAndAttachConsole() { - if (::AllocConsole()) { - FILE *unused; - if (freopen_s(&unused, "CONOUT$", "w", stdout)) { - _dup2(_fileno(stdout), 1); - } - if (freopen_s(&unused, "CONOUT$", "w", stderr)) { - _dup2(_fileno(stdout), 2); - } - std::ios::sync_with_stdio(); - FlutterDesktopResyncOutputStreams(); - } -} - -std::vector GetCommandLineArguments() { - // Convert the UTF-16 command line arguments to UTF-8 for the Engine to use. - int argc; - wchar_t** argv = ::CommandLineToArgvW(::GetCommandLineW(), &argc); - if (argv == nullptr) { - return std::vector(); - } - - std::vector command_line_arguments; - - // Skip the first argument as it's the binary name. - for (int i = 1; i < argc; i++) { - command_line_arguments.push_back(Utf8FromUtf16(argv[i])); - } - - ::LocalFree(argv); - - return command_line_arguments; -} - -std::string Utf8FromUtf16(const wchar_t* utf16_string) { - if (utf16_string == nullptr) { - return std::string(); - } - int target_length = ::WideCharToMultiByte( - CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string, - -1, nullptr, 0, nullptr, nullptr) - -1; // remove the trailing null character - int input_length = (int)wcslen(utf16_string); - std::string utf8_string; - if (target_length <= 0 || target_length > utf8_string.max_size()) { - return utf8_string; - } - utf8_string.resize(target_length); - int converted_length = ::WideCharToMultiByte( - CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string, - input_length, utf8_string.data(), target_length, nullptr, nullptr); - if (converted_length == 0) { - return std::string(); - } - return utf8_string; -} diff --git a/example/windows/runner/utils.h b/example/windows/runner/utils.h deleted file mode 100644 index 3879d54..0000000 --- a/example/windows/runner/utils.h +++ /dev/null @@ -1,19 +0,0 @@ -#ifndef RUNNER_UTILS_H_ -#define RUNNER_UTILS_H_ - -#include -#include - -// Creates a console for the process, and redirects stdout and stderr to -// it for both the runner and the Flutter library. -void CreateAndAttachConsole(); - -// Takes a null-terminated wchar_t* encoded in UTF-16 and returns a std::string -// encoded in UTF-8. Returns an empty std::string on failure. -std::string Utf8FromUtf16(const wchar_t* utf16_string); - -// Gets the command line arguments passed in as a std::vector, -// encoded in UTF-8. Returns an empty std::vector on failure. -std::vector GetCommandLineArguments(); - -#endif // RUNNER_UTILS_H_ diff --git a/example/windows/runner/win32_window.cpp b/example/windows/runner/win32_window.cpp deleted file mode 100644 index 60608d0..0000000 --- a/example/windows/runner/win32_window.cpp +++ /dev/null @@ -1,288 +0,0 @@ -#include "win32_window.h" - -#include -#include - -#include "resource.h" - -namespace { - -/// Window attribute that enables dark mode window decorations. -/// -/// Redefined in case the developer's machine has a Windows SDK older than -/// version 10.0.22000.0. -/// See: https://docs.microsoft.com/windows/win32/api/dwmapi/ne-dwmapi-dwmwindowattribute -#ifndef DWMWA_USE_IMMERSIVE_DARK_MODE -#define DWMWA_USE_IMMERSIVE_DARK_MODE 20 -#endif - -constexpr const wchar_t kWindowClassName[] = L"FLUTTER_RUNNER_WIN32_WINDOW"; - -/// Registry key for app theme preference. -/// -/// A value of 0 indicates apps should use dark mode. A non-zero or missing -/// value indicates apps should use light mode. -constexpr const wchar_t kGetPreferredBrightnessRegKey[] = - L"Software\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize"; -constexpr const wchar_t kGetPreferredBrightnessRegValue[] = L"AppsUseLightTheme"; - -// The number of Win32Window objects that currently exist. -static int g_active_window_count = 0; - -using EnableNonClientDpiScaling = BOOL __stdcall(HWND hwnd); - -// Scale helper to convert logical scaler values to physical using passed in -// scale factor -int Scale(int source, double scale_factor) { - return static_cast(source * scale_factor); -} - -// Dynamically loads the |EnableNonClientDpiScaling| from the User32 module. -// This API is only needed for PerMonitor V1 awareness mode. -void EnableFullDpiSupportIfAvailable(HWND hwnd) { - HMODULE user32_module = LoadLibraryA("User32.dll"); - if (!user32_module) { - return; - } - auto enable_non_client_dpi_scaling = - reinterpret_cast( - GetProcAddress(user32_module, "EnableNonClientDpiScaling")); - if (enable_non_client_dpi_scaling != nullptr) { - enable_non_client_dpi_scaling(hwnd); - } - FreeLibrary(user32_module); -} - -} // namespace - -// Manages the Win32Window's window class registration. -class WindowClassRegistrar { - public: - ~WindowClassRegistrar() = default; - - // Returns the singleton registrar instance. - static WindowClassRegistrar* GetInstance() { - if (!instance_) { - instance_ = new WindowClassRegistrar(); - } - return instance_; - } - - // Returns the name of the window class, registering the class if it hasn't - // previously been registered. - const wchar_t* GetWindowClass(); - - // Unregisters the window class. Should only be called if there are no - // instances of the window. - void UnregisterWindowClass(); - - private: - WindowClassRegistrar() = default; - - static WindowClassRegistrar* instance_; - - bool class_registered_ = false; -}; - -WindowClassRegistrar* WindowClassRegistrar::instance_ = nullptr; - -const wchar_t* WindowClassRegistrar::GetWindowClass() { - if (!class_registered_) { - WNDCLASS window_class{}; - window_class.hCursor = LoadCursor(nullptr, IDC_ARROW); - window_class.lpszClassName = kWindowClassName; - window_class.style = CS_HREDRAW | CS_VREDRAW; - window_class.cbClsExtra = 0; - window_class.cbWndExtra = 0; - window_class.hInstance = GetModuleHandle(nullptr); - window_class.hIcon = - LoadIcon(window_class.hInstance, MAKEINTRESOURCE(IDI_APP_ICON)); - window_class.hbrBackground = 0; - window_class.lpszMenuName = nullptr; - window_class.lpfnWndProc = Win32Window::WndProc; - RegisterClass(&window_class); - class_registered_ = true; - } - return kWindowClassName; -} - -void WindowClassRegistrar::UnregisterWindowClass() { - UnregisterClass(kWindowClassName, nullptr); - class_registered_ = false; -} - -Win32Window::Win32Window() { - ++g_active_window_count; -} - -Win32Window::~Win32Window() { - --g_active_window_count; - Destroy(); -} - -bool Win32Window::Create(const std::wstring& title, - const Point& origin, - const Size& size) { - Destroy(); - - const wchar_t* window_class = - WindowClassRegistrar::GetInstance()->GetWindowClass(); - - const POINT target_point = {static_cast(origin.x), - static_cast(origin.y)}; - HMONITOR monitor = MonitorFromPoint(target_point, MONITOR_DEFAULTTONEAREST); - UINT dpi = FlutterDesktopGetDpiForMonitor(monitor); - double scale_factor = dpi / 96.0; - - HWND window = CreateWindow( - window_class, title.c_str(), WS_OVERLAPPEDWINDOW, - Scale(origin.x, scale_factor), Scale(origin.y, scale_factor), - Scale(size.width, scale_factor), Scale(size.height, scale_factor), - nullptr, nullptr, GetModuleHandle(nullptr), this); - - if (!window) { - return false; - } - - UpdateTheme(window); - - return OnCreate(); -} - -bool Win32Window::Show() { - return ShowWindow(window_handle_, SW_SHOWNORMAL); -} - -// static -LRESULT CALLBACK Win32Window::WndProc(HWND const window, - UINT const message, - WPARAM const wparam, - LPARAM const lparam) noexcept { - if (message == WM_NCCREATE) { - auto window_struct = reinterpret_cast(lparam); - SetWindowLongPtr(window, GWLP_USERDATA, - reinterpret_cast(window_struct->lpCreateParams)); - - auto that = static_cast(window_struct->lpCreateParams); - EnableFullDpiSupportIfAvailable(window); - that->window_handle_ = window; - } else if (Win32Window* that = GetThisFromHandle(window)) { - return that->MessageHandler(window, message, wparam, lparam); - } - - return DefWindowProc(window, message, wparam, lparam); -} - -LRESULT -Win32Window::MessageHandler(HWND hwnd, - UINT const message, - WPARAM const wparam, - LPARAM const lparam) noexcept { - switch (message) { - case WM_DESTROY: - window_handle_ = nullptr; - Destroy(); - if (quit_on_close_) { - PostQuitMessage(0); - } - return 0; - - case WM_DPICHANGED: { - auto newRectSize = reinterpret_cast(lparam); - LONG newWidth = newRectSize->right - newRectSize->left; - LONG newHeight = newRectSize->bottom - newRectSize->top; - - SetWindowPos(hwnd, nullptr, newRectSize->left, newRectSize->top, newWidth, - newHeight, SWP_NOZORDER | SWP_NOACTIVATE); - - return 0; - } - case WM_SIZE: { - RECT rect = GetClientArea(); - if (child_content_ != nullptr) { - // Size and position the child window. - MoveWindow(child_content_, rect.left, rect.top, rect.right - rect.left, - rect.bottom - rect.top, TRUE); - } - return 0; - } - - case WM_ACTIVATE: - if (child_content_ != nullptr) { - SetFocus(child_content_); - } - return 0; - - case WM_DWMCOLORIZATIONCOLORCHANGED: - UpdateTheme(hwnd); - return 0; - } - - return DefWindowProc(window_handle_, message, wparam, lparam); -} - -void Win32Window::Destroy() { - OnDestroy(); - - if (window_handle_) { - DestroyWindow(window_handle_); - window_handle_ = nullptr; - } - if (g_active_window_count == 0) { - WindowClassRegistrar::GetInstance()->UnregisterWindowClass(); - } -} - -Win32Window* Win32Window::GetThisFromHandle(HWND const window) noexcept { - return reinterpret_cast( - GetWindowLongPtr(window, GWLP_USERDATA)); -} - -void Win32Window::SetChildContent(HWND content) { - child_content_ = content; - SetParent(content, window_handle_); - RECT frame = GetClientArea(); - - MoveWindow(content, frame.left, frame.top, frame.right - frame.left, - frame.bottom - frame.top, true); - - SetFocus(child_content_); -} - -RECT Win32Window::GetClientArea() { - RECT frame; - GetClientRect(window_handle_, &frame); - return frame; -} - -HWND Win32Window::GetHandle() { - return window_handle_; -} - -void Win32Window::SetQuitOnClose(bool quit_on_close) { - quit_on_close_ = quit_on_close; -} - -bool Win32Window::OnCreate() { - // No-op; provided for subclasses. - return true; -} - -void Win32Window::OnDestroy() { - // No-op; provided for subclasses. -} - -void Win32Window::UpdateTheme(HWND const window) { - DWORD light_mode; - DWORD light_mode_size = sizeof(light_mode); - LSTATUS result = RegGetValue(HKEY_CURRENT_USER, kGetPreferredBrightnessRegKey, - kGetPreferredBrightnessRegValue, - RRF_RT_REG_DWORD, nullptr, &light_mode, - &light_mode_size); - - if (result == ERROR_SUCCESS) { - BOOL enable_dark_mode = light_mode == 0; - DwmSetWindowAttribute(window, DWMWA_USE_IMMERSIVE_DARK_MODE, - &enable_dark_mode, sizeof(enable_dark_mode)); - } -} diff --git a/example/windows/runner/win32_window.h b/example/windows/runner/win32_window.h deleted file mode 100644 index e901dde..0000000 --- a/example/windows/runner/win32_window.h +++ /dev/null @@ -1,102 +0,0 @@ -#ifndef RUNNER_WIN32_WINDOW_H_ -#define RUNNER_WIN32_WINDOW_H_ - -#include - -#include -#include -#include - -// A class abstraction for a high DPI-aware Win32 Window. Intended to be -// inherited from by classes that wish to specialize with custom -// rendering and input handling -class Win32Window { - public: - struct Point { - unsigned int x; - unsigned int y; - Point(unsigned int x, unsigned int y) : x(x), y(y) {} - }; - - struct Size { - unsigned int width; - unsigned int height; - Size(unsigned int width, unsigned int height) - : width(width), height(height) {} - }; - - Win32Window(); - virtual ~Win32Window(); - - // Creates a win32 window with |title| that is positioned and sized using - // |origin| and |size|. New windows are created on the default monitor. Window - // sizes are specified to the OS in physical pixels, hence to ensure a - // consistent size this function will scale the inputted width and height as - // as appropriate for the default monitor. The window is invisible until - // |Show| is called. Returns true if the window was created successfully. - bool Create(const std::wstring& title, const Point& origin, const Size& size); - - // Show the current window. Returns true if the window was successfully shown. - bool Show(); - - // Release OS resources associated with window. - void Destroy(); - - // Inserts |content| into the window tree. - void SetChildContent(HWND content); - - // Returns the backing Window handle to enable clients to set icon and other - // window properties. Returns nullptr if the window has been destroyed. - HWND GetHandle(); - - // If true, closing this window will quit the application. - void SetQuitOnClose(bool quit_on_close); - - // Return a RECT representing the bounds of the current client area. - RECT GetClientArea(); - - protected: - // Processes and route salient window messages for mouse handling, - // size change and DPI. Delegates handling of these to member overloads that - // inheriting classes can handle. - virtual LRESULT MessageHandler(HWND window, - UINT const message, - WPARAM const wparam, - LPARAM const lparam) noexcept; - - // Called when CreateAndShow is called, allowing subclass window-related - // setup. Subclasses should return false if setup fails. - virtual bool OnCreate(); - - // Called when Destroy is called. - virtual void OnDestroy(); - - private: - friend class WindowClassRegistrar; - - // OS callback called by message pump. Handles the WM_NCCREATE message which - // is passed when the non-client area is being created and enables automatic - // non-client DPI scaling so that the non-client area automatically - // responds to changes in DPI. All other messages are handled by - // MessageHandler. - static LRESULT CALLBACK WndProc(HWND const window, - UINT const message, - WPARAM const wparam, - LPARAM const lparam) noexcept; - - // Retrieves a class instance pointer for |window| - static Win32Window* GetThisFromHandle(HWND const window) noexcept; - - // Update the window frame's theme to match the system theme. - static void UpdateTheme(HWND const window); - - bool quit_on_close_ = false; - - // window handle for top level window. - HWND window_handle_ = nullptr; - - // window handle for hosted content. - HWND child_content_ = nullptr; -}; - -#endif // RUNNER_WIN32_WINDOW_H_ diff --git a/example/web/favicon.png b/favicon.png similarity index 100% rename from example/web/favicon.png rename to favicon.png diff --git a/flutter.js b/flutter.js new file mode 100644 index 0000000..d3efa7f --- /dev/null +++ b/flutter.js @@ -0,0 +1,383 @@ +// Copyright 2014 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +if (!_flutter) { + var _flutter = {}; +} +_flutter.loader = null; + +(function () { + "use strict"; + + const baseUri = ensureTrailingSlash(getBaseURI()); + + function getBaseURI() { + const base = document.querySelector("base"); + return (base && base.getAttribute("href")) || ""; + } + + function ensureTrailingSlash(uri) { + if (uri == "") { + return uri; + } + return uri.endsWith("/") ? uri : `${uri}/`; + } + + /** + * Wraps `promise` in a timeout of the given `duration` in ms. + * + * Resolves/rejects with whatever the original `promises` does, or rejects + * if `promise` takes longer to complete than `duration`. In that case, + * `debugName` is used to compose a legible error message. + * + * If `duration` is < 0, the original `promise` is returned unchanged. + * @param {Promise} promise + * @param {number} duration + * @param {string} debugName + * @returns {Promise} a wrapped promise. + */ + async function timeout(promise, duration, debugName) { + if (duration < 0) { + return promise; + } + let timeoutId; + const _clock = new Promise((_, reject) => { + timeoutId = setTimeout(() => { + reject( + new Error( + `${debugName} took more than ${duration}ms to resolve. Moving on.`, + { + cause: timeout, + } + ) + ); + }, duration); + }); + + return Promise.race([promise, _clock]).finally(() => { + clearTimeout(timeoutId); + }); + } + + /** + * Handles the creation of a TrustedTypes `policy` that validates URLs based + * on an (optional) incoming array of RegExes. + */ + class FlutterTrustedTypesPolicy { + /** + * Constructs the policy. + * @param {[RegExp]} validPatterns the patterns to test URLs + * @param {String} policyName the policy name (optional) + */ + constructor(validPatterns, policyName = "flutter-js") { + const patterns = validPatterns || [ + /\.js$/, + ]; + if (window.trustedTypes) { + this.policy = trustedTypes.createPolicy(policyName, { + createScriptURL: function(url) { + const parsed = new URL(url, window.location); + const file = parsed.pathname.split("/").pop(); + const matches = patterns.some((pattern) => pattern.test(file)); + if (matches) { + return parsed.toString(); + } + console.error( + "URL rejected by TrustedTypes policy", + policyName, ":", url, "(download prevented)"); + } + }); + } + } + } + + /** + * Handles loading/reloading Flutter's service worker, if configured. + * + * @see: https://developers.google.com/web/fundamentals/primers/service-workers + */ + class FlutterServiceWorkerLoader { + /** + * Injects a TrustedTypesPolicy (or undefined if the feature is not supported). + * @param {TrustedTypesPolicy | undefined} policy + */ + setTrustedTypesPolicy(policy) { + this._ttPolicy = policy; + } + + /** + * Returns a Promise that resolves when the latest Flutter service worker, + * configured by `settings` has been loaded and activated. + * + * Otherwise, the promise is rejected with an error message. + * @param {*} settings Service worker settings + * @returns {Promise} that resolves when the latest serviceWorker is ready. + */ + loadServiceWorker(settings) { + if (settings == null) { + // In the future, settings = null -> uninstall service worker? + console.debug("Null serviceWorker configuration. Skipping."); + return Promise.resolve(); + } + if (!("serviceWorker" in navigator)) { + let errorMessage = "Service Worker API unavailable."; + if (!window.isSecureContext) { + errorMessage += "\nThe current context is NOT secure." + errorMessage += "\nRead more: https://developer.mozilla.org/en-US/docs/Web/Security/Secure_Contexts"; + } + return Promise.reject( + new Error(errorMessage) + ); + } + const { + serviceWorkerVersion, + serviceWorkerUrl = `${baseUri}flutter_service_worker.js?v=${serviceWorkerVersion}`, + timeoutMillis = 4000, + } = settings; + + // Apply the TrustedTypes policy, if present. + let url = serviceWorkerUrl; + if (this._ttPolicy != null) { + url = this._ttPolicy.createScriptURL(url); + } + + const serviceWorkerActivation = navigator.serviceWorker + .register(url) + .then(this._getNewServiceWorker) + .then(this._waitForServiceWorkerActivation); + + // Timeout race promise + return timeout( + serviceWorkerActivation, + timeoutMillis, + "prepareServiceWorker" + ); + } + + /** + * Returns the latest service worker for the given `serviceWorkerRegistrationPromise`. + * + * This might return the current service worker, if there's no new service worker + * awaiting to be installed/updated. + * + * @param {Promise} serviceWorkerRegistrationPromise + * @returns {Promise} + */ + async _getNewServiceWorker(serviceWorkerRegistrationPromise) { + const reg = await serviceWorkerRegistrationPromise; + + if (!reg.active && (reg.installing || reg.waiting)) { + // No active web worker and we have installed or are installing + // one for the first time. Simply wait for it to activate. + console.debug("Installing/Activating first service worker."); + return reg.installing || reg.waiting; + } else if (!reg.active.scriptURL.endsWith(serviceWorkerVersion)) { + // When the app updates the serviceWorkerVersion changes, so we + // need to ask the service worker to update. + return reg.update().then((newReg) => { + console.debug("Updating service worker."); + return newReg.installing || newReg.waiting || newReg.active; + }); + } else { + console.debug("Loading from existing service worker."); + return reg.active; + } + } + + /** + * Returns a Promise that resolves when the `latestServiceWorker` changes its + * state to "activated". + * + * @param {Promise} latestServiceWorkerPromise + * @returns {Promise} + */ + async _waitForServiceWorkerActivation(latestServiceWorkerPromise) { + const serviceWorker = await latestServiceWorkerPromise; + + if (!serviceWorker || serviceWorker.state == "activated") { + if (!serviceWorker) { + return Promise.reject( + new Error("Cannot activate a null service worker!") + ); + } else { + console.debug("Service worker already active."); + return Promise.resolve(); + } + } + return new Promise((resolve, _) => { + serviceWorker.addEventListener("statechange", () => { + if (serviceWorker.state == "activated") { + console.debug("Activated new service worker."); + resolve(); + } + }); + }); + } + } + + /** + * Handles injecting the main Flutter web entrypoint (main.dart.js), and notifying + * the user when Flutter is ready, through `didCreateEngineInitializer`. + * + * @see https://docs.flutter.dev/development/platform-integration/web/initialization + */ + class FlutterEntrypointLoader { + /** + * Creates a FlutterEntrypointLoader. + */ + constructor() { + // Watchdog to prevent injecting the main entrypoint multiple times. + this._scriptLoaded = false; + } + + /** + * Injects a TrustedTypesPolicy (or undefined if the feature is not supported). + * @param {TrustedTypesPolicy | undefined} policy + */ + setTrustedTypesPolicy(policy) { + this._ttPolicy = policy; + } + + /** + * Loads flutter main entrypoint, specified by `entrypointUrl`, and calls a + * user-specified `onEntrypointLoaded` callback with an EngineInitializer + * object when it's done. + * + * @param {*} options + * @returns {Promise | undefined} that will eventually resolve with an + * EngineInitializer, or will be rejected with the error caused by the loader. + * Returns undefined when an `onEntrypointLoaded` callback is supplied in `options`. + */ + async loadEntrypoint(options) { + const { entrypointUrl = `${baseUri}main.dart.js`, onEntrypointLoaded } = + options || {}; + + return this._loadEntrypoint(entrypointUrl, onEntrypointLoaded); + } + + /** + * Resolves the promise created by loadEntrypoint, and calls the `onEntrypointLoaded` + * function supplied by the user (if needed). + * + * Called by Flutter through `_flutter.loader.didCreateEngineInitializer` method, + * which is bound to the correct instance of the FlutterEntrypointLoader by + * the FlutterLoader object. + * + * @param {Function} engineInitializer @see https://github.com/flutter/engine/blob/main/lib/web_ui/lib/src/engine/js_interop/js_loader.dart#L42 + */ + didCreateEngineInitializer(engineInitializer) { + if (typeof this._didCreateEngineInitializerResolve === "function") { + this._didCreateEngineInitializerResolve(engineInitializer); + // Remove the resolver after the first time, so Flutter Web can hot restart. + this._didCreateEngineInitializerResolve = null; + // Make the engine revert to "auto" initialization on hot restart. + delete _flutter.loader.didCreateEngineInitializer; + } + if (typeof this._onEntrypointLoaded === "function") { + this._onEntrypointLoaded(engineInitializer); + } + } + + /** + * Injects a script tag into the DOM, and configures this loader to be able to + * handle the "entrypoint loaded" notifications received from Flutter web. + * + * @param {string} entrypointUrl the URL of the script that will initialize + * Flutter. + * @param {Function} onEntrypointLoaded a callback that will be called when + * Flutter web notifies this object that the entrypoint is + * loaded. + * @returns {Promise | undefined} a Promise that resolves when the entrypoint + * is loaded, or undefined if `onEntrypointLoaded` + * is a function. + */ + _loadEntrypoint(entrypointUrl, onEntrypointLoaded) { + const useCallback = typeof onEntrypointLoaded === "function"; + + if (!this._scriptLoaded) { + this._scriptLoaded = true; + const scriptTag = this._createScriptTag(entrypointUrl); + if (useCallback) { + // Just inject the script tag, and return nothing; Flutter will call + // `didCreateEngineInitializer` when it's done. + console.debug("Injecting diff --git a/lib/avatar_glow.dart b/lib/avatar_glow.dart deleted file mode 100644 index 2b9ff95..0000000 --- a/lib/avatar_glow.dart +++ /dev/null @@ -1,3 +0,0 @@ -library avatar_glow; - -export 'src/avatar_glow.dart'; diff --git a/lib/src/avatar_glow.dart b/lib/src/avatar_glow.dart deleted file mode 100644 index b3f0366..0000000 --- a/lib/src/avatar_glow.dart +++ /dev/null @@ -1,285 +0,0 @@ -import 'dart:math' as math; - -import 'package:flutter/foundation.dart'; -import 'package:flutter/material.dart'; - -/// A widget that adds a glowing effect around its child. -class AvatarGlow extends StatefulWidget { - /// Creates an [AvatarGlow] widget. - const AvatarGlow({ - Key? key, - required this.child, - this.glowCount = 2, - this.glowColor = Colors.white, - this.glowShape = BoxShape.circle, - this.glowBorderRadius, - this.duration = const Duration(seconds: 2), - this.startDelay, - this.animate = true, - this.repeat = true, - this.curve = Curves.fastOutSlowIn, - this.glowRadiusFactor = 0.7, - }) : assert( - glowShape != BoxShape.circle || glowBorderRadius == null, - 'Cannot specify a border radius if the shape is a circle.', - ), - super(key: key); - - /// The child widget to display inside the glowing effect. - final Widget child; - - /// The number of glowing effects to show around the child. - final int glowCount; - - /// The color of the glow effect. - final Color glowColor; - - /// The shape of the glow effect. - final BoxShape glowShape; - - /// The border radius for the glow effect. - final BorderRadius? glowBorderRadius; - - /// The duration of the glowing animation. - final Duration duration; - - /// The delay before starting the glowing animation. - final Duration? startDelay; - - /// Whether to animate the glowing effect. - final bool animate; - - /// Whether to repeat the glowing animation. - final bool repeat; - - /// The curve for the glowing animation. - final Curve curve; - - /// The factor that determines the size of each glow effect relative to the original size. - final double glowRadiusFactor; - - @override - State createState() => _AvatarGlowState(); -} - -class _AvatarGlowState extends State - with SingleTickerProviderStateMixin { - late final AnimationController _controller; - late final _GlowPainter _painter; - late final Tween _opacityTween = Tween(begin: 0.3, end: 0); - - void _startAnimation() async { - final startDelay = widget.startDelay; - if (startDelay != null) { - await Future.delayed(startDelay); - } - - // Check if the widget is still mounted before starting the animation. - if (mounted) { - if (widget.repeat) { - _controller.repeat(); - } else { - _controller.forward(); - } - } - } - - void _stopAnimation() { - // Wait for the animation to finish before stopping it. - _controller.reverse().then((_) { - // Check if the widget is still mounted before stopping the animation. - if (mounted) { - _controller.stop(); - } - }); - } - - @override - void initState() { - super.initState(); - _controller = AnimationController( - vsync: this, - duration: widget.duration, - ); - - _painter = _GlowPainter(progress: _controller); - - if (widget.animate) { - _startAnimation(); - } - } - - @override - void didUpdateWidget(covariant AvatarGlow oldWidget) { - super.didUpdateWidget(oldWidget); - if (widget.duration != oldWidget.duration) { - _controller.duration = widget.duration; - } - - if (widget.animate != oldWidget.animate) { - if (widget.animate) { - _startAnimation(); - } else { - _stopAnimation(); - } - } - - if (widget.repeat != oldWidget.repeat) { - if (widget.repeat) { - _controller.repeat(); - } else { - _controller.forward(); - } - } - } - - @override - void dispose() { - _controller.dispose(); - super.dispose(); - } - - @override - Widget build(BuildContext context) { - return RepaintBoundary( - child: CustomPaint( - painter: _painter - ..curve = widget.curve - ..opacityTween = _opacityTween - ..glowCount = widget.glowCount - ..glowDecoration = BoxDecoration( - color: widget.glowColor, - shape: widget.glowShape, - borderRadius: widget.glowBorderRadius, - ) - ..glowRadiusFactor = widget.glowRadiusFactor, - child: widget.child, - ), - ); - } -} - -class _GlowPainter extends ChangeNotifier implements CustomPainter { - _GlowPainter({required this.progress}) { - progress.addListener(notifyListeners); - } - - final Animation progress; - - Curve get curve => _curve!; - Curve? _curve; - - set curve(Curve value) { - if (_curve != value) { - _curve = value; - notifyListeners(); - } - } - - Tween get opacityTween => _opacityTween!; - Tween? _opacityTween; - - set opacityTween(Tween value) { - if (_opacityTween != value) { - _opacityTween = value; - notifyListeners(); - } - } - - int get glowCount => _glowCount!; - int? _glowCount; - - set glowCount(int value) { - if (_glowCount != value) { - _glowCount = value; - notifyListeners(); - } - } - - BoxDecoration get glowDecoration => _glowDecoration!; - BoxDecoration? _glowDecoration; - - set glowDecoration(BoxDecoration value) { - if (_glowDecoration != value) { - _glowDecoration = value; - notifyListeners(); - } - } - - double get glowRadiusFactor => _glowRadiusFactor!; - double? _glowRadiusFactor; - - set glowRadiusFactor(double value) { - if (_glowRadiusFactor != value) { - _glowRadiusFactor = value; - notifyListeners(); - } - } - - // We cache the path so that we don't have to recreate it - // every time we paint. - final Path _glowPath = Path(); - - @override - void paint(Canvas canvas, Size size) { - final glowColor = glowDecoration.color!; - final opacity = opacityTween.evaluate(progress); - - final paint = Paint() - ..color = glowColor.withOpacity(opacity) - ..style = PaintingStyle.fill; - - final glowSize = math.min(size.width, size.height); - final glowRadius = glowSize / 2; - - final currentProgress = curve.transform(progress.value); - - // Cache the path and reuse it for each glow. - _glowPath.reset(); - - // We need to draw the glows from the smallest to the largest. - for (int i = 1; i <= glowCount; i++) { - final currentRadius = - glowRadius + glowRadius * glowRadiusFactor * i * currentProgress; - - final currentRect = Rect.fromCircle( - center: size.center(Offset.zero), - radius: currentRadius, - ); - - _addGlowPath(currentRect); - canvas.drawPath(_glowPath, paint); - } - } - - void _addGlowPath(Rect glowRect) { - _glowPath.addPath( - glowDecoration.getClipPath( - glowRect, - TextDirection.ltr, - ), - Offset.zero, - ); - } - - @override - void dispose() { - progress.removeListener(notifyListeners); - super.dispose(); - } - - @override - bool shouldRepaint(covariant CustomPainter oldDelegate) => false; - - @override - bool? hitTest(Offset position) => null; - - @override - SemanticsBuilderCallback? get semanticsBuilder => null; - - @override - bool shouldRebuildSemantics(covariant CustomPainter oldDelegate) => false; - - @override - String toString() => describeIdentity(this); -} diff --git a/main.dart.js b/main.dart.js new file mode 100644 index 0000000..645a486 --- /dev/null +++ b/main.dart.js @@ -0,0 +1,68478 @@ +(function dartProgram(){function copyProperties(a,b){var s=Object.keys(a) +for(var r=0;r=0)return true +if(typeof version=="function"&&version.length==0){var q=version() +if(/^\d+\.\d+\.\d+\.\d+$/.test(q))return true}}catch(p){}return false}() +function inherit(a,b){a.prototype.constructor=a +a.prototype["$i"+a.name]=a +if(b!=null){if(z){Object.setPrototypeOf(a.prototype,b.prototype) +return}var s=Object.create(b.prototype) +copyProperties(a.prototype,s) +a.prototype=s}}function inheritMany(a,b){for(var s=0;s2)return B.a4 +return B.aE}else if(B.d.q(s.toLowerCase(),"iphone")||B.d.q(s.toLowerCase(),"ipad")||B.d.q(s.toLowerCase(),"ipod"))return B.a4 +else if(B.d.q(r,"Android"))return B.e4 +else if(B.d.c3(s,"Linux"))return B.pc +else if(B.d.c3(s,"Win"))return B.pd +else return B.Ef}, +arE(){var s=$.cH() +return J.dq(B.hp.a,s)}, +arF(){var s=$.cH() +return s===B.a4&&B.d.q(self.window.navigator.userAgent,"OS 15_")}, +kw(){var s,r=A.pE(1,1) +if(A.ff(r,"webgl2",null)!=null){s=$.cH() +if(s===B.a4)return 1 +return 2}if(A.ff(r,"webgl",null)!=null)return 1 +return-1}, +a3(){return $.b3.aw()}, +bL(a){return a.BlendMode}, +aaH(a){return a.PaintStyle}, +a7s(a){return a.StrokeCap}, +a7t(a){return a.StrokeJoin}, +ON(a){return a.BlurStyle}, +OP(a){return a.TileMode}, +aaG(a){return a.FillType}, +a7r(a){return a.ClipOp}, +qe(a){return a.RectHeightStyle}, +aaI(a){return a.RectWidthStyle}, +qf(a){return a.TextAlign}, +OO(a){return a.TextHeightBehavior}, +aaK(a){return a.TextDirection}, +jj(a){return a.FontWeight}, +aiX(a){return a.ParagraphBuilder}, +zj(a){return a.DecorationStyle}, +aaJ(a){return a.TextBaseline}, +acW(a){return a.Intersect}, +YT(){return new globalThis.window.flutterCanvasKit.Paint()}, +an4(a,b){return a.setColorInt(b)}, +ag0(a){var s,r,q,p=new Float32Array(16) +for(s=0;s<4;++s)for(r=s*4,q=0;q<4;++q)p[q*4+s]=a[r+q] +return p}, +ag1(a){var s,r,q,p=new Float32Array(9) +for(s=a.length,r=0;r<9;++r){q=B.jP[r] +if(q>>16&255)/255 +s[1]=(r>>>8&255)/255 +s[2]=(r&255)/255 +s[3]=(r>>>24&255)/255 +return s}, +d7(a){var s=new Float32Array(4) +s[0]=a.a +s[1]=a.b +s[2]=a.c +s[3]=a.d +return s}, +arl(a){return new A.C(a[0],a[1],a[2],a[3])}, +kJ(a){var s=new Float32Array(12) +s[0]=a.a +s[1]=a.b +s[2]=a.c +s[3]=a.d +s[4]=a.e +s[5]=a.f +s[6]=a.r +s[7]=a.w +s[8]=a.x +s[9]=a.y +s[10]=a.z +s[11]=a.Q +return s}, +asf(a){var s,r=a.length,q=new Uint32Array(r) +for(s=0;s"))}, +aqC(a,b){return b+a}, +Ns(){var s=0,r=A.Y(t.e),q,p,o +var $async$Ns=A.Z(function(a,b){if(a===1)return A.V(b,r) +while(true)switch(s){case 0:s=3 +return A.a1(A.a5p(A.ap0()),$async$Ns) +case 3:p=t.e +s=4 +return A.a1(A.fW(self.window.CanvasKitInit(p.a({locateFile:A.aN(A.apo())})),p),$async$Ns) +case 4:o=b +if(A.acX(o.ParagraphBuilder)&&self.Intl.v8BreakIterator==null)throw A.d(A.bV("The CanvasKit variant you are using only works on Chromium browsers. Please use a different CanvasKit variant, or use a Chromium browser.")) +q=o +s=1 +break +case 1:return A.W(q,r)}}) +return A.X($async$Ns,r)}, +a5p(a){var s=0,r=A.Y(t.H),q,p,o,n +var $async$a5p=A.Z(function(b,c){if(b===1)return A.V(c,r) +while(true)switch(s){case 0:p=new A.db(a,a.gp(a)),o=A.m(p).c +case 3:if(!p.t()){s=4 +break}n=p.d +s=5 +return A.a1(A.api(n==null?o.a(n):n),$async$a5p) +case 5:if(c){s=1 +break}s=3 +break +case 4:throw A.d(A.bV("Failed to download any of the following CanvasKit URLs: "+a.j(0))) +case 1:return A.W(q,r)}}) +return A.X($async$a5p,r)}, +api(a){var s,r,q,p,o,n=A.aP(self.document,"script") +n.src=A.aqZ(a) +s=new A.ai($.ab,t.aO) +r=new A.bp(s,t.wY) +q=A.b_("loadCallback") +p=A.b_("errorCallback") +o=t.e +q.sbH(o.a(A.aN(new A.a5o(n,r)))) +p.sbH(o.a(A.aN(new A.a5n(n,r)))) +A.bI(n,"load",q.ap(),null) +A.bI(n,"error",p.ap(),null) +A.arT(n) +self.document.head.appendChild(n) +return s}, +Ue(a){var s=new A.rY(a) +s.h_(null,t.e) +return s}, +aj7(a){return new A.zN(a)}, +aqR(a){switch(0){case 0:return new A.zr(a.a,a.b)}}, +ac3(a){var s=null +return new A.ft(B.E0,s,s,s,a,s)}, +akn(){var s=t.Fs +return new A.AW(A.a([],s),A.a([],s))}, +ar6(a,b){var s,r,q,p,o +if(a.length===0||b.length===0)return null +s=new A.a6f(a,b) +r=new A.a6e(a,b) +q=B.b.ka(a,B.b.gG(b)) +p=B.b.yi(a,B.b.gO(b)) +o=q!==-1 +if(o&&p!==-1)if(q<=a.length-p)return s.$1(q) +else return r.$1(p) +else if(o)return s.$1(q) +else if(p!==-1)return r.$1(p) +else return null}, +akI(){var s,r,q,p,o,n,m,l,k=t.Ez,j=A.y(k,t.os) +for(s=$.mB(),r=s.length,q=0;q"),p=p.a,n=0;ng){B.b.L(a0) +a0.push(f) +g=c}else if(c===g)a0.push(f)}if(g===0)break +j.a=B.b.gG(a0) +if(a0.length>1)if(B.b.HC(a0,new A.a6h())){if(!o||!n||!m||l){if(B.b.q(a0,$.mA()))j.a=$.mA()}else if(!p||!k||a1){if(B.b.q(a0,$.a79()))j.a=$.a79()}else if(q){if(B.b.q(a0,$.a76()))j.a=$.a76()}else if(r){if(B.b.q(a0,$.a77()))j.a=$.a77()}else if(s){if(B.b.q(a0,$.a78()))j.a=$.a78()}else if(B.b.q(a0,$.mA()))j.a=$.mA()}else if(B.b.q(a0,$.aa6()))j.a=$.aa6() +else if(B.b.q(a0,$.mA()))j.a=$.mA() +a2.RI(new A.a6i(j),!0) +a.B(0,j.a)}return a}, +acz(a,b,c){var s=A.an2(c),r=A.a([0],t.t) +A.x(s,"getGlyphBounds",[r,null,null]) +return new A.o5(b,a,c)}, +as_(a,b,c){var s,r="encoded image bytes" +if($.ahY()&&b==null&&c==null)return A.P5(a,r) +else{s=new A.zq(r,a,b,c) +s.h_(null,t.e) +return s}}, +nn(a){return new A.BR(a)}, +P8(a,b){var s=new A.kV($,b),r=new A.Ae(A.az(t.mD),t.h4),q=new A.mf("SkImage") +q.B4(r,a,"SkImage") +r.a!==$&&A.dj() +r.a=q +s.b=r +s.D8() +return s}, +aj6(a,b,c){return new A.ql(a,b,c,new A.pJ(new A.P3()))}, +P5(a,b){var s=0,r=A.Y(t.kh),q,p,o +var $async$P5=A.Z(function(c,d){if(c===1)return A.V(d,r) +while(true)switch(s){case 0:o=A.ar3(a) +if(o==null)throw A.d(A.nn("Failed to detect image file format using the file header.\nFile header was "+(!B.Q.gS(a)?"["+A.aqB(B.Q.bx(a,0,Math.min(10,a.length)))+"]":"empty")+".\nImage source: "+b)) +p=A.aj6(o,a,b) +s=3 +return A.a1(p.kJ(),$async$P5) +case 3:q=p +s=1 +break +case 1:return A.W(q,r)}}) +return A.X($async$P5,r)}, +ar3(a){var s,r,q,p,o,n,m +$label0$0:for(s=a.length,r=0;r<6;++r){q=B.Ak[r] +p=q.a +o=p.length +if(s=s)return!1 +if(a[n]!==B.d.a8(o,p))continue $label0$0}return!0}return!1}, +al1(a,b){var s,r=A.a([],b.h("v>")) +a.P(0,new A.To(r,b)) +B.b.ei(r,new A.Tp(b)) +s=new A.Tr(b).$1(r) +s.toString +new A.Tq(b).$1(s) +return new A.BX(s,b.h("BX<0>"))}, +F(a,b,c){return new A.ir(a,b,c)}, +aqj(a){var s,r,q=new A.UU(0),p=A.a([],t.wU) +for(s=a.length;q.a>>16&255)/255 +s[1]=(a.gn(a)>>>8&255)/255 +s[2]=(a.gn(a)&255)/255 +s[3]=(a.gn(a)>>>24&255)/255 +return s}, +afm(a,b,c,d,e,f){var s,r=e?5:4,q=A.U(B.c.bd((c.gn(c)>>>24&255)*0.039),c.gn(c)>>>16&255,c.gn(c)>>>8&255,c.gn(c)&255),p=A.U(B.c.bd((c.gn(c)>>>24&255)*0.25),c.gn(c)>>>16&255,c.gn(c)>>>8&255,c.gn(c)&255),o=t.e.a({ambient:A.pG(q),spot:A.pG(p)}),n=$.b3.aw().computeTonalColors(o),m=b.gaa(),l=new Float32Array(3) +l[2]=f*d +s=new Float32Array(3) +s[0]=0 +s[1]=-450 +s[2]=f*600 +A.x(a,"drawShadow",[m,l,s,f*1.1,n.ambient,n.spot,r])}, +acf(){var s=$.by() +return s===B.aP||self.window.navigator.clipboard==null?new A.Ri():new A.Pk()}, +a69(){var s=$.cs +return s==null?$.cs=A.fi(self.window.flutterConfiguration):s}, +fi(a){var s=new A.Rz() +if(a!=null){s.a=!0 +s.b=a}return s}, +ak7(a){return a.console}, +ab7(a){return a.navigator}, +ab8(a,b){return a.matchMedia(b)}, +a7K(a,b){return a.getComputedStyle(b)}, +ak8(a){return a.trustedTypes}, +ajZ(a){return new A.Ql(a)}, +ak5(a){return a.userAgent}, +ak4(a){var s=a.languages +return s==null?null:J.yI(s,new A.Qo(),t.N).cK(0)}, +aP(a,b){return a.createElement(b)}, +bI(a,b,c,d){if(c!=null)if(d==null)a.addEventListener(b,c) +else a.addEventListener(b,c,d)}, +dw(a,b,c,d){if(c!=null)if(d==null)a.removeEventListener(b,c) +else a.removeEventListener(b,c,d)}, +ak6(a,b){return a.appendChild(b)}, +ab5(a,b){a.textContent=b +return b}, +aqS(a){return A.aP(self.document,a)}, +ak0(a){return a.tagName}, +ab_(a){return a.style}, +aaZ(a,b){var s=a.getAttribute(b) +return s==null?null:s}, +ab0(a,b,c){var s=A.a6(c) +return A.x(a,"setAttribute",[b,s==null?t.K.a(s):s])}, +ak_(a){var s +for(;a.firstChild!=null;){s=a.firstChild +s.toString +a.removeChild(s)}}, +ajV(a,b){return A.n(a,"width",b)}, +ajQ(a,b){return A.n(a,"height",b)}, +aaX(a,b){return A.n(a,"position",b)}, +ajT(a,b){return A.n(a,"top",b)}, +ajR(a,b){return A.n(a,"left",b)}, +ajU(a,b){return A.n(a,"visibility",b)}, +ajS(a,b){return A.n(a,"overflow",b)}, +n(a,b,c){a.setProperty(b,c,"")}, +ab1(a,b){a.src=b +return b}, +pE(a,b){var s +$.afj=$.afj+1 +s=A.aP(self.window.document,"canvas") +if(b!=null)A.n9(s,b) +if(a!=null)A.n8(s,a) +return s}, +n9(a,b){a.width=b +return b}, +n8(a,b){a.height=b +return b}, +ff(a,b,c){var s +if(c==null)return a.getContext(b) +else{s=A.a6(c) +return A.x(a,"getContext",[b,s==null?t.K.a(s):s])}}, +ajX(a){var s=A.ff(a,"2d",null) +s.toString +return t.e.a(s)}, +ajW(a,b){var s +if(b===1){s=A.ff(a,"webgl",null) +s.toString +return t.e.a(s)}s=A.ff(a,"webgl2",null) +s.toString +return t.e.a(s)}, +Qj(a,b){var s=b==null?null:b +a.fillStyle=s +return s}, +aaY(a,b){a.lineWidth=b +return b}, +Qk(a,b){var s=b==null?null:b +a.strokeStyle=s +return s}, +Qi(a,b){if(b==null)a.fill() +else A.x(a,"fill",[b])}, +ajY(a,b,c,d){a.fillText(b,c,d)}, +Qh(a,b){if(b==null)a.clip() +else A.x(a,"clip",[b])}, +a7G(a,b){a.filter=b +return b}, +a7I(a,b){a.shadowOffsetX=b +return b}, +a7J(a,b){a.shadowOffsetY=b +return b}, +a7H(a,b){var s=b==null?null:b +a.shadowColor=s +return s}, +pF(a){return A.art(a)}, +art(a){var s=0,r=A.Y(t.fF),q,p=2,o,n,m,l,k +var $async$pF=A.Z(function(b,c){if(b===1){o=c +s=p}while(true)switch(s){case 0:p=4 +s=7 +return A.a1(A.fW(self.window.fetch(a),t.e),$async$pF) +case 7:n=c +q=new A.BP(a,n) +s=1 +break +p=2 +s=6 +break +case 4:p=3 +k=o +m=A.ah(k) +throw A.d(new A.BM(a,m)) +s=6 +break +case 3:s=2 +break +case 6:case 1:return A.W(q,r) +case 2:return A.V(o,r)}}) +return A.X($async$pF,r)}, +Nw(a){var s=0,r=A.Y(t.l2),q +var $async$Nw=A.Z(function(b,c){if(b===1)return A.V(c,r) +while(true)switch(s){case 0:s=3 +return A.a1(A.pF(a),$async$Nw) +case 3:q=c.gyX().kZ() +s=1 +break +case 1:return A.W(q,r)}}) +return A.X($async$Nw,r)}, +BO(a){var s=0,r=A.Y(t.uo),q,p +var $async$BO=A.Z(function(b,c){if(b===1)return A.V(c,r) +while(true)switch(s){case 0:p=A +s=3 +return A.a1(a.gyX().kZ(),$async$BO) +case 3:q=p.cB(c,0,null) +s=1 +break +case 1:return A.W(q,r)}}) +return A.X($async$BO,r)}, +aqT(a,b,c){var s +if(c==null)return A.kB(globalThis.FontFace,[a,b]) +else{s=A.a6(c) +if(s==null)s=t.K.a(s) +return A.kB(globalThis.FontFace,[a,b,s])}}, +ak1(a){return new A.Qm(a)}, +ab4(a,b){var s=b==null?null:b +a.value=s +return s}, +ak3(a){return a.matches}, +ak2(a,b){return a.addListener(b)}, +Qn(a,b){a.type=b +return b}, +ab3(a,b){var s=b==null?null:b +a.value=s +return s}, +ab2(a,b){a.disabled=b +return b}, +ab6(a,b,c){var s +if(c==null)return a.getContext(b) +else{s=A.a6(c) +return A.x(a,"getContext",[b,s==null?t.K.a(s):s])}}, +h9(a,b,c){return a.insertRule(b,c)}, +bT(a,b,c){var s=t.e.a(A.aN(c)) +a.addEventListener(b,s) +return new A.AP(b,a,s)}, +aqU(a){var s=A.aN(new A.a6a(a)) +return A.kB(globalThis.ResizeObserver,[s])}, +aqZ(a){if(self.window.trustedTypes!=null)return $.ahW().createScriptURL(a) +return a}, +aff(a){var s +if(self.Intl.Segmenter==null)throw A.d(A.c9("Intl.Segmenter() is not supported.")) +s=t.N +s=A.a6(A.aL(["granularity",a],s,s)) +if(s==null)s=t.K.a(s) +return A.kB(globalThis.Intl.Segmenter,[[],s])}, +afi(){if(self.Intl.v8BreakIterator==null)throw A.d(A.c9("v8BreakIterator is not supported.")) +var s=A.a6(B.Dq) +if(s==null)s=t.K.a(s) +return A.kB(globalThis.Intl.v8BreakIterator,[[],s])}, +akH(a){switch(a){case"DeviceOrientation.portraitUp":return"portrait-primary" +case"DeviceOrientation.portraitDown":return"portrait-secondary" +case"DeviceOrientation.landscapeLeft":return"landscape-primary" +case"DeviceOrientation.landscapeRight":return"landscape-secondary" +default:return null}}, +arh(){var s=$.ee +s.toString +return s}, +NE(a,b){var s +if(b.k(0,B.h))return a +s=new A.bk(new Float32Array(16)) +s.az(a) +s.ae(0,b.a,b.b) +return s}, +afl(a,b,c){var s=a.a2A() +if(c!=null)A.a9K(s,A.NE(c,b).a) +return s}, +a9J(){var s=0,r=A.Y(t.z) +var $async$a9J=A.Z(function(a,b){if(a===1)return A.V(b,r) +while(true)switch(s){case 0:if(!$.a99){$.a99=!0 +A.x(self.window,"requestAnimationFrame",[A.aN(new A.a6S())])}return A.W(null,r)}}) +return A.X($async$a9J,r)}, +akS(a,b){var s,r,q,p,o +if(a.attachShadow!=null){s=new A.ES() +r=A.a6(A.aL(["mode","open","delegatesFocus",!1],t.N,t.z)) +r=A.x(a,"attachShadow",[r==null?t.K.a(r):r]) +s.a=r +q=A.aP(self.document,"style") +q.id="flt-internals-stylesheet" +r.appendChild(q) +r=q.sheet +r.toString +p=$.by() +if(p!==B.ax)p=p===B.B +else p=!0 +A.af1(r,"",b,p) +return s}else{s=new A.AU() +o=A.aP(self.document,"style") +o.id="flt-internals-stylesheet" +a.appendChild(o) +r=o.sheet +r.toString +p=$.by() +if(p!==B.ax)p=p===B.B +else p=!0 +A.af1(r,"flt-glass-pane",b,p) +p=A.aP(self.document,"flt-element-host-node") +s.a=p +a.appendChild(p) +return s}}, +af1(a,b,c,d){var s,r,q,p=" "+b,o=t.e,n=t.sM,m=n.h("j.E") +A.h9(a,p+" flt-scene-host {\n color: red;\n font: "+c+";\n }\n ",J.bh(A.bt(new A.d5(a.cssRules,n),m,o).a)) +r=$.by() +if(r===B.B)A.h9(a," "+b+" * {\n -webkit-tap-highlight-color: transparent;\n }\n ",J.bh(A.bt(new A.d5(a.cssRules,n),m,o).a)) +if(r===B.aP)A.h9(a," "+b+" flt-paragraph,\n "+b+" flt-span {\n line-height: 100%;\n }\n ",J.bh(A.bt(new A.d5(a.cssRules,n),m,o).a)) +A.h9(a,p+" flt-semantics input[type=range] {\n appearance: none;\n -webkit-appearance: none;\n width: 100%;\n position: absolute;\n border: none;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n }\n ",J.bh(A.bt(new A.d5(a.cssRules,n),m,o).a)) +if(r===B.B)A.h9(a," "+b+" flt-semantics input[type=range]::-webkit-slider-thumb {\n -webkit-appearance: none;\n }\n ",J.bh(A.bt(new A.d5(a.cssRules,n),m,o).a)) +A.h9(a,p+" input::selection {\n background-color: transparent;\n }\n ",J.bh(A.bt(new A.d5(a.cssRules,n),m,o).a)) +A.h9(a,p+" textarea::selection {\n background-color: transparent;\n }\n ",J.bh(A.bt(new A.d5(a.cssRules,n),m,o).a)) +A.h9(a,p+" flt-semantics input,\n "+b+" flt-semantics textarea,\n "+b+' flt-semantics [contentEditable="true"] {\n caret-color: transparent;\n }\n ',J.bh(A.bt(new A.d5(a.cssRules,n),m,o).a)) +A.h9(a,p+" .flt-text-editing::placeholder {\n opacity: 0;\n }\n ",J.bh(A.bt(new A.d5(a.cssRules,n),m,o).a)) +if(r!==B.ax)p=r===B.B +else p=!0 +if(p)A.h9(a," "+b+" .transparentTextEditing:-webkit-autofill,\n "+b+" .transparentTextEditing:-webkit-autofill:hover,\n "+b+" .transparentTextEditing:-webkit-autofill:focus,\n "+b+" .transparentTextEditing:-webkit-autofill:active {\n opacity: 0 !important;\n }\n ",J.bh(A.bt(new A.d5(a.cssRules,n),m,o).a)) +if(B.d.q(self.window.navigator.userAgent,"Edg/"))try{A.h9(a," "+b+" input::-ms-reveal {\n display: none;\n }\n ",J.bh(A.bt(new A.d5(a.cssRules,n),m,o).a))}catch(q){p=A.ah(q) +if(o.b(p)){s=p +self.window.console.warn(J.dr(s))}else throw q}}, +aiJ(a,b,c){var s,r,q,p,o,n,m=A.aP(self.document,"flt-canvas"),l=A.a([],t.J),k=self.window.devicePixelRatio +if(k===0)k=1 +s=a.a +r=a.c-s +q=A.Ov(r) +p=a.b +o=a.d-p +n=A.Ou(o) +o=new A.OS(A.Ov(r),A.Ou(o),c,A.a([],t.cZ),A.cY()) +k=new A.i2(a,m,o,l,q,n,k,c,b) +A.n(m.style,"position","absolute") +k.z=B.c.cJ(s)-1 +k.Q=B.c.cJ(p)-1 +k.Ft() +o.z=m +k.EA() +return k}, +Ov(a){var s=self.window.devicePixelRatio +if(s===0)s=1 +return B.c.cr((a+1)*s)+2}, +Ou(a){var s=self.window.devicePixelRatio +if(s===0)s=1 +return B.c.cr((a+1)*s)+2}, +aiK(a){a.remove()}, +a64(a){if(a==null)return null +switch(a.a){case 3:return"source-over" +case 5:return"source-in" +case 7:return"source-out" +case 9:return"source-atop" +case 4:return"destination-over" +case 6:return"destination-in" +case 8:return"destination-out" +case 10:return"destination-atop" +case 12:return"lighten" +case 1:return"copy" +case 11:return"xor" +case 24:case 13:return"multiply" +case 14:return"screen" +case 15:return"overlay" +case 16:return"darken" +case 17:return"lighten" +case 18:return"color-dodge" +case 19:return"color-burn" +case 20:return"hard-light" +case 21:return"soft-light" +case 22:return"difference" +case 23:return"exclusion" +case 25:return"hue" +case 26:return"saturation" +case 27:return"color" +case 28:return"luminosity" +default:throw A.d(A.c9("Flutter Web does not support the blend mode: "+a.j(0)))}}, +af5(a){switch(a.a){case 0:return B.GQ +case 3:return B.GR +case 5:return B.GS +case 7:return B.GU +case 9:return B.GV +case 4:return B.GW +case 6:return B.GX +case 8:return B.GY +case 10:return B.GZ +case 12:return B.H_ +case 1:return B.H0 +case 11:return B.GT +case 24:case 13:return B.H9 +case 14:return B.Ha +case 15:return B.Hd +case 16:return B.Hb +case 17:return B.Hc +case 18:return B.He +case 19:return B.Hf +case 20:return B.Hg +case 21:return B.H2 +case 22:return B.H3 +case 23:return B.H4 +case 25:return B.H5 +case 26:return B.H6 +case 27:return B.H7 +case 28:return B.H8 +default:return B.H1}}, +as2(a){if(a==null)return null +switch(a.a){case 0:return"butt" +case 1:return"round" +case 2:default:return"square"}}, +as3(a){switch(a.a){case 1:return"round" +case 2:return"bevel" +case 0:default:return"miter"}}, +a96(a4,a5,a6,a7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1=t.J,a2=A.a([],a1),a3=a4.length +for(s=null,r=null,q=0;q0){q=p/2 +m-=q +j-=q +s=Math.max(0,s-p) +r=Math.max(0,r-p)}if(m!==o||j!==l||s!==n||r!==k)return new A.C(m,j,m+s,j+r) +return a}, +yo(a,b,c,d){var s,r,q,p,o,n,m,l,k,j,i=A.aP(self.document,c),h=b.b===B.R,g=b.c +if(g==null)g=0 +if(d.o6(0)){s=a.a +r=a.b +q="translate("+A.h(s)+"px, "+A.h(r)+"px)"}else{s=new Float32Array(16) +p=new A.bk(s) +p.az(d) +r=a.a +o=a.b +p.ae(0,r,o) +q=A.f6(s) +s=r +r=o}o=i.style +A.n(o,"position","absolute") +A.n(o,"transform-origin","0 0 0") +A.n(o,"transform",q) +n=A.yp(b.r) +n.toString +m=b.x +if(m!=null){l=m.b +m=$.by() +if(m===B.B&&!h){A.n(o,"box-shadow","0px 0px "+A.h(l*2)+"px "+n) +n=b.r +n=A.cT(new A.A(((B.c.bd((1-Math.min(Math.sqrt(l)/6.283185307179586,1))*(n>>>24&255))&255)<<24|n&16777215)>>>0)) +n.toString +k=n}else{A.n(o,"filter","blur("+A.h(l)+"px)") +k=n}}else k=n +A.n(o,"width",A.h(a.c-s)+"px") +A.n(o,"height",A.h(a.d-r)+"px") +if(h)A.n(o,"border",A.j0(g)+" solid "+k) +else{A.n(o,"background-color",k) +j=A.apA(b.w,a) +A.n(o,"background-image",j!==""?"url('"+j+"'":"")}return i}, +apA(a,b){var s +if(a!=null){if(a instanceof A.r0){s=a.e.a.src +if(s==null)s=null +return s==null?"":s}if(a instanceof A.r_)return A.bW(a.GN(b,1,!0))}return""}, +af2(a,b){var s,r,q=b.e,p=b.r +if(q===p){s=b.z +if(q===s){r=b.x +s=q===r&&q===b.f&&p===b.w&&s===b.Q&&r===b.y}else s=!1}else s=!1 +if(s){A.n(a,"border-radius",A.j0(b.z)) +return}A.n(a,"border-top-left-radius",A.j0(q)+" "+A.j0(b.f)) +A.n(a,"border-top-right-radius",A.j0(p)+" "+A.j0(b.w)) +A.n(a,"border-bottom-left-radius",A.j0(b.z)+" "+A.j0(b.Q)) +A.n(a,"border-bottom-right-radius",A.j0(b.x)+" "+A.j0(b.y))}, +j0(a){return B.c.M(a===0?1:a,3)+"px"}, +a7y(a,b,c){var s,r,q,p,o,n,m +if(0===b){c.push(new A.q(a.c,a.d)) +c.push(new A.q(a.e,a.f)) +return}s=new A.GQ() +a.BG(s) +r=s.a +r.toString +q=s.b +q.toString +p=a.b +o=a.f +if(A.cO(p,a.d,o)){n=r.f +if(!A.cO(p,n,o))m=r.f=q.b=Math.abs(n-p)0){s=b[7] +b[9]=s +b[5]=s +if(o===2){s=b[13] +b[15]=s +b[11]=s}}return o}, +ap4(b0,b1,b2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9=b0.length +if(0===a9)for(s=0;s<8;++s)b2[s]=b1[s] +else{r=b0[0] +for(q=a9-1,p=0,s=0;s0))return 0 +s=1 +r=0}q=h-i +p=g-h +o=f-g +do{n=(r+s)/2 +m=i+q*n +l=h+p*n +k=m+(l-m)*n +j=k+(l+(g+o*n-l)*n-k)*n +if(j===0)return n +if(j<0)s=n +else r=n}while(Math.abs(r-s)>0.0000152587890625) +return(s+r)/2}, +afo(a,b,c,d,e){return(((d+3*(b-c)-a)*e+3*(c-b-b+a))*e+3*(b-a))*e+a}, +a8D(){var s=new A.m5(A.a8h(),B.aF) +s.E7() +return s}, +a5f(a,b,c,d){var s=a+b +if(s<=c)return d +return Math.min(c/s,d)}, +acg(a,b){var s=new A.Vw(a,!0,a.w) +if(a.Q)a.uG() +if(!a.as)s.z=a.w +return s}, +a8h(){var s=new Float32Array(16) +s=new A.nX(s,new Uint8Array(8)) +s.e=s.c=8 +s.CW=172 +return s}, +alO(a,b,c){var s,r,q=a.d,p=a.c,o=new Float32Array(p*2),n=a.f,m=q*2 +for(s=0;s0?1:0 +return s}, +NG(a,b){var s +if(a<0){a=-a +b=-b}if(b===0||a===0||a>=b)return null +s=a/b +if(isNaN(s))return null +if(s===0)return null +return s}, +arH(a){var s,r,q=a.e,p=a.r +if(q+p!==a.c-a.a)return!1 +s=a.f +r=a.w +if(s+r!==a.d-a.b)return!1 +if(q!==a.z||p!==a.x||s!==a.Q||r!==a.y)return!1 +return!0}, +acZ(a,b,c,d,e,f){return new A.YU(e-2*c+a,f-2*d+b,2*(c-a),2*(d-b),a,b)}, +Vy(a,b,c,d,e,f){if(d===f)return A.cO(c,a,e)&&a!==e +else return a===c&&b===d}, +alP(a){var s,r,q,p,o=a[0],n=a[1],m=a[2],l=a[3],k=a[4],j=a[5],i=n-l,h=A.NG(i,i-l+j) +if(h!=null){s=o+h*(m-o) +r=n+h*(l-n) +q=m+h*(k-m) +p=l+h*(j-l) +a[2]=s +a[3]=r +a[4]=s+h*(q-s) +a[5]=r+h*(p-r) +a[6]=q +a[7]=p +a[8]=k +a[9]=j +return 1}a[3]=Math.abs(i)=q}, +asa(a,b,c,d){var s,r,q,p,o=a[1],n=a[3] +if(!A.cO(o,c,n))return +s=a[0] +r=a[2] +if(!A.cO(s,b,r))return +q=r-s +p=n-o +if(!(Math.abs((b-s)*p-q*(c-o))<0.000244140625))return +d.push(new A.q(q,p))}, +asb(a,b,c,d){var s,r,q,p,o,n,m,l,k,j,i=a[1],h=a[3],g=a[5] +if(!A.cO(i,c,h)&&!A.cO(h,c,g))return +s=a[0] +r=a[2] +q=a[4] +if(!A.cO(s,b,r)&&!A.cO(r,b,q))return +p=new A.iy() +o=p.iY(i-2*h+g,2*(h-i),i-c) +for(n=q-2*r+s,m=2*(r-s),l=0;l30)B.b.fc($.j3,0).d.m()}else a.d.m()}}, +VC(a,b){if(a<=0)return b*0.1 +else return Math.min(Math.max(b*0.5,a*10),b)}, +apa(a7,a8,a9){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6 +if(a7!=null){s=a7.a +s=s[15]===1&&s[0]===1&&s[1]===0&&s[2]===0&&s[3]===0&&s[4]===0&&s[5]===1&&s[6]===0&&s[7]===0&&s[8]===0&&s[9]===0&&s[10]===1&&s[11]===0}else s=!0 +if(s)return 1 +r=a7.a +s=r[12] +q=r[15] +p=s*q +o=r[13] +n=o*q +m=r[3] +l=m*a8 +k=r[7] +j=k*a9 +i=1/(l+j+q) +h=r[0] +g=h*a8 +f=r[4] +e=f*a9 +d=(g+e+s)*i +c=r[1] +b=c*a8 +a=r[5] +a0=a*a9 +a1=(b+a0+o)*i +a2=Math.min(p,d) +a3=Math.max(p,d) +a4=Math.min(n,a1) +a5=Math.max(n,a1) +i=1/(m*0+j+q) +d=(h*0+e+s)*i +a1=(c*0+a0+o)*i +p=Math.min(a2,d) +a3=Math.max(a3,d) +n=Math.min(a4,a1) +a5=Math.max(a5,a1) +i=1/(l+k*0+q) +d=(g+f*0+s)*i +a1=(b+a*0+o)*i +p=Math.min(p,d) +a3=Math.max(a3,d) +n=Math.min(n,a1) +a6=Math.min((a3-p)/a8,(Math.max(a5,a1)-n)/a9) +if(a6<1e-9||a6===1)return 1 +if(a6>1){a6=Math.min(4,B.c.cr(a6/2)*2) +s=a8*a9 +if(s*a6*a6>4194304&&a6>2)a6=3355443.2/s}else a6=Math.max(2/B.c.cJ(2/a6),0.0001) +return a6}, +pA(a){var s,r=a.a,q=r.x,p=q!=null?0+q.b*2:0 +r=r.c +s=r==null +if((s?0:r)!==0)p+=(s?0:r)*0.70710678118 +return p}, +alJ(a1,a2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0 +if(a2==null)a2=B.zW +s=a1.length +r=B.b.iN(a1,new A.Va()) +q=a2[0]!==0 +p=B.b.gO(a2)!==1 +o=q?s+1:s +if(p)++o +n=o*4 +m=new Float32Array(n) +l=new Float32Array(n) +n=o-1 +k=B.f.cq(n,4) +j=new Float32Array(4*(k+1)) +if(q){k=a1[0].a +m[0]=(k>>>16&255)/255 +m[1]=(k>>>8&255)/255 +m[2]=(k&255)/255 +m[3]=(k>>>24&255)/255 +j[0]=0 +i=4 +h=1}else{i=0 +h=0}for(k=a1.length,g=0;g>>16&255)/255 +i=f+1 +m[f]=(e>>>8&255)/255 +f=i+1 +m[i]=(e&255)/255 +i=f+1 +m[f]=(e>>>24&255)/255}for(k=a2.length,g=0;g>>16&255)/255 +i=f+1 +m[f]=(k>>>8&255)/255 +m[i]=(k&255)/255 +m[i+1]=(k>>>24&255)/255 +j[h]=1}c=4*n +for(b=0;b>>2 +l[b]=(m[b+4]-m[b])/(j[h+1]-j[h])}l[c]=0 +l[c+1]=0 +l[c+2]=0 +l[c+3]=0 +for(b=0;b1)B.b.ei(p,new A.a67()) +for(p=$.a6I,o=p.length,r=0;ry')) +case 1:case 2:case 5:return new A.rV(A.a9Q("8a2@q\u03a9qk1&kq3@q\xc6a\xe6aw2xy2\xa5\xff\u2190\xffz51)s.push(new A.jL(B.b.gG(o),B.b.gO(o))) +else s.push(new A.jL(p,null))}return s}, +apH(a,b){var s=a.eY(b),r=A.ar7(A.bW(s.b)) +switch(s.a){case"setDevicePixelRatio":$.bC().x=r +$.aB().f.$0() +return!0}return!1}, +j6(a,b){if(a==null)return +if(b===$.ab)a.$0() +else b.lW(a)}, +Ny(a,b,c){if(a==null)return +if(b===$.ab)a.$1(c) +else b.zk(a,c)}, +arB(a,b,c,d){if(b===$.ab)a.$2(c,d) +else b.lW(new A.a6z(a,c,d))}, +kG(a,b,c,d,e){if(a==null)return +if(b===$.ab)a.$3(c,d,e) +else b.lW(new A.a6A(a,c,d,e))}, +arb(){var s,r,q,p=self.document.documentElement +p.toString +if("computedStyleMap" in p){s=p.computedStyleMap() +if(s!=null){r=s.get("font-size") +q=r!=null?r.value:null}else q=null}else q=null +if(q==null)q=A.afO(A.a7K(self.window,p).getPropertyValue("font-size")) +return(q==null?16:q)/16}, +alS(a,b,c,d,e,f,g,h){return new A.Dw(a,!1,f,e,h,d,c,g)}, +aqN(a){switch(a){case 0:return 1 +case 1:return 4 +case 2:return 2 +default:return B.f.Lr(1,a)}}, +mk(a){var s=B.c.K(a) +return A.c4(B.c.K((a-s)*1000),s)}, +a9r(a,b){var s,r,q,p +if(!J.e(a.target,b)){s=a.target.getBoundingClientRect() +r=b.getBoundingClientRect() +q=s.y +p=r.y +s=s.x +r=r.x +return new A.q(a.offsetX+(s-r),a.offsetY+(q-p))}s=$.cW +if((s==null?$.cW=A.id():s).w&&a.offsetX===0&&a.offsetY===0)return A.ap9(a,b) +return new A.q(a.offsetX,a.offsetY)}, +ap9(a,b){var s,r,q=a.clientX,p=a.clientY +for(s=b;s.offsetParent!=null;s=r){q-=s.offsetLeft-s.scrollLeft +p-=s.offsetTop-s.scrollTop +r=s.offsetParent +r.toString}return new A.q(q,p)}, +a6T(a,b){var s=b.$0() +return s}, +ark(){if($.aB().ay==null)return +$.a9m=B.c.K(self.window.performance.now()*1000)}, +arj(){if($.aB().ay==null)return +$.a95=B.c.K(self.window.performance.now()*1000)}, +aft(){if($.aB().ay==null)return +$.a94=B.c.K(self.window.performance.now()*1000)}, +afv(){if($.aB().ay==null)return +$.a9h=B.c.K(self.window.performance.now()*1000)}, +afu(){var s,r,q=$.aB() +if(q.ay==null)return +s=$.aeQ=B.c.K(self.window.performance.now()*1000) +$.a9a.push(new A.jw(A.a([$.a9m,$.a95,$.a94,$.a9h,s,s,0,0,0,0,1],t.t))) +$.aeQ=$.a9h=$.a94=$.a95=$.a9m=-1 +if(s-$.ahf()>1e5){$.apt=s +r=$.a9a +A.Ny(q.ay,q.ch,r) +$.a9a=A.a([],t.yJ)}}, +aq4(){return B.c.K(self.window.performance.now()*1000)}, +amu(a){var s=new A.Wl(A.y(t.N,t.hz),a) +s.Pq(a) +return s}, +aq3(a){}, +a9w(a,b){return a[b]}, +afO(a){var s=self.window.parseFloat(a) +if(s==null||isNaN(s))return null +return s}, +arR(a){var s,r,q +if("computedStyleMap" in a){s=a.computedStyleMap() +if(s!=null){r=s.get("font-size") +q=r!=null?r.value:null}else q=null}else q=null +return q==null?A.afO(A.a7K(self.window,a).getPropertyValue("font-size")):q}, +asi(a,b){var s,r=self.document.createElement("CANVAS") +if(r==null)return null +try{A.n9(r,a) +A.n8(r,b)}catch(s){return null}return r}, +abn(a){var s,r,q="premultipliedAlpha",p=$.tr +if(p==null?$.tr="OffscreenCanvas" in self.window:p){p=a.a +p.toString +s=t.N +r=A.ab6(p,"webgl2",A.aL([q,!1],s,t.z)) +r.toString +r=new A.BB(r) +$.So.b=A.y(s,t.fS) +r.dy=p +p=r}else{p=a.b +p.toString +s=$.dn +s=(s==null?$.dn=A.kw():s)===1?"webgl":"webgl2" +r=t.N +s=A.ff(p,s,A.aL([q,!1],r,t.z)) +s.toString +s=new A.BB(s) +$.So.b=A.y(r,t.fS) +s.dy=p +p=s}return p}, +aqA(a,b,c){var s,r,q,p="bufferData" +if(c===1){s=a.gob() +A.x(a.a,p,[a.ghn(),b,s])}else{r=new Float32Array(12) +for(q=0;q<12;++q)r[q]=b[q]*c +s=a.gob() +A.x(a.a,p,[a.ghn(),r,s])}}, +ag_(a,b){var s +switch(b.a){case 0:return a.grp() +case 3:return a.grp() +case 2:s=a.at +return s==null?a.at=a.a.MIRRORED_REPEAT:s +case 1:s=a.Q +return s==null?a.Q=a.a.REPEAT:s}}, +a8e(a,b){var s=new A.Ve(a,b),r=$.tr +if(r==null?$.tr="OffscreenCanvas" in self.window:r)s.a=new globalThis.OffscreenCanvas(a,b) +else{r=s.b=A.pE(b,a) +r.className="gl-canvas" +s.Fd(r)}return s}, +arx(){var s=A.aao(B.eQ),r=A.aao(B.eR) +self.document.body.append(s) +self.document.body.append(r) +$.Nf=new A.NR(s,r) +$.hY.push(new A.a6s())}, +aao(a){var s="setAttribute",r=a===B.eR?"assertive":"polite",q=A.aP(self.document,"label"),p=A.a6("ftl-announcement-"+r) +A.x(q,s,["id",p==null?t.K.a(p):p]) +p=q.style +A.n(p,"position","fixed") +A.n(p,"overflow","hidden") +A.n(p,"transform","translate(-99999px, -99999px)") +A.n(p,"width","1px") +A.n(p,"height","1px") +p=A.a6(r) +A.x(q,s,["aria-live",p==null?t.K.a(p):p]) +return q}, +ap2(a){var s=a.a +if((s&256)!==0)return B.MR +else if((s&65536)!==0)return B.MS +else return B.MQ}, +akW(a){var s=new A.ns(A.aP(self.document,"input"),a) +s.Pl(a) +return s}, +akp(a){return new A.QT(a)}, +YA(a){var s=a.style +s.removeProperty("transform-origin") +s.removeProperty("transform") +s=$.cH() +if(s!==B.a4)s=s===B.aE +else s=!0 +if(s){s=a.style +A.n(s,"top","0px") +A.n(s,"left","0px")}else{s=a.style +s.removeProperty("top") +s.removeProperty("left")}}, +id(){var s=t.gI,r=A.a([],t.aZ),q=A.a([],t.u),p=$.cH() +p=J.dq(B.hp.a,p)?new A.PV():new A.Ux() +p=new A.Rd(A.y(t.S,s),A.y(t.lo,s),r,q,new A.Rg(),new A.Yw(p),B.bL,A.a([],t.zu)) +p.Pj() +return p}, +afF(a){var s,r,q,p,o,n,m,l,k=a.length,j=t.t,i=A.a([],j),h=A.a([0],j) +for(s=0,r=0;r=h.length)h.push(r) +else h[o]=r +if(o>s)s=o}m=A.aU(s,0,!1,t.S) +l=h[s] +for(r=s-1;r>=0;--r){m[r]=l +l=i[l]}return m}, +amW(a){var s,r=$.uE +if(r!=null)s=r.a===a +else s=!1 +if(s){r.toString +return r}return $.uE=new A.YG(a,A.a([],t.uK),$,$,$,null)}, +a8O(){var s=new Uint8Array(0),r=new DataView(new ArrayBuffer(8)) +return new A.a_Y(new A.FR(s,0),r,A.cB(r.buffer,0,null))}, +afc(a){if(a===0)return B.h +return new A.q(200*a/600,400*a/600)}, +aqL(a,b){var s,r,q,p,o,n +if(b===0)return a +s=a.c +r=a.a +q=a.d +p=a.b +o=b*((800+(s-r)*0.5)/600) +n=b*((800+(q-p)*0.5)/600) +return new A.C(r-o,p-n,s+o,q+n).cE(A.afc(b))}, +aqM(a,b){if(b===0)return null +return new A.Zx(Math.min(b*((800+(a.c-a.a)*0.5)/600),b*((800+(a.d-a.b)*0.5)/600)),A.afc(b))}, +afg(){var s=self.document.createElementNS("http://www.w3.org/2000/svg","svg"),r=A.a6("1.1") +A.x(s,"setAttribute",["version",r==null?t.K.a(r):r]) +return s}, +XE(a,b){a.valueAsString=b +return b}, +XC(a,b){a.baseVal=b +return b}, +oc(a,b){a.baseVal=b +return b}, +XD(a,b){a.baseVal=b +return b}, +a84(a,b,c,d,e,f,g,h){return new A.fq($,$,$,$,$,$,$,$,0,c,d,e,f,g,h,a,b)}, +abN(a,b,c,d,e,f){var s=new A.U3(d,f,a,b,e,c) +s.mQ() +return s}, +afn(){var s=$.a5F +if(s==null){s=t.jf +s=$.a5F=new A.iJ(A.a9l(u.K,937,B.jO,s),B.as,A.y(t.S,s),t.zX)}return s}, +ala(a){if(self.Intl.v8BreakIterator!=null)return new A.a_T(A.afi(),a) +return new A.Rj(a)}, +af6(a,b){var s,r,q,p,o,n,m,l,k,j,i,h=A.a([],t.DA) +b.adoptText(a) +b.first() +for(s=B.Ga.a,r=J.dp(s),q=B.Ge.a,p=J.dp(q),o=0;b.next()!==-1;o=m){n=A.apG(a,b) +m=B.c.K(b.current()) +for(l=o,k=0,j=0;l0){h.push(new A.jH(B.bm,k,j,o,l)) +o=l +k=0 +j=0}}h.push(new A.jH(n,k,j,o,m))}if(h.length===0||B.b.gO(h).c===B.b4){s=a.length +h.push(new A.jH(B.b5,0,0,s,s))}return h}, +apG(a,b){var s=B.c.K(b.current()) +if(b.breakType()!=="none")return B.b4 +if(s===a.length)return B.b5 +return B.bm}, +ap8(a1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a={},a0=A.a([],t.DA) +a.a=a.b=null +s=A.yu(a1,0) +r=A.afn().lt(s) +a.c=a.d=a.e=a.f=0 +q=new A.a5e(a,a1,a0) +q.$2(B.n,2) +p=++a.f +for(o=a1.length,n=t.jf,m=t.S,l=t.zX,k=B.as,j=0;p<=o;p=++a.f){a.b=a.a +a.a=r +if(s!=null&&s>65535){q.$2(B.n,-1) +p=++a.f}s=A.yu(a1,p) +p=$.a5F +r=(p==null?$.a5F=new A.iJ(A.a9l(u.K,937,B.jO,n),B.as,A.y(m,n),l):p).lt(s) +i=a.a +j=i===B.dF?j+1:0 +if(i===B.ct||i===B.dD){q.$2(B.b4,5) +continue}if(i===B.dH){if(r===B.ct)q.$2(B.n,5) +else q.$2(B.b4,5) +continue}if(r===B.ct||r===B.dD||r===B.dH){q.$2(B.n,6) +continue}p=a.f +if(p>=o)break +if(r===B.bO||r===B.fy){q.$2(B.n,7) +continue}if(i===B.bO){q.$2(B.bm,18) +continue}if(i===B.fy){q.$2(B.bm,8) +continue}if(i===B.fz){q.$2(B.n,8) +continue}h=i!==B.ft +if(h&&!0)k=i==null?B.as:i +if(r===B.ft||r===B.fz){if(k!==B.bO){if(k===B.dF)--j +q.$2(B.n,9) +r=k +continue}r=B.as}if(!h||!1){a.a=k +h=k}else h=i +if(r===B.fB||h===B.fB){q.$2(B.n,11) +continue}if(h===B.fw){q.$2(B.n,12) +continue}g=h!==B.bO +if(!(!g||h===B.dA||h===B.cs)&&r===B.fw){q.$2(B.n,12) +continue}if(g)g=r===B.fv||r===B.cr||r===B.jN||r===B.dB||r===B.fu +else g=!1 +if(g){q.$2(B.n,13) +continue}if(h===B.cq){q.$2(B.n,14) +continue}g=h===B.fE +if(g&&r===B.cq){q.$2(B.n,15) +continue}f=h!==B.fv +if((!f||h===B.cr)&&r===B.fx){q.$2(B.n,16) +continue}if(h===B.fA&&r===B.fA){q.$2(B.n,17) +continue}if(g||r===B.fE){q.$2(B.n,19) +continue}if(h===B.fD||r===B.fD){q.$2(B.bm,20) +continue}if(r===B.dA||r===B.cs||r===B.fx||h===B.jL){q.$2(B.n,21) +continue}if(a.b===B.ar)g=h===B.cs||h===B.dA +else g=!1 +if(g){q.$2(B.n,21) +continue}g=h===B.fu +if(g&&r===B.ar){q.$2(B.n,21) +continue}if(r===B.jM){q.$2(B.n,22) +continue}e=h!==B.as +if(!((!e||h===B.ar)&&r===B.b6))if(h===B.b6)d=r===B.as||r===B.ar +else d=!1 +else d=!0 +if(d){q.$2(B.n,23) +continue}d=h===B.dI +if(d)c=r===B.fC||r===B.dE||r===B.dG +else c=!1 +if(c){q.$2(B.n,23) +continue}if((h===B.fC||h===B.dE||h===B.dG)&&r===B.bn){q.$2(B.n,23) +continue}c=!d +if(!c||h===B.bn)b=r===B.as||r===B.ar +else b=!1 +if(b){q.$2(B.n,24) +continue}if(!e||h===B.ar)b=r===B.dI||r===B.bn +else b=!1 +if(b){q.$2(B.n,24) +continue}if(!f||h===B.cr||h===B.b6)f=r===B.bn||r===B.dI +else f=!1 +if(f){q.$2(B.n,25) +continue}f=h!==B.bn +if((!f||d)&&r===B.cq){q.$2(B.n,25) +continue}if((!f||!c||h===B.cs||h===B.dB||h===B.b6||g)&&r===B.b6){q.$2(B.n,25) +continue}g=h===B.dC +if(g)f=r===B.dC||r===B.cu||r===B.cw||r===B.cx +else f=!1 +if(f){q.$2(B.n,26) +continue}f=h!==B.cu +if(!f||h===B.cw)c=r===B.cu||r===B.cv +else c=!1 +if(c){q.$2(B.n,26) +continue}c=h!==B.cv +if((!c||h===B.cx)&&r===B.cv){q.$2(B.n,26) +continue}if((g||!f||!c||h===B.cw||h===B.cx)&&r===B.bn){q.$2(B.n,27) +continue}if(d)g=r===B.dC||r===B.cu||r===B.cv||r===B.cw||r===B.cx +else g=!1 +if(g){q.$2(B.n,27) +continue}if(!e||h===B.ar)g=r===B.as||r===B.ar +else g=!1 +if(g){q.$2(B.n,28) +continue}if(h===B.dB)g=r===B.as||r===B.ar +else g=!1 +if(g){q.$2(B.n,29) +continue}if(!e||h===B.ar||h===B.b6)if(r===B.cq){g=B.d.a8(a1,p) +if(g!==9001)if(!(g>=12296&&g<=12317))g=g>=65047&&g<=65378 +else g=!0 +else g=!0 +g=!g}else g=!1 +else g=!1 +if(g){q.$2(B.n,30) +continue}if(h===B.cr){p=B.d.ah(a1,p-1) +if(p!==9001)if(!(p>=12296&&p<=12317))p=p>=65047&&p<=65378 +else p=!0 +else p=!0 +if(!p)p=r===B.as||r===B.ar||r===B.b6 +else p=!1}else p=!1 +if(p){q.$2(B.n,30) +continue}if(r===B.dF){if((j&1)===1)q.$2(B.n,30) +else q.$2(B.bm,30) +continue}if(h===B.dE&&r===B.dG){q.$2(B.n,30) +continue}q.$2(B.bm,31)}q.$2(B.b5,3) +return a0}, +kH(a,b,c,d,e){var s,r,q,p +if(c===d)return 0 +s=a.font +if(c===$.aeJ&&d===$.aeI&&b===$.aeK&&s===$.aeH)r=$.aeL +else{q=c===0&&d===b.length?b:B.d.am(b,c,d) +p=a.measureText(q).width +if(p==null)p=null +p.toString +r=p}$.aeJ=c +$.aeI=d +$.aeK=b +$.aeH=s +$.aeL=r +if(e==null)e=0 +return B.c.bd((e!==0?r+e*(d-c):r)*100)/100}, +abd(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,a0,a1,a2){var s=g==null,r=s?"":g +return new A.r2(b,c,d,e,f,m,k,a1,!s,r,h,i,l,j,p,a2,o,q,a,n,a0)}, +afr(a){if(a==null)return null +return A.afq(a.a)}, +afq(a){switch(a){case 0:return"100" +case 1:return"200" +case 2:return"300" +case 3:return"normal" +case 4:return"500" +case 5:return"600" +case 6:return"bold" +case 7:return"800" +case 8:return"900"}return""}, +aqc(a){var s,r,q,p,o=a.length +if(o===0)return"" +for(s=0,r="";s=48&&q<=57))s=q>=1632&&q<=1641 +else s=!0 +if(s)return B.q +r=$.aab().lt(q) +if(r!=null)return r +return null}, +a9c(a,b){var s=A.yu(a,b) +s.toString +if(s>=48&&s<=57)return B.du +if(s>=1632&&s<=1641)return B.jA +switch($.aab().lt(s)){case B.q:return B.jz +case B.S:return B.jA +case null:return B.fr}}, +yu(a,b){var s +if(b<0||b>=a.length)return null +s=B.d.ah(a,b) +if((s&63488)===55296&&b>>6&31)+1<<16|(s&63)<<10|B.d.ah(a,b+1)&1023 +return s}, +anO(a,b,c){return new A.iJ(a,b,A.y(t.S,c),c.h("iJ<0>"))}, +anP(a,b,c,d,e){return new A.iJ(A.a9l(a,b,c,e),d,A.y(t.S,e),e.h("iJ<0>"))}, +a9l(a,b,c,d){var s,r,q,p,o,n=A.a([],d.h("v>")),m=a.length +for(s=d.h("bQ<0>"),r=0;r=0&&q<=r))break +q+=s +if(A.anY(b,q))break}return A.kD(q,0,r)}, +anY(a,b){var s,r,q,p,o,n,m,l,k,j=null +if(b<=0||b>=a.length)return!0 +s=b-1 +if((B.d.ah(a,s)&63488)===55296)return!1 +r=$.yE().r3(0,a,b) +q=$.yE().r3(0,a,s) +if(q===B.ex&&r===B.ey)return!1 +if(A.d4(q,B.hM,B.ex,B.ey,j,j))return!0 +if(A.d4(r,B.hM,B.ex,B.ey,j,j))return!0 +if(q===B.hL&&r===B.hL)return!1 +if(A.d4(r,B.df,B.dg,B.de,j,j))return!1 +for(p=0;A.d4(q,B.df,B.dg,B.de,j,j);){++p +s=b-p-1 +if(s<0)return!0 +o=$.yE() +n=A.yu(a,s) +q=n==null?o.b:o.lt(n)}if(A.d4(q,B.aw,B.a8,j,j,j)&&A.d4(r,B.aw,B.a8,j,j,j))return!1 +m=0 +do{++m +l=$.yE().r3(0,a,b+m)}while(A.d4(l,B.df,B.dg,B.de,j,j)) +do{++p +k=$.yE().r3(0,a,b-p-1)}while(A.d4(k,B.df,B.dg,B.de,j,j)) +if(A.d4(q,B.aw,B.a8,j,j,j)&&A.d4(r,B.hJ,B.dd,B.c6,j,j)&&A.d4(l,B.aw,B.a8,j,j,j))return!1 +if(A.d4(k,B.aw,B.a8,j,j,j)&&A.d4(q,B.hJ,B.dd,B.c6,j,j)&&A.d4(r,B.aw,B.a8,j,j,j))return!1 +s=q===B.a8 +if(s&&r===B.c6)return!1 +if(s&&r===B.hI&&l===B.a8)return!1 +if(k===B.a8&&q===B.hI&&r===B.a8)return!1 +s=q===B.aY +if(s&&r===B.aY)return!1 +if(A.d4(q,B.aw,B.a8,j,j,j)&&r===B.aY)return!1 +if(s&&A.d4(r,B.aw,B.a8,j,j,j))return!1 +if(k===B.aY&&A.d4(q,B.hK,B.dd,B.c6,j,j)&&r===B.aY)return!1 +if(s&&A.d4(r,B.hK,B.dd,B.c6,j,j)&&l===B.aY)return!1 +if(q===B.dh&&r===B.dh)return!1 +if(A.d4(q,B.aw,B.a8,B.aY,B.dh,B.ew)&&r===B.ew)return!1 +if(q===B.ew&&A.d4(r,B.aw,B.a8,B.aY,B.dh,j))return!1 +return!0}, +d4(a,b,c,d,e,f){if(a===b)return!0 +if(a===c)return!0 +if(d!=null&&a===d)return!0 +if(e!=null&&a===e)return!0 +if(f!=null&&a===f)return!0 +return!1}, +akr(a){switch(a){case"TextInputAction.continueAction":case"TextInputAction.next":return B.wE +case"TextInputAction.previous":return B.wM +case"TextInputAction.done":return B.wa +case"TextInputAction.go":return B.wt +case"TextInputAction.newline":return B.we +case"TextInputAction.search":return B.wR +case"TextInputAction.send":return B.wS +case"TextInputAction.emergencyCall":case"TextInputAction.join":case"TextInputAction.none":case"TextInputAction.route":case"TextInputAction.unspecified":default:return B.wF}}, +abc(a,b){switch(a){case"TextInputType.number":return b?B.w5:B.wG +case"TextInputType.phone":return B.wK +case"TextInputType.emailAddress":return B.wb +case"TextInputType.url":return B.x2 +case"TextInputType.multiline":return B.wC +case"TextInputType.none":return B.iN +case"TextInputType.text":default:return B.wZ}}, +ant(a){var s +if(a==="TextCapitalization.words")s=B.uR +else if(a==="TextCapitalization.characters")s=B.uT +else s=a==="TextCapitalization.sentences"?B.uS:B.hB +return new A.v5(s)}, +apk(a){}, +Nn(a,b){var s,r="transparent",q="none",p=a.style +A.n(p,"white-space","pre-wrap") +A.n(p,"align-content","center") +A.n(p,"padding","0") +A.n(p,"opacity","1") +A.n(p,"color",r) +A.n(p,"background-color",r) +A.n(p,"background",r) +A.n(p,"outline",q) +A.n(p,"border",q) +A.n(p,"resize",q) +A.n(p,"width","0") +A.n(p,"height","0") +A.n(p,"text-shadow",r) +A.n(p,"transform-origin","0 0 0") +if(b){A.n(p,"top","-9999px") +A.n(p,"left","-9999px")}s=$.by() +if(s!==B.ax)s=s===B.B +else s=!0 +if(s)a.classList.add("transparentTextEditing") +A.n(p,"caret-color",r)}, +akq(a1,a2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0 +if(a1==null)return null +s=t.N +r=t.e +q=A.y(s,r) +p=A.y(s,t.j1) +o=A.aP(self.document,"form") +o.noValidate=!0 +o.method="post" +o.action="#" +A.bI(o,"submit",r.a(A.aN(new A.QX())),null) +A.Nn(o,!1) +n=J.rD(0,s) +m=A.a7m(a1,B.uQ) +if(a2!=null)for(s=t.a,r=J.fa(a2,s),r=new A.db(r,r.gp(r)),l=m.b,k=A.m(r).c;r.t();){j=r.d +if(j==null)j=k.a(j) +i=J.aC(j) +h=s.a(i.i(j,"autofill")) +g=A.bW(i.i(j,"textCapitalization")) +if(g==="TextCapitalization.words")g=B.uR +else if(g==="TextCapitalization.characters")g=B.uT +else g=g==="TextCapitalization.sentences"?B.uS:B.hB +f=A.a7m(h,new A.v5(g)) +g=f.b +n.push(g) +if(g!==l){e=A.abc(A.bW(J.bc(s.a(i.i(j,"inputType")),"name")),!1).wZ() +f.a.dm(e) +f.dm(e) +A.Nn(e,!1) +p.l(0,g,f) +q.l(0,g,e) +o.append(e)}}else n.push(m.b) +B.b.fV(n) +for(s=n.length,d=0,r="";d0?r+"*":r)+c}b=r.charCodeAt(0)==0?r:r +a=$.yt.i(0,b) +if(a!=null)a.remove() +a0=A.aP(self.document,"input") +A.Nn(a0,!0) +a0.className="submitBtn" +A.Qn(a0,"submit") +o.append(a0) +return new A.QU(o,q,p,b)}, +a7m(a,b){var s,r=J.aC(a),q=A.bW(r.i(a,"uniqueIdentifier")),p=t.jS.a(r.i(a,"hints")),o=p==null||J.fZ(p)?null:A.bW(J.kK(p)),n=A.aba(t.a.a(r.i(a,"editingValue"))) +if(o!=null){s=$.ag5().a.i(0,o) +if(s==null)s=o}else s=null +return new A.yZ(n,q,s,A.ci(r.i(a,"hintText")))}, +a9i(a,b,c){var s=c.a,r=c.b,q=Math.min(s,r) +r=Math.max(s,r) +return B.d.am(a,0,q)+b+B.d.fY(a,r)}, +anu(a2,a3,a4){var s,r,q,p,o,n,m,l,k,j,i,h,g=a4.a,f=a4.b,e=a4.c,d=a4.d,c=a4.e,b=a4.f,a=a4.r,a0=a4.w,a1=new A.oz(g,f,e,d,c,b,a,a0) +c=a3==null +b=c?null:a3.b +s=b==(c?null:a3.c) +b=f.length +r=b===0 +q=r&&d!==-1 +r=!r +p=r&&!s +if(q){o=g.length-a2.a.length +e=a2.b +if(e!==(c?null:a3.b)){e=d-o +a1.c=e}else{a1.c=e +d=e+o +a1.d=d}}else if(p){e=a3.b +a1.c=e}n=a!=null&&a!==a0 +if(r&&s&&n){a.toString +e=a1.c=a}if(!(e===-1&&e===d)){m=A.a9i(g,f,new A.cD(e,d)) +e=a2.a +e.toString +if(m!==e){l=B.d.q(f,".") +k=A.o4(A.a9G(f),!0,!1) +d=new A.a01(k,e,0) +c=t.ez +a=g.length +for(;d.t();){j=d.d +a0=(j==null?c.a(j):j).b +r=a0.index +if(!(r>=0&&r+a0[0].length<=a)){i=r+b-1 +h=A.a9i(g,f,new A.cD(r,i))}else{i=l?r+a0[0].length-1:r+a0[0].length +h=A.a9i(g,f,new A.cD(r,i))}if(h===e){a1.c=r +a1.d=i +break}}}}a1.e=a2.b +a1.f=a2.c +return a1}, +QH(a,b,c,d,e){var s,r=a==null?0:a +r=Math.max(0,r) +s=d==null?0:d +return new A.nb(e,r,Math.max(0,s),b,c)}, +aba(a){var s=J.aC(a),r=A.ci(s.i(a,"text")),q=B.c.K(A.yf(s.i(a,"selectionBase"))),p=B.c.K(A.yf(s.i(a,"selectionExtent"))),o=A.a83(a,"composingBase"),n=A.a83(a,"composingExtent") +s=o==null?-1:o +return A.QH(q,s,n==null?-1:n,p,r)}, +ab9(a){var s,r,q,p=null,o=globalThis.HTMLInputElement +if(o!=null&&a instanceof o){s=a.value +if(s==null)s=p +r=a.selectionStart +if(r==null)r=p +r=r==null?p:B.c.K(r) +q=a.selectionEnd +if(q==null)q=p +return A.QH(r,-1,-1,q==null?p:B.c.K(q),s)}else{o=globalThis.HTMLTextAreaElement +if(o!=null&&a instanceof o){s=a.value +if(s==null)s=p +r=a.selectionStart +if(r==null)r=p +r=r==null?p:B.c.K(r) +q=a.selectionEnd +if(q==null)q=p +return A.QH(r,-1,-1,q==null?p:B.c.K(q),s)}else throw A.d(A.T("Initialized with unsupported input type"))}}, +abC(a){var s,r,q,p,o,n="inputType",m="autofill",l=J.aC(a),k=t.a,j=A.bW(J.bc(k.a(l.i(a,n)),"name")),i=A.ye(J.bc(k.a(l.i(a,n)),"decimal")) +j=A.abc(j,i===!0) +i=A.ci(l.i(a,"inputAction")) +if(i==null)i="TextInputAction.done" +s=A.ye(l.i(a,"obscureText")) +r=A.ye(l.i(a,"readOnly")) +q=A.ye(l.i(a,"autocorrect")) +p=A.ant(A.bW(l.i(a,"textCapitalization"))) +k=l.a3(a,m)?A.a7m(k.a(l.i(a,m)),B.uQ):null +o=A.akq(t.nV.a(l.i(a,m)),t.jS.a(l.i(a,"fields"))) +l=A.ye(l.i(a,"enableDeltaModel")) +return new A.Tk(j,i,r===!0,s===!0,q!==!1,l===!0,k,o,p)}, +akQ(a){return new A.BD(a,A.a([],t.uK),$,$,$,null)}, +arZ(){$.yt.P(0,new A.a6Q())}, +aqD(){var s,r,q +for(s=$.yt.gaJ($.yt),s=new A.dy(J.am(s.a),s.b),r=A.m(s).z[1];s.t();){q=s.a +if(q==null)q=r.a(q) +q.remove()}$.yt.L(0)}, +aki(a){var s=J.aC(a),r=A.nH(J.yI(t.j.a(s.i(a,"transform")),new A.QF(),t.z),!0,t.i) +return new A.QE(A.yf(s.i(a,"width")),A.yf(s.i(a,"height")),new Float32Array(A.pz(r)))}, +a9K(a,b){var s=a.style +A.n(s,"transform-origin","0 0 0") +A.n(s,"transform",A.f6(b))}, +f6(a){var s=A.a6U(a) +if(s===B.uY)return"matrix("+A.h(a[0])+","+A.h(a[1])+","+A.h(a[4])+","+A.h(a[5])+","+A.h(a[12])+","+A.h(a[13])+")" +else if(s===B.ev)return A.arg(a) +else return"none"}, +a6U(a){if(!(a[15]===1&&a[14]===0&&a[11]===0&&a[10]===1&&a[9]===0&&a[8]===0&&a[7]===0&&a[6]===0&&a[3]===0&&a[2]===0))return B.ev +if(a[0]===1&&a[1]===0&&a[4]===0&&a[5]===1&&a[12]===0&&a[13]===0)return B.uX +else return B.uY}, +arg(a){var s=a[0] +if(s===1&&a[1]===0&&a[2]===0&&a[3]===0&&a[4]===0&&a[5]===1&&a[6]===0&&a[7]===0&&a[8]===0&&a[9]===0&&a[10]===1&&a[11]===0&&a[14]===0&&a[15]===1)return"translate3d("+A.h(a[12])+"px, "+A.h(a[13])+"px, 0px)" +else return"matrix3d("+A.h(s)+","+A.h(a[1])+","+A.h(a[2])+","+A.h(a[3])+","+A.h(a[4])+","+A.h(a[5])+","+A.h(a[6])+","+A.h(a[7])+","+A.h(a[8])+","+A.h(a[9])+","+A.h(a[10])+","+A.h(a[11])+","+A.h(a[12])+","+A.h(a[13])+","+A.h(a[14])+","+A.h(a[15])+")"}, +a9P(a,b){var s=$.ahU() +s[0]=b.a +s[1]=b.b +s[2]=b.c +s[3]=b.d +A.a9O(a,s) +return new A.C(s[0],s[1],s[2],s[3])}, +a9O(a1,a2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0=$.aaa() +a0[0]=a2[0] +a0[4]=a2[1] +a0[8]=0 +a0[12]=1 +a0[1]=a2[2] +a0[5]=a2[1] +a0[9]=0 +a0[13]=1 +a0[2]=a2[0] +a0[6]=a2[3] +a0[10]=0 +a0[14]=1 +a0[3]=a2[2] +a0[7]=a2[3] +a0[11]=0 +a0[15]=1 +s=$.ahT().a +r=s[0] +q=s[4] +p=s[8] +o=s[12] +n=s[1] +m=s[5] +l=s[9] +k=s[13] +j=s[2] +i=s[6] +h=s[10] +g=s[14] +f=s[3] +e=s[7] +d=s[11] +c=s[15] +b=a1.a +s[0]=r*b[0]+q*b[4]+p*b[8]+o*b[12] +s[4]=r*b[1]+q*b[5]+p*b[9]+o*b[13] +s[8]=r*b[2]+q*b[6]+p*b[10]+o*b[14] +s[12]=r*b[3]+q*b[7]+p*b[11]+o*b[15] +s[1]=n*b[0]+m*b[4]+l*b[8]+k*b[12] +s[5]=n*b[1]+m*b[5]+l*b[9]+k*b[13] +s[9]=n*b[2]+m*b[6]+l*b[10]+k*b[14] +s[13]=n*b[3]+m*b[7]+l*b[11]+k*b[15] +s[2]=j*b[0]+i*b[4]+h*b[8]+g*b[12] +s[6]=j*b[1]+i*b[5]+h*b[9]+g*b[13] +s[10]=j*b[2]+i*b[6]+h*b[10]+g*b[14] +s[14]=j*b[3]+i*b[7]+h*b[11]+g*b[15] +s[3]=f*b[0]+e*b[4]+d*b[8]+c*b[12] +s[7]=f*b[1]+e*b[5]+d*b[9]+c*b[13] +s[11]=f*b[2]+e*b[6]+d*b[10]+c*b[14] +s[15]=f*b[3]+e*b[7]+d*b[11]+c*b[15] +a=b[15] +if(a===0)a=1 +a2[0]=Math.min(Math.min(Math.min(a0[0],a0[1]),a0[2]),a0[3])/a +a2[1]=Math.min(Math.min(Math.min(a0[4],a0[5]),a0[6]),a0[7])/a +a2[2]=Math.max(Math.max(Math.max(a0[0],a0[1]),a0[2]),a0[3])/a +a2[3]=Math.max(Math.max(Math.max(a0[4],a0[5]),a0[6]),a0[7])/a}, +afT(a,b){return a.a<=b.a&&a.b<=b.b&&a.c>=b.c&&a.d>=b.d}, +cT(a){if(a==null)return null +return A.yp(a.gn(a))}, +yp(a){var s,r +if(a===4278190080)return"#000000" +if((a&4278190080)>>>0===4278190080){s=B.f.il(a&16777215,16) +switch(s.length){case 1:return"#00000"+s +case 2:return"#0000"+s +case 3:return"#000"+s +case 4:return"#00"+s +case 5:return"#0"+s +default:return"#"+s}}else{r=""+"rgba("+B.f.j(a>>>16&255)+","+B.f.j(a>>>8&255)+","+B.f.j(a&255)+","+B.c.j((a>>>24&255)/255)+")" +return r.charCodeAt(0)==0?r:r}}, +aqG(a,b,c,d){var s=""+a,r=""+b,q=""+c +if(d===255)return"rgb("+s+","+r+","+q+")" +else return"rgba("+s+","+r+","+q+","+B.c.M(d/255,2)+")"}, +aez(){if(A.arF())return"BlinkMacSystemFont" +var s=$.cH() +if(s!==B.a4)s=s===B.aE +else s=!0 +if(s)return"-apple-system, BlinkMacSystemFont" +return"Arial"}, +a66(a){var s +if(J.dq(B.Gh.a,a))return a +s=$.cH() +if(s!==B.a4)s=s===B.aE +else s=!0 +if(s)if(a===".SF Pro Text"||a===".SF Pro Display"||a===".SF UI Text"||a===".SF UI Display")return A.aez() +return'"'+A.h(a)+'", '+A.aez()+", sans-serif"}, +kD(a,b,c){if(ac)return c +else return a}, +NB(a,b){var s +if(a==null)return b==null +if(b==null||a.length!==b.length)return!1 +for(s=0;s")).bf(0," ")}, +di(a,b,c){A.n(a.style,b,c)}, +ys(a,b,c,d,e,f,g,h,i){var s=$.aew +if(s==null?$.aew=a.ellipse!=null:s)A.x(a,"ellipse",[b,c,d,e,f,g,h,i]) +else{a.save() +a.translate(b,c) +a.rotate(f) +a.scale(d,e) +A.x(a,"arc",[0,0,1,g,h,i]) +a.restore()}}, +a9H(a){var s +for(;a.lastChild!=null;){s=a.lastChild +if(s.parentNode!=null)s.parentNode.removeChild(s)}}, +a86(a,b,c){var s=b.h("@<0>").ab(c),r=new A.mm(s.h("mm<+key,value(1,2)>")) +r.a=r +r.b=r +return new A.Ch(a,new A.l_(r,s.h("l_<+key,value(1,2)>")),A.y(b,s.h("a7L<+key,value(1,2)>")),s.h("Ch<1,2>"))}, +cY(){var s=new Float32Array(16) +s[15]=1 +s[0]=1 +s[5]=1 +s[10]=1 +return new A.bk(s)}, +aln(a){return new A.bk(a)}, +alq(a){var s=new A.bk(new Float32Array(16)) +if(s.fp(a)===0)return null +return s}, +adx(a,b,c){var s=new Float32Array(3) +s[0]=a +s[1]=b +s[2]=c +return new A.mh(s)}, +ND(a){var s=new Float32Array(16) +s[15]=a[15] +s[14]=a[14] +s[13]=a[13] +s[12]=a[12] +s[11]=a[11] +s[10]=a[10] +s[9]=a[9] +s[8]=a[8] +s[7]=a[7] +s[6]=a[6] +s[5]=a[5] +s[4]=a[4] +s[3]=a[3] +s[2]=a[2] +s[1]=a[1] +s[0]=a[0] +return s}, +ajs(a){var s=new A.Ao(a,A.adb(t.DB)) +s.Ph(a) +return s}, +ajI(a){var s,r +if(a!=null)return A.ajs(a) +else{s=new A.Bw(A.adb(t.xB)) +r=self.window.visualViewport +if(r==null)r=self.window +s.a=A.bT(r,"resize",s.gV6()) +return s}}, +ajt(a){var s=t.e.a(A.aN(new A.GS())) +A.ak_(a) +return new A.PH(a,!0,s)}, +ako(a){if(a!=null)return A.ajt(a) +else return A.akK()}, +akK(){return new A.RW(!0,t.e.a(A.aN(new A.GS())))}, +akt(a,b){var s=new A.B4(a,b,A.cJ(null,t.H),B.dc) +s.Pi(a,b) +return s}, +pJ:function pJ(a){var _=this +_.a=a +_.d=_.c=_.b=null}, +O3:function O3(a,b){this.a=a +this.b=b}, +O8:function O8(a){this.a=a}, +O7:function O7(a){this.a=a}, +O9:function O9(a){this.a=a}, +O6:function O6(a,b){this.a=a +this.b=b}, +O5:function O5(a){this.a=a}, +O4:function O4(a){this.a=a}, +Oe:function Oe(a){this.b=a}, +qb:function qb(a,b){this.a=a +this.b=b}, +hu:function hu(a,b){this.a=a +this.b=b}, +OS:function OS(a,b,c,d,e){var _=this +_.e=_.d=null +_.f=a +_.r=b +_.z=_.y=_.x=_.w=null +_.Q=0 +_.as=c +_.a=d +_.b=null +_.c=e}, +Py:function Py(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.w=_.r=null +_.x=1 +_.Q=_.z=_.y=null +_.as=!1}, +KH:function KH(){}, +dt:function dt(a){this.a=a}, +DK:function DK(a,b){this.b=a +this.a=b}, +Pa:function Pa(a,b){this.a=a +this.b=b}, +bS:function bS(){}, +zs:function zs(a){this.a=a}, +zT:function zT(){}, +zR:function zR(){}, +zY:function zY(a,b){this.a=a +this.b=b}, +zV:function zV(a,b){this.a=a +this.b=b}, +zS:function zS(a){this.a=a}, +zX:function zX(a){this.a=a}, +zv:function zv(a,b,c){this.a=a +this.b=b +this.c=c}, +zu:function zu(a,b){this.a=a +this.b=b}, +zt:function zt(a,b){this.a=a +this.b=b}, +zz:function zz(a,b,c){this.a=a +this.b=b +this.c=c}, +zB:function zB(a){this.a=a}, +zG:function zG(a,b){this.a=a +this.b=b}, +zF:function zF(a,b){this.a=a +this.b=b}, +zx:function zx(a,b,c){this.a=a +this.b=b +this.c=c}, +zA:function zA(a,b){this.a=a +this.b=b}, +zw:function zw(a,b,c){this.a=a +this.b=b +this.c=c}, +zD:function zD(a,b){this.a=a +this.b=b}, +zH:function zH(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +zy:function zy(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +zC:function zC(a,b){this.a=a +this.b=b}, +zE:function zE(a){this.a=a}, +zU:function zU(a,b){this.a=a +this.b=b}, +Wc:function Wc(a){this.a=$ +this.b=a +this.c=null}, +Wd:function Wd(a){this.a=a}, +We:function We(a){this.a=a}, +EX:function EX(a,b){this.a=a +this.b=b}, +a6J:function a6J(a){this.a=a}, +a6K:function a6K(){}, +a6L:function a6L(a){this.a=a}, +a6M:function a6M(){}, +a5b:function a5b(){}, +a5o:function a5o(a,b){this.a=a +this.b=b}, +a5n:function a5n(a,b){this.a=a +this.b=b}, +OM:function OM(a){this.a=a}, +rY:function rY(a){this.b=a +this.a=null}, +P6:function P6(){}, +zr:function zr(a,b){this.a=a +this.b=b}, +zN:function zN(a){this.a=a}, +qm:function qm(a,b){this.a=a +this.b=b}, +BL:function BL(a,b,c,d,e,f,g,h,i){var _=this +_.b=a +_.c=b +_.d=c +_.e=d +_.f=e +_.r=f +_.w=g +_.x=h +_.Q=i}, +SO:function SO(){}, +SP:function SP(a){this.a=a}, +SL:function SL(){}, +SM:function SM(a){this.a=a}, +SN:function SN(a){this.a=a}, +jR:function jR(a,b){this.a=a +this.b=b}, +lu:function lu(a,b){this.a=a +this.b=b}, +ft:function ft(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +td:function td(a){this.a=a}, +AW:function AW(a,b){this.a=a +this.b=b}, +hO:function hO(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +a6f:function a6f(a,b){this.a=a +this.b=b}, +a6e:function a6e(a,b){this.a=a +this.b=b}, +Bs:function Bs(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=!1}, +RO:function RO(){}, +RP:function RP(){}, +a6h:function a6h(){}, +a6i:function a6i(a){this.a=a}, +a5O:function a5O(){}, +a5P:function a5P(){}, +a5L:function a5L(){}, +a5M:function a5M(){}, +a5N:function a5N(){}, +a5Q:function a5Q(){}, +Bc:function Bc(a,b,c){this.a=a +this.b=b +this.c=c}, +Rm:function Rm(a,b,c){this.a=a +this.b=b +this.c=c}, +Vc:function Vc(){this.a=0}, +on:function on(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.f=_.e=null}, +YW:function YW(){}, +YX:function YX(){}, +YY:function YY(){}, +YV:function YV(a,b){this.a=a +this.b=b}, +o5:function o5(a,b,c){this.a=a +this.b=b +this.c=c}, +iK:function iK(a,b,c){this.a=a +this.b=b +this.c=c}, +BR:function BR(a){this.a=a}, +kV:function kV(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.d=!1}, +pO:function pO(a,b){this.a=a +this.b=b}, +zq:function zq(a,b,c,d){var _=this +_.b=a +_.c=b +_.d=0 +_.e=-1 +_.f=0 +_.r=c +_.w=d +_.x=!1 +_.a=null}, +ql:function ql(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.e=_.d=$ +_.f=!1 +_.r=0 +_.w=null +_.x=d}, +P3:function P3(){}, +P4:function P4(a){this.a=a}, +il:function il(a,b){this.a=a +this.b=b}, +BX:function BX(a,b){this.a=a +this.$ti=b}, +To:function To(a,b){this.a=a +this.b=b}, +Tp:function Tp(a){this.a=a}, +Tr:function Tr(a){this.a=a}, +Tq:function Tq(a){this.a=a}, +hl:function hl(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.f=_.e=null +_.$ti=e}, +e6:function e6(){}, +W3:function W3(a){this.c=a}, +Vr:function Vr(a,b){this.a=a +this.b=b}, +n3:function n3(){}, +Ek:function Ek(a,b){this.c=a +this.a=null +this.b=b}, +A1:function A1(a,b,c,d){var _=this +_.f=a +_.r=b +_.c=c +_.a=null +_.b=d}, +A3:function A3(a,b,c,d){var _=this +_.f=a +_.r=b +_.c=c +_.a=null +_.b=d}, +A2:function A2(a,b,c,d){var _=this +_.f=a +_.r=b +_.c=c +_.a=null +_.b=d}, +CX:function CX(a,b,c,d){var _=this +_.f=a +_.r=b +_.c=c +_.a=null +_.b=d}, +vi:function vi(a,b,c){var _=this +_.f=a +_.c=b +_.a=null +_.b=c}, +CW:function CW(a,b,c){var _=this +_.f=a +_.c=b +_.a=null +_.b=c}, +Dt:function Dt(a,b,c){var _=this +_.c=a +_.d=b +_.a=null +_.b=c}, +C4:function C4(a){this.a=a}, +TZ:function TZ(a){this.a=a +this.b=$}, +U_:function U_(a,b){this.a=a +this.b=b}, +RS:function RS(a,b,c){this.a=a +this.b=b +this.c=c}, +RT:function RT(a,b,c){this.a=a +this.b=b +this.c=c}, +RU:function RU(a,b,c){this.a=a +this.b=b +this.c=c}, +Ps:function Ps(){}, +zM:function zM(a,b){this.b=a +this.c=b +this.a=null}, +zO:function zO(a){this.a=a}, +a5q:function a5q(){}, +UV:function UV(){}, +mf:function mf(a){this.a=null +this.b=a}, +Ae:function Ae(a,b){var _=this +_.a=$ +_.b=1 +_.c=a +_.$ti=b}, +ir:function ir(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=$}, +i7:function i7(a,b){this.a=a +this.b=b}, +UU:function UU(a){this.a=a}, +mX:function mX(a,b,c){var _=this +_.b=a +_.c=b +_.d=0 +_.r=!0 +_.w=4278190080 +_.x=!1 +_.as=_.Q=_.z=_.y=null +_.at=c +_.a=_.cx=_.CW=_.ay=_.ax=null}, +P7:function P7(){}, +zI:function zI(a,b,c,d){var _=this +_.d=a +_.e=b +_.f=c +_.r=d +_.a=null}, +mY:function mY(a){this.b=a +this.c=$ +this.a=null}, +qn:function qn(a,b){var _=this +_.b=a +_.c=b +_.d=!1 +_.a=_.e=null}, +jk:function jk(){this.c=this.b=this.a=null}, +Wj:function Wj(a,b){this.a=a +this.b=b}, +mV:function mV(a,b){this.a=a +this.b=b}, +zk:function zk(){this.a=$ +this.b=null +this.c=$}, +jl:function jl(){}, +zJ:function zJ(a,b,c,d,e,f){var _=this +_.d=a +_.e=b +_.f=c +_.r=d +_.w=e +_.x=f +_.a=null}, +zK:function zK(a,b,c,d,e){var _=this +_.d=a +_.e=b +_.f=c +_.r=d +_.w=e +_.a=_.x=null}, +EW:function EW(a,b,c){this.a=a +this.b=b +this.c=c}, +dD:function dD(){}, +dM:function dM(){}, +uY:function uY(a,b){this.a=a +this.b=b}, +hF:function hF(a){var _=this +_.a=null +_.b=!0 +_.c=!1 +_.w=_.r=_.f=_.e=_.d=null +_.x=a +_.y=null +_.at=_.as=_.Q=_.z=-1 +_.ax=!1 +_.ch=_.ay=null +_.CW=-1}, +Zy:function Zy(a){this.a=a}, +zW:function zW(a,b){this.a=a +this.b=b +this.c=!1}, +Fm:function Fm(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=$ +_.d=c +_.e=d}, +zQ:function zQ(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g}, +qo:function qo(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dy=_.dx=$}, +Pb:function Pb(a){this.a=a}, +zP:function zP(a){var _=this +_.a=$ +_.b=-1/0 +_.c=a +_.d=0 +_.e=!1 +_.z=_.y=_.x=_.w=_.r=_.f=0 +_.Q=$ +_.as=!1}, +zL:function zL(a){this.a=a}, +P9:function P9(a,b,c,d){var _=this +_.a=a +_.b=b +_.d=c +_.e=d}, +a5u:function a5u(a){this.a=a}, +rC:function rC(a,b){this.a=a +this.b=b}, +zi:function zi(a){this.a=a}, +A5:function A5(a,b){this.a=a +this.b=b}, +Po:function Po(a,b){this.a=a +this.b=b}, +Pp:function Pp(a,b){this.a=a +this.b=b}, +Pm:function Pm(a){this.a=a}, +Pn:function Pn(a,b){this.a=a +this.b=b}, +Pl:function Pl(a){this.a=a}, +A4:function A4(){}, +Pk:function Pk(){}, +B8:function B8(){}, +Ri:function Ri(){}, +Rz:function Rz(){this.a=!1 +this.b=null}, +Ql:function Ql(a){this.a=a}, +Qo:function Qo(){}, +BP:function BP(a,b){this.a=a +this.b=b}, +SQ:function SQ(a){this.a=a}, +BN:function BN(a,b){this.a=a +this.b=b}, +BM:function BM(a,b){this.a=a +this.b=b}, +Qm:function Qm(a){this.a=a}, +AP:function AP(a,b,c){this.a=a +this.b=b +this.c=c}, +qO:function qO(a,b){this.a=a +this.b=b}, +a6a:function a6a(a){this.a=a}, +a61:function a61(){}, +Hz:function Hz(a,b){this.a=a +this.b=-1 +this.$ti=b}, +d5:function d5(a,b){this.a=a +this.$ti=b}, +HE:function HE(a,b){this.a=a +this.b=-1 +this.$ti=b}, +iR:function iR(a,b){this.a=a +this.$ti=b}, +AN:function AN(a,b){this.a=a +this.b=$ +this.$ti=b}, +Bm:function Bm(a){var _=this +_.a=a +_.e=_.d=_.c=_.b=null +_.r=_.f=$}, +RG:function RG(a){this.a=a}, +RH:function RH(a){this.a=a}, +QY:function QY(){}, +Eu:function Eu(a,b){this.a=a +this.b=b}, +lR:function lR(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +KG:function KG(a,b){this.a=a +this.b=b}, +XI:function XI(){}, +a6S:function a6S(){}, +a6R:function a6R(){}, +eU:function eU(a){this.a=a}, +Af:function Af(a){this.b=this.a=null +this.$ti=a}, +oW:function oW(a,b,c){this.a=a +this.b=b +this.$ti=c}, +ES:function ES(){this.a=$}, +AU:function AU(){this.a=$}, +i2:function i2(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.b=null +_.c=b +_.d=c +_.e=null +_.f=d +_.r=e +_.w=f +_.x=0 +_.y=g +_.Q=_.z=null +_.ax=_.at=_.as=!1 +_.ay=h +_.ch=i}, +bF:function bF(a){this.b=a}, +Zs:function Zs(a){this.a=a}, +vQ:function vQ(){}, +tE:function tE(a,b,c,d,e,f){var _=this +_.CW=a +_.cx=b +_.e8$=c +_.x=d +_.a=e +_.b=-1 +_.c=f +_.w=_.r=_.f=_.e=_.d=null}, +Dn:function Dn(a,b,c,d,e,f){var _=this +_.CW=a +_.cx=b +_.e8$=c +_.x=d +_.a=e +_.b=-1 +_.c=f +_.w=_.r=_.f=_.e=_.d=null}, +tD:function tD(a,b,c,d,e){var _=this +_.CW=a +_.cx=b +_.cy=null +_.x=c +_.a=d +_.b=-1 +_.c=e +_.w=_.r=_.f=_.e=_.d=null}, +ZA:function ZA(a,b,c){this.a=a +this.b=b +this.c=c}, +Zz:function Zz(a,b){this.a=a +this.b=b}, +Qg:function Qg(a,b,c,d){var _=this +_.a=a +_.HD$=b +_.nR$=c +_.i1$=d}, +tF:function tF(a,b,c,d,e){var _=this +_.CW=a +_.cx=b +_.cy=null +_.x=c +_.a=d +_.b=-1 +_.c=e +_.w=_.r=_.f=_.e=_.d=null}, +tG:function tG(a,b,c,d,e){var _=this +_.CW=a +_.cx=b +_.cy=null +_.x=c +_.a=d +_.b=-1 +_.c=e +_.w=_.r=_.f=_.e=_.d=null}, +uZ:function uZ(a){this.a=a +this.b=!1}, +Fn:function Fn(){var _=this +_.e=_.d=_.c=_.b=_.a=null +_.f=!0 +_.r=4278190080 +_.z=_.y=_.x=_.w=null}, +eN:function eN(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g}, +Wf:function Wf(){var _=this +_.d=_.c=_.b=_.a=0}, +Pt:function Pt(){var _=this +_.d=_.c=_.b=_.a=0}, +GQ:function GQ(){this.b=this.a=null}, +PA:function PA(){var _=this +_.d=_.c=_.b=_.a=0}, +m5:function m5(a,b){var _=this +_.a=a +_.b=b +_.c=0 +_.e=_.d=-1}, +Vw:function Vw(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=!1 +_.e=0 +_.f=-1 +_.Q=_.z=_.y=_.x=_.w=_.r=0}, +nX:function nX(a,b){var _=this +_.b=_.a=null +_.e=_.d=_.c=0 +_.f=a +_.r=b +_.x=_.w=0 +_.y=null +_.z=0 +_.as=_.Q=!0 +_.ch=_.ay=_.ax=_.at=!1 +_.CW=-1 +_.cx=0}, +jU:function jU(a){var _=this +_.a=a +_.b=-1 +_.e=_.d=_.c=0}, +iy:function iy(){this.b=this.a=null}, +YU:function YU(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +Vx:function Vx(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.e=_.d=0 +_.f=d}, +jS:function jS(a,b){this.a=a +this.b=b}, +Dq:function Dq(a,b,c,d,e,f,g){var _=this +_.ch=null +_.CW=a +_.cx=b +_.cy=c +_.db=d +_.dy=1 +_.fr=!1 +_.fx=e +_.id=_.go=_.fy=null +_.a=f +_.b=-1 +_.c=g +_.w=_.r=_.f=_.e=_.d=null}, +VB:function VB(a){this.a=a}, +WF:function WF(a,b,c){var _=this +_.a=a +_.b=null +_.c=b +_.d=c +_.f=_.e=!1 +_.r=1}, +c6:function c6(){}, +qS:function qS(){}, +tz:function tz(){}, +Df:function Df(){}, +Dj:function Dj(a,b){this.a=a +this.b=b}, +Dh:function Dh(a,b){this.a=a +this.b=b}, +Dg:function Dg(a){this.a=a}, +Di:function Di(a){this.a=a}, +D3:function D3(a,b){var _=this +_.f=a +_.r=b +_.a=!1 +_.c=_.b=-1/0 +_.e=_.d=1/0}, +D2:function D2(a){var _=this +_.f=a +_.a=!1 +_.c=_.b=-1/0 +_.e=_.d=1/0}, +D1:function D1(a){var _=this +_.f=a +_.a=!1 +_.c=_.b=-1/0 +_.e=_.d=1/0}, +D7:function D7(a,b,c){var _=this +_.f=a +_.r=b +_.w=c +_.a=!1 +_.c=_.b=-1/0 +_.e=_.d=1/0}, +D9:function D9(a){var _=this +_.f=a +_.a=!1 +_.c=_.b=-1/0 +_.e=_.d=1/0}, +Dd:function Dd(a,b){var _=this +_.f=a +_.r=b +_.a=!1 +_.c=_.b=-1/0 +_.e=_.d=1/0}, +Dc:function Dc(a,b){var _=this +_.f=a +_.r=b +_.a=!1 +_.c=_.b=-1/0 +_.e=_.d=1/0}, +D5:function D5(a,b,c){var _=this +_.f=a +_.r=b +_.w=c +_.x=null +_.a=!1 +_.c=_.b=-1/0 +_.e=_.d=1/0}, +D8:function D8(a,b){var _=this +_.f=a +_.r=b +_.a=!1 +_.c=_.b=-1/0 +_.e=_.d=1/0}, +D4:function D4(a,b,c){var _=this +_.f=a +_.r=b +_.w=c +_.a=!1 +_.c=_.b=-1/0 +_.e=_.d=1/0}, +Db:function Db(a,b){var _=this +_.f=a +_.r=b +_.a=!1 +_.c=_.b=-1/0 +_.e=_.d=1/0}, +De:function De(a,b,c,d){var _=this +_.f=a +_.r=b +_.w=c +_.x=d +_.a=!1 +_.c=_.b=-1/0 +_.e=_.d=1/0}, +D6:function D6(a,b,c,d){var _=this +_.f=a +_.r=b +_.w=c +_.x=d +_.a=!1 +_.c=_.b=-1/0 +_.e=_.d=1/0}, +Da:function Da(a,b){var _=this +_.f=a +_.r=b +_.a=!1 +_.c=_.b=-1/0 +_.e=_.d=1/0}, +a3w:function a3w(a,b,c,d){var _=this +_.a=a +_.b=!1 +_.d=_.c=17976931348623157e292 +_.f=_.e=-17976931348623157e292 +_.r=b +_.w=c +_.x=!0 +_.y=d +_.z=!1 +_.ax=_.at=_.as=_.Q=0}, +Xc:function Xc(){var _=this +_.d=_.c=_.b=_.a=!1}, +Mj:function Mj(){}, +SJ:function SJ(){this.b=this.a=$}, +SK:function SK(){}, +ot:function ot(a){this.a=a}, +tH:function tH(a,b,c){var _=this +_.CW=null +_.x=a +_.a=b +_.b=-1 +_.c=c +_.w=_.r=_.f=_.e=_.d=null}, +Zt:function Zt(a){this.a=a}, +Zv:function Zv(a){this.a=a}, +Zw:function Zw(a){this.a=a}, +r0:function r0(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.e=d +_.f=!1}, +V9:function V9(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +Va:function Va(){}, +YM:function YM(){this.a=null +this.b=!1}, +r_:function r_(){}, +Sq:function Sq(a,b,c,d,e,f){var _=this +_.b=a +_.c=b +_.d=c +_.e=d +_.f=e +_.r=f}, +Sr:function Sr(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g}, +R0:function R0(){}, +Cz:function Cz(a,b){this.b=a +this.c=b +this.a=null}, +Up:function Up(){}, +ER:function ER(a,b,c,d,e){var _=this +_.b=a +_.c=b +_.e=null +_.w=_.r=_.f=0 +_.y=c +_.z=d +_.Q=null +_.as=e}, +lZ:function lZ(a,b){this.b=a +this.c=b +this.d=1}, +lY:function lY(a,b,c){this.a=a +this.b=b +this.c=c}, +a67:function a67(){}, +lB:function lB(a,b){this.a=a +this.b=b}, +cN:function cN(){}, +Dp:function Dp(){}, +dc:function dc(){}, +VA:function VA(){}, +kr:function kr(a,b,c){this.a=a +this.b=b +this.c=c}, +W4:function W4(){}, +tI:function tI(a,b,c,d){var _=this +_.CW=a +_.cy=_.cx=null +_.x=b +_.a=c +_.b=-1 +_.c=d +_.w=_.r=_.f=_.e=_.d=null}, +BJ:function BJ(){}, +SG:function SG(a,b,c){this.a=a +this.b=b +this.c=c}, +SH:function SH(a,b){this.a=a +this.b=b}, +SE:function SE(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +SF:function SF(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +BI:function BI(a){this.a=a}, +uJ:function uJ(a){this.a=a}, +BK:function BK(a,b,c){var _=this +_.a=a +_.c=_.b=!1 +_.d=b +_.e=c}, +kZ:function kZ(a,b){this.a=a +this.b=b}, +a6v:function a6v(){}, +a6w:function a6w(a){this.a=a}, +a6u:function a6u(a){this.a=a}, +a6x:function a6x(){}, +a55:function a55(){}, +a56:function a56(){}, +a6n:function a6n(a,b){this.a=a +this.b=b}, +a6l:function a6l(a,b){this.a=a +this.b=b}, +a6m:function a6m(a){this.a=a}, +a5w:function a5w(){}, +a5x:function a5x(){}, +a5y:function a5y(){}, +a5z:function a5z(){}, +a5A:function a5A(){}, +a5B:function a5B(){}, +a5C:function a5C(){}, +a5D:function a5D(){}, +a5a:function a5a(a,b,c){this.a=a +this.b=b +this.c=c}, +C2:function C2(a){this.a=$ +this.b=a}, +TH:function TH(a){this.a=a}, +TI:function TI(a){this.a=a}, +TJ:function TJ(a){this.a=a}, +TL:function TL(a){this.a=a}, +hd:function hd(a){this.a=a}, +TM:function TM(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=null +_.e=!1 +_.f=d +_.r=e}, +TS:function TS(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +TT:function TT(a){this.a=a}, +TU:function TU(a,b,c){this.a=a +this.b=b +this.c=c}, +TV:function TV(a,b){this.a=a +this.b=b}, +TO:function TO(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +TP:function TP(a,b,c){this.a=a +this.b=b +this.c=c}, +TQ:function TQ(a,b){this.a=a +this.b=b}, +TR:function TR(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +TN:function TN(a,b,c){this.a=a +this.b=b +this.c=c}, +TW:function TW(a,b){this.a=a +this.b=b}, +UE:function UE(){}, +OC:function OC(){}, +tc:function tc(a){var _=this +_.d=a +_.a=_.e=$ +_.c=_.b=!1}, +UO:function UO(){}, +uI:function uI(a,b){var _=this +_.d=a +_.e=b +_.f=null +_.a=$ +_.c=_.b=!1}, +YR:function YR(){}, +YS:function YS(){}, +Su:function Su(){}, +Sw:function Sw(a){this.a=a}, +Sx:function Sx(a,b){this.a=a +this.b=b}, +Sv:function Sv(a,b){this.a=a +this.b=b}, +PK:function PK(a){this.a=a}, +PL:function PL(a){this.a=a}, +VL:function VL(){}, +OD:function OD(){}, +B2:function B2(){this.a=null +this.b=$ +this.c=!1}, +B1:function B1(a){this.a=!1 +this.b=a}, +BG:function BG(a,b){this.a=a +this.b=b +this.c=$}, +B3:function B3(a,b,c,d){var _=this +_.a=a +_.d=b +_.e=c +_.id=_.go=_.fy=_.fx=_.fr=_.dy=_.cy=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=_.y=_.x=_.w=_.r=_.f=null +_.k1=d +_.ry=_.R8=_.p4=_.p3=_.p2=_.k4=_.k3=_.k2=null}, +Rb:function Rb(a,b,c){this.a=a +this.b=b +this.c=c}, +Ra:function Ra(a,b){this.a=a +this.b=b}, +R6:function R6(a,b){this.a=a +this.b=b}, +R7:function R7(a,b){this.a=a +this.b=b}, +R8:function R8(){}, +R9:function R9(a,b){this.a=a +this.b=b}, +R5:function R5(a){this.a=a}, +R4:function R4(a){this.a=a}, +R3:function R3(a){this.a=a}, +Rc:function Rc(a,b){this.a=a +this.b=b}, +a6z:function a6z(a,b,c){this.a=a +this.b=b +this.c=c}, +a6A:function a6A(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +G3:function G3(){}, +Dw:function Dw(a,b,c,d,e,f,g,h){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h}, +VN:function VN(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +VO:function VO(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +VP:function VP(a,b){this.b=a +this.c=b}, +XG:function XG(){}, +XH:function XH(){}, +Dz:function Dz(a,b,c){var _=this +_.a=a +_.c=b +_.d=c +_.e=$}, +W0:function W0(){}, +wi:function wi(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +a0w:function a0w(){}, +a0x:function a0x(a){this.a=a}, +Mk:function Mk(){}, +hT:function hT(a,b){this.a=a +this.b=b}, +ml:function ml(){this.a=0}, +a3y:function a3y(a,b,c,d,e,f){var _=this +_.w=a +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=null +_.r=!1}, +a3A:function a3A(){}, +a3z:function a3z(a,b,c){this.a=a +this.b=b +this.c=c}, +a3B:function a3B(a){this.a=a}, +a3C:function a3C(a){this.a=a}, +a3D:function a3D(a){this.a=a}, +a3E:function a3E(a){this.a=a}, +a3F:function a3F(a){this.a=a}, +a3G:function a3G(a){this.a=a}, +a4z:function a4z(a,b,c,d,e,f){var _=this +_.w=a +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=null +_.r=!1}, +a4A:function a4A(a,b,c){this.a=a +this.b=b +this.c=c}, +a4B:function a4B(a){this.a=a}, +a4C:function a4C(a){this.a=a}, +a4D:function a4D(a){this.a=a}, +a4E:function a4E(a){this.a=a}, +a3f:function a3f(a,b,c,d,e,f){var _=this +_.w=a +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=null +_.r=!1}, +a3g:function a3g(a,b,c){this.a=a +this.b=b +this.c=c}, +a3h:function a3h(a){this.a=a}, +a3i:function a3i(a){this.a=a}, +a3j:function a3j(a){this.a=a}, +a3k:function a3k(a){this.a=a}, +a3l:function a3l(a){this.a=a}, +pn:function pn(a,b){this.a=null +this.b=a +this.c=b}, +VQ:function VQ(a){this.a=a +this.b=0}, +VR:function VR(a,b){this.a=a +this.b=b}, +a8k:function a8k(){}, +Wl:function Wl(a,b){var _=this +_.a=a +_.c=_.b=null +_.d=0 +_.e=b}, +Wm:function Wm(a){this.a=a}, +Wn:function Wn(a){this.a=a}, +Wo:function Wo(a){this.a=a}, +Wq:function Wq(a,b,c){this.a=a +this.b=b +this.c=c}, +Wr:function Wr(a){this.a=a}, +BC:function BC(a){this.a=a}, +BB:function BB(a){var _=this +_.a=a +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=_.y=_.x=_.w=_.r=_.f=_.e=_.d=_.c=null}, +Ve:function Ve(a,b){var _=this +_.b=_.a=null +_.c=a +_.d=b}, +q0:function q0(a,b){this.a=a +this.b=b}, +a6s:function a6s(){}, +NR:function NR(a,b){this.a=a +this.b=b +this.c=!1}, +vG:function vG(a,b){this.a=a +this.b=b}, +mW:function mW(a,b){this.c=a +this.b=b}, +np:function np(a){this.c=null +this.b=a}, +ns:function ns(a,b){var _=this +_.c=a +_.d=1 +_.e=null +_.f=!1 +_.b=b}, +Tg:function Tg(a,b){this.a=a +this.b=b}, +Th:function Th(a){this.a=a}, +nE:function nE(a){this.b=a}, +nI:function nI(a){this.c=null +this.b=a}, +oh:function oh(a,b){var _=this +_.c=null +_.d=a +_.e=null +_.f=0 +_.b=b}, +Yd:function Yd(a){this.a=a}, +Ye:function Ye(a){this.a=a}, +Yf:function Yf(a){this.a=a}, +nd:function nd(a){this.a=a}, +QT:function QT(a){this.a=a}, +EQ:function EQ(a){this.a=a}, +EO:function EO(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9){var _=this +_.a=a +_.b=b +_.c=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.z=i +_.Q=j +_.as=k +_.at=l +_.ax=m +_.ay=n +_.ch=o +_.CW=p +_.cx=q +_.cy=r +_.db=s +_.dx=a0 +_.dy=a1 +_.fr=a2 +_.fx=a3 +_.fy=a4 +_.go=a5 +_.id=a6 +_.k1=a7 +_.k2=a8 +_.k4=a9}, +fF:function fF(a,b){this.a=a +this.b=b}, +a5S:function a5S(){}, +a5T:function a5T(){}, +a5U:function a5U(){}, +a5V:function a5V(){}, +a5W:function a5W(){}, +a5X:function a5X(){}, +a5Y:function a5Y(){}, +a5Z:function a5Z(){}, +eA:function eA(){}, +cp:function cp(a,b,c,d){var _=this +_.a=0 +_.fy=_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=_.y=_.x=_.w=_.r=_.f=_.e=_.d=_.c=_.b=null +_.go=-1 +_.id=a +_.k1=b +_.k2=c +_.k3=-1 +_.p1=_.ok=_.k4=null +_.p2=d +_.p4=_.p3=0}, +NS:function NS(a,b){this.a=a +this.b=b}, +lb:function lb(a,b){this.a=a +this.b=b}, +Rd:function Rd(a,b,c,d,e,f,g,h){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=null +_.f=e +_.r=f +_.w=!1 +_.y=g +_.z=null +_.Q=h}, +Re:function Re(a){this.a=a}, +Rg:function Rg(){}, +Rf:function Rf(a){this.a=a}, +qZ:function qZ(a,b){this.a=a +this.b=b}, +Yw:function Yw(a){this.a=a}, +Ys:function Ys(){}, +PV:function PV(){this.a=null}, +PW:function PW(a){this.a=a}, +Ux:function Ux(){var _=this +_.b=_.a=null +_.c=0 +_.d=!1}, +Uz:function Uz(a){this.a=a}, +Uy:function Uy(a){this.a=a}, +ox:function ox(a){this.c=null +this.b=a}, +ZL:function ZL(a){this.a=a}, +ZM:function ZM(a){this.a=a}, +YG:function YG(a,b,c,d,e,f){var _=this +_.cx=_.CW=_.ch=null +_.a=a +_.b=!1 +_.c=null +_.d=$ +_.y=_.x=_.w=_.r=_.f=_.e=null +_.z=b +_.Q=!1 +_.cb$=c +_.ct$=d +_.J$=e +_.al$=f}, +oA:function oA(a){this.d=this.c=null +this.b=a}, +ZS:function ZS(a){this.a=a}, +ZT:function ZT(a){this.a=a}, +ZU:function ZU(a,b){this.a=a +this.b=b}, +ZV:function ZV(a){this.a=a}, +ZW:function ZW(a){this.a=a}, +ZX:function ZX(a){this.a=a}, +hX:function hX(){}, +Ix:function Ix(){}, +FR:function FR(a,b){this.a=a +this.b=b}, +eW:function eW(a,b){this.a=a +this.b=b}, +Tt:function Tt(){}, +Tv:function Tv(){}, +Zd:function Zd(){}, +Zg:function Zg(a,b){this.a=a +this.b=b}, +Zh:function Zh(){}, +a_Y:function a_Y(a,b,c){var _=this +_.a=!1 +_.b=a +_.c=b +_.d=c}, +DJ:function DJ(a){this.a=a +this.b=0}, +Zx:function Zx(a,b){this.a=a +this.b=b}, +zl:function zl(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=!1 +_.f=null +_.w=_.r=$ +_.x=null +_.y=!1}, +OR:function OR(){}, +tB:function tB(a,b,c){this.a=a +this.b=b +this.c=c}, +os:function os(){}, +zp:function zp(a,b){this.b=a +this.c=b +this.a=null}, +El:function El(a){this.b=a +this.a=null}, +OQ:function OQ(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.r=f +_.w=!0}, +SI:function SI(){this.b=this.a=null}, +RQ:function RQ(a,b){this.a=a +this.b=b}, +RR:function RR(a){this.a=a}, +ZZ:function ZZ(){}, +ZY:function ZY(){}, +U0:function U0(a,b){this.b=a +this.a=b}, +a19:function a19(){}, +fq:function fq(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this +_.qY$=a +_.lk$=b +_.dF$=c +_.hg$=d +_.iS$=e +_.iT$=f +_.iU$=g +_.cU$=h +_.cV$=i +_.c=j +_.d=k +_.e=l +_.f=m +_.r=n +_.w=o +_.a=p +_.b=q}, +a1V:function a1V(){}, +a1W:function a1W(){}, +a1U:function a1U(){}, +AV:function AV(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this +_.qY$=a +_.lk$=b +_.dF$=c +_.hg$=d +_.iS$=e +_.iT$=f +_.iU$=g +_.cU$=h +_.cV$=i +_.c=j +_.d=k +_.e=l +_.f=m +_.r=n +_.w=o +_.a=p +_.b=q}, +ke:function ke(a,b,c){var _=this +_.a=a +_.b=-1 +_.c=0 +_.d=null +_.f=_.e=0 +_.w=_.r=-1 +_.x=!1 +_.y=b +_.z=c +_.as=_.Q=$}, +U3:function U3(a,b,c,d,e,f){var _=this +_.a=a +_.b=null +_.c=b +_.d=c +_.e=d +_.f=e +_.r=f +_.z=_.y=_.x=_.w=0 +_.Q=-1 +_.ax=_.at=_.as=0}, +Fd:function Fd(a){this.a=a +this.c=this.b=null}, +jI:function jI(a,b){this.a=a +this.b=b}, +Rj:function Rj(a){this.a=a}, +a_T:function a_T(a,b){this.b=a +this.a=b}, +jH:function jH(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.a=d +_.b=e}, +a5e:function a5e(a,b,c){this.a=a +this.b=b +this.c=c}, +Er:function Er(a){this.a=a}, +a_h:function a_h(a){this.a=a}, +js:function js(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i}, +hx:function hx(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i}, +r1:function r1(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.z=j +_.Q=k}, +r2:function r2(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=null +_.dy=$}, +v7:function v7(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=$}, +ZP:function ZP(a){this.a=a +this.b=null}, +Fu:function Fu(a,b,c){var _=this +_.a=a +_.b=b +_.d=_.c=$ +_.e=c +_.r=_.f=$}, +nj:function nj(a,b){this.a=a +this.b=b}, +kO:function kO(a,b,c,d){var _=this +_.c=a +_.d=b +_.a=c +_.b=d}, +vH:function vH(a,b){this.a=a +this.b=b}, +bQ:function bQ(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.$ti=d}, +iJ:function iJ(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.$ti=d}, +HV:function HV(a,b,c){this.c=a +this.a=b +this.b=c}, +OB:function OB(a){this.a=a}, +Aa:function Aa(){}, +R1:function R1(){}, +V6:function V6(){}, +Rh:function Rh(){}, +Qp:function Qp(){}, +Sp:function Sp(){}, +V5:function V5(){}, +W5:function W5(){}, +Yh:function Yh(){}, +YI:function YI(){}, +R2:function R2(){}, +V8:function V8(){}, +a_b:function a_b(){}, +Vd:function Vd(){}, +PP:function PP(){}, +VD:function VD(){}, +QN:function QN(){}, +a_M:function a_M(){}, +CD:function CD(){}, +oy:function oy(a,b){this.a=a +this.b=b}, +v5:function v5(a){this.a=a}, +QU:function QU(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +QX:function QX(){}, +QV:function QV(a,b){this.a=a +this.b=b}, +QW:function QW(a,b,c){this.a=a +this.b=b +this.c=c}, +yZ:function yZ(a,b,c,d){var _=this +_.a=a +_.b=b +_.d=c +_.e=d}, +oz:function oz(a,b,c,d,e,f,g,h){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h}, +nb:function nb(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +Tk:function Tk(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i}, +BD:function BD(a,b,c,d,e,f){var _=this +_.a=a +_.b=!1 +_.c=null +_.d=$ +_.y=_.x=_.w=_.r=_.f=_.e=null +_.z=b +_.Q=!1 +_.cb$=c +_.ct$=d +_.J$=e +_.al$=f}, +XF:function XF(a,b,c,d,e,f){var _=this +_.a=a +_.b=!1 +_.c=null +_.d=$ +_.y=_.x=_.w=_.r=_.f=_.e=null +_.z=b +_.Q=!1 +_.cb$=c +_.ct$=d +_.J$=e +_.al$=f}, +qF:function qF(){}, +PR:function PR(a){this.a=a}, +PS:function PS(){}, +PT:function PT(){}, +PU:function PU(){}, +SU:function SU(a,b,c,d,e,f){var _=this +_.ok=null +_.p1=!0 +_.a=a +_.b=!1 +_.c=null +_.d=$ +_.y=_.x=_.w=_.r=_.f=_.e=null +_.z=b +_.Q=!1 +_.cb$=c +_.ct$=d +_.J$=e +_.al$=f}, +SX:function SX(a){this.a=a}, +SY:function SY(a,b){this.a=a +this.b=b}, +SV:function SV(a){this.a=a}, +SW:function SW(a){this.a=a}, +O_:function O_(a,b,c,d,e,f){var _=this +_.a=a +_.b=!1 +_.c=null +_.d=$ +_.y=_.x=_.w=_.r=_.f=_.e=null +_.z=b +_.Q=!1 +_.cb$=c +_.ct$=d +_.J$=e +_.al$=f}, +O0:function O0(a){this.a=a}, +Rp:function Rp(a,b,c,d,e,f){var _=this +_.a=a +_.b=!1 +_.c=null +_.d=$ +_.y=_.x=_.w=_.r=_.f=_.e=null +_.z=b +_.Q=!1 +_.cb$=c +_.ct$=d +_.J$=e +_.al$=f}, +Rr:function Rr(a){this.a=a}, +Rs:function Rs(a){this.a=a}, +Rq:function Rq(a){this.a=a}, +a_0:function a_0(){}, +a_5:function a_5(a,b){this.a=a +this.b=b}, +a_c:function a_c(){}, +a_7:function a_7(a){this.a=a}, +a_a:function a_a(){}, +a_6:function a_6(a){this.a=a}, +a_9:function a_9(a){this.a=a}, +a__:function a__(){}, +a_2:function a_2(){}, +a_8:function a_8(){}, +a_4:function a_4(){}, +a_3:function a_3(){}, +a_1:function a_1(a){this.a=a}, +a6Q:function a6Q(){}, +ZQ:function ZQ(a){this.a=a}, +ZR:function ZR(a){this.a=a}, +SR:function SR(){var _=this +_.a=$ +_.b=null +_.c=!1 +_.d=null +_.f=$}, +ST:function ST(a){this.a=a}, +SS:function SS(a){this.a=a}, +QG:function QG(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +QE:function QE(a,b,c){this.a=a +this.b=b +this.c=c}, +QF:function QF(){}, +vj:function vj(a,b){this.a=a +this.b=b}, +a65:function a65(){}, +Ch:function Ch(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.$ti=d}, +bk:function bk(a){this.a=a}, +mh:function mh(a){this.a=a}, +Rn:function Rn(a){this.a=a +this.c=this.b=0}, +Ao:function Ao(a,b){this.a=a +this.b=$ +this.c=b}, +PG:function PG(a){this.a=a}, +PF:function PF(){}, +PY:function PY(){}, +Bw:function Bw(a){this.a=$ +this.b=a}, +PH:function PH(a,b,c){var _=this +_.d=a +_.a=null +_.w$=b +_.x$=c}, +PI:function PI(a){this.a=a}, +QO:function QO(){}, +a1d:function a1d(){}, +GS:function GS(){}, +RW:function RW(a,b){this.a=null +this.w$=a +this.x$=b}, +RX:function RX(a){this.a=a}, +B0:function B0(){}, +QZ:function QZ(a){this.a=a}, +R_:function R_(a,b){this.a=a +this.b=b}, +B4:function B4(a,b,c,d){var _=this +_.x=null +_.a=a +_.b=b +_.c=null +_.d=c +_.e=$ +_.f=d +_.r=null}, +G4:function G4(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +Hp:function Hp(){}, +Hy:function Hy(){}, +HK:function HK(){}, +IF:function IF(){}, +IG:function IG(){}, +IH:function IH(){}, +Ju:function Ju(){}, +Jv:function Jv(){}, +MA:function MA(){}, +MG:function MG(){}, +a81:function a81(){}, +aqX(){return $}, +bt(a,b,c){if(b.h("P<0>").b(a))return new A.vY(a,b.h("@<0>").ab(c).h("vY<1,2>")) +return new A.kT(a,b.h("@<0>").ab(c).h("kT<1,2>"))}, +abL(a){return new A.ho("Field '"+a+"' has been assigned during initialization.")}, +fp(a){return new A.ho("Field '"+a+"' has not been initialized.")}, +hp(a){return new A.ho("Local '"+a+"' has not been initialized.")}, +al9(a){return new A.ho("Field '"+a+"' has already been initialized.")}, +TY(a){return new A.ho("Local '"+a+"' has already been initialized.")}, +ajf(a){return new A.jn(a)}, +a6o(a){var s,r=a^48 +if(r<=9)return r +s=a|32 +if(97<=s&&s<=102)return s-87 +return-1}, +arS(a,b){var s=A.a6o(B.d.ah(a,b)),r=A.a6o(B.d.ah(a,b+1)) +return s*16+r-(r&256)}, +t(a,b){a=a+b&536870911 +a=a+((a&524287)<<10)&536870911 +return a^a>>>6}, +d3(a){a=a+((a&67108863)<<3)&536870911 +a^=a>>>11 +return a+((a&16383)<<15)&536870911}, +anm(a,b,c){return A.d3(A.t(A.t(c,a),b))}, +ann(a,b,c,d,e){return A.d3(A.t(A.t(A.t(A.t(e,a),b),c),d))}, +f4(a,b,c){return a}, +a9z(a){var s,r +for(s=$.mz.length,r=0;rc)A.a2(A.bE(b,0,c,"start",null))}return new A.fL(a,b,c,d.h("fL<0>"))}, +t_(a,b,c,d){if(t.he.b(a))return new A.l0(a,b,c.h("@<0>").ab(d).h("l0<1,2>")) +return new A.dN(a,b,c.h("@<0>").ab(d).h("dN<1,2>"))}, +anp(a,b,c){var s="takeCount" +A.mK(b,s) +A.dA(b,s) +if(t.he.b(a))return new A.qX(a,b,c.h("qX<0>")) +return new A.m9(a,b,c.h("m9<0>"))}, +ad5(a,b,c){var s="count" +if(t.he.b(a)){A.mK(b,s) +A.dA(b,s) +return new A.nc(a,b,c.h("nc<0>"))}A.mK(b,s) +A.dA(b,s) +return new A.iB(a,b,c.h("iB<0>"))}, +abk(a,b,c){if(c.h("P<0>").b(b))return new A.qW(a,b,c.h("qW<0>")) +return new A.ih(a,b,c.h("ih<0>"))}, +bJ(){return new A.fK("No element")}, +abE(){return new A.fK("Too many elements")}, +abD(){return new A.fK("Too few elements")}, +anb(a,b){A.F9(a,0,J.bh(a)-1,b)}, +F9(a,b,c,d){if(c-b<=32)A.Fb(a,b,c,d) +else A.Fa(a,b,c,d)}, +Fb(a,b,c,d){var s,r,q,p,o +for(s=b+1,r=J.aC(a);s<=c;++s){q=r.i(a,s) +p=s +while(!0){if(!(p>b&&d.$2(r.i(a,p-1),q)>0))break +o=p-1 +r.l(a,p,r.i(a,o)) +p=o}r.l(a,p,q)}}, +Fa(a3,a4,a5,a6){var s,r,q,p,o,n,m,l,k,j,i=B.f.cq(a5-a4+1,6),h=a4+i,g=a5-i,f=B.f.cq(a4+a5,2),e=f-i,d=f+i,c=J.aC(a3),b=c.i(a3,h),a=c.i(a3,e),a0=c.i(a3,f),a1=c.i(a3,d),a2=c.i(a3,g) +if(a6.$2(b,a)>0){s=a +a=b +b=s}if(a6.$2(a1,a2)>0){s=a2 +a2=a1 +a1=s}if(a6.$2(b,a0)>0){s=a0 +a0=b +b=s}if(a6.$2(a,a0)>0){s=a0 +a0=a +a=s}if(a6.$2(b,a1)>0){s=a1 +a1=b +b=s}if(a6.$2(a0,a1)>0){s=a1 +a1=a0 +a0=s}if(a6.$2(a,a2)>0){s=a2 +a2=a +a=s}if(a6.$2(a,a0)>0){s=a0 +a0=a +a=s}if(a6.$2(a1,a2)>0){s=a2 +a2=a1 +a1=s}c.l(a3,h,b) +c.l(a3,f,a0) +c.l(a3,g,a2) +c.l(a3,e,c.i(a3,a4)) +c.l(a3,d,c.i(a3,a5)) +r=a4+1 +q=a5-1 +if(J.e(a6.$2(a,a1),0)){for(p=r;p<=q;++p){o=c.i(a3,p) +n=a6.$2(o,a) +if(n===0)continue +if(n<0){if(p!==r){c.l(a3,p,c.i(a3,r)) +c.l(a3,r,o)}++r}else for(;!0;){n=a6.$2(c.i(a3,q),a) +if(n>0){--q +continue}else{m=q-1 +if(n<0){c.l(a3,p,c.i(a3,r)) +l=r+1 +c.l(a3,r,c.i(a3,q)) +c.l(a3,q,o) +q=m +r=l +break}else{c.l(a3,p,c.i(a3,q)) +c.l(a3,q,o) +q=m +break}}}}k=!0}else{for(p=r;p<=q;++p){o=c.i(a3,p) +if(a6.$2(o,a)<0){if(p!==r){c.l(a3,p,c.i(a3,r)) +c.l(a3,r,o)}++r}else if(a6.$2(o,a1)>0)for(;!0;)if(a6.$2(c.i(a3,q),a1)>0){--q +if(qg){for(;J.e(a6.$2(c.i(a3,r),a),0);)++r +for(;J.e(a6.$2(c.i(a3,q),a1),0);)--q +for(p=r;p<=q;++p){o=c.i(a3,p) +if(a6.$2(o,a)===0){if(p!==r){c.l(a3,p,c.i(a3,r)) +c.l(a3,r,o)}++r}else if(a6.$2(o,a1)===0)for(;!0;)if(a6.$2(c.i(a3,q),a1)===0){--q +if(q")),!0,b),n=o.length,m=0 +while(!0){if(!(m").ab(c).h("aW<1,2>"))}return new A.kW(A.alb(a,b,c),b.h("@<0>").ab(c).h("kW<1,2>"))}, +a7A(){throw A.d(A.T("Cannot modify unmodifiable Map"))}, +akN(a){if(typeof a=="number")return B.c.gu(a) +if(t.of.b(a))return a.gu(a) +if(t.n.b(a))return A.fy(a) +return A.pH(a)}, +akO(a){return new A.S4(a)}, +ag4(a){var s=v.mangledGlobalNames[a] +if(s!=null)return s +return"minified:"+a}, +afC(a,b){var s +if(b!=null){s=b.x +if(s!=null)return s}return t.Eh.b(a)}, +h(a){var s +if(typeof a=="string")return a +if(typeof a=="number"){if(a!==0)return""+a}else if(!0===a)return"true" +else if(!1===a)return"false" +else if(a==null)return"null" +s=J.dr(a) +return s}, +I(a,b,c,d,e,f){return new A.rF(a,c,d,e,f)}, +avY(a,b,c,d,e,f){return new A.rF(a,c,d,e,f)}, +fy(a){var s,r=$.aco +if(r==null)r=$.aco=Symbol("identityHashCode") +s=a[r] +if(s==null){s=Math.random()*0x3fffffff|0 +a[r]=s}return s}, +acq(a,b){var s,r,q,p,o,n=null,m=/^\s*[+-]?((0x[a-f0-9]+)|(\d+)|([a-z0-9]+))\s*$/i.exec(a) +if(m==null)return n +s=m[3] +if(b==null){if(s!=null)return parseInt(a,10) +if(m[2]!=null)return parseInt(a,16) +return n}if(b<2||b>36)throw A.d(A.bE(b,2,36,"radix",n)) +if(b===10&&s!=null)return parseInt(a,10) +if(b<10||s==null){r=b<=10?47+b:86+b +q=m[1] +for(p=q.length,o=0;or)return n}return parseInt(a,b)}, +acp(a){var s,r +if(!/^\s*[+-]?(?:Infinity|NaN|(?:\.\d+|\d+(?:\.\d*)?)(?:[eE][+-]?\d+)?)\s*$/.test(a))return null +s=parseFloat(a) +if(isNaN(s)){r=B.d.Kg(a) +if(r==="NaN"||r==="+NaN"||r==="-NaN")return s +return null}return s}, +Wa(a){return A.amd(a)}, +amd(a){var s,r,q,p +if(a instanceof A.E)return A.ef(A.b9(a),null) +s=J.i0(a) +if(s===B.zE||s===B.zL||t.qF.b(a)){r=B.iL(a) +if(r!=="Object"&&r!=="")return r +q=a.constructor +if(typeof q=="function"){p=q.name +if(typeof p=="string"&&p!=="Object"&&p!=="")return p}}return A.ef(A.b9(a),null)}, +acr(a){if(a==null||typeof a=="number"||A.pB(a))return J.dr(a) +if(typeof a=="string")return JSON.stringify(a) +if(a instanceof A.jm)return a.j(0) +if(a instanceof A.wL)return a.F3(!0) +return"Instance of '"+A.Wa(a)+"'"}, +amf(){return Date.now()}, +amn(){var s,r +if($.Wb!==0)return +$.Wb=1000 +if(typeof window=="undefined")return +s=window +if(s==null)return +if(!!s.dartUseDateNowForTicks)return +r=s.performance +if(r==null)return +if(typeof r.now!="function")return +$.Wb=1e6 +$.DD=new A.W9(r)}, +acn(a){var s,r,q,p,o=a.length +if(o<=500)return String.fromCharCode.apply(null,a) +for(s="",r=0;r65535)return A.amo(a)}return A.acn(a)}, +amp(a,b,c){var s,r,q,p +if(c<=500&&b===0&&c===a.length)return String.fromCharCode.apply(null,a) +for(s=b,r="";s>>0,s&1023|56320)}}throw A.d(A.bE(a,0,1114111,null,null))}, +ez(a){if(a.date===void 0)a.date=new Date(a.a) +return a.date}, +amm(a){return a.b?A.ez(a).getUTCFullYear()+0:A.ez(a).getFullYear()+0}, +amk(a){return a.b?A.ez(a).getUTCMonth()+1:A.ez(a).getMonth()+1}, +amg(a){return a.b?A.ez(a).getUTCDate()+0:A.ez(a).getDate()+0}, +amh(a){return a.b?A.ez(a).getUTCHours()+0:A.ez(a).getHours()+0}, +amj(a){return a.b?A.ez(a).getUTCMinutes()+0:A.ez(a).getMinutes()+0}, +aml(a){return a.b?A.ez(a).getUTCSeconds()+0:A.ez(a).getSeconds()+0}, +ami(a){return a.b?A.ez(a).getUTCMilliseconds()+0:A.ez(a).getMilliseconds()+0}, +jY(a,b,c){var s,r,q={} +q.a=0 +s=[] +r=[] +q.a=b.length +B.b.I(s,b) +q.b="" +if(c!=null&&c.a!==0)c.P(0,new A.W8(q,r,s)) +return J.aik(a,new A.rF(B.Hi,0,s,r,0))}, +ame(a,b,c){var s,r,q +if(Array.isArray(b))s=c==null||c.a===0 +else s=!1 +if(s){r=b.length +if(r===0){if(!!a.$0)return a.$0()}else if(r===1){if(!!a.$1)return a.$1(b[0])}else if(r===2){if(!!a.$2)return a.$2(b[0],b[1])}else if(r===3){if(!!a.$3)return a.$3(b[0],b[1],b[2])}else if(r===4){if(!!a.$4)return a.$4(b[0],b[1],b[2],b[3])}else if(r===5)if(!!a.$5)return a.$5(b[0],b[1],b[2],b[3],b[4]) +q=a[""+"$"+r] +if(q!=null)return q.apply(a,b)}return A.amc(a,b,c)}, +amc(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g=Array.isArray(b)?b:A.aw(b,!0,t.z),f=g.length,e=a.$R +if(fn)return A.jY(a,g,null) +if(fe)return A.jY(a,g,c) +if(g===b)g=A.aw(g,!0,t.z) +l=Object.keys(q) +if(c==null)for(r=l.length,k=0;k=s)return A.c5(b,s,a,null,r) +return A.Wi(b,r)}, +ar5(a,b,c){if(a>c)return A.bE(a,0,c,"start",null) +if(b!=null)if(bc)return A.bE(b,a,c,"end",null) +return new A.fb(!0,b,"end",null)}, +mx(a){return new A.fb(!0,a,null,null)}, +kC(a){return a}, +d(a){var s,r +if(a==null)a=new A.iH() +s=new Error() +s.dartException=a +r=A.ash +if("defineProperty" in Object){Object.defineProperty(s,"message",{get:r}) +s.name=""}else s.toString=r +return s}, +ash(){return J.dr(this.dartException)}, +a2(a){throw A.d(a)}, +H(a){throw A.d(A.bj(a))}, +iI(a){var s,r,q,p,o,n +a=A.a9G(a.replace(String({}),"$receiver$")) +s=a.match(/\\\$[a-zA-Z]+\\\$/g) +if(s==null)s=A.a([],t.s) +r=s.indexOf("\\$arguments\\$") +q=s.indexOf("\\$argumentsExpr\\$") +p=s.indexOf("\\$expr\\$") +o=s.indexOf("\\$method\\$") +n=s.indexOf("\\$receiver\\$") +return new A.a_C(a.replace(new RegExp("\\\\\\$arguments\\\\\\$","g"),"((?:x|[^x])*)").replace(new RegExp("\\\\\\$argumentsExpr\\\\\\$","g"),"((?:x|[^x])*)").replace(new RegExp("\\\\\\$expr\\\\\\$","g"),"((?:x|[^x])*)").replace(new RegExp("\\\\\\$method\\\\\\$","g"),"((?:x|[^x])*)").replace(new RegExp("\\\\\\$receiver\\\\\\$","g"),"((?:x|[^x])*)"),r,q,p,o,n)}, +a_D(a){return function($expr$){var $argumentsExpr$="$arguments$" +try{$expr$.$method$($argumentsExpr$)}catch(s){return s.message}}(a)}, +ads(a){return function($expr$){try{$expr$.$method$}catch(s){return s.message}}(a)}, +a82(a,b){var s=b==null,r=s?null:b.method +return new A.BY(a,r,s?null:b.receiver)}, +ah(a){if(a==null)return new A.CS(a) +if(a instanceof A.r5)return A.kI(a,a.a) +if(typeof a!=="object")return a +if("dartException" in a)return A.kI(a,a.dartException) +return A.aqk(a)}, +kI(a,b){if(t.yt.b(b))if(b.$thrownJsError==null)b.$thrownJsError=a +return b}, +aqk(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=null +if(!("message" in a))return a +s=a.message +if("number" in a&&typeof a.number=="number"){r=a.number +q=r&65535 +if((B.f.fk(r,16)&8191)===10)switch(q){case 438:return A.kI(a,A.a82(A.h(s)+" (Error "+q+")",e)) +case 445:case 5007:p=A.h(s) +return A.kI(a,new A.tp(p+" (Error "+q+")",e))}}if(a instanceof TypeError){o=$.agB() +n=$.agC() +m=$.agD() +l=$.agE() +k=$.agH() +j=$.agI() +i=$.agG() +$.agF() +h=$.agK() +g=$.agJ() +f=o.hp(s) +if(f!=null)return A.kI(a,A.a82(s,f)) +else{f=n.hp(s) +if(f!=null){f.method="call" +return A.kI(a,A.a82(s,f))}else{f=m.hp(s) +if(f==null){f=l.hp(s) +if(f==null){f=k.hp(s) +if(f==null){f=j.hp(s) +if(f==null){f=i.hp(s) +if(f==null){f=l.hp(s) +if(f==null){f=h.hp(s) +if(f==null){f=g.hp(s) +p=f!=null}else p=!0}else p=!0}else p=!0}else p=!0}else p=!0}else p=!0}else p=!0 +if(p)return A.kI(a,new A.tp(s,f==null?e:f.method))}}return A.kI(a,new A.FU(typeof s=="string"?s:""))}if(a instanceof RangeError){if(typeof s=="string"&&s.indexOf("call stack")!==-1)return new A.uU() +s=function(b){try{return String(b)}catch(d){}return null}(a) +return A.kI(a,new A.fb(!1,e,e,typeof s=="string"?s.replace(/^RangeError:\s*/,""):s))}if(typeof InternalError=="function"&&a instanceof InternalError)if(typeof s=="string"&&s==="too much recursion")return new A.uU() +return a}, +aJ(a){var s +if(a instanceof A.r5)return a.b +if(a==null)return new A.xw(a) +s=a.$cachedTrace +if(s!=null)return s +return a.$cachedTrace=new A.xw(a)}, +pH(a){if(a==null||typeof a!="object")return J.p(a) +else return A.fy(a)}, +afp(a,b){var s,r,q,p=a.length +for(s=0;s=0}, +ar8(a){if(a.indexOf("$",0)>=0)return a.replace(/\$/g,"$$$$") +return a}, +a9G(a){if(/[[\]{}()*+?.\\^$|]/.test(a))return a.replace(/[[\]{}()*+?.\\^$|]/g,"\\$&") +return a}, +afY(a,b,c){var s=A.as4(a,b,c) +return s}, +as4(a,b,c){var s,r,q +if(b===""){if(a==="")return c +s=a.length +r=""+c +for(q=0;q=0)return a.split(b).join(c) +return a.replace(new RegExp(A.a9G(b),"g"),A.ar8(c))}, +as5(a,b,c,d){var s=a.indexOf(b,d) +if(s<0)return a +return A.afZ(a,s,s+b.length,c)}, +afZ(a,b,c,d){return a.substring(0,b)+d+a.substring(c)}, +mq:function mq(a,b){this.a=a +this.b=b}, +wO:function wO(a,b){this.a=a +this.b=b}, +wP:function wP(a,b,c){this.a=a +this.b=b +this.c=c}, +wQ:function wQ(a,b,c){this.a=a +this.b=b +this.c=c}, +kW:function kW(a,b){this.a=a +this.$ti=b}, +n2:function n2(){}, +Pu:function Pu(a,b,c){this.a=a +this.b=b +this.c=c}, +aW:function aW(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.$ti=d}, +Pv:function Pv(a){this.a=a}, +vL:function vL(a,b){this.a=a +this.$ti=b}, +bq:function bq(a,b){this.a=a +this.$ti=b}, +S4:function S4(a){this.a=a}, +rF:function rF(a,b,c,d,e){var _=this +_.a=a +_.c=b +_.d=c +_.e=d +_.f=e}, +W9:function W9(a){this.a=a}, +W8:function W8(a,b,c){this.a=a +this.b=b +this.c=c}, +a_C:function a_C(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +tp:function tp(a,b){this.a=a +this.b=b}, +BY:function BY(a,b,c){this.a=a +this.b=b +this.c=c}, +FU:function FU(a){this.a=a}, +CS:function CS(a){this.a=a}, +r5:function r5(a,b){this.a=a +this.b=b}, +xw:function xw(a){this.a=a +this.b=null}, +jm:function jm(){}, +A6:function A6(){}, +A7:function A7(){}, +Fs:function Fs(){}, +Fj:function Fj(){}, +mS:function mS(a,b){this.a=a +this.b=b}, +Hh:function Hh(a){this.a=a}, +Es:function Es(a){this.a=a}, +a3S:function a3S(){}, +e4:function e4(a){var _=this +_.a=0 +_.f=_.e=_.d=_.c=_.b=null +_.r=0 +_.$ti=a}, +TB:function TB(a){this.a=a}, +TA:function TA(a,b){this.a=a +this.b=b}, +Tz:function Tz(a){this.a=a}, +U5:function U5(a,b){var _=this +_.a=a +_.b=b +_.d=_.c=null}, +aT:function aT(a,b){this.a=a +this.$ti=b}, +rQ:function rQ(a,b){var _=this +_.a=a +_.b=b +_.d=_.c=null}, +a6p:function a6p(a){this.a=a}, +a6q:function a6q(a){this.a=a}, +a6r:function a6r(a){this.a=a}, +wL:function wL(){}, +wM:function wM(){}, +wN:function wN(){}, +Tx:function Tx(a,b){var _=this +_.a=a +_.b=b +_.d=_.c=null}, +wl:function wl(a){this.b=a}, +a01:function a01(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=null}, +uX:function uX(a,b){this.a=a +this.c=b}, +Lm:function Lm(a,b,c){this.a=a +this.b=b +this.c=c}, +a4s:function a4s(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=null}, +ase(a){return A.a2(A.abL(a))}, +c(){return A.a2(A.fp(""))}, +dj(){return A.a2(A.al9(""))}, +ap(){return A.a2(A.abL(""))}, +b_(a){var s=new A.a16(a) +return s.b=s}, +a16:function a16(a){this.a=a +this.b=null}, +Nj(a,b,c){}, +pz(a){var s,r,q +if(t.CP.b(a))return a +s=J.aC(a) +r=A.aU(s.gp(a),null,!1,t.z) +for(q=0;q>>0!==a||a>=c)throw A.d(A.my(b,a))}, +kv(a,b,c){var s +if(!(a>>>0!==a))if(b==null)s=a>c +else s=b>>>0!==b||a>b||b>c +else s=!0 +if(s)throw A.d(A.ar5(a,b,c)) +if(b==null)return c +return b}, +te:function te(){}, +ti:function ti(){}, +tf:function tf(){}, +nS:function nS(){}, +jP:function jP(){}, +ex:function ex(){}, +tg:function tg(){}, +CG:function CG(){}, +CH:function CH(){}, +th:function th(){}, +CI:function CI(){}, +CJ:function CJ(){}, +CK:function CK(){}, +tj:function tj(){}, +lw:function lw(){}, +ww:function ww(){}, +wx:function wx(){}, +wy:function wy(){}, +wz:function wz(){}, +acI(a,b){var s=b.c +return s==null?b.c=A.a90(a,b.y,!0):s}, +a8q(a,b){var s=b.c +return s==null?b.c=A.xL(a,"ad",[b.y]):s}, +acJ(a){var s=a.x +if(s===6||s===7||s===8)return A.acJ(a.y) +return s===12||s===13}, +amF(a){return a.at}, +a_(a){return A.Mc(v.typeUniverse,a,!1)}, +kA(a,b,a0,a1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=b.x +switch(c){case 5:case 1:case 2:case 3:case 4:return b +case 6:s=b.y +r=A.kA(a,s,a0,a1) +if(r===s)return b +return A.ae1(a,r,!0) +case 7:s=b.y +r=A.kA(a,s,a0,a1) +if(r===s)return b +return A.a90(a,r,!0) +case 8:s=b.y +r=A.kA(a,s,a0,a1) +if(r===s)return b +return A.ae0(a,r,!0) +case 9:q=b.z +p=A.ym(a,q,a0,a1) +if(p===q)return b +return A.xL(a,b.y,p) +case 10:o=b.y +n=A.kA(a,o,a0,a1) +m=b.z +l=A.ym(a,m,a0,a1) +if(n===o&&l===m)return b +return A.a8Z(a,n,l) +case 12:k=b.y +j=A.kA(a,k,a0,a1) +i=b.z +h=A.aqe(a,i,a0,a1) +if(j===k&&h===i)return b +return A.ae_(a,j,h) +case 13:g=b.z +a1+=g.length +f=A.ym(a,g,a0,a1) +o=b.y +n=A.kA(a,o,a0,a1) +if(f===g&&n===o)return b +return A.a9_(a,n,f,!0) +case 14:e=b.y +if(e") +for(r=1;r=0)p+=" "+r[q];++q}return p+"})"}, +aeA(a3,a4,a5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2=", " +if(a5!=null){s=a5.length +if(a4==null){a4=A.a([],t.s) +r=null}else r=a4.length +q=a4.length +for(p=s;p>0;--p)a4.push("T"+(q+p)) +for(o=t.X,n=t.tw,m="<",l="",p=0;p0){a0+=a1+"[" +for(a1="",p=0;p0){a0+=a1+"{" +for(a1="",p=0;p "+a}, +ef(a,b){var s,r,q,p,o,n,m=a.x +if(m===5)return"erased" +if(m===2)return"dynamic" +if(m===3)return"void" +if(m===1)return"Never" +if(m===4)return"any" +if(m===6){s=A.ef(a.y,b) +return s}if(m===7){r=a.y +s=A.ef(r,b) +q=r.x +return(q===12||q===13?"("+s+")":s)+"?"}if(m===8)return"FutureOr<"+A.ef(a.y,b)+">" +if(m===9){p=A.aqi(a.y) +o=a.z +return o.length>0?p+("<"+A.aeU(o,b)+">"):p}if(m===11)return A.aq8(a,b) +if(m===12)return A.aeA(a,b,null) +if(m===13)return A.aeA(a.y,b,a.z) +if(m===14){n=a.y +return b[b.length-1-n]}return"?"}, +aqi(a){var s=v.mangledGlobalNames[a] +if(s!=null)return s +return"minified:"+a}, +aoG(a,b){var s=a.tR[b] +for(;typeof s=="string";)s=a.tR[s] +return s}, +aoF(a,b){var s,r,q,p,o,n=a.eT,m=n[b] +if(m==null)return A.Mc(a,b,!1) +else if(typeof m=="number"){s=m +r=A.xM(a,5,"#") +q=A.a4Q(s) +for(p=0;p0)p+="<"+A.xK(c)+">" +s=a.eC.get(p) +if(s!=null)return s +r=new A.eZ(null,null) +r.x=9 +r.y=b +r.z=c +if(c.length>0)r.c=c[0] +r.at=p +q=A.iZ(a,r) +a.eC.set(p,q) +return q}, +a8Z(a,b,c){var s,r,q,p,o,n +if(b.x===10){s=b.y +r=b.z.concat(c)}else{r=c +s=b}q=s.at+(";<"+A.xK(r)+">") +p=a.eC.get(q) +if(p!=null)return p +o=new A.eZ(null,null) +o.x=10 +o.y=s +o.z=r +o.at=q +n=A.iZ(a,o) +a.eC.set(q,n) +return n}, +aoC(a,b,c){var s,r,q="+"+(b+"("+A.xK(c)+")"),p=a.eC.get(q) +if(p!=null)return p +s=new A.eZ(null,null) +s.x=11 +s.y=b +s.z=c +s.at=q +r=A.iZ(a,s) +a.eC.set(q,r) +return r}, +ae_(a,b,c){var s,r,q,p,o,n=b.at,m=c.a,l=m.length,k=c.b,j=k.length,i=c.c,h=i.length,g="("+A.xK(m) +if(j>0){s=l>0?",":"" +g+=s+"["+A.xK(k)+"]"}if(h>0){s=l>0?",":"" +g+=s+"{"+A.aow(i)+"}"}r=n+(g+")") +q=a.eC.get(r) +if(q!=null)return q +p=new A.eZ(null,null) +p.x=12 +p.y=b +p.z=c +p.at=r +o=A.iZ(a,p) +a.eC.set(r,o) +return o}, +a9_(a,b,c,d){var s,r=b.at+("<"+A.xK(c)+">"),q=a.eC.get(r) +if(q!=null)return q +s=A.aoy(a,b,c,r,d) +a.eC.set(r,s) +return s}, +aoy(a,b,c,d,e){var s,r,q,p,o,n,m,l +if(e){s=c.length +r=A.a4Q(s) +for(q=0,p=0;p0){n=A.kA(a,b,r,0) +m=A.ym(a,c,r,0) +return A.a9_(a,n,m,c!==m)}}l=new A.eZ(null,null) +l.x=13 +l.y=b +l.z=c +l.at=d +return A.iZ(a,l)}, +adP(a,b,c,d){return{u:a,e:b,r:c,s:[],p:0,n:d}}, +adR(a){var s,r,q,p,o,n,m,l=a.r,k=a.s +for(s=l.length,r=0;r=48&&q<=57)r=A.aoe(r+1,q,l,k) +else if((((q|32)>>>0)-97&65535)<26||q===95||q===36||q===124)r=A.adQ(a,r,l,k,!1) +else if(q===46)r=A.adQ(a,r,l,k,!0) +else{++r +switch(q){case 44:break +case 58:k.push(!1) +break +case 33:k.push(!0) +break +case 59:k.push(A.kq(a.u,a.e,k.pop())) +break +case 94:k.push(A.aoB(a.u,k.pop())) +break +case 35:k.push(A.xM(a.u,5,"#")) +break +case 64:k.push(A.xM(a.u,2,"@")) +break +case 126:k.push(A.xM(a.u,3,"~")) +break +case 60:k.push(a.p) +a.p=k.length +break +case 62:A.aog(a,k) +break +case 38:A.aof(a,k) +break +case 42:p=a.u +k.push(A.ae1(p,A.kq(p,a.e,k.pop()),a.n)) +break +case 63:p=a.u +k.push(A.a90(p,A.kq(p,a.e,k.pop()),a.n)) +break +case 47:p=a.u +k.push(A.ae0(p,A.kq(p,a.e,k.pop()),a.n)) +break +case 40:k.push(-3) +k.push(a.p) +a.p=k.length +break +case 41:A.aod(a,k) +break +case 91:k.push(a.p) +a.p=k.length +break +case 93:o=k.splice(a.p) +A.adS(a.u,a.e,o) +a.p=k.pop() +k.push(o) +k.push(-1) +break +case 123:k.push(a.p) +a.p=k.length +break +case 125:o=k.splice(a.p) +A.aoi(a.u,a.e,o) +a.p=k.pop() +k.push(o) +k.push(-2) +break +case 43:n=l.indexOf("(",r) +k.push(l.substring(r,n)) +k.push(-4) +k.push(a.p) +a.p=k.length +r=n+1 +break +default:throw"Bad character "+q}}}m=k.pop() +return A.kq(a.u,a.e,m)}, +aoe(a,b,c,d){var s,r,q=b-48 +for(s=c.length;a=48&&r<=57))break +q=q*10+(r-48)}d.push(q) +return a}, +adQ(a,b,c,d,e){var s,r,q,p,o,n,m=b+1 +for(s=c.length;m>>0)-97&65535)<26||r===95||r===36||r===124))q=r>=48&&r<=57 +else q=!0 +if(!q)break}}p=c.substring(b,m) +if(e){s=a.u +o=a.e +if(o.x===10)o=o.y +n=A.aoG(s,o.y)[p] +if(n==null)A.a2('No "'+p+'" in "'+A.amF(o)+'"') +d.push(A.xN(s,o,n))}else d.push(p) +return m}, +aog(a,b){var s,r=a.u,q=A.adO(a,b),p=b.pop() +if(typeof p=="string")b.push(A.xL(r,p,q)) +else{s=A.kq(r,a.e,p) +switch(s.x){case 12:b.push(A.a9_(r,s,q,a.n)) +break +default:b.push(A.a8Z(r,s,q)) +break}}}, +aod(a,b){var s,r,q,p,o,n=null,m=a.u,l=b.pop() +if(typeof l=="number")switch(l){case-1:s=b.pop() +r=n +break +case-2:r=b.pop() +s=n +break +default:b.push(l) +r=n +s=r +break}else{b.push(l) +r=n +s=r}q=A.adO(a,b) +l=b.pop() +switch(l){case-3:l=b.pop() +if(s==null)s=m.sEA +if(r==null)r=m.sEA +p=A.kq(m,a.e,l) +o=new A.I8() +o.a=q +o.b=s +o.c=r +b.push(A.ae_(m,p,o)) +return +case-4:b.push(A.aoC(m,b.pop(),q)) +return +default:throw A.d(A.mL("Unexpected state under `()`: "+A.h(l)))}}, +aof(a,b){var s=b.pop() +if(0===s){b.push(A.xM(a.u,1,"0&")) +return}if(1===s){b.push(A.xM(a.u,4,"1&")) +return}throw A.d(A.mL("Unexpected extended operation "+A.h(s)))}, +adO(a,b){var s=b.splice(a.p) +A.adS(a.u,a.e,s) +a.p=b.pop() +return s}, +kq(a,b,c){if(typeof c=="string")return A.xL(a,c,a.sEA) +else if(typeof c=="number"){b.toString +return A.aoh(a,b,c)}else return c}, +adS(a,b,c){var s,r=c.length +for(s=0;sn)return!1 +m=n-o +l=s.b +k=r.b +j=l.length +i=k.length +if(o+j=d)return!1 +a1=f[b] +b+=3 +if(a00?new Array(q):v.typeUniverse.sEA +for(o=0;o0?new Array(a):v.typeUniverse.sEA}, +eZ:function eZ(a,b){var _=this +_.a=a +_.b=b +_.w=_.r=_.c=null +_.x=0 +_.at=_.as=_.Q=_.z=_.y=null}, +I8:function I8(){this.c=this.b=this.a=null}, +M8:function M8(a){this.a=a}, +HM:function HM(){}, +xJ:function xJ(a){this.a=a}, +ars(a,b){var s,r +if(B.d.c3(a,"Digit"))return B.d.a8(a,5) +s=B.d.a8(b,0) +if(b.length<=1)r=!(s>=32&&s<=127) +else r=!0 +if(r){r=B.h0.i(0,a) +return r==null?null:B.d.a8(r,0)}if(!(s>=$.ahr()&&s<=$.ahs()))r=s>=$.ahC()&&s<=$.ahD() +else r=!0 +if(r)return B.d.a8(b.toLowerCase(),0) +return null}, +aos(a){var s=A.y(t.S,t.N) +s.FL(s,B.h0.ge7(B.h0).fG(0,new A.a4u(),t.ou)) +return new A.a4t(a,s)}, +aqh(a){var s,r,q,p,o,n=a.JB(),m=A.y(t.N,t.S) +for(s=a.a,r=0;r=2)return null +return B.d.a8(a.toLowerCase(),0)}, +a4t:function a4t(a,b){this.a=a +this.b=b +this.c=0}, +a4u:function a4u(){}, +rV:function rV(a){this.a=a}, +ba:function ba(a,b){this.a=a +this.b=b}, +cq:function cq(a,b){this.a=a +this.b=b}, +ao_(){var s,r,q={} +if(self.scheduleImmediate!=null)return A.aqr() +if(self.MutationObserver!=null&&self.document!=null){s=self.document.createElement("div") +r=self.document.createElement("span") +q.a=null +new self.MutationObserver(A.yr(new A.a0m(q),1)).observe(s,{childList:true}) +return new A.a0l(q,s,r)}else if(self.setImmediate!=null)return A.aqs() +return A.aqt()}, +ao0(a){self.scheduleImmediate(A.yr(new A.a0n(a),0))}, +ao1(a){self.setImmediate(A.yr(new A.a0o(a),0))}, +ao2(a){A.a8K(B.r,a)}, +a8K(a,b){var s=B.f.cq(a.a,1000) +return A.aot(s<0?0:s,b)}, +aot(a,b){var s=new A.LH(!0) +s.Pw(a,b) +return s}, +Y(a){return new A.Gq(new A.ai($.ab,a.h("ai<0>")),a.h("Gq<0>"))}, +X(a,b){a.$2(0,null) +b.b=!0 +return b.a}, +a1(a,b){A.aoW(a,b)}, +W(a,b){b.cH(0,a)}, +V(a,b){b.np(A.ah(a),A.aJ(a))}, +aoW(a,b){var s,r,q=new A.a57(b),p=new A.a58(b) +if(a instanceof A.ai)a.F_(q,p,t.z) +else{s=t.z +if(t.o0.b(a))a.ec(q,p,s) +else{r=new A.ai($.ab,t.hR) +r.a=8 +r.c=a +r.F_(q,p,s)}}}, +Z(a){var s=function(b,c){return function(d,e){while(true)try{b(d,e) +break}catch(r){e=r +d=c}}}(a,1) +return $.ab.t1(new A.a62(s))}, +auf(a){return new A.pd(a,1)}, +a2D(){return B.Nf}, +a2E(a){return new A.pd(a,3)}, +a5J(a,b){return new A.xD(a,b.h("xD<0>"))}, +Og(a,b){var s=A.f4(a,"error",t.K) +return new A.yV(s,b==null?A.Oh(a):b)}, +Oh(a){var s +if(t.yt.b(a)){s=a.gmg() +if(s!=null)return s}return B.xb}, +akM(a,b){var s=new A.ai($.ab,b.h("ai<0>")) +A.c8(B.r,new A.S1(s,a)) +return s}, +cJ(a,b){var s=a==null?b.a(a):a,r=new A.ai($.ab,b.h("ai<0>")) +r.ju(s) +return r}, +a7U(a,b,c){var s +A.f4(a,"error",t.K) +$.ab!==B.a7 +if(b==null)b=A.Oh(a) +s=new A.ai($.ab,c.h("ai<0>")) +s.pe(a,b) +return s}, +S_(a,b){var s,r=!b.b(null) +if(r)throw A.d(A.h0(null,"computation","The type parameter is not nullable")) +s=new A.ai($.ab,b.h("ai<0>")) +A.c8(a,new A.S0(null,s,b)) +return s}, +nk(a,b){var s,r,q,p,o,n,m,l,k,j,i={},h=null,g=!1,f=new A.ai($.ab,b.h("ai>")) +i.a=null +i.b=0 +s=A.b_("error") +r=A.b_("stackTrace") +q=new A.S3(i,h,g,f,s,r) +try{for(l=J.am(a),k=t.P;l.t();){p=l.gC(l) +o=i.b +p.ec(new A.S2(i,o,f,h,g,s,r,b),q,k);++i.b}l=i.b +if(l===0){l=f +l.mw(A.a([],b.h("v<0>"))) +return l}i.a=A.aU(l,null,!1,b.h("0?"))}catch(j){n=A.ah(j) +m=A.aJ(j) +if(i.b===0||g)return A.a7U(n,m,b.h("B<0>")) +else{s.b=n +r.b=m}}return f}, +akL(a,b,c,d){var s,r,q=new A.RZ(d,null,b,c) +if(a instanceof A.ai){s=$.ab +r=new A.ai(s,c.h("ai<0>")) +if(s!==B.a7)q=s.t1(q) +a.kE(new A.f3(r,2,null,q,a.$ti.h("@<1>").ab(c).h("f3<1,2>"))) +return r}return a.ec(new A.RY(c),q,c)}, +ajk(a){return new A.bp(new A.ai($.ab,a.h("ai<0>")),a.h("bp<0>"))}, +ap6(a,b,c){if(c==null)c=A.Oh(b) +a.eH(b,c)}, +a2_(a,b){var s,r +for(;s=a.a,(s&4)!==0;)a=a.c +if((s&24)!==0){r=b.pS() +b.ux(a) +A.p5(b,r)}else{r=b.c +b.a=b.a&1|4 +b.c=a +a.DU(r)}}, +p5(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f={},e=f.a=a +for(s=t.o0;!0;){r={} +q=e.a +p=(q&16)===0 +o=!p +if(b==null){if(o&&(q&1)===0){e=e.c +A.yl(e.a,e.b)}return}r.a=b +n=b.a +for(e=b;n!=null;e=n,n=m){e.a=null +A.p5(f.a,e) +r.a=n +m=n.a}q=f.a +l=q.c +r.b=o +r.c=l +if(p){k=e.c +k=(k&1)!==0||(k&15)===8}else k=!0 +if(k){j=e.b.b +if(o){q=q.b===j +q=!(q||q)}else q=!1 +if(q){A.yl(l.a,l.b) +return}i=$.ab +if(i!==j)$.ab=j +else i=null +e=e.c +if((e&15)===8)new A.a27(r,f,o).$0() +else if(p){if((e&1)!==0)new A.a26(r,l).$0()}else if((e&2)!==0)new A.a25(f,r).$0() +if(i!=null)$.ab=i +e=r.c +if(s.b(e)){q=r.a.$ti +q=q.h("ad<2>").b(e)||!q.z[1].b(e)}else q=!1 +if(q){h=r.a.b +if(e instanceof A.ai)if((e.a&24)!==0){g=h.c +h.c=null +b=h.pV(g) +h.a=e.a&30|h.a&1 +h.c=e.c +f.a=e +continue}else A.a2_(e,h) +else h.uq(e) +return}}h=r.a.b +g=h.c +h.c=null +b=h.pV(g) +e=r.b +q=r.c +if(!e){h.a=8 +h.c=q}else{h.a=h.a&1|16 +h.c=q}f.a=h +e=h}}, +aeR(a,b){if(t.nW.b(a))return b.t1(a) +if(t.in.b(a))return a +throw A.d(A.h0(a,"onError",u.w))}, +aq1(){var s,r +for(s=$.pC;s!=null;s=$.pC){$.yk=null +r=s.b +$.pC=r +if(r==null)$.yj=null +s.a.$0()}}, +aqd(){$.a9g=!0 +try{A.aq1()}finally{$.yk=null +$.a9g=!1 +if($.pC!=null)$.a9Z().$1(A.af4())}}, +aeX(a){var s=new A.Gr(a),r=$.yj +if(r==null){$.pC=$.yj=s +if(!$.a9g)$.a9Z().$1(A.af4())}else $.yj=r.b=s}, +aqa(a){var s,r,q,p=$.pC +if(p==null){A.aeX(a) +$.yk=$.yj +return}s=new A.Gr(a) +r=$.yk +if(r==null){s.b=p +$.pC=$.yk=s}else{q=r.b +s.b=q +$.yk=r.b=s +if(q==null)$.yj=s}}, +f7(a){var s,r=null,q=$.ab +if(B.a7===q){A.kz(r,r,B.a7,a) +return}s=!1 +if(s){A.kz(r,r,q,a) +return}A.kz(r,r,q,q.wQ(a))}, +atK(a){A.f4(a,"stream",t.K) +return new A.Lk()}, +adb(a){return new A.vy(null,null,a.h("vy<0>"))}, +Nq(a){var s,r,q +if(a==null)return +try{a.$0()}catch(q){s=A.ah(q) +r=A.aJ(q) +A.yl(s,r)}}, +ao3(a,b,c,d,e){var s=$.ab,r=e?1:0,q=A.adG(s,b) +A.adH(s,c) +return new A.vN(a,q,d==null?A.af3():d,s,r)}, +adG(a,b){return b}, +adH(a,b){if(b==null)b=A.aqu() +if(t.sp.b(b))return a.t1(b) +if(t.eC.b(b))return b +throw A.d(A.cy("handleError callback must take either an Object (the error), or both an Object (the error) and a StackTrace.",null))}, +aq6(a,b){A.yl(a,b)}, +aq5(){}, +c8(a,b){var s=$.ab +if(s===B.a7)return A.a8K(a,b) +return A.a8K(a,s.wQ(b))}, +yl(a,b){A.aqa(new A.a6_(a,b))}, +aeS(a,b,c,d){var s,r=$.ab +if(r===c)return d.$0() +$.ab=c +s=r +try{r=d.$0() +return r}finally{$.ab=s}}, +aeT(a,b,c,d,e){var s,r=$.ab +if(r===c)return d.$1(e) +$.ab=c +s=r +try{r=d.$1(e) +return r}finally{$.ab=s}}, +aq9(a,b,c,d,e,f){var s,r=$.ab +if(r===c)return d.$2(e,f) +$.ab=c +s=r +try{r=d.$2(e,f) +return r}finally{$.ab=s}}, +kz(a,b,c,d){if(B.a7!==c)d=c.wQ(d) +A.aeX(d)}, +a0m:function a0m(a){this.a=a}, +a0l:function a0l(a,b,c){this.a=a +this.b=b +this.c=c}, +a0n:function a0n(a){this.a=a}, +a0o:function a0o(a){this.a=a}, +LH:function LH(a){this.a=a +this.b=null +this.c=0}, +a4v:function a4v(a,b){this.a=a +this.b=b}, +Gq:function Gq(a,b){this.a=a +this.b=!1 +this.$ti=b}, +a57:function a57(a){this.a=a}, +a58:function a58(a){this.a=a}, +a62:function a62(a){this.a=a}, +pd:function pd(a,b){this.a=a +this.b=b}, +fU:function fU(a){var _=this +_.a=a +_.d=_.c=_.b=null}, +xD:function xD(a,b){this.a=a +this.$ti=b}, +yV:function yV(a,b){this.a=a +this.b=b}, +iO:function iO(a,b){this.a=a +this.$ti=b}, +vC:function vC(a,b,c,d,e,f){var _=this +_.ay=0 +_.CW=_.ch=null +_.w=a +_.a=b +_.c=c +_.d=d +_.e=e +_.r=_.f=null +_.$ti=f}, +vB:function vB(){}, +vy:function vy(a,b,c){var _=this +_.a=a +_.b=b +_.c=0 +_.r=_.e=_.d=null +_.$ti=c}, +S1:function S1(a,b){this.a=a +this.b=b}, +S0:function S0(a,b,c){this.a=a +this.b=b +this.c=c}, +S3:function S3(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +S2:function S2(a,b,c,d,e,f,g,h){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h}, +RZ:function RZ(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +RY:function RY(a){this.a=a}, +GP:function GP(){}, +bp:function bp(a,b){this.a=a +this.$ti=b}, +f3:function f3(a,b,c,d,e){var _=this +_.a=null +_.b=a +_.c=b +_.d=c +_.e=d +_.$ti=e}, +ai:function ai(a,b){var _=this +_.a=0 +_.b=a +_.c=null +_.$ti=b}, +a1X:function a1X(a,b){this.a=a +this.b=b}, +a24:function a24(a,b){this.a=a +this.b=b}, +a20:function a20(a){this.a=a}, +a21:function a21(a){this.a=a}, +a22:function a22(a,b,c){this.a=a +this.b=b +this.c=c}, +a1Z:function a1Z(a,b){this.a=a +this.b=b}, +a23:function a23(a,b){this.a=a +this.b=b}, +a1Y:function a1Y(a,b,c){this.a=a +this.b=b +this.c=c}, +a27:function a27(a,b,c){this.a=a +this.b=b +this.c=c}, +a28:function a28(a){this.a=a}, +a26:function a26(a,b){this.a=a +this.b=b}, +a25:function a25(a,b){this.a=a +this.b=b}, +Gr:function Gr(a){this.a=a +this.b=null}, +iD:function iD(){}, +Zl:function Zl(a,b){this.a=a +this.b=b}, +Zm:function Zm(a,b){this.a=a +this.b=b}, +xz:function xz(){}, +a4q:function a4q(a){this.a=a}, +a4p:function a4p(a){this.a=a}, +Gs:function Gs(){}, +oU:function oU(a,b,c,d,e){var _=this +_.a=null +_.b=0 +_.c=null +_.d=a +_.e=b +_.f=c +_.r=d +_.$ti=e}, +ki:function ki(a,b){this.a=a +this.$ti=b}, +vN:function vN(a,b,c,d,e){var _=this +_.w=a +_.a=b +_.c=c +_.d=d +_.e=e +_.r=_.f=null}, +GF:function GF(){}, +a0B:function a0B(a){this.a=a}, +xA:function xA(){}, +Hr:function Hr(){}, +oZ:function oZ(a){this.b=a +this.a=null}, +a1C:function a1C(){}, +wJ:function wJ(){this.a=0 +this.c=this.b=null}, +a3x:function a3x(a,b){this.a=a +this.b=b}, +vS:function vS(a,b){this.a=a +this.b=0 +this.c=b}, +Lk:function Lk(){}, +a4X:function a4X(){}, +a6_:function a6_(a,b){this.a=a +this.b=b}, +a3W:function a3W(){}, +a3X:function a3X(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +a3Y:function a3Y(a,b){this.a=a +this.b=b}, +ij(a,b){return new A.mn(a.h("@<0>").ab(b).h("mn<1,2>"))}, +a8Q(a,b){var s=a[b] +return s===a?null:s}, +a8S(a,b,c){if(c==null)a[b]=a +else a[b]=c}, +a8R(){var s=Object.create(null) +A.a8S(s,"",s) +delete s[""] +return s}, +jJ(a,b,c,d){var s +if(b==null){if(a==null)return new A.e4(c.h("@<0>").ab(d).h("e4<1,2>")) +s=A.af9()}else{if(a==null)a=A.aqE() +s=A.af9()}return A.aoa(s,a,b,c,d)}, +aL(a,b,c){return A.afp(a,new A.e4(b.h("@<0>").ab(c).h("e4<1,2>")))}, +y(a,b){return new A.e4(a.h("@<0>").ab(b).h("e4<1,2>"))}, +aoa(a,b,c,d,e){var s=c!=null?c:new A.a2L(d) +return new A.wg(a,b,s,d.h("@<0>").ab(e).h("wg<1,2>"))}, +cK(a){return new A.hQ(a.h("hQ<0>"))}, +a8T(){var s=Object.create(null) +s[""]=s +delete s[""] +return s}, +fs(a){return new A.ec(a.h("ec<0>"))}, +az(a){return new A.ec(a.h("ec<0>"))}, +cA(a,b){return A.ara(a,new A.ec(b.h("ec<0>")))}, +a8U(){var s=Object.create(null) +s[""]=s +delete s[""] +return s}, +dV(a,b){var s=new A.km(a,b) +s.c=a.e +return s}, +apf(a,b){return J.e(a,b)}, +apg(a){return J.p(a)}, +alb(a,b,c){var s=A.jJ(null,null,b,c) +a.P(0,new A.U6(s,b,c)) +return s}, +nF(a,b,c){var s=A.jJ(null,null,b,c) +s.I(0,a) +return s}, +nG(a,b){var s,r=A.fs(b) +for(s=J.am(a);s.t();)r.B(0,b.a(s.gC(s))) +return r}, +hq(a,b){var s=A.fs(b) +s.I(0,a) +return s}, +aob(a){return new A.wh(a,a.a,a.c)}, +a87(a){var s,r={} +if(A.a9z(a))return"{...}" +s=new A.ch("") +try{$.mz.push(a) +s.a+="{" +r.a=!0 +J.pI(a,new A.Ug(r,s)) +s.a+="}"}finally{$.mz.pop()}r=s.a +return r.charCodeAt(0)==0?r:r}, +ak9(a){var s=new A.mm(a.h("mm<0>")) +s.a=s +s.b=s +return new A.l_(s,a.h("l_<0>"))}, +jK(a,b){return new A.rS(A.aU(A.ald(a),null,!1,b.h("0?")),b.h("rS<0>"))}, +ald(a){if(a==null||a<8)return 8 +else if((a&a-1)>>>0!==0)return A.abO(a) +return a}, +abO(a){var s +a=(a<<1>>>0)-1 +for(;!0;a=s){s=(a&a-1)>>>0 +if(s===0)return a}}, +a91(){throw A.d(A.T("Cannot change an unmodifiable set"))}, +apj(a,b){return J.NP(a,b)}, +ape(a){if(a.h("o(0,0)").b(A.afd()))return A.afd() +return A.aqF()}, +a8z(a,b){var s=A.ape(a) +return new A.uS(s,new A.Z5(a),a.h("@<0>").ab(b).h("uS<1,2>"))}, +Z6(a,b,c){var s=b==null?new A.Z9(c):b +return new A.or(a,s,c.h("or<0>"))}, +mn:function mn(a){var _=this +_.a=0 +_.e=_.d=_.c=_.b=null +_.$ti=a}, +a2b:function a2b(a){this.a=a}, +p9:function p9(a){var _=this +_.a=0 +_.e=_.d=_.c=_.b=null +_.$ti=a}, +mo:function mo(a,b){this.a=a +this.$ti=b}, +w7:function w7(a,b){var _=this +_.a=a +_.b=b +_.c=0 +_.d=null}, +wg:function wg(a,b,c,d){var _=this +_.w=a +_.x=b +_.y=c +_.a=0 +_.f=_.e=_.d=_.c=_.b=null +_.r=0 +_.$ti=d}, +a2L:function a2L(a){this.a=a}, +hQ:function hQ(a){var _=this +_.a=0 +_.e=_.d=_.c=_.b=null +_.$ti=a}, +kk:function kk(a,b){var _=this +_.a=a +_.b=b +_.c=0 +_.d=null}, +ec:function ec(a){var _=this +_.a=0 +_.f=_.e=_.d=_.c=_.b=null +_.r=0 +_.$ti=a}, +a2M:function a2M(a){this.a=a +this.c=this.b=null}, +km:function km(a,b){var _=this +_.a=a +_.b=b +_.d=_.c=null}, +U6:function U6(a,b,c){this.a=a +this.b=b +this.c=c}, +rR:function rR(a){var _=this +_.b=_.a=0 +_.c=null +_.$ti=a}, +wh:function wh(a,b,c){var _=this +_.a=a +_.b=b +_.c=null +_.d=c +_.e=!1}, +lm:function lm(){}, +R:function R(){}, +aq:function aq(){}, +Uf:function Uf(a){this.a=a}, +Ug:function Ug(a,b){this.a=a +this.b=b}, +wk:function wk(a,b){this.a=a +this.$ti=b}, +IQ:function IQ(a,b){this.a=a +this.b=b +this.c=null}, +Md:function Md(){}, +rZ:function rZ(){}, +mg:function mg(a,b){this.a=a +this.$ti=b}, +vU:function vU(){}, +vT:function vT(a,b,c){var _=this +_.c=a +_.d=b +_.b=_.a=null +_.$ti=c}, +mm:function mm(a){this.b=this.a=null +this.$ti=a}, +l_:function l_(a,b){this.a=a +this.b=0 +this.$ti=b}, +HF:function HF(a,b){this.a=a +this.b=b +this.c=null}, +rS:function rS(a,b){var _=this +_.a=a +_.d=_.c=_.b=0 +_.$ti=b}, +IN:function IN(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=null}, +hD:function hD(){}, +mr:function mr(){}, +Me:function Me(){}, +cr:function cr(a,b){this.a=a +this.$ti=b}, +Lg:function Lg(){}, +dX:function dX(a,b){var _=this +_.a=a +_.c=_.b=null +_.$ti=b}, +dG:function dG(a,b,c){var _=this +_.d=a +_.a=b +_.c=_.b=null +_.$ti=c}, +Lf:function Lf(){}, +uS:function uS(a,b,c){var _=this +_.d=null +_.e=a +_.f=b +_.c=_.b=_.a=0 +_.$ti=c}, +Z5:function Z5(a){this.a=a}, +hU:function hU(){}, +iW:function iW(a,b){this.a=a +this.$ti=b}, +mt:function mt(a,b){this.a=a +this.$ti=b}, +xr:function xr(a,b){this.a=a +this.$ti=b}, +iX:function iX(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=null +_.d=c +_.$ti=d}, +xv:function xv(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=null +_.d=c +_.$ti=d}, +ms:function ms(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=null +_.d=c +_.$ti=d}, +or:function or(a,b,c){var _=this +_.d=null +_.e=a +_.f=b +_.c=_.b=_.a=0 +_.$ti=c}, +Z9:function Z9(a){this.a=a}, +Z8:function Z8(a,b){this.a=a +this.b=b}, +Z7:function Z7(a,b){this.a=a +this.b=b}, +xs:function xs(){}, +xt:function xt(){}, +xu:function xu(){}, +xO:function xO(){}, +yd:function yd(){}, +aq7(a,b){var s,r,q,p=null +try{p=JSON.parse(a)}catch(r){s=A.ah(r) +q=A.bY(String(s),null,null) +throw A.d(q)}q=A.a5h(p) +return q}, +a5h(a){var s +if(a==null)return null +if(typeof a!="object")return a +if(Object.getPrototypeOf(a)!==Array.prototype)return new A.IA(a,Object.create(null)) +for(s=0;s=0)return null +return r}return null}, +anT(a,b,c,d){var s=a?$.agM():$.agL() +if(s==null)return null +if(0===c&&d===b.length)return A.adw(s,b) +return A.adw(s,b.subarray(c,A.d_(c,d,b.length,null,null)))}, +adw(a,b){var s,r +try{s=a.decode(b) +return s}catch(r){}return null}, +aas(a,b,c,d,e,f){if(B.f.cv(f,4)!==0)throw A.d(A.bY("Invalid base64 padding, padded length must be multiple of four, is "+f,a,c)) +if(d+e!==f)throw A.d(A.bY("Invalid base64 padding, '=' not at the end",a,b)) +if(e>2)throw A.d(A.bY("Invalid base64 padding, more than two '=' characters",a,b))}, +abK(a,b,c){return new A.rI(a,b)}, +aph(a){return a.zv()}, +ao8(a,b){return new A.a2H(a,[],A.aqO())}, +ao9(a,b,c){var s,r=new A.ch(""),q=A.ao8(r,b) +q.tf(a) +s=r.a +return s.charCodeAt(0)==0?s:s}, +aoQ(a){switch(a){case 65:return"Missing extension byte" +case 67:return"Unexpected extension byte" +case 69:return"Invalid UTF-8 byte" +case 71:return"Overlong encoding" +case 73:return"Out of unicode range" +case 75:return"Encoded surrogate" +case 77:return"Unfinished UTF-8 octet sequence" +default:return""}}, +aoP(a,b,c){var s,r,q,p=c-b,o=new Uint8Array(p) +for(s=J.aC(a),r=0;r>>0!==0?255:q}return o}, +IA:function IA(a,b){this.a=a +this.b=b +this.c=null}, +a2G:function a2G(a){this.a=a}, +IB:function IB(a){this.a=a}, +a_R:function a_R(){}, +a_Q:function a_Q(){}, +Op:function Op(){}, +Oq:function Oq(){}, +A8:function A8(){}, +Ad:function Ad(){}, +QP:function QP(){}, +rI:function rI(a,b){this.a=a +this.b=b}, +BZ:function BZ(a,b){this.a=a +this.b=b}, +TC:function TC(){}, +TE:function TE(a){this.b=a}, +TD:function TD(a){this.a=a}, +a2I:function a2I(){}, +a2J:function a2J(a,b){this.a=a +this.b=b}, +a2H:function a2H(a,b,c){this.c=a +this.a=b +this.b=c}, +a_O:function a_O(){}, +a_S:function a_S(){}, +a4P:function a4P(a){this.b=0 +this.c=a}, +a_P:function a_P(a){this.a=a}, +a4O:function a4O(a){this.a=a +this.b=16 +this.c=0}, +akw(){return new A.r9(new WeakMap())}, +Ba(a){if(typeof a=="number"||typeof a=="string"||!1)A.nf(a)}, +nf(a){throw A.d(A.h0(a,"object","Expandos are not allowed on strings, numbers, bools, records or null"))}, +j5(a,b){var s=A.acq(a,b) +if(s!=null)return s +throw A.d(A.bY(a,null,null))}, +ar7(a){var s=A.acp(a) +if(s!=null)return s +throw A.d(A.bY("Invalid double",a,null))}, +akv(a,b){a=A.d(a) +a.stack=b.j(0) +throw a +throw A.d("unreachable")}, +ajy(a,b){var s +if(Math.abs(a)<=864e13)s=!1 +else s=!0 +if(s)A.a2(A.cy("DateTime is outside valid range: "+a,null)) +A.f4(!0,"isUtc",t.y) +return new A.el(a,!0)}, +aU(a,b,c,d){var s,r=c?J.rD(a,d):J.a7Z(a,d) +if(a!==0&&b!=null)for(s=0;s")) +for(s=J.am(a);s.t();)r.push(s.gC(s)) +if(b)return r +return J.Ts(r)}, +aw(a,b,c){var s +if(b)return A.abP(a,c) +s=J.Ts(A.abP(a,c)) +return s}, +abP(a,b){var s,r +if(Array.isArray(a))return A.a(a.slice(0),b.h("v<0>")) +s=A.a([],b.h("v<0>")) +for(r=J.am(a);r.t();)s.push(r.gC(r)) +return s}, +U7(a,b){return J.abH(A.nH(a,!1,b))}, +Zp(a,b,c){var s,r,q=null +if(Array.isArray(a)){s=a +r=s.length +c=A.d_(b,c,r,q,q) +return A.acs(b>0||c>>4]&1<<(o&15))!==0)p+=A.bv(o) +else p=d&&o===32?p+"+":p+"%"+n[o>>>4&15]+n[o&15]}return p.charCodeAt(0)==0?p:p}, +anf(){var s,r +if($.ahg())return A.aJ(new Error()) +try{throw A.d("")}catch(r){s=A.aJ(r) +return s}}, +ajj(a,b){return J.NP(a,b)}, +ajx(a,b){var s +if(Math.abs(a)<=864e13)s=!1 +else s=!0 +if(s)A.a2(A.cy("DateTime is outside valid range: "+a,null)) +A.f4(b,"isUtc",t.y) +return new A.el(a,b)}, +ajz(a){var s=Math.abs(a),r=a<0?"-":"" +if(s>=1000)return""+a +if(s>=100)return r+"0"+s +if(s>=10)return r+"00"+s +return r+"000"+s}, +ajA(a){if(a>=100)return""+a +if(a>=10)return"0"+a +return"00"+a}, +Ar(a){if(a>=10)return""+a +return"0"+a}, +c4(a,b){return new A.aQ(a+1000*b)}, +aku(a,b){var s,r +for(s=0;s<3;++s){r=a[s] +if(r.b===b)return r}throw A.d(A.h0(b,"name","No enum value with that name"))}, +l1(a){if(typeof a=="number"||A.pB(a)||a==null)return J.dr(a) +if(typeof a=="string")return JSON.stringify(a) +return A.acr(a)}, +mL(a){return new A.kN(a)}, +cy(a,b){return new A.fb(!1,null,b,a)}, +h0(a,b,c){return new A.fb(!0,a,b,c)}, +mK(a,b){return a}, +Wi(a,b){return new A.tS(null,null,!0,a,b,"Value not in range")}, +bE(a,b,c,d,e){return new A.tS(b,c,!0,a,d,"Invalid value")}, +acx(a,b,c,d){if(ac)throw A.d(A.bE(a,b,c,d,null)) +return a}, +d_(a,b,c,d,e){if(0>a||a>c)throw A.d(A.bE(a,0,c,d==null?"start":d,null)) +if(b!=null){if(a>b||b>c)throw A.d(A.bE(b,a,c,e==null?"end":e,null)) +return b}return c}, +dA(a,b){if(a<0)throw A.d(A.bE(a,0,null,b,null)) +return a}, +abz(a,b){var s=b.b +return new A.ry(s,!0,a,null,"Index out of range")}, +c5(a,b,c,d,e){return new A.ry(b,!0,a,e,"Index out of range")}, +akX(a,b,c,d){if(0>a||a>=b)throw A.d(A.c5(a,b,c,null,d==null?"index":d)) +return a}, +T(a){return new A.FW(a)}, +c9(a){return new A.oL(a)}, +a5(a){return new A.fK(a)}, +bj(a){return new A.Ab(a)}, +bV(a){return new A.HN(a)}, +bY(a,b,c){return new A.jv(a,b,c)}, +abF(a,b,c){var s,r +if(A.a9z(a)){if(b==="("&&c===")")return"(...)" +return b+"..."+c}s=A.a([],t.s) +$.mz.push(a) +try{A.apV(a,s)}finally{$.mz.pop()}r=A.a8B(b,s,", ")+c +return r.charCodeAt(0)==0?r:r}, +ny(a,b,c){var s,r +if(A.a9z(a))return b+"..."+c +s=new A.ch(b) +$.mz.push(a) +try{r=s +r.a=A.a8B(r.a,a,", ")}finally{$.mz.pop()}s.a+=c +r=s.a +return r.charCodeAt(0)==0?r:r}, +apV(a,b){var s,r,q,p,o,n,m,l=J.am(a),k=0,j=0 +while(!0){if(!(k<80||j<3))break +if(!l.t())return +s=A.h(l.gC(l)) +b.push(s) +k+=s.length+2;++j}if(!l.t()){if(j<=5)return +r=b.pop() +q=b.pop()}else{p=l.gC(l);++j +if(!l.t()){if(j<=4){b.push(A.h(p)) +return}r=A.h(p) +q=b.pop() +k+=r.length+2}else{o=l.gC(l);++j +for(;l.t();p=o,o=n){n=l.gC(l);++j +if(j>100){while(!0){if(!(k>75&&j>3))break +k-=b.pop().length+2;--j}b.push("...") +return}}q=A.h(p) +r=A.h(o) +k+=r.length+q.length+4}}if(j>b.length+2){k+=5 +m="..."}else m=null +while(!0){if(!(k>80&&b.length>3))break +k-=b.pop().length+2 +if(m==null){k+=5 +m="..."}}if(m!=null)b.push(m) +b.push(q) +b.push(r)}, +abT(a,b,c,d,e){return new A.kU(a,b.h("@<0>").ab(c).ab(d).ab(e).h("kU<1,2,3,4>"))}, +L(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,a0,a1){var s +if(B.a===c)return A.anm(J.p(a),J.p(b),$.cU()) +if(B.a===d){s=J.p(a) +b=J.p(b) +c=J.p(c) +return A.d3(A.t(A.t(A.t($.cU(),s),b),c))}if(B.a===e)return A.ann(J.p(a),J.p(b),J.p(c),J.p(d),$.cU()) +if(B.a===f){s=J.p(a) +b=J.p(b) +c=J.p(c) +d=J.p(d) +e=J.p(e) +return A.d3(A.t(A.t(A.t(A.t(A.t($.cU(),s),b),c),d),e))}if(B.a===g){s=J.p(a) +b=J.p(b) +c=J.p(c) +d=J.p(d) +e=J.p(e) +f=J.p(f) +return A.d3(A.t(A.t(A.t(A.t(A.t(A.t($.cU(),s),b),c),d),e),f))}if(B.a===h){s=J.p(a) +b=J.p(b) +c=J.p(c) +d=J.p(d) +e=J.p(e) +f=J.p(f) +g=J.p(g) +return A.d3(A.t(A.t(A.t(A.t(A.t(A.t(A.t($.cU(),s),b),c),d),e),f),g))}if(B.a===i){s=J.p(a) +b=J.p(b) +c=J.p(c) +d=J.p(d) +e=J.p(e) +f=J.p(f) +g=J.p(g) +h=J.p(h) +return A.d3(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t($.cU(),s),b),c),d),e),f),g),h))}if(B.a===j){s=J.p(a) +b=J.p(b) +c=J.p(c) +d=J.p(d) +e=J.p(e) +f=J.p(f) +g=J.p(g) +h=J.p(h) +i=J.p(i) +return A.d3(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t($.cU(),s),b),c),d),e),f),g),h),i))}if(B.a===k){s=J.p(a) +b=J.p(b) +c=J.p(c) +d=J.p(d) +e=J.p(e) +f=J.p(f) +g=J.p(g) +h=J.p(h) +i=J.p(i) +j=J.p(j) +return A.d3(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t($.cU(),s),b),c),d),e),f),g),h),i),j))}if(B.a===l){s=J.p(a) +b=J.p(b) +c=J.p(c) +d=J.p(d) +e=J.p(e) +f=J.p(f) +g=J.p(g) +h=J.p(h) +i=J.p(i) +j=J.p(j) +k=J.p(k) +return A.d3(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t($.cU(),s),b),c),d),e),f),g),h),i),j),k))}if(B.a===m){s=J.p(a) +b=J.p(b) +c=J.p(c) +d=J.p(d) +e=J.p(e) +f=J.p(f) +g=J.p(g) +h=J.p(h) +i=J.p(i) +j=J.p(j) +k=J.p(k) +l=J.p(l) +return A.d3(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t($.cU(),s),b),c),d),e),f),g),h),i),j),k),l))}if(B.a===n){s=J.p(a) +b=J.p(b) +c=J.p(c) +d=J.p(d) +e=J.p(e) +f=J.p(f) +g=J.p(g) +h=J.p(h) +i=J.p(i) +j=J.p(j) +k=J.p(k) +l=J.p(l) +m=J.p(m) +return A.d3(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t($.cU(),s),b),c),d),e),f),g),h),i),j),k),l),m))}if(B.a===o){s=J.p(a) +b=J.p(b) +c=J.p(c) +d=J.p(d) +e=J.p(e) +f=J.p(f) +g=J.p(g) +h=J.p(h) +i=J.p(i) +j=J.p(j) +k=J.p(k) +l=J.p(l) +m=J.p(m) +n=J.p(n) +return A.d3(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t($.cU(),s),b),c),d),e),f),g),h),i),j),k),l),m),n))}if(B.a===p){s=J.p(a) +b=J.p(b) +c=J.p(c) +d=J.p(d) +e=J.p(e) +f=J.p(f) +g=J.p(g) +h=J.p(h) +i=J.p(i) +j=J.p(j) +k=J.p(k) +l=J.p(l) +m=J.p(m) +n=J.p(n) +o=J.p(o) +return A.d3(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t($.cU(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o))}if(B.a===q){s=J.p(a) +b=J.p(b) +c=J.p(c) +d=J.p(d) +e=J.p(e) +f=J.p(f) +g=J.p(g) +h=J.p(h) +i=J.p(i) +j=J.p(j) +k=J.p(k) +l=J.p(l) +m=J.p(m) +n=J.p(n) +o=J.p(o) +p=J.p(p) +return A.d3(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t($.cU(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o),p))}if(B.a===r){s=J.p(a) +b=J.p(b) +c=J.p(c) +d=J.p(d) +e=J.p(e) +f=J.p(f) +g=J.p(g) +h=J.p(h) +i=J.p(i) +j=J.p(j) +k=J.p(k) +l=J.p(l) +m=J.p(m) +n=J.p(n) +o=J.p(o) +p=J.p(p) +q=J.p(q) +return A.d3(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t($.cU(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o),p),q))}if(B.a===a0){s=J.p(a) +b=J.p(b) +c=J.p(c) +d=J.p(d) +e=J.p(e) +f=J.p(f) +g=J.p(g) +h=J.p(h) +i=J.p(i) +j=J.p(j) +k=J.p(k) +l=J.p(l) +m=J.p(m) +n=J.p(n) +o=J.p(o) +p=J.p(p) +q=J.p(q) +r=J.p(r) +return A.d3(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t($.cU(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o),p),q),r))}if(B.a===a1){s=J.p(a) +b=J.p(b) +c=J.p(c) +d=J.p(d) +e=J.p(e) +f=J.p(f) +g=J.p(g) +h=J.p(h) +i=J.p(i) +j=J.p(j) +k=J.p(k) +l=J.p(l) +m=J.p(m) +n=J.p(n) +o=J.p(o) +p=J.p(p) +q=J.p(q) +r=J.p(r) +a0=J.p(a0) +return A.d3(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t($.cU(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o),p),q),r),a0))}s=J.p(a) +b=J.p(b) +c=J.p(c) +d=J.p(d) +e=J.p(e) +f=J.p(f) +g=J.p(g) +h=J.p(h) +i=J.p(i) +j=J.p(j) +k=J.p(k) +l=J.p(l) +m=J.p(m) +n=J.p(n) +o=J.p(o) +p=J.p(p) +q=J.p(q) +r=J.p(r) +a0=J.p(a0) +a1=J.p(a1) +return A.d3(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t(A.t($.cU(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o),p),q),r),a0),a1))}, +cl(a){var s,r=$.cU() +for(s=J.am(a);s.t();)r=A.t(r,J.p(s.gC(s))) +return A.d3(r)}, +NC(a){A.afR(A.h(a))}, +YL(a,b,c,d){return new A.i6(a,b,c.h("@<0>").ab(d).h("i6<1,2>"))}, +anh(){$.NH() +return new A.uV()}, +ap5(a,b){return 65536+((a&1023)<<10)+(b&1023)}, +a_J(a5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3=null,a4=a5.length +if(a4>=5){s=((B.d.a8(a5,4)^58)*3|B.d.a8(a5,0)^100|B.d.a8(a5,1)^97|B.d.a8(a5,2)^116|B.d.a8(a5,3)^97)>>>0 +if(s===0)return A.adu(a4=14)r[7]=a4 +q=r[1] +if(q>=0)if(A.aeW(a5,0,q,20,r)===20)r[7]=q +p=r[2]+1 +o=r[3] +n=r[4] +m=r[5] +l=r[6] +if(lq+3){j=a3 +k=!1}else{i=o>0 +if(i&&o+1===n){j=a3 +k=!1}else{if(!B.d.di(a5,"\\",n))if(p>0)h=B.d.di(a5,"\\",p-1)||B.d.di(a5,"\\",p-2) +else h=!1 +else h=!0 +if(h){j=a3 +k=!1}else{if(!(mn+2&&B.d.di(a5,"/..",m-3) +else h=!0 +if(h){j=a3 +k=!1}else{if(q===4)if(B.d.di(a5,"file",0)){if(p<=0){if(!B.d.di(a5,"/",n)){g="file:///" +s=3}else{g="file://" +s=2}a5=g+B.d.am(a5,n,a4) +q-=0 +i=s-0 +m+=i +l+=i +a4=a5.length +p=7 +o=7 +n=7}else if(n===m){++l +f=m+1 +a5=B.d.lS(a5,n,m,"/");++a4 +m=f}j="file"}else if(B.d.di(a5,"http",0)){if(i&&o+3===n&&B.d.di(a5,"80",o+1)){l-=3 +e=n-3 +m-=3 +a5=B.d.lS(a5,o,n,"") +a4-=3 +n=e}j="http"}else j=a3 +else if(q===5&&B.d.di(a5,"https",0)){if(i&&o+4===n&&B.d.di(a5,"443",o+1)){l-=4 +e=n-4 +m-=4 +a5=B.d.lS(a5,o,n,"") +a4-=3 +n=e}j="https"}else j=a3 +k=!0}}}}else j=a3 +if(k){if(a40)j=A.aoM(a5,0,q) +else{if(q===0)A.px(a5,0,"Invalid empty scheme") +j=""}if(p>0){d=q+3 +c=d9)k.$2("invalid character",s)}else{if(q===3)k.$2(m,s) +o=A.j5(B.d.am(a,r,s),null) +if(o>255)k.$2(l,r) +n=q+1 +j[q]=o +r=s+1 +q=n}}if(q!==3)k.$2(m,c) +o=A.j5(B.d.am(a,r,c),null) +if(o>255)k.$2(l,r) +j[q]=o +return j}, +adv(a,b,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=null,d=new A.a_K(a),c=new A.a_L(d,a) +if(a.length<2)d.$2("address is too short",e) +s=A.a([],t.t) +for(r=b,q=r,p=!1,o=!1;r>>0) +s.push((k[2]<<8|k[3])>>>0)}if(p){if(s.length>7)d.$2("an address with a wildcard must have less than 7 parts",e)}else if(s.length!==8)d.$2("an address without a wildcard must contain exactly 8 parts",e) +j=new Uint8Array(16) +for(l=s.length,i=9-l,r=0,h=0;r=b&&q=b&&s>>4]&1<<(p&15))!==0){if(q&&65<=p&&90>=p){if(i==null)i=new A.ch("") +if(r>>4]&1<<(o&15))!==0){if(p&&65<=o&&90>=o){if(q==null)q=new A.ch("") +if(r>>4]&1<<(o&15))!==0)A.px(a,s,"Invalid character") +else{if((o&64512)===55296&&s+1>>4]&1<<(q&15))!==0))A.px(a,s,"Illegal scheme character") +if(65<=q&&q<=90)r=!0}a=B.d.am(a,b,c) +return A.aoH(r?a.toLowerCase():a)}, +aoH(a){if(a==="http")return"http" +if(a==="file")return"file" +if(a==="https")return"https" +if(a==="package")return"package" +return a}, +aed(a,b,c){if(a==null)return"" +return A.xQ(a,b,c,B.AR,!1,!1)}, +aea(a,b,c,d,e,f){var s,r=e==="file",q=r||f +if(a==null)return r?"/":"" +else s=A.xQ(a,b,c,B.jW,!0,!0) +if(s.length===0){if(r)return"/"}else if(q&&!B.d.c3(s,"/"))s="/"+s +return A.aoN(s,e,f)}, +aoN(a,b,c){var s=b.length===0 +if(s&&!c&&!B.d.c3(a,"/")&&!B.d.c3(a,"\\"))return A.aeg(a,!s||c) +return A.aei(a)}, +aec(a,b,c,d){var s,r={} +if(a!=null){if(d!=null)throw A.d(A.cy("Both query and queryParameters specified",null)) +return A.xQ(a,b,c,B.dL,!0,!1)}if(d==null)return null +s=new A.ch("") +r.a="" +d.P(0,new A.a4L(new A.a4M(r,s))) +r=s.a +return r.charCodeAt(0)==0?r:r}, +ae8(a,b,c){if(a==null)return null +return A.xQ(a,b,c,B.dL,!0,!1)}, +a93(a,b,c){var s,r,q,p,o,n=b+2 +if(n>=a.length)return"%" +s=B.d.ah(a,b+1) +r=B.d.ah(a,n) +q=A.a6o(s) +p=A.a6o(r) +if(q<0||p<0)return"%" +o=q*16+p +if(o<127&&(B.dJ[B.f.fk(o,4)]&1<<(o&15))!==0)return A.bv(c&&65<=o&&90>=o?(o|32)>>>0:o) +if(s>=97||r>=97)return B.d.am(a,b,b+3).toUpperCase() +return null}, +a92(a){var s,r,q,p,o,n="0123456789ABCDEF" +if(a<128){s=new Uint8Array(3) +s[0]=37 +s[1]=B.d.a8(n,a>>>4) +s[2]=B.d.a8(n,a&15)}else{if(a>2047)if(a>65535){r=240 +q=4}else{r=224 +q=3}else{r=192 +q=2}s=new Uint8Array(3*q) +for(p=0;--q,q>=0;r=128){o=B.f.WH(a,6*q)&63|r +s[p]=37 +s[p+1]=B.d.a8(n,o>>>4) +s[p+2]=B.d.a8(n,o&15) +p+=3}}return A.Zp(s,0,null)}, +xQ(a,b,c,d,e,f){var s=A.aef(a,b,c,d,e,f) +return s==null?B.d.am(a,b,c):s}, +aef(a,b,c,d,e,f){var s,r,q,p,o,n,m,l,k,j,i=null +for(s=!e,r=b,q=r,p=i;r>>4]&1<<(o&15))!==0)++r +else{if(o===37){n=A.a93(a,r,!1) +if(n==null){r+=3 +continue}if("%"===n){n="%25" +m=1}else m=3}else if(o===92&&f){n="/" +m=1}else if(s&&o<=93&&(B.jX[o>>>4]&1<<(o&15))!==0){A.px(a,r,"Invalid character") +m=i +n=m}else{if((o&64512)===55296){l=r+1 +if(l=2&&A.ae7(B.d.a8(a,0)))for(s=1;s127||(B.jR[r>>>4]&1<<(r&15))===0)break}return a}, +aoK(){return A.a([],t.s)}, +aej(a){var s,r,q,p,o,n=A.y(t.N,t.E4),m=new A.a4N(a,B.N,n) +for(s=a.length,r=0,q=0,p=-1;r127)throw A.d(A.cy("Illegal percent encoding in URI",null)) +if(r===37){if(o+3>q)throw A.d(A.cy("Truncated URI",null)) +p.push(A.aoL(a,o+1)) +o+=2}else if(e&&r===43)p.push(32) +else p.push(r)}}return d.dq(0,p)}, +ae7(a){var s=a|32 +return 97<=s&&s<=122}, +adu(a,b,c){var s,r,q,p,o,n,m,l,k="Invalid MIME type",j=A.a([b-1],t.t) +for(s=a.length,r=b,q=-1,p=null;rb)throw A.d(A.bY(k,a,r)) +for(;p!==44;){j.push(r);++r +for(o=-1;r=0)j.push(o) +else{n=B.b.gO(j) +if(p!==44||r!==n+7||!B.d.di(a,"base64",n+1))throw A.d(A.bY("Expecting '='",a,r)) +break}}j.push(r) +m=r+1 +if((j.length&1)===1)a=B.w1.a1B(0,a,m,s) +else{l=A.aef(a,m,s,B.dL,!0,!1) +if(l!=null)a=B.d.lS(a,m,s,l)}return new A.a_H(a,j,c)}, +apc(){var s,r,q,p,o,n="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-._~!$&'()*+,;=",m=".",l=":",k="/",j="\\",i="?",h="#",g="/\\",f=J.abG(22,t.uo) +for(s=0;s<22;++s)f[s]=new Uint8Array(96) +r=new A.a5i(f) +q=new A.a5j() +p=new A.a5k() +o=r.$2(0,225) +q.$3(o,n,1) +q.$3(o,m,14) +q.$3(o,l,34) +q.$3(o,k,3) +q.$3(o,j,227) +q.$3(o,i,172) +q.$3(o,h,205) +o=r.$2(14,225) +q.$3(o,n,1) +q.$3(o,m,15) +q.$3(o,l,34) +q.$3(o,g,234) +q.$3(o,i,172) +q.$3(o,h,205) +o=r.$2(15,225) +q.$3(o,n,1) +q.$3(o,"%",225) +q.$3(o,l,34) +q.$3(o,k,9) +q.$3(o,j,233) +q.$3(o,i,172) +q.$3(o,h,205) +o=r.$2(1,225) +q.$3(o,n,1) +q.$3(o,l,34) +q.$3(o,k,10) +q.$3(o,j,234) +q.$3(o,i,172) +q.$3(o,h,205) +o=r.$2(2,235) +q.$3(o,n,139) +q.$3(o,k,131) +q.$3(o,j,131) +q.$3(o,m,146) +q.$3(o,i,172) +q.$3(o,h,205) +o=r.$2(3,235) +q.$3(o,n,11) +q.$3(o,k,68) +q.$3(o,j,68) +q.$3(o,m,18) +q.$3(o,i,172) +q.$3(o,h,205) +o=r.$2(4,229) +q.$3(o,n,5) +p.$3(o,"AZ",229) +q.$3(o,l,102) +q.$3(o,"@",68) +q.$3(o,"[",232) +q.$3(o,k,138) +q.$3(o,j,138) +q.$3(o,i,172) +q.$3(o,h,205) +o=r.$2(5,229) +q.$3(o,n,5) +p.$3(o,"AZ",229) +q.$3(o,l,102) +q.$3(o,"@",68) +q.$3(o,k,138) +q.$3(o,j,138) +q.$3(o,i,172) +q.$3(o,h,205) +o=r.$2(6,231) +p.$3(o,"19",7) +q.$3(o,"@",68) +q.$3(o,k,138) +q.$3(o,j,138) +q.$3(o,i,172) +q.$3(o,h,205) +o=r.$2(7,231) +p.$3(o,"09",7) +q.$3(o,"@",68) +q.$3(o,k,138) +q.$3(o,j,138) +q.$3(o,i,172) +q.$3(o,h,205) +q.$3(r.$2(8,8),"]",5) +o=r.$2(9,235) +q.$3(o,n,11) +q.$3(o,m,16) +q.$3(o,g,234) +q.$3(o,i,172) +q.$3(o,h,205) +o=r.$2(16,235) +q.$3(o,n,11) +q.$3(o,m,17) +q.$3(o,g,234) +q.$3(o,i,172) +q.$3(o,h,205) +o=r.$2(17,235) +q.$3(o,n,11) +q.$3(o,k,9) +q.$3(o,j,233) +q.$3(o,i,172) +q.$3(o,h,205) +o=r.$2(10,235) +q.$3(o,n,11) +q.$3(o,m,18) +q.$3(o,k,10) +q.$3(o,j,234) +q.$3(o,i,172) +q.$3(o,h,205) +o=r.$2(18,235) +q.$3(o,n,11) +q.$3(o,m,19) +q.$3(o,g,234) +q.$3(o,i,172) +q.$3(o,h,205) +o=r.$2(19,235) +q.$3(o,n,11) +q.$3(o,g,234) +q.$3(o,i,172) +q.$3(o,h,205) +o=r.$2(11,235) +q.$3(o,n,11) +q.$3(o,k,10) +q.$3(o,j,234) +q.$3(o,i,172) +q.$3(o,h,205) +o=r.$2(12,236) +q.$3(o,n,12) +q.$3(o,i,12) +q.$3(o,h,205) +o=r.$2(13,237) +q.$3(o,n,13) +q.$3(o,i,13) +p.$3(r.$2(20,245),"az",21) +o=r.$2(21,245) +p.$3(o,"az",21) +p.$3(o,"09",21) +q.$3(o,"+-.",21) +return f}, +aeW(a,b,c,d,e){var s,r,q,p,o=$.ahG() +for(s=b;s95?31:q] +d=p&31 +e[p>>>5]=s}return d}, +aqg(a,b){return A.U7(b,t.N)}, +V7:function V7(a,b){this.a=a +this.b=b}, +el:function el(a,b){this.a=a +this.b=b}, +aQ:function aQ(a){this.a=a}, +a1D:function a1D(){}, +bm:function bm(){}, +kN:function kN(a){this.a=a}, +iH:function iH(){}, +fb:function fb(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +tS:function tS(a,b,c,d,e,f){var _=this +_.e=a +_.f=b +_.a=c +_.b=d +_.c=e +_.d=f}, +ry:function ry(a,b,c,d,e){var _=this +_.f=a +_.a=b +_.b=c +_.c=d +_.d=e}, +CO:function CO(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +FW:function FW(a){this.a=a}, +oL:function oL(a){this.a=a}, +fK:function fK(a){this.a=a}, +Ab:function Ab(a){this.a=a}, +D_:function D_(){}, +uU:function uU(){}, +HN:function HN(a){this.a=a}, +jv:function jv(a,b,c){this.a=a +this.b=b +this.c=c}, +j:function j(){}, +bb:function bb(a,b,c){this.a=a +this.b=b +this.$ti=c}, +aM:function aM(){}, +E:function E(){}, +Lp:function Lp(){}, +uV:function uV(){this.b=this.a=0}, +XB:function XB(a){var _=this +_.a=a +_.c=_.b=0 +_.d=-1}, +ch:function ch(a){this.a=a}, +a_I:function a_I(a){this.a=a}, +a_K:function a_K(a){this.a=a}, +a_L:function a_L(a,b){this.a=a +this.b=b}, +xP:function xP(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.Q=_.y=_.x=_.w=$}, +a4M:function a4M(a,b){this.a=a +this.b=b}, +a4L:function a4L(a){this.a=a}, +a4N:function a4N(a,b,c){this.a=a +this.b=b +this.c=c}, +a_H:function a_H(a,b,c){this.a=a +this.b=b +this.c=c}, +a5i:function a5i(a){this.a=a}, +a5j:function a5j(){}, +a5k:function a5k(){}, +L3:function L3(a,b,c,d,e,f,g,h){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=null}, +Hj:function Hj(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.Q=_.y=_.x=_.w=$}, +r9:function r9(a){this.a=a}, +amX(a){A.f4(a,"result",t.N) +return new A.k9()}, +arY(a,b){var s=t.N +A.f4(a,"method",s) +if(!B.d.c3(a,"ext."))throw A.d(A.h0(a,"method","Must begin with ext.")) +if($.aex.i(0,a)!=null)throw A.d(A.cy("Extension already registered: "+a,null)) +A.f4(b,"handler",t.DT) +$.aex.l(0,a,$.ab.Yk(b,t.e9,s,t.yz))}, +arV(a,b,c){if(B.b.q(A.a(["VM","Isolate","Debug","GC","_Echo","HeapSnapshot","Logging","Timeline","Profiler"],t.s),c))throw A.d(A.h0(c,"stream","Cannot be a protected stream.")) +else if(B.d.c3(c,"_"))throw A.d(A.h0(c,"stream","Cannot start with an underscore.")) +return}, +anE(a){A.mK(a,"name") +$.a8J.push(null) +return}, +anD(){if($.a8J.length===0)throw A.d(A.a5("Uneven calls to startSync and finishSync")) +var s=$.a8J.pop() +if(s==null)return +s.ga3e()}, +adm(){return new A.a_p(0,A.a([],t.vS))}, +aoT(a){if(a==null||a.a===0)return"{}" +return B.bc.xA(a)}, +k9:function k9(){}, +a_p:function a_p(a,b){this.c=a +this.d=b}, +a9:function a9(){}, +yL:function yL(){}, +yN:function yN(){}, +yS:function yS(){}, +q5:function q5(){}, +h5:function h5(){}, +Ag:function Ag(){}, +bz:function bz(){}, +n4:function n4(){}, +Pz:function Pz(){}, +dJ:function dJ(){}, +fd:function fd(){}, +Ah:function Ah(){}, +Ai:function Ai(){}, +Aq:function Aq(){}, +AM:function AM(){}, +qP:function qP(){}, +qQ:function qQ(){}, +AO:function AO(){}, +AQ:function AQ(){}, +a8:function a8(){}, +N:function N(){}, +en:function en(){}, +Bd:function Bd(){}, +Be:function Be(){}, +Bt:function Bt(){}, +eo:function eo(){}, +BH:function BH(){}, +lf:function lf(){}, +Cg:function Cg(){}, +Cr:function Cr(){}, +Cv:function Cv(){}, +Ut:function Ut(a){this.a=a}, +Uu:function Uu(a){this.a=a}, +Cw:function Cw(){}, +Uv:function Uv(a){this.a=a}, +Uw:function Uw(a){this.a=a}, +et:function et(){}, +Cx:function Cx(){}, +aZ:function aZ(){}, +to:function to(){}, +ey:function ey(){}, +Dx:function Dx(){}, +Eq:function Eq(){}, +Xz:function Xz(a){this.a=a}, +XA:function XA(a){this.a=a}, +EH:function EH(){}, +eD:function eD(){}, +Fc:function Fc(){}, +eE:function eE(){}, +Fe:function Fe(){}, +eF:function eF(){}, +Fk:function Fk(){}, +Zj:function Zj(a){this.a=a}, +Zk:function Zk(a){this.a=a}, +dP:function dP(){}, +eH:function eH(){}, +dQ:function dQ(){}, +FA:function FA(){}, +FB:function FB(){}, +FG:function FG(){}, +eI:function eI(){}, +FK:function FK(){}, +FL:function FL(){}, +FY:function FY(){}, +G0:function G0(){}, +H9:function H9(){}, +vR:function vR(){}, +I9:function I9(){}, +wv:function wv(){}, +Le:function Le(){}, +Lq:function Lq(){}, +ce:function ce(){}, +Bh:function Bh(a,b){var _=this +_.a=a +_.b=b +_.c=-1 +_.d=null}, +Ha:function Ha(){}, +HA:function HA(){}, +HB:function HB(){}, +HC:function HC(){}, +HD:function HD(){}, +HQ:function HQ(){}, +HR:function HR(){}, +Ii:function Ii(){}, +Ij:function Ij(){}, +J_:function J_(){}, +J0:function J0(){}, +J1:function J1(){}, +J2:function J2(){}, +Jd:function Jd(){}, +Je:function Je(){}, +Jx:function Jx(){}, +Jy:function Jy(){}, +KF:function KF(){}, +xp:function xp(){}, +xq:function xq(){}, +Lc:function Lc(){}, +Ld:function Ld(){}, +Lj:function Lj(){}, +LB:function LB(){}, +LC:function LC(){}, +xE:function xE(){}, +xF:function xF(){}, +LL:function LL(){}, +LM:function LM(){}, +Mt:function Mt(){}, +Mu:function Mu(){}, +Mv:function Mv(){}, +Mw:function Mw(){}, +MC:function MC(){}, +MD:function MD(){}, +MQ:function MQ(){}, +MR:function MR(){}, +MS:function MS(){}, +MT:function MT(){}, +apb(a){var s,r=a.$dart_jsFunction +if(r!=null)return r +s=function(b,c){return function(){return b(c,Array.prototype.slice.apply(arguments))}}(A.aoY,a) +s[$.a9T()]=a +a.$dart_jsFunction=s +return s}, +aoY(a,b){return A.ame(a,b,null)}, +aN(a){if(typeof a=="function")return a +else return A.apb(a)}, +aeP(a){return a==null||A.pB(a)||typeof a=="number"||typeof a=="string"||t.kT.b(a)||t.uo.b(a)||t.gJ.b(a)||t.EE.b(a)||t.ys.b(a)||t.fO.b(a)||t.Dd.b(a)||t.D4.b(a)||t.cE.b(a)||t.l2.b(a)||t.B6.b(a)}, +a6(a){if(A.aeP(a))return a +return new A.a6B(new A.p9(t.BT)).$1(a)}, +a4(a,b){return a[b]}, +x(a,b,c){return a[b].apply(a,c)}, +aoZ(a,b){return a[b]()}, +ap_(a,b,c,d){return a[b](c,d)}, +kB(a,b){var s,r +if(b instanceof Array)switch(b.length){case 0:return new a() +case 1:return new a(b[0]) +case 2:return new a(b[0],b[1]) +case 3:return new a(b[0],b[1],b[2]) +case 4:return new a(b[0],b[1],b[2],b[3])}s=[null] +B.b.I(s,b) +r=a.bind.apply(a,s) +String(r) +return new r()}, +fW(a,b){var s=new A.ai($.ab,b.h("ai<0>")),r=new A.bp(s,b.h("bp<0>")) +a.then(A.yr(new A.a6N(r),1),A.yr(new A.a6O(r),1)) +return s}, +aeO(a){return a==null||typeof a==="boolean"||typeof a==="number"||typeof a==="string"||a instanceof Int8Array||a instanceof Uint8Array||a instanceof Uint8ClampedArray||a instanceof Int16Array||a instanceof Uint16Array||a instanceof Int32Array||a instanceof Uint32Array||a instanceof Float32Array||a instanceof Float64Array||a instanceof ArrayBuffer||a instanceof DataView}, +Nr(a){if(A.aeO(a))return a +return new A.a6c(new A.p9(t.BT)).$1(a)}, +a6B:function a6B(a){this.a=a}, +a6N:function a6N(a){this.a=a}, +a6O:function a6O(a){this.a=a}, +a6c:function a6c(a){this.a=a}, +CR:function CR(a){this.a=a}, +fr:function fr(){}, +C8:function C8(){}, +fu:function fu(){}, +CT:function CT(){}, +Dy:function Dy(){}, +Fl:function Fl(){}, +fM:function fM(){}, +FN:function FN(){}, +II:function II(){}, +IJ:function IJ(){}, +Jl:function Jl(){}, +Jm:function Jm(){}, +Ln:function Ln(){}, +Lo:function Lo(){}, +LR:function LR(){}, +LS:function LS(){}, +B_:function B_(){}, +ts(a,b,c){if(b==null)if(a==null)return null +else return a.R(0,1-c) +else if(a==null)return b.R(0,c) +else return new A.q(A.hZ(a.a,b.a,c),A.hZ(a.b,b.b,c))}, +a8y(a,b,c){if(b==null)if(a==null)return null +else return a.R(0,1-c) +else if(a==null)return b.R(0,c) +else return new A.S(A.hZ(a.a,b.a,c),A.hZ(a.b,b.b,c))}, +k0(a,b){var s=a.a,r=b*2/2,q=a.b +return new A.C(s-r,q-r,s+r,q+r)}, +amx(a,b,c){var s=a.a,r=c/2,q=a.b,p=b/2 +return new A.C(s-r,q-p,s+r,q+p)}, +a8m(a,b){var s=a.a,r=b.a,q=a.b,p=b.b +return new A.C(Math.min(s,r),Math.min(q,p),Math.max(s,r),Math.max(q,p))}, +acy(a,b,c){var s,r,q,p,o +if(b==null)if(a==null)return null +else{s=1-c +return new A.C(a.a*s,a.b*s,a.c*s,a.d*s)}else{r=b.a +q=b.b +p=b.c +o=b.d +if(a==null)return new A.C(r*c,q*c,p*c,o*c) +else return new A.C(A.hZ(a.a,r,c),A.hZ(a.b,q,c),A.hZ(a.c,p,c),A.hZ(a.d,o,c))}}, +tR(a,b,c){var s,r,q +if(b==null)if(a==null)return null +else{s=1-c +return new A.aF(a.a*s,a.b*s)}else{r=b.a +q=b.b +if(a==null)return new A.aF(r*c,q*c) +else return new A.aF(A.hZ(a.a,r,c),A.hZ(a.b,q,c))}}, +Wh(a,b){var s=b.a,r=b.b +return new A.fz(a.a,a.b,a.c,a.d,s,r,s,r,s,r,s,r,s===r)}, +acw(a,b,c,d,e,f,g,h){var s=g.a,r=g.b,q=h.a,p=h.b,o=e.a,n=e.b,m=f.a,l=f.b +return new A.fz(a,b,c,d,s,r,q,p,m,l,o,n,s===r&&s===q&&s===p&&s===o&&s===n&&s===m&&s===l)}, +Wg(a,b,c,d,e){var s=d.a,r=d.b,q=e.a,p=e.b,o=b.a,n=b.b,m=c.a,l=c.b,k=s===r&&s===q&&s===p&&s===o&&s===n&&s===m&&s===l +return new A.fz(a.a,a.b,a.c,a.d,s,r,q,p,m,l,o,n,k)}, +a6V(a,b){var s=0,r=A.Y(t.H),q,p,o +var $async$a6V=A.Z(function(c,d){if(c===1)return A.V(d,r) +while(true)switch(s){case 0:q=new A.O3(new A.a6W(),new A.a6X(a,b)) +p=self._flutter +o=p==null?null:p.loader +s=o==null||!("didCreateEngineInitializer" in o)?2:4 +break +case 2:self.window.console.debug("Flutter Web Bootstrap: Auto.") +s=5 +return A.a1(q.l_(),$async$a6V) +case 5:s=3 +break +case 4:self.window.console.debug("Flutter Web Bootstrap: Programmatic.") +o.didCreateEngineInitializer(q.a1T()) +case 3:return A.W(null,r)}}) +return A.X($async$a6V,r)}, +al4(a){switch(a.a){case 1:return"up" +case 0:return"down" +case 2:return"repeat"}}, +M(a,b,c){var s +if(a!=b){s=a==null?null:isNaN(a) +if(s===!0){s=b==null?null:isNaN(b) +s=s===!0}else s=!1}else s=!0 +if(s)return a==null?null:a +if(a==null)a=0 +if(b==null)b=0 +return a*(1-c)+b*c}, +hZ(a,b,c){return a*(1-c)+b*c}, +a5E(a,b,c){return a*(1-c)+b*c}, +a9o(a,b,c){if(ac)return c +if(isNaN(a))return c +return a}, +aeV(a,b){return A.U(A.kD(B.c.bd((a.gn(a)>>>24&255)*b),0,255),a.gn(a)>>>16&255,a.gn(a)>>>8&255,a.gn(a)&255)}, +U(a,b,c,d){return new A.A(((a&255)<<24|(b&255)<<16|(c&255)<<8|d&255)>>>0)}, +ajg(a,b,c,d){return new A.A(((B.c.cq(d*255,1)&255)<<24|(a&255)<<16|(b&255)<<8|c&255)>>>0)}, +a7x(a){if(a<=0.03928)return a/12.92 +return Math.pow((a+0.055)/1.055,2.4)}, +r(a,b,c){if(b==null)if(a==null)return null +else return A.aeV(a,1-c) +else if(a==null)return A.aeV(b,c) +else return A.U(A.kD(B.c.K(A.a5E(a.gn(a)>>>24&255,b.gn(b)>>>24&255,c)),0,255),A.kD(B.c.K(A.a5E(a.gn(a)>>>16&255,b.gn(b)>>>16&255,c)),0,255),A.kD(B.c.K(A.a5E(a.gn(a)>>>8&255,b.gn(b)>>>8&255,c)),0,255),A.kD(B.c.K(A.a5E(a.gn(a)&255,b.gn(b)&255,c)),0,255))}, +aaO(a,b){var s,r,q,p,o,n=a.a,m=n>>>24&255 +if(m===0)return b +s=255-m +r=b.gn(b)>>>24&255 +q=n&255 +p=n>>>16&255 +n=n>>>8&255 +if(r===255)return A.U(255,B.f.cq(m*p+s*(b.gn(b)>>>16&255),255),B.f.cq(m*n+s*(b.gn(b)>>>8&255),255),B.f.cq(m*q+s*(b.gn(b)&255),255)) +else{r=B.f.cq(r*s,255) +o=m+r +return A.U(o,B.f.iz(p*m+(b.gn(b)>>>16&255)*r,o),B.f.iz(n*m+(b.gn(b)>>>8&255)*r,o),B.f.iz(q*m+(b.gn(b)&255)*r,o))}}, +alM(){return $.ae().b9()}, +abp(a,b,c,d,e){return $.ae().GP(0,a,b,c,d,e,null)}, +Nx(a,b){return A.arA(a,b)}, +arA(a,b){var s=0,r=A.Y(t.gP),q,p=2,o,n=[],m,l,k,j,i,h,g,f +var $async$Nx=A.Z(function(c,d){if(c===1){o=d +s=p}while(true)switch(s){case 0:s=b==null?3:5 +break +case 3:h=$.ae() +g=a.a +g.toString +q=h.o2(g) +s=1 +break +s=4 +break +case 5:h=$.ae() +g=a.a +g.toString +s=6 +return A.a1(h.o2(g),$async$Nx) +case 6:m=d +p=7 +s=10 +return A.a1(m.fO(),$async$Nx) +case 10:l=d +try{g=J.a7d(l) +k=g.gbr(g) +g=J.a7d(l) +j=g.gbo(g) +i=b.$2(k,j) +g=a.a +g.toString +f=i.a +f=h.hm(g,!1,i.b,f) +q=f +n=[1] +s=8 +break}finally{J.a7d(l).m()}n.push(9) +s=8 +break +case 7:n=[2] +case 8:p=2 +m.m() +s=n.pop() +break +case 9:case 4:case 1:return A.W(q,r) +case 2:return A.V(o,r)}}) +return A.X($async$Nx,r)}, +an_(a,b,c){var s,r,q=A.r(a.a,b.a,c) +q.toString +s=A.ts(a.b,b.b,c) +s.toString +r=A.hZ(a.c,b.c,c) +return new A.ka(q,s,r)}, +an0(a,b,c){var s,r,q,p=a==null +if(p&&b==null)return null +if(p)a=A.a([],t.j8) +if(b==null)b=A.a([],t.j8) +s=A.a([],t.j8) +r=Math.min(a.length,b.length) +for(q=0;q=0)return 145 +return 64}throw A.d(A.a5("Unexpected state: "+B.f.il(d,16)))}, +afH(a,b,c){var s,r,q,p,o +for(s=c,r=0;q=s-2,q>=b;s=q){p=B.d.ah(a,s-1) +if((p&64512)!==56320)break +o=B.d.ah(a,q) +if((o&64512)!==55296)break +if(A.kF(o,p)!==6)break +r^=1}if(r===0)return 193 +else return 144}, +afG(a,b,c){var s,r,q,p,o +for(s=c;s>b;){--s +r=B.d.ah(a,s) +if((r&64512)!==56320)q=A.yw(r) +else{if(s>b){--s +p=B.d.ah(a,s) +o=(p&64512)===55296}else{p=0 +o=!1}if(o)q=A.kF(p,r) +else break}if(q===7)return s +if(q!==4)break}return-1}, +arW(a,b,c,d){var s,r,q,p,o,n +if(d===b||d===c)return d +s=B.d.ah(a,d) +if((s&63488)!==55296){r=A.yw(s) +q=d}else if((s&64512)===55296){p=d+1 +if(pb){o=s-1 +n=B.d.ah(a,o) +if((n&64512)===55296){q=A.kF(n,r) +s=o}else q=2}else q=2 +if(q===6)m=A.afH(a,b,s)!==144?160:48 +else{l=q===1 +if(l||q===4)if(A.afG(a,b,s)>=0)m=l?144:128 +else m=48 +else m=B.d.a8(u.S,q|176)}return new A.OA(a,a.length,d,m).yx()}, +OA:function OA(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +Ol:function Ol(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +BF:function BF(a,b,c){var _=this +_.a=a +_.b=b +_.d=_.c=0 +_.$ti=c}, +arK(){var s,r +if($.at==null)A.anX() +s=$.at +s.toString +r=$.aB().d.i(0,0) +r.toString +s.L5(new A.G1(r,B.E2,new A.ii(r,t.l9))) +s.A6()}, +CE:function CE(a){this.a=a}, +rr:function rr(a){this.a=a}, +Ih:function Ih(a){var _=this +_.d=!0 +_.a=null +_.b=a +_.c=null}, +a2j:function a2j(a){this.a=a}, +a2i:function a2i(a){this.a=a}, +h_:function h_(a,b){this.a=a +this.b=b}, +ca:function ca(){}, +d9(a,b,c,d,e){var s=new A.mH(0,1,a,B.vt,b,c,B.a9,B.F,new A.be(A.a([],t.A),t.Q),new A.be(A.a([],t.u),t.tY)) +s.r=e.qI(s.gBq()) +s.vv(d==null?0:d) +return s}, +aaq(a,b,c){var s=new A.mH(-1/0,1/0,a,B.vu,null,null,B.a9,B.F,new A.be(A.a([],t.A),t.Q),new A.be(A.a([],t.u),t.tY)) +s.r=c.qI(s.gBq()) +s.vv(b) +return s}, +oR:function oR(a,b){this.a=a +this.b=b}, +yQ:function yQ(a,b){this.a=a +this.b=b}, +mH:function mH(a,b,c,d,e,f,g,h,i,j){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.w=_.r=null +_.x=$ +_.y=null +_.z=g +_.Q=$ +_.as=h +_.bT$=i +_.bY$=j}, +a2C:function a2C(a,b,c,d,e){var _=this +_.b=a +_.c=b +_.d=c +_.e=d +_.a=e}, +a3R:function a3R(a,b,c,d,e,f,g){var _=this +_.b=a +_.c=b +_.d=c +_.e=d +_.f=e +_.r=f +_.a=g}, +Gk:function Gk(){}, +Gl:function Gl(){}, +Gm:function Gm(){}, +DF(a){var s=new A.tO(new A.be(A.a([],t.A),t.Q),new A.be(A.a([],t.u),t.tY),0) +s.c=a +if(a==null){s.a=B.F +s.b=0}return s}, +eQ(a,b,c){var s,r=new A.qy(b,a,c) +r.Fi(b.gaP(b)) +b.aX() +s=b.bT$ +s.b=!0 +s.a.push(r.gFh()) +return r}, +a8L(a,b,c){var s,r,q=new A.me(a,b,c,new A.be(A.a([],t.A),t.Q),new A.be(A.a([],t.u),t.tY)) +if(J.e(a.gn(a),b.gn(b))){q.a=b +q.b=null +s=b}else{if(a.gn(a)>b.gn(b))q.c=B.NS +else q.c=B.NR +s=a}s.e0(q.gkT()) +s=q.gww() +q.a.Z(0,s) +r=q.b +if(r!=null){r.aX() +r=r.bY$ +r.b=!0 +r.a.push(s)}return q}, +aar(a,b,c){return new A.pU(a,b,new A.be(A.a([],t.A),t.Q),new A.be(A.a([],t.u),t.tY),0,c.h("pU<0>"))}, +Ge:function Ge(){}, +Gf:function Gf(){}, +pV:function pV(){}, +tO:function tO(a,b,c){var _=this +_.c=_.b=_.a=null +_.bT$=a +_.bY$=b +_.iV$=c}, +fE:function fE(a,b,c){this.a=a +this.bT$=b +this.iV$=c}, +qy:function qy(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=null}, +LQ:function LQ(a,b){this.a=a +this.b=b}, +me:function me(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=null +_.d=c +_.f=_.e=null +_.bT$=d +_.bY$=e}, +n1:function n1(){}, +pU:function pU(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.d=_.c=null +_.bT$=c +_.bY$=d +_.iV$=e +_.$ti=f}, +vI:function vI(){}, +vJ:function vJ(){}, +vK:function vK(){}, +Hg:function Hg(){}, +K6:function K6(){}, +K7:function K7(){}, +K8:function K8(){}, +KB:function KB(){}, +KC:function KC(){}, +LN:function LN(){}, +LO:function LO(){}, +LP:function LP(){}, +tC:function tC(){}, +eP:function eP(){}, +wf:function wf(){}, +hk:function hk(a,b,c){this.a=a +this.b=b +this.c=c}, +FF:function FF(){}, +dK:function dK(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +FE:function FE(){}, +nh:function nh(a){this.a=a}, +Hl:function Hl(){}, +pT:function pT(){}, +pS:function pS(){}, +kM:function kM(){}, +jd:function jd(){}, +eJ(a,b,c){return new A.av(a,b,c.h("av<0>"))}, +jp(a){return new A.i8(a)}, +ak:function ak(){}, +aR:function aR(a,b,c){this.a=a +this.b=b +this.$ti=c}, +fQ:function fQ(a,b,c){this.a=a +this.b=b +this.$ti=c}, +av:function av(a,b,c){this.a=a +this.b=b +this.$ti=c}, +ud:function ud(a,b,c,d){var _=this +_.c=a +_.a=b +_.b=c +_.$ti=d}, +h6:function h6(a,b){this.a=a +this.b=b}, +tX:function tX(a,b){this.a=a +this.b=b}, +jA:function jA(a,b){this.a=a +this.b=b}, +i8:function i8(a){this.a=a}, +y2:function y2(){}, +anL(a,b){var s=new A.vl(A.a([],b.h("v>")),A.a([],t.ge),b.h("vl<0>")) +s.Pu(a,b) +return s}, +adr(a,b,c){return new A.oI(a,b,c.h("oI<0>"))}, +vl:function vl(a,b,c){this.a=a +this.b=b +this.$ti=c}, +oI:function oI(a,b,c){this.a=a +this.b=b +this.$ti=c}, +Iz:function Iz(a,b){this.a=a +this.b=b}, +ajn(a,b){if(a==null)return null +return a instanceof A.eO?a.JW(b):a}, +eO:function eO(a,b,c,d,e,f,g,h,i,j,k,l){var _=this +_.b=a +_.c=b +_.d=c +_.e=d +_.f=e +_.r=f +_.w=g +_.x=h +_.y=i +_.z=j +_.Q=k +_.a=l}, +PB:function PB(a){this.a=a}, +Hb:function Hb(){}, +aaP(a,b,c,d,e,f,g,h){return new A.Aj(g,b,h,c,e,a,d,f)}, +Aj:function Aj(a,b,c,d,e,f,g,h){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h}, +Hc:function Hc(){}, +Hd:function Hd(){}, +Ax:function Ax(){}, +ajo(a){var s +if(a.gIB())return!1 +s=a.k_$ +if(s!=null&&s.length!==0)return!1 +s=a.go +if(s.gaP(s)!==B.J)return!1 +s=a.id +if(s.gaP(s)!==B.F)return!1 +if(a.a.CW.a)return!1 +return!0}, +ajp(a,b,c,d,e,f){var s,r,q,p=a.a.CW.a,o=p?c:A.eQ(B.iT,c,new A.nh(B.iT)),n=$.ahB(),m=t.m +m.a(o) +s=p?d:A.eQ(B.jm,d,B.yv) +r=$.ahu() +m.a(s) +p=p?c:A.eQ(B.jm,c,null) +q=$.agS() +return new A.Ak(new A.aR(o,n,n.$ti.h("aR")),new A.aR(s,r,r.$ti.h("aR")),new A.aR(m.a(p),q,A.m(q).h("aR")),new A.oX(e,new A.PD(a),new A.PE(a,f),null,f.h("oX<0>")),null)}, +a1g(a,b,c){var s,r,q,p,o,n,m +if(a==b)return a +if(a==null){s=b.a +if(s==null)s=b +else{r=A.ac(s).h("aA<1,A>") +r=new A.fR(A.aw(new A.aA(s,new A.a1h(c),r),!0,r.h("bn.E"))) +s=r}return s}if(b==null){s=a.a +if(s==null)s=a +else{r=A.ac(s).h("aA<1,A>") +r=new A.fR(A.aw(new A.aA(s,new A.a1i(c),r),!0,r.h("bn.E"))) +s=r}return s}s=A.a([],t.bk) +for(r=b.a,q=a.a,p=q==null,o=0;o"))) +return new A.ig(r)}, +RA(a){return new A.ig(a)}, +akE(a){return a}, +abf(a,b){if(a.r&&!0)return +if($.a7Q===0||!1)A.ar_(J.dr(a.a),100,a.b) +else A.a9F().$1("Another exception was thrown: "+a.gLH().j(0)) +$.a7Q=$.a7Q+1}, +akF(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=A.aL(["dart:async-patch",0,"dart:async",0,"package:stack_trace",0,"class _AssertionError",0,"class _FakeAsync",0,"class _FrameCallbackEntry",0,"class _Timer",0,"class _RawReceivePortImpl",0],t.N,t.S),d=A.and(J.aih(a,"\n")) +for(s=0,r=0;q=d.length,r0)q.push(h.a)}B.b.fV(q) +if(s===1)j.push("(elided one frame from "+B.b.gc7(q)+")") +else if(s>1){l=q.length +if(l>1)q[l-1]="and "+B.b.gO(q) +l="(elided "+s +if(q.length>2)j.push(l+" frames from "+B.b.bf(q,", ")+")") +else j.push(l+" frames from "+B.b.bf(q," ")+")")}return j}, +dx(a){var s=$.f8() +if(s!=null)s.$1(a)}, +ar_(a,b,c){var s,r +A.a9F().$1(a) +s=A.a(B.d.zz(J.dr(c==null?A.anf():A.akE(c))).split("\n"),t.s) +r=s.length +s=J.aiu(r!==0?new A.uM(s,new A.a6d(),t.C7):s,b) +A.a9F().$1(B.b.bf(A.akF(s),"\n"))}, +ao5(a,b,c){return new A.HY(c,a,!0,!0,null,b)}, +kj:function kj(){}, +ne:function ne(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this +_.f=a +_.r=b +_.w=c +_.y=d +_.z=e +_.Q=f +_.as=g +_.at=h +_.ax=!0 +_.ay=null +_.ch=i +_.CW=j +_.a=k +_.b=l +_.c=m +_.d=n +_.e=o}, +B6:function B6(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this +_.f=a +_.r=b +_.w=c +_.y=d +_.z=e +_.Q=f +_.as=g +_.at=h +_.ax=!0 +_.ay=null +_.ch=i +_.CW=j +_.a=k +_.b=l +_.c=m +_.d=n +_.e=o}, +B5:function B5(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this +_.f=a +_.r=b +_.w=c +_.y=d +_.z=e +_.Q=f +_.as=g +_.at=h +_.ax=!0 +_.ay=null +_.ch=i +_.CW=j +_.a=k +_.b=l +_.c=m +_.d=n +_.e=o}, +bu:function bu(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.f=e +_.r=f}, +RB:function RB(a){this.a=a}, +ig:function ig(a){this.a=a}, +RD:function RD(){}, +RE:function RE(){}, +RF:function RF(){}, +a6d:function a6d(){}, +HY:function HY(a,b,c,d,e,f){var _=this +_.f=a +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f}, +I_:function I_(){}, +HZ:function HZ(){}, +z4:function z4(){}, +Ot:function Ot(a,b){this.a=a +this.b=b}, +kg(a){return new A.oN(a,$.b7())}, +a7:function a7(){}, +ei:function ei(){}, +OX:function OX(a){this.a=a}, +wr:function wr(a){this.a=a}, +oN:function oN(a,b){var _=this +_.a=a +_.W$=0 +_.a_$=b +_.a0$=_.ad$=0 +_.a9$=!1}, +ajG(a,b,c){var s=null +return A.jq("",s,b,B.aQ,a,!1,s,s,B.ah,s,!1,!1,!0,c,s,t.H)}, +jq(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var s +if(h==null)s=k?"MISSING":null +else s=h +return new A.eR(e,!1,c,s,g,o,k,b,d,i,a,m,l,j,n,p.h("eR<0>"))}, +a7C(a,b,c){return new A.AE(c,a,!0,!0,null,b)}, +bs(a){return B.d.lK(B.f.il(J.p(a)&1048575,16),5,"0")}, +qK:function qK(a,b){this.a=a +this.b=b}, +ia:function ia(a,b){this.a=a +this.b=b}, +a3n:function a3n(){}, +dv:function dv(){}, +eR:function eR(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var _=this +_.f=a +_.r=b +_.w=c +_.y=d +_.z=e +_.Q=f +_.as=g +_.at=h +_.ax=!0 +_.ay=null +_.ch=i +_.CW=j +_.a=k +_.b=l +_.c=m +_.d=n +_.e=o +_.$ti=p}, +qL:function qL(){}, +AE:function AE(a,b,c,d,e,f){var _=this +_.f=a +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f}, +a0:function a0(){}, +PX:function PX(){}, +h7:function h7(){}, +Hs:function Hs(){}, +dL:function dL(){}, +Ce:function Ce(){}, +vm:function vm(){}, +dS:function dS(a,b){this.a=a +this.$ti=b}, +a8Y:function a8Y(a){this.$ti=a}, +eV:function eV(){}, +rP:function rP(){}, +K:function K(){}, +tq(a){return new A.be(A.a([],a.h("v<0>")),a.h("be<0>"))}, +be:function be(a,b){var _=this +_.a=a +_.b=!1 +_.c=$ +_.$ti=b}, +ro:function ro(a,b){this.a=a +this.$ti=b}, +aq_(a){return A.aU(a,null,!1,t.X)}, +tJ:function tJ(a){this.a=a}, +a4G:function a4G(){}, +I7:function I7(a){this.a=a}, +kh:function kh(a,b){this.a=a +this.b=b}, +w6:function w6(a,b){this.a=a +this.b=b}, +cQ:function cQ(a,b){this.a=a +this.b=b}, +a_Z(a){var s=new DataView(new ArrayBuffer(8)),r=A.cB(s.buffer,0,null) +return new A.a_X(new Uint8Array(a),s,r)}, +a_X:function a_X(a,b,c){var _=this +_.a=a +_.b=0 +_.c=!1 +_.d=b +_.e=c}, +tV:function tV(a){this.a=a +this.b=0}, +and(a){var s=t.jp +return A.aw(new A.dm(new A.dN(new A.b2(A.a(B.d.Kg(a).split("\n"),t.s),new A.Zb(),t.vY),A.as0(),t.ku),s),!0,s.h("j.E"))}, +anc(a){var s,r,q="",p=$.agx().xO(a) +if(p==null)return null +s=A.a(p.b[1].split("."),t.s) +r=s.length>1?B.b.gG(s):q +return new A.fJ(a,-1,q,q,q,-1,-1,r,s.length>1?A.eG(s,1,null,t.N).bf(0,"."):B.b.gc7(s))}, +ane(a){var s,r,q,p,o,n,m,l,k,j,i="" +if(a==="")return B.GP +else if(a==="...")return B.GO +if(!B.d.c3(a,"#"))return A.anc(a) +s=A.o4("^#(\\d+) +(.+) \\((.+?):?(\\d+){0,1}:?(\\d+){0,1}\\)$",!0,!1).xO(a).b +r=s[2] +r.toString +q=A.afY(r,".","") +if(B.d.c3(q,"new")){p=q.split(" ").length>1?q.split(" ")[1]:i +if(B.d.q(p,".")){o=p.split(".") +p=o[0] +q=o[1]}else q=""}else if(B.d.q(q,".")){o=q.split(".") +p=o[0] +q=o[1]}else p="" +r=s[3] +r.toString +n=A.a_J(r) +m=n.glM(n) +if(n.gm8()==="dart"||n.gm8()==="package"){l=n.grR()[0] +r=n.glM(n) +k=A.h(n.grR()[0]) +A.acx(0,0,r.length,"startIndex") +m=A.as5(r,k+"/","",0)}else l=i +r=s[1] +r.toString +r=A.j5(r,null) +k=n.gm8() +j=s[4] +if(j==null)j=-1 +else{j=j +j.toString +j=A.j5(j,null)}s=s[5] +if(s==null)s=-1 +else{s=s +s.toString +s=A.j5(s,null)}return new A.fJ(a,r,k,l,m,j,s,p,q)}, +fJ:function fJ(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i}, +Zb:function Zb(){}, +c1:function c1(a,b){this.a=a +this.$ti=b}, +ZB:function ZB(a){this.a=a}, +Bz:function Bz(a,b){this.a=a +this.b=b}, +cz:function cz(){}, +Bx:function Bx(a,b,c){this.a=a +this.b=b +this.c=c}, +p6:function p6(a){var _=this +_.a=a +_.b=!0 +_.d=_.c=!1 +_.e=null}, +a29:function a29(a){this.a=a}, +S5:function S5(a){this.a=a}, +S7:function S7(a,b){this.a=a +this.b=b}, +S6:function S6(a,b,c){this.a=a +this.b=b +this.c=c}, +akD(a,b,c,d,e,f,g){return new A.rh(c,g,f,a,e,!1)}, +a3T:function a3T(a,b,c,d,e,f,g,h){var _=this +_.a=a +_.b=!1 +_.c=b +_.d=c +_.e=d +_.f=e +_.r=f +_.w=g +_.x=h +_.y=null}, +nl:function nl(){}, +S8:function S8(a){this.a=a}, +S9:function S9(a,b){this.a=a +this.b=b}, +rh:function rh(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.f=e +_.r=f}, +aeZ(a,b){switch(b.a){case 1:case 4:return a +case 0:case 2:case 3:return a===0?1:a +case 5:return a===0?1:a}}, +alY(a,b){var s=A.ac(a) +return new A.dm(new A.dN(new A.b2(a,new A.VS(),s.h("b2<1>")),new A.VT(b),s.h("dN<1,aE?>")),t.nn)}, +VS:function VS(){}, +VT:function VT(a){this.a=a}, +ib:function ib(a){this.a=a}, +ha:function ha(a,b,c){this.a=a +this.b=b +this.d=c}, +hb:function hb(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +em:function em(a,b){this.a=a +this.b=b}, +VV(a,b){var s,r +if(a==null)return b +s=new A.cS(new Float64Array(3)) +s.dT(b.a,b.b,0) +r=a.ia(s).a +return new A.q(r[0],r[1])}, +VU(a,b,c,d){if(a==null)return c +if(b==null)b=A.VV(a,d) +return b.a4(0,A.VV(a,d.a4(0,c)))}, +a8j(a){var s,r,q=new Float64Array(4),p=new A.hN(q) +p.tG(0,0,1,0) +s=new Float64Array(16) +r=new A.aS(s) +r.az(a) +s[11]=q[3] +s[10]=q[2] +s[9]=q[1] +s[8]=q[0] +r.tF(2,p) +return r}, +alV(a,b,c,d,e,f,g,h,i,j,k,l,m,n){return new A.lD(d,n,0,e,a,h,B.h,0,!1,!1,0,j,i,b,c,0,0,0,l,k,g,m,0,!1,null,null)}, +am4(a,b,c,d,e,f,g,h,i,j,k){return new A.lI(c,k,0,d,a,f,B.h,0,!1,!1,0,h,g,0,b,0,0,0,j,i,0,0,0,!1,null,null)}, +am_(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){return new A.iw(f,a0,0,g,c,j,b,a,!1,!1,0,l,k,d,e,q,m,p,o,n,i,s,0,r,null,null)}, +alX(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2){return new A.jW(g,a2,k,h,c,l,b,a,f,!1,0,n,m,d,e,s,o,r,q,p,j,a1,0,a0,null,null)}, +alZ(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2){return new A.jX(g,a2,k,h,c,l,b,a,f,!1,0,n,m,d,e,s,o,r,q,p,j,a1,0,a0,null,null)}, +alW(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s){return new A.iv(d,s,h,e,b,i,B.h,a,!0,!1,j,l,k,0,c,q,m,p,o,n,g,r,0,!1,null,null)}, +am0(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2){return new A.lF(e,a2,j,f,c,k,b,a,!0,!1,l,n,m,0,d,s,o,r,q,p,h,a1,i,a0,null,null)}, +am8(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){return new A.lL(e,a0,i,f,b,j,B.h,a,!1,!1,k,m,l,c,d,r,n,q,p,o,h,s,0,!1,null,null)}, +am6(a,b,c,d,e,f){return new A.lJ(e,b,f,0,c,a,d,B.h,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,!1,null,null)}, +am7(a,b,c,d,e){return new A.lK(b,e,0,c,a,d,B.h,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,!1,null,null)}, +am5(a,b,c,d,e,f){return new A.DA(e,b,f,0,c,a,d,B.h,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,!1,null,null)}, +am2(a,b,c,d,e,f){return new A.ix(b,f,c,B.bu,a,d,B.h,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,e,null,null)}, +am3(a,b,c,d,e,f,g,h,i,j){return new A.lH(c,d,h,g,b,j,e,B.bu,a,f,B.h,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,i,null,null)}, +am1(a,b,c,d,e,f){return new A.lG(b,f,c,B.bu,a,d,B.h,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,e,null,null)}, +ack(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s){return new A.lE(e,s,i,f,b,j,B.h,a,!1,!1,0,l,k,c,d,q,m,p,o,n,h,r,0,!1,null,null)}, +yq(a,b){var s +switch(a.a){case 1:return 1 +case 2:case 3:case 5:case 0:case 4:s=b==null?null:b.a +return s==null?18:s}}, +aqK(a,b){var s +switch(a.a){case 1:return 2 +case 2:case 3:case 5:case 0:case 4:if(b==null)s=null +else{s=b.a +s=s!=null?s*2:null}return s==null?36:s}}, +aE:function aE(){}, +cE:function cE(){}, +G9:function G9(){}, +LX:function LX(){}, +GU:function GU(){}, +lD:function lD(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6}, +LT:function LT(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +H3:function H3(){}, +lI:function lI(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6}, +M3:function M3(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +GZ:function GZ(){}, +iw:function iw(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6}, +LZ:function LZ(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +GX:function GX(){}, +jW:function jW(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6}, +LW:function LW(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +GY:function GY(){}, +jX:function jX(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6}, +LY:function LY(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +GW:function GW(){}, +iv:function iv(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6}, +LV:function LV(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +H_:function H_(){}, +lF:function lF(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6}, +M_:function M_(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +H7:function H7(){}, +lL:function lL(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6}, +M7:function M7(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +dz:function dz(){}, +H5:function H5(){}, +lJ:function lJ(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this +_.a0=a +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.x=j +_.y=k +_.z=l +_.Q=m +_.as=n +_.at=o +_.ax=p +_.ay=q +_.ch=r +_.CW=s +_.cx=a0 +_.cy=a1 +_.db=a2 +_.dx=a3 +_.dy=a4 +_.fr=a5 +_.fx=a6 +_.fy=a7}, +M5:function M5(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +H6:function H6(){}, +lK:function lK(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6}, +M6:function M6(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +H4:function H4(){}, +DA:function DA(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this +_.a0=a +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.x=j +_.y=k +_.z=l +_.Q=m +_.as=n +_.at=o +_.ax=p +_.ay=q +_.ch=r +_.CW=s +_.cx=a0 +_.cy=a1 +_.db=a2 +_.dx=a3 +_.dy=a4 +_.fr=a5 +_.fx=a6 +_.fy=a7}, +M4:function M4(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +H1:function H1(){}, +ix:function ix(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6}, +M1:function M1(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +H2:function H2(){}, +lH:function lH(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0){var _=this +_.go=a +_.id=b +_.k1=c +_.k2=d +_.a=e +_.b=f +_.c=g +_.d=h +_.e=i +_.f=j +_.r=k +_.w=l +_.x=m +_.y=n +_.z=o +_.Q=p +_.as=q +_.at=r +_.ax=s +_.ay=a0 +_.ch=a1 +_.CW=a2 +_.cx=a3 +_.cy=a4 +_.db=a5 +_.dx=a6 +_.dy=a7 +_.fr=a8 +_.fx=a9 +_.fy=b0}, +M2:function M2(a,b){var _=this +_.d=_.c=$ +_.e=a +_.f=b +_.b=_.a=$}, +H0:function H0(){}, +lG:function lG(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6}, +M0:function M0(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +GV:function GV(){}, +lE:function lE(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6}, +LU:function LU(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +Jz:function Jz(){}, +JA:function JA(){}, +JB:function JB(){}, +JC:function JC(){}, +JD:function JD(){}, +JE:function JE(){}, +JF:function JF(){}, +JG:function JG(){}, +JH:function JH(){}, +JI:function JI(){}, +JJ:function JJ(){}, +JK:function JK(){}, +JL:function JL(){}, +JM:function JM(){}, +JN:function JN(){}, +JO:function JO(){}, +JP:function JP(){}, +JQ:function JQ(){}, +JR:function JR(){}, +JS:function JS(){}, +JT:function JT(){}, +JU:function JU(){}, +JV:function JV(){}, +JW:function JW(){}, +JX:function JX(){}, +JY:function JY(){}, +JZ:function JZ(){}, +K_:function K_(){}, +K0:function K0(){}, +K1:function K1(){}, +K2:function K2(){}, +MU:function MU(){}, +MV:function MV(){}, +MW:function MW(){}, +MX:function MX(){}, +MY:function MY(){}, +MZ:function MZ(){}, +N_:function N_(){}, +N0:function N0(){}, +N1:function N1(){}, +N2:function N2(){}, +N3:function N3(){}, +N4:function N4(){}, +N5:function N5(){}, +N6:function N6(){}, +N7:function N7(){}, +N8:function N8(){}, +N9:function N9(){}, +abl(a,b,c){var s=(c-a)/(b-a) +return!isNaN(s)?A.O(s,0,1):s}, +p3:function p3(a,b){this.a=a +this.b=b}, +fj:function fj(a,b,c,d,e,f,g){var _=this +_.ch=_.ay=_.ax=_.at=null +_.dx=_.db=$ +_.dy=a +_.f=b +_.r=c +_.a=d +_.b=null +_.c=e +_.d=f +_.e=g}, +AD:function AD(a){this.a=a}, +abr(){var s=A.a([],t.f1),r=new A.aS(new Float64Array(16)) +r.cP() +return new A.fk(s,A.a([r],t.hZ),A.a([],t.pw))}, +hf:function hf(a,b){this.a=a +this.b=null +this.$ti=b}, +pw:function pw(){}, +wp:function wp(a){this.a=a}, +pl:function pl(a){this.a=a}, +fk:function fk(a,b,c){this.a=a +this.b=b +this.c=c}, +alg(a,b,c){var s=b==null?B.jw:b,r=t.S,q=A.cK(r),p=A.afE() +return new A.e8(s,null,B.b3,A.y(r,t.o),q,a,c,p,A.y(r,t.V))}, +alh(a){return a===1||a===2||a===4}, +nK:function nK(a){this.b=a}, +rX:function rX(a){this.b=a}, +nJ:function nJ(a,b){this.b=a +this.c=b}, +e8:function e8(a,b,c,d,e,f,g,h,i){var _=this +_.k2=!1 +_.a9=_.a0=_.ad=_.a_=_.W=_.bL=_.bU=_.y2=_.y1=_.xr=_.x2=_.x1=_.to=_.ry=_.rx=_.RG=_.R8=_.p4=_.p3=_.p2=_.p1=_.ok=_.k4=_.k3=null +_.at=a +_.ay=b +_.ch=c +_.cx=_.CW=null +_.cy=!1 +_.db=null +_.f=d +_.r=e +_.a=f +_.b=null +_.c=g +_.d=h +_.e=i}, +Ua:function Ua(a,b){this.a=a +this.b=b}, +U9:function U9(a,b){this.a=a +this.b=b}, +U8:function U8(a,b){this.a=a +this.b=b}, +j_:function j_(a,b,c){this.a=a +this.b=b +this.c=c}, +a8V:function a8V(a,b){this.a=a +this.b=b}, +W1:function W1(a){this.a=a +this.b=$}, +W2:function W2(){}, +C7:function C7(a,b,c){this.a=a +this.b=b +this.c=c}, +akb(a){return new A.fN(a.gc1(a),A.aU(20,null,!1,t.pa))}, +akc(a){return a===1}, +adA(a,b){var s=t.S,r=A.cK(s),q=A.a9D() +return new A.fO(B.bf,A.a9C(),B.bz,A.y(s,t.ki),A.az(s),A.y(s,t.o),r,a,b,q,A.y(s,t.V))}, +a7W(a,b){var s=t.S,r=A.cK(s),q=A.a9D() +return new A.fl(B.bf,A.a9C(),B.bz,A.y(s,t.ki),A.az(s),A.y(s,t.o),r,a,b,q,A.y(s,t.V))}, +vV:function vV(a,b){this.a=a +this.b=b}, +qR:function qR(){}, +Qq:function Qq(a,b){this.a=a +this.b=b}, +Qv:function Qv(a,b){this.a=a +this.b=b}, +Qw:function Qw(a,b){this.a=a +this.b=b}, +Qr:function Qr(){}, +Qs:function Qs(a,b){this.a=a +this.b=b}, +Qt:function Qt(a){this.a=a}, +Qu:function Qu(a,b){this.a=a +this.b=b}, +fO:function fO(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.at=a +_.dx=_.db=_.cy=_.cx=_.CW=_.ch=_.ay=_.ax=null +_.dy=b +_.fr=c +_.fy=_.fx=$ +_.k1=_.id=_.go=null +_.k2=$ +_.k3=d +_.k4=e +_.f=f +_.r=g +_.a=h +_.b=null +_.c=i +_.d=j +_.e=k}, +fl:function fl(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.at=a +_.dx=_.db=_.cy=_.cx=_.CW=_.ch=_.ay=_.ax=null +_.dy=b +_.fr=c +_.fy=_.fx=$ +_.k1=_.id=_.go=null +_.k2=$ +_.k3=d +_.k4=e +_.f=f +_.r=g +_.a=h +_.b=null +_.c=i +_.d=j +_.e=k}, +fw:function fw(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.at=a +_.dx=_.db=_.cy=_.cx=_.CW=_.ch=_.ay=_.ax=null +_.dy=b +_.fr=c +_.fy=_.fx=$ +_.k1=_.id=_.go=null +_.k2=$ +_.k3=d +_.k4=e +_.f=f +_.r=g +_.a=h +_.b=null +_.c=i +_.d=j +_.e=k}, +aka(a){return a===1}, +H8:function H8(){this.a=!1}, +pu:function pu(a,b,c,d,e){var _=this +_.b=a +_.c=b +_.d=c +_.e=d +_.f=e +_.r=!1}, +fg:function fg(a,b,c,d,e){var _=this +_.y=_.x=_.w=_.r=_.f=null +_.z=a +_.a=b +_.b=null +_.c=c +_.d=d +_.e=e}, +VX:function VX(a,b){this.a=a +this.b=b}, +VZ:function VZ(){}, +VY:function VY(a,b,c){this.a=a +this.b=b +this.c=c}, +W_:function W_(){this.b=this.a=null}, +akP(a){return!0}, +Qy:function Qy(a,b){this.a=a +this.b=b}, +cj:function cj(){}, +tu:function tu(){}, +rl:function rl(a,b){this.a=a +this.b=b}, +o_:function o_(){}, +W6:function W6(a,b){this.a=a +this.b=b}, +eY:function eY(a,b){this.a=a +this.b=b}, +Ia:function Ia(){}, +anq(a,b){var s=t.S,r=A.cK(s) +return new A.ea(B.ay,18,B.b3,A.y(s,t.o),r,a,b,A.a6P(),A.y(s,t.V))}, +ov:function ov(a,b){this.a=a +this.c=b}, +ow:function ow(){}, +z3:function z3(){}, +ea:function ea(a,b,c,d,e,f,g,h,i){var _=this +_.ai=_.al=_.J=_.ct=_.cb=_.cX=_.a9=_.a0=_.ad=_.a_=_.W=null +_.k3=_.k2=!1 +_.ok=_.k4=null +_.at=a +_.ay=b +_.ch=c +_.cx=_.CW=null +_.cy=!1 +_.db=null +_.f=d +_.r=e +_.a=f +_.b=null +_.c=g +_.d=h +_.e=i}, +ZF:function ZF(a,b){this.a=a +this.b=b}, +ZG:function ZG(a,b){this.a=a +this.b=b}, +ZH:function ZH(a,b){this.a=a +this.b=b}, +ZI:function ZI(a,b){this.a=a +this.b=b}, +ZJ:function ZJ(a){this.a=a}, +akU(a){var s=t.pa +return new A.lg(A.aU(20,null,!1,s),a,A.aU(20,null,!1,s))}, +f1:function f1(a){this.a=a}, +mi:function mi(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +wK:function wK(a,b){this.a=a +this.b=b}, +fN:function fN(a,b){this.a=a +this.b=b +this.c=0}, +lg:function lg(a,b,c){var _=this +_.d=a +_.a=b +_.b=c +_.c=0}, +nL:function nL(a,b,c){var _=this +_.d=a +_.a=b +_.b=c +_.c=0}, +Ga:function Ga(){}, +a0_:function a0_(a,b){this.a=a +this.b=b}, +oQ:function oQ(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +z1:function z1(a){this.a=a}, +Om:function Om(){}, +On:function On(){}, +Oo:function Oo(){}, +z0:function z0(a,b,c,d){var _=this +_.c=a +_.d=b +_.f=c +_.a=d}, +AS:function AS(a){this.a=a}, +Qz:function Qz(){}, +QA:function QA(){}, +QB:function QB(){}, +AR:function AR(a,b,c,d){var _=this +_.c=a +_.d=b +_.f=c +_.a=d}, +AZ:function AZ(a){this.a=a}, +QQ:function QQ(){}, +QR:function QR(){}, +QS:function QS(){}, +AY:function AY(a,b,c,d){var _=this +_.c=a +_.d=b +_.f=c +_.a=d}, +aiA(a,b,c){var s,r,q,p,o=null,n=a==null +if(n&&b==null)return o +s=c<0.5 +if(s)r=n?o:a.a +else r=b==null?o:b.a +if(s)q=n?o:a.b +else q=b==null?o:b.b +if(s)p=n?o:a.c +else p=b==null?o:b.c +if(s)n=n?o:a.d +else n=b==null?o:b.d +return new A.mD(r,q,p,n)}, +mD:function mD(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +Gc:function Gc(){}, +alk(){return new A.rp(new A.Uh(),A.y(t.K,t.oc))}, +a_n:function a_n(a,b){this.a=a +this.b=b}, +t2:function t2(a,b,c,d){var _=this +_.e=a +_.CW=b +_.cy=c +_.a=d}, +Uh:function Uh(){}, +Ul:function Ul(){}, +wm:function wm(a){var _=this +_.d=$ +_.a=null +_.b=a +_.c=null}, +a2R:function a2R(){}, +a2S:function a2S(){}, +aiG(a,b){var s=A.al(a).RG.Q +if(s==null)s=56 +return s+0}, +a4w:function a4w(a){this.b=a}, +K4:function K4(a,b,c,d){var _=this +_.e=a +_.f=b +_.a=c +_.b=d}, +pZ:function pZ(a,b,c){this.e=a +this.fx=b +this.a=c}, +O2:function O2(a,b){this.a=a +this.b=b}, +vx:function vx(a){var _=this +_.d=null +_.e=!1 +_.a=null +_.b=a +_.c=null}, +a0j:function a0j(){}, +Gp:function Gp(a,b){this.c=a +this.a=b}, +Kf:function Kf(a,b,c,d){var _=this +_.A=null +_.a6=a +_.au=b +_.F$=c +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=d +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +a0h:function a0h(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var _=this +_.ay=a +_.CW=_.ch=$ +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.x=j +_.y=k +_.z=l +_.Q=m +_.as=n +_.at=o +_.ax=p}, +a0i:function a0i(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var _=this +_.ay=a +_.cx=_.CW=_.ch=$ +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.x=j +_.y=k +_.z=l +_.Q=m +_.as=n +_.at=o +_.ax=p}, +aiE(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){return new A.mI(b==null?null:b,e,d,g,h,j,i,f,a,c,l,n,o,m,k)}, +aiF(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e +if(a===b&&!0)return a +s=A.r(a.a,b.a,c) +r=A.r(a.b,b.b,c) +q=A.M(a.c,b.c,c) +p=A.M(a.d,b.d,c) +o=A.r(a.e,b.e,c) +n=A.r(a.f,b.f,c) +m=A.cx(a.r,b.r,c) +l=A.ik(a.w,b.w,c) +k=A.ik(a.x,b.x,c) +j=c<0.5 +if(j)i=a.y +else i=b.y +h=A.M(a.z,b.z,c) +g=A.M(a.Q,b.Q,c) +f=A.aH(a.as,b.as,c) +e=A.aH(a.at,b.at,c) +if(j)j=a.ax +else j=b.ax +return A.aiE(k,s,i,q,r,l,p,o,m,n,j,h,e,g,f)}, +mI:function mI(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o}, +Go:function Go(){}, +aq0(a,b){var s,r,q,p,o=A.b_("maxValue") +for(s=null,r=0;r<4;++r){q=a[r] +p=b.$1(q) +if(s==null||p>s){o.b=q +s=p}}return o.ap()}, +t4:function t4(a,b){var _=this +_.c=!0 +_.r=_.f=_.e=_.d=null +_.a=a +_.b=b}, +Uj:function Uj(a,b){this.a=a +this.b=b}, +oV:function oV(a,b){this.a=a +this.b=b}, +iQ:function iQ(a,b){this.a=a +this.b=b}, +nO:function nO(a,b){var _=this +_.e=!0 +_.r=_.f=$ +_.a=a +_.b=b}, +Uk:function Uk(a,b){this.a=a +this.b=b}, +aiI(a,b,c){var s,r,q,p,o,n,m +if(a===b&&!0)return a +s=A.r(a.a,b.a,c) +r=A.r(a.b,b.b,c) +q=A.M(a.c,b.c,c) +p=A.M(a.d,b.d,c) +o=A.aH(a.e,b.e,c) +n=A.da(a.f,b.f,c) +m=A.pK(a.r,b.r,c) +return new A.q4(s,r,q,p,o,n,m,A.ts(a.w,b.w,c))}, +q4:function q4(a,b,c,d,e,f,g,h){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h}, +Gw:function Gw(){}, +t3:function t3(a,b,c,d,e,f,g,h){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h}, +IR:function IR(){}, +q7:function q7(a,b,c,d,e){var _=this +_.e=a +_.r=b +_.w=c +_.x=d +_.a=e}, +GB:function GB(a,b){var _=this +_.d=$ +_.e=a +_.a=null +_.b=b +_.c=null}, +GA:function GA(a,b,c,d,e){var _=this +_.b=a +_.c=b +_.d=c +_.e=d +_.a=e}, +a0y:function a0y(a,b,c,d,e,f,g,h){var _=this +_.w=a +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h}, +a0z:function a0z(a,b,c,d,e,f,g,h){var _=this +_.w=a +_.x=$ +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h}, +aiM(a,b,c){var s,r,q,p,o,n +if(a===b&&!0)return a +s=A.r(a.a,b.a,c) +r=A.M(a.b,b.b,c) +if(c<0.5)q=a.c +else q=b.c +p=A.M(a.d,b.d,c) +o=A.r(a.e,b.e,c) +n=A.r(a.f,b.f,c) +return new A.mR(s,r,q,p,o,n,A.da(a.r,b.r,c))}, +mR:function mR(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g}, +GC:function GC(){}, +aiN(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f +if(a===b&&!0)return a +s=A.r(a.a,b.a,c) +r=A.M(a.b,b.b,c) +q=A.ik(a.c,b.c,c) +p=A.ik(a.d,b.d,c) +o=A.r(a.e,b.e,c) +n=A.r(a.f,b.f,c) +m=A.aH(a.r,b.r,c) +l=A.aH(a.w,b.w,c) +k=c<0.5 +if(k)j=a.x +else j=b.x +if(k)i=a.y +else i=b.y +if(k)h=a.z +else h=b.z +if(k)g=a.Q +else g=b.Q +if(k)f=a.as +else f=b.as +if(k)k=a.at +else k=b.at +return new A.q8(s,r,q,p,o,n,m,l,j,i,h,g,f,k)}, +q8:function q8(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n}, +GD:function GD(){}, +aiO(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h +if(a===b)return a +s=A.r(a.a,b.a,c) +r=A.r(a.b,b.b,c) +q=A.M(a.c,b.c,c) +p=A.r(a.d,b.d,c) +o=A.r(a.e,b.e,c) +n=A.r(a.f,b.f,c) +m=A.M(a.r,b.r,c) +l=A.cx(a.w,b.w,c) +k=c<0.5 +if(k)j=a.x +else j=b.x +i=A.r(a.y,b.y,c) +h=A.a8y(a.z,b.z,c) +if(k)k=a.Q +else k=b.Q +return new A.q9(s,r,q,p,o,n,m,l,j,i,h,k,A.jg(a.as,b.as,c))}, +q9:function q9(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m}, +GE:function GE(){}, +tU:function tU(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){var _=this +_.c=a +_.f=b +_.r=c +_.w=d +_.x=e +_.y=f +_.Q=g +_.as=h +_.at=i +_.ax=j +_.ay=k +_.ch=l +_.cy=m +_.db=n +_.dy=o +_.fr=p +_.fx=q +_.fy=r +_.go=s +_.id=a0 +_.a=a1}, +Kc:function Kc(a,b){var _=this +_.ln$=a +_.a=null +_.b=b +_.c=null}, +Iw:function Iw(a,b,c){this.e=a +this.c=b +this.a=c}, +Kl:function Kl(a,b,c){var _=this +_.A=a +_.F$=b +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=c +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +a3P:function a3P(a,b){this.a=a +this.b=b}, +MH:function MH(){}, +aiU(a,b,c){var s,r,q,p,o,n,m,l,k +if(a===b)return a +s=c<0.5 +if(s)r=a.a +else r=b.a +if(s)q=a.b +else q=b.b +if(s)p=a.c +else p=b.c +o=A.M(a.d,b.d,c) +n=A.M(a.e,b.e,c) +m=A.da(a.f,b.f,c) +if(s)l=a.r +else l=b.r +if(s)k=a.w +else k=b.w +if(s)s=a.x +else s=b.x +return new A.qc(r,q,p,o,n,m,l,k,s)}, +qc:function qc(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i}, +GG:function GG(){}, +a7q(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2){return new A.b4(a1,c,g,m,o,s,d,n,k,f,j,h,i,q,p,l,a2,a0,b,e,a,r)}, +ji(a6,a7,a8){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5=null +if(a6==a7)return a6 +s=a6==null +r=s?a5:a6.a +q=a7==null +p=q?a5:a7.a +p=A.as(r,p,a8,A.yA(),t.w8) +r=s?a5:a6.b +o=q?a5:a7.b +n=t._ +o=A.as(r,o,a8,A.bi(),n) +r=s?a5:a6.c +r=A.as(r,q?a5:a7.c,a8,A.bi(),n) +m=s?a5:a6.d +m=A.as(m,q?a5:a7.d,a8,A.bi(),n) +l=s?a5:a6.e +l=A.as(l,q?a5:a7.e,a8,A.bi(),n) +k=s?a5:a6.f +k=A.as(k,q?a5:a7.f,a8,A.bi(),n) +j=s?a5:a6.r +i=q?a5:a7.r +h=t.u6 +i=A.as(j,i,a8,A.NF(),h) +j=s?a5:a6.w +g=q?a5:a7.w +g=A.as(j,g,a8,A.a9t(),t.DS) +j=s?a5:a6.x +f=q?a5:a7.x +e=t.xB +f=A.as(j,f,a8,A.yB(),e) +j=s?a5:a6.y +j=A.as(j,q?a5:a7.y,a8,A.yB(),e) +d=s?a5:a6.z +e=A.as(d,q?a5:a7.z,a8,A.yB(),e) +d=s?a5:a6.Q +n=A.as(d,q?a5:a7.Q,a8,A.bi(),n) +d=s?a5:a6.as +h=A.as(d,q?a5:a7.as,a8,A.NF(),h) +d=s?a5:a6.at +d=A.aiV(d,q?a5:a7.at,a8) +c=s?a5:a6.ax +b=q?a5:a7.ax +b=A.as(c,b,a8,A.a9n(),t.yX) +c=a8<0.5 +if(c)a=s?a5:a6.ay +else a=q?a5:a7.ay +if(c)a0=s?a5:a6.ch +else a0=q?a5:a7.ch +if(c)a1=s?a5:a6.CW +else a1=q?a5:a7.CW +if(c)a2=s?a5:a6.cx +else a2=q?a5:a7.cx +if(c)a3=s?a5:a6.cy +else a3=q?a5:a7.cy +a4=s?a5:a6.db +a4=A.pK(a4,q?a5:a7.db,a8) +if(c)s=s?a5:a6.dx +else s=q?a5:a7.dx +return A.a7q(a4,a2,o,i,a3,j,r,n,h,e,f,a,m,g,l,b,d,s,k,a1,p,a0)}, +aiV(a,b,c){if(a==null&&b==null)return null +return new A.IK(a,b,c)}, +b4:function b4(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2}, +IK:function IK(a,b,c){this.a=a +this.b=b +this.c=c}, +GH:function GH(){}, +qd:function qd(){}, +vD:function vD(a,b,c){var _=this +_.r=_.f=_.e=_.d=null +_.cW$=a +_.b_$=b +_.a=null +_.b=c +_.c=null}, +a14:function a14(){}, +a11:function a11(a,b,c){this.a=a +this.b=b +this.c=c}, +a12:function a12(a,b){this.a=a +this.b=b}, +a13:function a13(a,b,c){this.a=a +this.b=b +this.c=c}, +a0F:function a0F(){}, +a0G:function a0G(){}, +a0H:function a0H(){}, +a0S:function a0S(){}, +a0V:function a0V(){}, +a0W:function a0W(){}, +a0X:function a0X(){}, +a0Y:function a0Y(){}, +a0Z:function a0Z(){}, +a1_:function a1_(){}, +a10:function a10(){}, +a0I:function a0I(){}, +a0J:function a0J(){}, +a0K:function a0K(){}, +a0T:function a0T(a){this.a=a}, +a0D:function a0D(a){this.a=a}, +a0U:function a0U(a){this.a=a}, +a0C:function a0C(a){this.a=a}, +a0L:function a0L(){}, +a0M:function a0M(){}, +a0N:function a0N(){}, +a0O:function a0O(){}, +a0P:function a0P(){}, +a0Q:function a0Q(){}, +a0R:function a0R(a){this.a=a}, +a0E:function a0E(){}, +J4:function J4(a){this.a=a}, +Iv:function Iv(a,b,c){this.e=a +this.c=b +this.a=c}, +Kk:function Kk(a,b,c){var _=this +_.A=a +_.F$=b +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=c +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +a3O:function a3O(a,b){this.a=a +this.b=b}, +y4:function y4(){}, +OG:function OG(a,b){this.a=a +this.b=b}, +zg:function zg(a,b,c,d,e,f,g,h){var _=this +_.w=a +_.x=b +_.y=c +_.z=d +_.Q=e +_.as=f +_.at=g +_.ax=h}, +GI:function GI(){}, +aiZ(a,b,c){var s,r,q,p,o,n +if(a===b&&!0)return a +if(c<0.5)s=a.a +else s=b.a +r=A.r(a.b,b.b,c) +q=A.r(a.c,b.c,c) +p=A.r(a.d,b.d,c) +o=A.M(a.e,b.e,c) +n=A.da(a.f,b.f,c) +return new A.qg(s,r,q,p,o,n,A.cx(a.r,b.r,c))}, +qg:function qg(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g}, +GK:function GK(){}, +aj0(a,b,c){var s,r,q,p,o,n,m,l +if(a===b&&!0)return a +s=c<0.5 +if(s)r=a.a +else r=b.a +q=t._ +p=A.as(a.b,b.b,c,A.bi(),q) +o=A.as(a.c,b.c,c,A.bi(),q) +q=A.as(a.d,b.d,c,A.bi(),q) +n=A.M(a.e,b.e,c) +if(s)m=a.f +else m=b.f +if(s)s=a.r +else s=b.r +l=t.yX.a(A.cx(a.w,b.w,c)) +return new A.qh(r,p,o,q,n,m,s,l,A.aj_(a.x,b.x,c))}, +aj_(a,b,c){if(a==null||b==null)return null +if(a===b)return a +return A.aj(a,b,c)}, +qh:function qh(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i}, +GL:function GL(){}, +aj5(a2,a3,a4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1 +if(a2===a3)return a2 +s=A.r(a2.a,a3.a,a4) +r=A.r(a2.b,a3.b,a4) +q=A.r(a2.c,a3.c,a4) +p=A.r(a2.d,a3.d,a4) +o=A.r(a2.e,a3.e,a4) +n=A.r(a2.f,a3.f,a4) +m=A.r(a2.r,a3.r,a4) +l=A.r(a2.w,a3.w,a4) +k=a4<0.5 +if(k)j=a2.x!==!1 +else j=a3.x!==!1 +i=A.r(a2.y,a3.y,a4) +h=A.da(a2.z,a3.z,a4) +g=A.da(a2.Q,a3.Q,a4) +f=A.aj4(a2.as,a3.as,a4) +e=A.aj3(a2.at,a3.at,a4) +d=A.aH(a2.ax,a3.ax,a4) +c=A.aH(a2.ay,a3.ay,a4) +if(k){k=a2.ch +if(k==null)k=B.U}else{k=a3.ch +if(k==null)k=B.U}b=A.M(a2.CW,a3.CW,a4) +a=A.M(a2.cx,a3.cx,a4) +a0=a2.cy +if(a0==null)a1=a3.cy!=null +else a1=!0 +if(a1)a0=A.ik(a0,a3.cy,a4) +else a0=null +return new A.qj(s,r,q,p,o,n,m,l,j,i,h,g,f,e,d,c,k,b,a,a0)}, +aj4(a,b,c){var s=a==null +if(s&&b==null)return null +if(s){s=b.a.a +return A.aj(new A.bD(A.U(0,s>>>16&255,s>>>8&255,s&255),0,B.ac,-1),b,c)}if(b==null){s=a.a.a +return A.aj(new A.bD(A.U(0,s>>>16&255,s>>>8&255,s&255),0,B.ac,-1),a,c)}return A.aj(a,b,c)}, +aj3(a,b,c){if(a==null&&b==null)return null +return t.yX.a(A.cx(a,b,c))}, +qj:function qj(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0}, +GN:function GN(){}, +P1(a,b,c){return new A.qk(b,a,null,c,null)}, +qk:function qk(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.f=c +_.y=d +_.a=e}, +a7w(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3){return new A.n0(b,a1,k,a2,l,a5,m,a6,n,b2,q,b3,r,c,h,d,i,a,g,a9,o,b1,p,s,a0,a8,a4,f,j,e,b0,a3,a7)}, +ajh(b9,c0,c1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8 +if(b9===c0)return b9 +s=c1<0.5?b9.a:c0.a +r=b9.b +q=c0.b +p=A.r(r,q,c1) +p.toString +o=b9.c +n=c0.c +m=A.r(o,n,c1) +m.toString +l=b9.d +if(l==null)l=r +k=c0.d +l=A.r(l,k==null?q:k,c1) +k=b9.e +if(k==null)k=o +j=c0.e +k=A.r(k,j==null?n:j,c1) +j=b9.f +i=c0.f +h=A.r(j,i,c1) +h.toString +g=b9.r +f=c0.r +e=A.r(g,f,c1) +e.toString +d=b9.w +if(d==null)d=j +c=c0.w +d=A.r(d,c==null?i:c,c1) +c=b9.x +if(c==null)c=g +b=c0.x +c=A.r(c,b==null?f:b,c1) +b=b9.y +a=b==null +a0=a?j:b +a1=c0.y +a2=a1==null +a0=A.r(a0,a2?i:a1,c1) +a3=b9.z +a4=a3==null +a5=a4?g:a3 +a6=c0.z +a7=a6==null +a5=A.r(a5,a7?f:a6,c1) +a8=b9.Q +if(a8==null){if(a)b=j}else b=a8 +a=c0.Q +if(a==null)a=a2?i:a1 +a=A.r(b,a,c1) +b=b9.as +if(b==null)g=a4?g:a3 +else g=b +b=c0.as +if(b==null)f=a7?f:a6 +else f=b +f=A.r(g,f,c1) +g=b9.at +b=c0.at +a1=A.r(g,b,c1) +a1.toString +a2=b9.ax +a3=c0.ax +a4=A.r(a2,a3,c1) +a4.toString +a6=b9.ay +g=a6==null?g:a6 +a6=c0.ay +g=A.r(g,a6==null?b:a6,c1) +b=b9.ch +if(b==null)b=a2 +a2=c0.ch +b=A.r(b,a2==null?a3:a2,c1) +a2=A.r(b9.CW,c0.CW,c1) +a2.toString +a3=b9.cx +a6=c0.cx +a7=A.r(a3,a6,c1) +a7.toString +a8=b9.cy +a9=c0.cy +b0=A.r(a8,a9,c1) +b0.toString +b1=b9.db +b2=c0.db +b3=A.r(b1,b2,c1) +b3.toString +b4=b9.dx +if(b4==null)b4=a8 +b5=c0.dx +b4=A.r(b4,b5==null?a9:b5,c1) +b5=b9.dy +if(b5==null)b5=b1 +b6=c0.dy +b5=A.r(b5,b6==null?b2:b6,c1) +b6=b9.fr +if(b6==null)b6=a3 +b7=c0.fr +b6=A.r(b6,b7==null?a6:b7,c1) +b7=b9.fx +a3=b7==null?a3:b7 +b7=c0.fx +a3=A.r(a3,b7==null?a6:b7,c1) +a6=b9.fy +if(a6==null)a6=B.l +b7=c0.fy +a6=A.r(a6,b7==null?B.l:b7,c1) +b7=b9.go +if(b7==null)b7=B.l +b8=c0.go +b7=A.r(b7,b8==null?B.l:b8,c1) +b8=b9.id +b1=b8==null?b1:b8 +b8=c0.id +b1=A.r(b1,b8==null?b2:b8,c1) +b2=b9.k1 +a8=b2==null?a8:b2 +b2=c0.k1 +a8=A.r(a8,b2==null?a9:b2,c1) +a9=b9.k2 +o=a9==null?o:a9 +a9=c0.k2 +o=A.r(o,a9==null?n:a9,c1) +n=b9.k4 +if(n==null)n=r +a9=c0.k4 +n=A.r(n,a9==null?q:a9,c1) +a9=b9.ok +j=a9==null?j:a9 +a9=c0.ok +j=A.r(j,a9==null?i:a9,c1) +i=b9.k3 +r=i==null?r:i +i=c0.k3 +return A.a7w(a2,s,a1,g,o,b1,a7,a4,b,a8,m,k,e,c,b3,b5,a5,f,b6,a3,p,l,n,b7,h,d,j,a6,b0,A.r(r,i==null?q:i,c1),b4,a0,a)}, +n0:function n0(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6 +_.go=a7 +_.id=a8 +_.k1=a9 +_.k2=b0 +_.k3=b1 +_.k4=b2 +_.ok=b3}, +GO:function GO(){}, +nN:function nN(a,b){this.b=a +this.a=b}, +aju(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f +if(a===b)return a +s=A.PQ(a.a,b.a,c) +r=t._ +q=A.as(a.b,b.b,c,A.bi(),r) +p=A.M(a.c,b.c,c) +o=A.M(a.d,b.d,c) +n=A.aH(a.e,b.e,c) +r=A.as(a.f,b.f,c,A.bi(),r) +m=A.M(a.r,b.r,c) +l=A.aH(a.w,b.w,c) +k=A.M(a.x,b.x,c) +j=A.M(a.y,b.y,c) +i=A.M(a.z,b.z,c) +h=A.M(a.Q,b.Q,c) +g=c<0.5 +f=g?a.as:b.as +g=g?a.at:b.at +return new A.qD(s,q,p,o,n,r,m,l,k,j,i,h,f,g)}, +qD:function qD(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n}, +Hi:function Hi(){}, +ajw(b3,b4,b5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2 +if(b3===b4&&!0)return b3 +s=A.r(b3.a,b4.a,b5) +r=A.M(b3.b,b4.b,b5) +q=A.r(b3.c,b4.c,b5) +p=A.r(b3.d,b4.d,b5) +o=A.cx(b3.e,b4.e,b5) +n=A.r(b3.f,b4.f,b5) +m=A.r(b3.r,b4.r,b5) +l=A.aH(b3.w,b4.w,b5) +k=A.aH(b3.x,b4.x,b5) +j=A.aH(b3.y,b4.y,b5) +i=A.aH(b3.z,b4.z,b5) +h=t._ +g=A.as(b3.Q,b4.Q,b5,A.bi(),h) +f=A.as(b3.as,b4.as,b5,A.bi(),h) +e=A.as(b3.at,b4.at,b5,A.bi(),h) +d=A.as(b3.ax,b4.ax,b5,A.bi(),h) +c=A.as(b3.ay,b4.ay,b5,A.bi(),h) +b=A.ajv(b3.ch,b4.ch,b5) +a=A.aH(b3.CW,b4.CW,b5) +a0=A.as(b3.cx,b4.cx,b5,A.bi(),h) +a1=A.as(b3.cy,b4.cy,b5,A.bi(),h) +a2=A.as(b3.db,b4.db,b5,A.bi(),h) +a3=A.r(b3.dx,b4.dx,b5) +a4=A.M(b3.dy,b4.dy,b5) +a5=A.r(b3.fr,b4.fr,b5) +a6=A.r(b3.fx,b4.fx,b5) +a7=A.cx(b3.fy,b4.fy,b5) +a8=A.r(b3.go,b4.go,b5) +a9=A.r(b3.id,b4.id,b5) +b0=A.aH(b3.k1,b4.k1,b5) +b1=A.aH(b3.k2,b4.k2,b5) +b2=A.r(b3.k3,b4.k3,b5) +return new A.qE(s,r,q,p,o,n,m,l,k,j,i,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,A.as(b3.k4,b4.k4,b5,A.bi(),h))}, +ajv(a,b,c){var s +if(a==b)return a +if(a==null){s=b.a.a +return A.aj(new A.bD(A.U(0,s>>>16&255,s>>>8&255,s&255),0,B.ac,-1),b,c)}s=a.a.a +return A.aj(a,new A.bD(A.U(0,s>>>16&255,s>>>8&255,s&255),0,B.ac,-1),c)}, +qE:function qE(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6 +_.go=a7 +_.id=a8 +_.k1=a9 +_.k2=b0 +_.k3=b1 +_.k4=b2}, +Hk:function Hk(){}, +ajH(a,b,c){var s,r,q,p,o,n,m,l,k +if(a===b&&!0)return a +s=A.r(a.a,b.a,c) +r=A.M(a.b,b.b,c) +q=A.r(a.c,b.c,c) +p=A.r(a.d,b.d,c) +o=A.cx(a.e,b.e,c) +n=A.pK(a.f,b.f,c) +m=A.r(a.y,b.y,c) +l=A.aH(a.r,b.r,c) +k=A.aH(a.w,b.w,c) +return new A.qM(s,r,q,p,o,n,l,k,A.da(a.x,b.x,c),m)}, +qM:function qM(a,b,c,d,e,f,g,h,i,j){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j}, +Ht:function Ht(){}, +ajN(a,b,c){var s,r,q,p +if(a===b&&!0)return a +s=A.r(a.a,b.a,c) +r=A.M(a.b,b.b,c) +q=A.M(a.c,b.c,c) +p=A.M(a.d,b.d,c) +return new A.qN(s,r,q,p,A.M(a.e,b.e,c))}, +qN:function qN(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +Hx:function Hx(){}, +akf(a,b,c){var s,r,q,p,o,n,m +if(a===b)return a +s=A.r(a.a,b.a,c) +r=A.r(a.b,b.b,c) +q=A.M(a.c,b.c,c) +p=A.r(a.d,b.d,c) +o=A.r(a.e,b.e,c) +n=A.cx(a.f,b.f,c) +m=A.cx(a.r,b.r,c) +return new A.qT(s,r,q,p,o,n,m,A.M(a.w,b.w,c))}, +qT:function qT(a,b,c,d,e,f,g,h){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h}, +HG:function HG(){}, +akg(a,b,c){var s,r +if(a===b&&!0)return a +s=A.aH(a.a,b.a,c) +if(c<0.5)r=a.b +else r=b.b +return new A.qU(s,r,A.a8a(a.c,b.c,c))}, +qU:function qU(a,b,c){this.a=a +this.b=b +this.c=c}, +HH:function HH(){}, +akl(a,b,c){if(a===b)return a +return new A.qY(A.ji(a.a,b.a,c))}, +qY:function qY(a){this.a=a}, +HJ:function HJ(){}, +abb(a,b,c){if(b!=null&&!b.k(0,B.H))return A.aaO(A.U(B.c.bd(255*A.akm(c)),b.gn(b)>>>16&255,b.gn(b)>>>8&255,b.gn(b)&255),a) +return a}, +akm(a){var s,r,q,p,o,n +if(a<0)return 0 +for(s=0;r=B.jS[s],q=r.a,a>=q;){if(a===q||s+1===6)return r.b;++s}p=B.jS[s-1] +o=p.a +n=p.b +return n+(a-o)/(q-o)*(r.b-n)}, +a7N(a,b,c){var s,r=A.al(a) +if(c>0)if(r.a){s=r.ax +if(s.a===B.W){s=s.cy.a +s=A.U(255,b.gn(b)>>>16&255,b.gn(b)>>>8&255,b.gn(b)&255).k(0,A.U(255,s>>>16&255,s>>>8&255,s&255))}else s=!1}else s=!1 +else s=!1 +if(s){s=r.ax.db.a +return A.aaO(A.U(B.c.bd(255*((4.5*Math.log(c+1)+2)/100)),s>>>16&255,s>>>8&255,s&255),b)}return b}, +iS:function iS(a,b){this.a=a +this.b=b}, +akx(a,b,c){var s,r,q,p,o,n,m,l,k,j +if(a===b)return a +s=A.r(a.a,b.a,c) +r=A.r(a.b,b.b,c) +q=A.da(a.c,b.c,c) +p=A.pK(a.d,b.d,c) +o=A.da(a.e,b.e,c) +n=A.r(a.f,b.f,c) +m=A.r(a.r,b.r,c) +l=A.r(a.w,b.w,c) +k=A.r(a.x,b.x,c) +j=A.cx(a.y,b.y,c) +return new A.ra(s,r,q,p,o,n,m,l,k,j,A.cx(a.z,b.z,c))}, +ra:function ra(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k}, +HO:function HO(){}, +akz(a,b,c){if(a===b)return a +return new A.re(A.ji(a.a,b.a,c))}, +re:function re(a){this.a=a}, +HS:function HS(){}, +rg:function rg(a,b,c,d,e,f,g){var _=this +_.f=a +_.r=b +_.w=c +_.x=d +_.y=e +_.b=f +_.a=g}, +a1s:function a1s(){}, +w1:function w1(a,b){this.a=a +this.b=b}, +Bj:function Bj(a,b,c,d){var _=this +_.c=a +_.z=b +_.k1=c +_.a=d}, +HI:function HI(a,b){this.a=a +this.b=b}, +GM:function GM(a,b){this.c=a +this.a=b}, +Kg:function Kg(a,b,c,d){var _=this +_.A=null +_.a6=a +_.au=b +_.F$=c +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=d +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +a1F:function a1F(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5){var _=this +_.dx=a +_.dy=b +_.fr=c +_.fx=d +_.a=e +_.b=f +_.c=g +_.d=h +_.e=i +_.f=j +_.r=k +_.w=l +_.x=m +_.y=n +_.z=o +_.Q=p +_.as=q +_.at=r +_.ax=s +_.ay=a0 +_.ch=a1 +_.CW=a2 +_.cx=a3 +_.cy=a4 +_.db=a5}, +a1G:function a1G(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4){var _=this +_.dx=a +_.dy=b +_.fr=c +_.fy=_.fx=$ +_.a=d +_.b=e +_.c=f +_.d=g +_.e=h +_.f=i +_.r=j +_.w=k +_.x=l +_.y=m +_.z=n +_.Q=o +_.as=p +_.at=q +_.ax=r +_.ay=s +_.ch=a0 +_.CW=a1 +_.cx=a2 +_.cy=a3 +_.db=a4}, +adF(a,b,c,d,e){return new A.vw(c,d,a,b,new A.be(A.a([],t.A),t.Q),new A.be(A.a([],t.u),t.tY),0,e.h("vw<0>"))}, +Rx:function Rx(){}, +Zc:function Zc(){}, +Rl:function Rl(){}, +Rk:function Rk(){}, +a17:function a17(){}, +Rw:function Rw(){}, +a4c:function a4c(){}, +vw:function vw(a,b,c,d,e,f,g,h){var _=this +_.w=a +_.x=b +_.a=c +_.b=d +_.d=_.c=null +_.bT$=e +_.bY$=f +_.iV$=g +_.$ti=h}, +Mr:function Mr(){}, +Ms:function Ms(){}, +akA(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){return new A.ni(k,a,i,m,a1,c,j,n,b,l,r,d,o,s,a0,p,g,e,f,h,q)}, +akB(a2,a3,a4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1 +if(a2===a3)return a2 +s=A.r(a2.a,a3.a,a4) +r=A.r(a2.b,a3.b,a4) +q=A.r(a2.c,a3.c,a4) +p=A.r(a2.d,a3.d,a4) +o=A.r(a2.e,a3.e,a4) +n=A.M(a2.f,a3.f,a4) +m=A.M(a2.r,a3.r,a4) +l=A.M(a2.w,a3.w,a4) +k=A.M(a2.x,a3.x,a4) +j=A.M(a2.y,a3.y,a4) +i=A.cx(a2.z,a3.z,a4) +h=a4<0.5 +if(h)g=a2.Q +else g=a3.Q +f=A.M(a2.as,a3.as,a4) +e=A.jg(a2.at,a3.at,a4) +d=A.jg(a2.ax,a3.ax,a4) +c=A.jg(a2.ay,a3.ay,a4) +b=A.jg(a2.ch,a3.ch,a4) +a=A.M(a2.CW,a3.CW,a4) +a0=A.da(a2.cx,a3.cx,a4) +a1=A.aH(a2.cy,a3.cy,a4) +if(h)h=a2.db +else h=a3.db +return A.akA(r,k,n,g,a,a0,b,a1,q,m,s,j,p,l,f,c,h,i,e,d,o)}, +ni:function ni(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1}, +HX:function HX(){}, +abv(a,b,c,d,e,f){return new A.BQ(c,b,a,d,f,e,null)}, +ru(a,b,c,d,e,f,g,h,i,j,k,l,m,a0){var s,r,q,p=null,o=g==null,n=o&&!0?p:new A.Ik(g,b) +if(o)o=!0 +else o=!1 +s=o?p:new A.Il(g,f,i,h) +o=l==null?p:new A.cM(l,t.kq) +r=k==null?p:new A.cM(k,t.kq) +q=j==null?p:new A.cM(j,t.sL) +return A.a7q(a,p,p,p,d,p,n,p,q,r,o,p,s,p,p,p,p,p,p,p,p,a0)}, +a2o:function a2o(a,b){this.a=a +this.b=b}, +BQ:function BQ(a,b,c,d,e,f,g){var _=this +_.c=a +_.w=b +_.z=c +_.ax=d +_.cx=e +_.dx=f +_.a=g}, +xj:function xj(a,b,c,d,e,f,g,h){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.a=h}, +KQ:function KQ(a){var _=this +_.d=$ +_.a=null +_.b=a +_.c=null}, +In:function In(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.at=a +_.ax=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.a=m}, +a2n:function a2n(a){this.a=a}, +Ik:function Ik(a,b){this.a=a +this.b=b}, +Il:function Il(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +Im:function Im(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3){var _=this +_.dy=a +_.fx=$ +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.x=j +_.y=k +_.z=l +_.Q=m +_.as=n +_.at=o +_.ax=p +_.ay=q +_.ch=r +_.CW=s +_.cx=a0 +_.cy=a1 +_.db=a2 +_.dx=a3}, +a2k:function a2k(a){this.a=a}, +a2m:function a2m(a){this.a=a}, +a2l:function a2l(){}, +HT:function HT(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4){var _=this +_.dy=a +_.fr=b +_.fx=$ +_.a=c +_.b=d +_.c=e +_.d=f +_.e=g +_.f=h +_.r=i +_.w=j +_.x=k +_.y=l +_.z=m +_.Q=n +_.as=o +_.at=p +_.ax=q +_.ay=r +_.ch=s +_.CW=a0 +_.cx=a1 +_.cy=a2 +_.db=a3 +_.dx=a4}, +a1H:function a1H(a){this.a=a}, +a1I:function a1I(a){this.a=a}, +a1K:function a1K(a){this.a=a}, +a1J:function a1J(){}, +HU:function HU(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4){var _=this +_.dy=a +_.fr=b +_.fx=$ +_.a=c +_.b=d +_.c=e +_.d=f +_.e=g +_.f=h +_.r=i +_.w=j +_.x=k +_.y=l +_.z=m +_.Q=n +_.as=o +_.at=p +_.ax=q +_.ay=r +_.ch=s +_.CW=a0 +_.cx=a1 +_.cy=a2 +_.db=a3 +_.dx=a4}, +a1L:function a1L(a){this.a=a}, +a1M:function a1M(a){this.a=a}, +a1O:function a1O(a){this.a=a}, +a1N:function a1N(){}, +Jp:function Jp(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3){var _=this +_.dy=a +_.fx=$ +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.x=j +_.y=k +_.z=l +_.Q=m +_.as=n +_.at=o +_.ax=p +_.ay=q +_.ch=r +_.CW=s +_.cx=a0 +_.cy=a1 +_.db=a2 +_.dx=a3}, +a3p:function a3p(a){this.a=a}, +a3q:function a3q(a){this.a=a}, +a3s:function a3s(a){this.a=a}, +a3t:function a3t(a){this.a=a}, +a3r:function a3r(){}, +akV(a,b,c){if(a===b)return a +return new A.lh(A.ji(a.a,b.a,c))}, +abw(a,b){return new A.rt(b,a,null)}, +abx(a){var s=a.aj(t.wq),r=s==null?null:s.w +return r==null?A.al(a).ai:r}, +lh:function lh(a){this.a=a}, +rt:function rt(a,b,c){this.w=a +this.b=b +this.a=c}, +Io:function Io(){}, +jz:function jz(a,b,c,d,e,f,g,h,i,j){var _=this +_.z=a +_.Q=b +_.as=c +_.at=d +_.ax=e +_.ch=_.ay=$ +_.CW=!0 +_.e=f +_.f=g +_.a=h +_.b=i +_.c=j +_.d=!1}, +apC(a,b,c){if(c!=null)return c +if(b)return new A.a5t(a) +return null}, +a5t:function a5t(a){this.a=a}, +a2A:function a2A(){}, +rA:function rA(a,b,c,d,e,f,g,h,i,j){var _=this +_.z=a +_.Q=b +_.as=c +_.at=d +_.ax=e +_.db=_.cy=_.cx=_.CW=_.ch=_.ay=$ +_.e=f +_.f=g +_.a=h +_.b=i +_.c=j +_.d=!1}, +apB(a,b,c){if(c!=null)return c +if(b)return new A.a5s(a) +return null}, +apF(a,b,c,d){var s,r,q,p,o,n +if(b){if(c!=null){s=c.$0() +r=new A.S(s.c-s.a,s.d-s.b)}else{s=a.k3 +s.toString +r=s}q=d.a4(0,B.h).gcz() +p=d.a4(0,new A.q(0+r.a,0)).gcz() +o=d.a4(0,new A.q(0,0+r.b)).gcz() +n=d.a4(0,r.Ge(0,B.h)).gcz() +return Math.ceil(Math.max(Math.max(q,p),Math.max(o,n)))}return 35}, +a5s:function a5s(a){this.a=a}, +a2B:function a2B(){}, +rB:function rB(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.z=a +_.Q=b +_.as=c +_.at=d +_.ax=e +_.ay=f +_.cx=_.CW=_.ch=$ +_.cy=null +_.e=g +_.f=h +_.a=i +_.b=j +_.c=k +_.d=!1}, +al0(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3){return new A.nu(d,a5,a7,a8,a6,p,a0,a1,a3,a4,a2,r,s,o,e,l,b0,b,f,i,m,k,a9,b1,b2,g,!1,q,!1,j,c,b3,n)}, +abA(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,a0){var s=null +return new A.BV(c,o,s,s,s,s,n,s,s,s,s,l,m,j,!0,B.bD,s,s,d,f,i,h,p,q,r,e!==!1,!1,k,!1,g,b,a0,s)}, +jB:function jB(){}, +nw:function nw(){}, +wI:function wI(a,b,c){this.f=a +this.b=b +this.a=c}, +nu:function nu(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.z=i +_.Q=j +_.as=k +_.at=l +_.ax=m +_.ay=n +_.ch=o +_.CW=p +_.cx=q +_.cy=r +_.db=s +_.dx=a0 +_.dy=a1 +_.fr=a2 +_.fx=a3 +_.fy=a4 +_.go=a5 +_.id=a6 +_.k1=a7 +_.k2=a8 +_.k3=a9 +_.k4=b0 +_.ok=b1 +_.p1=b2 +_.a=b3}, +wd:function wd(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.z=i +_.Q=j +_.as=k +_.at=l +_.ax=m +_.ay=n +_.ch=o +_.CW=p +_.cx=q +_.cy=r +_.db=s +_.dx=a0 +_.dy=a1 +_.fr=a2 +_.fx=a3 +_.fy=a4 +_.go=a5 +_.id=a6 +_.k1=a7 +_.k2=a8 +_.k3=a9 +_.k4=b0 +_.ok=b1 +_.p1=b2 +_.p2=b3 +_.p3=b4 +_.p4=b5 +_.a=b6}, +kl:function kl(a,b){this.a=a +this.b=b}, +wc:function wc(a,b,c,d){var _=this +_.e=_.d=null +_.f=!1 +_.r=a +_.w=$ +_.x=null +_.y=b +_.z=!1 +_.hh$=c +_.a=null +_.b=d +_.c=null}, +a2y:function a2y(){}, +a2x:function a2x(){}, +a2z:function a2z(a,b){this.a=a +this.b=b}, +a2u:function a2u(a,b){this.a=a +this.b=b}, +a2w:function a2w(a){this.a=a}, +a2v:function a2v(a,b){this.a=a +this.b=b}, +BV:function BV(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.z=i +_.Q=j +_.as=k +_.at=l +_.ax=m +_.ay=n +_.ch=o +_.CW=p +_.cx=q +_.cy=r +_.db=s +_.dx=a0 +_.dy=a1 +_.fr=a2 +_.fx=a3 +_.fy=a4 +_.go=a5 +_.id=a6 +_.k1=a7 +_.k2=a8 +_.k3=a9 +_.k4=b0 +_.ok=b1 +_.p1=b2 +_.a=b3}, +y8:function y8(){}, +akC(a){if(a===-1)return"FloatingLabelAlignment.start" +if(a===0)return"FloatingLabelAlignment.center" +return"FloatingLabelAlignment(x: "+B.f.M(a,1)+")"}, +Ry:function Ry(a,b){this.a=a +this.b=b}, +Bk:function Bk(){}, +BW:function BW(){}, +Iu:function Iu(){}, +ale(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s){return new A.rT(b,l,m,j,e,o,r,n,f,a,p,k,d,h,g,c,i,s,q)}, +alf(a0,a1,a2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a +if(a0===a1)return a0 +s=a2<0.5 +if(s)r=a0.a +else r=a1.a +q=A.cx(a0.b,a1.b,a2) +if(s)p=a0.c +else p=a1.c +o=A.r(a0.d,a1.d,a2) +n=A.r(a0.e,a1.e,a2) +m=A.r(a0.f,a1.f,a2) +l=A.aH(a0.r,a1.r,a2) +k=A.aH(a0.w,a1.w,a2) +j=A.aH(a0.x,a1.x,a2) +i=A.da(a0.y,a1.y,a2) +h=A.r(a0.z,a1.z,a2) +g=A.r(a0.Q,a1.Q,a2) +f=A.M(a0.as,a1.as,a2) +e=A.M(a0.at,a1.at,a2) +d=A.M(a0.ax,a1.ax,a2) +if(s)c=a0.ay +else c=a1.ay +if(s)b=a0.ch +else b=a1.ch +if(s)a=a0.CW +else a=a1.CW +if(s)s=a0.cx +else s=a1.cx +return A.ale(i,r,c,f,n,j,d,e,b,o,g,q,p,k,m,h,s,l,a)}, +rT:function rT(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s}, +IO:function IO(){}, +jM(a,b,c,d,e,f,g,h,i,j,k){return new A.nM(b,k,e,d,g,i,j,h,c,a,f)}, +al_(a,b){var s,r,q,p,o,n,m,l,k,j,i=t.By,h=A.a([a],i),g=A.a([b],i) +for(s=b,r=a;r!==s;){q=r.a +p=s.a +if(q>=p){o=r.c +if(!(o instanceof A.z)||!o.lL(r))return null +h.push(o) +r=o}if(q<=p){n=s.c +if(!(n instanceof A.z)||!n.lL(s))return null +g.push(n) +s=n}}m=new A.aS(new Float64Array(16)) +m.cP() +l=new A.aS(new Float64Array(16)) +l.cP() +for(k=g.length-1;k>0;k=j){j=k-1 +g[k].d5(g[j],m)}for(k=h.length-1;k>0;k=j){j=k-1 +h[k].d5(h[j],l)}if(l.fp(l)!==0){l.cC(0,m) +i=l}else i=null +return i}, +jN:function jN(a,b){this.a=a +this.b=b}, +nM:function nM(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.Q=i +_.as=j +_.a=k}, +IV:function IV(a,b,c,d){var _=this +_.d=a +_.cW$=b +_.b_$=c +_.a=null +_.b=d +_.c=null}, +a37:function a37(a){this.a=a}, +wU:function wU(a,b,c,d){var _=this +_.A=a +_.au=b +_.bG=null +_.F$=c +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=d +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +It:function It(a,b,c,d,e){var _=this +_.e=a +_.f=b +_.r=c +_.c=d +_.a=e}, +im:function im(){}, +m0:function m0(a,b){this.a=a +this.b=b}, +wn:function wn(a,b,c,d,e,f,g,h,i,j,k,l){var _=this +_.r=a +_.w=b +_.x=c +_.y=d +_.z=e +_.Q=f +_.as=g +_.at=h +_.c=i +_.d=j +_.e=k +_.a=l}, +IS:function IS(a,b,c){var _=this +_.db=_.cy=_.cx=_.CW=null +_.e=_.d=$ +_.i_$=a +_.dH$=b +_.a=null +_.b=c +_.c=null}, +a2T:function a2T(){}, +a2U:function a2U(){}, +a2V:function a2V(){}, +a2W:function a2W(){}, +xm:function xm(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +KX:function KX(a,b,c){this.b=a +this.c=b +this.a=c}, +My:function My(){}, +IT:function IT(){}, +Ay:function Ay(){}, +lp(a,b,c){if(c.h("bd<0>").b(a))return a.Y(b) +return a}, +as(a,b,c,d,e){if(a==null&&b==null)return null +return new A.we(a,b,c,d,e.h("we<0>"))}, +abU(a){var s=A.az(t.BD) +if(a!=null)s.I(0,a) +return new A.Cn(s,$.b7())}, +bZ:function bZ(a,b){this.a=a +this.b=b}, +Cm:function Cm(){}, +HL:function HL(){}, +bd:function bd(){}, +we:function we(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.$ti=e}, +bB:function bB(a,b){this.a=a +this.$ti=b}, +cM:function cM(a,b){this.a=a +this.$ti=b}, +Cn:function Cn(a,b){var _=this +_.a=a +_.W$=0 +_.a_$=b +_.a0$=_.ad$=0 +_.a9$=!1}, +Cl:function Cl(){}, +Uo:function Uo(a,b,c){this.a=a +this.b=b +this.c=c}, +Um:function Um(){}, +Un:function Un(){}, +alr(a,b,c){if(a===b)return a +return new A.Cs(A.a8a(a.a,b.a,c))}, +Cs:function Cs(a){this.a=a}, +als(a,b,c){if(a===b)return a +return new A.t7(A.ji(a.a,b.a,c))}, +t7:function t7(a){this.a=a}, +IX:function IX(){}, +a8a(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=null +if(a==b)return a +s=a==null +r=s?d:a.a +q=b==null +p=q?d:b.a +o=t._ +p=A.as(r,p,c,A.bi(),o) +r=s?d:a.b +r=A.as(r,q?d:b.b,c,A.bi(),o) +n=s?d:a.c +o=A.as(n,q?d:b.c,c,A.bi(),o) +n=s?d:a.d +m=q?d:b.d +m=A.as(n,m,c,A.NF(),t.u6) +n=s?d:a.e +l=q?d:b.e +l=A.as(n,l,c,A.a9t(),t.DS) +n=s?d:a.f +k=q?d:b.f +j=t.xB +k=A.as(n,k,c,A.yB(),j) +n=s?d:a.r +n=A.as(n,q?d:b.r,c,A.yB(),j) +i=s?d:a.w +j=A.as(i,q?d:b.w,c,A.yB(),j) +i=s?d:a.x +h=q?d:b.x +g=s?d:a.y +f=q?d:b.y +f=A.as(g,f,c,A.a9n(),t.yX) +g=c<0.5 +if(g)e=s?d:a.z +else e=q?d:b.z +if(g)g=s?d:a.Q +else g=q?d:b.Q +s=s?d:a.as +return new A.Ct(p,r,o,m,l,k,n,j,new A.IM(i,h,c),f,e,g,A.pK(s,q?d:b.as,c))}, +Ct:function Ct(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m}, +IM:function IM(a,b,c){this.a=a +this.b=b +this.c=c}, +IY:function IY(){}, +alt(a,b,c){if(a===b)return a +return new A.nQ(A.a8a(a.a,b.a,c))}, +nQ:function nQ(a){this.a=a}, +IZ:function IZ(){}, +alE(a,b,c){var s,r,q,p,o,n,m,l,k,j +if(a===b)return a +s=A.M(a.a,b.a,c) +r=A.r(a.b,b.b,c) +q=A.M(a.c,b.c,c) +p=A.r(a.d,b.d,c) +o=A.r(a.e,b.e,c) +n=A.r(a.f,b.f,c) +m=A.cx(a.r,b.r,c) +l=A.as(a.w,b.w,c,A.yA(),t.w8) +k=A.as(a.x,b.x,c,A.afB(),t.Ak) +if(c<0.5)j=a.y +else j=b.y +return new A.tk(s,r,q,p,o,n,m,l,k,j)}, +tk:function tk(a,b,c,d,e,f,g,h,i,j){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j}, +Ja:function Ja(){}, +alF(a,b,c){var s,r,q,p,o,n,m,l,k +if(a===b)return a +s=A.M(a.a,b.a,c) +r=A.r(a.b,b.b,c) +q=A.M(a.c,b.c,c) +p=A.r(a.d,b.d,c) +o=A.r(a.e,b.e,c) +n=A.r(a.f,b.f,c) +m=A.cx(a.r,b.r,c) +l=a.w +l=A.a8y(l,l,c) +k=A.as(a.x,b.x,c,A.yA(),t.w8) +return new A.tl(s,r,q,p,o,n,m,l,k,A.as(a.y,b.y,c,A.afB(),t.Ak))}, +tl:function tl(a,b,c,d,e,f,g,h,i,j){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j}, +Jb:function Jb(){}, +alG(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h +if(a===b)return a +s=A.r(a.a,b.a,c) +r=A.M(a.b,b.b,c) +q=A.aH(a.c,b.c,c) +p=A.aH(a.d,b.d,c) +o=a.e +if(o==null)n=b.e==null +else n=!1 +if(n)o=null +else o=A.ik(o,b.e,c) +n=a.f +if(n==null)m=b.f==null +else m=!1 +if(m)n=null +else n=A.ik(n,b.f,c) +m=A.M(a.r,b.r,c) +l=c<0.5 +if(l)k=a.w +else k=b.w +if(l)l=a.x +else l=b.x +j=A.r(a.y,b.y,c) +i=A.cx(a.z,b.z,c) +h=A.M(a.Q,b.Q,c) +return new A.tm(s,r,q,p,o,n,m,k,l,j,i,h,A.M(a.as,b.as,c))}, +tm:function tm(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m}, +Jc:function Jc(){}, +alL(a,b,c){if(a===b)return a +return new A.tw(A.ji(a.a,b.a,c))}, +tw:function tw(a){this.a=a}, +Jo:function Jo(){}, +lo:function lo(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var _=this +_.iX=a +_.ad=b +_.a0=c +_.fy=!1 +_.id=_.go=null +_.k1=d +_.k2=e +_.k3=f +_.k4=g +_.ok=$ +_.p1=null +_.p2=$ +_.k_$=h +_.xK$=i +_.y=j +_.z=null +_.Q=!1 +_.at=_.as=null +_.ax=k +_.CW=_.ch=null +_.e=l +_.a=null +_.b=m +_.c=n +_.d=o +_.$ti=p}, +Ck:function Ck(){}, +wo:function wo(){}, +af_(a,b,c){var s,r +a.cP() +if(b===1)return +a.cd(0,b,b) +s=c.a +r=c.b +a.ae(0,-((s*b-s)/2),-((r*b-r)/2))}, +aem(a,b,c,d){var s=new A.y_(c,a,d,b,new A.aS(new Float64Array(16)),A.au(),A.au(),$.b7()),r=s.gdu() +a.Z(0,r) +a.e0(s.gmM()) +d.a.Z(0,r) +b.Z(0,r) +return s}, +aen(a,b,c,d){var s=new A.y0(c,d,b,a,new A.aS(new Float64Array(16)),A.au(),A.au(),$.b7()),r=s.gdu() +d.a.Z(0,r) +b.Z(0,r) +a.e0(s.gmM()) +return s}, +Mp:function Mp(a,b,c,d,e,f){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.a=f}, +a5_:function a5_(a){this.a=a}, +a50:function a50(a){this.a=a}, +a51:function a51(a){this.a=a}, +a52:function a52(a){this.a=a}, +ks:function ks(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +Mn:function Mn(a,b,c,d){var _=this +_.d=$ +_.lo$=a +_.i0$=b +_.iW$=c +_.a=null +_.b=d +_.c=null}, +kt:function kt(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +Mo:function Mo(a,b,c,d){var _=this +_.d=$ +_.lo$=a +_.i0$=b +_.iW$=c +_.a=null +_.b=d +_.c=null}, +it:function it(){}, +G8:function G8(){}, +Al:function Al(){}, +D0:function D0(){}, +Vq:function Vq(a){this.a=a}, +y1:function y1(){}, +y_:function y_(a,b,c,d,e,f,g,h){var _=this +_.r=a +_.w=b +_.x=c +_.y=d +_.z=e +_.Q=f +_.as=g +_.W$=0 +_.a_$=h +_.a0$=_.ad$=0 +_.a9$=!1}, +a4Y:function a4Y(a,b){this.a=a +this.b=b}, +y0:function y0(a,b,c,d,e,f,g,h){var _=this +_.r=a +_.w=b +_.x=c +_.y=d +_.z=e +_.Q=f +_.as=g +_.W$=0 +_.a_$=h +_.a0$=_.ad$=0 +_.a9$=!1}, +a4Z:function a4Z(a,b){this.a=a +this.b=b}, +Js:function Js(){}, +Nd:function Nd(){}, +Ne:function Ne(){}, +am9(a,b,c){var s,r,q,p,o,n,m,l,k,j +if(a===b)return a +s=A.r(a.a,b.a,c) +r=A.cx(a.b,b.b,c) +q=A.M(a.c,b.c,c) +p=A.r(a.d,b.d,c) +o=A.r(a.e,b.e,c) +n=A.aH(a.f,b.f,c) +m=A.as(a.r,b.r,c,A.yA(),t.w8) +l=c<0.5 +if(l)k=a.w +else k=b.w +if(l)j=a.x +else j=b.x +if(l)l=a.y +else l=b.y +return new A.tM(s,r,q,p,o,n,m,k,j,l)}, +tM:function tM(a,b,c,d,e,f,g,h,i,j){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j}, +K3:function K3(){}, +amr(a,b,c){var s,r,q,p +if(a===b)return a +s=A.r(a.a,b.a,c) +r=A.r(a.b,b.b,c) +q=A.M(a.c,b.c,c) +p=A.r(a.d,b.d,c) +return new A.tN(s,r,q,p,A.r(a.e,b.e,c))}, +tN:function tN(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +K5:function K5(){}, +ams(a,b,c){var s,r,q,p,o,n +if(a===b&&!0)return a +s=c<0.5 +if(s)r=a.a +else r=b.a +q=t._ +p=A.as(a.b,b.b,c,A.bi(),q) +if(s)o=a.e +else o=b.e +q=A.as(a.c,b.c,c,A.bi(),q) +n=A.M(a.d,b.d,c) +if(s)s=a.f +else s=b.f +return new A.tQ(r,p,q,n,o,s)}, +tQ:function tQ(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +K9:function K9(){}, +oe(a){var s=a.r4(t.yp) +if(s!=null)return s +throw A.d(A.RA(A.a([A.r4("Scaffold.of() called with a context that does not contain a Scaffold."),A.bg("No Scaffold ancestor could be found starting from the context that was passed to Scaffold.of(). This usually happens when the context provided is from the same StatefulWidget as that whose build function actually creates the Scaffold widget being sought."),A.r3(u.E),A.r3("A more efficient solution is to split your build function into several widgets. This introduces a new context from which you can obtain the Scaffold. In this solution, you would have an outer widget that creates the Scaffold populated by instances of your new inner widgets, and then in these inner widgets you would use Scaffold.of().\nA less elegant but more expedient solution is assign a GlobalKey to the Scaffold, then use the key.currentState property to obtain the ScaffoldState rather than using the Scaffold.of() function."),a.H1("The context used was")],t.E)))}, +ed:function ed(a,b){this.a=a +this.b=b}, +uh:function uh(a,b){this.c=a +this.a=b}, +Ev:function Ev(a,b,c,d,e,f){var _=this +_.d=a +_.e=b +_.r=c +_.y=_.x=null +_.cW$=d +_.b_$=e +_.a=null +_.b=f +_.c=null}, +XJ:function XJ(a,b,c){this.a=a +this.b=b +this.c=c}, +x6:function x6(a,b,c){this.f=a +this.b=b +this.a=c}, +XK:function XK(a,b,c,d,e,f,g,h){var _=this +_.a=a +_.b=b +_.c=c +_.e=d +_.f=e +_.r=f +_.w=g +_.y=h}, +a4F:function a4F(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +ug:function ug(a,b){this.a=a +this.b=b}, +KI:function KI(a,b,c){var _=this +_.a=a +_.b=null +_.c=b +_.W$=0 +_.a_$=c +_.a0$=_.ad$=0 +_.a9$=!1}, +vA:function vA(a,b,c,d,e,f,g){var _=this +_.e=a +_.f=b +_.r=c +_.a=d +_.b=e +_.c=f +_.d=g}, +Gy:function Gy(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +a4a:function a4a(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.d=a +_.e=b +_.f=c +_.r=d +_.w=e +_.x=f +_.y=g +_.z=h +_.Q=i +_.as=j +_.at=k +_.ax=l +_.ay=m +_.c=_.b=null}, +w_:function w_(a,b,c,d,e,f){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.a=f}, +w0:function w0(a,b,c){var _=this +_.x=_.w=_.r=_.f=_.e=_.d=$ +_.y=null +_.cW$=a +_.b_$=b +_.a=null +_.b=c +_.c=null}, +a1P:function a1P(a,b){this.a=a +this.b=b}, +uf:function uf(a,b,c,d,e,f){var _=this +_.e=a +_.f=b +_.r=c +_.w=d +_.CW=e +_.a=f}, +od:function od(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var _=this +_.d=a +_.e=b +_.f=c +_.r=null +_.w=d +_.x=e +_.Q=_.z=_.y=null +_.as=f +_.at=null +_.ax=g +_.ay=null +_.CW=_.ch=$ +_.cy=_.cx=null +_.dx=_.db=$ +_.dy=!1 +_.fr=h +_.bc$=i +_.f0$=j +_.qZ$=k +_.dG$=l +_.f1$=m +_.cW$=n +_.b_$=o +_.a=null +_.b=p +_.c=null}, +XN:function XN(a,b){this.a=a +this.b=b}, +XM:function XM(a,b){this.a=a +this.b=b}, +XL:function XL(a,b,c){this.a=a +this.b=b +this.c=c}, +XO:function XO(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g}, +Hv:function Hv(a,b){this.e=a +this.a=b +this.b=null}, +x8:function x8(a,b,c,d){var _=this +_.f=a +_.r=b +_.b=c +_.a=d}, +a4b:function a4b(){}, +x7:function x7(){}, +x9:function x9(){}, +xa:function xa(){}, +y6:function y6(){}, +EF:function EF(a,b,c){this.c=a +this.d=b +this.a=c}, +pg:function pg(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this +_.go=a +_.id=b +_.c=c +_.d=d +_.e=e +_.w=f +_.x=g +_.as=h +_.ch=i +_.CW=j +_.cx=k +_.cy=l +_.db=m +_.dx=n +_.a=o}, +IU:function IU(a,b,c,d){var _=this +_.cy=$ +_.dx=_.db=!1 +_.fx=_.fr=_.dy=$ +_.w=_.r=_.f=_.e=_.d=null +_.y=_.x=$ +_.z=a +_.as=_.Q=!1 +_.at=$ +_.cW$=b +_.b_$=c +_.a=null +_.b=d +_.c=null}, +a30:function a30(a){this.a=a}, +a2Y:function a2Y(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +a3_:function a3_(a,b,c){this.a=a +this.b=b +this.c=c}, +a2Z:function a2Z(a,b,c){this.a=a +this.b=b +this.c=c}, +a2X:function a2X(a){this.a=a}, +a36:function a36(a){this.a=a}, +a35:function a35(a){this.a=a}, +a34:function a34(a){this.a=a}, +a32:function a32(a){this.a=a}, +a33:function a33(a){this.a=a}, +a31:function a31(a){this.a=a}, +amN(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h +if(a===b&&!0)return a +s=t.k7 +r=A.as(a.a,b.a,c,A.afX(),s) +q=A.as(a.b,b.b,c,A.NF(),t.u6) +s=A.as(a.c,b.c,c,A.afX(),s) +p=a.d +o=b.d +n=c<0.5 +p=n?p:o +o=a.e +m=b.e +o=n?o:m +m=a.f +l=b.f +n=n?m:l +m=A.tR(a.r,b.r,c) +l=t._ +k=A.as(a.w,b.w,c,A.bi(),l) +j=A.as(a.x,b.x,c,A.bi(),l) +l=A.as(a.y,b.y,c,A.bi(),l) +i=A.M(a.z,b.z,c) +h=A.M(a.Q,b.Q,c) +return new A.uv(r,q,s,p,o,n,m,k,j,l,i,h,A.M(a.as,b.as,c))}, +apY(a,b,c){return c<0.5?a:b}, +uv:function uv(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m}, +KM:function KM(){}, +amP(a,b,c){var s,r,q,p,o,n,m,l,k,j +if(a===b)return a +s=A.as(a.a,b.a,c,A.NF(),t.u6) +r=t._ +q=A.as(a.b,b.b,c,A.bi(),r) +p=A.as(a.c,b.c,c,A.bi(),r) +o=A.as(a.d,b.d,c,A.bi(),r) +r=A.as(a.e,b.e,c,A.bi(),r) +n=A.amO(a.f,b.f,c) +m=A.as(a.r,b.r,c,A.a9n(),t.yX) +l=A.as(a.w,b.w,c,A.a9t(),t.DS) +k=t.w8 +j=A.as(a.x,b.x,c,A.yA(),k) +k=A.as(a.y,b.y,c,A.yA(),k) +return new A.uw(s,q,p,o,r,n,m,l,j,k,A.jg(a.z,b.z,c))}, +amO(a,b,c){if(a==b)return a +return new A.IL(a,b,c)}, +uw:function uw(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k}, +IL:function IL(a,b,c){this.a=a +this.b=b +this.c=c}, +KN:function KN(){}, +amR(a,b,c){var s,r,q,p,o,n,m,l +if(a===b)return a +s=A.r(a.a,b.a,c) +r=A.M(a.b,b.b,c) +q=A.r(a.c,b.c,c) +p=A.amQ(a.d,b.d,c) +o=A.aca(a.e,b.e,c) +n=a.f +m=b.f +l=A.aH(n,m,c) +n=A.aH(n,m,c) +m=A.jg(a.w,b.w,c) +return new A.ux(s,r,q,p,o,l,n,m,A.r(a.x,b.x,c))}, +amQ(a,b,c){if(a==null||b==null)return null +if(a===b)return a +return A.aj(a,b,c)}, +ux:function ux(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i}, +KO:function KO(){}, +amT(a,b,c){var s,r +if(a===b&&!0)return a +s=A.ji(a.a,b.a,c) +if(c<0.5)r=a.b +else r=b.b +return new A.uy(s,r)}, +uy:function uy(a,b){this.a=a +this.b=b}, +KP:function KP(){}, +an7(b1,b2,b3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0 +if(b1===b2)return b1 +s=A.M(b1.a,b2.a,b3) +r=A.r(b1.b,b2.b,b3) +q=A.r(b1.c,b2.c,b3) +p=A.r(b1.d,b2.d,b3) +o=A.r(b1.e,b2.e,b3) +n=A.r(b1.r,b2.r,b3) +m=A.r(b1.f,b2.f,b3) +l=A.r(b1.w,b2.w,b3) +k=A.r(b1.x,b2.x,b3) +j=A.r(b1.y,b2.y,b3) +i=A.r(b1.z,b2.z,b3) +h=A.r(b1.Q,b2.Q,b3) +g=A.r(b1.as,b2.as,b3) +f=A.r(b1.at,b2.at,b3) +e=A.r(b1.ax,b2.ax,b3) +d=A.r(b1.ay,b2.ay,b3) +c=b3<0.5 +b=c?b1.ch:b2.ch +a=c?b1.CW:b2.CW +a0=c?b1.cx:b2.cx +a1=c?b1.cy:b2.cy +a2=c?b1.db:b2.db +a3=c?b1.dx:b2.dx +a4=c?b1.dy:b2.dy +a5=c?b1.fr:b2.fr +a6=c?b1.fx:b2.fx +a7=c?b1.fy:b2.fy +a8=A.aH(b1.go,b2.go,b3) +a9=A.M(b1.id,b2.id,b3) +b0=c?b1.k1:b2.k1 +return new A.uN(s,r,q,p,o,m,n,l,k,j,i,h,g,f,e,d,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,c?b1.k2:b2.k2)}, +uN:function uN(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6 +_.go=a7 +_.id=a8 +_.k1=a9 +_.k2=b0}, +L6:function L6(){}, +uP:function uP(a,b){this.a=a +this.b=b}, +ana(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h +if(a===b&&!0)return a +s=A.r(a.a,b.a,c) +r=A.r(a.b,b.b,c) +q=A.r(a.c,b.c,c) +p=A.aH(a.d,b.d,c) +o=A.M(a.e,b.e,c) +n=A.cx(a.f,b.f,c) +if(c<0.5)m=a.r +else m=b.r +l=A.M(a.w,b.w,c) +k=A.a7M(a.x,b.x,c) +j=A.r(a.z,b.z,c) +i=A.M(a.Q,b.Q,c) +h=A.r(a.as,b.as,c) +return new A.uQ(s,r,q,p,o,n,m,l,k,j,i,h,A.r(a.at,b.at,c))}, +uQ:function uQ(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.z=j +_.Q=k +_.as=l +_.at=m}, +Lb:function Lb(){}, +anl(a,b,c){var s,r,q,p,o,n,m,l +if(a===b&&!0)return a +s=t._ +r=A.as(a.a,b.a,c,A.bi(),s) +q=A.as(a.b,b.b,c,A.bi(),s) +p=A.as(a.c,b.c,c,A.bi(),s) +o=c<0.5 +if(o)n=a.d +else n=b.d +if(o)m=a.e +else m=b.e +s=A.as(a.f,b.f,c,A.bi(),s) +l=A.M(a.r,b.r,c) +if(o)o=a.w +else o=b.w +return new A.v_(r,q,p,n,m,s,l,o)}, +v_:function v_(a,b,c,d,e,f,g,h){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h}, +Lr:function Lr(){}, +ano(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h +if(a===b)return a +s=A.PQ(a.a,b.a,c) +r=A.r(a.b,b.b,c) +q=c<0.5 +p=q?a.c:b.c +o=A.r(a.d,b.d,c) +n=A.r(a.e,b.e,c) +m=A.da(a.f,b.f,c) +l=A.aH(a.r,b.r,c) +k=A.r(a.w,b.w,c) +j=A.aH(a.x,b.x,c) +i=A.as(a.y,b.y,c,A.bi(),t._) +h=q?a.z:b.z +return new A.v0(s,r,p,o,n,m,l,k,j,i,h,q?a.Q:b.Q)}, +v0:function v0(a,b,c,d,e,f,g,h,i,j,k,l){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l}, +Lu:function Lu(){}, +ans(a,b,c){if(a===b)return a +return new A.v4(A.ji(a.a,b.a,c))}, +v4:function v4(a){this.a=a}, +Lw:function Lw(){}, +anw(a,b,c){var s,r +if(a===b)return a +s=A.r(a.a,b.a,c) +r=A.r(a.b,b.b,c) +return new A.va(s,r,A.r(a.c,b.c,c))}, +va:function va(a,b,c){this.a=a +this.b=b +this.c=c}, +Lx:function Lx(){}, +a8G(a,b,c,d,e,f,a0,a1,a2,a3,a4,a5,a6,a7,a8){var s=null,r=d==null?s:d,q=e==null?s:e,p=f==null?s:f,o=a1==null?s:a1,n=a2==null?s:a2,m=a6==null?s:a6,l=a7==null?s:a7,k=a8==null?s:a8,j=a==null?s:a,i=b==null?s:b,h=c==null?s:c,g=a3==null?s:a3 +return new A.cR(r,q,p,a0,o,n,m,l,k,j,i,h,g,a4,a5==null?s:a5)}, +oC(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f +if(a===b&&!0)return a +s=A.aH(a.a,b.a,c) +r=A.aH(a.b,b.b,c) +q=A.aH(a.c,b.c,c) +p=A.aH(a.d,b.d,c) +o=A.aH(a.e,b.e,c) +n=A.aH(a.f,b.f,c) +m=A.aH(a.r,b.r,c) +l=A.aH(a.w,b.w,c) +k=A.aH(a.x,b.x,c) +j=A.aH(a.y,b.y,c) +i=A.aH(a.z,b.z,c) +h=A.aH(a.Q,b.Q,c) +g=A.aH(a.as,b.as,c) +f=A.aH(a.at,b.at,c) +return A.a8G(j,i,h,s,r,q,p,o,n,g,f,A.aH(a.ax,b.ax,c),m,l,k)}, +cR:function cR(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o}, +LA:function LA(){}, +al(a){var s,r=a.aj(t.CX),q=A.Cf(a,B.db,t.z4)==null?null:B.u2 +if(q==null)q=B.u2 +s=r==null?null:r.w.c +if(s==null)s=$.agA() +return A.anB(s,s.p4.KG(q))}, +FD:function FD(a,b,c){this.c=a +this.d=b +this.a=c}, +wb:function wb(a,b,c){this.w=a +this.b=b +this.a=c}, +mb:function mb(a,b){this.a=a +this.b=b}, +pQ:function pQ(a,b,c,d,e,f){var _=this +_.r=a +_.w=b +_.c=c +_.d=d +_.e=e +_.a=f}, +Gj:function Gj(a,b,c){var _=this +_.CW=null +_.e=_.d=$ +_.i_$=a +_.dH$=b +_.a=null +_.b=c +_.c=null}, +a0g:function a0g(){}, +adj(d5,d6){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2=null,d3=A.a([],t.oO),d4=A.kE() +d4=d4 +switch(d4){case B.ak:case B.aV:case B.al:s=B.DN +break +case B.aW:case B.aJ:case B.aX:s=B.DO +break +default:s=d2}r=A.anU(d4) +d6=d6===!0 +if(d6)q=B.x7 +else q=B.x8 +if(d5==null)p=d2 +else p=d5 +if(p==null)p=B.U +o=p===B.W +if(d6){n=o?B.xo:B.xp +m=o?n.cy:n.b +l=o?n.db:n.c +A.oD(m) +k=n.CW +j=n.cy +i=n.fr +if(i==null)i=n.cx +h=n.at +g=d5===B.W +f=k +e=m +d=l +c=f +b=j +a=c}else{f=d2 +e=f +d=e +h=d +i=h +c=i +n=c +b=n +k=b +j=k +a=j +g=a}if(e==null)e=o?B.xJ:B.dW +a0=A.oD(e) +a1=o?B.y3:B.ja +a2=o?B.l:B.f7 +a3=a0===B.W +if(o)a4=B.j9 +else{a5=n==null?d2:n.f +a4=a5==null?B.f8:a5}a6=o?A.U(31,255,255,255):A.U(31,0,0,0) +a7=o?A.U(10,255,255,255):A.U(10,0,0,0) +if(k==null)k=o?B.j6:B.yk +if(f==null)f=k +if(b==null)b=o?B.f9:B.i +if(i==null)i=o?B.yr:B.yq +if(n==null){a8=o?B.j9:B.j5 +a5=o?B.fb:B.fd +a9=A.oD(B.dW)===B.W +b0=A.oD(a8) +b1=o?B.xD:B.f7 +b2=a9?B.i:B.l +b0=b0===B.W?B.i:B.l +b3=o?B.i:B.l +b4=a9?B.i:B.l +n=A.a7w(a5,p,B.ff,d2,d2,d2,b4,o?B.l:B.i,d2,d2,b2,d2,b0,d2,b3,d2,d2,d2,d2,d2,B.dW,d2,a2,d2,a8,d2,b1,d2,b,d2,d2,d2,d2)}b5=o?B.z:B.y +b6=o?B.fb:B.jc +if(c==null)c=o?B.f9:B.i +if(d==null){d=n.f +if(d.k(0,e))d=B.i}b7=o?B.xv:A.U(153,0,0,0) +b8=new A.zg(o?B.f8:B.y9,d2,a6,a7,d2,d2,n,s) +b9=o?B.xs:B.xr +c0=o?B.j1:B.f5 +c1=o?B.j1:B.xt +if(d6){c2=A.adt(d4,d2,d2,B.LD,B.LC,B.Ly) +a5=n.a===B.U +c3=a5?n.db:n.cy +c4=a5?n.cy:n.db +a5=c2.a.G3(c3,c3,c3) +b0=c2.b.G3(c4,c4,c4) +c5=new A.oJ(a5,b0,c2.c,c2.d,c2.e)}else c5=A.anM(d4) +c6=o?c5.b:c5.a +c7=a3?c5.b:c5.a +c8=c6.bV(d2) +c9=c7.bV(d2) +d0=o?B.jF:B.zv +d1=a3?B.jF:B.zw +if(h==null)h=B.ff +if(a==null)a=o?B.fb:B.fd +if(j==null)j=o?B.f9:B.i +return A.a8H(d2,d2,B.vv,g===!0,a,B.vD,B.DK,j,B.vO,B.vP,B.vQ,B.vX,b8,k,b,B.xh,B.xi,B.xj,n,d2,B.yC,B.yD,c,B.yO,b9,i,B.yP,B.yR,B.yS,B.z7,h,B.zb,A.anz(d3),B.zc,!0,B.zf,a6,c0,b7,a7,B.zp,d0,d,B.wu,B.zV,s,B.DS,B.DT,B.DU,B.E3,B.E4,B.E5,B.Ej,B.wI,d4,B.F5,e,a0,a2,a1,d1,c9,B.F6,B.F7,f,B.Fx,B.Fy,B.Fz,b6,B.FA,B.ck,B.l,B.GH,B.GJ,c1,q,B.Hh,B.Ho,B.Hq,B.HA,c8,B.LL,B.LM,a4,B.LN,c5,b5,d6,r)}, +a8H(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,f0,f1,f2,f3,f4,f5,f6,f7,f8,f9,g0,g1,g2,g3,g4,g5,g6,g7,g8,g9){return new A.f0(d,a0,b3,c4,c6,d4,d5,e6,f6,g8,g9,h,n,o,s,a3,a5,a6,b7,b8,b9,c0,c3,d7,d9,e0,e5,e9,f1,f2,f5,g7,c2,e1,e2,g1,g6,a,c,f,g,i,j,k,l,m,p,q,r,a1,a2,a4,a7,a8,a9,b0,b2,b4,b6,c1,c5,c7,c8,c9,d0,d1,d2,d3,d6,e3,e4,e7,e8,f0,f3,f4,f7,f8,f9,g0,g2,g3,g5,!0,d8,b,b1,e,g4)}, +anx(){return A.adj(B.U,null)}, +anB(a,b){return $.agz().bq(0,new A.pa(a,b),new A.a_m(a,b))}, +oD(a){var s=0.2126*A.a7x((a.gn(a)>>>16&255)/255)+0.7152*A.a7x((a.gn(a)>>>8&255)/255)+0.0722*A.a7x((a.gn(a)&255)/255)+0.05 +if(s*s>0.15)return B.U +return B.W}, +any(a,b,c){var s=a.c,r=s.of(s,new A.a_k(b,c),t.K,t.og) +s=b.c +r.FL(r,s.ge7(s).hD(0,new A.a_l(a))) +return r}, +anz(a){var s,r,q=t.K,p=t.Cn,o=A.y(q,p) +for(s=0;!1;++s){r=a[s] +o.l(0,r.gtc(r),p.a(r))}return A.a7z(o,q,t.og)}, +anA(h7,h8,h9){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,f0,f1,f2,f3,f4,f5,f6,f7,f8,f9,g0,g1,g2,g3,g4,g5,g6,g7,g8,g9,h0,h1,h2,h3,h4,h5,h6 +if(h7===h8)return h7 +s=h9<0.5 +r=s?h7.a:h8.a +q=s?h7.b:h8.b +p=A.any(h7,h8,h9) +o=s?h7.d:h8.d +n=s?h7.e:h8.e +m=s?h7.f:h8.f +l=s?h7.r:h8.r +k=A.amN(h7.w,h8.w,h9) +j=s?h7.x:h8.x +i=s?h7.y:h8.y +h=A.anV(h7.z,h8.z,h9) +g=A.r(h7.as,h8.as,h9) +g.toString +f=A.r(h7.at,h8.at,h9) +f.toString +e=A.ajh(h7.ax,h8.ax,h9) +d=A.r(h7.ay,h8.ay,h9) +d.toString +c=A.r(h7.ch,h8.ch,h9) +c.toString +b=A.r(h7.CW,h8.CW,h9) +b.toString +a=A.r(h7.cx,h8.cx,h9) +a.toString +a0=A.r(h7.cy,h8.cy,h9) +a0.toString +a1=A.r(h7.db,h8.db,h9) +a1.toString +a2=A.r(h7.dx,h8.dx,h9) +a2.toString +a3=A.r(h7.dy,h8.dy,h9) +a3.toString +a4=A.r(h7.fr,h8.fr,h9) +a4.toString +a5=A.r(h7.fx,h8.fx,h9) +a5.toString +a6=A.r(h7.fy,h8.fy,h9) +a6.toString +a7=A.r(h7.go,h8.go,h9) +a7.toString +a8=A.r(h7.id,h8.id,h9) +a8.toString +a9=A.r(h7.k2,h8.k2,h9) +a9.toString +b0=A.r(h7.k3,h8.k3,h9) +b0.toString +b1=A.r(h7.k4,h8.k4,h9) +b1.toString +b2=A.ik(h7.ok,h8.ok,h9) +b3=A.ik(h7.p1,h8.p1,h9) +b4=A.oC(h7.p2,h8.p2,h9) +b5=A.oC(h7.p3,h8.p3,h9) +b6=A.anN(h7.p4,h8.p4,h9) +b7=A.aiA(h7.R8,h8.R8,h9) +b8=A.aiF(h7.RG,h8.RG,h9) +b9=A.aiI(h7.rx,h8.rx,h9) +c0=h7.ry +c1=h8.ry +c2=A.r(c0.a,c1.a,h9) +c3=A.r(c0.b,c1.b,h9) +c4=A.r(c0.c,c1.c,h9) +c5=A.r(c0.d,c1.d,h9) +c6=A.aH(c0.e,c1.e,h9) +c7=A.M(c0.f,c1.f,h9) +c8=A.da(c0.r,c1.r,h9) +c0=A.da(c0.w,c1.w,h9) +c1=A.aiM(h7.to,h8.to,h9) +c9=A.aiN(h7.x1,h8.x1,h9) +d0=A.aiO(h7.x2,h8.x2,h9) +d1=A.aiU(h7.xr,h8.xr,h9) +d2=s?h7.y1:h8.y1 +d3=A.aiZ(h7.y2,h8.y2,h9) +d4=A.aj0(h7.bU,h8.bU,h9) +d5=A.aj5(h7.bL,h8.bL,h9) +d6=A.aju(h7.W,h8.W,h9) +d7=A.ajw(h7.a_,h8.a_,h9) +d8=A.ajH(h7.ad,h8.ad,h9) +d9=A.ajN(h7.a0,h8.a0,h9) +e0=A.akf(h7.a9,h8.a9,h9) +e1=A.akg(h7.cX,h8.cX,h9) +e2=A.akl(h7.cb,h8.cb,h9) +e3=A.akx(h7.ct,h8.ct,h9) +e4=A.akz(h7.J,h8.J,h9) +e5=A.akB(h7.al,h8.al,h9) +e6=A.akV(h7.ai,h8.ai,h9) +e7=A.alf(h7.aE,h8.aE,h9) +e8=A.alr(h7.ba,h8.ba,h9) +e9=A.als(h7.aL,h8.aL,h9) +f0=A.alt(h7.bD,h8.bD,h9) +f1=A.alE(h7.ci,h8.ci,h9) +f2=A.alF(h7.d8,h8.d8,h9) +f3=A.alG(h7.F,h8.F,h9) +f4=A.alL(h7.a1,h8.a1,h9) +f5=A.am9(h7.eu,h8.eu,h9) +f6=A.amr(h7.bE,h8.bE,h9) +f7=A.ams(h7.cu,h8.cu,h9) +f8=A.amP(h7.f2,h8.f2,h9) +f9=A.amR(h7.i2,h8.i2,h9) +g0=A.amT(h7.e9,h8.e9,h9) +g1=A.an7(h7.fw,h8.fw,h9) +g2=A.ana(h7.hj,h8.hj,h9) +g3=A.anl(h7.k5,h8.k5,h9) +g4=A.ano(h7.lp,h8.lp,h9) +g5=A.ans(h7.bF,h8.bF,h9) +g6=A.anw(h7.f3,h8.f3,h9) +g7=A.anC(h7.fz,h8.fz,h9) +g8=A.anF(h7.iX,h8.iX,h9) +g9=A.anI(h7.k6,h8.k6,h9) +h0=s?h7.lq:h8.lq +s=s?h7.r0:h8.r0 +h1=h7.A +h1.toString +h2=h8.A +h2.toString +h2=A.r(h1,h2,h9) +h1=h7.k1 +h1.toString +h3=h8.k1 +h3.toString +h3=A.r(h1,h3,h9) +h1=h7.lr +h1.toString +h4=h8.lr +h4.toString +h4=A.r(h1,h4,h9) +h1=h7.ls +h1.toString +h5=h8.ls +h5.toString +h5=A.r(h1,h5,h9) +h1=h7.Q +h1.toString +h6=h8.Q +h6.toString +return A.a8H(b7,s,b8,r,h5,b9,new A.t3(c2,c3,c4,c5,c6,c7,c8,c0),A.r(h1,h6,h9),c1,c9,d0,d1,d2,g,f,d3,d4,d5,e,q,d6,d7,d,d8,c,b,d9,e0,e1,e2,h4,e3,p,e4,!0,e5,a,a0,a1,a2,e6,b2,a3,o,e7,n,e8,e9,f0,f1,f2,f3,f4,m,l,f5,a4,h0,a5,a6,b3,b4,f6,f7,a7,k,f8,f9,a8,g0,h3,a9,g1,g2,b0,j,g3,g4,g5,g6,b5,g7,g8,h2,g9,b6,b1,i,h)}, +anU(a){switch(a.a){case 0:case 2:case 1:break +case 3:case 4:case 5:return B.MO}return B.c5}, +anV(a,b,c){var s,r +if(a===b)return a +s=A.M(a.a,b.a,c) +s.toString +r=A.M(a.b,b.b,c) +r.toString +return new A.iM(s,r)}, +lq:function lq(a,b){this.a=a +this.b=b}, +f0:function f0(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,f0,f1,f2,f3,f4,f5,f6,f7,f8,f9,g0,g1,g2,g3,g4,g5,g6,g7,g8,g9){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2 +_.dy=a3 +_.fr=a4 +_.fx=a5 +_.fy=a6 +_.go=a7 +_.id=a8 +_.k1=a9 +_.k2=b0 +_.k3=b1 +_.k4=b2 +_.ok=b3 +_.p1=b4 +_.p2=b5 +_.p3=b6 +_.p4=b7 +_.R8=b8 +_.RG=b9 +_.rx=c0 +_.ry=c1 +_.to=c2 +_.x1=c3 +_.x2=c4 +_.xr=c5 +_.y1=c6 +_.y2=c7 +_.bU=c8 +_.bL=c9 +_.W=d0 +_.a_=d1 +_.ad=d2 +_.a0=d3 +_.a9=d4 +_.cX=d5 +_.cb=d6 +_.ct=d7 +_.J=d8 +_.al=d9 +_.ai=e0 +_.aE=e1 +_.ba=e2 +_.aL=e3 +_.bD=e4 +_.ci=e5 +_.d8=e6 +_.F=e7 +_.a1=e8 +_.eu=e9 +_.bE=f0 +_.cu=f1 +_.f2=f2 +_.i2=f3 +_.e9=f4 +_.fw=f5 +_.hj=f6 +_.k5=f7 +_.lp=f8 +_.bF=f9 +_.f3=g0 +_.fz=g1 +_.iX=g2 +_.k6=g3 +_.a3u=g4 +_.lq=g5 +_.r0=g6 +_.lr=g7 +_.ls=g8 +_.A=g9}, +a_m:function a_m(a,b){this.a=a +this.b=b}, +a_k:function a_k(a,b){this.a=a +this.b=b}, +a_l:function a_l(a){this.a=a}, +Ui:function Ui(a,b,c,d,e,f,g,h,i,j){var _=this +_.ay=a +_.ch=b +_.w=c +_.a=d +_.b=e +_.c=f +_.d=g +_.e=h +_.f=i +_.r=j}, +pa:function pa(a,b){this.a=a +this.b=b}, +HP:function HP(a,b,c){this.a=a +this.b=b +this.$ti=c}, +iM:function iM(a,b){this.a=a +this.b=b}, +LE:function LE(){}, +Mi:function Mi(){}, +anC(a2,a3,a4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1 +if(a2===a3&&!0)return a2 +s=a2.d +if(s==null)r=a3.d==null +else r=!1 +if(r)s=null +else if(s==null)s=a3.d +else{r=a3.d +if(!(r==null)){s.toString +r.toString +s=A.aj(s,r,a4)}}r=A.r(a2.a,a3.a,a4) +q=A.ji(a2.b,a3.b,a4) +p=A.ji(a2.c,a3.c,a4) +o=A.r(a2.e,a3.e,a4) +n=t.yX.a(A.cx(a2.f,a3.f,a4)) +m=A.r(a2.r,a3.r,a4) +l=A.aH(a2.w,a3.w,a4) +k=A.r(a2.x,a3.x,a4) +j=A.r(a2.y,a3.y,a4) +i=A.r(a2.z,a3.z,a4) +h=A.aH(a2.Q,a3.Q,a4) +g=A.M(a2.as,a3.as,a4) +f=A.r(a2.at,a3.at,a4) +e=A.aH(a2.ax,a3.ax,a4) +d=A.r(a2.ay,a3.ay,a4) +c=A.cx(a2.ch,a3.ch,a4) +b=A.r(a2.CW,a3.CW,a4) +a=A.aH(a2.cx,a3.cx,a4) +if(a4<0.5)a0=a2.cy +else a0=a3.cy +a1=A.da(a2.db,a3.db,a4) +return new A.ve(r,q,p,s,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,A.cx(a2.dx,a3.dx,a4))}, +ve:function ve(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q +_.CW=r +_.cx=s +_.cy=a0 +_.db=a1 +_.dx=a2}, +LG:function LG(){}, +anF(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f +if(a===b)return a +s=A.aH(a.a,b.a,c) +r=A.jg(a.b,b.b,c) +q=A.r(a.c,b.c,c) +p=A.r(a.d,b.d,c) +o=A.r(a.e,b.e,c) +n=A.r(a.f,b.f,c) +m=A.r(a.r,b.r,c) +l=A.r(a.w,b.w,c) +k=A.r(a.y,b.y,c) +j=A.r(a.x,b.x,c) +i=A.r(a.z,b.z,c) +h=A.r(a.Q,b.Q,c) +g=A.r(a.as,b.as,c) +f=A.mQ(a.ax,b.ax,c) +return new A.vf(s,r,q,p,o,n,m,l,j,k,i,h,g,A.M(a.at,b.at,c),f)}, +vf:function vf(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o}, +LI:function LI(){}, +ado(a,b){return new A.vg(b,a,null)}, +adp(a){var s,r,q,p +if($.iG.length!==0){s=A.a($.iG.slice(0),A.ac($.iG)) +for(r=s.length,q=0;q>>16&255,r>>>8&255,r&255) +break +default:p=null}switch(q.a){case 1:o=b.a +break +case 0:r=b.a.a +o=A.U(0,r>>>16&255,r>>>8&255,r&255) +break +default:o=null}r=a.d +q=b.d +if(r!==q){n=A.r(p,o,c) +n.toString +q=A.M(r,q,c) +q.toString +return new A.bD(n,s,B.ac,q)}q=A.r(p,o,c) +q.toString +return new A.bD(q,s,B.ac,r)}, +cx(a,b,c){var s,r +if(a==b)return a +s=b!=null?b.cl(a,c):null +if(s==null&&a!=null)s=a.cm(b,c) +if(s==null)r=c<0.5?a:b +else r=s +return r}, +aca(a,b,c){var s,r +if(a==b)return a +s=b!=null?b.cl(a,c):null +if(s==null&&a!=null)s=a.cm(b,c) +if(s==null)r=c<0.5?a:b +else r=s +return r}, +adI(a,b,c){var s,r,q,p,o,n,m=a instanceof A.f2?a.a:A.a([a],t.bY),l=b instanceof A.f2?b.a:A.a([b],t.bY),k=A.a([],t.h_),j=Math.max(m.length,l.length) +for(s=1-c,r=0;ro/m?new A.S(o*p/m,p):new A.S(q,m*q/o) +r=b +break +case 2:q=c.a +p=c.b +o=b.a +r=q/p>o/m?new A.S(o,o*p/q):new A.S(m*q/p,m) +s=c +break +case 3:q=c.a +p=c.b +o=b.a +if(q/p>o/m){r=new A.S(o,o*p/q) +s=c}else{s=new A.S(q,m*q/o) +r=b}break +case 4:q=c.a +p=c.b +o=b.a +if(q/p>o/m){s=new A.S(o*p/m,p) +r=b}else{r=new A.S(m*q/p,m) +s=c}break +case 5:r=new A.S(Math.min(b.a,c.a),Math.min(m,c.b)) +s=r +break +case 6:n=b.a/m +q=c.b +s=m>q?new A.S(q*n,q):b +m=c.a +if(s.a>m)s=new A.S(m,m/n) +r=b +break +default:r=null +s=null}return new A.Bf(r,s)}, +za:function za(a,b){this.a=a +this.b=b}, +Bf:function Bf(a,b){this.a=a +this.b=b}, +aiT(a,b,c){var s,r,q,p,o +if(a===b)return a +s=A.r(a.a,b.a,c) +s.toString +r=A.ts(a.b,b.b,c) +r.toString +q=A.M(a.c,b.c,c) +q.toString +p=A.M(a.d,b.d,c) +p.toString +o=a.e +return new A.i4(p,o===B.i9?b.e:o,s,r,q)}, +aaF(a,b,c){var s,r,q,p,o,n,m,l +if(a==null?b==null:a===b)return a +if(a==null)a=A.a([],t.xq) +if(b==null)b=A.a([],t.xq) +s=Math.min(a.length,b.length) +r=A.a([],t.xq) +for(q=0;q0){n=-n +l=2*l +r=(n-Math.sqrt(j))/l +q=(n+Math.sqrt(j))/l +p=(c-r*b)/(q-r) +return new A.a3u(r,q,b-p,p)}o=Math.sqrt(k-m)/(2*l) +s=-(n/2*l) +return new A.a4J(o,s,b,(c-s*b)/o)}, +Za:function Za(a,b,c){this.a=a +this.b=b +this.c=c}, +uT:function uT(a,b){this.a=a +this.b=b}, +Ff:function Ff(){}, +lU:function lU(a,b,c){this.b=a +this.c=b +this.a=c}, +a1e:function a1e(a,b,c){this.a=a +this.b=b +this.c=c}, +a3u:function a3u(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +a4J:function a4J(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +FI:function FI(a,b){this.a=a +this.c=b}, +o8:function o8(){}, +Xg:function Xg(a){this.a=a}, +Gx:function Gx(a,b){var _=this +_.a=a +_.W$=0 +_.a_$=b +_.a0$=_.ad$=0 +_.a9$=!1}, +z9(a){var s=a.a,r=a.b +return new A.aI(s,s,r,r)}, +kQ(a,b){var s,r,q=b==null,p=q?0:b +q=q?1/0:b +s=a==null +r=s?0:a +return new A.aI(p,q,r,s?1/0:a)}, +a7p(a){return new A.aI(0,a.a,0,a.b)}, +jg(a,b,c){var s,r,q,p +if(a==b)return a +if(a==null)return b.R(0,c) +if(b==null)return a.R(0,1-c) +s=a.a +if(isFinite(s)){s=A.M(s,b.a,c) +s.toString}else s=1/0 +r=a.b +if(isFinite(r)){r=A.M(r,b.b,c) +r.toString}else r=1/0 +q=a.c +if(isFinite(q)){q=A.M(q,b.c,c) +q.toString}else q=1/0 +p=a.d +if(isFinite(p)){p=A.M(p,b.d,c) +p.toString}else p=1/0 +return new A.aI(s,r,q,p)}, +aiS(){var s=A.a([],t.f1),r=new A.aS(new Float64Array(16)) +r.cP() +return new A.h4(s,A.a([r],t.hZ),A.a([],t.pw))}, +aaE(a){return new A.h4(a.a,a.b,a.c)}, +aI:function aI(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +Oy:function Oy(){}, +h4:function h4(a,b,c){this.a=a +this.b=b +this.c=c}, +mT:function mT(a,b){this.c=a +this.a=b +this.b=null}, +e_:function e_(a){this.a=a}, +qv:function qv(){}, +G:function G(){}, +WK:function WK(a,b){this.a=a +this.b=b}, +WJ:function WJ(a,b){this.a=a +this.b=b}, +d0:function d0(){}, +WI:function WI(a,b,c){this.a=a +this.b=b +this.c=c}, +vM:function vM(){}, +eX:function eX(a,b,c){var _=this +_.e=null +_.b5$=a +_.af$=b +_.a=c}, +UM:function UM(){}, +DS:function DS(a,b,c,d,e){var _=this +_.J=a +_.bk$=b +_.U$=c +_.bC$=d +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=e +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +wS:function wS(){}, +Kh:function Kh(){}, +acC(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=null,d={} +d.a=b +if(a==null)a=B.fG +s=J.aC(a) +r=s.gp(a)-1 +q=A.aU(0,e,!1,t.aa) +p=0<=r +while(!0){if(!!1)break +s.i(a,0) +o=b[0] +o.grq(o) +break}while(!0){if(!!1)break +s.i(a,r) +n=b[-1] +n.grq(n) +break}m=A.b_("oldKeyedChildren") +if(p){m.sbH(A.y(t.qI,t.ju)) +for(l=m.a,k=0;k<=r;){j=s.i(a,k) +i=j.d +if(i!=null){h=m.b +if(h===m)A.a2(A.hp(l)) +J.fY(h,i,j)}++k}p=!0}else k=0 +for(l=m.a,g=0;!1;){o=d.a[g] +if(p){f=o.grq(o) +i=m.b +if(i===m)A.a2(A.hp(l)) +j=J.bc(i,f) +if(j!=null){o.grq(o) +j=e}}else j=e +q[g]=A.acB(j,o);++g}s.gp(a) +while(!0){if(!!1)break +q[g]=A.acB(s.i(a,k),d.a[g]);++g;++k}return new A.bR(q,A.ac(q).h("bR<1,bP>"))}, +acB(a,b){var s,r=a==null?A.EN(b.grq(b),null):a,q=b.gJq(),p=A.k8() +q.gLz() +p.k1=q.gLz() +p.d=!0 +q.gYB(q) +s=q.gYB(q) +p.b2(B.u9,!0) +p.b2(B.FX,s) +q.ga1t() +s=q.ga1t() +p.b2(B.u9,!0) +p.b2(B.G0,s) +q.gLc(q) +p.b2(B.G1,q.gLc(q)) +q.gYu(q) +p.b2(B.ui,q.gYu(q)) +q.ga19() +p.b2(B.G2,q.ga19()) +q.ga2w() +p.b2(B.FV,q.ga2w()) +q.gLw() +p.b2(B.G5,q.gLw()) +q.ga13() +p.b2(B.FW,q.ga13()) +q.ga24(q) +p.b2(B.FT,q.ga24(q)) +q.ga_k() +p.b2(B.ud,q.ga_k()) +q.ga_l(q) +p.b2(B.ue,q.ga_l(q)) +q.gle(q) +s=q.gle(q) +p.b2(B.uh,!0) +p.b2(B.ua,s) +q.ga0A() +p.b2(B.FY,q.ga0A()) +q.gop() +p.b2(B.FS,q.gop()) +q.ga1w(q) +p.b2(B.G3,q.ga1w(q)) +q.ga0n(q) +p.b2(B.ho,q.ga0n(q)) +q.ga0l() +p.b2(B.ug,q.ga0l()) +q.gL8() +p.b2(B.uc,q.gL8()) +q.ga1y() +p.b2(B.uf,q.ga1y()) +q.ga1d() +p.b2(B.G_,q.ga1d()) +q.gyr() +p.syr(q.gyr()) +q.gx5() +p.sx5(q.gx5()) +q.ga2I() +s=q.ga2I() +p.b2(B.G4,!0) +p.b2(B.FU,s) +q.gf5(q) +p.b2(B.ub,q.gf5(q)) +q.ga14(q) +p.R8=new A.cb(q.ga14(q),B.a1) +p.d=!0 +q.gn(q) +p.RG=new A.cb(q.gn(q),B.a1) +p.d=!0 +q.ga0B() +p.rx=new A.cb(q.ga0B(),B.a1) +p.d=!0 +q.gZE() +p.ry=new A.cb(q.gZE(),B.a1) +p.d=!0 +q.ga0r(q) +p.to=new A.cb(q.ga0r(q),B.a1) +p.d=!0 +q.gbR() +p.y2=q.gbR() +p.d=!0 +q.gje() +p.sje(q.gje()) +q.gjd() +p.sjd(q.gjd()) +q.grJ() +p.srJ(q.grJ()) +q.grK() +p.srK(q.grK()) +q.grL() +p.srL(q.grL()) +q.grI() +p.srI(q.grI()) +q.gyG() +p.syG(q.gyG()) +q.gyB() +p.syB(q.gyB()) +q.gyz(q) +p.syz(0,q.gyz(q)) +q.gyA(q) +p.syA(0,q.gyA(q)) +q.gyM(q) +p.syM(0,q.gyM(q)) +q.gyK() +p.syK(q.gyK()) +q.gyI() +p.syI(q.gyI()) +q.gyL() +p.syL(q.gyL()) +q.gyJ() +p.syJ(q.gyJ()) +q.gyP() +p.syP(q.gyP()) +q.gyQ() +p.syQ(q.gyQ()) +q.gyC() +p.syC(q.gyC()) +q.gyD() +p.syD(q.gyD()) +q.grH() +p.srH(q.grH()) +r.jk(0,B.fG,p) +r.sar(0,b.gar(b)) +r.sbh(0,b.gbh(b)) +r.dx=b.ga3H() +return r}, +Ap:function Ap(){}, +DT:function DT(a,b,c,d,e,f,g){var _=this +_.A=a +_.a6=b +_.au=c +_.bG=d +_.dI=e +_.i3=_.fA=_.hk=_.cY=null +_.F$=f +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=g +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +PN:function PN(){}, +DW:function DW(a,b){var _=this +_.J=a +_.al=$ +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=b +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +aeY(a,b,c){switch(a.a){case 0:switch(b){case B.q:return!0 +case B.S:return!1 +case null:return null}break +case 1:switch(c){case B.hH:return!0 +case B.MN:return!1 +case null:return null}break}}, +Rt:function Rt(a,b){this.a=a +this.b=b}, +hc:function hc(a,b,c){var _=this +_.f=_.e=null +_.b5$=a +_.af$=b +_.a=c}, +Cj:function Cj(a,b){this.a=a +this.b=b}, +Ci:function Ci(a,b){this.a=a +this.b=b}, +kY:function kY(a,b){this.a=a +this.b=b}, +DY:function DY(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this +_.J=a +_.al=b +_.ai=c +_.aE=d +_.ba=e +_.aL=f +_.bD=g +_.ci=0 +_.d8=h +_.F=i +_.a_b$=j +_.a3p$=k +_.bk$=l +_.U$=m +_.bC$=n +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=o +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +a2K:function a2K(a,b,c){this.a=a +this.b=b +this.c=c}, +Ki:function Ki(){}, +Kj:function Kj(){}, +wT:function wT(){}, +E_:function E_(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){var _=this +_.al=_.J=null +_.ai=a +_.aE=b +_.ba=c +_.aL=d +_.bD=e +_.ci=null +_.d8=f +_.F=g +_.a1=h +_.eu=i +_.bE=j +_.cu=k +_.f2=l +_.i2=m +_.e9=n +_.fw=o +_.hj=p +_.k5=q +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=r +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +au(){return new A.C3()}, +alQ(a){return new A.Du(a,A.y(t.S,t.O),A.au())}, +alK(a){return new A.ht(a,A.y(t.S,t.O),A.au())}, +adq(a){return new A.vk(a,B.h,A.y(t.S,t.O),A.au())}, +ac9(){return new A.CY(B.h,A.y(t.S,t.O),A.au())}, +pY:function pY(a,b,c){this.a=a +this.b=b +this.$ti=c}, +yR:function yR(a,b){this.a=a +this.$ti=b}, +rN:function rN(){}, +C3:function C3(){this.a=null}, +Du:function Du(a,b,c){var _=this +_.CW=a +_.cx=null +_.db=_.cy=!1 +_.d=b +_.e=0 +_.r=!1 +_.w=c +_.x=0 +_.y=!0 +_.at=_.as=_.Q=_.z=null +_.a=0 +_.c=_.b=null}, +ek:function ek(){}, +ht:function ht(a,b,c){var _=this +_.p1=a +_.cx=_.CW=null +_.d=b +_.e=0 +_.r=!1 +_.w=c +_.x=0 +_.y=!0 +_.at=_.as=_.Q=_.z=null +_.a=0 +_.c=_.b=null}, +qs:function qs(a,b,c){var _=this +_.p1=null +_.p2=a +_.cx=_.CW=null +_.d=b +_.e=0 +_.r=!1 +_.w=c +_.x=0 +_.y=!0 +_.at=_.as=_.Q=_.z=null +_.a=0 +_.c=_.b=null}, +qr:function qr(a,b,c){var _=this +_.p1=null +_.p2=a +_.cx=_.CW=null +_.d=b +_.e=0 +_.r=!1 +_.w=c +_.x=0 +_.y=!0 +_.at=_.as=_.Q=_.z=null +_.a=0 +_.c=_.b=null}, +qq:function qq(a,b,c){var _=this +_.p1=null +_.p2=a +_.cx=_.CW=null +_.d=b +_.e=0 +_.r=!1 +_.w=c +_.x=0 +_.y=!0 +_.at=_.as=_.Q=_.z=null +_.a=0 +_.c=_.b=null}, +vk:function vk(a,b,c,d){var _=this +_.a_=a +_.a0=_.ad=null +_.a9=!0 +_.p1=b +_.cx=_.CW=null +_.d=c +_.e=0 +_.r=!1 +_.w=d +_.x=0 +_.y=!0 +_.at=_.as=_.Q=_.z=null +_.a=0 +_.c=_.b=null}, +CY:function CY(a,b,c){var _=this +_.a_=null +_.p1=a +_.cx=_.CW=null +_.d=b +_.e=0 +_.r=!1 +_.w=c +_.x=0 +_.y=!0 +_.at=_.as=_.Q=_.z=null +_.a=0 +_.c=_.b=null}, +pX:function pX(a,b,c,d,e,f){var _=this +_.p1=a +_.p2=b +_.p3=c +_.cx=_.CW=null +_.d=d +_.e=0 +_.r=!1 +_.w=e +_.x=0 +_.y=!0 +_.at=_.as=_.Q=_.z=null +_.a=0 +_.c=_.b=null +_.$ti=f}, +IE:function IE(){}, +alw(a,b){var s +if(a==null)return!0 +s=a.b +if(t.zs.b(b))return!1 +return t.ye.b(s)||t.yg.b(b)||!s.gbp(s).k(0,b.gbp(b))}, +alv(a4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3=a4.d +if(a3==null)a3=a4.c +s=a4.a +r=a4.b +q=a3.gfL(a3) +p=a3.gbN() +o=a3.gc1(a3) +n=a3.ghV(a3) +m=a3.gbp(a3) +l=a3.gny() +k=a3.gcG(a3) +a3.gop() +j=a3.grW() +i=a3.gou() +h=a3.gcz() +g=a3.gxp() +f=a3.geh(a3) +e=a3.gz5() +d=a3.gz8() +c=a3.gz7() +b=a3.gz6() +a=a3.gyS(a3) +a0=a3.gzu() +s.P(0,new A.UG(r,A.alZ(k,l,n,h,g,a3.gqT(),0,o,!1,a,p,m,i,j,e,b,c,d,f,a3.gmp(),a0,q).aD(a3.gbh(a3)),s)) +q=A.m(r).h("aT<1>") +a0=q.h("b2") +a1=A.aw(new A.b2(new A.aT(r,q),new A.UH(s),a0),!0,a0.h("j.E")) +a0=a3.gfL(a3) +q=a3.gbN() +f=a3.gc1(a3) +d=a3.ghV(a3) +c=a3.gbp(a3) +b=a3.gny() +e=a3.gcG(a3) +a3.gop() +j=a3.grW() +i=a3.gou() +m=a3.gcz() +p=a3.gxp() +a=a3.geh(a3) +o=a3.gz5() +g=a3.gz8() +h=a3.gz7() +n=a3.gz6() +l=a3.gyS(a3) +k=a3.gzu() +a2=A.alX(e,b,d,m,p,a3.gqT(),0,f,!1,l,q,c,i,j,o,n,h,g,a,a3.gmp(),k,a0).aD(a3.gbh(a3)) +for(q=new A.co(a1,A.ac(a1).h("co<1>")),q=new A.db(q,q.gp(q)),p=A.m(q).c;q.t();){o=q.d +if(o==null)o=p.a(o) +if(o.gzL()&&o.gyE(o)!=null){n=o.gyE(o) +n.toString +n.$1(a2.aD(r.i(0,o)))}}}, +J6:function J6(a,b){this.a=a +this.b=b}, +J7:function J7(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +CB:function CB(a,b,c){var _=this +_.a=a +_.b=b +_.c=!1 +_.W$=0 +_.a_$=c +_.a0$=_.ad$=0 +_.a9$=!1}, +UI:function UI(){}, +UL:function UL(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +UK:function UK(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +UJ:function UJ(a,b){this.a=a +this.b=b}, +UG:function UG(a,b,c){this.a=a +this.b=b +this.c=c}, +UH:function UH(a){this.a=a}, +MB:function MB(){}, +ace(a,b,c){var s,r,q=a.ch,p=t.qJ.a(q.a) +if(p==null){s=a.oF(null) +q.saY(0,s) +q=s}else{p.ze() +a.oF(p) +q=p}a.db=!1 +r=a.gi9() +b=new A.nW(q,r) +a.vP(b,B.h) +b.p6()}, +alN(a){var s=a.ch.a +s.toString +a.oF(t.cY.a(s)) +a.db=!1}, +amA(a){a.BJ()}, +amB(a){a.VE()}, +adY(a,b){if(a==null)return null +if(a.gS(a)||b.IJ())return B.A +return A.ac0(b,a)}, +aoq(a,b,c,d){var s,r,q,p=b.c +p.toString +s=t.aP +s.a(p) +for(r=p;r!==a;r=p,b=q){r.d5(b,c) +p=r.c +p.toString +s.a(p) +q=b.c +q.toString +s.a(q)}a.d5(b,c) +a.d5(b,d)}, +adX(a,b){if(a==null)return b +if(b==null)return a +return a.dd(b)}, +cg:function cg(){}, +nW:function nW(a,b){var _=this +_.a=a +_.b=b +_.e=_.d=_.c=null}, +Vu:function Vu(a,b,c){this.a=a +this.b=b +this.c=c}, +Vt:function Vt(a,b,c){this.a=a +this.b=b +this.c=c}, +Vs:function Vs(a,b,c){this.a=a +this.b=b +this.c=c}, +Pw:function Pw(){}, +nY:function nY(a,b,c,d,e,f,g,h){var _=this +_.b=a +_.c=b +_.d=c +_.e=null +_.f=!1 +_.r=d +_.y=_.w=!1 +_.z=e +_.Q=f +_.as=!1 +_.at=null +_.ax=0 +_.ay=!1 +_.ch=g +_.CW=h +_.cx=null}, +VF:function VF(){}, +VE:function VE(){}, +VG:function VG(){}, +VH:function VH(){}, +z:function z(){}, +WT:function WT(a){this.a=a}, +WW:function WW(a,b,c){this.a=a +this.b=b +this.c=c}, +WU:function WU(a){this.a=a}, +WV:function WV(){}, +WQ:function WQ(a,b,c,d,e,f,g,h,i,j){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j}, +WR:function WR(a,b,c){this.a=a +this.b=b +this.c=c}, +WS:function WS(a,b){this.a=a +this.b=b}, +aG:function aG(){}, +du:function du(){}, +ar:function ar(){}, +tY:function tY(){}, +WH:function WH(a){this.a=a}, +a4i:function a4i(){}, +GR:function GR(a,b,c){this.b=a +this.c=b +this.a=c}, +dU:function dU(){}, +KD:function KD(a,b,c){var _=this +_.e=a +_.b=b +_.c=null +_.a=c}, +w9:function w9(a,b,c){var _=this +_.e=a +_.b=b +_.c=null +_.a=c}, +mu:function mu(a,b,c,d,e,f){var _=this +_.e=a +_.f=b +_.w=_.r=!1 +_.x=c +_.y=d +_.z=!1 +_.b=e +_.c=null +_.a=f}, +KU:function KU(){var _=this +_.b=_.a=null +_.d=_.c=$ +_.e=!1}, +Km:function Km(){}, +a8X(a,b){var s=a.a,r=b.a +if(sr)return-1 +else{s=a.b +if(s===b.b)return 0 +else return s===B.am?1:-1}}, +hJ:function hJ(a,b,c){var _=this +_.e=null +_.b5$=a +_.af$=b +_.a=c}, +u3:function u3(a,b,c,d,e,f,g,h,i){var _=this +_.J=a +_.ba=_.aE=_.ai=_.al=null +_.aL=$ +_.bD=b +_.ci=c +_.d8=d +_.F=!1 +_.cu=_.bE=_.eu=_.a1=null +_.xF$=e +_.bk$=f +_.U$=g +_.bC$=h +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=i +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +X_:function X_(){}, +WY:function WY(a){this.a=a}, +X1:function X1(){}, +WZ:function WZ(a,b,c){this.a=a +this.b=b +this.c=c}, +X0:function X0(a){this.a=a}, +WX:function WX(a,b){this.a=a +this.b=b}, +iV:function iV(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.r=_.f=_.e=_.d=null +_.w=$ +_.x=null +_.W$=0 +_.a_$=d +_.a0$=_.ad$=0 +_.a9$=!1}, +wW:function wW(){}, +Kn:function Kn(){}, +Ko:function Ko(){}, +MM:function MM(){}, +MN:function MN(){}, +acA(a){var s=new A.DR(a,null,A.au()) +s.aI() +s.saU(null) +return s}, +Ea:function Ea(){}, +fC:function fC(){}, +rq:function rq(a,b){this.a=a +this.b=b}, +u4:function u4(){}, +DR:function DR(a,b,c){var _=this +_.A=a +_.F$=b +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=c +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +E1:function E1(a,b,c,d){var _=this +_.A=a +_.a6=b +_.F$=c +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=d +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +u_:function u_(){}, +DN:function DN(a,b,c,d,e,f){var _=this +_.hi$=a +_.jZ$=b +_.ll$=c +_.xJ$=d +_.F$=e +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=f +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +qz:function qz(){}, +m_:function m_(a,b,c){this.b=a +this.c=b +this.a=c}, +pp:function pp(){}, +DQ:function DQ(a,b,c,d){var _=this +_.A=a +_.a6=null +_.au=b +_.dI=_.bG=null +_.F$=c +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=d +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +DP:function DP(a,b,c,d){var _=this +_.A=a +_.a6=null +_.au=b +_.dI=_.bG=null +_.F$=c +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=d +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +wX:function wX(){}, +E6:function E6(a,b,c,d,e,f,g,h,i){var _=this +_.hi=a +_.jZ=b +_.U=c +_.bC=d +_.b5=e +_.A=f +_.a6=null +_.au=g +_.dI=_.bG=null +_.F$=h +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=i +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +X2:function X2(a,b){this.a=a +this.b=b}, +E7:function E7(a,b,c,d,e,f,g){var _=this +_.U=a +_.bC=b +_.b5=c +_.A=d +_.a6=null +_.au=e +_.dI=_.bG=null +_.F$=f +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=g +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +X3:function X3(a,b){this.a=a +this.b=b}, +Aw:function Aw(a,b){this.a=a +this.b=b}, +DV:function DV(a,b,c,d,e){var _=this +_.A=null +_.a6=a +_.au=b +_.bG=c +_.F$=d +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=e +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +Eg:function Eg(a,b,c){var _=this +_.au=_.a6=_.A=null +_.bG=a +_.cY=_.dI=null +_.F$=b +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=c +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +Xd:function Xd(a){this.a=a}, +DZ:function DZ(a,b,c,d){var _=this +_.A=a +_.a6=b +_.F$=c +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=d +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +WL:function WL(a){this.a=a}, +E8:function E8(a,b,c,d,e,f,g,h,i,j,k,l){var _=this +_.cI=a +_.es=b +_.cA=c +_.bk=d +_.U=e +_.bC=f +_.b5=g +_.af=h +_.fv=i +_.A=j +_.F$=k +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=l +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +E3:function E3(a,b,c,d,e,f,g,h){var _=this +_.cI=a +_.es=b +_.cA=c +_.bk=d +_.U=e +_.bC=!0 +_.A=f +_.F$=g +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=h +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +Eb:function Eb(a,b){var _=this +_.a6=_.A=0 +_.F$=a +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=b +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +u2:function u2(a,b,c,d){var _=this +_.A=a +_.a6=b +_.F$=c +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=d +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +E4:function E4(a,b,c){var _=this +_.A=a +_.F$=b +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=c +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +tZ:function tZ(a,b,c,d){var _=this +_.A=a +_.a6=b +_.F$=c +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=d +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +iz:function iz(a,b,c){var _=this +_.U=_.bk=_.cA=_.es=_.cI=null +_.A=a +_.F$=b +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=c +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +u5:function u5(a,b,c,d,e,f,g){var _=this +_.A=a +_.a6=b +_.au=c +_.bG=d +_.i3=_.fA=_.hk=_.cY=_.dI=null +_.xL=e +_.F$=f +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=g +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +DO:function DO(a,b,c){var _=this +_.A=a +_.F$=b +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=c +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +E2:function E2(a,b){var _=this +_.F$=a +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=b +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +DX:function DX(a,b,c){var _=this +_.A=a +_.F$=b +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=c +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +E0:function E0(a,b,c){var _=this +_.A=a +_.F$=b +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=c +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +u0:function u0(a,b,c,d,e){var _=this +_.A=a +_.a6=b +_.F$=c +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=d +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null +_.$ti=e}, +Ke:function Ke(){}, +wY:function wY(){}, +wZ:function wZ(){}, +acP(a,b){var s +if(a.q(0,b))return B.af +s=b.b +if(sa.d)return B.aH +return b.a>=a.c?B.aH:B.aI}, +amU(a,b,c){var s,r +if(a.q(0,b))return b +s=b.b +r=a.b +if(!(s<=r))s=s<=a.d&&b.a<=a.a +else s=!0 +if(s)return c===B.q?new A.q(a.a,r):new A.q(a.c,r) +else{s=a.d +return c===B.q?new A.q(a.c,s):new A.q(a.a,s)}}, +k7:function k7(a,b){this.a=a +this.b=b}, +d1:function d1(){}, +EJ:function EJ(){}, +uA:function uA(a,b){this.a=a +this.b=b}, +oB:function oB(a,b){this.a=a +this.b=b}, +Yj:function Yj(){}, +qp:function qp(a){this.a=a}, +lV:function lV(a,b){this.b=a +this.a=b}, +oi:function oi(a,b){this.a=a +this.b=b}, +uC:function uC(a,b){this.a=a +this.b=b}, +k6:function k6(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +lW:function lW(a,b,c){this.a=a +this.b=b +this.c=c}, +Fz:function Fz(a,b){this.a=a +this.b=b}, +Ec:function Ec(){}, +X4:function X4(a,b,c){this.a=a +this.b=b +this.c=c}, +E5:function E5(a,b,c,d){var _=this +_.A=null +_.a6=a +_.au=b +_.F$=c +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=d +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +DM:function DM(){}, +E9:function E9(a,b,c,d,e,f){var _=this +_.cA=a +_.bk=b +_.A=null +_.a6=c +_.au=d +_.F$=e +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=f +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +YQ:function YQ(){}, +DU:function DU(a,b,c){var _=this +_.A=a +_.F$=b +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=c +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +x_:function x_(){}, +j4(a,b){switch(b.a){case 0:return a +case 1:return A.are(a)}}, +aqn(a,b){switch(b.a){case 0:return a +case 1:return A.arf(a)}}, +m4(a,b,c,d,e,f,g,h,i){var s=d==null?f:d,r=c==null?f:c,q=a==null?d:a +if(q==null)q=f +return new A.F1(h,g,f,s,e,r,f>0,b,i,q)}, +BE:function BE(a,b){this.a=a +this.b=b}, +kb:function kb(a,b,c,d,e,f,g,h,i,j,k,l){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l}, +F1:function F1(a,b,c,d,e,f,g,h,i,j){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.r=f +_.w=g +_.x=h +_.y=i +_.z=j}, +oo:function oo(a,b,c){this.a=a +this.b=b +this.c=c}, +F2:function F2(a,b,c){var _=this +_.c=a +_.d=b +_.a=c +_.b=null}, +uO:function uO(){}, +kc:function kc(a){this.a=a}, +iC:function iC(a,b,c){this.b5$=a +this.af$=b +this.a=c}, +cm:function cm(){}, +X5:function X5(){}, +X6:function X6(a,b){this.a=a +this.b=b}, +L7:function L7(){}, +La:function La(){}, +Ed:function Ed(a,b,c,d,e,f){var _=this +_.a0=a +_.a9=b +_.cX=$ +_.cb=!0 +_.bk$=c +_.U$=d +_.bC$=e +_.id=null +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=f +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +X7:function X7(a,b,c){this.a=a +this.b=b +this.c=c}, +hn:function hn(){}, +Xb:function Xb(){}, +hE:function hE(a,b,c){var _=this +_.b=null +_.c=!1 +_.nQ$=a +_.b5$=b +_.af$=c +_.a=null}, +o6:function o6(){}, +X8:function X8(a,b,c){this.a=a +this.b=b +this.c=c}, +Xa:function Xa(a,b){this.a=a +this.b=b}, +X9:function X9(){}, +x0:function x0(){}, +Kr:function Kr(){}, +Ks:function Ks(){}, +L8:function L8(){}, +L9:function L9(){}, +u6:function u6(){}, +Ee:function Ee(a,b,c,d){var _=this +_.bF=null +_.f3=a +_.fz=b +_.F$=c +_.id=null +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=d +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +Kq:function Kq(){}, +acD(a,b,c,d){var s,r,q,p,o,n=b.w +if(n!=null&&b.f!=null){s=b.f +s.toString +n.toString +r=B.cb.zs(c.a-s-n)}else{n=b.x +r=n!=null?B.cb.zs(n):B.cb}n=b.e +if(n!=null&&b.r!=null){s=b.r +s.toString +n.toString +r=r.zr(c.b-s-n)}a.ck(r,!0) +q=b.w +if(!(q!=null)){n=b.f +s=a.k3 +if(n!=null)q=c.a-n-s.a +else{s.toString +q=d.jI(t.uu.a(c.a4(0,s))).a}}p=(q<0||q+a.k3.a>c.a)&&!0 +o=b.e +if(!(o!=null)){n=b.r +s=a.k3 +if(n!=null)o=c.b-n-s.b +else{s.toString +o=d.jI(t.uu.a(c.a4(0,s))).b}}if(o<0||o+a.k3.b>c.b)p=!0 +b.a=new A.q(q,o) +return p}, +WG:function WG(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +df:function df(a,b,c){var _=this +_.y=_.x=_.w=_.r=_.f=_.e=null +_.b5$=a +_.af$=b +_.a=c}, +Fh:function Fh(a,b){this.a=a +this.b=b}, +u7:function u7(a,b,c,d,e,f,g,h,i){var _=this +_.J=!1 +_.al=null +_.ai=a +_.aE=b +_.ba=c +_.aL=d +_.bD=e +_.bk$=f +_.U$=g +_.bC$=h +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=i +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +Kt:function Kt(){}, +Ku:function Ku(){}, +jc:function jc(a,b){this.a=a +this.b=b}, +G2:function G2(a,b){this.a=a +this.b=b}, +u8:function u8(a,b,c,d,e){var _=this +_.id=a +_.k1=b +_.k2=c +_.k4=null +_.F$=d +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=e +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +Kw:function Kw(){}, +amy(a){var s,r +for(s=t.B2,r=t.vg;a!=null;){if(r.b(a))return a +a=s.a(a.c)}return null}, +amC(a,b,c,d,e,f){var s,r,q,p,o,n,m +if(b==null)return e +s=f.m4(b,0,e) +r=f.m4(b,1,e) +q=d.at +q.toString +p=s.a +o=r.a +if(pp)n=s +else{if(!(q0)return a>=1e5 +return!0}, +p4:function p4(a){this.a=a +this.b=null}, +lS:function lS(a,b){this.a=a +this.b=b}, +Vz:function Vz(a){this.a=a}, +de:function de(){}, +XQ:function XQ(a){this.a=a}, +XS:function XS(a){this.a=a}, +XT:function XT(a,b){this.a=a +this.b=b}, +XU:function XU(a,b){this.a=a +this.b=b}, +XP:function XP(a){this.a=a}, +XR:function XR(a){this.a=a}, +a8I(){var s=new A.mc(new A.bp(new A.ai($.ab,t.U),t.hb)) +s.F1() +return s}, +oE:function oE(a,b){var _=this +_.a=null +_.b=!1 +_.c=null +_.d=a +_.e=null +_.f=b +_.r=$}, +mc:function mc(a){this.a=a +this.c=this.b=null}, +a_o:function a_o(a){this.a=a}, +vd:function vd(a){this.a=a}, +EL:function EL(){}, +Yv:function Yv(a){this.a=a}, +aaT(a){var s=$.aaR.i(0,a) +if(s==null){s=$.aaS +$.aaS=s+1 +$.aaR.l(0,a,s) +$.aaQ.l(0,s,a)}return s}, +amV(a,b){var s +if(a.length!==b.length)return!1 +for(s=0;s=0){q.am(r,0,p).split("\n") +q.fY(r,p+2) +n.push(new A.rP())}else n.push(new A.rP())}return n}, +acQ(a){switch(a){case"AppLifecycleState.resumed":return B.vw +case"AppLifecycleState.inactive":return B.vx +case"AppLifecycleState.paused":return B.vy +case"AppLifecycleState.detached":return B.vz}return null}, +ok:function ok(){}, +YK:function YK(a){this.a=a}, +a1o:function a1o(){}, +a1p:function a1p(a){this.a=a}, +a1q:function a1q(a){this.a=a}, +al5(a){var s,r,q=a.c,p=B.Dh.i(0,q) +if(p==null)p=new A.i(q) +q=a.d +s=B.Dy.i(0,q) +if(s==null)s=new A.f(q) +r=a.a +switch(a.b.a){case 0:return new A.lk(p,s,a.e,r,a.f) +case 1:return new A.jF(p,s,null,r,a.f) +case 2:return new A.rM(p,s,a.e,r,!1)}}, +nC:function nC(a,b,c){this.c=a +this.a=b +this.b=c}, +jD:function jD(){}, +lk:function lk(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +jF:function jF(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +rM:function rM(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +St:function St(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=!1 +_.e=null}, +C0:function C0(a,b){this.a=a +this.b=b}, +rL:function rL(a,b){this.a=a +this.b=b}, +C1:function C1(a,b,c,d){var _=this +_.a=null +_.b=a +_.c=b +_.d=null +_.e=c +_.f=d}, +IC:function IC(){}, +TX:function TX(){}, +f:function f(a){this.a=a}, +i:function i(a){this.a=a}, +ID:function ID(){}, +a8i(a,b,c,d){return new A.tK(a,c,b,d)}, +alu(a){return new A.t9(a)}, +hr:function hr(a,b){this.a=a +this.b=b}, +tK:function tK(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +t9:function t9(a){this.a=a}, +Zo:function Zo(){}, +Tu:function Tu(){}, +Tw:function Tw(){}, +Ze:function Ze(){}, +Zf:function Zf(a,b){this.a=a +this.b=b}, +Zi:function Zi(){}, +ao4(a){var s,r,q +for(s=new A.dy(J.am(a.a),a.b),r=A.m(s).z[1];s.t();){q=s.a +if(q==null)q=r.a(q) +if(!q.k(0,B.cg))return q}return null}, +UF:function UF(a,b){this.a=a +this.b=b}, +ta:function ta(){}, +cv:function cv(){}, +Hq:function Hq(){}, +Lt:function Lt(a,b){this.a=a +this.b=b}, +hH:function hH(a){this.a=a}, +J5:function J5(){}, +jf:function jf(a,b,c){this.a=a +this.b=b +this.$ti=c}, +Or:function Or(a,b){this.a=a +this.b=b}, +t8:function t8(a,b){this.a=a +this.b=b}, +Us:function Us(a,b){this.a=a +this.b=b}, +jQ:function jQ(a,b){this.a=a +this.b=b}, +amt(a){var s,r,q,p,o={} +o.a=null +s=new A.Wk(o,a).$0() +r=$.a72().d +q=A.m(r).h("aT<1>") +p=A.hq(new A.aT(r,q),q.h("j.E")).q(0,s.gfI()) +q=J.bc(a,"type") +q.toString +A.bW(q) +switch(q){case"keydown":return new A.hz(o.a,p,s) +case"keyup":return new A.o2(null,!1,s) +default:throw A.d(A.RC("Unknown key event type: "+q))}}, +ll:function ll(a,b){this.a=a +this.b=b}, +eu:function eu(a,b){this.a=a +this.b=b}, +tT:function tT(){}, +fA:function fA(){}, +Wk:function Wk(a,b){this.a=a +this.b=b}, +hz:function hz(a,b,c){this.a=a +this.b=b +this.c=c}, +o2:function o2(a,b,c){this.a=a +this.b=b +this.c=c}, +Wp:function Wp(a,b){this.a=a +this.d=b}, +c2:function c2(a,b){this.a=a +this.b=b}, +Kb:function Kb(){}, +Ka:function Ka(){}, +DI:function DI(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +uc:function uc(a,b){var _=this +_.b=_.a=null +_.f=_.e=_.d=_.c=!1 +_.r=a +_.W$=0 +_.a_$=b +_.a0$=_.ad$=0 +_.a9$=!1}, +Xl:function Xl(a){this.a=a}, +Xm:function Xm(a){this.a=a}, +cn:function cn(a,b,c,d,e,f){var _=this +_.a=a +_.b=null +_.c=b +_.d=c +_.e=d +_.f=e +_.r=f +_.x=_.w=!1}, +Xi:function Xi(){}, +Xj:function Xj(){}, +Xh:function Xh(){}, +Xk:function Xk(){}, +ZC(a){var s=0,r=A.Y(t.H) +var $async$ZC=A.Z(function(b,c){if(b===1)return A.V(c,r) +while(true)switch(s){case 0:s=2 +return A.a1(B.bq.fB(u.p,A.aL(["label",a.a,"primaryColor",a.b],t.N,t.z),t.H),$async$ZC) +case 2:return A.W(null,r)}}) +return A.X($async$ZC,r)}, +adg(a){if($.ou!=null){$.ou=a +return}if(a.k(0,$.a8E))return +$.ou=a +A.f7(new A.ZD())}, +Oa:function Oa(a,b){this.a=a +this.b=b}, +hI:function hI(a,b,c,d,e,f,g,h){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h}, +ZD:function ZD(){}, +Fp(a){var s=0,r=A.Y(t.H) +var $async$Fp=A.Z(function(b,c){if(b===1)return A.V(c,r) +while(true)switch(s){case 0:s=2 +return A.a1(B.bq.fB("SystemSound.play",a.D(),t.H),$async$Fp) +case 2:return A.W(null,r)}}) +return A.X($async$Fp,r)}, +Fo:function Fo(a,b){this.a=a +this.b=b}, +ZN:function ZN(){}, +zo:function zo(a){this.a=a}, +U2:function U2(a){this.a=a}, +Qf:function Qf(a){this.a=a}, +a_i(a,b,c,d){var s=b?").b(s))return s +else return null}, +aiB(a,b,c){var s={} +s.a=null +A.NX(a,new A.NZ(s,b,a,c)) +return s.a}, +aaW(a){return new A.AK(a,new A.be(A.a([],t.B8),t.dc))}, +a5v:function a5v(a){this.a=a}, +aD:function aD(){}, +bf:function bf(){}, +kX:function kX(){}, +kS:function kS(a,b,c){var _=this +_.c=a +_.a=b +_.b=null +_.$ti=c}, +NT:function NT(){}, +i1:function i1(a,b,c){this.d=a +this.e=b +this.a=c}, +NV:function NV(a){this.a=a}, +NY:function NY(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +NW:function NW(a,b,c){this.a=a +this.b=b +this.c=c}, +NZ:function NZ(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +vu:function vu(a,b,c){var _=this +_.d=a +_.e=b +_.a=null +_.b=c +_.c=null}, +a00:function a00(a){this.a=a}, +vt:function vt(a,b,c,d,e){var _=this +_.f=a +_.r=b +_.w=c +_.b=d +_.a=e}, +G5:function G5(a){this.a=a +this.b=null}, +AK:function AK(a,b){this.c=a +this.a=b +this.b=null}, +mE:function mE(){}, +mU:function mU(){}, +h8:function h8(){}, +AI:function AI(){}, +lO:function lO(){}, +DE:function DE(a){var _=this +_.d=_.c=$ +_.a=a +_.b=null}, +Jr:function Jr(){}, +wG:function wG(a,b,c,d,e,f,g,h){var _=this +_.e=a +_.f=b +_.a3q$=c +_.a3r$=d +_.a3s$=e +_.a3t$=f +_.a=g +_.b=null +_.$ti=h}, +Gd:function Gd(){}, +Gb:function Gb(){}, +Iy:function Iy(){}, +y9:function y9(){}, +pW:function pW(a,b,c,d){var _=this +_.e=a +_.c=b +_.a=c +_.$ti=d}, +aqv(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c +if(a==null||a.length===0)return B.b.gG(b) +s=t.N +r=t.oa +q=A.ij(s,r) +p=A.ij(s,r) +o=A.ij(s,r) +n=A.ij(s,r) +m=A.ij(t.dR,r) +for(l=0;l<1;++l){k=b[l] +s=k.a +r=B.aC.i(0,s) +if(r==null)r=s +j=k.c +i=B.aU.i(0,j) +if(i==null)i=j +i=r+"_null_"+A.h(i) +if(q.i(0,i)==null)q.l(0,i,k) +r=B.aC.i(0,s) +r=(r==null?s:r)+"_null" +if(o.i(0,r)==null)o.l(0,r,k) +r=B.aC.i(0,s) +if(r==null)r=s +i=B.aU.i(0,j) +if(i==null)i=j +i=r+"_"+A.h(i) +if(p.i(0,i)==null)p.l(0,i,k) +r=B.aC.i(0,s) +s=r==null?s:r +if(n.i(0,s)==null)n.l(0,s,k) +s=B.aU.i(0,j) +if(s==null)s=j +if(m.i(0,s)==null)m.l(0,s,k)}for(h=null,g=null,f=0;f"))}, +anX(){var s=null,r=A.a([],t.kf),q=$.ab,p=A.a([],t.kC),o=A.aU(7,s,!1,t.dC),n=t.S,m=t.u3 +n=new A.G6(s,$,r,!0,new A.bp(new A.ai(q,t.U),t.hb),!1,s,!1,$,!1,s,$,!1,0,!1,$,0,s,$,$,new A.Ls(A.az(t.O)),$,$,$,$,s,p,s,A.aqy(),new A.BF(A.aqx(),o,t.f7),!1,0,A.y(n,t.b1),A.cK(n),A.a([],m),A.a([],m),s,!1,B.bY,!0,!1,s,B.r,B.r,s,0,s,!1,s,s,0,A.jK(s,t.cL),new A.VX(A.y(n,t.p6),A.y(t.yd,t.rY)),new A.S5(A.y(n,t.eK)),new A.W_(),A.y(n,t.ln),$,!1,B.z1) +n.Pg() +return n}, +a4V:function a4V(a,b,c){this.a=a +this.b=b +this.c=c}, +a4W:function a4W(a){this.a=a}, +hP:function hP(){}, +vr:function vr(){}, +a4U:function a4U(a,b){this.a=a +this.b=b}, +a_W:function a_W(a,b){this.a=a +this.b=b}, +lQ:function lQ(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.a=d +_.$ti=e}, +WO:function WO(a,b,c){this.a=a +this.b=b +this.c=c}, +WP:function WP(a){this.a=a}, +k1:function k1(a,b,c){var _=this +_.d=_.c=_.b=_.a=_.CW=_.ay=_.p2=_.p1=null +_.e=$ +_.f=a +_.r=null +_.w=b +_.z=_.y=null +_.Q=!1 +_.as=!0 +_.ax=_.at=!1 +_.$ti=c}, +G6:function G6(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9){var _=this +_.a1$=a +_.eu$=b +_.bE$=c +_.cu$=d +_.f2$=e +_.i2$=f +_.e9$=g +_.fw$=h +_.x1$=i +_.x2$=j +_.xr$=k +_.y1$=l +_.y2$=m +_.bU$=n +_.bL$=o +_.xG$=p +_.xH$=q +_.r_$=r +_.xI$=s +_.fv$=a0 +_.xE$=a1 +_.ai$=a2 +_.aE$=a3 +_.ba$=a4 +_.aL$=a5 +_.bD$=a6 +_.y$=a7 +_.z$=a8 +_.Q$=a9 +_.as$=b0 +_.at$=b1 +_.ax$=b2 +_.ay$=b3 +_.ch$=b4 +_.CW$=b5 +_.cx$=b6 +_.cy$=b7 +_.db$=b8 +_.dx$=b9 +_.dy$=c0 +_.fr$=c1 +_.fx$=c2 +_.fy$=c3 +_.go$=c4 +_.id$=c5 +_.k1$=c6 +_.k2$=c7 +_.k3$=c8 +_.k4$=c9 +_.ok$=d0 +_.p1$=d1 +_.p2$=d2 +_.p3$=d3 +_.p4$=d4 +_.R8$=d5 +_.RG$=d6 +_.rx$=d7 +_.ry$=d8 +_.to$=d9 +_.a=!1 +_.b=null +_.c=0}, +wV:function wV(){}, +xT:function xT(){}, +xU:function xU(){}, +xV:function xV(){}, +xW:function xW(){}, +xX:function xX(){}, +xY:function xY(){}, +xZ:function xZ(){}, +a7B(a,b,c){return new A.As(b,c,a,null)}, +Px(a,b,c,d,e,f,g,h,i,j,k,l,m){var s +if(m!=null||h!=null){s=e==null?null:e.zt(h,m) +if(s==null)s=A.kQ(h,m)}else s=e +return new A.Ac(b,a,j,d,f,g,s,i,k,l,c,null)}, +As:function As(a,b,c,d){var _=this +_.e=a +_.f=b +_.c=c +_.a=d}, +Ac:function Ac(a,b,c,d,e,f,g,h,i,j,k,l){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.z=i +_.Q=j +_.as=k +_.a=l}, +Hm:function Hm(a,b,c){this.b=a +this.c=b +this.a=c}, +aaU(a,b,c){return new A.n6(b,c,a,null)}, +n6:function n6(a,b,c,d){var _=this +_.w=a +_.x=b +_.b=c +_.a=d}, +Ji:function Ji(a){this.a=a}, +ajE(){switch(A.kE().a){case 0:return $.a9U() +case 1:return $.aga() +case 2:return $.agb() +case 3:return $.agc() +case 4:return $.a9V() +case 5:return $.age()}}, +AA:function AA(a,b){this.c=a +this.a=b}, +AJ:function AJ(a){this.a=a}, +na:function na(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +vW:function vW(a,b,c){var _=this +_.d=$ +_.e=a +_.f=b +_.a=null +_.b=c +_.c=null}, +aqH(a){var s,r,q +for(s=a.length,r=!1,q=0;q>")) +for(s=new A.db(n,n.gp(n)),r=A.m(s).c,q=null;s.t();){p=s.d +o=p==null?r.a(p):p +q=(q==null?o:q).o5(0,o)}if(q.gS(q))return B.b.gG(a).a +return B.b.HI(B.b.gG(a).gHb(),q.giP(q)).w}, +adU(a,b){A.j8(a,new A.a3L(b),t.dP)}, +aoj(a,b){A.j8(a,new A.a3I(b),t.n7)}, +abj(a,b){return new A.rj(b==null?new A.tW(A.y(t.j5,t.uJ)):b,a,null)}, +RL(a){var s +for(;s=a.Q,s!=null;a=s){if(a.e==null)return null +if(a instanceof A.w3)return a}return null}, +Bp(a){var s,r=A.a7S(a,!1,!0) +if(r==null)return null +s=A.RL(r) +return s==null?null:s.dy}, +a5r:function a5r(a){this.a=a}, +p2:function p2(a,b){this.b=a +this.c=b}, +kf:function kf(a,b){this.a=a +this.b=b}, +FQ:function FQ(a,b){this.a=a +this.b=b}, +Bq:function Bq(){}, +RN:function RN(a,b){this.a=a +this.b=b}, +RM:function RM(){}, +p_:function p_(a,b){this.a=a +this.b=b}, +Hu:function Hu(a){this.a=a}, +PZ:function PZ(){}, +a3M:function a3M(a){this.a=a}, +Q6:function Q6(a,b){this.a=a +this.b=b}, +Q8:function Q8(a){this.a=a}, +Q7:function Q7(a){this.a=a}, +Q9:function Q9(a){this.a=a}, +Qa:function Qa(a){this.a=a}, +Q0:function Q0(a){this.a=a}, +Q1:function Q1(a){this.a=a}, +Q2:function Q2(){}, +Q3:function Q3(a){this.a=a}, +Q4:function Q4(a){this.a=a}, +Q5:function Q5(){}, +Q_:function Q_(a,b,c){this.a=a +this.b=b +this.c=c}, +Qb:function Qb(a){this.a=a}, +Qc:function Qc(a){this.a=a}, +Qd:function Qd(a){this.a=a}, +Qe:function Qe(a){this.a=a}, +cF:function cF(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=null}, +a3J:function a3J(){}, +a3L:function a3L(a){this.a=a}, +a3K:function a3K(){}, +hR:function hR(a){this.a=a +this.b=null}, +a3H:function a3H(){}, +a3I:function a3I(a){this.a=a}, +tW:function tW(a){this.nP$=a}, +WC:function WC(){}, +WD:function WD(){}, +WE:function WE(a){this.a=a}, +rj:function rj(a,b,c){this.c=a +this.f=b +this.a=c}, +w3:function w3(a,b,c,d,e,f,g,h,i){var _=this +_.dy=a +_.a=b +_.b=c +_.c=d +_.d=e +_.e=null +_.f=f +_.r=g +_.Q=_.y=_.x=_.w=null +_.as=h +_.ax=_.at=null +_.ay=!1 +_.W$=0 +_.a_$=i +_.a0$=_.ad$=0 +_.a9$=!1}, +I5:function I5(a){var _=this +_.d=$ +_.a=null +_.b=a +_.c=null}, +Eh:function Eh(a){this.a=a +this.b=null}, +ly:function ly(){}, +CM:function CM(a){this.a=a +this.b=null}, +lN:function lN(){}, +DC:function DC(a){this.a=a +this.b=null}, +AG:function AG(a){this.a=a +this.b=null}, +I6:function I6(){}, +Kd:function Kd(){}, +MI:function MI(){}, +MJ:function MJ(){}, +ao7(a){a.d6() +a.aR(A.a6k())}, +akk(a,b){var s,r,q,p=a.e +p===$&&A.c() +s=b.e +s===$&&A.c() +r=p-s +if(r!==0)return r +q=b.as +if(a.as!==q)return q?-1:1 +return 0}, +akj(a){a.c8() +a.aR(A.afw())}, +a7P(a){var s=a.a,r=s instanceof A.ig?s:null +return new A.B7("",r,new A.vm())}, +ang(a){var s=a.aq(),r=new A.f_(s,a,B.Y) +s.c=r +s.a=a +return r}, +akY(a){return new A.eq(A.ij(t.h,t.X),a,B.Y)}, +alx(a){return new A.ev(A.cK(t.h),a,B.Y)}, +a9j(a,b,c,d){var s=new A.bu(b,c,"widgets library",a,d,!1) +A.dx(s) +return s}, +he:function he(){}, +bM:function bM(a,b){this.a=a +this.$ti=b}, +ii:function ii(a,b){this.a=a +this.$ti=b}, +l:function l(){}, +aV:function aV(){}, +aa:function aa(){}, +a4o:function a4o(a,b){this.a=a +this.b=b}, +an:function an(){}, +aK:function aK(){}, +e9:function e9(){}, +aX:function aX(){}, +ax:function ax(){}, +C6:function C6(){}, +b5:function b5(){}, +ew:function ew(){}, +p0:function p0(a,b){this.a=a +this.b=b}, +Is:function Is(a){this.a=!1 +this.b=a}, +a2t:function a2t(a,b){this.a=a +this.b=b}, +OE:function OE(a,b,c,d){var _=this +_.a=null +_.b=a +_.c=b +_.d=!1 +_.e=null +_.f=c +_.r=0 +_.w=!1 +_.y=_.x=null +_.z=d}, +OF:function OF(a,b,c){this.a=a +this.b=b +this.c=c}, +CP:function CP(){}, +a3o:function a3o(a,b){this.a=a +this.b=b}, +b1:function b1(){}, +QL:function QL(a){this.a=a}, +QM:function QM(a){this.a=a}, +QI:function QI(a){this.a=a}, +QK:function QK(){}, +QJ:function QJ(a){this.a=a}, +B7:function B7(a,b,c){this.d=a +this.e=b +this.a=c}, +qu:function qu(){}, +Pq:function Pq(){}, +Pr:function Pr(){}, +Fi:function Fi(a,b){var _=this +_.d=_.c=_.b=_.a=_.ay=null +_.e=$ +_.f=a +_.r=null +_.w=b +_.z=_.y=null +_.Q=!1 +_.as=!0 +_.ax=_.at=!1}, +f_:function f_(a,b,c){var _=this +_.ok=a +_.p1=!1 +_.d=_.c=_.b=_.a=_.ay=null +_.e=$ +_.f=b +_.r=null +_.w=c +_.z=_.y=null +_.Q=!1 +_.as=!0 +_.ax=_.at=!1}, +tP:function tP(){}, +lA:function lA(a,b,c){var _=this +_.d=_.c=_.b=_.a=_.ay=null +_.e=$ +_.f=a +_.r=null +_.w=b +_.z=_.y=null +_.Q=!1 +_.as=!0 +_.ax=_.at=!1 +_.$ti=c}, +Vv:function Vv(a){this.a=a}, +eq:function eq(a,b,c){var _=this +_.W=a +_.d=_.c=_.b=_.a=_.ay=null +_.e=$ +_.f=b +_.r=null +_.w=c +_.z=_.y=null +_.Q=!1 +_.as=!0 +_.ax=_.at=!1}, +c_:function c_(){}, +WM:function WM(a){this.a=a}, +WN:function WN(a){this.a=a}, +Xp:function Xp(){}, +C5:function C5(a,b){var _=this +_.d=_.c=_.b=_.a=_.CW=_.ay=null +_.e=$ +_.f=a +_.r=null +_.w=b +_.z=_.y=null +_.Q=!1 +_.as=!0 +_.ax=_.at=!1}, +uH:function uH(a,b){var _=this +_.d=_.c=_.b=_.a=_.CW=_.ay=_.p1=null +_.e=$ +_.f=a +_.r=null +_.w=b +_.z=_.y=null +_.Q=!1 +_.as=!0 +_.ax=_.at=!1}, +ev:function ev(a,b,c){var _=this +_.p1=$ +_.p2=a +_.d=_.c=_.b=_.a=_.CW=_.ay=null +_.e=$ +_.f=b +_.r=null +_.w=c +_.z=_.y=null +_.Q=!1 +_.as=!0 +_.ax=_.at=!1}, +UN:function UN(a){this.a=a}, +nt:function nt(a,b,c){this.a=a +this.b=b +this.$ti=c}, +Jg:function Jg(a,b){var _=this +_.d=_.c=_.b=_.a=null +_.e=$ +_.f=a +_.r=null +_.w=b +_.z=_.y=null +_.Q=!1 +_.as=!0 +_.ax=_.at=!1}, +Jj:function Jj(a){this.a=a}, +Li:function Li(){}, +a7V(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5){return new A.By(b,a1,a2,s,a0,o,q,r,p,f,k,a4,a5,a3,h,j,i,g,l,n,m,a,d,c,e)}, +lc:function lc(){}, +ck:function ck(a,b,c){this.a=a +this.b=b +this.$ti=c}, +By:function By(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.z=i +_.ay=j +_.cy=k +_.rx=l +_.ry=m +_.to=n +_.x2=o +_.y1=p +_.y2=q +_.bU=r +_.bL=s +_.a_=a0 +_.ad=a1 +_.aE=a2 +_.ba=a3 +_.aL=a4 +_.a=a5}, +Sa:function Sa(a){this.a=a}, +Sb:function Sb(a,b){this.a=a +this.b=b}, +Sc:function Sc(a){this.a=a}, +Sg:function Sg(a,b){this.a=a +this.b=b}, +Sh:function Sh(a){this.a=a}, +Si:function Si(a,b){this.a=a +this.b=b}, +Sj:function Sj(a){this.a=a}, +Sk:function Sk(a,b){this.a=a +this.b=b}, +Sl:function Sl(a){this.a=a}, +Sm:function Sm(a,b){this.a=a +this.b=b}, +Sn:function Sn(a){this.a=a}, +Sd:function Sd(a,b){this.a=a +this.b=b}, +Se:function Se(a){this.a=a}, +Sf:function Sf(a,b){this.a=a +this.b=b}, +k_:function k_(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +o1:function o1(a,b){var _=this +_.d=a +_.a=_.e=null +_.b=b +_.c=null}, +Ib:function Ib(a,b,c,d){var _=this +_.e=a +_.f=b +_.c=c +_.a=d}, +Yu:function Yu(){}, +a1t:function a1t(a){this.a=a}, +a1y:function a1y(a){this.a=a}, +a1x:function a1x(a){this.a=a}, +a1u:function a1u(a){this.a=a}, +a1v:function a1v(a){this.a=a}, +a1w:function a1w(a,b){this.a=a +this.b=b}, +a1z:function a1z(a){this.a=a}, +a1A:function a1A(a){this.a=a}, +a1B:function a1B(a,b){this.a=a +this.b=b}, +abq(a,b,c){var s=A.y(t.K,t.BJ) +a.aR(new A.SC(c,new A.SB(s,b))) +return s}, +adN(a,b){var s,r=a.ga2() +r.toString +t.x.a(r) +s=r.bs(0,b==null?null:b.ga2()) +r=r.k3 +return A.es(s,new A.C(0,0,0+r.a,0+r.b))}, +nm:function nm(a,b){this.a=a +this.b=b}, +ld:function ld(a,b,c){this.c=a +this.e=b +this.a=c}, +SB:function SB(a,b){this.a=a +this.b=b}, +SC:function SC(a,b){this.a=a +this.b=b}, +p8:function p8(a,b){var _=this +_.d=a +_.e=null +_.f=!0 +_.a=null +_.b=b +_.c=null}, +a2g:function a2g(a,b){this.a=a +this.b=b}, +a2f:function a2f(){}, +a2c:function a2c(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.at=_.as=_.Q=$}, +iT:function iT(a,b){var _=this +_.a=a +_.b=$ +_.c=null +_.d=b +_.f=_.e=$ +_.r=null +_.x=_.w=!1}, +a2d:function a2d(a){this.a=a}, +a2e:function a2e(a,b){this.a=a +this.b=b}, +rp:function rp(a,b){this.a=a +this.b=b}, +SA:function SA(){}, +Sz:function Sz(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +Sy:function Sy(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +abu(a,b,c){return new A.rs(a,b,c,null)}, +rs:function rs(a,b,c,d){var _=this +_.c=a +_.x=b +_.z=c +_.a=d}, +hg:function hg(a,b){this.a=a +this.d=b}, +SZ(a,b,c){return new A.li(b,a,c)}, +rv(a,b){return new A.jh(new A.T_(null,b,a),null)}, +a7X(a){var s,r,q,p,o,n,m=A.aby(a).Y(a),l=m.a,k=l==null +if(!k)if(m.b!=null)if(m.c!=null)if(m.d!=null)if(m.e!=null)if(m.f!=null){s=m.r +s=(s==null?null:A.O(s,0,1))!=null}else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +if(s)l=m +else{if(k)l=24 +k=m.b +if(k==null)k=0 +s=m.c +if(s==null)s=400 +r=m.d +if(r==null)r=0 +q=m.e +if(q==null)q=48 +p=m.f +if(p==null)p=B.l +o=m.r +o=o==null?null:A.O(o,0,1) +if(o==null)o=A.O(1,0,1) +n=m.w +l=m.nu(p,k,r,o,q,n==null?null:n,l,s)}return l}, +aby(a){var s=a.aj(t.EC),r=s==null?null:s.w +return r==null?B.zu:r}, +li:function li(a,b,c){this.w=a +this.b=b +this.a=c}, +T_:function T_(a,b,c){this.a=a +this.b=b +this.c=c}, +ik(a,b,c){var s,r,q,p,o,n,m,l,k,j,i=null +if(a==b&&a!=null)return a +s=a==null +r=s?i:a.a +q=b==null +r=A.M(r,q?i:b.a,c) +p=s?i:a.b +p=A.M(p,q?i:b.b,c) +o=s?i:a.c +o=A.M(o,q?i:b.c,c) +n=s?i:a.d +n=A.M(n,q?i:b.d,c) +m=s?i:a.e +m=A.M(m,q?i:b.e,c) +l=s?i:a.f +l=A.r(l,q?i:b.f,c) +if(s)k=i +else{k=a.r +k=k==null?i:A.O(k,0,1)}if(q)j=i +else{j=b.r +j=j==null?i:A.O(j,0,1)}j=A.M(k,j,c) +s=s?i:a.w +return new A.cd(r,p,o,n,m,l,j,A.an0(s,q?i:b.w,c))}, +cd:function cd(a,b,c,d,e,f,g,h){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h}, +Ip:function Ip(){}, +a9s(a,b){var s,r +a.aj(t.q4) +s=$.NO() +r=A.dl(a,B.eD) +r=r==null?null:r.b +if(r==null)r=1 +return new A.rx(s,r,A.a85(a),A.e1(a),b,A.kE())}, +T0(a,b){var s=null +return new A.rw(A.amD(s,s,new A.mM(a,s,s)),b,s)}, +rw:function rw(a,b,c){this.c=a +this.w=b +this.a=c}, +w8:function w8(a){var _=this +_.f=_.e=_.d=null +_.r=!1 +_.w=$ +_.x=null +_.y=!1 +_.z=$ +_.a=_.ax=_.at=_.as=_.Q=null +_.b=a +_.c=null}, +a2p:function a2p(a,b,c){this.a=a +this.b=b +this.c=c}, +a2q:function a2q(a){this.a=a}, +a2r:function a2r(a){this.a=a}, +a2s:function a2s(a){this.a=a}, +Mx:function Mx(){}, +ajC(a,b){return new A.i9(a,b)}, +kR:function kR(a,b){this.a=a +this.b=b}, +i9:function i9(a,b){this.a=a +this.b=b}, +qV:function qV(a,b){this.a=a +this.b=b}, +jr:function jr(a,b){this.a=a +this.b=b}, +kP:function kP(a,b){this.a=a +this.b=b}, +ls:function ls(a,b){this.a=a +this.b=b}, +ma:function ma(a,b){this.a=a +this.b=b}, +BS:function BS(){}, +nr:function nr(){}, +Tf:function Tf(a){this.a=a}, +Te:function Te(a){this.a=a}, +Td:function Td(a,b){this.a=a +this.b=b}, +mG:function mG(){}, +O1:function O1(){}, +pM:function pM(a,b,c,d,e,f,g,h){var _=this +_.r=a +_.y=b +_.z=c +_.Q=d +_.c=e +_.d=f +_.e=g +_.a=h}, +Gg:function Gg(a,b,c){var _=this +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=_.CW=null +_.e=_.d=$ +_.i_$=a +_.dH$=b +_.a=null +_.b=c +_.c=null}, +a02:function a02(){}, +a03:function a03(){}, +a04:function a04(){}, +a05:function a05(){}, +a06:function a06(){}, +a07:function a07(){}, +a08:function a08(){}, +a09:function a09(){}, +pN:function pN(a,b,c,d,e,f){var _=this +_.r=a +_.w=b +_.c=c +_.d=d +_.e=e +_.a=f}, +Gh:function Gh(a,b,c){var _=this +_.CW=null +_.e=_.d=$ +_.i_$=a +_.dH$=b +_.a=null +_.b=c +_.c=null}, +a0a:function a0a(){}, +pP:function pP(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.r=a +_.w=b +_.x=c +_.z=d +_.Q=e +_.as=f +_.at=g +_.c=h +_.d=i +_.e=j +_.a=k}, +Gi:function Gi(a,b,c){var _=this +_.db=_.cy=_.cx=_.CW=null +_.e=_.d=$ +_.i_$=a +_.dH$=b +_.a=null +_.b=c +_.c=null}, +a0b:function a0b(){}, +a0c:function a0c(){}, +a0d:function a0d(){}, +a0e:function a0e(){}, +pb:function pb(){}, +akZ(a,b,c,d){var s,r=a.jm(d) +if(r==null)return +c.push(r) +s=r.f +s.toString +d.a(s) +return}, +cL(a,b,c){var s,r,q,p,o,n +if(b==null)return a.aj(c) +s=A.a([],t.wQ) +A.akZ(a,b,s,c) +if(s.length===0)return null +r=B.b.gO(s) +for(q=s.length,p=0;p>")),i).bw(new A.a5I(k,h),t.Co)}, +a85(a){var s=a.aj(t.gF) +return s==null?null:s.r.f}, +Cf(a,b,c){var s=a.aj(t.gF) +return s==null?null:c.h("0?").a(J.bc(s.r.e,b))}, +pm:function pm(a,b){this.a=a +this.b=b}, +a5G:function a5G(a){this.a=a}, +a5H:function a5H(){}, +a5I:function a5I(a,b){this.a=a +this.b=b}, +e7:function e7(){}, +Mm:function Mm(){}, +AC:function AC(){}, +wj:function wj(a,b,c,d){var _=this +_.r=a +_.w=b +_.b=c +_.a=d}, +rW:function rW(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +IP:function IP(a,b,c){var _=this +_.d=a +_.e=b +_.a=_.f=null +_.b=c +_.c=null}, +a2P:function a2P(a){this.a=a}, +a2Q:function a2Q(a,b){this.a=a +this.b=b}, +a2O:function a2O(a,b,c){this.a=a +this.b=b +this.c=c}, +ali(a,b){var s,r +a.aj(t.tS) +s=A.alj(a,b) +if(s==null)return null +a.tX(s,null) +r=s.f +r.toString +return b.a(r)}, +alj(a,b){var s,r,q,p=a.jm(b) +if(p==null)return null +s=a.jm(t.tS) +if(s!=null){r=s.e +r===$&&A.c() +q=p.e +q===$&&A.c() +q=r>q +r=q}else r=!1 +if(r)return null +return p}, +abS(a,b){var s={} +s.a=null +a.oJ(new A.Ud(s,b)) +s=s.a +if(s==null)s=null +else{s=s.ok +s.toString}return b.h("0?").a(s)}, +abR(a,b){var s={} +s.a=null +a.oJ(new A.Uc(s,b)) +s=s.a +s=s==null?null:s.ga2() +return b.h("0?").a(s)}, +Ud:function Ud(a,b){this.a=a +this.b=b}, +Uc:function Uc(a,b){this.a=a +this.b=b}, +nP(a,b,c){return new A.lt(b,a,c)}, +dl(a,b){var s=A.cL(a,b,t.w) +return s==null?null:s.w}, +CZ:function CZ(a,b){this.a=a +this.b=b}, +dg:function dg(a,b){this.a=a +this.b=b}, +t6:function t6(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.at=n +_.ax=o +_.ay=p +_.ch=q}, +lt:function lt(a,b,c){this.w=a +this.b=b +this.a=c}, +UW:function UW(a,b){this.a=a +this.b=b}, +wq:function wq(a,b,c){this.c=a +this.e=b +this.a=c}, +IW:function IW(a){var _=this +_.a=_.e=_.d=null +_.b=a +_.c=null}, +a38:function a38(a,b){this.a=a +this.b=b}, +Mz:function Mz(){}, +ac1(a,b,c,d,e,f,g){return new A.Cy(c,!1,e,!0,f,b,g,null)}, +Cy:function Cy(a,b,c,d,e,f,g,h){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.a=h}, +UA:function UA(a,b){this.a=a +this.b=b}, +oS:function oS(a,b,c,d,e,f,g,h,i){var _=this +_.W=null +_.k3=_.k2=!1 +_.ok=_.k4=null +_.at=a +_.ay=b +_.ch=c +_.cx=_.CW=null +_.cy=!1 +_.db=null +_.f=d +_.r=e +_.a=f +_.b=null +_.c=g +_.d=h +_.e=i}, +Gn:function Gn(a){this.a=a}, +J3:function J3(a,b,c){this.c=a +this.d=b +this.a=c}, +CL:function CL(a,b,c,d,e,f){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.a=f}, +xH:function xH(a,b){this.a=a +this.b=b}, +a4x:function a4x(a,b,c){var _=this +_.d=a +_.e=b +_.f=c +_.c=_.b=null}, +alI(a){return A.a8d(a).a1p(null)}, +a8d(a){var s,r +if(a instanceof A.f_){s=a.ok +s.toString +s=s instanceof A.hs}else s=!1 +if(s){s=a.ok +s.toString +t.iK.a(s) +r=s}else r=null +if(r==null)r=a.r4(t.iK) +s=r +s.toString +return s}, +alH(a,b){var s,r,q,p,o,n,m=null,l=A.a([],t.ny) +if(B.d.c3(b,"/")&&b.length>1){b=B.d.fY(b,1) +s=t.z +l.push(a.pW("/",!0,m,s)) +r=b.split("/") +if(b.length!==0)for(q=r.length,p=0,o="";p=3}, +aop(a){return a.ga2Z()}, +adW(a){return new A.a41(a)}, +aom(a){var s,r,q +t.DI.a(a) +s=J.aC(a) +r=s.i(a,0) +r.toString +switch(B.BC[A.ku(r)].a){case 0:s=s.cQ(a,1) +r=s[0] +r.toString +A.ku(r) +q=s[1] +q.toString +A.bW(q) +return new A.J9(r,q,s.length>2?s[2]:null,B.hU) +case 1:s=s.cQ(a,1)[1] +s.toString +t.x8.a(A.alT(new A.OL(A.ku(s)))) +return null}}, +ob:function ob(a,b){this.a=a +this.b=b}, +c7:function c7(){}, +Xs:function Xs(a){this.a=a}, +Xr:function Xr(a){this.a=a}, +Xv:function Xv(){}, +Xw:function Xw(){}, +Xx:function Xx(){}, +Xy:function Xy(){}, +Xt:function Xt(a){this.a=a}, +Xu:function Xu(){}, +fG:function fG(a,b){this.a=a +this.b=b}, +lx:function lx(){}, +le:function le(a,b,c){this.f=a +this.b=b +this.a=c}, +Xq:function Xq(){}, +FO:function FO(){}, +AB:function AB(){}, +tn:function tn(a,b,c,d,e,f,g,h,i){var _=this +_.f=a +_.r=b +_.w=c +_.x=d +_.y=e +_.Q=f +_.as=g +_.at=h +_.a=i}, +V4:function V4(){}, +dW:function dW(a,b){this.a=a +this.b=b}, +Jf:function Jf(a,b,c){var _=this +_.a=null +_.b=a +_.c=b +_.d=c}, +d6:function d6(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=null +_.x=!0 +_.y=!1}, +a40:function a40(a,b){this.a=a +this.b=b}, +a3Z:function a3Z(){}, +a4_:function a4_(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +a41:function a41(a){this.a=a}, +kp:function kp(){}, +pk:function pk(a,b){this.a=a +this.b=b}, +pj:function pj(a,b){this.a=a +this.b=b}, +wA:function wA(a,b){this.a=a +this.b=b}, +wB:function wB(a,b){this.a=a +this.b=b}, +hs:function hs(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var _=this +_.d=$ +_.e=a +_.f=b +_.r=c +_.w=d +_.x=e +_.y=!1 +_.z=null +_.Q=$ +_.as=f +_.at=null +_.ay=_.ax=!1 +_.ch=0 +_.CW=g +_.cx=h +_.bc$=i +_.f0$=j +_.qZ$=k +_.dG$=l +_.f1$=m +_.cW$=n +_.b_$=o +_.a=null +_.b=p +_.c=null}, +V3:function V3(a){this.a=a}, +UY:function UY(){}, +UZ:function UZ(){}, +V_:function V_(){}, +V0:function V0(){}, +V1:function V1(){}, +V2:function V2(){}, +UX:function UX(a){this.a=a}, +x4:function x4(a,b){this.a=a +this.b=b}, +Kz:function Kz(){}, +J9:function J9(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d +_.b=null}, +a8P:function a8P(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d +_.b=null}, +Ig:function Ig(a){var _=this +_.y=null +_.a=!1 +_.c=_.b=null +_.W$=0 +_.a_$=a +_.a0$=_.ad$=0 +_.a9$=!1}, +a2h:function a2h(){}, +a3m:function a3m(){}, +wC:function wC(){}, +wD:function wD(){}, +CQ:function CQ(){}, +cZ:function cZ(a,b,c,d){var _=this +_.d=a +_.b=b +_.a=c +_.$ti=d}, +wE:function wE(a,b,c){var _=this +_.d=_.c=_.b=_.a=_.ay=null +_.e=$ +_.f=a +_.r=null +_.w=b +_.z=_.y=null +_.Q=!1 +_.as=!0 +_.ax=_.at=!1 +_.$ti=c}, +er:function er(){}, +ME:function ME(){}, +Vh(a,b){return new A.is(a,b,A.kg(null),new A.bM(null,t.Cf))}, +aol(a){return a.ag(0)}, +is:function is(a,b,c,d){var _=this +_.a=a +_.b=!1 +_.c=b +_.d=c +_.e=null +_.f=d +_.r=!1}, +Vi:function Vi(a){this.a=a}, +iU:function iU(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +wF:function wF(a){var _=this +_.d=$ +_.e=null +_.r=_.f=$ +_.a=null +_.b=a +_.c=null}, +a3v:function a3v(){}, +tx:function tx(a,b,c){this.c=a +this.d=b +this.a=c}, +nU:function nU(a,b,c,d){var _=this +_.d=a +_.cW$=b +_.b_$=c +_.a=null +_.b=d +_.c=null}, +Vm:function Vm(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +Vl:function Vl(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +Vn:function Vn(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +Vk:function Vk(){}, +Vj:function Vj(){}, +xG:function xG(a,b,c,d){var _=this +_.e=a +_.f=b +_.c=c +_.a=d}, +LD:function LD(a,b,c){var _=this +_.p1=$ +_.p2=a +_.d=_.c=_.b=_.a=_.CW=_.ay=null +_.e=$ +_.f=b +_.r=null +_.w=c +_.z=_.y=null +_.Q=!1 +_.as=!0 +_.ax=_.at=!1}, +pr:function pr(){}, +a3Q:function a3Q(a){this.a=a}, +pv:function pv(a,b,c){var _=this +_.y=_.x=_.w=_.r=_.f=_.e=_.at=null +_.b5$=a +_.af$=b +_.a=c}, +x1:function x1(a,b,c,d,e,f,g,h){var _=this +_.J=null +_.al=a +_.ai=b +_.aE=c +_.aL=d +_.bk$=e +_.U$=f +_.bC$=g +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=h +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +Kv:function Kv(a,b,c,d){var _=this +_.f=a +_.r=b +_.b=c +_.a=d}, +Jq:function Jq(){}, +ya:function ya(){}, +MK:function MK(){}, +abo(a,b,c){return new A.rm(a,c,b,null)}, +adM(a,b,c){var s,r,q=null,p=t.a7,o=new A.av(0,0,p),n=new A.av(0,0,p),m=new A.w4(B.eB,o,n,b,a,$.b7()),l=A.d9(q,q,q,q,c) +l.aX() +s=l.bT$ +s.b=!0 +s.a.push(m.gur()) +m.b!==$&&A.dj() +m.b=l +r=A.eQ(B.iY,l,q) +r.a.Z(0,m.gdu()) +t.m.a(r) +p=p.h("aR") +m.r!==$&&A.dj() +m.r=new A.aR(r,o,p) +m.x!==$&&A.dj() +m.x=new A.aR(r,n,p) +p=c.qI(m.gX0()) +m.y!==$&&A.dj() +m.y=p +return m}, +ani(a,b,c){return new A.uW(a,c,b,null)}, +rm:function rm(a,b,c,d){var _=this +_.e=a +_.f=b +_.w=c +_.a=d}, +w5:function w5(a,b,c,d){var _=this +_.r=_.f=_.e=_.d=null +_.w=a +_.cW$=b +_.b_$=c +_.a=null +_.b=d +_.c=null}, +p7:function p7(a,b){this.a=a +this.b=b}, +w4:function w4(a,b,c,d,e,f){var _=this +_.a=a +_.b=$ +_.c=null +_.e=_.d=0 +_.f=b +_.r=$ +_.w=c +_.y=_.x=$ +_.z=null +_.as=_.Q=0.5 +_.at=0 +_.ax=d +_.ay=e +_.W$=0 +_.a_$=f +_.a0$=_.ad$=0 +_.a9$=!1}, +a2a:function a2a(a){this.a=a}, +Id:function Id(a,b,c,d){var _=this +_.b=a +_.c=b +_.d=c +_.a=d}, +Ll:function Ll(a,b){this.a=a +this.b=b}, +uW:function uW(a,b,c,d){var _=this +_.c=a +_.e=b +_.f=c +_.a=d}, +xC:function xC(a,b,c){var _=this +_.d=$ +_.f=_.e=null +_.r=0 +_.w=!0 +_.cW$=a +_.b_$=b +_.a=null +_.b=c +_.c=null}, +a4r:function a4r(a,b,c){this.a=a +this.b=b +this.c=c}, +pt:function pt(a,b){this.a=a +this.b=b}, +xB:function xB(a,b,c,d){var _=this +_.b=_.a=$ +_.c=a +_.d=b +_.e=0 +_.f=c +_.W$=0 +_.a_$=d +_.a0$=_.ad$=0 +_.a9$=!1}, +ty:function ty(a,b){this.a=a +this.d7$=b}, +wH:function wH(){}, +y7:function y7(){}, +yc:function yc(){}, +acb(a,b){var s=a.f +s.toString +return!(s instanceof A.nV)}, +acd(a){var s=a.HG(t.sV) +return s==null?null:s.d}, +xx:function xx(a){this.a=a}, +Vo:function Vo(){this.a=null}, +Vp:function Vp(a){this.a=a}, +nV:function nV(a,b,c){this.c=a +this.d=b +this.a=c}, +lz:function lz(){}, +Ur:function Ur(){}, +VM:function VM(){}, +Az:function Az(a,b){this.a=a +this.d=b}, +amb(a,b){var s,r=a.HG(t.qb) +if(r==null)return!1 +s=A.a8r(a).jn(a) +if(J.dq(r.w.a,s))return r.r===b +return!1}, +W7(a){var s=a.aj(t.qb) +return s==null?null:s.f}, +o0:function o0(a,b,c,d,e){var _=this +_.f=a +_.r=b +_.w=c +_.b=d +_.a=e}, +o9(a){var s=a.aj(t.jg) +return s==null?null:s.f}, +a_G(a,b){return new A.vn(a,b,null)}, +k3:function k3(a,b,c){this.c=a +this.d=b +this.a=c}, +KA:function KA(a,b,c,d,e,f){var _=this +_.bc$=a +_.f0$=b +_.qZ$=c +_.dG$=d +_.f1$=e +_.a=null +_.b=f +_.c=null}, +vn:function vn(a,b,c){this.f=a +this.b=b +this.a=c}, +ue:function ue(a,b,c){this.c=a +this.d=b +this.a=c}, +x3:function x3(a){var _=this +_.d=null +_.e=!1 +_.r=_.f=null +_.w=!1 +_.a=null +_.b=a +_.c=null}, +a3V:function a3V(a){this.a=a}, +a3U:function a3U(a,b){this.a=a +this.b=b}, +dd:function dd(){}, +hB:function hB(){}, +Xn:function Xn(a,b){this.a=a +this.b=b}, +a53:function a53(){}, +ML:function ML(){}, +bN:function bN(){}, +fS:function fS(){}, +x2:function x2(){}, +ub:function ub(a,b,c){var _=this +_.cy=a +_.y=null +_.a=!1 +_.c=_.b=null +_.W$=0 +_.a_$=b +_.a0$=_.ad$=0 +_.a9$=!1 +_.$ti=c}, +ua:function ua(a,b){var _=this +_.cy=a +_.y=null +_.a=!1 +_.c=_.b=null +_.W$=0 +_.a_$=b +_.a0$=_.ad$=0 +_.a9$=!1}, +a54:function a54(){}, +oa:function oa(a,b){this.a=a +this.b=b}, +Eo:function Eo(a,b,c,d,e,f,g){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.a=f +_.$ti=g}, +En:function En(a,b){this.a=a +this.b=b}, +ps:function ps(a,b,c,d,e,f,g,h){var _=this +_.e=_.d=null +_.f=a +_.r=$ +_.w=!1 +_.bc$=b +_.f0$=c +_.qZ$=d +_.dG$=e +_.f1$=f +_.a=null +_.b=g +_.c=null +_.$ti=h}, +a48:function a48(a){this.a=a}, +a49:function a49(a){this.a=a}, +a47:function a47(a){this.a=a}, +a45:function a45(a,b,c){this.a=a +this.b=b +this.c=c}, +a42:function a42(a){this.a=a}, +a43:function a43(a,b){this.a=a +this.b=b}, +a46:function a46(){}, +a44:function a44(){}, +KE:function KE(a,b,c,d,e,f,g){var _=this +_.f=a +_.r=b +_.w=c +_.x=d +_.y=e +_.b=f +_.a=g}, +Kx:function Kx(a){var _=this +_.y=null +_.a=!1 +_.c=_.b=null +_.W$=0 +_.a_$=a +_.a0$=_.ad$=0 +_.a9$=!1}, +py:function py(){}, +UC(a,b){var s=a.aj(t.BU),r=s==null?null:s.x +return b.h("jO<0>?").a(r)}, +nT:function nT(){}, +dE:function dE(){}, +a_B:function a_B(a,b,c){this.a=a +this.b=b +this.c=c}, +a_z:function a_z(a,b,c){this.a=a +this.b=b +this.c=c}, +a_A:function a_A(a,b,c){this.a=a +this.b=b +this.c=c}, +a_y:function a_y(a,b){this.a=a +this.b=b}, +Cd:function Cd(){}, +Hw:function Hw(a,b){this.e=a +this.a=b +this.b=null}, +wu:function wu(a,b,c,d,e,f){var _=this +_.f=a +_.r=b +_.w=c +_.x=d +_.b=e +_.a=f}, +pi:function pi(a,b,c){this.c=a +this.a=b +this.$ti=c}, +mp:function mp(a,b,c,d){var _=this +_.d=null +_.e=$ +_.f=a +_.r=b +_.a=null +_.b=c +_.c=null +_.$ti=d}, +a39:function a39(a){this.a=a}, +a3d:function a3d(a){this.a=a}, +a3e:function a3e(a){this.a=a}, +a3c:function a3c(a){this.a=a}, +a3a:function a3a(a){this.a=a}, +a3b:function a3b(a){this.a=a}, +jO:function jO(){}, +UD:function UD(a,b){this.a=a +this.b=b}, +UB:function UB(){}, +ph:function ph(){}, +acK(a,b,c){return new A.Et(c,a,b,null)}, +Et:function Et(a,b,c,d){var _=this +_.d=a +_.f=b +_.x=c +_.a=d}, +Ex:function Ex(){}, +jx:function jx(a){this.a=a}, +SD:function SD(a,b){this.b=a +this.a=b}, +Y0:function Y0(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i}, +Qx:function Qx(a,b){this.b=a +this.a=b}, +z2:function z2(a,b){this.b=$ +this.c=a +this.a=b}, +AT:function AT(a){this.c=this.b=$ +this.a=a}, +ui:function ui(a,b,c){this.a=a +this.b=b +this.$ti=c}, +XX:function XX(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +XW:function XW(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +a8r(a){var s=a.aj(t.Ei),r=s==null?null:s.f +return r==null?B.wO:r}, +yO:function yO(a,b){this.a=a +this.b=b}, +Ey:function Ey(){}, +XY:function XY(){}, +XZ:function XZ(){}, +Y_:function Y_(){}, +uj:function uj(a,b,c){this.f=a +this.b=b +this.a=c}, +a8s(){return new A.Ez(A.a([],t.iu),$.b7())}, +Ez:function Ez(a,b){var _=this +_.d=a +_.W$=0 +_.a_$=b +_.a0$=_.ad$=0 +_.a9$=!1}, +aeE(a,b){return b}, +YZ:function YZ(){}, +x5:function x5(a){this.a=a}, +Z_:function Z_(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.f=d +_.r=e}, +xk:function xk(a,b){this.c=a +this.a=b}, +xl:function xl(a,b){var _=this +_.f=_.e=_.d=null +_.r=!1 +_.hh$=a +_.a=null +_.b=b +_.c=null}, +a4h:function a4h(a,b){this.a=a +this.b=b}, +MP:function MP(){}, +iA:function iA(){}, +Bg:function Bg(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +HW:function HW(){}, +a8t(a,b,c,d,e){var s=new A.eC(c,e,d,a,0) +if(b!=null)s.d7$=b +return s}, +ar1(a){return a.d7$===0}, +dT:function dT(){}, +a_V:function a_V(){}, +dB:function dB(){}, +up:function up(a,b,c,d){var _=this +_.d=a +_.a=b +_.b=c +_.d7$=d}, +eC:function eC(a,b,c,d,e){var _=this +_.d=a +_.e=b +_.a=c +_.b=d +_.d7$=e}, +hv:function hv(a,b,c,d,e,f){var _=this +_.d=a +_.e=b +_.f=c +_.a=d +_.b=e +_.d7$=f}, +k4:function k4(a,b,c,d){var _=this +_.d=a +_.a=b +_.b=c +_.d7$=d}, +FZ:function FZ(a,b,c,d){var _=this +_.d=a +_.a=b +_.b=c +_.d7$=d}, +xd:function xd(){}, +xc:function xc(a,b,c){this.f=a +this.b=b +this.a=c}, +kn:function kn(a){var _=this +_.d=a +_.c=_.b=_.a=null}, +ul:function ul(a,b){this.c=a +this.a=b}, +um:function um(a,b){var _=this +_.d=a +_.a=null +_.b=b +_.c=null}, +Y1:function Y1(a){this.a=a}, +Y2:function Y2(a){this.a=a}, +Y3:function Y3(a){this.a=a}, +GT:function GT(a,b,c,d,e){var _=this +_.d=a +_.e=b +_.a=c +_.b=d +_.d7$=e}, +aiP(a,b,c){var s,r +if(a>0){s=a/c +if(b"))}, +a9d(a,b){var s=$.at.a1$.z.i(0,a).ga2() +s.toString +return t.x.a(s).ko(b)}, +ut:function ut(a,b){this.a=a +this.b=b}, +uu:function uu(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=null +_.f=e +_.r=f +_.w=g +_.x=h +_.y=i +_.z=j +_.Q=k +_.as=l +_.at=m +_.ax=n +_.ay=!1 +_.CW=_.ch=null +_.cy=_.cx=$ +_.dx=_.db=null +_.W$=0 +_.a_$=o +_.a0$=_.ad$=0 +_.a9$=!1}, +Yg:function Yg(){}, +o3:function o3(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.c=a +_.d=b +_.e=c +_.w=d +_.x=e +_.as=f +_.ch=g +_.CW=h +_.cx=i +_.cy=j +_.db=k +_.dx=l +_.a=m}, +hA:function hA(a,b,c,d,e){var _=this +_.w=_.r=_.f=_.e=_.d=null +_.y=_.x=$ +_.z=a +_.as=_.Q=!1 +_.at=$ +_.cW$=b +_.b_$=c +_.a=null +_.b=d +_.c=null +_.$ti=e}, +Wz:function Wz(a){this.a=a}, +Wv:function Wv(a){this.a=a}, +Ww:function Ww(a){this.a=a}, +Ws:function Ws(a){this.a=a}, +Wt:function Wt(a){this.a=a}, +Wu:function Wu(a){this.a=a}, +Wx:function Wx(a){this.a=a}, +Wy:function Wy(a){this.a=a}, +WA:function WA(a){this.a=a}, +WB:function WB(a){this.a=a}, +hV:function hV(a,b,c,d,e,f,g,h,i,j){var _=this +_.cu=a +_.k2=!1 +_.a9=_.a0=_.ad=_.a_=_.W=_.bL=_.bU=_.y2=_.y1=_.xr=_.x2=_.x1=_.to=_.ry=_.rx=_.RG=_.R8=_.p4=_.p3=_.p2=_.p1=_.ok=_.k4=_.k3=null +_.at=b +_.ay=c +_.ch=d +_.cx=_.CW=null +_.cy=!1 +_.db=null +_.f=e +_.r=f +_.a=g +_.b=null +_.c=h +_.d=i +_.e=j}, +hW:function hW(a,b,c,d,e,f,g,h,i,j){var _=this +_.fz=a +_.ai=_.al=_.J=_.ct=_.cb=_.cX=_.a9=_.a0=_.ad=_.a_=_.W=null +_.k3=_.k2=!1 +_.ok=_.k4=null +_.at=b +_.ay=c +_.ch=d +_.cx=_.CW=null +_.cy=!1 +_.db=null +_.f=e +_.r=f +_.a=g +_.b=null +_.c=h +_.d=i +_.e=j}, +po:function po(){}, +alz(a,b){var s,r=a.b,q=b.b,p=r-q +if(!(p<1e-10&&a.d-b.d>-1e-10))s=q-r<1e-10&&b.d-a.d>-1e-10 +else s=!0 +if(s)return 0 +if(Math.abs(p)>1e-10)return r>q?1:-1 +return a.d>b.d?1:-1}, +aly(a,b){var s=a.a,r=b.a,q=s-r +if(q<1e-10&&a.c-b.c>-1e-10)return-1 +if(r-s<1e-10&&b.c-a.c>-1e-10)return 1 +if(Math.abs(q)>1e-10)return s>r?1:-1 +return a.c>b.c?1:-1}, +nR:function nR(){}, +UR:function UR(a){this.a=a}, +US:function US(a,b){this.a=a +this.b=b}, +UT:function UT(a){this.a=a}, +J8:function J8(){}, +a8u(a){var s=a.aj(t.AP) +return s==null?null:s.f}, +acO(a,b){return new A.uB(b,a,null)}, +uz:function uz(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +KR:function KR(a,b,c,d){var _=this +_.d=a +_.lm$=b +_.k0$=c +_.a=null +_.b=d +_.c=null}, +uB:function uB(a,b,c){this.f=a +this.b=b +this.a=c}, +EI:function EI(){}, +MO:function MO(){}, +yb:function yb(){}, +uF:function uF(a,b){this.c=a +this.a=b}, +KY:function KY(a){var _=this +_.d=$ +_.a=null +_.b=a +_.c=null}, +KZ:function KZ(a,b,c){this.x=a +this.b=b +this.a=c}, +d2(a,b,c,d,e){return new A.af(a,c,e,b,d)}, +an1(a){var s=A.y(t.s6,t.l0) +a.P(0,new A.YO(s)) +return s}, +a8w(a,b,c){return new A.m2(null,c,a,b,null)}, +af:function af(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +mj:function mj(a,b){this.a=a +this.b=b}, +ol:function ol(a,b){var _=this +_.b=a +_.c=null +_.W$=0 +_.a_$=b +_.a0$=_.ad$=0 +_.a9$=!1}, +YO:function YO(a){this.a=a}, +YN:function YN(){}, +m2:function m2(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +xo:function xo(a){var _=this +_.a=_.d=null +_.b=a +_.c=null}, +ET:function ET(a,b){var _=this +_.c=a +_.W$=0 +_.a_$=b +_.a0$=_.ad$=0 +_.a9$=!1}, +uG:function uG(a,b){this.c=a +this.a=b}, +xn:function xn(a,b,c){var _=this +_.d=a +_.e=b +_.a=null +_.b=c +_.c=null}, +L1:function L1(a,b,c){this.f=a +this.b=b +this.a=c}, +L_:function L_(){}, +L0:function L0(){}, +L2:function L2(){}, +L4:function L4(){}, +L5:function L5(){}, +Mq:function Mq(){}, +ad7(a,b){return new A.op(b,A.a8z(t.S,t.fa),a,B.Y)}, +an8(a,b,c,d,e){if(b===e-1)return d +return d+(d-c)/(b-a+1)*(e-b-1)}, +al3(a,b){return new A.rJ(b,a,null)}, +F5:function F5(){}, +oq:function oq(){}, +F3:function F3(a,b){this.d=a +this.a=b}, +op:function op(a,b,c,d){var _=this +_.p1=a +_.p2=b +_.p4=_.p3=null +_.R8=!1 +_.d=_.c=_.b=_.a=_.CW=_.ay=null +_.e=$ +_.f=c +_.r=null +_.w=d +_.z=_.y=null +_.Q=!1 +_.as=!0 +_.ax=_.at=!1}, +Z3:function Z3(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +Z1:function Z1(){}, +Z2:function Z2(a,b){this.a=a +this.b=b}, +Z0:function Z0(a,b,c){this.a=a +this.b=b +this.c=c}, +Z4:function Z4(a,b){this.a=a +this.b=b}, +rJ:function rJ(a,b,c){this.f=a +this.b=b +this.a=c}, +ad8(a,b,c,d,e){return new A.F8(c,d,!0,e,b,null)}, +F6:function F6(a,b){this.a=a +this.b=b}, +uR:function uR(a){var _=this +_.a=!1 +_.W$=0 +_.a_$=a +_.a0$=_.ad$=0 +_.a9$=!1}, +F8:function F8(a,b,c,d,e,f){var _=this +_.e=a +_.f=b +_.r=c +_.w=d +_.c=e +_.a=f}, +pq:function pq(a,b,c,d,e,f,g){var _=this +_.A=a +_.a6=b +_.au=c +_.bG=d +_.dI=e +_.hk=_.cY=null +_.fA=!1 +_.i3=null +_.F$=f +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=g +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +F7:function F7(){}, +Ho:function Ho(){}, +Fr:function Fr(a,b){this.c=a +this.a=b}, +Ef:function Ef(a,b,c,d,e,f){var _=this +_.cI=a +_.es=b +_.cA=c +_.A=d +_.F$=e +_.k1=_.id=null +_.k2=!1 +_.k4=_.k3=null +_.ok=0 +_.d=!1 +_.f=_.e=null +_.w=_.r=!1 +_.x=null +_.y=!1 +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=f +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null +_.a=0 +_.c=_.b=null}, +qG(a,b,c,d,e,f,g,h){return new A.n7(e,f,d,c,b,h,g,a,null)}, +n7:function n7(a,b,c,d,e,f,g,h,i){var _=this +_.w=a +_.x=b +_.y=c +_.z=d +_.Q=e +_.as=f +_.at=g +_.b=h +_.a=i}, +Jk:function Jk(a){this.a=a}, +v1:function v1(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.r=d +_.a=e}, +AL:function AL(){}, +AH:function AH(){}, +qH:function qH(){}, +qJ:function qJ(){}, +qI:function qI(){}, +AF:function AF(){}, +l2:function l2(){}, +l4:function l4(){}, +rd:function rd(){}, +r7:function r7(){}, +r8:function r8(){}, +fh:function fh(){}, +l5:function l5(){}, +l6:function l6(){}, +rb:function rb(){}, +rc:function rc(){}, +l3:function l3(){}, +uq:function uq(){}, +EG:function EG(){}, +qw:function qw(){}, +Dl:function Dl(){}, +DL:function DL(){}, +FS:function FS(){}, +FP:function FP(){}, +adl(a){var s=a.aj(t.rJ),r=s==null?null:s.f +return r!==!1}, +adk(a){var s=a.tk(t.rJ),r=s==null?null:s.r +return r==null?A.kg(!0):r}, +oF:function oF(a,b,c){this.c=a +this.d=b +this.a=c}, +LF:function LF(a,b){var _=this +_.d=!0 +_.e=a +_.a=null +_.b=b +_.c=null}, +vX:function vX(a,b,c,d){var _=this +_.f=a +_.r=b +_.b=c +_.a=d}, +m3:function m3(){}, +dR:function dR(){}, +Ml:function Ml(a,b,c){var _=this +_.w=a +_.a=null +_.b=!1 +_.c=null +_.d=b +_.e=null +_.f=c +_.r=$}, +FH:function FH(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +ad6(a,b,c,d){return new A.F0(c,d,a,b,null)}, +acL(a,b){return new A.Ew(a,b,null)}, +acG(a,b){return new A.Em(a,b,null)}, +abe(a,b){return new A.Bb(b,a,null)}, +mF(a,b,c){return new A.yP(b,c,a,null)}, +pR:function pR(){}, +vv:function vv(a){this.a=null +this.b=a +this.c=null}, +a0f:function a0f(){}, +F0:function F0(a,b,c,d,e){var _=this +_.e=a +_.f=b +_.r=c +_.c=d +_.a=e}, +Ew:function Ew(a,b,c){this.r=a +this.c=b +this.a=c}, +Em:function Em(a,b,c){this.r=a +this.c=b +this.a=c}, +Bb:function Bb(a,b,c){this.e=a +this.c=b +this.a=c}, +At:function At(a,b,c,d){var _=this +_.e=a +_.r=b +_.c=c +_.a=d}, +rU:function rU(){}, +yP:function yP(a,b,c,d){var _=this +_.e=a +_.f=b +_.c=c +_.a=d}, +adB(a){var s=A.ali(a,t.sl) +return s==null?null:s.f}, +G1:function G1(a,b,c){this.c=a +this.d=b +this.a=c}, +xR:function xR(a,b,c){this.f=a +this.b=b +this.a=c}, +adC(a,b){var s +switch(b.a){case 0:s=a.aj(t.I) +s.toString +return A.a9M(s.w) +case 1:return B.t +case 2:s=a.aj(t.I) +s.toString +return A.a9M(s.w) +case 3:return B.t}}, +vo:function vo(a,b,c,d,e,f,g,h){var _=this +_.e=a +_.r=b +_.w=c +_.x=d +_.y=e +_.Q=f +_.c=g +_.a=h}, +Mh:function Mh(a,b,c){var _=this +_.a9=!1 +_.cX=null +_.p1=$ +_.p2=a +_.d=_.c=_.b=_.a=_.CW=_.ay=null +_.e=$ +_.f=b +_.r=null +_.w=c +_.z=_.y=null +_.Q=!1 +_.as=!0 +_.ax=_.at=!1}, +Na:function Na(){}, +Nb:function Nb(){}, +Cp(a){var s=new A.aS(new Float64Array(16)) +if(s.fp(a)===0)return null +return s}, +alo(){return new A.aS(new Float64Array(16))}, +alp(){var s=new A.aS(new Float64Array(16)) +s.cP() +return s}, +Co(a,b,c){var s=new A.aS(new Float64Array(16)) +s.cP() +s.fS(a,b,c) +return s}, +t5(a,b,c){var s=new Float64Array(16) +s[15]=1 +s[10]=c +s[5]=b +s[0]=a +return new A.aS(s)}, +acv(){var s=new Float64Array(4) +s[3]=1 +return new A.jZ(s)}, +lr:function lr(a){this.a=a}, +aS:function aS(a){this.a=a}, +jZ:function jZ(a){this.a=a}, +cS:function cS(a){this.a=a}, +hN:function hN(a){this.a=a}, +a6C(){var s=0,r=A.Y(t.H) +var $async$a6C=A.Z(function(a,b){if(a===1)return A.V(b,r) +while(true)switch(s){case 0:s=2 +return A.a1(A.a6V(new A.a6D(),new A.a6E()),$async$a6C) +case 2:return A.W(null,r)}}) +return A.X($async$a6C,r)}, +a6E:function a6E(){}, +a6D:function a6D(){}, +afD(a){return Math.log(a)}, +ajr(a){a.aj(t.gq) +return null}, +afR(a){if(typeof dartPrint=="function"){dartPrint(a) +return}if(typeof console=="object"&&typeof console.log!="undefined"){console.log(a) +return}if(typeof print=="function"){print(a) +return}throw"Unable to print message: "+String(a)}, +aet(a){var s,r,q +if(a==null)return a +if(typeof a=="string"||typeof a=="number"||A.pB(a))return a +if(A.arG(a))return A.f5(a) +s=Array.isArray(a) +s.toString +if(s){r=[] +q=0 +while(!0){s=a.length +s.toString +if(!(q>>6)+(a&63),r=s&1,q=B.d.a8(u.I,s>>>1) +return q>>>4&-r|q&15&r-1}, +kF(a,b){var s=(a&1023)<<10|b&1023,r=B.d.a8(u.N,1024+(s>>>9))+(s&511),q=r&1,p=B.d.a8(u.I,r>>>1) +return p>>>4&-q|p&15&q-1}, +a68(a,b,c,d,e){return A.aqJ(a,b,c,d,e,e)}, +aqJ(a,b,c,d,e,f){var s=0,r=A.Y(f),q +var $async$a68=A.Z(function(g,h){if(g===1)return A.V(h,r) +while(true)switch(s){case 0:s=3 +return A.a1(null,$async$a68) +case 3:q=a.$1(b) +s=1 +break +case 1:return A.W(q,r)}}) +return A.X($async$a68,r)}, +a9L(a,b){var s,r,q +if(a==null)return b==null +if(b==null||a.a!==b.a)return!1 +if(a===b)return!0 +for(s=A.dV(a,a.r),r=A.m(s).c;s.t();){q=s.d +if(!b.q(0,q==null?r.a(q):q))return!1}return!0}, +dh(a,b){var s +if(a==null)return b==null +if(b==null||a.length!==b.length)return!1 +if(a===b)return!0 +for(s=0;sc)return c +if(isNaN(a))return c +return a}, +afk(a,b){var s=t.s,r=A.a(a.split("\n"),s) +$.NK().I(0,r) +if(!$.a97)A.aev()}, +aev(){var s,r=$.a97=!1,q=$.aa1() +if(A.c4(q.gHr(),0).a>1e6){if(q.b==null)q.b=$.DD.$0() +q.fd(0) +$.Nk=0}while(!0){if($.Nk<12288){q=$.NK() +q=!q.gS(q)}else q=r +if(!q)break +s=$.NK().oz() +$.Nk=$.Nk+s.length +A.afR(s)}r=$.NK() +if(!r.gS(r)){$.a97=!0 +$.Nk=0 +A.c8(B.cl,A.arX()) +if($.a5l==null)$.a5l=new A.bp(new A.ai($.ab,t.U),t.hb)}else{$.aa1().mh(0) +r=$.a5l +if(r!=null)r.hT(0) +$.a5l=null}}, +Ro(a){var s=0,r=A.Y(t.H),q +var $async$Ro=A.Z(function(b,c){if(b===1)return A.V(c,r) +while(true)$async$outer:switch(s){case 0:a.ga2().tz(B.Hp) +switch(A.al(a).r.a){case 0:case 1:q=A.Fp(B.Hk) +s=1 +break $async$outer +case 2:case 3:case 4:case 5:q=A.cJ(null,t.H) +s=1 +break $async$outer}case 1:return A.W(q,r)}}) +return A.X($async$Ro,r)}, +aky(a){a.ga2().tz(B.Dc) +switch(A.al(a).r.a){case 0:case 1:return A.Ss() +case 2:case 3:case 4:case 5:return A.cJ(null,t.H)}}, +arU(a,b,c,d,e){var s,r,q,p,o,n,m=d.b,l=m+e,k=a.b,j=c.b-10,i=l+k<=j +k=m-e-k +s=k>=10 +if(b)r=i||!s +else r=!(s||!i) +q=r?Math.min(l,j):Math.max(k,10) +m=c.a +l=a.a +if(m-20m-n?k-l:o-j}return new A.q(p,q)}, +akR(a,b,c){return a}, +a88(a){var s=a.a +if(s[0]===1&&s[1]===0&&s[2]===0&&s[3]===0&&s[4]===0&&s[5]===1&&s[6]===0&&s[7]===0&&s[8]===0&&s[9]===0&&s[10]===1&&s[11]===0&&s[14]===0&&s[15]===1)return new A.q(s[12],s[13]) +return null}, +a89(a,b){var s,r,q +if(a==b)return!0 +if(a==null){b.toString +return A.Cq(b)}if(b==null)return A.Cq(a) +s=a.a +r=s[0] +q=b.a +return r===q[0]&&s[1]===q[1]&&s[2]===q[2]&&s[3]===q[3]&&s[4]===q[4]&&s[5]===q[5]&&s[6]===q[6]&&s[7]===q[7]&&s[8]===q[8]&&s[9]===q[9]&&s[10]===q[10]&&s[11]===q[11]&&s[12]===q[12]&&s[13]===q[13]&&s[14]===q[14]&&s[15]===q[15]}, +Cq(a){var s=a.a +return s[0]===1&&s[1]===0&&s[2]===0&&s[3]===0&&s[4]===0&&s[5]===1&&s[6]===0&&s[7]===0&&s[8]===0&&s[9]===0&&s[10]===1&&s[11]===0&&s[12]===0&&s[13]===0&&s[14]===0&&s[15]===1}, +cf(a,b){var s=a.a,r=b.a,q=b.b,p=s[0]*r+s[4]*q+s[12],o=s[1]*r+s[5]*q+s[13],n=s[3]*r+s[7]*q+s[15] +if(n===1)return new A.q(p,o) +else return new A.q(p/n,o/n)}, +Uq(a,b,c,d,e){var s,r=e?1:1/(a[3]*b+a[7]*c+a[15]),q=(a[0]*b+a[4]*c+a[12])*r,p=(a[1]*b+a[5]*c+a[13])*r +if(d){s=$.a71() +s[2]=q +s[0]=q +s[3]=p +s[1]=p}else{s=$.a71() +if(qs[2])s[2]=q +if(p>s[3])s[3]=p}}, +es(b1,b2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4=b1.a,a5=b2.a,a6=b2.b,a7=b2.c,a8=a7-a5,a9=b2.d,b0=a9-a6 +if(!isFinite(a8)||!isFinite(b0)){s=a4[3]===0&&a4[7]===0&&a4[15]===1 +A.Uq(a4,a5,a6,!0,s) +A.Uq(a4,a7,a6,!1,s) +A.Uq(a4,a5,a9,!1,s) +A.Uq(a4,a7,a9,!1,s) +a7=$.a71() +return new A.C(a7[0],a7[1],a7[2],a7[3])}a7=a4[0] +r=a7*a8 +a9=a4[4] +q=a9*b0 +p=a7*a5+a9*a6+a4[12] +a9=a4[1] +o=a9*a8 +a7=a4[5] +n=a7*b0 +m=a9*a5+a7*a6+a4[13] +a7=a4[3] +if(a7===0&&a4[7]===0&&a4[15]===1){l=p+r +if(r<0)k=p +else{k=l +l=p}if(q<0)l+=q +else k+=q +j=m+o +if(o<0)i=m +else{i=j +j=m}if(n<0)j+=n +else i+=n +return new A.C(l,j,k,i)}else{a9=a4[7] +h=a9*b0 +g=a7*a5+a9*a6+a4[15] +f=p/g +e=m/g +a9=p+r +a7=g+a7*a8 +d=a9/a7 +c=m+o +b=c/a7 +a=g+h +a0=(p+q)/a +a1=(m+n)/a +a7+=h +a2=(a9+q)/a7 +a3=(c+n)/a7 +return new A.C(A.abZ(f,d,a0,a2),A.abZ(e,b,a1,a3),A.abY(f,d,a0,a2),A.abY(e,b,a1,a3))}}, +abZ(a,b,c,d){var s=ab?a:b,r=c>d?c:d +return s>r?s:r}, +ac0(a,b){var s +if(A.Cq(a))return b +s=new A.aS(new Float64Array(16)) +s.az(a) +s.fp(s) +return A.es(s,b)}, +ac_(a){var s,r=new A.aS(new Float64Array(16)) +r.cP() +s=new A.hN(new Float64Array(4)) +s.tG(0,0,0,a.a) +r.tF(0,s) +s=new A.hN(new Float64Array(4)) +s.tG(0,0,0,a.b) +r.tF(1,s) +return r}, +yy(a,b,c){if(a==null||!1)return a===b +return a>b-c&&a4294967295)throw A.d(A.bE(a,0,4294967295,"length",null)) +return J.nz(new Array(a),b)}, +rD(a,b){if(a<0)throw A.d(A.cy("Length must be a non-negative integer: "+a,null)) +return A.a(new Array(a),b.h("v<0>"))}, +abG(a,b){if(a<0)throw A.d(A.cy("Length must be a non-negative integer: "+a,null)) +return A.a(new Array(a),b.h("v<0>"))}, +nz(a,b){return J.Ts(A.a(a,b.h("v<0>")))}, +Ts(a){a.fixed$length=Array +return a}, +abH(a){a.fixed$length=Array +a.immutable$list=Array +return a}, +al2(a,b){return J.NP(a,b)}, +abI(a){if(a<256)switch(a){case 9:case 10:case 11:case 12:case 13:case 32:case 133:case 160:return!0 +default:return!1}switch(a){case 5760:case 8192:case 8193:case 8194:case 8195:case 8196:case 8197:case 8198:case 8199:case 8200:case 8201:case 8202:case 8232:case 8233:case 8239:case 8287:case 12288:case 65279:return!0 +default:return!1}}, +a8_(a,b){var s,r +for(s=a.length;b0;b=s){s=b-1 +r=B.d.ah(a,s) +if(r!==32&&r!==13&&!J.abI(r))break}return b}, +i0(a){if(typeof a=="number"){if(Math.floor(a)==a)return J.nA.prototype +return J.rH.prototype}if(typeof a=="string")return J.io.prototype +if(a==null)return J.rG.prototype +if(typeof a=="boolean")return J.rE.prototype +if(a.constructor==Array)return J.v.prototype +if(typeof a!="object"){if(typeof a=="function")return J.hm.prototype +return a}if(a instanceof A.E)return a +return J.Nu(a)}, +aro(a){if(typeof a=="number")return J.jC.prototype +if(typeof a=="string")return J.io.prototype +if(a==null)return a +if(a.constructor==Array)return J.v.prototype +if(typeof a!="object"){if(typeof a=="function")return J.hm.prototype +return a}if(a instanceof A.E)return a +return J.Nu(a)}, +aC(a){if(typeof a=="string")return J.io.prototype +if(a==null)return a +if(a.constructor==Array)return J.v.prototype +if(typeof a!="object"){if(typeof a=="function")return J.hm.prototype +return a}if(a instanceof A.E)return a +return J.Nu(a)}, +bx(a){if(a==null)return a +if(a.constructor==Array)return J.v.prototype +if(typeof a!="object"){if(typeof a=="function")return J.hm.prototype +return a}if(a instanceof A.E)return a +return J.Nu(a)}, +arp(a){if(typeof a=="number"){if(Math.floor(a)==a)return J.nA.prototype +return J.rH.prototype}if(a==null)return a +if(!(a instanceof A.E))return J.hM.prototype +return a}, +afy(a){if(typeof a=="number")return J.jC.prototype +if(a==null)return a +if(!(a instanceof A.E))return J.hM.prototype +return a}, +afz(a){if(typeof a=="number")return J.jC.prototype +if(typeof a=="string")return J.io.prototype +if(a==null)return a +if(!(a instanceof A.E))return J.hM.prototype +return a}, +a9v(a){if(typeof a=="string")return J.io.prototype +if(a==null)return a +if(!(a instanceof A.E))return J.hM.prototype +return a}, +dp(a){if(a==null)return a +if(typeof a!="object"){if(typeof a=="function")return J.hm.prototype +return a}if(a instanceof A.E)return a +return J.Nu(a)}, +eg(a){if(a==null)return a +if(!(a instanceof A.E))return J.hM.prototype +return a}, +ai1(a,b){if(typeof a=="number"&&typeof b=="number")return a+b +return J.aro(a).T(a,b)}, +e(a,b){if(a==null)return b==null +if(typeof a!="object")return b!=null&&a===b +return J.i0(a).k(a,b)}, +ai2(a,b){if(typeof a=="number"&&typeof b=="number")return a*b +return J.afz(a).R(a,b)}, +ai3(a,b){if(typeof a=="number"&&typeof b=="number")return a-b +return J.afy(a).a4(a,b)}, +bc(a,b){if(typeof b==="number")if(a.constructor==Array||typeof a=="string"||A.afC(a,a[v.dispatchPropertyName]))if(b>>>0===b&&b>>0===b&&b0?1:a<0?-1:a +return J.arp(a).gAj(a)}, +aaj(a){return J.dp(a).geh(a)}, +aid(a){return J.eg(a).gAr(a)}, +j9(a){return J.eg(a).gn(a)}, +aie(a){return J.dp(a).gaJ(a)}, +aif(a,b,c){return J.bx(a).oO(a,b,c)}, +a7e(a,b){return J.eg(a).bs(a,b)}, +aig(a){return J.eg(a).o6(a)}, +aak(a){return J.bx(a).yh(a)}, +aih(a,b){return J.bx(a).bf(a,b)}, +aii(a,b){return J.eg(a).a1b(a,b)}, +yI(a,b,c){return J.bx(a).fG(a,b,c)}, +aij(a,b,c,d){return J.bx(a).of(a,b,c,d)}, +aik(a,b){return J.i0(a).E(a,b)}, +ail(a,b,c,d,e){return J.eg(a).hy(a,b,c,d,e)}, +yJ(a,b,c){return J.dp(a).bq(a,b,c)}, +aim(a){return J.bx(a).ig(a)}, +ja(a,b){return J.bx(a).v(a,b)}, +ain(a){return J.bx(a).dN(a)}, +aio(a,b){return J.dp(a).H(a,b)}, +aal(a,b){return J.eg(a).aO(a,b)}, +aip(a,b){return J.aC(a).sp(a,b)}, +aiq(a,b,c,d,e){return J.bx(a).be(a,b,c,d,e)}, +a7f(a,b){return J.bx(a).fU(a,b)}, +air(a,b){return J.bx(a).ei(a,b)}, +ais(a,b){return J.a9v(a).p_(a,b)}, +ait(a){return J.eg(a).As(a)}, +aiu(a,b){return J.bx(a).zl(a,b)}, +aiv(a){return J.afy(a).K(a)}, +a7g(a){return J.bx(a).cK(a)}, +aiw(a){return J.bx(a).hB(a)}, +dr(a){return J.i0(a).j(a)}, +aix(a){return J.a9v(a).a2N(a)}, +aiy(a,b){return J.eg(a).Kq(a,b)}, +aam(a,b){return J.bx(a).hD(a,b)}, +aan(a,b){return J.bx(a).zN(a,b)}, +nx:function nx(){}, +rE:function rE(){}, +rG:function rG(){}, +b:function b(){}, +jG:function jG(){}, +Dv:function Dv(){}, +hM:function hM(){}, +hm:function hm(){}, +v:function v(a){this.$ti=a}, +Ty:function Ty(a){this.$ti=a}, +h1:function h1(a,b){var _=this +_.a=a +_.b=b +_.c=0 +_.d=null}, +jC:function jC(){}, +nA:function nA(){}, +rH:function rH(){}, +io:function io(){}},B={} +var w=[A,J,B] +var $={} +A.pJ.prototype={ +sx7(a){var s,r,q,p=this +if(J.e(a,p.c))return +if(a==null){p.uo() +p.c=null +return}s=p.a.$0() +r=a.a +q=s.a +if(rr){p.uo() +p.b=A.c8(A.c4(0,r-q),p.gwk())}p.c=a}, +uo(){var s=this.b +if(s!=null)s.aT(0) +this.b=null}, +X3(){var s=this,r=s.a.$0(),q=s.c,p=r.a +q=q.a +if(p>=q){s.b=null +q=s.d +if(q!=null)q.$0()}else s.b=A.c8(A.c4(0,q-p),s.gwk())}} +A.O3.prototype={ +l_(){var s=0,r=A.Y(t.H),q=this +var $async$l_=A.Z(function(a,b){if(a===1)return A.V(b,r) +while(true)switch(s){case 0:s=2 +return A.a1(q.a.$0(),$async$l_) +case 2:s=3 +return A.a1(q.b.$0(),$async$l_) +case 3:return A.W(null,r)}}) +return A.X($async$l_,r)}, +a1T(){var s=A.aN(new A.O8(this)) +return t.e.a({initializeEngine:A.aN(new A.O9(this)),autoStart:s})}, +VB(){return t.e.a({runApp:A.aN(new A.O5(this))})}} +A.O8.prototype={ +$0(){return A.afx(new A.O7(this.a).$0(),t.e)}, +$S:69} +A.O7.prototype={ +$0(){var s=0,r=A.Y(t.e),q,p=this +var $async$$0=A.Z(function(a,b){if(a===1)return A.V(b,r) +while(true)switch(s){case 0:s=3 +return A.a1(p.a.l_(),$async$$0) +case 3:q=t.e.a({}) +s=1 +break +case 1:return A.W(q,r)}}) +return A.X($async$$0,r)}, +$S:77} +A.O9.prototype={ +$1(a){return A.afx(new A.O6(this.a,a).$0(),t.e)}, +$0(){return this.$1(null)}, +$C:"$1", +$R:0, +$D(){return[null]}, +$S:130} +A.O6.prototype={ +$0(){var s=0,r=A.Y(t.e),q,p=this,o +var $async$$0=A.Z(function(a,b){if(a===1)return A.V(b,r) +while(true)switch(s){case 0:o=p.a +s=3 +return A.a1(o.a.$1(p.b),$async$$0) +case 3:q=o.VB() +s=1 +break +case 1:return A.W(q,r)}}) +return A.X($async$$0,r)}, +$S:77} +A.O5.prototype={ +$1(a){return A.acu(A.aN(new A.O4(this.a)))}, +$0(){return this.$1(null)}, +$C:"$1", +$R:0, +$D(){return[null]}, +$S:130} +A.O4.prototype={ +$2(a,b){return this.Kz(a,b)}, +Kz(a,b){var s=0,r=A.Y(t.H),q=this +var $async$$2=A.Z(function(c,d){if(c===1)return A.V(d,r) +while(true)switch(s){case 0:s=2 +return A.a1(q.a.b.$0(),$async$$2) +case 2:A.act(a,t.e.a({})) +return A.W(null,r)}}) +return A.X($async$$2,r)}, +$S:217} +A.Oe.prototype={ +m1(a){var s,r,q +if(A.a_J(a).gIa())return A.Mg(B.fF,a,B.N,!1) +s=this.b +if(s==null){s=self.window.document.querySelector("meta[name=assetBase]") +r=s==null?null:s.content +s=r==null +if(!s)self.window.console.warn("The `assetBase` meta tag is now deprecated.\nUse engineInitializer.initializeEngine(config) instead.\nSee: https://docs.flutter.dev/development/platform-integration/web/initialization") +q=this.b=s?"":r +s=q}return A.Mg(B.fF,s+"assets/"+a,B.N,!1)}} +A.qb.prototype={ +D(){return"BrowserEngine."+this.b}} +A.hu.prototype={ +D(){return"OperatingSystem."+this.b}} +A.OS.prototype={ +gaF(a){var s=this.d +if(s==null){this.uO() +s=this.d}s.toString +return s}, +gbB(){if(this.y==null)this.uO() +var s=this.e +s.toString +return s}, +uO(){var s,r,q,p,o,n,m,l,k=this,j=!1,i=null,h=k.y +if(h!=null){A.n9(h,0) +h=k.y +h.toString +A.n8(h,0) +k.y=null}h=k.x +if(h!=null&&h.length!==0){h.toString +s=B.b.fc(h,0) +k.y=s +i=s +j=!0 +r=!0}else{h=k.f +q=self.window.devicePixelRatio +if(q===0)q=1 +p=k.r +o=self.window.devicePixelRatio +if(o===0)o=1 +i=k.Bn(h,p) +n=i +k.y=n +if(n==null){A.afU() +i=k.Bn(h,p)}n=i.style +A.n(n,"position","absolute") +A.n(n,"width",A.h(h/q)+"px") +A.n(n,"height",A.h(p/o)+"px") +r=!1}if(!J.e(k.z.lastChild,i))k.z.append(i) +try{if(j)i.style.removeProperty("z-index") +h=A.ff(i,"2d",null) +h.toString +k.d=t.e.a(h)}catch(m){}h=k.d +if(h==null){A.afU() +h=A.ff(i,"2d",null) +h.toString +h=k.d=t.e.a(h)}q=k.as +k.e=new A.Py(h,k,q,B.eS,B.d8,B.d9) +l=k.gaF(k) +l.save();++k.Q +A.x(l,"setTransform",[1,0,0,1,0,0]) +if(r)l.clearRect(0,0,k.f*q,k.r*q) +h=self.window.devicePixelRatio +if(h===0)h=1 +p=self.window.devicePixelRatio +if(p===0)p=1 +l.scale(h*q,p*q) +k.VY()}, +Bn(a,b){var s=this.as +return A.asi(B.c.cr(a*s),B.c.cr(b*s))}, +L(a){var s,r,q,p,o,n=this +n.Ow(0) +if(n.y!=null){s=n.d +if(s!=null)try{s.font=""}catch(q){r=A.ah(q) +if(!J.e(r.name,"NS_ERROR_FAILURE"))throw q}}if(n.y!=null){n.w3() +n.e.fd(0) +p=n.w +if(p==null)p=n.w=A.a([],t.J) +o=n.y +o.toString +p.push(o) +n.e=n.d=null}n.x=n.w +n.e=n.d=n.y=n.w=null}, +E5(a,b,c,d){var s,r,q,p,o,n,m,l,k,j,i=this,h=i.gaF(i) +if(d!=null)for(s=d.length,r=i.as,q=t.q;a>>16&255,r>>>8&255,r&255))) +s.translate(-5e4,0) +n=new Float32Array(2) +r=$.bC().x +if(r==null){r=self.window.devicePixelRatio +if(r===0)r=1}n[0]=5e4*r +r=k.b +r.c.Kf(n) +m=n[0] +l=n[1] +n[1]=0 +n[0]=0 +r.c.Kf(n) +A.a7I(s,m-n[0]) +A.a7J(s,l-n[1])}}, +ij(){var s=this,r=s.z +if((r==null?null:r.x)!=null){r=$.by() +r=r===B.B||!1}else r=!1 +if(r)s.a.restore() +r=s.Q +if(r!=null){s.a.translate(-r.a,-r.b) +s.Q=null}}, +f8(a){var s=this.a +if(a===B.R)s.stroke() +else A.Qi(s,null)}, +fd(a){var s,r=this,q=r.a +A.Qj(q,"") +s=q.fillStyle +r.r=s==null?null:s +A.Qk(q,"") +s=q.strokeStyle +r.w=s==null?null:s +q.shadowBlur=0 +A.a7H(q,"none") +A.a7I(q,0) +A.a7J(q,0) +q.globalCompositeOperation="source-over" +r.d=B.eS +A.aaY(q,1) +r.x=1 +q.lineCap="butt" +r.e=B.d8 +q.lineJoin="miter" +r.f=B.d9 +r.Q=null}} +A.KH.prototype={ +L(a){B.b.L(this.a) +this.b=null +this.c=A.cY()}, +bm(a){var s=this.c,r=new A.bk(new Float32Array(16)) +r.az(s) +s=this.b +s=s==null?null:A.nH(s,!0,t.yv) +this.a.push(new A.Eu(r,s))}, +b6(a){var s,r=this.a +if(r.length===0)return +s=r.pop() +this.c=s.a +this.b=s.b}, +ae(a,b,c){this.c.ae(0,b,c)}, +cd(a,b,c){this.c.cd(0,b,c)}, +fe(a,b){this.c.K1(0,$.agX(),b)}, +V(a,b){this.c.cC(0,new A.bk(b))}, +jM(a){var s,r,q=this.b +if(q==null)q=this.b=A.a([],t.xK) +s=this.c +r=new A.bk(new Float32Array(16)) +r.az(s) +q.push(new A.lR(a,null,null,r))}, +jL(a){var s,r,q=this.b +if(q==null)q=this.b=A.a([],t.xK) +s=this.c +r=new A.bk(new Float32Array(16)) +r.az(s) +q.push(new A.lR(null,a,null,r))}, +eW(a,b){var s,r,q=this.b +if(q==null)q=this.b=A.a([],t.xK) +s=this.c +r=new A.bk(new Float32Array(16)) +r.az(s) +q.push(new A.lR(null,null,b,r))}} +A.dt.prototype={ +nl(a,b){this.a.clear(A.a5R($.NL(),b))}, +l3(a,b,c){this.a.clipPath(b.gaa(),$.NJ(),c)}, +l4(a,b){this.a.clipRRect(A.kJ(a),$.NJ(),b)}, +l5(a,b,c){this.a.clipRect(A.d7(a),$.aa8()[b.a],c)}, +e6(a,b,c){this.a.drawCircle(a.a,a.b,b,c.gaa())}, +hb(a,b,c){this.a.drawDRRect(A.kJ(a),A.kJ(b),c.gaa())}, +hc(a,b,c,d){var s,r,q,p,o=d.at,n=this.a,m=a.b +if(o===B.fo){m===$&&A.c() +m=m.a +m===$&&A.c() +m=m.a +m.toString +A.x(n,"drawImageRectCubic",[m,A.d7(b),A.d7(c),0.3333333333333333,0.3333333333333333,d.gaa()])}else{m===$&&A.c() +m=m.a +m===$&&A.c() +m=m.a +m.toString +s=A.d7(b) +r=A.d7(c) +q=o===B.bK?$.b3.aw().FilterMode.Nearest:$.b3.aw().FilterMode.Linear +p=o===B.fn?$.b3.aw().MipmapMode.Linear:$.b3.aw().MipmapMode.None +A.x(n,"drawImageRectOptions",[m,s,r,q,p,d.gaa()])}}, +hX(a,b,c){A.x(this.a,"drawLine",[a.a,a.b,b.a,b.b,c.gaa()])}, +hY(a,b){this.a.drawOval(A.d7(a),b.gaa())}, +hd(a){this.a.drawPaint(a.gaa())}, +f_(a,b){var s=a.a +s===$&&A.c() +s=s.a +s.toString +this.a.drawParagraph(s,b.a,b.b)}, +cs(a,b){this.a.drawPath(a.gaa(),b.gaa())}, +xw(a){this.a.drawPicture(a.gaa())}, +cg(a,b){this.a.drawRRect(A.kJ(a),b.gaa())}, +bK(a,b){this.a.drawRect(A.d7(a),b.gaa())}, +he(a,b,c,d){var s=$.bC().x +if(s==null){s=self.window.devicePixelRatio +if(s===0)s=1}A.afm(this.a,a,b,c,d,s)}, +b6(a){this.a.restore()}, +fe(a,b){this.a.rotate(b*180/3.141592653589793,0,0)}, +bm(a){return B.c.K(this.a.save())}, +ee(a,b){var s=b==null?null:b.gaa() +A.acV(this.a,s,A.d7(a),null,null)}, +cd(a,b,c){this.a.scale(b,c)}, +V(a,b){this.a.concat(A.ag0(b))}, +ae(a,b,c){this.a.translate(b,c)}, +gJk(){return null}} +A.DK.prototype={ +nl(a,b){this.LR(0,b) +this.b.b.push(new A.zs(b))}, +l3(a,b,c){this.LS(0,b,c) +this.b.b.push(new A.zt(b,c))}, +l4(a,b){this.LT(a,b) +this.b.b.push(new A.zu(a,b))}, +l5(a,b,c){this.LU(a,b,c) +this.b.b.push(new A.zv(a,b,c))}, +e6(a,b,c){this.LV(a,b,c) +this.b.b.push(new A.zw(a,b,c))}, +hb(a,b,c){this.LW(a,b,c) +this.b.b.push(new A.zx(a,b,c))}, +hc(a,b,c,d){this.LX(a,b,c,d) +this.b.b.push(new A.zy(a.cw(0),b,c,d))}, +hX(a,b,c){this.LY(a,b,c) +this.b.b.push(new A.zz(a,b,c))}, +hY(a,b){this.LZ(a,b) +this.b.b.push(new A.zA(a,b))}, +hd(a){this.M_(a) +this.b.b.push(new A.zB(a))}, +f_(a,b){this.M0(a,b) +this.b.b.push(new A.zC(a,b))}, +cs(a,b){this.M1(a,b) +this.b.b.push(new A.zD(a,b))}, +xw(a){this.M2(a) +this.b.b.push(new A.zE(a))}, +cg(a,b){this.M3(a,b) +this.b.b.push(new A.zF(a,b))}, +bK(a,b){this.M4(a,b) +this.b.b.push(new A.zG(a,b))}, +he(a,b,c,d){this.M5(a,b,c,d) +this.b.b.push(new A.zH(a,b,c,d))}, +b6(a){this.M6(0) +this.b.b.push(B.w3)}, +fe(a,b){this.M7(0,b) +this.b.b.push(new A.zS(b))}, +bm(a){this.b.b.push(B.w4) +return this.M8(0)}, +ee(a,b){this.M9(a,b) +this.b.b.push(new A.zU(a,b))}, +cd(a,b,c){this.Ma(0,b,c) +this.b.b.push(new A.zV(b,c))}, +V(a,b){this.Mb(0,b) +this.b.b.push(new A.zX(b))}, +ae(a,b,c){this.Mc(0,b,c) +this.b.b.push(new A.zY(b,c))}, +gJk(){return this.b}} +A.Pa.prototype={ +a2E(){var s,r,q,p=A.acY(),o=p.beginRecording(A.d7(this.a)) +for(s=this.b,r=s.length,q=0;q"))}, +Qt(a){var s,r,q,p,o,n,m=this.Q +if(m.a3(0,a)){s=null.querySelector("#sk_path_defs") +s.toString +r=A.a([],t.J) +q=m.i(0,a) +q.toString +for(p=t.sM,p=A.bt(new A.d5(s.children,p),p.h("j.E"),t.e),s=J.am(p.a),p=A.m(p),p=p.h("@<1>").ab(p.z[1]).z[1];s.t();){o=p.a(s.gC(s)) +if(q.q(0,o.id))r.push(o)}for(s=r.length,n=0;n") +a0.Hh(A.hq(new A.b2(m,new A.SP(a2),l),l.h("j.E"))) +B.b.I(a1,s) +h.JI(s) +a1=a2.c +if(a1){m=a2.d +m.toString +m=a0.d.i(0,m) +g=m.gt7(m)}else g=null +for(m=a2.b,l=m.length,k=a0.d,j=0;j") +q=A.aw(new A.aA(s,new A.SL(),r),!0,r.h("bn.E")) +if(q.length>A.hG().b-1)B.b.dN(q) +r=m.gU_() +p=m.e +if(l){l=A.hG() +o=l.d +B.b.I(l.e,o) +B.b.L(o) +p.L(0) +B.b.P(q,r)}else{l=A.m(p).h("aT<1>") +n=A.aw(new A.aT(p,l),!0,l.h("j.E")) +new A.b2(n,new A.SM(q),A.ac(n).h("b2<1>")).P(0,m.gVP()) +new A.b2(q,new A.SN(m),A.ac(q).h("b2<1>")).P(0,r)}}, +KS(a){var s,r,q,p,o,n,m,l,k=A.hG().b-1 +if(k===0)return B.B6 +s=A.a([],t.qT) +r=t.t +q=new A.jR(A.a([],r),!1) +for(p=0;p")) +return new A.db(s,s.gp(s))}} +A.AW.prototype={} +A.hO.prototype={} +A.a6f.prototype={ +$1(a){var s,r,q,p,o=null +for(s=this.a,r=this.b,q=0;p=q+a,p=0;++q){if(!J.e(r[p],s[s.length-1-q]))return o +if(q===s.length-1){s=r.length +if(a===s-1)return new A.hO(B.b.bx(r,0,s-q-1),B.dK,!1,o) +else if(a===q)return new A.hO(B.b.cQ(r,a+1),B.dK,!1,o) +else return o}}return new A.hO(B.b.cQ(r,a+1),B.b.bx(s,0,s.length-1-a),!0,B.b.gG(r))}, +$S:95} +A.Bs.prototype={ +a_0(a3,a4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0=this,a1=a3.length,a2=0 +while(!0){if(!(a2=160){s=!1 +break}++a2}if(s)return +r=A.az(t.S) +for(a1=new A.XB(a3),q=a0.b,p=a0.a;a1.t();){o=a1.d +if(!(o<160||q.q(0,o)||p.q(0,o)))r.B(0,o)}if(r.a===0)return +n=A.aw(r,!0,r.$ti.c) +m=A.a([],t.J) +for(a1=a4.length,q=t.N,p=t.oC,l=t.ex,k=t.fx,j=0;j127&&h<160 +else h=!0}else h=!0 +c[a2]=B.bM.m7(k,h)}}if(B.b.iN(c,new A.RP())){a=A.a([],t.t) +for(a2=0;a2127&&a0<160 +else a0=!0}else a0=!0 +q[a]=B.bM.m7(a1,a0)}}a3=0 +while(!0){if(!(a3=0;--a)if(q[a])B.b.fc(r,a) +A.a9u(r)}, +a28(a,b){var s=$.b3.aw().Typeface.MakeFreeTypeFaceFromData(b.buffer) +if(s==null){$.cI().$1("Failed to parse fallback font "+a+" as a font.") +return}this.d.push(A.acz(b,a,s)) +if(a==="Noto Color Emoji"||a==="Noto Emoji"){s=this.e +if(B.b.gG(s)==="Roboto")B.b.lA(s,1,a) +else B.b.lA(s,0,a)}else this.e.push(a)}} +A.RO.prototype={ +$0(){return A.a([],t.wU)}, +$S:195} +A.RP.prototype={ +$1(a){return!a}, +$S:141} +A.a6h.prototype={ +$1(a){return B.b.q($.ahb(),a)}, +$S:21} +A.a6i.prototype={ +$1(a){return this.a.a.q(0,a)}, +$S:16} +A.a5O.prototype={ +$1(a){return a.a==="Noto Sans SC"}, +$S:21} +A.a5P.prototype={ +$1(a){return a.a==="Noto Sans TC"}, +$S:21} +A.a5L.prototype={ +$1(a){return a.a==="Noto Sans HK"}, +$S:21} +A.a5M.prototype={ +$1(a){return a.a==="Noto Sans JP"}, +$S:21} +A.a5N.prototype={ +$1(a){return a.a==="Noto Sans KR"}, +$S:21} +A.a5Q.prototype={ +$1(a){return a.a==="Noto Sans Symbols"}, +$S:21} +A.Bc.prototype={ +B(a,b){var s,r,q=this +if(q.b.q(0,b)||q.c.a3(0,b.b))return +s=q.c +r=s.a +s.l(0,b.b,b) +if(r===0)A.c8(B.r,q.gLD())}, +kv(){var s=0,r=A.Y(t.H),q=this,p,o,n,m,l,k,j,i,h,g +var $async$kv=A.Z(function(a,b){if(a===1)return A.V(b,r) +while(true)switch(s){case 0:i=t.N +h=A.y(i,t.pz) +g=A.y(i,t.uo) +for(i=q.c,p=i.gaJ(i),p=new A.dy(J.am(p.a),p.b),o=t.H,n=A.m(p).z[1];p.t();){m=p.a +if(m==null)m=n.a(m) +h.l(0,m.b,A.akM(new A.Rm(q,m,g),o))}s=2 +return A.a1(A.nk(h.gaJ(h),o),$async$kv) +case 2:p=g.$ti.h("aT<1>") +p=A.aw(new A.aT(g,p),!0,p.h("j.E")) +B.b.fV(p) +o=A.ac(p).h("co<1>") +l=A.aw(new A.co(p,o),!0,o.h("bn.E")) +for(p=l.length,k=0;k1)$.cI().$1("targetWidth and targetHeight for multi-frame images not supported") +else{q=j.w +p=h.makeImageAtCurrentFrame() +if(!r&&s<=0)s=i +if(q!=null&&q<=0)q=i +r=s==null +if(r&&q!=null)s=B.c.bd(q*(p.width()/p.height())) +else if(q==null&&!r)q=B.f.iz(s,p.width()/p.height()) +o=new A.jk() +n=o.ne(B.ed) +r=A.P8(p,i) +m=p.width() +p=p.height() +s.toString +q.toString +n.hc(r,new A.C(0,0,0+m,0+p),new A.C(0,0,s,q),A.a7u()) +p=o.nK().a2B(s,q).b +p===$&&A.c() +p=p.a +p===$&&A.c() +l=p.a.encodeToBytes() +if(l==null)l=i +if(l==null)A.a2(A.nn("Failed to re-size image")) +h=$.b3.aw().MakeAnimatedImageFromEncoded(l) +if(h==null)throw A.d(A.nn("Failed to decode re-sized image data.\nImage source: "+j.b))}j.d=B.c.K(h.getFrameCount()) +j.e=B.c.K(h.getRepetitionCount()) +for(k=0;k");s.t();){p=s.gC(s) +o=p.a +p=p.b +r.push(new A.hl(a,o,p,p,q))}}, +$S(){return this.b.h("~(0,B)")}} +A.Tp.prototype={ +$2(a,b){return a.b-b.b}, +$S(){return this.a.h("o(hl<0>,hl<0>)")}} +A.Tr.prototype={ +$1(a){var s,r,q=a.length +if(q===0)return null +if(q===1)return B.b.gc7(a) +s=q/2|0 +r=a[s] +r.e=this.$1(B.b.bx(a,0,s)) +r.f=this.$1(B.b.cQ(a,s+1)) +return r}, +$S(){return this.a.h("hl<0>?(B>)")}} +A.Tq.prototype={ +$1(a){var s,r=this,q=a.e,p=q==null +if(p&&a.f==null)a.d=a.c +else if(p){q=a.f +q.toString +r.$1(q) +a.d=Math.max(a.c,a.f.d)}else{p=a.f +s=a.c +if(p==null){r.$1(q) +a.d=Math.max(s,a.e.d)}else{r.$1(p) +q=a.e +q.toString +r.$1(q) +a.d=Math.max(s,Math.max(a.e.d,a.f.d))}}}, +$S(){return this.a.h("~(hl<0>)")}} +A.hl.prototype={ +tw(a,b){var s,r=this +if(a>r.d)return +s=r.e +if(s!=null)s.tw(a,b) +s=r.b +if(s<=a&&a<=r.c)b.push(r.a) +if(a=q.c||q.b>=q.d)q=o.b +else{n=o.b +if(!(n.a>=n.c||n.b>=n.d))q=q.jX(n)}}return q}, +ki(a){var s,r,q,p,o +for(s=this.c,r=s.length,q=0;q=o.c||o.b>=o.d))p.f8(a)}}} +A.Ek.prototype={ +f8(a){this.ki(a)}} +A.A1.prototype={ +jf(a,b){var s,r,q=null,p=this.f,o=a.c.a +o.push(new A.ft(B.E_,q,q,p,q,q)) +s=this.lN(a,b) +r=A.arl(p.gaa().getBounds()) +if(s.rM(r))this.b=s.dd(r) +o.pop()}, +f8(a){var s,r=this,q=a.a +q.bm(0) +s=r.r +q.l3(0,r.f,s!==B.aR) +s=s===B.bH +if(s)q.ee(r.b,null) +r.ki(a) +if(s)q.b6(0) +q.b6(0)}, +$iPh:1} +A.A3.prototype={ +jf(a,b){var s,r=null,q=this.f,p=a.c.a +p.push(new A.ft(B.DY,q,r,r,r,r)) +s=this.lN(a,b) +if(s.rM(q))this.b=s.dd(q) +p.pop()}, +f8(a){var s,r,q=a.a +q.bm(0) +s=this.f +r=this.r +q.l5(s,B.bG,r!==B.aR) +r=r===B.bH +if(r)q.ee(s,null) +this.ki(a) +if(r)q.b6(0) +q.b6(0)}, +$iPj:1} +A.A2.prototype={ +jf(a,b){var s,r,q,p,o=null,n=this.f,m=a.c.a +m.push(new A.ft(B.DZ,o,n,o,o,o)) +s=this.lN(a,b) +r=n.a +q=n.b +p=n.c +n=n.d +if(s.rM(new A.C(r,q,p,n)))this.b=s.dd(new A.C(r,q,p,n)) +m.pop()}, +f8(a){var s,r=this,q=a.a +q.bm(0) +s=r.r +q.l4(r.f,s!==B.aR) +s=s===B.bH +if(s)q.ee(r.b,null) +r.ki(a) +if(s)q.b6(0) +q.b6(0)}, +$iPi:1} +A.CX.prototype={ +jf(a,b){var s,r,q,p,o=this,n=null,m=new A.bk(new Float32Array(16)) +m.az(b) +s=o.r +r=s.a +s=s.b +m.ae(0,r,s) +q=A.cY() +q.fS(r,s,0) +p=a.c.a +p.push(A.ac3(q)) +p.push(new A.ft(B.E1,n,n,n,n,o.f)) +o.Mh(a,m) +p.pop() +p.pop() +o.b=o.b.ae(0,r,s)}, +f8(a){var s,r,q,p=this,o=A.a7u() +o.sac(0,A.U(p.f,0,0,0)) +s=a.a +s.bm(0) +r=p.r +q=r.a +r=r.b +s.ae(0,q,r) +s.ee(p.b.cE(new A.q(-q,-r)),o) +p.ki(a) +s.b6(0) +s.b6(0)}, +$iVg:1} +A.vi.prototype={ +jf(a,b){var s=this.f,r=b.rE(s),q=a.c.a +q.push(A.ac3(s)) +this.b=A.a9P(s,this.lN(a,r)) +q.pop()}, +f8(a){var s=a.a +s.bm(0) +s.V(0,this.f.a) +this.ki(a) +s.b6(0)}, +$iFM:1} +A.CW.prototype={$iVf:1} +A.Dt.prototype={ +jf(a,b){this.b=this.c.b.cE(this.d)}, +f8(a){var s,r=a.b +r.bm(0) +s=this.d +r.ae(0,s.a,s.b) +r.xw(this.c) +r.b6(0)}} +A.C4.prototype={ +m(){}} +A.TZ.prototype={ +FQ(a,b,c,d){var s,r=this.b +r===$&&A.c() +s=new A.Dt(t.mn.a(b),a,B.A) +s.a=r +r.c.push(s)}, +FR(a){var s=this.b +s===$&&A.c() +t.vt.a(a) +a.a=s +s.c.push(a)}, +aS(){return new A.C4(new A.U_(this.a,$.bC().ghw()))}, +fa(){var s=this.b +s===$&&A.c() +if(s===this.a)return +s=s.a +s.toString +this.b=s}, +Js(a,b,c){return this.lP(new A.A1(t.lk.a(a),b,A.a([],t.a5),B.A))}, +Ju(a,b,c){return this.lP(new A.A2(a,b,A.a([],t.a5),B.A))}, +Jv(a,b,c){return this.lP(new A.A3(a,b,A.a([],t.a5),B.A))}, +z0(a,b,c){var s=A.cY() +s.fS(a,b,0) +return this.lP(new A.CW(s,A.a([],t.a5),B.A))}, +Jx(a,b,c){return this.lP(new A.CX(a,b,A.a([],t.a5),B.A))}, +Jz(a,b){return this.lP(new A.vi(new A.bk(A.ND(a)),A.a([],t.a5),B.A))}, +a1Y(a){var s=this.b +s===$&&A.c() +a.a=s +s.c.push(a) +return this.b=a}, +lP(a){return this.a1Y(a,t.CI)}} +A.U_.prototype={} +A.RS.prototype={ +a20(a,b){A.a6T("preroll_frame",new A.RT(this,a,!0)) +A.a6T("apply_frame",new A.RU(this,a,!0)) +return!0}} +A.RT.prototype={ +$0(){var s=this.b.a +s.b=s.lN(new A.W3(new A.td(A.a([],t.oE))),A.cY())}, +$S:0} +A.RU.prototype={ +$0(){var s=this.a,r=A.a([],t.C3),q=new A.zO(r),p=s.a +r.push(p) +s.c.KR().P(0,q.gXT()) +q.nl(0,B.H) +s=this.b.a +r=s.b +if(!r.gS(r))s.ki(new A.Vr(q,p))}, +$S:0} +A.Ps.prototype={} +A.zM.prototype={ +fq(){return this.Db()}, +ii(){return this.Db()}, +Db(){var s=$.b3.aw().MaskFilter.MakeBlur($.ahH()[this.b.a],this.c,!0) +s.toString +return s}, +ha(a){var s=this.a +if(s!=null)s.delete()}} +A.zO.prototype={ +XU(a){this.a.push(a)}, +bm(a){var s,r,q +for(s=this.a,r=0,q=0;qb)p=r-1 +else{if(q.b>=b)return!0 +s=r+1}}return!1}} +A.i7.prototype={ +k(a,b){if(b==null)return!1 +if(!(b instanceof A.i7))return!1 +return b.a===this.a&&b.b===this.b}, +gu(a){return A.L(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a){return"["+this.a+", "+this.b+"]"}} +A.UU.prototype={} +A.mX.prototype={ +sGd(a){if(this.b===a)return +this.b=a +this.gaa().setBlendMode($.a7a()[a.a])}, +gco(a){return this.c}, +sco(a,b){if(this.c===b)return +this.c=b +this.gaa().setStyle($.aa9()[b.a])}, +ghK(){return this.d}, +shK(a){if(this.d===a)return +this.d=a +this.gaa().setStrokeWidth(a)}, +sro(a){if(!this.r)return +this.r=!1 +this.gaa().setAntiAlias(!1)}, +gac(a){return new A.A(this.w)}, +sac(a,b){if(this.w===b.gn(b))return +this.w=b.gn(b) +this.gaa().setColorInt(b.gn(b))}, +srl(a){var s,r,q=this +if(a===q.x)return +if(!a){q.ay=q.y +q.y=null}else{s=q.y=q.ay +if(s==null)q.ay=$.a75() +else q.ay=A.Ue(new A.qm($.a75(),s))}s=q.gaa() +r=q.ay +r=r==null?null:r.gaa() +s.setColorFilter(r) +q.x=a}, +stH(a){var s,r,q=this +if(q.z==a)return +if(a instanceof A.P7){s=new A.zI(a.a,a.b,a.d,a.e) +s.h_(null,t.e) +q.z=s}else q.z=t.hg.a(a) +s=q.gaa() +r=q.z +r=r==null?null:r.m_(q.at) +s.setShader(r)}, +sIZ(a){var s,r,q=this +if(a.k(0,q.Q))return +q.Q=a +s=a.b +if(!(isFinite(s)&&s>0))q.as=null +else{s=new A.zM(a.a,s) +s.h_(null,t.e) +q.as=s}s=q.gaa() +r=q.as +r=r==null?null:r.gaa() +s.setMaskFilter(r)}, +sk7(a){var s,r,q=this +if(q.at===a)return +q.at=a +s=q.gaa() +r=q.z +r=r==null?null:r.m_(a) +s.setShader(r)}, +sGr(a){var s,r,q=this +if(q.ax===a)return +q.ax=a +q.y=null +s=A.aqR(a) +s.toString +s=q.ay=A.Ue(s) +if(q.x){q.y=s +q.ay=A.Ue(new A.qm($.a75(),s))}s=q.gaa() +r=q.ay +r=r==null?null:r.gaa() +s.setColorFilter(r)}, +fq(){var s=A.YT() +s.setAntiAlias(this.r) +s.setColorInt(this.w) +return s}, +ii(){var s=this,r=null,q=A.YT(),p=s.b +q.setBlendMode($.a7a()[p.a]) +p=s.c +q.setStyle($.aa9()[p.a]) +q.setStrokeWidth(s.d) +q.setAntiAlias(s.r) +q.setColorInt(s.w) +p=s.z +p=p==null?r:p.m_(s.at) +q.setShader(p) +p=s.as +p=p==null?r:p.gaa() +q.setMaskFilter(p) +p=s.ay +p=p==null?r:p.gaa() +q.setColorFilter(p) +p=s.cx +p=p==null?r:p.gaa() +q.setImageFilter(p) +q.setStrokeCap($.ahL()[0]) +q.setStrokeJoin($.ahM()[0]) +q.setStrokeMiter(0) +return q}, +ha(a){var s=this.a +if(s!=null)s.delete()}} +A.P7.prototype={} +A.zI.prototype={ +fq(){var s=this,r=s.r,q=s.e,p=s.f,o=r.length===0?A.x(q,"makeShader",[p]):A.x(q,"makeShaderWithChildren",[p,r]) +if(o==null)throw A.d(A.bV("Invalid uniform data for shader "+s.d+": floatUniforms: "+A.h(p)+" \n samplerUniforms: "+A.h(r)+" \n")) +return o}, +ii(){var s=this,r=s.r,q=s.e,p=s.f,o=r.length===0?A.x(q,"makeShader",[p]):A.x(q,"makeShaderWithChildren",[p,r]) +if(o==null)throw A.d(A.bV("Invalid uniform data for shader "+s.d+": floatUniforms: "+A.h(p)+" \n samplerUniforms: "+A.h(r)+" \n")) +return o}} +A.mY.prototype={ +gnS(){return this.b}, +snS(a){if(this.b===a)return +this.b=a +this.gaa().setFillType($.NM()[a.a])}, +qg(a){this.gaa().addOval(A.d7(a),!1,1)}, +FP(a,b,c){var s,r=A.cY() +r.fS(c.a,c.b,0) +s=A.ag1(r.a) +t.lk.a(b) +A.x(this.gaa(),"addPath",[b.gaa(),s[0],s[1],s[2],s[3],s[4],s[5],s[6],s[7],s[8],!1])}, +en(a){this.gaa().addRRect(A.kJ(a),!1)}, +kY(a){this.gaa().addRect(A.d7(a))}, +G8(a,b,c){A.x(this.gaa(),"arcToRotated",[c.a,c.b,0,!0,!0,a.a,a.b])}, +dn(a){this.gaa().close()}, +q(a,b){return this.gaa().contains(b.a,b.b)}, +dR(a){var s=this.gaa().getBounds() +return new A.C(s[0],s[1],s[2],s[3])}, +bZ(a,b,c){this.gaa().lineTo(b,c)}, +fH(a,b,c){this.gaa().moveTo(b,c)}, +z2(a,b,c,d){this.gaa().quadTo(a,b,c,d)}, +fd(a){this.b=B.aF +this.gaa().reset()}, +cE(a){var s=this.gaa().copy() +A.x(s,"transform",[1,0,a.a,0,1,a.b,0,0,1]) +return A.aj9(s,this.b)}, +go8(){return!0}, +fq(){var s=new globalThis.window.flutterCanvasKit.Path(),r=this.b +s.setFillType($.NM()[r.a]) +return s}, +ha(a){var s +this.c=t.j.a(this.gaa().toCmds()) +s=this.a +if(s!=null)s.delete()}, +ii(){var s=$.b3.aw().Path,r=this.c +r===$&&A.c() +r=A.x(s,"MakeFromCmds",[r]) +s=this.b +r.setFillType($.NM()[s.a]) +return r}} +A.qn.prototype={ +m(){var s,r=this +r.d=!0 +s=r.c +if(s!=null)s.m() +s=r.a +if(s!=null)s.delete() +r.a=null}, +a2B(a,b){var s,r,q,p=A.hG(),o=p.c +if(o===$){s=A.aP(self.document,"flt-canvas-container") +p.c!==$&&A.ap() +o=p.c=new A.hF(s)}p=o.x_(new A.S(a,b)).a +s=p.getCanvas() +s.clear(A.a5R($.NL(),B.H)) +s.drawPicture(this.gaa()) +p=p.makeImageSnapshot() +s=$.b3.aw().AlphaType.Premul +r=$.b3.aw().ColorType.RGBA_8888 +q=A.an3(s,self.window.flutterCanvasKit.ColorSpace.SRGB,r,b,a) +p=p.readPixels(0,0,q) +p=$.b3.aw().MakeImage(q,p,4*a) +if(p==null)throw A.d(A.a5("Unable to convert image pixels into SkImage.")) +return A.P8(p,null)}, +go8(){return!0}, +fq(){throw A.d(A.a5("Unreachable code"))}, +ii(){return this.c.a2E()}, +ha(a){var s +if(!this.d){s=this.a +if(s!=null)s.delete()}}} +A.jk.prototype={ +ne(a){var s,r +this.a=a +s=A.acY() +this.b=s +r=s.beginRecording(A.d7(a)) +return this.c=$.a7c()?new A.dt(r):new A.DK(new A.Pa(a,A.a([],t.i7)),r)}, +nK(){var s,r,q=this,p=q.b +if(p==null)throw A.d(A.a5("PictureRecorder is not recording")) +s=p.finishRecordingAsPicture() +p.delete() +q.b=null +r=new A.qn(q.a,q.c.gJk()) +r.h_(s,t.e) +return r}, +gID(){return this.b!=null}} +A.Wj.prototype={ +ZU(a){var s,r,q,p +try{p=a.b +if(p.gS(p))return +s=A.hG().a.FJ(p) +$.a70().x=p +r=new A.dt(s.a.a.getCanvas()) +q=new A.RS(r,null,$.a70()) +q.a20(a,!0) +p=A.hG().a +if(!p.ax)$.b0.aw().b.prepend(p.x) +p.ax=!0 +J.ait(s) +$.a70().LG(0)}finally{this.W8()}}, +W8(){var s,r +for(s=this.b,r=0;rr.a)A.an5(r)}, +a2l(a){var s,r,q,p,o,n=this.a/2|0 +for(s=this.b,r=s.a,q=this.c,p=0;pq.a||a.b>q.b +else r=!1 +if(r){p=a.R(0,1.4) +r=j.a +if(r!=null)r.m() +j.a=null +r=j.y +r.toString +o=p.a +A.n9(r,o) +r=j.y +r.toString +n=p.b +A.n8(r,n) +j.ay=p +j.z=B.c.cr(o) +j.Q=B.c.cr(n) +j.q5()}}if(j.b||j.ay==null){r=j.a +if(r!=null)r.m() +j.a=null +j.ax=!1 +r=j.f +if(r!=null)r.releaseResourcesAndAbandonContext() +r=j.f +if(r!=null)r.delete() +j.f=null +r=j.y +if(r!=null){A.dw(r,i,j.e,!1) +r=j.y +r.toString +A.dw(r,h,j.d,!1) +j.y.remove() +j.d=j.e=null}j.z=B.c.cr(a.a) +r=B.c.cr(a.b) +j.Q=r +m=j.y=A.pE(r,j.z) +r=A.a6("true") +A.x(m,"setAttribute",["aria-hidden",r==null?t.K.a(r):r]) +A.n(m.style,"position","absolute") +j.q5() +r=t.e +j.e=r.a(A.aN(j.gQP())) +o=r.a(A.aN(j.gQN())) +j.d=o +A.bI(m,h,o,!1) +A.bI(m,i,j.e,!1) +j.c=j.b=!1 +o=$.dn +if((o==null?$.dn=A.kw():o)!==-1){o=$.cs +o=!(o==null?$.cs=A.fi(self.window.flutterConfiguration):o).gGl()}else o=!1 +if(o){o=$.b3.aw() +n=$.dn +if(n==null)n=$.dn=A.kw() +l=j.r=B.c.K(o.GetWebGLContext(m,r.a({antialias:0,majorVersion:n}))) +if(l!==0){j.f=$.b3.aw().MakeGrContext(l) +if(j.as===-1||j.at===-1){r=j.y +r.toString +o=$.dn +k=A.ajW(r,o==null?$.dn=A.kw():o) +j.as=B.c.K(k.getParameter(B.c.K(k.SAMPLES))) +j.at=B.c.K(k.getParameter(B.c.K(k.STENCIL_BITS)))}j.ER()}}j.x.append(m) +j.ay=a}else{r=$.bC().x +if(r==null){r=self.window.devicePixelRatio +if(r===0)r=1}if(r!==j.CW)j.q5()}r=$.bC().x +if(r==null){r=self.window.devicePixelRatio +if(r===0)r=1}j.CW=r +j.ch=a +j.F6() +r=j.a +if(r!=null)r.m() +return j.a=j.R1(a)}, +q5(){var s,r,q=this.z,p=$.bC(),o=p.x +if(o==null){o=self.window.devicePixelRatio +if(o===0)o=1}s=this.Q +p=p.x +if(p==null){p=self.window.devicePixelRatio +if(p===0)p=1}r=this.y.style +A.n(r,"width",A.h(q/o)+"px") +A.n(r,"height",A.h(s/p)+"px")}, +F6(){var s=B.c.cr(this.ch.b),r=this.Q,q=$.bC().x +if(q==null){q=self.window.devicePixelRatio +if(q===0)q=1}A.n(this.y.style,"transform","translate(0, -"+A.h((r-s)/q)+"px)")}, +QQ(a){this.c=!1 +$.aB().ya() +a.stopPropagation() +a.preventDefault()}, +QO(a){var s=this,r=A.hG() +s.c=!0 +if(r.a0X(s)){s.b=!0 +a.preventDefault()}else s.m()}, +R1(a){var s,r=this,q=$.dn +if((q==null?$.dn=A.kw():q)===-1){q=r.y +q.toString +return r.pB(q,"WebGL support not detected")}else{q=$.cs +if((q==null?$.cs=A.fi(self.window.flutterConfiguration):q).gGl()){q=r.y +q.toString +return r.pB(q,"CPU rendering forced by application")}else if(r.r===0){q=r.y +q.toString +return r.pB(q,"Failed to initialize WebGL context")}else{q=$.b3.aw() +s=r.f +s.toString +s=A.x(q,"MakeOnScreenGLSurface",[s,B.c.zi(a.a),B.c.zi(a.b),self.window.flutterCanvasKit.ColorSpace.SRGB,r.as,r.at]) +if(s==null){q=r.y +q.toString +return r.pB(q,"Failed to initialize WebGL surface")}return new A.zW(s,r.r)}}}, +pB(a,b){if(!$.ade){$.cI().$1("WARNING: Falling back to CPU-only rendering. "+b+".") +$.ade=!0}return new A.zW($.b3.aw().MakeSWCanvasSurface(a),null)}, +m(){var s=this,r=s.y +if(r!=null)A.dw(r,"webglcontextlost",s.d,!1) +r=s.y +if(r!=null)A.dw(r,"webglcontextrestored",s.e,!1) +s.e=s.d=null +s.x.remove() +r=s.a +if(r!=null)r.m()}} +A.Zy.prototype={ +$2(a,b){this.a.a.a.flush() +return!0}, +$S:278} +A.zW.prototype={ +m(){if(this.c)return +this.a.dispose() +this.c=!0}} +A.Fm.prototype={ +L1(){var s,r=this,q=r.e,p=q.length +if(p!==0){s=q.pop() +r.d.push(s) +return s}else{q=r.d +if(q.length+p+1>>0 +if((s|2)===s)r=(r|B.c.K($.b3.aw().OverlineDecoration))>>>0 +if((s|4)===s)r=(r|B.c.K($.b3.aw().LineThroughDecoration))>>>0 +b0.decoration=r}if(b!=null)b0.decorationThickness=b +if(d!=null){s=A.pG(d) +b0.decorationColor=s}if(c!=null)b0.decorationStyle=$.ahP()[c.a] +if(a0!=null)b0.textBaseline=$.ahO()[a0.a] +if(a1!=null)A.ad1(b0,a1) +if(a2!=null)b0.letterSpacing=a2 +if(a3!=null)b0.wordSpacing=a3 +if(a4!=null)A.ad3(b0,a4) +switch(g.ax){case null:break +case B.p:A.ad2(b0,!0) +break +case B.uU:A.ad2(b0,!1) +break}q=g.dx +if(q===$){p=A.a9b(g.x,g.y) +g.dx!==$&&A.ap() +g.dx=p +q=p}A.ad0(b0,q) +if(a!=null||!1)b0.fontStyle=A.a9N(a,g.r) +if(a6!=null){g=A.pG(new A.A(a6.w)) +b0.foregroundColor=g}if(a7!=null){o=A.a([],t.J) +for(g=a7.length,n=0;n=q.startIndex&&s<=q.endIndex)return new A.cD(B.c.K(q.startIndex),B.c.K(q.endIndex))}return B.Hz}, +Gu(){var s,r,q,p=this.a +p===$&&A.c() +p=J.fa(p.a.getLineMetrics(),t.e) +s=A.a([],t.gw) +for(p=new A.db(p,p.gp(p)),r=A.m(p).c;p.t();){q=p.d +s.push(new A.zL(q==null?r.a(q):q))}return s}, +m(){var s=this.a +s===$&&A.c() +s.m() +this.as=!0}} +A.zL.prototype={ +gnd(){return this.a.baseline}, +gIT(a){return B.c.K(this.a.lineNumber)}, +$iU4:1} +A.P9.prototype={ +n8(a){var s=A.a([],t.s),r=B.b.gO(this.e),q=r.x +if(q!=null)s.push(q) +q=r.y +if(q!=null)B.b.I(s,q) +$.yC().a_0(a,s) +this.a.addText(a)}, +aS(){var s,r,q,p,o,n,m,l,k,j="Paragraph" +if($.ahc()){s=this.a +r=B.N.dq(0,new A.jn(s.getText())) +q=A.amS($.ai0(),r) +p=q==null +o=p?null:q.i(0,r) +if(o!=null)n=o +else{m=A.afs(r,B.jK) +l=A.afs(r,B.jJ) +n=new A.wP(A.ari(r),l,m)}if(!p){p=q.c +k=p.i(0,r) +if(k==null)q.B5(0,r,n) +else{m=k.d +if(!J.e(m.b,n)){k.ig(0) +q.B5(0,r,n)}else{k.ig(0) +l=q.b +l.n5(m) +l=l.a.b.ms() +l.toString +p.l(0,r,l)}}}s.setWordsUtf16(n.c) +s.setGraphemeBreaksUtf16(n.b) +s.setLineBreaksUtf16(n.a)}s=this.a +r=s.build() +s.delete() +s=new A.zP(this.b) +p=new A.mf(j) +p.B4(s,r,j) +s.a!==$&&A.dj() +s.a=p +return s}, +gJl(){return this.d}, +fa(){var s=this.e +if(s.length<=1)return +s.pop() +this.a.pop()}, +rY(a4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2=this.e,a3=B.b.gO(a2) +t.dv.a(a4) +s=a4.a +if(s==null)s=a3.a +r=a4.b +if(r==null)r=a3.b +q=a4.c +if(q==null)q=a3.c +p=a4.d +if(p==null)p=a3.d +o=a4.e +if(o==null)o=a3.e +n=a4.f +if(n==null)n=a3.f +m=a4.w +if(m==null)m=a3.w +l=a4.x +if(l==null)l=a3.x +k=a4.y +if(k==null)k=a3.y +j=a4.z +if(j==null)j=a3.z +i=a4.Q +if(i==null)i=a3.Q +h=a4.as +if(h==null)h=a3.as +g=a4.at +if(g==null)g=a3.at +f=a4.ax +if(f==null)f=a3.ax +e=a4.ch +if(e==null)e=a3.ch +d=a4.CW +if(d==null)d=a3.CW +c=a4.cx +if(c==null)c=a3.cx +b=a4.db +if(b==null)b=a3.db +a=A.a7v(e,s,r,q,p,o,l,k,a3.cy,j,a3.r,b,n,d,g,f,i,a3.ay,c,m,h) +a2.push(a) +a2=a.CW +s=a2==null +if(!s||a.ch!=null){a0=s?null:a2.gaa() +if(a0==null){a0=$.ag7() +a2=a.a +a2=a2==null?null:a2.gn(a2) +if(a2==null)a2=4278190080 +a0.setColorInt(a2)}a2=a.ch +a1=a2==null?null:a2.gaa() +if(a1==null)a1=$.ag6() +this.a.pushPaintStyle(a.gAn(),a0,a1)}else this.a.pushStyle(a.gAn())}} +A.a5u.prototype={ +$1(a){return this.a===a}, +$S:42} +A.rC.prototype={ +D(){return"IntlSegmenterGranularity."+this.b}} +A.zi.prototype={ +j(a){return"CanvasKitError: "+this.a}} +A.A5.prototype={ +Lk(a,b){var s={} +s.a=!1 +this.a.ma(0,A.ci(J.bc(a.b,"text"))).bw(new A.Po(s,b),t.P).jK(new A.Pp(s,b))}, +KJ(a){this.b.oL(0).bw(new A.Pm(a),t.P).jK(new A.Pn(this,a))}} +A.Po.prototype={ +$1(a){var s=this.b +if(a){s.toString +s.$1(B.K.bu([!0]))}else{s.toString +s.$1(B.K.bu(["copy_fail","Clipboard.setData failed",null])) +this.a.a=!0}}, +$S:54} +A.Pp.prototype={ +$1(a){var s +if(!this.a.a){s=this.b +s.toString +s.$1(B.K.bu(["copy_fail","Clipboard.setData failed",null]))}}, +$S:8} +A.Pm.prototype={ +$1(a){var s=A.aL(["text",a],t.N,t.z),r=this.a +r.toString +r.$1(B.K.bu([s]))}, +$S:337} +A.Pn.prototype={ +$1(a){var s +if(a instanceof A.oL){A.S_(B.r,t.H).bw(new A.Pl(this.b),t.P) +return}s=this.b +A.NC("Could not get text from clipboard: "+A.h(a)) +s.toString +s.$1(B.K.bu(["paste_fail","Clipboard.getData failed",null]))}, +$S:8} +A.Pl.prototype={ +$1(a){var s=this.a +if(s!=null)s.$1(null)}, +$S:17} +A.A4.prototype={ +ma(a,b){return this.Lj(0,b)}, +Lj(a,b){var s=0,r=A.Y(t.y),q,p=2,o,n,m,l,k +var $async$ma=A.Z(function(c,d){if(c===1){o=d +s=p}while(true)switch(s){case 0:p=4 +m=self.window.navigator.clipboard +m.toString +b.toString +s=7 +return A.a1(A.fW(m.writeText(b),t.z),$async$ma) +case 7:p=2 +s=6 +break +case 4:p=3 +k=o +n=A.ah(k) +A.NC("copy is not successful "+A.h(n)) +m=A.cJ(!1,t.y) +q=m +s=1 +break +s=6 +break +case 3:s=2 +break +case 6:q=A.cJ(!0,t.y) +s=1 +break +case 1:return A.W(q,r) +case 2:return A.V(o,r)}}) +return A.X($async$ma,r)}} +A.Pk.prototype={ +oL(a){var s=0,r=A.Y(t.N),q +var $async$oL=A.Z(function(b,c){if(b===1)return A.V(c,r) +while(true)switch(s){case 0:q=A.fW(self.window.navigator.clipboard.readText(),t.N) +s=1 +break +case 1:return A.W(q,r)}}) +return A.X($async$oL,r)}} +A.B8.prototype={ +ma(a,b){return A.cJ(this.Wv(b),t.y)}, +Wv(a){var s,r,q,p,o="-99999px",n="transparent",m=A.aP(self.document,"textarea"),l=m.style +A.n(l,"position","absolute") +A.n(l,"top",o) +A.n(l,"left",o) +A.n(l,"opacity","0") +A.n(l,"color",n) +A.n(l,"background-color",n) +A.n(l,"background",n) +self.document.body.append(m) +s=m +A.ab4(s,a) +s.focus() +s.select() +r=!1 +try{r=self.document.execCommand("copy") +if(!r)A.NC("copy is not successful")}catch(p){q=A.ah(p) +A.NC("copy is not successful "+A.h(q))}finally{s.remove()}return r}} +A.Ri.prototype={ +oL(a){return A.a7U(new A.oL("Paste is not implemented for this browser."),null,t.N)}} +A.Rz.prototype={ +gGl(){var s=this.b +if(s==null)s=null +else{s=s.canvasKitForceCpuOnly +if(s==null)s=null}return s===!0}, +gZA(){var s=this.b +if(s==null)s=null +else{s=s.debugShowSemanticsNodes +if(s==null)s=null}return s===!0}, +gJS(){var s=this.b +if(s==null)s=null +else{s=s.renderer +if(s==null)s=null}if(s==null){s=self.window.flutterWebRenderer +if(s==null)s=null}return s}, +gKs(){var s=this.b +if(s==null)s=null +else{s=s.useColorEmoji +if(s==null)s=null}return s===!0}} +A.Ql.prototype={ +$1(a){return this.a.warn(a)}, +$S:7} +A.Qo.prototype={ +$1(a){a.toString +return A.bW(a)}, +$S:381} +A.BP.prototype={ +gaP(a){return B.c.K(this.b.status)}, +gy3(){var s=this.b,r=B.c.K(s.status)>=200&&B.c.K(s.status)<300,q=B.c.K(s.status),p=B.c.K(s.status),o=B.c.K(s.status)>307&&B.c.K(s.status)<400 +return r||q===0||p===304||o}, +gyX(){var s=this +if(!s.gy3())throw A.d(new A.BN(s.a,s.gaP(s))) +return new A.SQ(s.b)}, +$iabt:1} +A.SQ.prototype={ +kZ(){var s=0,r=A.Y(t.l2),q,p=this,o +var $async$kZ=A.Z(function(a,b){if(a===1)return A.V(b,r) +while(true)switch(s){case 0:s=3 +return A.a1(A.fW(p.a.arrayBuffer(),t.X),$async$kZ) +case 3:o=b +o.toString +q=t.l2.a(o) +s=1 +break +case 1:return A.W(q,r)}}) +return A.X($async$kZ,r)}} +A.BN.prototype={ +j(a){return'Flutter Web engine failed to fetch "'+this.a+'". HTTP request succeeded, but the server responded with HTTP status '+this.b+"."}, +$icX:1} +A.BM.prototype={ +j(a){return'Flutter Web engine failed to complete HTTP request to fetch "'+this.a+'": '+A.h(this.b)}, +$icX:1} +A.Qm.prototype={ +$1(a){return this.a.add(a)}, +$S:380} +A.AP.prototype={} +A.qO.prototype={} +A.a6a.prototype={ +$2(a,b){this.a.$2(J.fa(a,t.e),b)}, +$S:362} +A.a61.prototype={ +$1(a){var s=A.a_J(a) +if(J.dq(B.Gd.a,B.b.gO(s.grR())))return s.j(0) +self.window.console.error("URL rejected by TrustedTypes policy flutter-engine: "+a+"(download prevented)") +return null}, +$S:361} +A.Hz.prototype={ +t(){var s=++this.b,r=this.a +if(s>r.length)throw A.d(A.a5("Iterator out of bounds")) +return s"))}, +gp(a){return B.c.K(this.a.length)}} +A.HE.prototype={ +t(){var s=++this.b,r=this.a +if(s>r.length)throw A.d(A.a5("Iterator out of bounds")) +return s"))}, +gp(a){return B.c.K(this.a.length)}} +A.AN.prototype={ +gC(a){var s=this.b +s===$&&A.c() +return s}, +t(){var s=this.a.next() +if(s.done)return!1 +this.b=this.$ti.c.a(s.value) +return!0}} +A.Bm.prototype={ +FT(a){var s,r=this +if(!J.e(a,r.e)){s=r.e +if(s!=null)s.remove() +r.e=a +s=r.b +s.toString +a.toString +s.append(a)}}, +gSi(){var s=this.r +s===$&&A.c() +return s}, +Kn(){var s=this.d.style,r=$.bC().x +if(r==null){r=self.window.devicePixelRatio +if(r===0)r=1}A.n(s,"transform","scale("+A.h(1/r)+")")}, +UH(a){var s +this.Kn() +s=$.cH() +if(!J.dq(B.hp.a,s)&&!$.bC().a10()&&$.aai().c){$.bC().Gv(!0) +$.aB().ya()}else{s=$.bC() +s.l7() +s.Gv(!1) +$.aB().ya()}}, +Lp(a){var s,r,q,p,o=self.window.screen +if(o!=null){s=o.orientation +if(s!=null){o=J.aC(a) +if(o.gS(a)){s.unlock() +return A.cJ(!0,t.y)}else{r=A.akH(A.ci(o.gG(a))) +if(r!=null){q=new A.bp(new A.ai($.ab,t.aO),t.wY) +try{A.fW(s.lock(r),t.z).bw(new A.RG(q),t.P).jK(new A.RH(q))}catch(p){o=A.cJ(!1,t.y) +return o}return q.a}}}}return A.cJ(!1,t.y)}} +A.RG.prototype={ +$1(a){this.a.cH(0,!0)}, +$S:8} +A.RH.prototype={ +$1(a){this.a.cH(0,!1)}, +$S:8} +A.QY.prototype={} +A.Eu.prototype={} +A.lR.prototype={} +A.KG.prototype={} +A.XI.prototype={ +bm(a){var s,r,q=this,p=q.nR$ +p=p.length===0?q.a:B.b.gO(p) +s=q.i1$ +r=new A.bk(new Float32Array(16)) +r.az(s) +q.HD$.push(new A.KG(p,r))}, +b6(a){var s,r,q,p=this,o=p.HD$ +if(o.length===0)return +s=o.pop() +p.i1$=s.b +o=p.nR$ +r=s.a +q=p.a +while(!0){if(!!J.e(o.length===0?q:B.b.gO(o),r))break +o.pop()}}, +ae(a,b,c){this.i1$.ae(0,b,c)}, +cd(a,b,c){this.i1$.cd(0,b,c)}, +fe(a,b){this.i1$.K1(0,$.agr(),b)}, +V(a,b){this.i1$.cC(0,new A.bk(b))}} +A.a6S.prototype={ +$1(a){$.a99=!1 +$.aB().fC("flutter/system",$.ahe(),new A.a6R())}, +$S:100} +A.a6R.prototype={ +$1(a){}, +$S:14} +A.eU.prototype={} +A.Af.prototype={ +YT(){var s,r,q,p=this,o=p.b +if(o!=null)for(o=o.gaJ(o),o=new A.dy(J.am(o.a),o.b),s=A.m(o).z[1];o.t();){r=o.a +for(r=J.am(r==null?s.a(r):r);r.t();){q=r.gC(r) +q.b.$1(q.a)}}p.b=p.a +p.a=null}, +Be(a,b){var s,r=this,q=r.a +if(q==null)q=r.a=A.y(t.N,r.$ti.h("B>")) +s=q.i(0,a) +if(s==null){s=A.a([],r.$ti.h("v>")) +q.l(0,a,s) +q=s}else q=s +q.push(b)}, +a2n(a){var s,r,q=this.b +if(q==null)return null +s=q.i(0,a) +if(s==null||s.length===0)return null +r=(s&&B.b).fc(s,0) +this.Be(a,r) +return r.a}} +A.oW.prototype={} +A.ES.prototype={ +gwA(a){var s=this.a +s===$&&A.c() +return s.activeElement}, +eQ(a,b){var s=this.a +s===$&&A.c() +return s.appendChild(b)}, +gJ6(){var s=this.a +s===$&&A.c() +return s}, +G1(a){return B.b.P(a,this.gwH(this))}} +A.AU.prototype={ +gwA(a){var s=this.a +s===$&&A.c() +s=s.ownerDocument +return s==null?null:s.activeElement}, +eQ(a,b){var s=this.a +s===$&&A.c() +return s.appendChild(b)}, +gJ6(){var s=this.a +s===$&&A.c() +return s}, +G1(a){return B.b.P(a,this.gwH(this))}} +A.i2.prototype={ +swR(a,b){var s,r,q=this +q.a=b +s=B.c.cJ(b.a)-1 +r=B.c.cJ(q.a.b)-1 +if(q.z!==s||q.Q!==r){q.z=s +q.Q=r +q.Ft()}}, +Ft(){A.n(this.c.style,"transform","translate("+this.z+"px, "+this.Q+"px)")}, +EA(){var s=this,r=s.a,q=r.a +r=r.b +s.d.ae(0,-q+(q-1-s.z)+1,-r+(r-1-s.Q)+1)}, +Hi(a,b){return this.r>=A.Ov(a.c-a.a)&&this.w>=A.Ou(a.d-a.b)&&this.ay===b}, +L(a){var s,r,q,p,o,n=this +n.at=!1 +n.d.L(0) +s=n.f +r=s.length +for(q=n.c,p=0;po){l=o +o=p +p=l}if(n>m){l=m +m=n +n=l}k=Math.abs(a2.r) +j=Math.abs(a2.e) +i=Math.abs(a2.w) +h=Math.abs(a2.f) +g=Math.abs(a2.z) +f=Math.abs(a2.x) +e=Math.abs(a2.Q) +d=Math.abs(a2.y) +b.beginPath() +b.moveTo(p+k,n) +a=o-k +b.lineTo(a,n) +A.ys(b,a,n+i,k,i,0,4.71238898038469,6.283185307179586,!1) +a=m-d +b.lineTo(o,a) +A.ys(b,o-f,a,f,d,0,0,1.5707963267948966,!1) +a=p+g +b.lineTo(a,m) +A.ys(b,a,m-e,g,e,0,1.5707963267948966,3.141592653589793,!1) +a=n+h +b.lineTo(p,a) +A.ys(b,p+j,a,j,h,0,3.141592653589793,4.71238898038469,!1) +a1.gbB().f8(c) +a1.gbB().ij()}}, +hY(a,b){var s,r,q,p,o,n,m=this.d +if(this.qb(b)){a=A.yn(a,b) +s=A.yo(a,b,"draw-oval",m.c) +m=a.a +r=a.b +this.mA(s,new A.q(m,r),b) +A.n(s.style,"border-radius",A.h((a.c-m)/2)+"px / "+A.h((a.d-r)/2)+"px")}else{m.gbB().hG(b,a) +r=b.b +m.gaF(m).beginPath() +q=m.gbB().Q +p=q==null +o=p?a.gav().a:a.gav().a-q.a +n=p?a.gav().b:a.gav().b-q.b +A.ys(m.gaF(m),o,n,(a.c-a.a)/2,(a.d-a.b)/2,0,0,6.283185307179586,!1) +m.gbB().f8(r) +m.gbB().ij()}}, +e6(a,b,c){var s,r,q,p,o,n,m,l,k=this +if(k.wu(c)){s=A.yn(A.k0(a,b),c) +r=A.yo(s,c,"draw-circle",k.d.c) +k.mA(r,new A.q(s.a,s.b),c) +A.n(r.style,"border-radius","50%")}else{q=c.w!=null?A.k0(a,b):null +p=k.d +p.gbB().hG(c,q) +q=c.b +p.gaF(p).beginPath() +o=p.gbB().Q +n=o==null +m=a.a +m=n?m:m-o.a +l=a.b +l=n?l:l-o.b +A.ys(p.gaF(p),m,l,b,b,0,0,6.283185307179586,!1) +p.gbB().f8(q) +p.gbB().ij()}}, +cs(a,b){var s,r,q,p,o,n,m,l,k,j=this,i="setAttribute" +if(j.qb(b)){s=j.d +r=s.c +t.q.a(a) +q=a.a.zY() +if(q!=null){j.bK(q,b) +return}p=a.a +o=p.ax?p.CC():null +if(o!=null){j.cg(o,b) +return}n=A.afg() +p=A.a6("visible") +A.x(n,i,["overflow",p==null?t.K.a(p):p]) +p=self.document.createElementNS("http://www.w3.org/2000/svg","path") +n.append(p) +m=b.b +if(m!==B.R)if(m!==B.aj){m=b.c +m=m!==0&&m!=null}else m=!1 +else m=!0 +l=b.r +if(m){m=A.yp(l) +m.toString +m=A.a6(m) +A.x(p,i,["stroke",m==null?t.K.a(m):m]) +m=b.c +m=A.a6(A.h(m==null?1:m)) +A.x(p,i,["stroke-width",m==null?t.K.a(m):m]) +m=A.a6("none") +A.x(p,i,["fill",m==null?t.K.a(m):m])}else{m=A.yp(l) +m.toString +m=A.a6(m) +A.x(p,i,["fill",m==null?t.K.a(m):m])}if(a.b===B.cQ){m=A.a6("evenodd") +A.x(p,i,["fill-rule",m==null?t.K.a(m):m])}m=A.a6(A.afQ(a.a,0,0)) +A.x(p,i,["d",m==null?t.K.a(m):m]) +if(s.b==null){s=n.style +A.n(s,"position","absolute") +if(!r.o6(0)){A.n(s,"transform",A.f6(r.a)) +A.n(s,"transform-origin","0 0 0")}}if(b.x!=null){s=b.b +p=A.yp(b.r) +p.toString +k=b.x.b +m=$.by() +if(m===B.B&&s!==B.R)A.n(n.style,"box-shadow","0px 0px "+A.h(k*2)+"px "+p) +else A.n(n.style,"filter","blur("+A.h(k)+"px)")}j.mA(n,B.h,b)}else{s=b.w!=null?a.dR(0):null +p=j.d +p.gbB().hG(b,s) +s=b.b +if(s==null&&b.c!=null)p.cs(a,B.R) +else p.cs(a,s) +p.gbB().ij()}}, +he(a,b,c,d){var s,r,q,p,o,n=this.d,m=A.aqM(a.dR(0),c) +if(m!=null){s=(B.c.bd(0.3*(b.gn(b)>>>24&255))&255)<<24|b.gn(b)&16777215 +r=A.aqG(s>>>16&255,s>>>8&255,s&255,255) +n.gaF(n).save() +q=n.gaF(n) +q.globalAlpha=(s>>>24&255)/255 +if(d){s=$.by() +s=s!==B.B}else s=!1 +q=m.b +p=m.a +o=q.a +q=q.b +if(s){n.gaF(n).translate(o,q) +A.a7G(n.gaF(n),A.afI(new A.t0(B.i9,p))) +A.Qk(n.gaF(n),"") +A.Qj(n.gaF(n),r)}else{A.a7G(n.gaF(n),"none") +A.Qk(n.gaF(n),"") +A.Qj(n.gaF(n),r) +n.gaF(n).shadowBlur=p +A.a7H(n.gaF(n),r) +A.a7I(n.gaF(n),o) +A.a7J(n.gaF(n),q)}n.kP(n.gaF(n),a) +A.Qi(n.gaF(n),null) +n.gaF(n).restore()}}, +w4(a){var s,r,q=a.a,p=q.src +if(p==null)p=null +p.toString +s=this.b +if(s!=null){r=s.a2n(p) +if(r!=null)return r}if(!a.b){a.b=!0 +A.n(q.style,"position","absolute")}q=q.cloneNode(!0) +s=this.b +if(s!=null)s.Be(p,new A.oW(q,A.apl(),s.$ti.h("oW<1>"))) +return q}, +Ci(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h=this +t.ac.a(a) +s=c.a +r=A.aqV(c.z) +if(r instanceof A.Cz)q=h.R_(a,r.b,r.c,c) +else if(r instanceof A.Up){p=A.as7(r.b) +o=p.b +h.c.append(o) +h.f.push(o) +q=h.w4(a) +A.n(q.style,"filter","url(#"+p.a+")")}else q=h.w4(a) +o=q.style +n=A.a64(s) +A.n(o,"mix-blend-mode",n==null?"":n) +if(h.ax&&!0){o=h.d +o.gbB().hG(c,null) +o.gaF(o).drawImage(q,b.a,b.b) +o.gbB().ij()}else{o=h.d +if(o.b!=null){n=q.style +n.removeProperty("width") +n.removeProperty("height") +n=o.b +n.toString +m=A.a96(n,q,b,o.c) +for(o=m.length,n=h.c,l=h.f,k=0;k1){s=q.a +s.y=s.r.pop() +r=s.w.pop() +if(r!=null){s.Q=r.a +s.as=r.b +s.at=r.c +s.ax=r.d +s.z=!0}else if(s.z)s.z=!1}s=q.c +if(s.length!==0&&B.b.gO(s) instanceof A.tz)s.pop() +else s.push(B.wJ);--q.r}, +ae(a,b,c){var s=this.a,r=s.a +if(b!==0||c!==0)r.x=!1 +r.y.ae(0,b,c) +s.c.push(new A.Dj(b,c))}, +cd(a,b,c){var s=c==null?b:c,r=this.a,q=r.a +if(b!==1||s!==1)q.x=!1 +q.y.hE(0,b,s,1) +r.c.push(new A.Dh(b,s)) +return null}, +fe(a,b){var s,r,q,p,o,n,m,l,k,j,i,h=this.a,g=h.a +if(b!==0)g.x=!1 +g=g.y +s=Math.cos(b) +r=Math.sin(b) +g=g.a +q=g[0] +p=g[4] +o=g[1] +n=g[5] +m=g[2] +l=g[6] +k=g[3] +j=g[7] +i=-r +g[0]=q*s+p*r +g[1]=o*s+n*r +g[2]=m*s+l*r +g[3]=k*s+j*r +g[4]=q*i+p*s +g[5]=o*i+n*s +g[6]=m*i+l*s +g[7]=k*i+j*s +h.c.push(new A.Dg(b))}, +V(a,b){var s=A.ND(b),r=this.a,q=r.a +q.y.cC(0,new A.bk(s)) +q.x=q.y.o6(0) +r.c.push(new A.Di(s))}, +nm(a,b,c){this.a.hS(a,b)}, +Gq(a,b){return this.nm(a,B.bG,b)}, +jM(a){return this.nm(a,B.bG,!0)}, +qw(a,b){var s=this.a,r=new A.D2(a) +s.a.hS(new A.C(a.a,a.b,a.c,a.d),r) +s.d.c=!0 +s.c.push(r)}, +jL(a){return this.qw(a,!0)}, +qv(a,b,c){var s,r=this.a +t.q.a(b) +s=new A.D1(b) +r.a.hS(b.dR(0),s) +r.d.c=!0 +r.c.push(s)}, +eW(a,b){return this.qv(a,b,!0)}, +hX(a,b,c){var s,r,q,p,o,n,m=this.a +t.l.a(c) +s=Math.max(A.pA(c),1) +c.b=!0 +r=new A.D7(a,b,c.a) +q=a.a +p=b.a +o=a.b +n=b.b +m.a.kp(Math.min(q,p)-s,Math.min(o,n)-s,Math.max(q,p)+s,Math.max(o,n)+s,r) +m.e=m.d.c=!0 +m.c.push(r)}, +hd(a){var s,r,q=this.a +t.l.a(a) +a.b=q.e=q.d.c=!0 +s=new A.D9(a.a) +r=q.a +r.ir(r.a,s) +q.c.push(s)}, +bK(a,b){this.a.bK(a,t.l.a(b))}, +cg(a,b){this.a.cg(a,t.l.a(b))}, +hb(a,b,c){this.a.hb(a,b,t.l.a(c))}, +hY(a,b){var s,r,q,p=this.a +t.l.a(b) +p.e=p.d.c=!0 +s=A.pA(b) +b.b=!0 +r=new A.D8(a,b.a) +q=p.a +if(s!==0)q.ir(a.dc(s),r) +else q.ir(a,r) +p.c.push(r)}, +e6(a,b,c){var s,r,q,p,o,n=this.a +t.l.a(c) +n.e=n.d.c=!0 +s=A.pA(c) +c.b=!0 +r=new A.D4(a,b,c.a) +q=b+s +p=a.a +o=a.b +n.a.kp(p-q,o-q,p+q,o+q,r) +n.c.push(r)}, +cs(a,b){this.a.cs(a,t.l.a(b))}, +hc(a,b,c,d){var s,r,q=this.a +t.l.a(d) +s=q.d +d.b=q.e=s.a=s.c=!0 +r=new A.D6(a,b,c,d.a) +q.a.ir(c,r) +q.c.push(r)}, +f_(a,b){this.a.f_(a,b)}, +he(a,b,c,d){var s,r,q=this.a +q.e=q.d.c=!0 +s=A.aqL(a.dR(0),c) +r=new A.De(t.q.a(a),b,c,d) +q.a.ir(s,r) +q.c.push(r)}} +A.vQ.prototype={ +geU(){return this.e8$}, +bJ(a){var s=this.qK("flt-clip"),r=A.aP(self.document,"flt-clip-interior") +this.e8$=r +A.n(r.style,"position","absolute") +r=this.e8$ +r.toString +s.append(r) +return s}, +G5(a,b){var s +if(b!==B.w){s=a.style +A.n(s,"overflow","hidden") +A.n(s,"z-index","0")}}} +A.tE.prototype={ +fK(){var s=this +s.f=s.e.f +if(s.CW!==B.w)s.w=s.cx +else s.w=null +s.r=null}, +bJ(a){var s=this.B1(0),r=A.a6("rect") +A.x(s,"setAttribute",["clip-type",r==null?t.K.a(r):r]) +return s}, +ep(){var s,r=this,q=r.d.style,p=r.cx,o=p.a +A.n(q,"left",A.h(o)+"px") +s=p.b +A.n(q,"top",A.h(s)+"px") +A.n(q,"width",A.h(p.c-o)+"px") +A.n(q,"height",A.h(p.d-s)+"px") +p=r.d +p.toString +r.G5(p,r.CW) +p=r.e8$.style +A.n(p,"left",A.h(-o)+"px") +A.n(p,"top",A.h(-s)+"px")}, +b7(a,b){var s=this +s.kB(0,b) +if(!s.cx.k(0,b.cx)||s.CW!==b.CW){s.w=null +s.ep()}}, +$iPj:1} +A.Dn.prototype={ +fK(){var s,r=this +r.f=r.e.f +if(r.cx!==B.w){s=r.CW +r.w=new A.C(s.a,s.b,s.c,s.d)}else r.w=null +r.r=null}, +bJ(a){var s=this.B1(0),r=A.a6("rrect") +A.x(s,"setAttribute",["clip-type",r==null?t.K.a(r):r]) +return s}, +ep(){var s,r=this,q=r.d.style,p=r.CW,o=p.a +A.n(q,"left",A.h(o)+"px") +s=p.b +A.n(q,"top",A.h(s)+"px") +A.n(q,"width",A.h(p.c-o)+"px") +A.n(q,"height",A.h(p.d-s)+"px") +A.n(q,"border-top-left-radius",A.h(p.e)+"px") +A.n(q,"border-top-right-radius",A.h(p.r)+"px") +A.n(q,"border-bottom-right-radius",A.h(p.x)+"px") +A.n(q,"border-bottom-left-radius",A.h(p.z)+"px") +p=r.d +p.toString +r.G5(p,r.cx) +p=r.e8$.style +A.n(p,"left",A.h(-o)+"px") +A.n(p,"top",A.h(-s)+"px")}, +b7(a,b){var s=this +s.kB(0,b) +if(!s.CW.k(0,b.CW)||s.cx!==b.cx){s.w=null +s.ep()}}, +$iPi:1} +A.tD.prototype={ +bJ(a){return this.qK("flt-clippath")}, +fK(){var s=this +s.Na() +if(s.cx!==B.w){if(s.w==null)s.w=s.CW.dR(0)}else s.w=null}, +ep(){var s=this,r=s.cy +if(r!=null)r.remove() +r=s.d +r.toString +r=A.afh(r,s.CW) +s.cy=r +s.d.append(r)}, +b7(a,b){var s,r=this +r.kB(0,b) +if(b.CW!==r.CW){r.w=null +s=b.cy +if(s!=null)s.remove() +r.ep()}else r.cy=b.cy +b.cy=null}, +hW(){var s=this.cy +if(s!=null)s.remove() +this.cy=null +this.u3()}, +$iPh:1} +A.ZA.prototype={ +tB(a,b){var s,r,q,p,o=self.document.createElementNS("http://www.w3.org/2000/svg","feColorMatrix"),n=o.type +n.toString +A.XC(n,1) +n=o.result +n.toString +A.oc(n,b) +n=o.values.baseVal +n.toString +for(s=this.b,r=0;r<20;++r){q=s.createSVGNumber() +p=a[r] +q.value=p +n.appendItem(q)}this.c.append(o)}, +kq(a,b,c){var s="setAttribute",r=self.document.createElementNS("http://www.w3.org/2000/svg","feFlood"),q=A.a6(a) +A.x(r,s,["flood-color",q==null?t.K.a(q):q]) +q=A.a6(b) +A.x(r,s,["flood-opacity",q==null?t.K.a(q):q]) +q=r.result +q.toString +A.oc(q,c) +this.c.append(r)}, +Ac(a,b,c){var s=self.document.createElementNS("http://www.w3.org/2000/svg","feBlend"),r=s.in1 +r.toString +A.oc(r,a) +r=s.in2 +r.toString +A.oc(r,b) +r=s.mode +r.toString +A.XC(r,c) +this.c.append(s)}, +oV(a,b,c,d,e,f,g,h){var s=self.document.createElementNS("http://www.w3.org/2000/svg","feComposite"),r=s.in1 +r.toString +A.oc(r,a) +r=s.in2 +r.toString +A.oc(r,b) +r=s.operator +r.toString +A.XC(r,g) +if(c!=null){r=s.k1 +r.toString +A.XD(r,c)}if(d!=null){r=s.k2 +r.toString +A.XD(r,d)}if(e!=null){r=s.k3 +r.toString +A.XD(r,e)}if(f!=null){r=s.k4 +r.toString +A.XD(r,f)}r=s.result +r.toString +A.oc(r,h) +this.c.append(s)}, +tC(a,b,c,d){return this.oV(a,b,null,null,null,null,c,d)}, +aS(){var s=this.b +s.append(this.c) +return new A.Zz(this.a,s)}} +A.Zz.prototype={} +A.Qg.prototype={ +hS(a,b){throw A.d(A.c9(null))}, +jL(a){throw A.d(A.c9(null))}, +eW(a,b){throw A.d(A.c9(null))}, +hX(a,b,c){throw A.d(A.c9(null))}, +hd(a){throw A.d(A.c9(null))}, +bK(a,b){var s +a=A.yn(a,b) +s=this.nR$ +s=s.length===0?this.a:B.b.gO(s) +s.append(A.yo(a,b,"draw-rect",this.i1$))}, +cg(a,b){var s,r=A.yo(A.yn(new A.C(a.a,a.b,a.c,a.d),b),b,"draw-rrect",this.i1$) +A.af2(r.style,a) +s=this.nR$ +s=s.length===0?this.a:B.b.gO(s) +s.append(r)}, +hY(a,b){throw A.d(A.c9(null))}, +e6(a,b,c){throw A.d(A.c9(null))}, +cs(a,b){throw A.d(A.c9(null))}, +he(a,b,c,d){throw A.d(A.c9(null))}, +hc(a,b,c,d){throw A.d(A.c9(null))}, +f_(a,b){var s=A.afl(a,b,this.i1$),r=this.nR$ +r=r.length===0?this.a:B.b.gO(r) +r.append(s)}, +lh(){}} +A.tF.prototype={ +fK(){var s,r,q=this,p=q.e.f +q.f=p +s=q.CW +if(s!==0||q.cx!==0){p.toString +r=new A.bk(new Float32Array(16)) +r.az(p) +q.f=r +r.ae(0,s,q.cx)}q.r=null}, +god(){var s=this,r=s.cy +if(r==null){r=A.cY() +r.fS(-s.CW,-s.cx,0) +s.cy=r}return r}, +bJ(a){var s=A.aP(self.document,"flt-offset") +A.di(s,"position","absolute") +A.di(s,"transform-origin","0 0 0") +return s}, +ep(){A.n(this.d.style,"transform","translate("+A.h(this.CW)+"px, "+A.h(this.cx)+"px)")}, +b7(a,b){var s=this +s.kB(0,b) +if(b.CW!==s.CW||b.cx!==s.cx)s.ep()}, +$iVf:1} +A.tG.prototype={ +fK(){var s,r,q,p=this,o=p.e.f +p.f=o +s=p.cx +r=s.a +q=s.b +if(r!==0||q!==0){o.toString +s=new A.bk(new Float32Array(16)) +s.az(o) +p.f=s +s.ae(0,r,q)}p.r=null}, +god(){var s,r=this.cy +if(r==null){r=this.cx +s=A.cY() +s.fS(-r.a,-r.b,0) +this.cy=s +r=s}return r}, +bJ(a){var s=A.aP(self.document,"flt-opacity") +A.di(s,"position","absolute") +A.di(s,"transform-origin","0 0 0") +return s}, +ep(){var s,r=this.d +r.toString +A.di(r,"opacity",A.h(this.CW/255)) +s=this.cx +A.n(r.style,"transform","translate("+A.h(s.a)+"px, "+A.h(s.b)+"px)")}, +b7(a,b){var s=this +s.kB(0,b) +if(s.CW!==b.CW||!s.cx.k(0,b.cx))s.ep()}, +$iVg:1} +A.uZ.prototype={ +sGd(a){var s=this +if(s.b){s.a=s.a.cw(0) +s.b=!1}s.a.a=a}, +gco(a){var s=this.a.b +return s==null?B.aj:s}, +sco(a,b){var s=this +if(s.b){s.a=s.a.cw(0) +s.b=!1}s.a.b=b}, +ghK(){var s=this.a.c +return s==null?0:s}, +shK(a){var s=this +if(s.b){s.a=s.a.cw(0) +s.b=!1}s.a.c=a}, +sro(a){var s=this +if(s.b){s.a=s.a.cw(0) +s.b=!1}s.a.f=!1}, +gac(a){return new A.A(this.a.r)}, +sac(a,b){var s=this +if(s.b){s.a=s.a.cw(0) +s.b=!1}s.a.r=b.gn(b)}, +srl(a){}, +stH(a){var s=this +if(s.b){s.a=s.a.cw(0) +s.b=!1}s.a.w=a}, +sIZ(a){var s=this +if(s.b){s.a=s.a.cw(0) +s.b=!1}s.a.x=a}, +sk7(a){var s=this +if(s.b){s.a=s.a.cw(0) +s.b=!1}s.a.y=a}, +sGr(a){var s=this +if(s.b){s.a=s.a.cw(0) +s.b=!1}s.a.z=a}, +j(a){var s,r=""+"Paint(",q=this.a.b,p=q==null +if((p?B.aj:q)===B.R){r+=(p?B.aj:q).j(0) +q=this.a.c +p=q==null +if((p?0:q)!==0)r+=" "+A.h(p?0:q) +else r+=" hairline" +s="; "}else s="" +q=this.a +if(!q.f){r+=s+"antialias off" +s="; "}q=q.r +r=(q!==4278190080?r+(s+new A.A(q).j(0)):r)+")" +return r.charCodeAt(0)==0?r:r}} +A.Fn.prototype={ +cw(a){var s=this,r=new A.Fn() +r.a=s.a +r.y=s.y +r.x=s.x +r.w=s.w +r.f=s.f +r.r=s.r +r.z=s.z +r.c=s.c +r.b=s.b +r.e=s.e +r.d=s.d +return r}, +j(a){var s=this.bn(0) +return s}} +A.eN.prototype={ +zx(){var s,r,q,p,o,n,m,l,k,j=this,i=A.a([],t.kQ),h=j.QK(0.25),g=B.f.WD(1,h) +i.push(new A.q(j.a,j.b)) +if(h===5){s=new A.GQ() +j.BG(s) +r=s.a +r.toString +q=s.b +q.toString +p=r.c +if(p===r.e&&r.d===r.f&&q.a===q.c&&q.b===q.d){o=new A.q(p,r.d) +i.push(o) +i.push(o) +i.push(o) +i.push(new A.q(q.e,q.f)) +g=2 +n=!0}else n=!1}else n=!1 +if(!n)A.a7y(j,h,i) +m=2*g+1 +k=0 +while(!0){if(!(k=0)s.c=-r +s.e=s.d=-1}, +kY(a){this.qi(a,0,0)}, +px(){var s,r=this.a,q=r.w +for(r=r.r,s=0;s1){d=Math.sqrt(d) +l*=d +k*=d}c=(q*h+p*g)/l +b=(p*h-q*g)/k +a=(n*h+m*g)/l +a0=(m*h-n*g)/k +a1=a-c +a2=a0-b +a3=-Math.sqrt(Math.max(1/(a1*a1+a2*a2)-0.25,0)) +a4=(c+a)/2-a2*a3 +a5=(b+a0)/2+a1*a3 +a6=Math.atan2(b-a5,c-a4) +a7=Math.atan2(a0-a5,a-a4)-a6 +if(a7>0)a7-=6.283185307179586 +if(Math.abs(a7)<0.0000031415926535897933){c2.bZ(0,n,m) +return}a8=B.c.cr(Math.abs(a7/2.0943951023931953)) +a9=a7/a8 +b0=Math.tan(a9/2) +if(!isFinite(b0))return +b1=Math.sqrt(0.5+Math.cos(a9)*0.5) +b2=Math.abs(1.5707963267948966-Math.abs(a9)-0)<0.000244140625&&B.c.cJ(l)===l&&B.c.cJ(k)===k&&B.c.cJ(n)===n&&B.c.cJ(m)===m +for(b3=a6,b4=0;b4=c||d>=b)g.qi(a,0,3) +else if(A.arH(a1))g.Bc(a,0,3) +else{r=c-e +q=b-d +p=Math.max(0,a0) +o=Math.max(0,a1.r) +n=Math.max(0,a1.z) +m=Math.max(0,a1.x) +l=Math.max(0,a1.f) +k=Math.max(0,a1.w) +j=Math.max(0,a1.Q) +i=Math.max(0,a1.y) +h=A.a5f(j,i,q,A.a5f(l,k,q,A.a5f(n,m,r,A.a5f(p,o,r,1)))) +a0=b-h*j +g.fH(0,e,a0) +g.bZ(0,e,d+h*l) +g.e1(e,d,e+h*p,d,0.707106781) +g.bZ(0,c-h*o,d) +g.e1(c,d,c,d+h*k,0.707106781) +g.bZ(0,c,b-h*i) +g.e1(c,b,c-h*m,b,0.707106781) +g.bZ(0,e+h*n,b) +g.e1(e,b,e,a0,0.707106781) +g.dn(0) +g.e=f?0:-1 +e=g.a +e.ax=f +e.ch=!1 +e.CW=6}}, +FP(a,b,c){this.XY(b,c.a,c.b,null,0)}, +XY(b4,b5,b6,b7,b8){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3=this +t.q.a(b4) +s=b4.a +if(s.w===0)return +if(s.k(0,b3.a)){s=A.a8h() +r=b3.a +q=r.w +p=r.d +o=r.z +s.Q=!0 +s.cx=0 +s.tM() +s.w1(p) +s.w2(q) +s.w0(o) +B.Q.it(s.r,0,r.r) +B.cO.it(s.f,0,r.f) +n=r.y +if(n==null)s.y=null +else{m=s.y +m.toString +B.cO.it(m,0,n)}n=r.Q +s.Q=n +if(!n){s.a=r.a +s.b=r.b +s.as=r.as}s.cx=r.cx +s.at=r.at +s.ax=r.ax +s.ay=r.ay +s.ch=r.ch +s.CW=r.CW +l=new A.m5(s,B.aF) +l.uM(b3)}else l=b4 +s=b3.a +k=s.d +if(b8===0)if(b7!=null)r=b7[15]===1&&b7[14]===0&&b7[11]===0&&b7[10]===1&&b7[9]===0&&b7[8]===0&&b7[7]===0&&b7[6]===0&&b7[3]===0&&b7[2]===0 +else r=!0 +else r=!1 +n=l.a +if(r)s.eQ(0,n) +else{j=new A.jU(n) +j.kD(n) +i=new Float32Array(8) +for(s=b7==null,h=2*(k-1),g=h+1,r=k===0,f=!0;e=j.i8(0,i),e!==6;f=!1)switch(e){case 0:if(s){m=i[0] +d=m+b5}else{m=b7[0] +c=i[0] +d=m*(c+b5)+b7[4]*(i[1]+b6)+b7[12] +m=c}if(s){c=i[1] +b=c+b6}else{c=b7[1] +a=b7[5] +a0=i[1] +b=c*(m+b5)+a*(a0+b6)+b7[13]+b6 +c=a0}if(f&&b3.a.w!==0){b3.kL() +if(r){a1=0 +a2=0}else{m=b3.a.f +a1=m[h] +a2=m[g]}if(b3.c<=0||!r||a1!==d||a2!==b)b3.bZ(0,i[0],i[1])}else{a3=b3.a.ed(0,0) +b3.c=a3+1 +a4=a3*2 +a=b3.a.f +a[a4]=m +a[a4+1]=c +b3.e=b3.d=-1}break +case 1:b3.bZ(0,i[2],i[3]) +break +case 2:m=i[2] +c=i[3] +a=i[4] +a0=i[5] +a3=b3.a.ed(2,0) +a4=a3*2 +a5=b3.a.f +a5[a4]=m +a5[a4+1]=c +a4=(a3+1)*2 +a5[a4]=a +a5[a4+1]=a0 +b3.e=b3.d=-1 +break +case 3:b3.e1(i[2],i[3],i[4],i[5],n.y[j.b]) +break +case 4:m=i[2] +c=i[3] +a=i[4] +a0=i[5] +a5=i[6] +a6=i[7] +b3.kL() +a3=b3.a.ed(4,0) +a4=a3*2 +a7=b3.a.f +a7[a4]=m +a7[a4+1]=c +a4=(a3+1)*2 +a7[a4]=a +a7[a4+1]=a0 +a4=(a3+2)*2 +a7[a4]=a5 +a7[a4+1]=a6 +b3.e=b3.d=-1 +break +case 5:b3.dn(0) +break}}s=l.c +if(s>=0)b3.c=k+s +s=b3.a +a8=s.d +a9=s.f +for(b0=k*2,s=a8*2,r=b7==null;b0s.c||q>s.d)return!1 +p=a3.a +o=new A.Vx(p,r,q,new Float32Array(18)) +o.XM() +n=B.cQ===a3.b +m=o.d +if((n?m&1:m)!==0)return!0 +l=o.e +if(l<=1)return l!==0 +p=(l&1)===0 +if(!p||n)return!p +k=A.acg(a3.a,!0) +j=new Float32Array(18) +i=A.a([],t.kQ) +p=k.a +h=!1 +do{g=i.length +switch(k.i8(0,j)){case 0:case 5:break +case 1:A.asa(j,r,q,i) +break +case 2:A.asb(j,r,q,i) +break +case 3:f=k.f +A.as8(j,r,q,p.y[f],i) +break +case 4:A.as9(j,r,q,i) +break +case 6:h=!0 +break}f=i.length +if(f>g){e=f-1 +d=i[e] +c=d.a +b=d.b +if(Math.abs(c*c+b*b-0)<0.000244140625)B.b.fc(i,e) +else for(a=0;a0?1:0 +if(f<=0){f=b*a1 +if(f<0)f=-1 +else f=f>0?1:0 +f=f<=0}else f=!1}else f=!1 +if(f){a2=B.b.fc(i,e) +if(a!==i.length)i[a]=a2 +break}}}}while(!h) +return i.length!==0}, +cE(a){var s,r=a.a,q=a.b,p=this.a,o=A.alO(p,r,q),n=p.e,m=new Uint8Array(n) +B.Q.it(m,0,p.r) +o=new A.nX(o,m) +n=p.x +o.x=n +o.z=p.z +s=p.y +if(s!=null){n=new Float32Array(n) +o.y=n +B.cO.it(n,0,s)}o.e=p.e +o.w=p.w +o.c=p.c +o.d=p.d +n=p.Q +o.Q=n +if(!n){o.a=p.a.ae(0,r,q) +n=p.b +o.b=n==null?null:n.ae(0,r,q) +o.as=p.as}o.cx=p.cx +o.at=p.at +o.ax=p.ax +o.ay=p.ay +o.ch=p.ch +o.CW=p.CW +r=new A.m5(o,B.aF) +r.uM(this) +return r}, +dR(e2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0=this,e1=e0.a +if((e1.ax?e1.CW:-1)===-1)s=(e1.at?e1.CW:-1)!==-1 +else s=!0 +if(s)return e1.dR(0) +if(!e1.Q&&e1.b!=null){e1=e1.b +e1.toString +return e1}r=new A.jU(e1) +r.kD(e1) +q=e0.a.f +for(p=!1,o=0,n=0,m=0,l=0,k=0,j=0,i=0,h=0,g=null,f=null,e=null;d=r.a1z(),d!==6;){c=r.e +switch(d){case 0:j=q[c] +h=q[c+1] +i=h +k=j +break +case 1:j=q[c+2] +h=q[c+3] +i=h +k=j +break +case 2:if(f==null)f=new A.Wf() +b=c+1 +a=q[c] +a0=b+1 +a1=q[b] +b=a0+1 +a2=q[a0] +a0=b+1 +a3=q[b] +a4=q[a0] +a5=q[a0+1] +s=f.a=Math.min(a,a4) +a6=f.b=Math.min(a1,a5) +a7=f.c=Math.max(a,a4) +a8=f.d=Math.max(a1,a5) +a9=a-2*a2+a4 +if(Math.abs(a9)>0.000244140625){b0=(a-a2)/a9 +if(b0>=0&&b0<=1){b1=1-b0 +b2=b1*b1 +b3=2*b0*b1 +b0*=b0 +b4=b2*a+b3*a2+b0*a4 +b5=b2*a1+b3*a3+b0*a5 +s=Math.min(s,b4) +f.a=s +a7=Math.max(a7,b4) +f.c=a7 +a6=Math.min(a6,b5) +f.b=a6 +a8=Math.max(a8,b5) +f.d=a8}}a9=a1-2*a3+a5 +if(Math.abs(a9)>0.000244140625){b6=(a1-a3)/a9 +if(b6>=0&&b6<=1){b7=1-b6 +b2=b7*b7 +b3=2*b6*b7 +b6*=b6 +b8=b2*a+b3*a2+b6*a4 +b9=b2*a1+b3*a3+b6*a5 +s=Math.min(s,b8) +f.a=s +a7=Math.max(a7,b8) +f.c=a7 +a6=Math.min(a6,b9) +f.b=a6 +a8=Math.max(a8,b9) +f.d=a8}h=a8 +j=a7 +i=a6 +k=s}else{h=a8 +j=a7 +i=a6 +k=s}break +case 3:if(e==null)e=new A.Pt() +s=e1.y[r.b] +b=c+1 +a=q[c] +a0=b+1 +a1=q[b] +b=a0+1 +a2=q[a0] +a0=b+1 +a3=q[b] +a4=q[a0] +a5=q[a0+1] +e.a=Math.min(a,a4) +e.b=Math.min(a1,a5) +e.c=Math.max(a,a4) +e.d=Math.max(a1,a5) +c0=new A.iy() +c1=a4-a +c2=s*(a2-a) +if(c0.iY(s*c1-c1,c1-2*c2,c2)!==0){a6=c0.a +a6.toString +if(a6>=0&&a6<=1){c3=2*(s-1) +a9=(-c3*a6+c3)*a6+1 +c4=a2*s +b4=(((a4-2*c4+a)*a6+2*(c4-a))*a6+a)/a9 +c4=a3*s +b5=(((a5-2*c4+a1)*a6+2*(c4-a1))*a6+a1)/a9 +e.a=Math.min(e.a,b4) +e.c=Math.max(e.c,b4) +e.b=Math.min(e.b,b5) +e.d=Math.max(e.d,b5)}}c5=a5-a1 +c6=s*(a3-a1) +if(c0.iY(s*c5-c5,c5-2*c6,c6)!==0){a6=c0.a +a6.toString +if(a6>=0&&a6<=1){c3=2*(s-1) +a9=(-c3*a6+c3)*a6+1 +c4=a2*s +b8=(((a4-2*c4+a)*a6+2*(c4-a))*a6+a)/a9 +c4=a3*s +b9=(((a5-2*c4+a1)*a6+2*(c4-a1))*a6+a1)/a9 +e.a=Math.min(e.a,b8) +e.c=Math.max(e.c,b8) +e.b=Math.min(e.b,b9) +e.d=Math.max(e.d,b9)}}k=e.a +i=e.b +j=e.c +h=e.d +break +case 4:if(g==null)g=new A.PA() +b=c+1 +c7=q[c] +a0=b+1 +c8=q[b] +b=a0+1 +c9=q[a0] +a0=b+1 +d0=q[b] +b=a0+1 +d1=q[a0] +a0=b+1 +d2=q[b] +d3=q[a0] +d4=q[a0+1] +s=Math.min(c7,d3) +g.a=s +g.c=Math.min(c8,d4) +a6=Math.max(c7,d3) +g.b=a6 +g.d=Math.max(c8,d4) +if(!(c7c9&&c9>d1&&d1>d3 +else a7=!0 +if(!a7){a7=-c7 +d5=a7+3*(c9-d1)+d3 +d6=2*(c7-2*c9+d1) +d7=d6*d6-4*d5*(a7+c9) +if(d7>=0&&Math.abs(d5)>0.000244140625){a7=-d6 +a8=2*d5 +if(d7===0){d8=a7/a8 +b1=1-d8 +if(d8>=0&&d8<=1){a7=3*b1 +b4=b1*b1*b1*c7+a7*b1*d8*c9+a7*d8*d8*d1+d8*d8*d8*d3 +g.a=Math.min(b4,s) +g.b=Math.max(b4,a6)}}else{d7=Math.sqrt(d7) +d8=(a7-d7)/a8 +b1=1-d8 +if(d8>=0&&d8<=1){s=3*b1 +b4=b1*b1*b1*c7+s*b1*d8*c9+s*d8*d8*d1+d8*d8*d8*d3 +g.a=Math.min(b4,g.a) +g.b=Math.max(b4,g.b)}d8=(a7+d7)/a8 +b1=1-d8 +if(d8>=0&&d8<=1){s=3*b1 +b4=b1*b1*b1*c7+s*b1*d8*c9+s*d8*d8*d1+d8*d8*d8*d3 +g.a=Math.min(b4,g.a) +g.b=Math.max(b4,g.b)}}}}if(!(c8d0&&d0>d2&&d2>d4 +else s=!0 +if(!s){s=-c8 +d5=s+3*(d0-d2)+d4 +d6=2*(c8-2*d0+d2) +d7=d6*d6-4*d5*(s+d0) +if(d7>=0&&Math.abs(d5)>0.000244140625){s=-d6 +a6=2*d5 +if(d7===0){d8=s/a6 +b1=1-d8 +if(d8>=0&&d8<=1){s=3*b1 +b5=b1*b1*b1*c8+s*b1*d8*d0+s*d8*d8*d2+d8*d8*d8*d4 +g.c=Math.min(b5,g.c) +g.d=Math.max(b5,g.d)}}else{d7=Math.sqrt(d7) +d8=(s-d7)/a6 +b1=1-d8 +if(d8>=0&&d8<=1){a7=3*b1 +b5=b1*b1*b1*c8+a7*b1*d8*d0+a7*d8*d8*d2+d8*d8*d8*d4 +g.c=Math.min(b5,g.c) +g.d=Math.max(b5,g.d)}s=(s+d7)/a6 +b7=1-s +if(s>=0&&s<=1){a6=3*b7 +b5=b7*b7*b7*c8+a6*b7*s*d0+a6*s*s*d2+s*s*s*d4 +g.c=Math.min(b5,g.c) +g.d=Math.max(b5,g.d)}}}}k=g.a +i=g.c +j=g.b +h=g.d +break}if(!p){l=h +m=j +n=i +o=k +p=!0}else{o=Math.min(o,k) +m=Math.max(m,j) +n=Math.min(n,i) +l=Math.max(l,h)}}d9=p?new A.C(o,n,m,l):B.A +e0.a.dR(0) +return e0.a.b=d9}, +j(a){var s=this.bn(0) +return s}} +A.Vw.prototype={ +um(a){var s=this,r=s.r,q=s.x +if(r!==q||s.w!==s.y){if(isNaN(r)||isNaN(s.w)||isNaN(q)||isNaN(s.y))return 5 +a[0]=r +a[1]=s.w +a[2]=q +r=s.y +a[3]=r +s.r=q +s.w=r +return 1}else{a[0]=q +a[1]=s.y +return 5}}, +pf(){var s,r,q=this +if(q.e===1){q.e=2 +return new A.q(q.x,q.y)}s=q.a.f +r=q.Q +return new A.q(s[r-2],s[r-1])}, +i8(a,b){var s,r,q,p,o,n,m=this,l=m.z,k=m.a +if(l===k.w){if(m.d&&m.e===2){if(1===m.um(b))return 1 +m.d=!1 +return 5}return 6}s=m.z=l+1 +r=k.r[l] +switch(r){case 0:if(m.d){m.z=s-1 +q=m.um(b) +if(q===5)m.d=!1 +return q}if(s===m.c)return 6 +l=k.f +k=m.Q +s=m.Q=k+1 +p=l[k] +m.Q=s+1 +o=l[s] +m.x=p +m.y=o +b[0]=p +b[1]=o +m.e=1 +m.r=p +m.w=o +m.d=!0 +break +case 1:n=m.pf() +l=k.f +k=m.Q +s=m.Q=k+1 +p=l[k] +m.Q=s+1 +o=l[s] +b[0]=n.a +b[1]=n.b +b[2]=p +b[3]=o +m.r=p +m.w=o +break +case 3:++m.f +n=m.pf() +b[0]=n.a +b[1]=n.b +l=k.f +k=m.Q +s=m.Q=k+1 +b[2]=l[k] +k=m.Q=s+1 +b[3]=l[s] +s=m.Q=k+1 +k=l[k] +b[4]=k +m.r=k +m.Q=s+1 +s=l[s] +b[5]=s +m.w=s +break +case 2:n=m.pf() +b[0]=n.a +b[1]=n.b +l=k.f +k=m.Q +s=m.Q=k+1 +b[2]=l[k] +k=m.Q=s+1 +b[3]=l[s] +s=m.Q=k+1 +k=l[k] +b[4]=k +m.r=k +m.Q=s+1 +s=l[s] +b[5]=s +m.w=s +break +case 4:n=m.pf() +b[0]=n.a +b[1]=n.b +l=k.f +k=m.Q +s=m.Q=k+1 +b[2]=l[k] +k=m.Q=s+1 +b[3]=l[s] +s=m.Q=k+1 +b[4]=l[k] +k=m.Q=s+1 +b[5]=l[s] +s=m.Q=k+1 +k=l[k] +b[6]=k +m.r=k +m.Q=s+1 +s=l[s] +b[7]=s +m.w=s +break +case 5:r=m.um(b) +if(r===1)--m.z +else{m.d=!1 +m.e=0}m.r=m.x +m.w=m.y +break +case 6:break +default:throw A.d(A.bY("Unsupport Path verb "+r,null,null))}return r}} +A.nX.prototype={ +dS(a,b,c){var s=a*2,r=this.f +r[s]=b +r[s+1]=c}, +eR(a){var s=this.f,r=a*2 +return new A.q(s[r],s[r+1])}, +zY(){var s=this +if(s.ay)return new A.C(s.eR(0).a,s.eR(0).b,s.eR(1).a,s.eR(2).b) +else return s.w===4?s.Rb():null}, +dR(a){var s +if(this.Q)this.uG() +s=this.a +s.toString +return s}, +Rb(){var s,r,q,p,o,n,m,l,k=this,j=null,i=k.eR(0).a,h=k.eR(0).b,g=k.eR(1).a,f=k.eR(1).b +if(k.r[1]!==1||f!==h)return j +s=g-i +r=k.eR(2).a +q=k.eR(2).b +if(k.r[2]!==1||r!==g)return j +p=q-f +o=k.eR(3) +n=k.eR(3).b +if(k.r[3]!==1||n!==q)return j +if(r-o.a!==s||n-h!==p)return j +m=Math.min(i,g) +l=Math.min(h,q) +return new A.C(m,l,m+Math.abs(s),l+Math.abs(p))}, +L0(){var s,r,q,p,o +if(this.w===2){s=this.r +s=s[0]!==0||s[1]!==1}else s=!0 +if(s)return null +s=this.f +r=s[0] +q=s[1] +p=s[2] +o=s[3] +if(q===o||r===p)return new A.C(r,q,p,o) +return null}, +CC(){var s,r,q,p,o,n,m,l,k,j,i,h,g=this.dR(0),f=A.a([],t.c0),e=new A.jU(this) +e.kD(this) +s=new Float32Array(8) +e.i8(0,s) +for(r=0;q=e.i8(0,s),q!==6;)if(3===q){p=s[2] +o=s[3] +n=p-s[0] +m=o-s[1] +l=s[4] +k=s[5] +if(n!==0){j=Math.abs(n) +i=Math.abs(k-o)}else{i=Math.abs(m) +j=m!==0?Math.abs(l-p):Math.abs(n)}f.push(new A.aF(j,i));++r}l=f[0] +k=f[1] +h=f[2] +return A.Wg(g,f[3],h,l,k)}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.J(b)!==A.w(this))return!1 +return b instanceof A.nX&&this.a_4(b)}, +gu(a){var s=this +return A.L(s.cx,s.f,s.y,s.r,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +a_4(a){var s,r,q,p,o,n,m,l=this +if(l.cx!==a.cx)return!1 +s=l.d +if(s!==a.d)return!1 +r=s*2 +for(q=l.f,p=a.f,o=0;oq.c){s=a+10 +q.c=s +r=new Float32Array(s*2) +B.cO.it(r,0,q.f) +q.f=r}q.d=a}, +w2(a){var s,r,q=this +if(a>q.e){s=a+8 +q.e=s +r=new Uint8Array(s) +B.Q.it(r,0,q.r) +q.r=r}q.w=a}, +w0(a){var s,r,q=this +if(a>q.x){s=a+4 +q.x=s +r=new Float32Array(s) +s=q.y +if(s!=null)B.cO.it(r,0,s) +q.y=r}q.z=a}, +eQ(a,b){var s,r,q,p,o,n,m,l,k,j,i=this,h=b.d,g=i.d+h +i.tM() +i.w1(g) +s=b.f +for(r=h*2-1,q=g*2-1,p=i.f;r>=0;--r,--q)p[q]=s[r] +o=i.w +n=b.w +i.w2(o+n) +for(p=i.r,m=b.r,l=0;lm){l.a=m +l.b=s}else if(s===m)return 1}return o}} +A.YU.prototype={ +HA(a){return(this.a*a+this.c)*a+this.e}, +HB(a){return(this.b*a+this.d)*a+this.f}} +A.Vx.prototype={ +XM(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d=e.a,c=A.acg(d,!0) +for(s=e.f,r=t.wd;q=c.i8(0,s),q!==6;)switch(q){case 0:case 5:break +case 1:e.QH() +break +case 2:p=!A.ach(s)?A.alP(s):0 +o=e.BW(s[0],s[1],s[2],s[3],s[4],s[5]) +e.d+=p>0?o+e.BW(s[4],s[5],s[6],s[7],s[8],s[9]):o +break +case 3:n=d.y[c.f] +m=s[0] +l=s[1] +k=s[2] +j=s[3] +i=s[4] +h=s[5] +g=A.ach(s) +f=A.a([],r) +new A.eN(m,l,k,j,i,h,n).YI(f) +e.BV(f[0]) +if(!g&&f.length===2)e.BV(f[1]) +break +case 4:e.QE() +break}}, +QH(){var s,r,q,p,o,n=this,m=n.f,l=m[0],k=m[1],j=m[2],i=m[3] +if(k>i){s=k +r=i +q=-1}else{s=i +r=k +q=1}m=n.c +if(ms)return +p=n.b +if(A.Vy(p,m,l,k,j,i)){++n.e +return}if(m===s)return +o=(j-l)*(m-k)-(i-k)*(p-l) +if(o===0){if(p!==j||m!==i)++n.e +q=0}else if(A.amG(o)===q)q=0 +n.d+=q}, +BW(a,b,c,d,e,f){var s,r,q,p,o,n,m,l,k=this +if(b>f){s=b +r=f +q=-1}else{s=f +r=b +q=1}p=k.c +if(ps)return 0 +o=k.b +if(A.Vy(o,p,a,b,e,f)){++k.e +return 0}if(p===s)return 0 +n=new A.iy() +if(0===n.iY(b-2*d+f,2*(d-b),b-p))m=q===1?a:e +else{l=n.a +l.toString +m=((e-2*c+a)*l+2*(c-a))*l+a}if(Math.abs(m-o)<0.000244140625)if(o!==e||p!==f){++k.e +return 0}return mf){s=g +r=f +q=-1}else{s=f +r=g +q=1}p=h.c +if(ps)return +o=h.b +n=a.a +m=a.e +if(A.Vy(o,p,n,g,m,f)){++h.e +return}if(p===s)return +l=a.r +k=a.d*l-p*l+p +j=new A.iy() +if(0===j.iY(f+(g-2*k),2*(k-g),g-p))n=q===1?n:m +else{i=j.a +i.toString +n=A.ajm(n,a.c,m,l,i)/A.ajl(l,i)}if(Math.abs(n-o)<0.000244140625)if(o!==m||p!==a.f){++h.e +return}p=h.d +h.d=p+(nq){p=b +o=q +n=-1}else{p=q +o=b +n=1}m=g.c +if(mp)return +l=g.b +if(A.Vy(l,m,d,b,r,q)){++g.e +return}if(m===p)return +k=Math.min(d,Math.min(a,Math.min(s,r))) +j=Math.max(d,Math.max(a,Math.max(s,r))) +if(lj){g.d+=n +return}i=A.af8(f,a0,m) +if(i==null)return +h=A.afo(d,a,s,r,i) +if(Math.abs(h-l)<0.000244140625)if(l!==r||m!==q){++g.e +return}f=g.d +g.d=f+(h1,o=null,n=1/0,m=0;m<$.j3.length;++m){l=$.j3[m] +k=self.window.devicePixelRatio +if(k===0)k=1 +if(l.y!==k)continue +k=l.a +j=k.c-k.a +k=k.d-k.b +i=j*k +h=c.dy +g=self.window.devicePixelRatio +if(l.r>=B.c.cr(s*(g===0?1:g))+2){g=self.window.devicePixelRatio +f=l.w>=B.c.cr(r*(g===0?1:g))+2&&l.ay===h}else f=!1 +e=i4)){if(j===b&&k===a){o=l +break}n=i +o=l}}if(o!=null){B.b.v($.j3,o) +o.swR(0,a0) +o.b=c.fx +return o}d=A.aiJ(a0,c.cy.b.d,c.dy) +d.b=c.fx +return d}, +Bs(){A.n(this.d.style,"transform","translate("+A.h(this.CW)+"px, "+A.h(this.cx)+"px)")}, +ep(){this.Bs() +this.pd(null)}, +aS(){this.uI(null) +this.fr=!0 +this.AJ()}, +b7(a,b){var s,r,q=this +q.AN(0,b) +q.fx=b.fx +if(b!==q)b.fx=null +if(q.CW!==b.CW||q.cx!==b.cx)q.Bs() +q.uI(b) +if(q.cy===b.cy){s=q.ch +r=s instanceof A.i2&&q.dy!==s.ay +if(q.fr||r)q.pd(b) +else q.ch=b.ch}else q.pd(b)}, +jh(){var s=this +s.AM() +s.uI(s) +if(s.fr)s.pd(s)}, +hW(){A.Np(this.ch) +this.ch=null +this.AK()}} +A.VB.prototype={ +$0(){var s,r=this.a,q=r.fy +q.toString +s=r.ch=r.RU(q) +s.b=r.fx +q=r.d +q.toString +A.a9H(q) +r.d.append(s.c) +s.L(0) +q=r.cy.b +q.toString +r=r.fy +r.toString +q.wI(s,r) +s.lh()}, +$S:0} +A.WF.prototype={ +wI(a,b){var s,r,q,p,o,n,m,l,k,j +try{m=this.b +m.toString +m=A.afT(b,m) +l=this.c +k=l.length +if(m){s=k +for(r=0;rq*q+p*p||g*g+f*f>o*o+n*n||e*e+d*d>m*m+l*l||c*c+b*b>k*k+j*j)return +a3.e=a3.d.c=!0 +a=A.pA(b2) +b2.b=!0 +a0=new A.D5(b0,b1,b2.a) +q=$.ae().c9() +q.snS(B.cQ) +q.en(b0) +q.en(b1) +q.dn(0) +a0.x=q +a1=Math.min(a5,a7) +a2=Math.max(a5,a7) +a3.a.kp(a1-a,Math.min(a6,a8)-a,a2+a,Math.max(a6,a8)+a,a0) +a3.c.push(a0)}, +cs(a,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b=this +if(a0.a.w==null){t.q.a(a) +s=a.a.zY() +if(s!=null){b.bK(s,a0) +return}r=a.a +q=r.ax?r.CC():null +if(q!=null){b.cg(q,a0) +return}p=a.a.L0() +if(p!=null){r=a0.a.c +r=(r==null?0:r)===0}else r=!1 +if(r){r=p.a +o=p.c +n=Math.min(r,o) +m=p.b +l=p.d +k=Math.min(m,l) +r=o-r +j=Math.abs(r) +m=l-m +i=Math.abs(m) +h=m===0?1:i +g=r===0?1:j +a0.sco(0,B.aj) +b.bK(new A.C(n,k,n+g,k+h),a0) +return}}t.q.a(a) +if(a.a.w!==0){b.e=b.d.c=!0 +f=a.dR(0) +e=A.pA(a0) +if(e!==0)f=f.dc(e) +r=a.a +o=new A.nX(r.f,r.r) +o.e=r.e +o.w=r.w +o.c=r.c +o.d=r.d +o.x=r.x +o.z=r.z +o.y=r.y +m=r.Q +o.Q=m +if(!m){o.a=r.a +o.b=r.b +o.as=r.as}o.cx=r.cx +o.at=r.at +o.ax=r.ax +o.ay=r.ay +o.ch=r.ch +o.CW=r.CW +d=new A.m5(o,B.aF) +d.uM(a) +a0.b=!0 +c=new A.Db(d,a0.a) +b.a.ir(f,c) +d.b=a.b +b.c.push(c)}}, +f_(a,b){var s,r,q,p,o=this +t.sk.a(a) +if(!a.e)return +o.e=!0 +s=o.d +s.c=!0 +s.b=!0 +r=new A.Da(a,b) +q=a.gdC().z +s=b.a +p=b.b +o.a.kp(s+q.a,p+q.b,s+q.c,p+q.d,r) +o.c.push(r)}} +A.c6.prototype={} +A.qS.prototype={ +a0W(a){var s=this +if(s.a)return!0 +return s.ea.d||s.da.c}} +A.tz.prototype={ +aK(a){a.bm(0)}, +j(a){var s=this.bn(0) +return s}} +A.Df.prototype={ +aK(a){a.b6(0)}, +j(a){var s=this.bn(0) +return s}} +A.Dj.prototype={ +aK(a){a.ae(0,this.a,this.b)}, +j(a){var s=this.bn(0) +return s}} +A.Dh.prototype={ +aK(a){a.cd(0,this.a,this.b)}, +j(a){var s=this.bn(0) +return s}} +A.Dg.prototype={ +aK(a){a.fe(0,this.a)}, +j(a){var s=this.bn(0) +return s}} +A.Di.prototype={ +aK(a){a.V(0,this.a)}, +j(a){var s=this.bn(0) +return s}} +A.D3.prototype={ +aK(a){a.hS(this.f,this.r)}, +j(a){var s=this.bn(0) +return s}} +A.D2.prototype={ +aK(a){a.jL(this.f)}, +j(a){var s=this.bn(0) +return s}} +A.D1.prototype={ +aK(a){a.eW(0,this.f)}, +j(a){var s=this.bn(0) +return s}} +A.D7.prototype={ +aK(a){a.hX(this.f,this.r,this.w)}, +j(a){var s=this.bn(0) +return s}} +A.D9.prototype={ +aK(a){a.hd(this.f)}, +j(a){var s=this.bn(0) +return s}} +A.Dd.prototype={ +aK(a){a.bK(this.f,this.r)}, +j(a){var s=this.bn(0) +return s}} +A.Dc.prototype={ +aK(a){a.cg(this.f,this.r)}, +j(a){var s=this.bn(0) +return s}} +A.D5.prototype={ +aK(a){var s=this.w +if(s.b==null)s.b=B.aj +a.cs(this.x,s)}, +j(a){var s=this.bn(0) +return s}} +A.D8.prototype={ +aK(a){a.hY(this.f,this.r)}, +j(a){var s=this.bn(0) +return s}} +A.D4.prototype={ +aK(a){a.e6(this.f,this.r,this.w)}, +j(a){var s=this.bn(0) +return s}} +A.Db.prototype={ +aK(a){a.cs(this.f,this.r)}, +j(a){var s=this.bn(0) +return s}} +A.De.prototype={ +aK(a){var s=this +a.he(s.f,s.r,s.w,s.x)}, +j(a){var s=this.bn(0) +return s}} +A.D6.prototype={ +aK(a){var s=this +a.hc(s.f,s.r,s.w,s.x)}, +j(a){var s=this.bn(0) +return s}} +A.Da.prototype={ +aK(a){a.f_(this.f,this.r)}, +j(a){var s=this.bn(0) +return s}} +A.a3w.prototype={ +hS(a,b){var s,r,q,p,o=this,n=a.a,m=a.b,l=a.c,k=a.d +if(!o.x){s=$.aa0() +s[0]=n +s[1]=m +s[2]=l +s[3]=k +A.a9O(o.y,s) +n=s[0] +m=s[1] +l=s[2] +k=s[3]}if(!o.z){o.Q=n +o.as=m +o.at=l +o.ax=k +o.z=!0 +r=k +q=l +p=m +s=n}else{s=o.Q +if(n>s){o.Q=n +s=n}p=o.as +if(m>p){o.as=m +p=m}q=o.at +if(l=q||p>=r)b.a=!0 +else{b.b=s +b.c=p +b.d=q +b.e=r}}, +ir(a,b){this.kp(a.a,a.b,a.c,a.d,b)}, +kp(a,b,c,d,e){var s,r,q,p,o,n,m,l,k,j=this +if(a===c||b===d){e.a=!0 +return}if(!j.x){s=$.aa0() +s[0]=a +s[1]=b +s[2]=c +s[3]=d +A.a9O(j.y,s) +r=s[0] +q=s[1] +p=s[2] +o=s[3]}else{o=d +p=c +q=b +r=a}if(j.z){n=j.at +if(r>=n){e.a=!0 +return}m=j.Q +if(p<=m){e.a=!0 +return}l=j.ax +if(q>=l){e.a=!0 +return}k=j.as +if(o<=k){e.a=!0 +return}if(rn)p=n +if(ql)o=l}e.b=r +e.c=q +e.d=p +e.e=o +if(j.b){j.c=Math.min(Math.min(j.c,r),p) +j.e=Math.max(Math.max(j.e,r),p) +j.d=Math.min(Math.min(j.d,q),o) +j.f=Math.max(Math.max(j.f,q),o)}else{j.c=Math.min(r,p) +j.e=Math.max(r,p) +j.d=Math.min(q,o) +j.f=Math.max(q,o)}j.b=!0}, +A4(){var s=this,r=s.y,q=new A.bk(new Float32Array(16)) +q.az(r) +s.r.push(q) +r=s.z?new A.C(s.Q,s.as,s.at,s.ax):null +s.w.push(r)}, +YZ(){var s,r,q,p,o,n,m,l,k,j,i=this +if(!i.b)return B.A +s=i.a +r=s.a +if(isNaN(r))r=-1/0 +q=s.c +if(isNaN(q))q=1/0 +p=s.b +if(isNaN(p))p=-1/0 +o=s.d +if(isNaN(o))o=1/0 +s=i.c +n=i.e +m=Math.min(s,n) +l=Math.max(s,n) +n=i.d +s=i.f +k=Math.min(n,s) +j=Math.max(n,s) +if(l1;)s.pop() +t.kF.a(B.b.gG(s)).ot(new A.W4())}, +$S:0} +A.Zw.prototype={ +$0(){var s,r,q=t.kF,p=this.a.a +if($.Zu==null)q.a(B.b.gG(p)).aS() +else{s=q.a(B.b.gG(p)) +r=$.Zu +r.toString +s.b7(0,r)}A.aqI(q.a(B.b.gG(p))) +$.Zu=q.a(B.b.gG(p)) +return new A.ot(q.a(B.b.gG(p)).d)}, +$S:355} +A.r0.prototype={ +x0(c1,c2,c3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9=this,b0="createPattern",b1="u_ctransform",b2="u_textransform",b3="v_texcoord",b4="texture2D",b5="uniform4f",b6="bindBuffer",b7="texParameteri",b8=a9.a,b9=a9.b,c0=b8===B.bx +if(!c0&&b9!==B.bx){c0=a9.W2(a9.e,b8,b9) +c0.toString +s=b8===B.es||b8===B.et +r=b9===B.es||b9===B.et +if(s)q=r?"repeat":"repeat-x" +else q=r?"repeat-y":"no-repeat" +q=A.x(c1,b0,[c0,q]) +q.toString +return q}else{if($.Nv==null)$.Nv=new A.Mj() +c2.toString +q=$.bC() +p=q.x +if(p==null){o=self.window.devicePixelRatio +p=o===0?1:o}o=c2.a +n=B.c.cr((c2.c-o)*p) +m=c2.b +l=B.c.cr((c2.d-m)*p) +k=$.dn +if(k==null){k=$.dn=A.kw() +j=k}else j=k +i=k===2 +h=$.adz +if(h==null){g=A.acR(j) +g.n6(11,"position") +g.eo(14,b1) +g.eo(11,"u_scale") +g.eo(11,b2) +g.eo(11,"u_shift") +g.FO(9,b3) +f=new A.lZ("main",A.a([],t.s)) +g.c.push(f) +f.c0(u.y) +f.c0("v_texcoord = vec2((u_textransform.z + position.x) * u_textransform.x, ((u_textransform.w + position.y) * u_textransform.y));") +h=$.adz=g.aS()}k=$.dn +g=A.acS(k==null?$.dn=A.kw():k) +g.e=1 +g.n6(9,b3) +g.eo(16,"u_texture") +f=new A.lZ("main",A.a([],t.s)) +g.c.push(f) +if(!i)c0=c0&&b9===B.bx +else c0=!0 +if(c0){c0=g.gxQ() +k=g.y?"texture":b4 +f.c0(c0.a+" = "+k+"(u_texture, v_texcoord);")}else{f.FU("v_texcoord.x","u",b8) +f.FU("v_texcoord.y","v",b9) +f.c0("vec2 uv = vec2(u, v);") +c0=g.gxQ() +k=g.y?"texture":b4 +f.c0(c0.a+" = "+k+"(u_texture, uv);")}e=g.aS() +d=A.abn(A.a8e(n,l)) +d.fr=n +d.fx=l +c0=d.a +k=d.Gk(h,e).a +A.x(c0,"useProgram",[k]) +c=new Float32Array(12) +b=c2.ae(0,-o,-m) +j=b.a +c[0]=j +a=b.b +c[1]=a +a0=b.c +c[2]=a0 +c[3]=a +c[4]=a0 +a1=b.d +c[5]=a1 +c[6]=a0 +c[7]=a1 +c[8]=j +c[9]=a1 +c[10]=j +c[11]=a +a2=A.x(c0,"getAttribLocation",[k,"position"]) +if(a2==null){A.a2(A.bV("position not found")) +a3=null}else a3=a2 +a4=d.fR(0,k,b1) +j=new Float32Array(16) +a5=new A.bk(j) +a5.az(new A.bk(a9.c)) +a5.ae(0,-0.0,-0.0) +A.x(c0,"uniformMatrix4fv",[a4,!1,j]) +A.x(c0,b5,[d.fR(0,k,"u_scale"),2/n,-2/l,1,1]) +A.x(c0,b5,[d.fR(0,k,"u_shift"),-1,1,0,0]) +a9.f=o!==0||m!==0 +j=a9.e +A.x(c0,b5,[d.fR(0,k,b2),1/j.d,1/j.e,o,m]) +m=c0.createBuffer() +m.toString +if(i){a6=c0.createVertexArray() +a6.toString +A.x(c0,"bindVertexArray",[a6])}else a6=null +A.x(c0,"enableVertexAttribArray",[a3]) +A.x(c0,b6,[d.ghn(),m]) +q=q.x +if(q==null){q=self.window.devicePixelRatio +if(q===0)q=1}A.aqA(d,c,q) +A.x(c0,"vertexAttribPointer",[a3,2,d.gIL(),!1,0,0]) +a7=c0.createTexture() +q=d.dx +if(q==null)q=d.dx=c0.TEXTURE0 +c0.activeTexture(q) +A.x(c0,"bindTexture",[d.gj8(),a7]) +A.x(c0,"texImage2D",[d.gj8(),0,d.gIM(),d.gIM(),d.gIQ(),j.a]) +if(i){A.x(c0,b7,[d.gj8(),d.gIN(),A.ag_(d,b8)]) +A.x(c0,b7,[d.gj8(),d.gIO(),A.ag_(d,b9)]) +A.x(c0,"generateMipmap",[d.gj8()])}else{A.x(c0,b7,[d.gj8(),d.gIN(),d.grp()]) +A.x(c0,b7,[d.gj8(),d.gIO(),d.grp()]) +q=d.gj8() +o=d.db +if(o==null)o=d.db=c0.TEXTURE_MIN_FILTER +m=d.cy +A.x(c0,b7,[q,o,m==null?d.cy=c0.LINEAR:m])}A.x(c0,"clear",[d.gIK()]) +A.x(c0,"drawArrays",[d.X9(B.MM),0,6]) +if(a6!=null)c0.bindVertexArray(null) +a8=d.JC(!1) +A.x(c0,b6,[d.ghn(),null]) +A.x(c0,b6,[d.goa(),null]) +a8.toString +c0=A.x(c1,b0,[a8,"no-repeat"]) +c0.toString +return c0}}, +W2(a1,a2,a3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=a2===B.et?2:1,a0=a3===B.et?2:1 +if(a===1&&a0===1)return a1.a +s=a1.d +r=a1.e +q=s*a +p=r*a0 +o=A.a8e(q,p) +n=o.a +if(n!=null)n=A.ab6(n,"2d",null) +else{n=o.b +n.toString +n=A.ff(n,"2d",null)}n.toString +for(m=-2*r,l=-2*s,k=a1.a,j=0;j>>24&255)<1}, +$S:354} +A.YM.prototype={} +A.r_.prototype={} +A.Sq.prototype={ +x0(a,b,c){var s,r,q,p,o,n,m,l,k,j,i=this,h=i.f +if(h===B.bx||h===B.eu){s=i.r +r=b.a +q=b.b +p=i.b +o=i.c +n=p.a +m=o.a +p=p.b +o=o.b +if(s!=null){l=(n+m)/2-r +k=(p+o)/2-q +s.Ke(0,n-l,p-k) +p=s.b +n=s.c +s.Ke(0,m-l,o-k) +j=a.createLinearGradient(p+l-r,n+k-q,s.b+l-r,s.c+k-q)}else j=a.createLinearGradient(n-r,p-q,m-r,o-q) +A.aoR(j,i.d,i.e,h===B.eu) +return j}else{h=A.x(a,"createPattern",[i.GN(b,c,!1),"no-repeat"]) +h.toString +return h}}, +GN(b7,b8,b9){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2=this,b3="u_resolution",b4="m_gradient",b5=b7.c,b6=b7.a +b5-=b6 +s=B.c.cr(b5) +r=b7.d +q=b7.b +r-=q +p=B.c.cr(r) +if($.Nv==null)$.Nv=new A.Mj() +o=$.aa7() +o.b=!0 +n=o.a +if(n==null)o.a=A.a8e(s,p) +else if(s!==n.c&&p!==n.d){n.c=s +n.d=p +m=n.a +if(m!=null){m.width=s +n=n.a +n.toString +n.height=p}else{m=n.b +if(m!=null){A.n9(m,s) +m=n.b +m.toString +A.n8(m,p) +m=n.b +m.toString +n.Fd(m)}}}o=o.a +o.toString +l=A.abn(o) +l.fr=s +l.fx=p +k=A.alJ(b2.d,b2.e) +o=$.ady +if(o==null){o=$.dn +j=A.acR(o==null?$.dn=A.kw():o) +j.n6(11,"position") +j.n6(11,"color") +j.eo(14,"u_ctransform") +j.eo(11,"u_scale") +j.eo(11,"u_shift") +j.FO(11,"v_color") +i=new A.lZ("main",A.a([],t.s)) +j.c.push(i) +i.c0(u.y) +i.c0("v_color = color.zyxw;") +o=$.ady=j.aS()}n=b2.f +m=$.dn +j=A.acS(m==null?$.dn=A.kw():m) +j.e=1 +j.n6(11,"v_color") +j.eo(9,b3) +j.eo(14,b4) +h=j.gxQ() +i=new A.lZ("main",A.a([],t.s)) +j.c.push(i) +i.c0("vec4 localCoord = m_gradient * vec4(gl_FragCoord.x, u_resolution.y - gl_FragCoord.y, 0, 1);") +i.c0("float st = localCoord.x;") +i.c0(h.a+" = "+A.aql(j,i,k,n)+" * scale + bias;") +g=l.Gk(o,j.aS()) +o=l.a +m=g.a +A.x(o,"useProgram",[m]) +f=b2.b +e=f.a +d=f.b +f=b2.c +c=f.a +b=f.b +a=c-e +a0=b-d +a1=Math.sqrt(a*a+a0*a0) +f=a1<11920929e-14 +a2=f?0:-a0/a1 +a3=f?1:a/a1 +a4=n!==B.bx +a5=a4?b5/2:(e+c)/2-b6 +a6=a4?r/2:(d+b)/2-q +a7=A.cY() +a7.fS(-a5,-a6,0) +a8=A.cY() +a9=a8.a +a9[0]=a3 +a9[1]=a2 +a9[4]=-a2 +a9[5]=a3 +b0=A.cY() +b0.a2L(0,0.5) +if(a1>11920929e-14)b0.aO(0,1/a1) +b5=b2.r +if(b5!=null){b5=b5.a +b0.cd(0,1,-1) +b0.ae(0,-b7.gav().a,-b7.gav().b) +b0.cC(0,new A.bk(b5)) +b0.ae(0,b7.gav().a,b7.gav().b) +b0.cd(0,1,-1)}b0.cC(0,a8) +b0.cC(0,a7) +k.Lq(l,g) +A.x(o,"uniformMatrix4fv",[l.fR(0,m,b4),!1,b0.a]) +A.x(o,"uniform2f",[l.fR(0,m,b3),s,p]) +b1=new A.Sr(b9,b7,l,g,k,s,p).$0() +$.aa7().b=!1 +return b1}} +A.Sr.prototype={ +$0(){var s,r,q,p=this,o="bindBuffer",n=$.Nv,m=p.b,l=p.c,k=p.d,j=p.e,i=p.f,h=p.r,g=m.c,f=m.a,e=m.d +m=m.b +s=l.a +if(p.a){n.Hn(new A.C(0,0,0+(g-f),0+(e-m)),l,k,j,i,h) +n=l.fr +r=A.pE(l.fx,n) +n=A.ff(r,"2d",null) +n.toString +l.Hm(0,t.e.a(n),0,0) +n=r.toDataURL("image/png") +A.n9(r,0) +A.n8(r,0) +A.x(s,o,[l.ghn(),null]) +A.x(s,o,[l.goa(),null]) +return n}else{n.Hn(new A.C(0,0,0+(g-f),0+(e-m)),l,k,j,i,h) +q=l.JC(j.e) +A.x(s,o,[l.ghn(),null]) +A.x(s,o,[l.goa(),null]) +q.toString +return q}}, +$S:344} +A.R0.prototype={} +A.Cz.prototype={} +A.Up.prototype={} +A.ER.prototype={ +gxQ(){var s=this.Q +if(s==null)s=this.Q=new A.lY(this.y?"gFragColor":"gl_FragColor",11,3) +return s}, +n6(a,b){var s=new A.lY(b,a,1) +this.b.push(s) +return s}, +eo(a,b){var s=new A.lY(b,a,2) +this.b.push(s) +return s}, +FO(a,b){var s=new A.lY(b,a,3) +this.b.push(s) +return s}, +FH(a,b){var s,r,q=this,p="varying ",o=b.c +switch(o){case 0:q.as.a+="const " +break +case 1:if(q.y)s="in " +else s=q.z?p:"attribute " +q.as.a+=s +break +case 2:q.as.a+="uniform " +break +case 3:s=q.y?"out ":p +q.as.a+=s +break}s=q.as +r=s.a+=A.amZ(b.b)+" "+b.a +if(o===0)o=s.a=r+" = " +else o=r +s.a=o+";\n"}, +aS(){var s,r,q,p,o,n=this,m=n.y +if(m)n.as.a+="#version 300 es\n" +s=n.e +if(s!=null){if(s===0)s="lowp" +else s=s===1?"mediump":"highp" +n.as.a+="precision "+s+" float;\n"}if(m&&n.Q!=null){m=n.Q +m.toString +n.FH(n.as,m)}for(m=n.b,s=m.length,r=n.as,q=0;q=0;--r,p=n){a.toString +o=B.b.ka(a,r)!==-1&&B.b.q(m,r) +n=s[r].d +n.toString +if(!o)if(p==null)q.append(n) +else q.insertBefore(n,p)}}, +Uu(a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this.x,d=e.length,c=a0.x,b=c.length,a=A.a([],t.g) +for(s=0;s1&&B.d.a8(e,0)<127&&B.d.a8(e,1)<127) +o=A.aoX(new A.TO(h,e,a,p,q),t.S) +if(f.type!=="keydown")if(h.b){r=f.code +if(r==null)r=g +r.toString +r=r==="CapsLock" +n=r}else n=!1 +else n=!0 +if(h.b){r=f.code +if(r==null)r=g +r.toString +r=r==="CapsLock"}else r=!1 +if(r){h.Eg(B.r,new A.TP(s,q,o),new A.TQ(h,q)) +m=B.az}else if(n){r=h.f +if(r.i(0,q)!=null){l=f.repeat +if(l==null)l=g +if(l===!0)m=B.zR +else{l=h.d +l.toString +l.$1(new A.e5(s,B.aq,q,o.$0(),g,!0)) +r.v(0,q) +m=B.az}}else m=B.az}else{if(h.f.i(0,q)==null){f.preventDefault() +return}m=B.aq}r=h.f +k=r.i(0,q) +switch(m.a){case 0:j=o.$0() +break +case 1:j=g +break +case 2:j=k +break +default:j=g}l=j==null +if(l)r.v(0,q) +else r.l(0,q,j) +$.aho().P(0,new A.TR(h,o,a,s)) +if(p)if(!l)h.WS(q,o.$0(),s) +else{r=h.r.v(0,q) +if(r!=null)r.$0()}if(p)i=e +else i=g +e=k==null?o.$0():k +r=m===B.aq?g:i +if(h.d.$1(new A.e5(s,m,q,e,r,!1)))f.preventDefault()}, +j0(a){var s=this,r={} +r.a=!1 +s.d=new A.TW(r,s) +try{s.ST(a)}finally{if(!r.a)s.d.$1(B.zQ) +s.d=null}}, +ua(a,b,c,d,e){var s=this,r=$.ahv(),q=$.ahw(),p=$.aa2() +s.q2(r,q,p,a?B.az:B.aq,e) +r=$.aad() +q=$.aae() +p=$.aa3() +s.q2(r,q,p,b?B.az:B.aq,e) +r=$.ahx() +q=$.ahy() +p=$.aa4() +s.q2(r,q,p,c?B.az:B.aq,e) +r=$.ahz() +q=$.ahA() +p=$.aa5() +s.q2(r,q,p,d?B.az:B.aq,e)}, +q2(a,b,c,d,e){var s,r=this,q=r.f,p=q.a3(0,a),o=q.a3(0,b),n=p||o,m=d===B.az&&!n,l=d===B.aq&&n +if(m){r.a.$1(new A.e5(A.a98(e),B.az,a,c,null,!0)) +q.l(0,a,c)}if(l&&p){s=q.i(0,a) +s.toString +r.ET(e,a,s)}if(l&&o){q=q.i(0,b) +q.toString +r.ET(e,b,q)}}, +ET(a,b,c){this.a.$1(new A.e5(A.a98(a),B.aq,b,c,null,!0)) +this.f.v(0,b)}} +A.TS.prototype={ +$1(a){var s=this +if(!s.a.a&&!s.b.e){s.c.$0() +s.b.a.$1(s.d.$0())}}, +$S:17} +A.TT.prototype={ +$0(){this.a.a=!0}, +$S:0} +A.TU.prototype={ +$0(){return new A.e5(new A.aQ(this.a.a+2e6),B.aq,this.b,this.c,null,!0)}, +$S:97} +A.TV.prototype={ +$0(){this.a.f.v(0,this.b)}, +$S:0} +A.TO.prototype={ +$0(){var s,r,q,p,o,n=this,m=null,l=n.b,k=B.Dt.i(0,l) +if(k!=null)return k +s=n.c.a +r=s.key +if(B.p3.a3(0,r==null?m:r)){l=s.key +if(l==null)l=m +l.toString +l=B.p3.i(0,l) +q=l==null?m:l[B.c.K(s.location)] +q.toString +return q}if(n.d){r=s.code +if(r==null)r=m +p=s.key +if(p==null)p=m +o=n.a.c.KN(r,p,B.c.K(s.keyCode)) +if(o!=null)return o}if(l==="Dead"){l=s.altKey +r=s.ctrlKey +p=s.shiftKey +s=s.metaKey +l=l?1073741824:0 +r=r?268435456:0 +p=p?536870912:0 +s=s?2147483648:0 +return n.e+(l+r+p+s)+98784247808}return B.d.gu(l)+98784247808}, +$S:53} +A.TP.prototype={ +$0(){return new A.e5(this.a,B.aq,this.b,this.c.$0(),null,!0)}, +$S:97} +A.TQ.prototype={ +$0(){this.a.f.v(0,this.b)}, +$S:0} +A.TR.prototype={ +$2(a,b){var s,r,q=this +if(J.e(q.b.$0(),a))return +s=q.a +r=s.f +if(r.Z5(0,a)&&!b.$1(q.c))r.zg(r,new A.TN(s,a,q.d))}, +$S:311} +A.TN.prototype={ +$2(a,b){var s=this.b +if(b!==s)return!1 +this.a.d.$1(new A.e5(this.c,B.aq,a,s,null,!0)) +return!0}, +$S:310} +A.TW.prototype={ +$1(a){this.a.a=!0 +return this.b.a.$1(a)}, +$S:70} +A.UE.prototype={} +A.OC.prototype={ +gXe(){var s=this.a +s===$&&A.c() +return s}, +m(){var s=this +if(s.c||s.gjl()==null)return +s.c=!0 +s.Xf()}, +nM(){var s=0,r=A.Y(t.H),q=this +var $async$nM=A.Z(function(a,b){if(a===1)return A.V(b,r) +while(true)switch(s){case 0:s=q.gjl()!=null?2:3 +break +case 2:s=4 +return A.a1(q.hA(),$async$nM) +case 4:s=5 +return A.a1(q.gjl().m6(0,-1),$async$nM) +case 5:case 3:return A.W(null,r)}}) +return A.X($async$nM,r)}, +ghU(){var s=this.gjl() +s=s==null?null:s.zW() +return s==null?"/":s}, +gbj(){var s=this.gjl() +return s==null?null:s.tp(0)}, +Xf(){return this.gXe().$0()}} +A.tc.prototype={ +Pn(a){var s,r=this,q=r.d +if(q==null)return +r.a=q.qh(r.gyN(r)) +if(!r.vr(r.gbj())){s=t.z +q.jg(0,A.aL(["serialCount",0,"state",r.gbj()],s,s),"flutter",r.ghU())}r.e=r.guR()}, +guR(){if(this.vr(this.gbj())){var s=this.gbj() +s.toString +return B.c.K(A.Ng(J.bc(t.f.a(s),"serialCount")))}return 0}, +vr(a){return t.f.b(a)&&J.bc(a,"serialCount")!=null}, +oY(a,b,c){var s,r,q=this.d +if(q!=null){s=t.z +r=this.e +if(b){r===$&&A.c() +s=A.aL(["serialCount",r,"state",c],s,s) +a.toString +q.jg(0,s,"flutter",a)}else{r===$&&A.c();++r +this.e=r +s=A.aL(["serialCount",r,"state",c],s,s) +a.toString +q.z1(0,s,"flutter",a)}}}, +Ah(a){return this.oY(a,!1,null)}, +yO(a,b){var s,r,q,p,o=this +if(!o.vr(b)){s=o.d +s.toString +r=o.e +r===$&&A.c() +q=t.z +s.jg(0,A.aL(["serialCount",r+1,"state",b],q,q),"flutter",o.ghU())}o.e=o.guR() +s=$.aB() +r=o.ghU() +t.yq.a(b) +q=b==null?null:J.bc(b,"state") +p=t.z +s.fC("flutter/navigation",B.ad.fu(new A.eW("pushRouteInformation",A.aL(["location",r,"state",q],p,p))),new A.UO())}, +hA(){var s=0,r=A.Y(t.H),q,p=this,o,n,m +var $async$hA=A.Z(function(a,b){if(a===1)return A.V(b,r) +while(true)switch(s){case 0:p.m() +if(p.b||p.d==null){s=1 +break}p.b=!0 +o=p.guR() +s=o>0?3:4 +break +case 3:s=5 +return A.a1(p.d.m6(0,-o),$async$hA) +case 5:case 4:n=p.gbj() +n.toString +t.f.a(n) +m=p.d +m.toString +m.jg(0,J.bc(n,"state"),"flutter",p.ghU()) +case 1:return A.W(q,r)}}) +return A.X($async$hA,r)}, +gjl(){return this.d}} +A.UO.prototype={ +$1(a){}, +$S:14} +A.uI.prototype={ +Pt(a){var s,r,q=this,p=q.d +if(p==null)return +q.a=p.qh(q.gyN(q)) +s=q.ghU() +r=self.window.history.state +if(r==null)r=null +else{r=A.Nr(r) +r.toString}if(!A.a8x(r)){p.jg(0,A.aL(["origin",!0,"state",q.gbj()],t.N,t.z),"origin","") +q.WC(p,s)}}, +oY(a,b,c){var s=this.d +if(s!=null)this.w8(s,a,!0)}, +Ah(a){return this.oY(a,!1,null)}, +yO(a,b){var s,r=this,q="flutter/navigation" +if(A.acU(b)){s=r.d +s.toString +r.WB(s) +$.aB().fC(q,B.ad.fu(B.DV),new A.YR())}else if(A.a8x(b)){s=r.f +s.toString +r.f=null +$.aB().fC(q,B.ad.fu(new A.eW("pushRoute",s)),new A.YS())}else{r.f=r.ghU() +r.d.m6(0,-1)}}, +w8(a,b,c){var s +if(b==null)b=this.ghU() +s=this.e +if(c)a.jg(0,s,"flutter",b) +else a.z1(0,s,"flutter",b)}, +WC(a,b){return this.w8(a,b,!1)}, +WB(a){return this.w8(a,null,!1)}, +hA(){var s=0,r=A.Y(t.H),q,p=this,o,n +var $async$hA=A.Z(function(a,b){if(a===1)return A.V(b,r) +while(true)switch(s){case 0:p.m() +if(p.b||p.d==null){s=1 +break}p.b=!0 +o=p.d +s=3 +return A.a1(o.m6(0,-1),$async$hA) +case 3:n=p.gbj() +n.toString +o.jg(0,J.bc(t.f.a(n),"state"),"flutter",p.ghU()) +case 1:return A.W(q,r)}}) +return A.X($async$hA,r)}, +gjl(){return this.d}} +A.YR.prototype={ +$1(a){}, +$S:14} +A.YS.prototype={ +$1(a){}, +$S:14} +A.Su.prototype={ +qh(a){var s=t.e.a(A.aN(new A.Sw(a))) +A.bI(self.window,"popstate",s,null) +return new A.Sx(this,s)}, +zW(){var s=self.window.location.hash +if(s.length===0||s==="#")return"/" +return B.d.fY(s,1)}, +tp(a){var s=self.window.history.state +if(s==null)s=null +else{s=A.Nr(s) +s.toString}return s}, +Jo(a){var s,r +if(a.length===0){s=self.window.location.pathname +if(s==null)s=null +s.toString +r=self.window.location.search +if(r==null)r=null +r.toString +r=s+r +s=r}else s="#"+a +return s}, +z1(a,b,c,d){var s=this.Jo(d),r=self.window.history,q=A.a6(b) +if(q==null)q=t.K.a(q) +A.x(r,"pushState",[q,c,s])}, +jg(a,b,c,d){var s,r=this.Jo(d),q=self.window.history +if(b==null)s=null +else{s=A.a6(b) +if(s==null)s=t.K.a(s)}A.x(q,"replaceState",[s,c,r])}, +m6(a,b){var s=self.window.history +s.go(b) +return this.XK()}, +XK(){var s=new A.ai($.ab,t.U),r=A.b_("unsubscribe") +r.b=this.qh(new A.Sv(r,new A.bp(s,t.hb))) +return s}} +A.Sw.prototype={ +$1(a){var s=a.state +if(s==null)s=null +else{s=A.Nr(s) +s.toString}this.a.$1(s)}, +$S:1} +A.Sx.prototype={ +$0(){A.dw(self.window,"popstate",this.b,null) +return null}, +$S:0} +A.Sv.prototype={ +$1(a){this.a.ap().$0() +this.b.hT(0)}, +$S:7} +A.PK.prototype={ +qh(a){return A.x(this.a,"addPopStateListener",[A.aN(new A.PL(a))])}, +zW(){return this.a.getPath()}, +tp(a){return this.a.getState()}, +z1(a,b,c,d){return A.x(this.a,"pushState",[b,c,d])}, +jg(a,b,c,d){return A.x(this.a,"replaceState",[b,c,d])}, +m6(a,b){return this.a.go(b)}} +A.PL.prototype={ +$1(a){var s=a.state +if(s==null)s=null +else{s=A.Nr(s) +s.toString}return this.a.$1(s)}, +$S:1} +A.VL.prototype={} +A.OD.prototype={} +A.B2.prototype={ +ne(a){var s +this.b=a +this.c=!0 +s=A.a([],t.gO) +return this.a=new A.WF(new A.a3w(a,A.a([],t.l6),A.a([],t.AQ),A.cY()),s,new A.Xc())}, +gID(){return this.c}, +nK(){var s,r=this +if(!r.c)r.ne(B.ed) +r.c=!1 +s=r.a +s.b=s.a.YZ() +s.f=!0 +s=r.a +r.b===$&&A.c() +return new A.B1(s)}} +A.B1.prototype={ +m(){this.a=!0}} +A.BG.prototype={ +gDF(){var s,r=this,q=r.c +if(q===$){s=t.e.a(A.aN(r.gUV())) +r.c!==$&&A.ap() +r.c=s +q=s}return q}, +UW(a){var s,r,q,p=a.matches +if(p==null)p=null +p.toString +for(s=this.a,r=s.length,q=0;q>>0)) +q.toString +l.content=q +h.dv(c,B.K.bu([!0])) +return +case"SystemChrome.setPreferredOrientations":o=t.j.a(s.b) +$.ee.Lp(o).bw(new A.R7(h,c),t.P) +return +case"SystemSound.play":h.dv(c,B.K.bu([!0])) +return +case"Clipboard.setData":q=self.window.navigator.clipboard!=null?new A.A4():new A.B8() +new A.A5(q,A.acf()).Lk(s,c) +return +case"Clipboard.getData":q=self.window.navigator.clipboard!=null?new A.A4():new A.B8() +new A.A5(q,A.acf()).KJ(c) +return}break +case"flutter/service_worker":q=self.window +p=self.document.createEvent("Event") +p.initEvent("flutter-first-frame",!0,!0) +q.dispatchEvent(p) +return +case"flutter/textinput":q=$.aai() +q.gnk(q).a0f(b,c) +return +case"flutter/contextmenu":switch(B.ad.eY(b).a){case"enableContextMenu":$.ee.a.Hs() +h.dv(c,B.K.bu([!0])) +return +case"disableContextMenu":$.ee.a.Hc() +h.dv(c,B.K.bu([!0])) +return}return +case"flutter/mousecursor":s=B.bE.eY(b) +o=t.f.a(s.b) +switch(s.a){case"activateSystemCursor":$.a8b.toString +q=A.ci(J.bc(o,"kind")) +p=$.ee.f +p===$&&A.c() +q=B.Do.i(0,q) +A.di(p,"cursor",q==null?"default":q) +break}return +case"flutter/web_test_e2e":h.dv(c,B.K.bu([A.apH(B.ad,b)])) +return +case"flutter/platform_views":q=h.cy +if(q==null)q=h.cy=new A.VP($.aah(),new A.R8()) +c.toString +q.a_P(b,c) +return +case"flutter/accessibility":q=$.Nf +q.toString +p=t.f +k=p.a(J.bc(p.a(B.b0.e3(b)),"data")) +j=A.ci(J.bc(k,"message")) +if(j!=null&&j.length!==0){i=A.a83(k,"assertiveness") +q.G0(j,B.Aw[i==null?0:i])}h.dv(c,B.b0.bu(!0)) +return +case"flutter/navigation":h.d.i(0,0).xU(b).bw(new A.R9(h,c),t.P) +h.ry="/" +return}h.dv(c,null)}, +mG(a,b){return this.SW(a,b)}, +SW(a,b){var s=0,r=A.Y(t.H),q=1,p,o=this,n,m,l,k,j +var $async$mG=A.Z(function(c,d){if(c===1){p=d +s=q}while(true)switch(s){case 0:q=3 +s=6 +return A.a1(A.pF($.Ni.m1(a)),$async$mG) +case 6:n=d +s=7 +return A.a1(n.gyX().kZ(),$async$mG) +case 7:m=d +o.dv(b,A.lv(m,0,null)) +q=1 +s=5 +break +case 3:q=2 +j=p +l=A.ah(j) +$.cI().$1("Error while trying to load an asset: "+A.h(l)) +o.dv(b,null) +s=5 +break +case 2:s=1 +break +case 5:return A.W(null,r) +case 1:return A.V(p,r)}}) +return A.X($async$mG,r)}, +Sb(a){switch(a){case"HapticFeedbackType.lightImpact":return 10 +case"HapticFeedbackType.mediumImpact":return 20 +case"HapticFeedbackType.heavyImpact":return 30 +case"HapticFeedbackType.selectionClick":return 10 +default:return 50}}, +hF(){var s=$.afW +if(s==null)throw A.d(A.bV("scheduleFrameCallback must be initialized first.")) +s.$0()}, +PH(){var s=this +if(s.dy!=null)return +s.a=s.a.GD(A.a7O()) +s.dy=A.bT(self.window,"languagechange",new A.R5(s))}, +PD(){var s,r,q,p=A.aN(new A.R4(this)) +p=A.kB(globalThis.MutationObserver,[p]) +this.fy=p +s=self.document.documentElement +s.toString +r=A.a(["style"],t.s) +q=A.y(t.N,t.z) +q.l(0,"attributes",!0) +q.l(0,"attributeFilter",r) +r=A.a6(q) +A.x(p,"observe",[s,r==null?t.K.a(r):r])}, +Fr(a){var s=this,r=s.a +if(r.d!==a){s.a=r.Zj(a) +A.j6(null,null) +A.j6(s.k3,s.k4)}}, +Xj(a){var s=this.a,r=s.a +if((r.a&32)!==0!==a){this.a=s.GC(r.Zg(a)) +A.j6(null,null)}}, +PA(){var s,r=this,q=r.k1 +r.Fr(q.matches?B.W:B.U) +s=t.e.a(A.aN(new A.R3(r))) +r.k2=s +q.addListener(s)}, +gxa(){var s=this.ry +return s==null?this.ry=this.d.i(0,0).gqs().ghU():s}, +dv(a,b){A.S_(B.r,t.H).bw(new A.Rc(a,b),t.P)}} +A.Rb.prototype={ +$0(){return this.a.$1(this.b.$1(this.c))}, +$S:0} +A.Ra.prototype={ +$1(a){this.a.zk(this.b,a)}, +$S:14} +A.R6.prototype={ +$1(a){this.a.dv(this.b,B.K.bu([!0]))}, +$S:17} +A.R7.prototype={ +$1(a){this.a.dv(this.b,B.K.bu([a]))}, +$S:54} +A.R8.prototype={ +$1(a){var s=$.ee.f +s===$&&A.c() +s.append(a)}, +$S:1} +A.R9.prototype={ +$1(a){var s=this.b +if(a)this.a.dv(s,B.K.bu([!0])) +else if(s!=null)s.$1(null)}, +$S:54} +A.R5.prototype={ +$1(a){var s=this.a +s.a=s.a.GD(A.a7O()) +A.j6(s.fr,s.fx)}, +$S:1} +A.R4.prototype={ +$2(a,b){var s,r,q,p,o,n,m,l=null +for(s=J.am(a),r=t.e,q=this.a;s.t();){p=s.gC(s) +p.toString +r.a(p) +o=p.type +if((o==null?l:o)==="attributes"){o=p.attributeName +o=(o==null?l:o)==="style"}else o=!1 +if(o){o=self.document.documentElement +o.toString +n=A.arR(o) +m=(n==null?16:n)/16 +o=q.a +if(o.e!==m){q.a=o.qA(m) +A.j6(l,l) +A.j6(q.go,q.id)}}}}, +$S:309} +A.R3.prototype={ +$1(a){var s=a.matches +if(s==null)s=null +s.toString +s=s?B.W:B.U +this.a.Fr(s)}, +$S:1} +A.Rc.prototype={ +$1(a){var s=this.a +if(s!=null)s.$1(this.b)}, +$S:17} +A.a6z.prototype={ +$0(){this.a.$2(this.b,this.c)}, +$S:0} +A.a6A.prototype={ +$0(){var s=this +s.a.$3(s.b,s.c,s.d)}, +$S:0} +A.G3.prototype={ +j(a){return A.w(this).j(0)+"[view: null, geometry: "+B.A.j(0)+"]"}} +A.Dw.prototype={ +nt(a,b,c,d,e){var s=this,r=a==null?s.a:a,q=d==null?s.c:d,p=c==null?s.d:c,o=e==null?s.e:e,n=b==null?s.f:b +return new A.Dw(r,!1,q,p,o,n,s.r,s.w)}, +GC(a){return this.nt(a,null,null,null,null)}, +GD(a){return this.nt(null,a,null,null,null)}, +qA(a){return this.nt(null,null,null,null,a)}, +Zj(a){return this.nt(null,null,a,null,null)}, +Zk(a){return this.nt(null,null,null,a,null)}} +A.VN.prototype={ +a2f(a,b,c){this.d.l(0,b,a) +return this.b.bq(0,b,new A.VO(this,"flt-pv-slot-"+b,a,b,c))}, +Wb(a){var s,r,q,p="setAttribute" +if(a==null)return +s=$.by() +if(s!==B.B){a.remove() +return}r="tombstone-"+A.h(A.aaZ(a,"slot")) +q=A.aP(self.document,"slot") +A.n(q.style,"display","none") +s=A.a6(r) +A.x(q,p,["name",s==null?t.K.a(s):s]) +s=$.ee.r +s===$&&A.c() +s.eQ(0,q) +s=A.a6(r) +A.x(a,p,["slot",s==null?t.K.a(s):s]) +a.remove() +q.remove()}} +A.VO.prototype={ +$0(){var s,r,q=this,p=A.aP(self.document,"flt-platform-view"),o=A.a6(q.b) +A.x(p,"setAttribute",["slot",o==null?t.K.a(o):o]) +o=q.c +s=q.a.a.i(0,o) +s.toString +r=A.b_("content") +r.b=t.vk.a(s).$1(q.d) +s=r.ap() +if(s.style.getPropertyValue("height").length===0){$.cI().$1("Height of Platform View type: ["+o+"] may not be set. Defaulting to `height: 100%`.\nSet `style.height` to any appropriate value to stop this message.") +A.n(s.style,"height","100%")}if(s.style.getPropertyValue("width").length===0){$.cI().$1("Width of Platform View type: ["+o+"] may not be set. Defaulting to `width: 100%`.\nSet `style.width` to any appropriate value to stop this message.") +A.n(s.style,"width","100%")}p.append(r.ap()) +return p}, +$S:69} +A.VP.prototype={ +R3(a,b){var s=t.f.a(a.b),r=J.aC(s),q=B.c.K(A.yf(r.i(s,"id"))),p=A.bW(r.i(s,"viewType")) +r=this.b +if(!r.a.a3(0,p)){b.$1(B.bE.jW("unregistered_view_type","If you are the author of the PlatformView, make sure `registerViewFactory` is invoked.","A HtmlElementView widget is trying to create a platform view with an unregistered type: <"+p+">.")) +return}if(r.b.a3(0,q)){b.$1(B.bE.jW("recreating_view","view id: "+q,"trying to create an already created view")) +return}this.c.$1(r.a2f(p,q,s)) +b.$1(B.bE.nJ(null))}, +a_P(a,b){var s,r=B.bE.eY(a) +switch(r.a){case"create":this.R3(r,b) +return +case"dispose":s=this.b +s.Wb(s.b.v(0,A.ku(r.b))) +b.$1(B.bE.nJ(null)) +return}b.$1(null)}} +A.XG.prototype={ +a3_(){A.bI(self.document,"touchstart",t.e.a(A.aN(new A.XH())),null)}} +A.XH.prototype={ +$1(a){}, +$S:1} +A.Dz.prototype={ +QU(){var s,r=this +if("PointerEvent" in self.window){s=new A.a3y(A.y(t.S,t.DW),A.a([],t.xU),r.a,r.gvJ(),r.c,r.d) +s.mc() +return s}if("TouchEvent" in self.window){s=new A.a4z(A.az(t.S),A.a([],t.xU),r.a,r.gvJ(),r.c,r.d) +s.mc() +return s}if("MouseEvent" in self.window){s=new A.a3f(new A.ml(),A.a([],t.xU),r.a,r.gvJ(),r.c,r.d) +s.mc() +return s}throw A.d(A.T("This browser does not support pointer, touch, or mouse events."))}, +UZ(a){var s=A.a(a.slice(0),A.ac(a)),r=$.aB() +A.Ny(r.Q,r.as,new A.tL(s))}} +A.W0.prototype={ +j(a){return"pointers:"+("PointerEvent" in self.window)+", touch:"+("TouchEvent" in self.window)+", mouse:"+("MouseEvent" in self.window)}} +A.wi.prototype={} +A.a0w.prototype={ +wC(a,b,c,d,e){var s=t.e.a(A.aN(new A.a0x(d))) +A.bI(b,c,s,e) +this.a.push(new A.wi(c,b,s,e,!1))}, +XV(a,b,c,d){return this.wC(a,b,c,d,!0)}} +A.a0x.prototype={ +$1(a){var s=$.cW +if((s==null?$.cW=A.id():s).JE(a))this.a.$1(a)}, +$S:1} +A.Mk.prototype={ +Dh(a,b){if(b==null)return!1 +return Math.abs(b- -3*a)>1}, +Ue(a){var s,r,q,p,o,n=this,m=null,l=$.by() +if(l===B.aP)return!1 +l=a.deltaX +s=a.wheelDeltaX +if(!n.Dh(l,s==null?m:s)){l=a.deltaY +s=a.wheelDeltaY +l=n.Dh(l,s==null?m:s)}else l=!0 +if(l)return!1 +if(!(B.c.cv(a.deltaX,120)===0&&B.c.cv(a.deltaY,120)===0)){l=a.wheelDeltaX +if(l==null)l=m +if(B.c.cv(l==null?1:l,120)===0){l=a.wheelDeltaY +if(l==null)l=m +l=B.c.cv(l==null?1:l,120)===0}else l=!1}else l=!0 +if(l){l=a.deltaX +s=n.f +r=s==null +q=r?m:s.deltaX +p=Math.abs(l-(q==null?0:q)) +l=a.deltaY +q=r?m:s.deltaY +o=Math.abs(l-(q==null?0:q)) +if(!r)if(!(p===0&&o===0))l=!(p<20&&o<20) +else l=!0 +else l=!0 +if(l){l=a.timeStamp +if((l==null?m:l)!=null){if(r)l=m +else{l=s.timeStamp +if(l==null)l=m}l=l!=null}else l=!1 +if(l){l=a.timeStamp +if(l==null)l=m +l.toString +s=s.timeStamp +if(s==null)s=m +s.toString +if(l-s<50&&n.r)return!0}return!1}}return!0}, +QT(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d=null +if(e.Ue(a)){s=B.bu +r=-2}else{s=B.bt +r=-1}q=a.deltaX +p=a.deltaY +switch(B.c.K(a.deltaMode)){case 1:o=$.ael +if(o==null){n=A.aP(self.document,"div") +o=n.style +A.n(o,"font-size","initial") +A.n(o,"display","none") +self.document.body.append(n) +o=A.a7K(self.window,n).getPropertyValue("font-size") +if(B.d.q(o,"px"))m=A.acp(A.afY(o,"px","")) +else m=d +n.remove() +o=$.ael=m==null?16:m/4}q*=o +p*=o +break +case 2:o=$.bC() +q*=o.ghw().a +p*=o.ghw().b +break +case 0:o=$.cH() +if(o===B.aE){o=$.by() +if(o!==B.B)o=o===B.aP +else o=!0}else o=!1 +if(o){o=$.bC() +l=o.x +if(l==null){l=self.window.devicePixelRatio +if(l===0)l=1}q*=l +o=o.x +if(o==null){o=self.window.devicePixelRatio +if(o===0)o=1}p*=o}break +default:break}k=A.a([],t.v) +j=A.a9r(a,e.b) +o=$.cH() +if(o===B.aE){o=$.TK +o=o==null?d:o.gmz().f.a3(0,$.aad()) +if(o!==!0){o=$.TK +o=o==null?d:o.gmz().f.a3(0,$.aae()) +i=o===!0}else i=!0}else i=!1 +o=a.ctrlKey&&!i +l=e.d +if(o){o=a.timeStamp +if(o==null)o=d +o.toString +o=A.mk(o) +h=$.bC() +g=h.x +if(g==null){g=self.window.devicePixelRatio +if(g===0)g=1}h=h.x +if(h==null){h=self.window.devicePixelRatio +if(h===0)h=1}f=a.buttons +if(f==null)f=d +f.toString +l.Z9(k,B.c.K(f),B.bs,r,s,j.a*g,j.b*h,1,1,Math.exp(-p/200),B.F3,o)}else{o=a.timeStamp +if(o==null)o=d +o.toString +o=A.mk(o) +h=$.bC() +g=h.x +if(g==null){g=self.window.devicePixelRatio +if(g===0)g=1}h=h.x +if(h==null){h=self.window.devicePixelRatio +if(h===0)h=1}f=a.buttons +if(f==null)f=d +f.toString +l.Zb(k,B.c.K(f),B.bs,r,s,j.a*g,j.b*h,1,1,q,p,B.F2,o)}e.f=a +e.r=s===B.bu +return k}, +Bf(a){var s=this.b,r=t.e.a(A.aN(a)),q=t.K,p=A.a6(A.aL(["capture",!1,"passive",!1],t.N,q)) +A.x(s,"addEventListener",["wheel",r,p==null?q.a(p):p]) +this.a.push(new A.wi("wheel",s,r,!1,!0))}, +D2(a){this.c.$1(this.QT(a)) +a.preventDefault()}} +A.hT.prototype={ +j(a){return A.w(this).j(0)+"(change: "+this.a.j(0)+", buttons: "+this.b+")"}} +A.ml.prototype={ +A1(a,b){var s +if(this.a!==0)return this.ts(b) +s=(b===0&&a>-1?A.aqN(a):b)&1073741823 +this.a=s +return new A.hT(B.tL,s)}, +ts(a){var s=a&1073741823,r=this.a +if(r===0&&s!==0)return new A.hT(B.bs,r) +this.a=s +return new A.hT(s===0?B.bs:B.cV,s)}, +oQ(a){if(this.a!==0&&(a&1073741823)===0){this.a=0 +return new A.hT(B.he,0)}return null}, +A2(a){if((a&1073741823)===0){this.a=0 +return new A.hT(B.bs,0)}return null}, +A3(a){var s +if(this.a===0)return null +s=this.a=(a==null?0:a)&1073741823 +if(s===0)return new A.hT(B.he,s) +else return new A.hT(B.cV,s)}} +A.a3y.prototype={ +uZ(a){return this.w.bq(0,a,new A.a3A())}, +E4(a){var s=a.pointerType +if((s==null?null:s)==="touch"){s=a.pointerId +if(s==null)s=null +this.w.v(0,s)}}, +uj(a,b,c,d,e){this.wC(0,a,b,new A.a3z(this,d,c),e)}, +ui(a,b,c){return this.uj(a,b,c,!0,!0)}, +PI(a,b,c,d){return this.uj(a,b,c,d,!0)}, +mc(){var s=this,r=s.b +s.ui(r,"pointerdown",new A.a3B(s)) +s.ui(self.window,"pointermove",new A.a3C(s)) +s.uj(r,"pointerleave",new A.a3D(s),!1,!1) +s.ui(self.window,"pointerup",new A.a3E(s)) +s.PI(r,"pointercancel",new A.a3F(s),!1) +s.Bf(new A.a3G(s))}, +dX(a,b,c){var s,r,q,p,o,n,m,l,k=this,j=null,i=c.pointerType +if(i==null)i=j +i.toString +s=k.DT(i) +i=c.tiltX +if(i==null)i=j +i.toString +r=c.tiltY +if(r==null)r=j +r.toString +if(Math.abs(i)>Math.abs(r)){i=c.tiltX +if(i==null)i=j}else{i=c.tiltY +if(i==null)i=j}i.toString +r=c.timeStamp +if(r==null)r=j +r.toString +q=A.mk(r) +p=c.pressure +if(p==null)p=j +o=A.a9r(c,k.b) +r=k.kK(c) +n=$.bC() +m=n.x +if(m==null){m=self.window.devicePixelRatio +if(m===0)m=1}n=n.x +if(n==null){n=self.window.devicePixelRatio +if(n===0)n=1}l=p==null?0:p +k.d.Za(a,b.b,b.a,r,s,o.a*m,o.b*n,l,1,B.bW,i/180*3.141592653589793,q)}, +RE(a){var s,r +if("getCoalescedEvents" in a){s=J.fa(a.getCoalescedEvents(),t.e) +r=new A.bR(s.a,s.$ti.h("bR<1,b>")) +if(!r.gS(r))return r}return A.a([a],t.J)}, +DT(a){switch(a){case"mouse":return B.bt +case"pen":return B.tM +case"touch":return B.cW +default:return B.tN}}, +kK(a){var s=a.pointerType +if(s==null)s=null +s.toString +if(this.DT(s)===B.bt)s=-1 +else{s=a.pointerId +if(s==null)s=null +s.toString +s=B.c.K(s)}return s}} +A.a3A.prototype={ +$0(){return new A.ml()}, +$S:294} +A.a3z.prototype={ +$1(a){var s,r,q,p,o +if(this.b){s=a.getModifierState("Alt") +r=a.getModifierState("Control") +q=a.getModifierState("Meta") +p=a.getModifierState("Shift") +o=a.timeStamp +if(o==null)o=null +o.toString +this.a.e.ua(s,r,q,p,o)}this.c.$1(a)}, +$S:1} +A.a3B.prototype={ +$1(a){var s,r,q=this.a,p=q.kK(a),o=A.a([],t.v),n=q.uZ(p),m=a.buttons +if(m==null)m=null +m.toString +s=n.oQ(B.c.K(m)) +if(s!=null)q.dX(o,s,a) +m=B.c.K(a.button) +r=a.buttons +if(r==null)r=null +r.toString +q.dX(o,n.A1(m,B.c.K(r)),a) +q.c.$1(o)}, +$S:4} +A.a3C.prototype={ +$1(a){var s,r,q,p,o=this.a,n=o.uZ(o.kK(a)),m=A.a([],t.v) +for(s=J.am(o.RE(a));s.t();){r=s.gC(s) +q=r.buttons +if(q==null)q=null +q.toString +p=n.oQ(B.c.K(q)) +if(p!=null)o.dX(m,p,r) +q=r.buttons +if(q==null)q=null +q.toString +o.dX(m,n.ts(B.c.K(q)),r)}o.c.$1(m)}, +$S:4} +A.a3D.prototype={ +$1(a){var s,r=this.a,q=r.uZ(r.kK(a)),p=A.a([],t.v),o=a.buttons +if(o==null)o=null +o.toString +s=q.A2(B.c.K(o)) +if(s!=null){r.dX(p,s,a) +r.c.$1(p)}}, +$S:4} +A.a3E.prototype={ +$1(a){var s,r,q,p=this.a,o=p.kK(a),n=p.w +if(n.a3(0,o)){s=A.a([],t.v) +n=n.i(0,o) +n.toString +r=a.buttons +if(r==null)r=null +q=n.A3(r==null?null:B.c.K(r)) +p.E4(a) +if(q!=null){p.dX(s,q,a) +p.c.$1(s)}}}, +$S:4} +A.a3F.prototype={ +$1(a){var s,r=this.a,q=r.kK(a),p=r.w +if(p.a3(0,q)){s=A.a([],t.v) +p=p.i(0,q) +p.toString +p.a=0 +r.E4(a) +r.dX(s,new A.hT(B.hc,0),a) +r.c.$1(s)}}, +$S:4} +A.a3G.prototype={ +$1(a){this.a.D2(a)}, +$S:1} +A.a4z.prototype={ +pc(a,b,c){this.XV(0,a,b,new A.a4A(this,!0,c))}, +mc(){var s=this,r=s.b +s.pc(r,"touchstart",new A.a4B(s)) +s.pc(r,"touchmove",new A.a4C(s)) +s.pc(r,"touchend",new A.a4D(s)) +s.pc(r,"touchcancel",new A.a4E(s))}, +pg(a,b,c,d,e){var s,r,q,p,o,n=e.identifier +if(n==null)n=null +n.toString +n=B.c.K(n) +s=e.clientX +r=$.bC() +q=r.x +if(q==null){q=self.window.devicePixelRatio +if(q===0)q=1}p=e.clientY +r=r.x +if(r==null){r=self.window.devicePixelRatio +if(r===0)r=1}o=c?1:0 +this.d.Z7(b,o,a,n,s*q,p*r,1,1,B.bW,d)}} +A.a4A.prototype={ +$1(a){var s=a.altKey,r=a.ctrlKey,q=a.metaKey,p=a.shiftKey,o=a.timeStamp +if(o==null)o=null +o.toString +this.a.e.ua(s,r,q,p,o) +this.c.$1(a)}, +$S:1} +A.a4B.prototype={ +$1(a){var s,r,q,p,o,n,m,l=a.timeStamp +if(l==null)l=null +l.toString +s=A.mk(l) +r=A.a([],t.v) +for(l=t.e,q=t.ef,q=A.bt(new A.iR(a.changedTouches,q),q.h("j.E"),l),l=A.bt(q.a,A.m(q).c,l),q=J.am(l.a),l=A.m(l),l=l.h("@<1>").ab(l.z[1]).z[1],p=this.a;q.t();){o=l.a(q.gC(q)) +n=o.identifier +if(n==null)n=null +n.toString +m=p.w +if(!m.q(0,B.c.K(n))){n=o.identifier +if(n==null)n=null +n.toString +m.B(0,B.c.K(n)) +p.pg(B.tL,r,!0,s,o)}}p.c.$1(r)}, +$S:4} +A.a4C.prototype={ +$1(a){var s,r,q,p,o,n,m +a.preventDefault() +s=a.timeStamp +if(s==null)s=null +s.toString +r=A.mk(s) +q=A.a([],t.v) +for(s=t.e,p=t.ef,p=A.bt(new A.iR(a.changedTouches,p),p.h("j.E"),s),s=A.bt(p.a,A.m(p).c,s),p=J.am(s.a),s=A.m(s),s=s.h("@<1>").ab(s.z[1]).z[1],o=this.a;p.t();){n=s.a(p.gC(p)) +m=n.identifier +if(m==null)m=null +m.toString +if(o.w.q(0,B.c.K(m)))o.pg(B.cV,q,!0,r,n)}o.c.$1(q)}, +$S:4} +A.a4D.prototype={ +$1(a){var s,r,q,p,o,n,m,l +a.preventDefault() +s=a.timeStamp +if(s==null)s=null +s.toString +r=A.mk(s) +q=A.a([],t.v) +for(s=t.e,p=t.ef,p=A.bt(new A.iR(a.changedTouches,p),p.h("j.E"),s),s=A.bt(p.a,A.m(p).c,s),p=J.am(s.a),s=A.m(s),s=s.h("@<1>").ab(s.z[1]).z[1],o=this.a;p.t();){n=s.a(p.gC(p)) +m=n.identifier +if(m==null)m=null +m.toString +l=o.w +if(l.q(0,B.c.K(m))){m=n.identifier +if(m==null)m=null +m.toString +l.v(0,B.c.K(m)) +o.pg(B.he,q,!1,r,n)}}o.c.$1(q)}, +$S:4} +A.a4E.prototype={ +$1(a){var s,r,q,p,o,n,m,l=a.timeStamp +if(l==null)l=null +l.toString +s=A.mk(l) +r=A.a([],t.v) +for(l=t.e,q=t.ef,q=A.bt(new A.iR(a.changedTouches,q),q.h("j.E"),l),l=A.bt(q.a,A.m(q).c,l),q=J.am(l.a),l=A.m(l),l=l.h("@<1>").ab(l.z[1]).z[1],p=this.a;q.t();){o=l.a(q.gC(q)) +n=o.identifier +if(n==null)n=null +n.toString +m=p.w +if(m.q(0,B.c.K(n))){n=o.identifier +if(n==null)n=null +n.toString +m.v(0,B.c.K(n)) +p.pg(B.hc,r,!1,s,o)}}p.c.$1(r)}, +$S:4} +A.a3f.prototype={ +Bb(a,b,c,d){this.wC(0,a,b,new A.a3g(this,!0,c),d)}, +ug(a,b,c){return this.Bb(a,b,c,!0)}, +mc(){var s=this,r=s.b +s.ug(r,"mousedown",new A.a3h(s)) +s.ug(self.window,"mousemove",new A.a3i(s)) +s.Bb(r,"mouseleave",new A.a3j(s),!1) +s.ug(self.window,"mouseup",new A.a3k(s)) +s.Bf(new A.a3l(s))}, +dX(a,b,c){var s,r,q=A.a9r(c,this.b),p=c.timeStamp +if(p==null)p=null +p.toString +p=A.mk(p) +s=$.bC() +r=s.x +if(r==null){r=self.window.devicePixelRatio +if(r===0)r=1}s=s.x +if(s==null){s=self.window.devicePixelRatio +if(s===0)s=1}this.d.Z8(a,b.b,b.a,-1,B.bt,q.a*r,q.b*s,1,1,B.bW,p)}} +A.a3g.prototype={ +$1(a){var s=a.getModifierState("Alt"),r=a.getModifierState("Control"),q=a.getModifierState("Meta"),p=a.getModifierState("Shift"),o=a.timeStamp +if(o==null)o=null +o.toString +this.a.e.ua(s,r,q,p,o) +this.c.$1(a)}, +$S:1} +A.a3h.prototype={ +$1(a){var s,r,q=A.a([],t.v),p=this.a,o=p.w,n=a.buttons +if(n==null)n=null +n.toString +s=o.oQ(B.c.K(n)) +if(s!=null)p.dX(q,s,a) +n=B.c.K(a.button) +r=a.buttons +if(r==null)r=null +r.toString +p.dX(q,o.A1(n,B.c.K(r)),a) +p.c.$1(q)}, +$S:4} +A.a3i.prototype={ +$1(a){var s,r=A.a([],t.v),q=this.a,p=q.w,o=a.buttons +if(o==null)o=null +o.toString +s=p.oQ(B.c.K(o)) +if(s!=null)q.dX(r,s,a) +o=a.buttons +if(o==null)o=null +o.toString +q.dX(r,p.ts(B.c.K(o)),a) +q.c.$1(r)}, +$S:4} +A.a3j.prototype={ +$1(a){var s,r=A.a([],t.v),q=this.a,p=a.buttons +if(p==null)p=null +p.toString +s=q.w.A2(B.c.K(p)) +if(s!=null){q.dX(r,s,a) +q.c.$1(r)}}, +$S:4} +A.a3k.prototype={ +$1(a){var s,r=A.a([],t.v),q=this.a,p=a.buttons +if(p==null)p=null +p=p==null?null:B.c.K(p) +s=q.w.A3(p) +if(s!=null){q.dX(r,s,a) +q.c.$1(r)}}, +$S:4} +A.a3l.prototype={ +$1(a){this.a.D2(a)}, +$S:1} +A.pn.prototype={} +A.VQ.prototype={ +pk(a,b,c){return this.a.bq(0,a,new A.VR(b,c))}, +jw(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,a0,a1,a2,a3,a4,a5,a6,a7,a8){var s,r,q=this.a.i(0,c) +q.toString +s=q.b +r=q.c +q.b=i +q.c=j +q=q.a +if(q==null)q=0 +return A.acl(a,b,c,d,e,f,!1,h,i-s,j-r,i,j,k,q,l,m,n,o,p,a0,a1,a2,a3,a4,a5,a6,!1,a7,a8)}, +vz(a,b,c){var s=this.a.i(0,a) +s.toString +return s.b!==b||s.c!==c}, +iJ(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,a0,a1,a2,a3,a4,a5,a6,a7){var s,r,q=this.a.i(0,c) +q.toString +s=q.b +r=q.c +q.b=i +q.c=j +q=q.a +if(q==null)q=0 +return A.acl(a,b,c,d,e,f,!1,h,i-s,j-r,i,j,k,q,l,m,n,o,p,a0,a1,a2,a3,a4,B.bW,a5,!0,a6,a7)}, +nr(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var s,r,q,p=this +if(m===B.bW)switch(c.a){case 1:p.pk(d,f,g) +a.push(p.jw(b,c,d,0,0,e,!1,0,f,g,0,h,i,0,0,0,0,0,j,k,l,m,0,n,o)) +break +case 3:s=p.a.a3(0,d) +p.pk(d,f,g) +if(!s)a.push(p.iJ(b,B.hd,d,0,0,e,!1,0,f,g,0,h,i,0,0,0,0,0,j,k,l,0,n,o)) +a.push(p.jw(b,c,d,0,0,e,!1,0,f,g,0,h,i,0,0,0,0,0,j,k,l,m,0,n,o)) +p.b=b +break +case 4:s=p.a.a3(0,d) +p.pk(d,f,g).a=$.adT=$.adT+1 +if(!s)a.push(p.iJ(b,B.hd,d,0,0,e,!1,0,f,g,0,h,i,0,0,0,0,0,j,k,l,0,n,o)) +if(p.vz(d,f,g))a.push(p.iJ(0,B.bs,d,0,0,e,!1,0,f,g,0,0,i,0,0,0,0,0,j,k,l,0,n,o)) +a.push(p.jw(b,c,d,0,0,e,!1,0,f,g,0,h,i,0,0,0,0,0,j,k,l,m,0,n,o)) +p.b=b +break +case 5:a.push(p.jw(b,c,d,0,0,e,!1,0,f,g,0,h,i,0,0,0,0,0,j,k,l,m,0,n,o)) +p.b=b +break +case 6:case 0:r=p.a +q=r.i(0,d) +q.toString +if(c===B.hc){f=q.b +g=q.c}if(p.vz(d,f,g))a.push(p.iJ(p.b,B.cV,d,0,0,e,!1,0,f,g,0,h,i,0,0,0,0,0,j,k,l,0,n,o)) +a.push(p.jw(b,c,d,0,0,e,!1,0,f,g,0,h,i,0,0,0,0,0,j,k,l,m,0,n,o)) +if(e===B.cW){a.push(p.iJ(0,B.F0,d,0,0,e,!1,0,f,g,0,0,i,0,0,0,0,0,j,k,l,0,n,o)) +r.v(0,d)}break +case 2:r=p.a +q=r.i(0,d) +q.toString +a.push(p.jw(b,c,d,0,0,e,!1,0,q.b,q.c,0,h,i,0,0,0,0,0,j,k,l,m,0,n,o)) +r.v(0,d) +break +case 7:case 8:case 9:break}else switch(m.a){case 1:case 2:case 3:s=p.a.a3(0,d) +p.pk(d,f,g) +if(!s)a.push(p.iJ(b,B.hd,d,0,0,e,!1,0,f,g,0,h,i,0,0,0,0,0,j,k,l,0,n,o)) +if(p.vz(d,f,g))if(b!==0)a.push(p.iJ(b,B.cV,d,0,0,e,!1,0,f,g,0,h,i,0,0,0,0,0,j,k,l,0,n,o)) +else a.push(p.iJ(b,B.bs,d,0,0,e,!1,0,f,g,0,h,i,0,0,0,0,0,j,k,l,0,n,o)) +a.push(p.jw(b,c,d,0,0,e,!1,0,f,g,0,h,i,0,0,0,0,0,j,k,l,m,0,n,o)) +break +case 0:break +case 4:break}}, +Z9(a,b,c,d,e,f,g,h,i,j,k,l){return this.nr(a,b,c,d,e,f,g,h,i,j,0,0,k,0,l)}, +Zb(a,b,c,d,e,f,g,h,i,j,k,l,m){return this.nr(a,b,c,d,e,f,g,h,i,1,j,k,l,0,m)}, +Z8(a,b,c,d,e,f,g,h,i,j,k){return this.nr(a,b,c,d,e,f,g,h,i,1,0,0,j,0,k)}, +Z7(a,b,c,d,e,f,g,h,i,j){return this.nr(a,b,c,d,B.cW,e,f,g,h,1,0,0,i,0,j)}, +Za(a,b,c,d,e,f,g,h,i,j,k,l){return this.nr(a,b,c,d,e,f,g,h,i,1,0,0,j,k,l)}} +A.VR.prototype={ +$0(){return new A.pn(this.a,this.b)}, +$S:291} +A.a8k.prototype={} +A.Wl.prototype={ +Pq(a){var s=this,r=t.e +s.b=r.a(A.aN(new A.Wm(s))) +A.bI(self.window,"keydown",s.b,null) +s.c=r.a(A.aN(new A.Wn(s))) +A.bI(self.window,"keyup",s.c,null) +$.hY.push(new A.Wo(s))}, +m(){var s,r,q=this +A.dw(self.window,"keydown",q.b,null) +A.dw(self.window,"keyup",q.c,null) +for(s=q.a,r=A.ip(s,s.r);r.t();)s.i(0,r.d).aT(0) +s.L(0) +$.a8l=q.c=q.b=null}, +CS(a){var s,r,q,p,o,n,m,l=this,k=null,j=globalThis.KeyboardEvent +if(!(j!=null&&a instanceof j))return +s=new A.hd(a) +r=a.code +if(r==null)r=k +r.toString +if(a.type==="keydown"){q=a.key +q=(q==null?k:q)==="Tab"&&a.isComposing}else q=!1 +if(q)return +q=a.key +if(q==null)q=k +q.toString +if(!(q==="Meta"||q==="Shift"||q==="Alt"||q==="Control")&&l.e){q=l.a +p=q.i(0,r) +if(p!=null)p.aT(0) +if(a.type==="keydown")p=a.ctrlKey||a.shiftKey||a.altKey||a.metaKey +else p=!1 +if(p)q.l(0,r,A.c8(B.bI,new A.Wq(l,r,s))) +else q.v(0,r)}o=a.getModifierState("Shift")?1:0 +if(a.getModifierState("Alt")||a.getModifierState("AltGraph"))o|=2 +if(a.getModifierState("Control"))o|=4 +if(a.getModifierState("Meta"))o|=8 +l.d=o +if(a.type==="keydown"){r=a.key +if((r==null?k:r)==="CapsLock"){r=o|32 +l.d=r}else{r=a.code +if((r==null?k:r)==="NumLock"){r=o|16 +l.d=r}else{r=a.key +if((r==null?k:r)==="ScrollLock"){r=o|64 +l.d=r}else r=o}}}else r=o +q=a.type +p=a.code +if(p==null)p=k +n=a.key +if(n==null)n=k +m=A.aL(["type",q,"keymap","web","code",p,"key",n,"location",B.c.K(a.location),"metaState",r,"keyCode",B.c.K(a.keyCode)],t.N,t.z) +$.aB().fC("flutter/keyevent",B.K.bu(m),new A.Wr(s))}} +A.Wm.prototype={ +$1(a){this.a.CS(a)}, +$S:1} +A.Wn.prototype={ +$1(a){this.a.CS(a)}, +$S:1} +A.Wo.prototype={ +$0(){this.a.m()}, +$S:0} +A.Wq.prototype={ +$0(){var s,r,q,p,o=this.a +o.a.v(0,this.b) +s=this.c.a +r=s.code +if(r==null)r=null +q=s.key +if(q==null)q=null +p=A.aL(["type","keyup","keymap","web","code",r,"key",q,"location",B.c.K(s.location),"metaState",o.d,"keyCode",B.c.K(s.keyCode)],t.N,t.z) +$.aB().fC("flutter/keyevent",B.K.bu(p),A.apn())}, +$S:0} +A.Wr.prototype={ +$1(a){if(a==null)return +if(A.mv(J.bc(t.a.a(B.K.e3(a)),"handled")))this.a.a.preventDefault()}, +$S:14} +A.BC.prototype={} +A.BB.prototype={ +Hm(a,b,c,d){var s=this.dy,r=this.fr,q=this.fx +A.x(b,"drawImage",[s,0,0,r,q,c,d,r,q])}, +Gk(a,b){var s,r,q,p,o,n=this,m="attachShader",l=a+"||"+b,k=J.bc($.So.aw(),l) +if(k==null){s=n.Gs(0,"VERTEX_SHADER",a) +r=n.Gs(0,"FRAGMENT_SHADER",b) +q=n.a +p=q.createProgram() +A.x(q,m,[p,s]) +A.x(q,m,[p,r]) +A.x(q,"linkProgram",[p]) +o=n.ay +if(!A.x(q,"getProgramParameter",[p,o==null?n.ay=q.LINK_STATUS:o]))A.a2(A.bV(A.x(q,"getProgramInfoLog",[p]))) +k=new A.BC(p) +J.fY($.So.aw(),l,k)}return k}, +Gs(a,b,c){var s,r=this.a,q=r.createShader(r[b]) +if(q==null)throw A.d(A.bV(A.aoZ(r,"getError"))) +A.x(r,"shaderSource",[q,c]) +A.x(r,"compileShader",[q]) +s=this.c +if(!A.x(r,"getShaderParameter",[q,s==null?this.c=r.COMPILE_STATUS:s]))throw A.d(A.bV("Shader compilation failed: "+A.h(A.x(r,"getShaderInfoLog",[q])))) +return q}, +X9(a){var s,r=this +switch(a.a){case 0:return r.gIP() +case 2:s=r.ax +return s==null?r.ax=r.a.TRIANGLE_FAN:s +case 1:s=r.ax +return s==null?r.ax=r.a.TRIANGLE_STRIP:s}}, +ghn(){var s=this.d +return s==null?this.d=this.a.ARRAY_BUFFER:s}, +goa(){var s=this.e +return s==null?this.e=this.a.ELEMENT_ARRAY_BUFFER:s}, +gIL(){var s=this.r +return s==null?this.r=this.a.FLOAT:s}, +gIM(){var s=this.cx +return s==null?this.cx=this.a.RGBA:s}, +gIQ(){var s=this.ch +return s==null?this.ch=this.a.UNSIGNED_BYTE:s}, +gob(){var s=this.f +return s==null?this.f=this.a.STATIC_DRAW:s}, +gIP(){var s=this.ax +return s==null?this.ax=this.a.TRIANGLES:s}, +gIK(){var s=this.w +return s==null?this.w=this.a.COLOR_BUFFER_BIT:s}, +gj8(){var s=this.x +return s==null?this.x=this.a.TEXTURE_2D:s}, +gIN(){var s=this.y +return s==null?this.y=this.a.TEXTURE_WRAP_S:s}, +gIO(){var s=this.z +return s==null?this.z=this.a.TEXTURE_WRAP_T:s}, +grp(){var s=this.as +return s==null?this.as=this.a.CLAMP_TO_EDGE:s}, +fR(a,b,c){var s=A.x(this.a,"getUniformLocation",[b,c]) +if(s==null)throw A.d(A.bV(c+" not found")) +else return s}, +JC(a){var s,r,q=this +if("transferToImageBitmap" in q.dy&&a){q.dy.getContext("webgl2") +return q.dy.transferToImageBitmap()}else{s=q.fr +r=A.pE(q.fx,s) +s=A.ff(r,"2d",null) +s.toString +q.Hm(0,t.e.a(s),0,0) +return r}}} +A.Ve.prototype={ +Fd(a){var s,r,q,p=this.c,o=self.window.devicePixelRatio +if(o===0)o=1 +s=this.d +r=self.window.devicePixelRatio +if(r===0)r=1 +q=a.style +A.n(q,"position","absolute") +A.n(q,"width",A.h(p/o)+"px") +A.n(q,"height",A.h(s/r)+"px")}} +A.q0.prototype={ +D(){return"Assertiveness."+this.b}} +A.a6s.prototype={ +$0(){var s=$.Nf +s.c=!0 +s.a.remove() +s.b.remove() +$.Nf=null}, +$S:0} +A.NR.prototype={ +Yc(a){switch(a.a){case 0:return this.a +case 1:return this.b}}, +G0(a,b){var s=this.Yc(b) +A.ab5(s,a+(s.innerText===a?".":""))}} +A.vG.prototype={ +D(){return"_CheckableKind."+this.b}} +A.mW.prototype={ +im(a){var s,r,q,p="true",o="setAttribute",n=this.b +if((n.k3&1)!==0){switch(this.c.a){case 0:n.ef("checkbox",!0) +break +case 1:n.ef("radio",!0) +break +case 2:n.ef("switch",!0) +break}if(n.Hu()===B.fm){s=n.k2 +r=A.a6(p) +A.x(s,o,["aria-disabled",r==null?t.K.a(r):r]) +r=A.a6(p) +A.x(s,o,["disabled",r==null?t.K.a(r):r])}else this.E1() +r=n.a +q=A.a6((r&2)!==0||(r&131072)!==0?p:"false") +r=q==null?t.K.a(q):q +A.x(n.k2,o,["aria-checked",r])}}, +m(){var s=this +switch(s.c.a){case 0:s.b.ef("checkbox",!1) +break +case 1:s.b.ef("radio",!1) +break +case 2:s.b.ef("switch",!1) +break}s.E1()}, +E1(){var s=this.b.k2 +s.removeAttribute("aria-disabled") +s.removeAttribute("disabled")}} +A.np.prototype={ +im(a){var s,r,q=this,p=q.b +if(p.gIG()){s=p.dy +s=s!=null&&!B.cP.gS(s)}else s=!1 +if(s){if(q.c==null){q.c=A.aP(self.document,"flt-semantics-img") +s=p.dy +if(s!=null&&!B.cP.gS(s)){s=q.c.style +A.n(s,"position","absolute") +A.n(s,"top","0") +A.n(s,"left","0") +r=p.y +A.n(s,"width",A.h(r.c-r.a)+"px") +r=p.y +A.n(s,"height",A.h(r.d-r.b)+"px")}A.n(q.c.style,"font-size","6px") +s=q.c +s.toString +p.k2.append(s)}p=q.c +p.toString +s=A.a6("img") +A.x(p,"setAttribute",["role",s==null?t.K.a(s):s]) +q.Ew(q.c)}else if(p.gIG()){p.ef("img",!0) +q.Ew(p.k2) +q.uv()}else{q.uv() +q.BL()}}, +Ew(a){var s=this.b.z +if(s!=null&&s.length!==0){a.toString +s.toString +s=A.a6(s) +A.x(a,"setAttribute",["aria-label",s==null?t.K.a(s):s])}}, +uv(){var s=this.c +if(s!=null){s.remove() +this.c=null}}, +BL(){var s=this.b +s.ef("img",!1) +s.k2.removeAttribute("aria-label")}, +m(){this.uv() +this.BL()}} +A.ns.prototype={ +Pl(a){var s,r=this,q=r.c +a.k2.append(q) +A.Qn(q,"range") +s=A.a6("slider") +A.x(q,"setAttribute",["role",s==null?t.K.a(s):s]) +A.bI(q,"change",t.e.a(A.aN(new A.Tg(r,a))),null) +q=new A.Th(r) +r.e=q +a.k1.Q.push(q)}, +im(a){var s=this +switch(s.b.k1.y.a){case 1:s.Rt() +s.Xl() +break +case 0:s.Ca() +break}}, +Rt(){var s=this.c,r=s.disabled +if(r==null)r=null +r.toString +if(!r)return +A.ab2(s,!1)}, +Xl(){var s,r,q,p,o,n,m,l=this,k="setAttribute" +if(!l.f){s=l.b.k3 +r=(s&4096)!==0||(s&8192)!==0||(s&16384)!==0}else r=!0 +if(!r)return +l.f=!1 +q=""+l.d +s=l.c +A.ab3(s,q) +p=A.a6(q) +A.x(s,k,["aria-valuenow",p==null?t.K.a(p):p]) +p=l.b +o=p.ax +o.toString +o=A.a6(o) +A.x(s,k,["aria-valuetext",o==null?t.K.a(o):o]) +n=p.ch.length!==0?""+(l.d+1):q +s.max=n +o=A.a6(n) +A.x(s,k,["aria-valuemax",o==null?t.K.a(o):o]) +m=p.cx.length!==0?""+(l.d-1):q +s.min=m +p=A.a6(m) +A.x(s,k,["aria-valuemin",p==null?t.K.a(p):p])}, +Ca(){var s=this.c,r=s.disabled +if(r==null)r=null +r.toString +if(r)return +A.ab2(s,!0)}, +m(){var s=this +B.b.v(s.b.k1.Q,s.e) +s.e=null +s.Ca() +s.c.remove()}} +A.Tg.prototype={ +$1(a){var s,r=null,q=this.a,p=q.c,o=p.disabled +if(o==null)o=r +o.toString +if(o)return +q.f=!0 +p=p.value +if(p==null)p=r +p.toString +s=A.j5(p,r) +p=q.d +if(s>p){q.d=p+1 +q=$.aB() +A.kG(q.p4,q.R8,this.b.id,B.u8,r)}else if(sq){s=s.b +s.toString +if((s&32)!==0||(s&16)!==0){s=$.aB() +A.kG(s.p4,s.R8,p,B.d2,n)}else{s=$.aB() +A.kG(s.p4,s.R8,p,B.d4,n)}}else{s=s.b +s.toString +if((s&32)!==0||(s&16)!==0){s=$.aB() +A.kG(s.p4,s.R8,p,B.d3,n)}else{s=$.aB() +A.kG(s.p4,s.R8,p,B.d5,n)}}}}, +im(a){var s,r=this,q=r.b,p=q.k1 +p.d.push(new A.Yd(r)) +if(r.e==null){q=q.k2 +A.n(q.style,"touch-action","none") +r.Ct() +s=new A.Ye(r) +r.c=s +p.Q.push(s) +s=t.e.a(A.aN(new A.Yf(r))) +r.e=s +A.bI(q,"scroll",s,null)}}, +gCf(){var s=this.b,r=s.b +r.toString +r=(r&32)!==0||(r&16)!==0 +s=s.k2 +if(r)return B.c.K(s.scrollTop) +else return B.c.K(s.scrollLeft)}, +DA(){var s,r,q,p,o=this,n="transform",m=o.b,l=m.k2,k=m.y +if(k==null){$.cI().$1("Warning! the rect attribute of semanticsObject is null") +return}s=m.b +s.toString +s=(s&32)!==0||(s&16)!==0 +r=o.d +q=k.d-k.b +p=k.c-k.a +if(s){s=B.c.cr(q) +r=r.style +A.n(r,n,"translate(0px,"+(s+10)+"px)") +A.n(r,"width",""+B.c.bd(p)+"px") +A.n(r,"height","10px") +l.scrollTop=10 +m.p3=o.f=B.c.K(l.scrollTop) +m.p4=0}else{s=B.c.cr(p) +r=r.style +A.n(r,n,"translate("+(s+10)+"px,0px)") +A.n(r,"width","10px") +A.n(r,"height",""+B.c.bd(q)+"px") +l.scrollLeft=10 +q=B.c.K(l.scrollLeft) +o.f=q +m.p3=0 +m.p4=q}}, +Ct(){var s="overflow-y",r="overflow-x",q=this.b,p=q.k2 +switch(q.k1.y.a){case 1:q=q.b +q.toString +if((q&32)!==0||(q&16)!==0)A.n(p.style,s,"scroll") +else A.n(p.style,r,"scroll") +break +case 0:q=q.b +q.toString +if((q&32)!==0||(q&16)!==0)A.n(p.style,s,"hidden") +else A.n(p.style,r,"hidden") +break}}, +m(){var s=this,r=s.b,q=r.k2,p=q.style +p.removeProperty("overflowY") +p.removeProperty("overflowX") +p.removeProperty("touch-action") +p=s.e +if(p!=null)A.dw(q,"scroll",p,null) +B.b.v(r.k1.Q,s.c) +s.c=null}} +A.Yd.prototype={ +$0(){var s=this.a +s.DA() +s.b.z9()}, +$S:0} +A.Ye.prototype={ +$1(a){this.a.Ct()}, +$S:99} +A.Yf.prototype={ +$1(a){this.a.VM()}, +$S:1} +A.nd.prototype={ +j(a){var s=A.a([],t.s),r=this.a +if((r&1)!==0)s.push("accessibleNavigation") +if((r&2)!==0)s.push("invertColors") +if((r&4)!==0)s.push("disableAnimations") +if((r&8)!==0)s.push("boldText") +if((r&16)!==0)s.push("reduceMotion") +if((r&32)!==0)s.push("highContrast") +if((r&64)!==0)s.push("onOffSwitchLabels") +return"AccessibilityFeatures"+A.h(s)}, +k(a,b){if(b==null)return!1 +if(J.J(b)!==A.w(this))return!1 +return b instanceof A.nd&&b.a===this.a}, +gu(a){return B.f.gu(this.a)}, +GF(a,b){var s=(a==null?(this.a&1)!==0:a)?1:0,r=this.a +s=(r&2)!==0?s|2:s&4294967293 +s=(r&4)!==0?s|4:s&4294967291 +s=(r&8)!==0?s|8:s&4294967287 +s=(r&16)!==0?s|16:s&4294967279 +s=(b==null?(r&32)!==0:b)?s|32:s&4294967263 +return new A.nd((r&64)!==0?s|64:s&4294967231)}, +Zg(a){return this.GF(null,a)}, +Zd(a){return this.GF(a,null)}} +A.QT.prototype={ +sa0p(a){var s=this.a +this.a=a?s|32:s&4294967263}, +aS(){return new A.nd(this.a)}} +A.EQ.prototype={$ia8v:1} +A.EO.prototype={} +A.fF.prototype={ +D(){return"Role."+this.b}} +A.a5S.prototype={ +$1(a){return A.akW(a)}, +$S:287} +A.a5T.prototype={ +$1(a){var s=A.aP(self.document,"flt-semantics-scroll-overflow"),r=s.style +A.n(r,"position","absolute") +A.n(r,"transform-origin","0 0 0") +A.n(r,"pointer-events","none") +a.k2.append(s) +return new A.oh(s,a)}, +$S:279} +A.a5U.prototype={ +$1(a){return new A.nE(a)}, +$S:273} +A.a5V.prototype={ +$1(a){return new A.ox(a)}, +$S:272} +A.a5W.prototype={ +$1(a){var s=new A.oA(a) +s.WA() +return s}, +$S:271} +A.a5X.prototype={ +$1(a){return new A.mW(A.ap2(a),a)}, +$S:203} +A.a5Y.prototype={ +$1(a){return new A.np(a)}, +$S:269} +A.a5Z.prototype={ +$1(a){return new A.nI(a)}, +$S:265} +A.eA.prototype={} +A.cp.prototype={ +zU(){var s,r=this +if(r.k4==null){s=A.aP(self.document,"flt-semantics-container") +r.k4=s +s=s.style +A.n(s,"position","absolute") +A.n(s,"pointer-events","none") +s=r.k4 +s.toString +r.k2.append(s)}return r.k4}, +gIG(){var s,r=this.a +if((r&16384)!==0){s=this.b +s.toString +r=(s&1)===0&&(r&8)===0}else r=!1 +return r}, +Hu(){var s=this.a +if((s&64)!==0)if((s&128)!==0)return B.z9 +else return B.fm +else return B.z8}, +a2Q(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2=this,a3=a2.fr +if(a3==null||a3.length===0){s=a2.p1 +if(s==null||s.length===0){a2.p1=null +return}r=s.length +for(s=a2.k1,q=s.a,p=0;p1)for(p=0;p=0;--p){g=l[p] +s=g.id +if(!B.b.q(a0,s)){k=g.k2 +if(a1==null)m.append(k) +else m.insertBefore(k,a1) +g.ok=a2 +q.b.l(0,s,a2)}a1=g.k2}a2.p1=l}, +ef(a,b){var s +if(b){s=A.a6(a) +if(s==null)s=t.K.a(s) +A.x(this.k2,"setAttribute",["role",s])}else{s=this.k2 +if(A.aaZ(s,"role")===a)s.removeAttribute("role")}}, +iL(a,b){var s=this.p2,r=s.i(0,a) +if(b){if(r==null){r=$.ahF().i(0,a).$1(this) +s.l(0,a,r)}r.im(0)}else if(r!=null){r.m() +s.v(0,a)}}, +z9(){var s,r,q,p,o,n,m,l,k,j,i=this,h=i.k2,g=h.style,f=i.y +A.n(g,"width",A.h(f.c-f.a)+"px") +f=i.y +A.n(g,"height",A.h(f.d-f.b)+"px") +g=i.dy +s=g!=null&&!B.cP.gS(g)?i.zU():null +g=i.y +r=g.b===0&&g.a===0 +q=i.dx +g=q==null +p=g||A.a6U(q)===B.uX +if(r&&p&&i.p3===0&&i.p4===0){A.YA(h) +if(s!=null)A.YA(s) +return}o=A.b_("effectiveTransform") +if(!r)if(g){g=i.y +n=g.a +m=g.b +g=A.cY() +g.fS(n,m,0) +o.b=g +l=n===0&&m===0}else{g=new A.bk(new Float32Array(16)) +g.az(new A.bk(q)) +f=i.y +g.ae(0,f.a,f.b) +o.b=g +l=J.aig(o.ap())}else if(!p){o.b=new A.bk(q) +l=!1}else l=!0 +if(!l){h=h.style +A.n(h,"transform-origin","0 0 0") +A.n(h,"transform",A.f6(o.ap().a))}else A.YA(h) +if(s!=null)if(!r||i.p3!==0||i.p4!==0){h=i.y +g=h.a +f=i.p4 +h=h.b +k=i.p3 +j=s.style +A.n(j,"top",A.h(-h+k)+"px") +A.n(j,"left",A.h(-g+f)+"px")}else A.YA(s)}, +j(a){var s=this.bn(0) +return s}} +A.NS.prototype={ +D(){return"AccessibilityMode."+this.b}} +A.lb.prototype={ +D(){return"GestureMode."+this.b}} +A.Rd.prototype={ +Pj(){$.hY.push(new A.Re(this))}, +RK(){var s,r,q,p,o,n,m,l=this +for(s=l.c,r=s.length,q=l.a,p=0;p>>0}l=k.cx +if(j.ax!==l){j.ax=l +j.k3=(j.k3|4096)>>>0}l=k.cy +if(j.ay!==l){j.ay=l +j.k3=(j.k3|4096)>>>0}l=k.ax +if(j.z!==l){j.z=l +j.k3=(j.k3|1024)>>>0}l=k.ay +if(j.Q!==l){j.Q=l +j.k3=(j.k3|1024)>>>0}l=k.at +if(!J.e(j.y,l)){j.y=l +j.k3=(j.k3|512)>>>0}l=k.go +if(j.dx!==l){j.dx=l +j.k3=(j.k3|65536)>>>0}l=k.z +if(j.r!==l){j.r=l +j.k3=(j.k3|64)>>>0}l=j.b +i=k.c +if(l!==i){j.b=i +j.k3=(j.k3|2)>>>0 +l=i}i=k.f +if(j.c!==i){j.c=i +j.k3=(j.k3|4)>>>0}i=k.r +if(j.d!==i){j.d=i +j.k3=(j.k3|8)>>>0}i=k.x +if(j.e!==i){j.e=i +j.k3=(j.k3|16)>>>0}i=k.y +if(j.f!==i){j.f=i +j.k3=(j.k3|32)>>>0}i=k.Q +if(j.w!==i){j.w=i +j.k3=(j.k3|128)>>>0}i=k.as +if(j.x!==i){j.x=i +j.k3=(j.k3|256)>>>0}i=k.ch +if(j.as!==i){j.as=i +j.k3=(j.k3|2048)>>>0}i=k.CW +if(j.at!==i){j.at=i +j.k3=(j.k3|2048)>>>0}i=k.db +if(j.ch!==i){j.ch=i +j.k3=(j.k3|8192)>>>0}i=k.dx +if(j.CW!==i){j.CW=i +j.k3=(j.k3|8192)>>>0}i=k.dy +if(j.cx!==i){j.cx=i +j.k3=(j.k3|16384)>>>0}i=k.fr +if(j.cy!==i){j.cy=i +j.k3=(j.k3|16384)>>>0}i=j.fy +h=k.fx +if(i!==h){j.fy=h +j.k3=(j.k3|4194304)>>>0 +i=h}h=k.fy +if(j.db!=h){j.db=h +j.k3=(j.k3|32768)>>>0}h=k.k1 +if(j.fr!==h){j.fr=h +j.k3=(j.k3|1048576)>>>0}h=k.id +if(j.dy!==h){j.dy=h +j.k3=(j.k3|524288)>>>0}h=k.k2 +if(j.fx!==h){j.fx=h +j.k3=(j.k3|2097152)>>>0}h=k.w +if(j.go!==h){j.go=h +j.k3=(j.k3|8388608)>>>0}h=j.z +if(!(h!=null&&h.length!==0)){h=j.ax +if(!(h!=null&&h.length!==0))i=i!=null&&i.length!==0 +else i=!0}else i=!0 +if(i){i=j.a +if((i&16)===0){if((i&16384)!==0){l.toString +l=(l&1)===0&&(i&8)===0}else l=!1 +l=!l}else l=!1}else l=!1 +j.iL(B.tT,l) +j.iL(B.tV,(j.a&16)!==0) +l=j.b +l.toString +j.iL(B.tU,((l&1)!==0||(j.a&8)!==0)&&(j.a&16)===0) +l=j.b +l.toString +j.iL(B.tR,(l&64)!==0||(l&128)!==0) +l=j.b +l.toString +j.iL(B.tS,(l&32)!==0||(l&16)!==0||(l&4)!==0||(l&8)!==0) +l=j.a +j.iL(B.tW,(l&1)!==0||(l&65536)!==0) +l=j.a +if((l&16384)!==0){i=j.b +i.toString +l=(i&1)===0&&(l&8)===0}else l=!1 +j.iL(B.tX,l) +l=j.a +j.iL(B.tY,(l&32768)!==0&&(l&8192)===0) +l=j.k3 +if((l&512)!==0||(l&65536)!==0||(l&64)!==0)j.z9() +l=j.dy +l=!(l!=null&&!B.cP.gS(l))&&j.go===-1 +i=j.k2 +if(l){l=i.style +l.setProperty("pointer-events","all","")}else{l=i.style +l.setProperty("pointer-events","none","")}}for(m=0;m=20)return j.d=!0 +if(!J.dq(B.Gb.a,a.type))return!0 +if(j.a!=null)return!1 +r=A.b_("activationPoint") +switch(a.type){case"click":r.sbH(new A.qO(a.offsetX,a.offsetY)) +break +case"touchstart":case"touchend":s=t.ef +s=A.bt(new A.iR(a.changedTouches,s),s.h("j.E"),t.e) +s=A.m(s).z[1].a(J.kK(s.a)) +r.sbH(new A.qO(s.clientX,s.clientY)) +break +case"pointerdown":case"pointerup":r.sbH(new A.qO(a.clientX,a.clientY)) +break +default:return!0}s=j.b.getBoundingClientRect() +q=s.left +p=s.right +o=s.left +n=s.top +m=s.bottom +s=s.top +l=r.ap().a-(q+(p-o)/2) +k=r.ap().b-(n+(m-s)/2) +if(l*l+k*k<1&&!0){j.d=!0 +j.a=A.c8(B.bJ,new A.Uz(j)) +return!1}return!0}, +Jn(){var s,r="setAttribute",q=this.b=A.aP(self.document,"flt-semantics-placeholder") +A.bI(q,"click",t.e.a(A.aN(new A.Uy(this))),!0) +s=A.a6("button") +A.x(q,r,["role",s==null?t.K.a(s):s]) +s=A.a6("Enable accessibility") +A.x(q,r,["aria-label",s==null?t.K.a(s):s]) +s=q.style +A.n(s,"position","absolute") +A.n(s,"left","0") +A.n(s,"top","0") +A.n(s,"right","0") +A.n(s,"bottom","0") +return q}, +m(){var s=this.b +if(s!=null)s.remove() +this.a=this.b=null}} +A.Uz.prototype={ +$0(){this.a.m() +var s=$.cW;(s==null?$.cW=A.id():s).stx(!0)}, +$S:0} +A.Uy.prototype={ +$1(a){this.a.tb(a)}, +$S:1} +A.ox.prototype={ +im(a){var s,r=this,q=r.b,p=q.k2 +p.tabIndex=0 +q.ef("button",(q.a&8)!==0) +if(q.Hu()===B.fm&&(q.a&8)!==0){s=A.a6("true") +A.x(p,"setAttribute",["aria-disabled",s==null?t.K.a(s):s]) +r.wd()}else{p.removeAttribute("aria-disabled") +s=q.b +s.toString +if((s&1)!==0&&(q.a&16)===0){if(r.c==null){s=t.e.a(A.aN(new A.ZL(r))) +r.c=s +A.bI(p,"click",s,null)}}else r.wd()}if((q.k3&1)!==0&&(q.a&32)!==0)q.k1.d.push(new A.ZM(p))}, +wd(){var s=this.c +if(s==null)return +A.dw(this.b.k2,"click",s,null) +this.c=null}, +m(){this.wd() +this.b.ef("button",!1)}} +A.ZL.prototype={ +$1(a){var s,r=this.a.b +if(r.k1.y!==B.bL)return +s=$.aB() +A.kG(s.p4,s.R8,r.id,B.d1,null)}, +$S:1} +A.ZM.prototype={ +$0(){this.a.focus()}, +$S:0} +A.YG.prototype={ +xz(a,b,c,d){this.CW=b +this.x=d +this.y=c}, +XQ(a){var s,r,q=this,p=q.ch +if(p===a)return +else if(p!=null)q.fs(0) +q.ch=a +q.c=a.c +q.ES() +p=q.CW +p.toString +s=q.x +s.toString +r=q.y +r.toString +q.Mo(0,p,r,s)}, +fs(a){var s,r,q,p=this +if(!p.b)return +p.b=!1 +p.w=p.r=null +for(s=p.z,r=0;r=this.b)throw A.d(A.abz(b,this)) +return this.a[b]}, +l(a,b,c){if(b>=this.b)throw A.d(A.abz(b,this)) +this.a[b]=c}, +sp(a,b){var s,r,q,p=this,o=p.b +if(bo){if(o===0)q=new Uint8Array(b) +else q=p.uN(b) +B.Q.dA(q,0,p.b,p.a) +p.a=q}}p.b=b}, +cS(a,b){var s=this,r=s.b +if(r===s.a.length)s.B6(r) +s.a[s.b++]=b}, +B(a,b){var s=this,r=s.b +if(r===s.a.length)s.B6(r) +s.a[s.b++]=b}, +qd(a,b,c,d){A.dA(c,"start") +if(d!=null&&c>d)throw A.d(A.bE(d,c,null,"end",null)) +this.Px(b,c,d)}, +I(a,b){return this.qd(a,b,0,null)}, +Px(a,b,c){var s,r,q,p=this +if(A.m(p).h("B").b(a))c=c==null?a.length:c +if(c!=null){p.U7(p.b,a,b,c) +return}for(s=J.am(a),r=0;s.t();){q=s.gC(s) +if(r>=b)p.cS(0,q);++r}if(ro.gp(b)||d>o.gp(b))throw A.d(A.a5("Too few elements")) +s=d-c +r=p.b+s +p.Rw(r) +o=p.a +q=a+s +B.Q.be(o,q,p.b+s,o,a) +B.Q.be(p.a,a,q,b,c) +p.b=r}, +Rw(a){var s,r=this +if(a<=r.a.length)return +s=r.uN(a) +B.Q.dA(s,0,r.b,r.a) +r.a=s}, +uN(a){var s=this.a.length*2 +if(a!=null&&ss)throw A.d(A.bE(c,0,s,null,null)) +s=this.a +if(A.m(this).h("hX").b(d))B.Q.be(s,b,c,d.a,e) +else B.Q.be(s,b,c,d,e)}, +dA(a,b,c,d){return this.be(a,b,c,d,0)}} +A.Ix.prototype={} +A.FR.prototype={} +A.eW.prototype={ +j(a){return A.w(this).j(0)+"("+this.a+", "+A.h(this.b)+")"}} +A.Tt.prototype={ +bu(a){return A.lv(B.bF.er(B.bc.xA(a)).buffer,0,null)}, +e3(a){if(a==null)return a +return B.bc.dq(0,B.c4.er(A.cB(a.buffer,0,null)))}} +A.Tv.prototype={ +fu(a){return B.K.bu(A.aL(["method",a.a,"args",a.b],t.N,t.z))}, +eY(a){var s,r,q,p=null,o=B.K.e3(a) +if(!t.f.b(o))throw A.d(A.bY("Expected method call Map, got "+A.h(o),p,p)) +s=J.aC(o) +r=s.i(o,"method") +q=s.i(o,"args") +if(typeof r=="string")return new A.eW(r,q) +throw A.d(A.bY("Invalid method call: "+A.h(o),p,p))}} +A.Zd.prototype={ +bu(a){var s=A.a8O() +this.cM(0,s,!0) +return s.iQ()}, +e3(a){var s,r +if(a==null)return null +s=new A.DJ(a) +r=this.fb(0,s) +if(s.b=b.a.byteLength)throw A.d(B.ao) +return this.ib(b.km(0),b)}, +ib(a,b){var s,r,q,p,o,n,m,l,k=this +switch(a){case 0:s=null +break +case 1:s=!0 +break +case 2:s=!1 +break +case 3:r=b.a.getInt32(b.b,B.X===$.cG()) +b.b+=4 +s=r +break +case 4:s=b.tl(0) +break +case 5:q=k.dg(b) +s=A.j5(B.c4.er(b.kn(q)),16) +break +case 6:b.iA(8) +r=b.a.getFloat64(b.b,B.X===$.cG()) +b.b+=8 +s=r +break +case 7:q=k.dg(b) +s=B.c4.er(b.kn(q)) +break +case 8:s=b.kn(k.dg(b)) +break +case 9:q=k.dg(b) +b.iA(4) +p=b.a +o=A.ac6(p.buffer,p.byteOffset+b.b,q) +b.b=b.b+4*q +s=o +break +case 10:s=b.tm(k.dg(b)) +break +case 11:q=k.dg(b) +b.iA(8) +p=b.a +o=A.ac4(p.buffer,p.byteOffset+b.b,q) +b.b=b.b+8*q +s=o +break +case 12:q=k.dg(b) +s=[] +for(p=b.a,n=0;n=p.byteLength)A.a2(B.ao) +b.b=m+1 +s.push(k.ib(p.getUint8(m),b))}break +case 13:q=k.dg(b) +p=t.z +s=A.y(p,p) +for(p=b.a,n=0;n=p.byteLength)A.a2(B.ao) +b.b=m+1 +m=k.ib(p.getUint8(m),b) +l=b.b +if(l>=p.byteLength)A.a2(B.ao) +b.b=l+1 +s.l(0,m,k.ib(p.getUint8(l),b))}break +default:throw A.d(B.ao)}return s}, +dQ(a,b){var s,r,q +if(b<254)a.b.cS(0,b) +else{s=a.b +r=a.c +q=a.d +if(b<=65535){s.cS(0,254) +r.setUint16(0,b,B.X===$.cG()) +s.qd(0,q,0,2)}else{s.cS(0,255) +r.setUint32(0,b,B.X===$.cG()) +s.qd(0,q,0,4)}}}, +dg(a){var s=a.km(0) +switch(s){case 254:s=a.a.getUint16(a.b,B.X===$.cG()) +a.b+=2 +return s +case 255:s=a.a.getUint32(a.b,B.X===$.cG()) +a.b+=4 +return s +default:return s}}} +A.Zg.prototype={ +$2(a,b){var s=this.a,r=this.b +s.cM(0,r,a) +s.cM(0,r,b)}, +$S:126} +A.Zh.prototype={ +eY(a){var s,r,q +a.toString +s=new A.DJ(a) +r=B.b0.fb(0,s) +q=B.b0.fb(0,s) +if(typeof r=="string"&&s.b>=a.byteLength)return new A.eW(r,q) +else throw A.d(B.jy)}, +nJ(a){var s=A.a8O() +s.b.cS(0,0) +B.b0.cM(0,s,a) +return s.iQ()}, +jW(a,b,c){var s=A.a8O() +s.b.cS(0,1) +B.b0.cM(0,s,a) +B.b0.cM(0,s,c) +B.b0.cM(0,s,b) +return s.iQ()}} +A.a_Y.prototype={ +iA(a){var s,r,q=this.b,p=B.f.cv(q.b,a) +if(p!==0)for(s=a-p,r=0;r0)b=c +else{f=$.bC().x +if(f==null){f=self.window.devicePixelRatio +if(f===0)f=1}b=1/f}f=A.cT(d) +g.setProperty("-webkit-text-stroke",A.h(b)+"px "+A.h(f),"")}else if(d!=null){f=A.cT(d) +f.toString +g.setProperty("color",f,"")}f=h.cx +a=f==null?a8:f.gac(f) +if(a!=null){f=A.cT(a) +f.toString +g.setProperty("background-color",f,"")}a0=h.at +if(a0!=null){f=B.c.cJ(a0) +g.setProperty("font-size",""+f+"px","")}f=h.f +if(f!=null){f=A.afr(f) +f.toString +g.setProperty("font-weight",f,"")}f=A.a66(h.y) +f.toString +g.setProperty("font-family",f,"") +f=h.ax +if(f!=null)g.setProperty("letter-spacing",A.h(f)+"px","") +f=h.ay +if(f!=null)g.setProperty("word-spacing",A.h(f)+"px","") +f=h.b +e=f!=null +a1=e&&!0 +a2=h.db +if(a2!=null){a3=A.aqc(a2) +g.setProperty("text-shadow",a3,"")}if(a1)if(e){e=h.d +f=f.a +a3=(f|1)===f?""+"underline ":"" +if((f|2)===f)a3+="overline " +f=(f|4)===f?a3+"line-through ":a3 +if(e!=null)f+=A.h(A.apd(e)) +a4=f.length===0?a8:f.charCodeAt(0)==0?f:f +if(a4!=null){f=$.by() +if(f===B.B){f=i.style +f.setProperty("-webkit-text-decoration",a4,"")}else g.setProperty("text-decoration",a4,"") +a5=h.c +if(a5!=null){f=A.cT(a5) +f.toString +g.setProperty("text-decoration-color",f,"")}}}a6=h.as +if(a6!=null&&a6.length!==0){h=A.aps(a6) +g.setProperty("font-variation-settings",h,"")}h=k.K9() +g=h.a +f=h.b +e=i.style +e.setProperty("position","absolute","") +e.setProperty("top",A.h(f)+"px","") +e.setProperty("left",A.h(g)+"px","") +e.setProperty("width",A.h(h.c-g)+"px","") +e.setProperty("line-height",A.h(h.d-f)+"px","") +i.append(self.document.createTextNode(j)) +a9.append(i)}++r}return a9}, +oK(){return this.gdC().oK()}, +m2(a,b,c,d){return this.gdC().KI(a,b,c,d)}, +tg(a,b,c){return this.m2(a,b,c,B.di)}, +fP(a){return this.gdC().fP(a)}, +tr(a){var s,r +switch(a.b.a){case 0:s=a.a-1 +break +case 1:s=a.a +break +default:s=null}r=this.c +r===$&&A.c() +return new A.cD(A.adE(B.Na,r,s+1),A.adE(B.N9,r,s))}, +zS(a){var s,r,q,p,o,n=this,m=a.a,l=t.dB,k=0 +while(!0){s=n.r +if(s===$){r=A.a([],l) +n.r!==$&&A.ap() +q=n.r=new A.ke(n,r,B.A) +p=q +s=p}else p=s +if(!(k=o.b&&m") +return A.aw(new A.aA(s,new A.OR(),r),!0,r.h("bn.E"))}, +m(){this.y=!0}} +A.OR.prototype={ +$1(a){return a.a}, +$S:257} +A.tB.prototype={} +A.os.prototype={ +JX(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b=this,a=b.a +if(a==null){s=b.guB(b) +r=b.guS() +q=b.guT() +p=b.guU() +o=b.guV() +n=b.gvd(b) +m=b.gvb(b) +l=b.gwg() +k=b.gv7(b) +j=b.gv8() +i=b.gv9() +h=b.gvc() +g=b.gva(b) +f=b.gvw(b) +e=b.gwy(b) +d=b.gud(b) +c=b.gvy() +e=b.a=A.abd(b.gun(b),s,r,q,p,o,k,j,i,g,m,h,n,b.gpl(),d,f,c,b.gw9(),l,e) +return e}return a}} +A.zp.prototype={ +guB(a){var s=this.c.a +if(s==null)if(this.gpl()==null){s=this.b +s=s.guB(s)}else s=null +return s}, +guS(){var s=this.c.b +return s==null?this.b.guS():s}, +guT(){var s=this.c.c +return s==null?this.b.guT():s}, +guU(){var s=this.c.d +return s==null?this.b.guU():s}, +guV(){var s=this.c.e +return s==null?this.b.guV():s}, +gvd(a){var s=this.c.f +if(s==null){s=this.b +s=s.gvd(s)}return s}, +gvb(a){var s=this.b +s=s.gvb(s) +return s}, +gwg(){var s=this.c.w +return s==null?this.b.gwg():s}, +gv8(){var s=this.c.z +return s==null?this.b.gv8():s}, +gv9(){var s=this.b.gv9() +return s}, +gvc(){var s=this.c.as +return s==null?this.b.gvc():s}, +gva(a){var s=this.c.at +if(s==null){s=this.b +s=s.gva(s)}return s}, +gvw(a){var s=this.c.ax +if(s==null){s=this.b +s=s.gvw(s)}return s}, +gwy(a){var s=this.c.ay +if(s==null){s=this.b +s=s.gwy(s)}return s}, +gud(a){var s=this.c.ch +if(s==null){s=this.b +s=s.gud(s)}return s}, +gvy(){var s=this.c.CW +return s==null?this.b.gvy():s}, +gun(a){var s=this.c.cx +if(s==null){s=this.b +s=s.gun(s)}return s}, +gpl(){var s=this.c.cy +return s==null?this.b.gpl():s}, +gw9(){var s=this.c.db +return s==null?this.b.gw9():s}, +gv7(a){var s=this.c +if(s.x)s=s.y +else{s=this.b +s=s.gv7(s)}return s}} +A.El.prototype={ +guS(){return null}, +guT(){return null}, +guU(){return null}, +guV(){return null}, +gvd(a){return this.b.c}, +gvb(a){return this.b.d}, +gwg(){return null}, +gv7(a){var s=this.b.f +return s==null?"sans-serif":s}, +gv8(){return null}, +gv9(){return null}, +gvc(){return null}, +gva(a){var s=this.b.r +return s==null?14:s}, +gvw(a){return null}, +gwy(a){return null}, +gud(a){return this.b.w}, +gvy(){return this.b.Q}, +gun(a){return null}, +gpl(){return null}, +gw9(){return null}, +guB(){return B.yl}} +A.OQ.prototype={ +gC5(){var s=this.d,r=s.length +return r===0?this.e:s[r-1]}, +gJl(){return this.r}, +rY(a){this.d.push(new A.zp(this.gC5(),t.vK.a(a)))}, +fa(){var s=this.d +if(s.length!==0)s.pop()}, +n8(a){var s,r=this,q=r.a,p=q.a,o=p+a +q.a=o +s=r.gC5().JX() +r.Xg(s) +r.c.push(new A.tB(s,p.length,o.length))}, +Xg(a){var s,r,q +if(!this.w)return +s=a.b +if(s!=null){r=s.a +r=B.e.a!==r}else r=!1 +if(r){this.w=!1 +return}q=a.as +if(q!=null&&q.length!==0){this.w=!1 +return}}, +aS(){var s,r=this,q=r.c +if(q.length===0)q.push(new A.tB(r.e.JX(),0,0)) +s=r.a.a +return new A.zl(q,r.b,s.charCodeAt(0)==0?s:s,r.w)}} +A.SI.prototype={ +eZ(a){return this.ZS(a)}, +ZS(a4){var s=0,r=A.Y(t.H),q,p=this,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3 +var $async$eZ=A.Z(function(a5,a6){if(a5===1)return A.V(a6,r) +while(true)switch(s){case 0:s=3 +return A.a1(A.pF(a4.m1("FontManifest.json")),$async$eZ) +case 3:a0=a6 +if(!a0.gy3()){$.cI().$1("Font manifest does not exist at `"+a0.a+"` - ignoring.") +s=1 +break}a1=t.jS +a2=B.bc +a3=B.N +s=4 +return A.a1(A.BO(a0),$async$eZ) +case 4:o=a1.a(a2.dq(0,a3.dq(0,a6))) +if(o==null)throw A.d(A.mL(u.u)) +p.a=new A.RQ(A.a([],t.lB),A.a([],t.J)) +for(n=t.a,m=J.fa(o,n),m=new A.db(m,m.gp(m)),l=t.N,k=t.j,j=A.m(m).c;m.t();){i=m.d +if(i==null)i=j.a(i) +h=J.aC(i) +g=A.ci(h.i(i,"family")) +i=J.fa(k.a(h.i(i,"fonts")),n) +for(i=new A.db(i,i.gp(i)),h=A.m(i).c;i.t();){f=i.d +if(f==null)f=h.a(f) +e=J.aC(f) +d=A.bW(e.i(f,"asset")) +c=A.y(l,l) +for(b=J.am(e.gbg(f));b.t();){a=b.gC(b) +if(a!=="asset")c.l(0,a,A.h(e.i(f,a)))}f=p.a +f.toString +g.toString +e="url("+a4.m1(d)+")" +b=$.agg().b +if(b.test(g)||$.agf().LE(g)!==g)f.Dp("'"+g+"'",e,c) +f.Dp(g,e,c)}}s=5 +return A.a1(p.a.qU(),$async$eZ) +case 5:case 1:return A.W(q,r)}}) +return A.X($async$eZ,r)}, +lQ(){var s=this.a +if(s!=null)s.lQ() +s=this.b +if(s!=null)s.lQ()}, +L(a){this.b=this.a=null +self.document.fonts.clear()}} +A.RQ.prototype={ +Dp(a,b,c){var s,r,q,p=new A.RR(a) +try{s=A.aqT(a,b,c) +this.a.push(p.$1(s))}catch(q){r=A.ah(q) +$.cI().$1('Error while loading font family "'+a+'":\n'+A.h(r))}}, +lQ(){var s,r=this.b +if(r.length===0)return +s=self.document.fonts +s.toString +B.b.P(r,A.ak1(s))}, +qU(){var s=0,r=A.Y(t.H),q=this,p,o,n +var $async$qU=A.Z(function(a,b){if(a===1)return A.V(b,r) +while(true)switch(s){case 0:p=B.b +o=q.b +n=J +s=2 +return A.a1(A.nk(q.a,t.qC),$async$qU) +case 2:p.I(o,n.aan(b,t.e)) +return A.W(null,r)}}) +return A.X($async$qU,r)}} +A.RR.prototype={ +KB(a){var s=0,r=A.Y(t.qC),q,p=2,o,n=this,m,l,k,j +var $async$$1=A.Z(function(b,c){if(b===1){o=c +s=p}while(true)switch(s){case 0:p=4 +s=7 +return A.a1(A.fW(a.load(),t.e),$async$$1) +case 7:m=c +q=m +s=1 +break +p=2 +s=6 +break +case 4:p=3 +j=o +l=A.ah(j) +$.cI().$1('Error while trying to load font family "'+n.a+'":\n'+A.h(l)) +q=null +s=1 +break +s=6 +break +case 3:s=2 +break +case 6:case 1:return A.W(q,r) +case 2:return A.V(o,r)}}) +return A.X($async$$1,r)}, +$1(a){return this.KB(a)}, +$S:256} +A.ZZ.prototype={} +A.ZY.prototype={} +A.U0.prototype={ +r7(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=A.a([],t.sN),c=this.a,b=A.ala(c).r7(),a=new J.h1(b,b.length) +a.t() +c=A.ap7(c) +s=new J.h1(c,c.length) +s.t() +c=this.b +r=new J.h1(c,c.length) +r.t() +q=a.d +if(q==null)q=A.m(a).c.a(q) +p=s.d +if(p==null)p=A.m(s).c.a(p) +o=r.d +if(o==null)o=A.m(r).c.a(o) +for(c=A.m(a).c,b=A.m(s).c,n=A.m(r).c,m=0;!0;m=i){l=q.b +k=p.b +j=o.c +i=Math.min(l,Math.min(k,j)) +h=l-i +g=h===0?q.c:B.n +f=i-m +d.push(A.a84(m,i,g,p.c,p.d,o,A.kD(q.d-h,0,f),A.kD(q.e-h,0,f))) +if(l===i)if(a.t()){q=a.d +if(q==null)q=c.a(q) +e=!0}else e=!1 +else e=!1 +if(k===i)if(s.t()){p=s.d +if(p==null)p=b.a(p) +e=!0}if(j===i)if(r.t()){o=r.d +if(o==null)o=n.a(o) +e=!0}if(!e)break}return d}} +A.a19.prototype={ +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s=this +if(b==null)return!1 +return b instanceof A.fq&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d==s.d&&b.e===s.e&&b.f===s.f&&b.r===s.r&&b.w===s.w}} +A.fq.prototype={ +gp(a){return this.b-this.a}, +gyf(){return this.b-this.a===this.w}, +gi6(){return!1}, +tq(a){var s=a.c +s===$&&A.c() +return B.d.am(s,this.a,this.b-this.r)}, +p_(a,b){var s,r,q,p,o,n,m,l,k,j=this,i=j.a +if(i===b)return A.a([null,j],t.wf) +s=j.b +if(s===b)return A.a([j,null],t.wf) +r=s-b +q=j.r +p=Math.min(q,r) +o=j.w +n=Math.min(o,r) +m=j.d +l=j.e +k=j.f +return A.a([A.a84(i,b,B.n,m,l,k,q-p,o-n),A.a84(b,s,j.c,m,l,k,p,n)],t.sN)}, +j(a){var s=this +return B.M5.j(0)+"("+s.a+", "+s.b+", "+s.c.j(0)+", "+A.h(s.d)+")"}} +A.a1V.prototype={ +oX(a,b,c,d,e){var s=this +s.hg$=a +s.iS$=b +s.iT$=c +s.iU$=d +s.cU$=e}} +A.a1W.prototype={ +gho(a){var s,r,q=this,p=q.dF$ +p===$&&A.c() +s=q.lk$ +if(p.x===B.q){s===$&&A.c() +p=s}else{s===$&&A.c() +r=q.cU$ +r===$&&A.c() +r=p.a.f-(s+(r+q.cV$)) +p=r}return p}, +glV(a){var s,r=this,q=r.dF$ +q===$&&A.c() +s=r.lk$ +if(q.x===B.q){s===$&&A.c() +q=r.cU$ +q===$&&A.c() +q=s+(q+r.cV$)}else{s===$&&A.c() +q=q.a.f-s}return q}, +a12(a){var s,r,q=this,p=q.dF$ +p===$&&A.c() +s=p.e +if(q.b>p.c-s)return +r=q.w +if(r===0)return +q.cV$=(a-p.a.f)/(p.f-s)*r}} +A.a1U.prototype={ +gEX(){var s,r,q,p,o,n,m,l,k=this,j=k.qY$ +if(j===$){s=k.dF$ +s===$&&A.c() +r=k.gho(k) +q=k.dF$.a +p=k.iS$ +p===$&&A.c() +o=k.glV(k) +n=k.dF$ +m=k.iT$ +m===$&&A.c() +l=k.d +l.toString +k.qY$!==$&&A.ap() +j=k.qY$=new A.iF(s.a.r+r,q.w-p,q.r+o,n.a.w+m,l)}return j}, +K9(){var s,r,q,p,o,n,m,l,k,j,i=this,h=i.dF$ +h===$&&A.c() +if(i.b>h.c-h.e){s=i.d +s.toString +h=h.a.r +if(s===B.q){s=i.gho(i) +r=i.dF$.a +q=i.iS$ +q===$&&A.c() +p=i.glV(i) +o=i.cU$ +o===$&&A.c() +n=i.cV$ +m=i.iU$ +m===$&&A.c() +l=i.dF$ +k=i.iT$ +k===$&&A.c() +j=i.d +j.toString +j=new A.iF(h+s,r.w-q,r.r+p-(o+n-m),l.a.w+k,j) +h=j}else{s=i.gho(i) +r=i.cU$ +r===$&&A.c() +q=i.cV$ +p=i.iU$ +p===$&&A.c() +o=i.dF$.a +n=i.iS$ +n===$&&A.c() +m=i.glV(i) +l=i.dF$ +k=i.iT$ +k===$&&A.c() +j=i.d +j.toString +j=new A.iF(h+s+(r+q-p),o.w-n,o.r+m,l.a.w+k,j) +h=j}return h}return i.gEX()}, +Kb(a,b){var s,r,q,p,o,n,m,l,k,j=this +if(b==null)b=j.a +if(a==null)a=j.b +s=j.a +r=b<=s +if(r&&a>=j.b-j.r)return j.gEX() +if(r)q=0 +else{r=j.hg$ +r===$&&A.c() +r.sjP(j.f) +r=j.hg$ +p=$.mC() +o=r.a.c +o===$&&A.c() +q=A.kH(p,o,s,b,r.c.a.ax)}s=j.b-j.r +if(a>=s)n=0 +else{r=j.hg$ +r===$&&A.c() +r.sjP(j.f) +r=j.hg$ +p=$.mC() +o=r.a.c +o===$&&A.c() +n=A.kH(p,o,a,s,r.c.a.ax)}s=j.d +s.toString +if(s===B.q){m=j.gho(j)+q +l=j.glV(j)-n}else{m=j.gho(j)+n +l=j.glV(j)-q}s=j.dF$ +s===$&&A.c() +s=s.a +r=s.r +s=s.w +p=j.iS$ +p===$&&A.c() +o=j.iT$ +o===$&&A.c() +k=j.d +k.toString +return new A.iF(r+m,s-p,r+l,s+o,k)}, +a2H(){return this.Kb(null,null)}, +KT(a){var s,r,q,p,o,n,m,l,k,j=this +a=j.Us(a) +s=j.a +r=j.b-j.r +q=r-s +if(q===0)return new A.bo(s,B.G) +if(q===1){p=j.cU$ +p===$&&A.c() +return aq.c;){if(q.gYx()){q.a0H() +s.push(q.aS()) +a0.x=!0 +break $label0$0}if(q.ga0V())q.a2p() +else q.a_o() +n+=q.Y9(o,n+1) +s.push(q.aS()) +q=q.J5()}a1=q.a +if(a1.length!==0){a1=B.b.gO(a1).c +a1=a1===B.b4||a1===B.b5}else a1=!1 +if(a1){s.push(q.aS()) +q=q.J5()}}a1=r.b +l=a1.e +if(l!=null&&s.length>l){a0.x=!0 +B.b.zf(s,l,s.length)}for(r=s.length,k=1/0,j=-1/0,i=0;ij)j=c}a0.z=new A.C(k,0,j,a0.c) +if(r!==0)if(isFinite(a0.b)&&a1.a===B.hA)for(n=0;n=d;--s){q=o[s] +q.lk$=e+r +if(q.d==null)q.d=a +p=q.cU$ +p===$&&A.c() +r+=p+q.cV$}return r}, +oK(){var s,r,q,p,o,n,m,l=A.a([],t.px) +for(s=this.y,r=s.length,q=0;q=b||a<0||b<0)return A.a([],t.px) +s=this.a.c +s===$&&A.c() +r=s.length +if(a>r||b>r)return A.a([],t.px) +q=A.a([],t.px) +for(s=this.y,p=s.length,o=0;o=j+l.r)return new A.bo(l.c-l.d,B.am) +s=k-j +for(k=l.w,j=k.length,r=0;r1 +return this.as>0}, +gY3(){var s=this.c-this.w,r=this.d.b +switch(r.a.a){case 2:return s/2 +case 1:return s +case 4:r=r.b +return(r==null?B.q:r)===B.S?s:0 +case 5:r=r.b +return(r==null?B.q:r)===B.S?0:s +default:return 0}}, +gYx(){var s,r=this.d.b +if(r.z==null)return!1 +s=r.e +return s==null||s===this.f+1}, +gQb(){var s=this.a +if(s.length!==0){s=B.b.gO(s).c +s=s===B.b4||s===B.b5}else s=!1 +if(s)return!1 +s=this.b +s=s==null?null:s.length!==0 +if(s===!0)return!1 +return!0}, +FM(a){var s=this +s.q6(a) +if(a.c!==B.n)s.Q=s.a.length +B.b.B(s.a,a)}, +q6(a){var s,r=this,q=a.w +r.at=r.at+q +if(a.gyf())r.ax+=q +else{r.ax=q +q=r.x +s=a.iU$ +s===$&&A.c() +r.w=q+s}q=r.x +s=a.cU$ +s===$&&A.c() +r.x=q+(s+a.cV$) +if(a.gi6())r.PO(a) +if(a.c!==B.n)++r.as +q=r.y +s=a.iS$ +s===$&&A.c() +r.y=Math.max(q,s) +s=r.z +q=a.iT$ +q===$&&A.c() +r.z=Math.max(s,q)}, +PO(a){var s,r,q,p,o,n=this,m=t.zC.a(a.f) +switch(m.geP()){case B.ha:s=n.y +r=m.gbo(m).a4(0,n.y) +break +case B.e8:s=m.gbo(m).a4(0,n.z) +r=n.z +break +case B.hb:q=n.y +p=n.z +o=m.gbo(m).cO(0,2).a4(0,(q+p)/2) +s=B.c.T(n.y,o) +r=B.c.T(n.z,o) +break +case B.h8:s=m.gbo(m) +r=0 +break +case B.h9:r=m.gbo(m) +s=0 +break +case B.h7:s=m.ga3j() +r=m.gbo(m).a4(0,s) +break +default:s=null +r=null}q=a.iU$ +q===$&&A.c() +p=a.cU$ +p===$&&A.c() +a.oX(n.e,s,r,q,p+a.cV$)}, +mQ(){var s,r=this,q=r.as=r.ax=r.at=r.z=r.y=r.x=r.w=0 +r.Q=-1 +for(s=r.a;q1||a +q=B.b.gO(s) +if(q.gi6()){if(r){p=g.b +p.toString +B.b.lA(p,0,B.b.dN(s)) +g.mQ()}return}p=g.e +p.sjP(q.f) +o=g.x +n=q.cU$ +n===$&&A.c() +m=q.cV$ +l=q.b-q.r +k=p.HO(q.a,l,r,b-(o-(n+m))) +if(k===l)return +B.b.dN(s) +g.mQ() +j=q.p_(0,k) +i=B.b.gG(j) +if(i!=null){p.ys(i) +g.FM(i)}h=B.b.gO(j) +if(h!=null){p.ys(h) +s=g.b +s.toString +B.b.lA(s,0,h)}}, +a_o(){return this.HP(!1,null)}, +a0H(){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=g.d.b.z +f.toString +g.b=A.a([],t.sN) +s=g.e +r=g.a +s.sjP(B.b.gO(r).f) +q=$.mC() +p=f.length +o=A.kH(q,f,0,p,null) +n=g.c +m=Math.max(0,n-o) +while(!0){if(r.length>1){l=g.x +k=B.b.gO(r) +j=k.cU$ +j===$&&A.c() +k=l-(j+k.cV$) +l=k}else l=0 +if(!(l>m))break +l=g.b +l.toString +B.b.lA(l,0,B.b.dN(r)) +g.mQ() +s.sjP(B.b.gO(r).f) +o=A.kH(q,f,0,p,null) +m=n-o}i=B.b.gO(r) +g.HP(!0,m) +f=g.gHx() +h=new A.AV($,$,$,$,$,$,$,$,0,B.b5,null,B.fr,i.f,0,0,f,f) +f=i.iS$ +f===$&&A.c() +r=i.iT$ +r===$&&A.c() +h.oX(s,f,r,o,o) +g.FM(h)}, +a2p(){var s,r=this.a,q=r.length,p=q-2 +for(;r[p].c===B.n;)--p +s=p+1 +A.d_(s,q,q,null,null) +this.b=A.eG(r,s,q,A.ac(r).c).cK(0) +B.b.zf(r,s,r.length) +this.mQ()}, +Y9(a,b){var s,r=this,q=r.a,p=b +while(!0){if(r.gQb())if(p1;){p=B.f.cq(q+r,2) +o=$.mC() +s===$&&A.c() +n=A.kH(o,s,a,p,this.c.a.ax) +if(nd?q:p +r=p}}return q===a&&!c?q+1:q}} +A.jI.prototype={ +D(){return"LineBreakType."+this.b}} +A.Rj.prototype={ +r7(){return A.ap8(this.a)}} +A.a_T.prototype={ +r7(){return A.af6(this.a,this.b)}} +A.jH.prototype={ +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s=this +if(b==null)return!1 +return b instanceof A.jH&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d&&b.e===s.e}, +j(a){return"LineBreakFragment("+this.a+", "+this.b+", "+this.c.j(0)+")"}} +A.a5e.prototype={ +$2(a,b){var s=this,r=a===B.b5?s.b.length:s.a.f,q=s.a,p=q.a +if(p===B.bO)++q.d +else if(p===B.ct||p===B.dD||p===B.dH){++q.e;++q.d}if(a===B.n)return +p=q.c +s.c.push(new A.jH(a,q.e,q.d,p,r)) +q.c=q.f +q.d=q.e=0 +q.a=q.b=null}, +$S:247} +A.Er.prototype={ +m(){this.a.remove()}} +A.a_h.prototype={ +aC(a,b){var s,r,q,p,o,n,m,l=this.a.gdC().y +for(s=l.length,r=0;rthis.b)return B.MU +return B.MT}} +A.iJ.prototype={ +r3(a,b,c){var s=A.yu(b,c) +return s==null?this.b:this.lt(s)}, +lt(a){var s,r,q,p,o=this +if(a==null)return o.b +s=o.c +r=s.i(0,a) +if(r!=null)return r +q=o.PY(a) +p=q===-1?o.b:o.a[q].c +s.l(0,a,p) +return p}, +PY(a){var s,r,q=this.a,p=q.length +for(s=0;s")).P(0,new A.QV(this,r)) +return r}} +A.QX.prototype={ +$1(a){a.preventDefault()}, +$S:1} +A.QV.prototype={ +$1(a){var s=this.a,r=s.b.i(0,a) +r.toString +this.b.push(A.bT(r,"input",new A.QW(s,a,r)))}, +$S:246} +A.QW.prototype={ +$1(a){var s,r=this.a.c,q=this.b +if(r.i(0,q)==null)throw A.d(A.a5("AutofillInfo must have a valid uniqueIdentifier.")) +else{r=r.i(0,q) +r.toString +s=A.ab9(this.c) +$.aB().fC("flutter/textinput",B.ad.fu(new A.eW("TextInputClient.updateEditingStateWithTag",[0,A.aL([r.b,s.K7()],t.dR,t.z)])),A.Nl())}}, +$S:1} +A.yZ.prototype={ +G6(a,b){var s,r,q="password",p=this.d,o=this.e,n=globalThis.HTMLInputElement +if(n!=null&&a instanceof n){if(o!=null)a.placeholder=o +s=p==null +if(!s){a.name=p +a.id=p +if(B.d.q(p,q))A.Qn(a,q) +else A.Qn(a,"text")}s=s?"on":p +a.autocomplete=s}else{n=globalThis.HTMLTextAreaElement +if(n!=null&&a instanceof n){if(o!=null)a.placeholder=o +s=p==null +if(!s){a.name=p +a.id=p}r=A.a6(s?"on":p) +A.x(a,"setAttribute",["autocomplete",r==null?t.K.a(r):r])}}}, +dm(a){return this.G6(a,!1)}} +A.oz.prototype={} +A.nb.prototype={ +grC(){return Math.min(this.b,this.c)}, +grA(){return Math.max(this.b,this.c)}, +K7(){var s=this +return A.aL(["text",s.a,"selectionBase",s.b,"selectionExtent",s.c,"composingBase",s.d,"composingExtent",s.e],t.N,t.z)}, +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(A.w(s)!==J.J(b))return!1 +return b instanceof A.nb&&b.a==s.a&&b.grC()===s.grC()&&b.grA()===s.grA()&&b.d===s.d&&b.e===s.e}, +j(a){var s=this.bn(0) +return s}, +dm(a){var s,r,q=this,p=globalThis.HTMLInputElement +if(p!=null&&a instanceof p){a.toString +A.ab3(a,q.a) +s=q.grC() +r=q.grA() +a.setSelectionRange(s,r)}else{p=globalThis.HTMLTextAreaElement +if(p!=null&&a instanceof p){a.toString +A.ab4(a,q.a) +s=q.grC() +r=q.grA() +a.setSelectionRange(s,r)}else{s=a==null?null:A.ak0(a) +throw A.d(A.T("Unsupported DOM element type: <"+A.h(s)+"> ("+J.J(a).j(0)+")"))}}}} +A.Tk.prototype={} +A.BD.prototype={ +fJ(){var s,r=this,q=r.w +if(q!=null){s=r.c +s.toString +q.dm(s)}q=r.d +q===$&&A.c() +if(q.w!=null){r.os() +q=r.e +if(q!=null)q.dm(r.c) +r.gHN().focus() +r.c.focus()}}} +A.XF.prototype={ +fJ(){var s,r=this,q=r.w +if(q!=null){s=r.c +s.toString +q.dm(s)}q=r.d +q===$&&A.c() +if(q.w!=null){r.os() +r.gHN().focus() +r.c.focus() +q=r.e +if(q!=null){s=r.c +s.toString +q.dm(s)}}}, +rk(){if(this.w!=null)this.fJ() +this.c.focus()}} +A.qF.prototype={ +gft(){var s=null,r=this.f +if(r==null){r=this.e.a +r.toString +r=this.f=new A.oz(r,"",-1,-1,s,s,s,s)}return r}, +gHN(){var s=this.d +s===$&&A.c() +s=s.w +return s==null?null:s.a}, +lz(a,b,c){var s,r,q=this,p="none",o="transparent" +q.c=a.a.wZ() +q.wJ(a) +s=q.c +s.classList.add("flt-text-editing") +r=s.style +A.n(r,"forced-color-adjust",p) +A.n(r,"white-space","pre-wrap") +A.n(r,"align-content","center") +A.n(r,"position","absolute") +A.n(r,"top","0") +A.n(r,"left","0") +A.n(r,"padding","0") +A.n(r,"opacity","1") +A.n(r,"color",o) +A.n(r,"background-color",o) +A.n(r,"background",o) +A.n(r,"caret-color",o) +A.n(r,"outline",p) +A.n(r,"border",p) +A.n(r,"resize",p) +A.n(r,"text-shadow",p) +A.n(r,"overflow","hidden") +A.n(r,"transform-origin","0 0 0") +r=$.by() +if(r!==B.ax)r=r===B.B +else r=!0 +if(r)s.classList.add("transparentTextEditing") +s=q.r +if(s!=null){r=q.c +r.toString +s.dm(r)}s=q.d +s===$&&A.c() +if(s.w==null){s=$.ee.r +s===$&&A.c() +r=q.c +r.toString +s.eQ(0,r) +q.Q=!1}q.rk() +q.b=!0 +q.x=c +q.y=b}, +wJ(a){var s,r,q,p,o,n=this,m="setAttribute" +n.d=a +s=n.c +if(a.c){s.toString +r=A.a6("readonly") +A.x(s,m,["readonly",r==null?t.K.a(r):r])}else s.removeAttribute("readonly") +if(a.d){s=n.c +s.toString +r=A.a6("password") +A.x(s,m,["type",r==null?t.K.a(r):r])}if(a.a===B.iN){s=n.c +s.toString +r=A.a6("none") +A.x(s,m,["inputmode",r==null?t.K.a(r):r])}q=A.akr(a.b) +s=n.c +s.toString +q.Z1(s) +p=a.r +s=n.c +if(p!=null){s.toString +p.G6(s,!0)}else{s.toString +r=A.a6("off") +A.x(s,m,["autocomplete",r==null?t.K.a(r):r])}o=a.e?"on":"off" +s=n.c +s.toString +r=A.a6(o) +A.x(s,m,["autocorrect",r==null?t.K.a(r):r])}, +rk(){this.fJ()}, +n4(){var s,r,q=this,p=q.d +p===$&&A.c() +p=p.w +if(p!=null)B.b.I(q.z,p.n7()) +p=q.z +s=q.c +s.toString +r=q.gnV() +p.push(A.bT(s,"input",r)) +s=q.c +s.toString +p.push(A.bT(s,"keydown",q.goj())) +p.push(A.bT(self.document,"selectionchange",r)) +r=q.c +r.toString +A.bI(r,"beforeinput",t.e.a(A.aN(q.gr9())),null) +r=q.c +r.toString +q.qe(r) +r=q.c +r.toString +p.push(A.bT(r,"blur",new A.PR(q))) +q.z_()}, +zE(a){this.w=a +if(this.b)this.fJ()}, +zF(a){var s +this.r=a +if(this.b){s=this.c +s.toString +a.dm(s)}}, +fs(a){var s,r,q,p=this,o=null,n=p.b=!1 +p.w=p.r=p.f=p.e=null +for(s=p.z,r=0;r=0&&a.c>=0) +else s=!0 +if(s)return +a.dm(this.c)}, +fJ(){this.c.focus()}, +os(){var s,r=this.d +r===$&&A.c() +r=r.w +r.toString +s=this.c +s.toString +r=r.a +r.append(s) +s=$.ee.r +s===$&&A.c() +s.eQ(0,r) +this.Q=!0}, +HY(a){var s,r,q=this,p=q.c +p.toString +s=q.ZI(A.ab9(p)) +p=q.d +p===$&&A.c() +if(p.f){q.gft().r=s.d +q.gft().w=s.e +r=A.anu(s,q.e,q.gft())}else r=null +if(!s.k(0,q.e)){q.e=s +q.f=r +q.x.$2(s,r) +q.f=null}}, +a_q(a){var s=this,r=A.ci(a.data),q=A.ci(a.inputType) +if(q!=null)if(B.d.q(q,"delete")){s.gft().b="" +s.gft().d=s.e.c}else if(q==="insertLineBreak"){s.gft().b="\n" +s.gft().c=s.e.c +s.gft().d=s.e.c}else if(r!=null){s.gft().b=r +s.gft().c=s.e.c +s.gft().d=s.e.c}}, +a1q(a){var s,r,q=globalThis.KeyboardEvent +if(q!=null&&a instanceof q)if(a.keyCode===13){s=this.y +s.toString +r=this.d +r===$&&A.c() +s.$1(r.b) +if(!(this.d.a instanceof A.CD))a.preventDefault()}}, +xz(a,b,c,d){var s,r=this +r.lz(b,c,d) +r.n4() +s=r.e +if(s!=null)r.Ab(s) +r.c.focus()}, +z_(){var s=this,r=s.z,q=s.c +q.toString +r.push(A.bT(q,"mousedown",new A.PS())) +q=s.c +q.toString +r.push(A.bT(q,"mouseup",new A.PT())) +q=s.c +q.toString +r.push(A.bT(q,"mousemove",new A.PU()))}} +A.PR.prototype={ +$1(a){this.a.c.focus()}, +$S:1} +A.PS.prototype={ +$1(a){a.preventDefault()}, +$S:1} +A.PT.prototype={ +$1(a){a.preventDefault()}, +$S:1} +A.PU.prototype={ +$1(a){a.preventDefault()}, +$S:1} +A.SU.prototype={ +lz(a,b,c){var s,r=this +r.tW(a,b,c) +s=r.c +s.toString +a.a.Gy(s) +s=r.d +s===$&&A.c() +if(s.w!=null)r.os() +s=r.c +s.toString +a.x.A8(s)}, +rk(){A.n(this.c.style,"transform","translate(-9999px, -9999px)") +this.p1=!1}, +n4(){var s,r,q,p=this,o=p.d +o===$&&A.c() +o=o.w +if(o!=null)B.b.I(p.z,o.n7()) +o=p.z +s=p.c +s.toString +r=p.gnV() +o.push(A.bT(s,"input",r)) +s=p.c +s.toString +o.push(A.bT(s,"keydown",p.goj())) +o.push(A.bT(self.document,"selectionchange",r)) +r=p.c +r.toString +A.bI(r,"beforeinput",t.e.a(A.aN(p.gr9())),null) +r=p.c +r.toString +p.qe(r) +r=p.c +r.toString +o.push(A.bT(r,"focus",new A.SX(p))) +p.PK() +q=new A.uV() +$.NH() +q.mh(0) +r=p.c +r.toString +o.push(A.bT(r,"blur",new A.SY(p,q)))}, +zE(a){var s=this +s.w=a +if(s.b&&s.p1)s.fJ()}, +fs(a){var s +this.Mn(0) +s=this.ok +if(s!=null)s.aT(0) +this.ok=null}, +PK(){var s=this.c +s.toString +this.z.push(A.bT(s,"click",new A.SV(this)))}, +Ei(){var s=this.ok +if(s!=null)s.aT(0) +this.ok=A.c8(B.ay,new A.SW(this))}, +fJ(){var s,r +this.c.focus() +s=this.w +if(s!=null){r=this.c +r.toString +s.dm(r)}}} +A.SX.prototype={ +$1(a){this.a.Ei()}, +$S:1} +A.SY.prototype={ +$1(a){var s=A.c4(this.b.gHr(),0).a<2e5,r=self.document.hasFocus()&&s,q=this.a +if(r)q.c.focus() +else q.a.tA()}, +$S:1} +A.SV.prototype={ +$1(a){var s=this.a +if(s.p1){A.n(s.c.style,"transform","translate(-9999px, -9999px)") +s.p1=!1 +s.Ei()}}, +$S:1} +A.SW.prototype={ +$0(){var s=this.a +s.p1=!0 +s.fJ()}, +$S:0} +A.O_.prototype={ +lz(a,b,c){var s,r,q=this +q.tW(a,b,c) +s=q.c +s.toString +a.a.Gy(s) +s=q.d +s===$&&A.c() +if(s.w!=null)q.os() +else{s=$.ee.r +s===$&&A.c() +r=q.c +r.toString +s.eQ(0,r)}s=q.c +s.toString +a.x.A8(s)}, +n4(){var s,r,q=this,p=q.d +p===$&&A.c() +p=p.w +if(p!=null)B.b.I(q.z,p.n7()) +p=q.z +s=q.c +s.toString +r=q.gnV() +p.push(A.bT(s,"input",r)) +s=q.c +s.toString +p.push(A.bT(s,"keydown",q.goj())) +p.push(A.bT(self.document,"selectionchange",r)) +r=q.c +r.toString +A.bI(r,"beforeinput",t.e.a(A.aN(q.gr9())),null) +r=q.c +r.toString +q.qe(r) +r=q.c +r.toString +p.push(A.bT(r,"blur",new A.O0(q)))}, +fJ(){var s,r +this.c.focus() +s=this.w +if(s!=null){r=this.c +r.toString +s.dm(r)}}} +A.O0.prototype={ +$1(a){var s=this.a +if(self.document.hasFocus())s.c.focus() +else s.a.tA()}, +$S:1} +A.Rp.prototype={ +lz(a,b,c){var s +this.tW(a,b,c) +s=this.d +s===$&&A.c() +if(s.w!=null)this.os()}, +n4(){var s,r,q=this,p=q.d +p===$&&A.c() +p=p.w +if(p!=null)B.b.I(q.z,p.n7()) +p=q.z +s=q.c +s.toString +r=q.gnV() +p.push(A.bT(s,"input",r)) +s=q.c +s.toString +p.push(A.bT(s,"keydown",q.goj())) +s=q.c +s.toString +A.bI(s,"beforeinput",t.e.a(A.aN(q.gr9())),null) +s=q.c +s.toString +q.qe(s) +s=q.c +s.toString +p.push(A.bT(s,"keyup",new A.Rr(q))) +s=q.c +s.toString +p.push(A.bT(s,"select",r)) +r=q.c +r.toString +p.push(A.bT(r,"blur",new A.Rs(q))) +q.z_()}, +VA(){A.c8(B.r,new A.Rq(this))}, +fJ(){var s,r,q=this +q.c.focus() +s=q.w +if(s!=null){r=q.c +r.toString +s.dm(r)}s=q.e +if(s!=null){r=q.c +r.toString +s.dm(r)}}} +A.Rr.prototype={ +$1(a){this.a.HY(a)}, +$S:1} +A.Rs.prototype={ +$1(a){this.a.VA()}, +$S:1} +A.Rq.prototype={ +$0(){this.a.c.focus()}, +$S:0} +A.a_0.prototype={} +A.a_5.prototype={ +dO(a){var s=a.b +if(s!=null&&s!==this.a&&a.c){a.c=!1 +a.ghJ().fs(0)}a.b=this.a +a.d=this.b}} +A.a_c.prototype={ +dO(a){var s=a.ghJ(),r=a.d +r.toString +s.wJ(r)}} +A.a_7.prototype={ +dO(a){a.ghJ().Ab(this.a)}} +A.a_a.prototype={ +dO(a){if(!a.c)a.WR()}} +A.a_6.prototype={ +dO(a){a.ghJ().zE(this.a)}} +A.a_9.prototype={ +dO(a){a.ghJ().zF(this.a)}} +A.a__.prototype={ +dO(a){if(a.c){a.c=!1 +a.ghJ().fs(0)}}} +A.a_2.prototype={ +dO(a){if(a.c){a.c=!1 +a.ghJ().fs(0)}}} +A.a_8.prototype={ +dO(a){}} +A.a_4.prototype={ +dO(a){}} +A.a_3.prototype={ +dO(a){}} +A.a_1.prototype={ +dO(a){a.tA() +if(this.a)A.arZ() +A.aqD()}} +A.a6Q.prototype={ +$2(a,b){var s=t.sM +s=A.bt(new A.d5(b.getElementsByClassName("submitBtn"),s),s.h("j.E"),t.e) +A.m(s).z[1].a(J.kK(s.a)).click()}, +$S:241} +A.ZQ.prototype={ +a0f(a,b){var s,r,q,p,o,n,m,l,k=B.ad.eY(a) +switch(k.a){case"TextInput.setClient":s=k.b +r=J.aC(s) +q=new A.a_5(A.ku(r.i(s,0)),A.abC(t.a.a(r.i(s,1)))) +break +case"TextInput.updateConfig":this.a.d=A.abC(t.a.a(k.b)) +q=B.x_ +break +case"TextInput.setEditingState":q=new A.a_7(A.aba(t.a.a(k.b))) +break +case"TextInput.show":q=B.wY +break +case"TextInput.setEditableSizeAndTransform":q=new A.a_6(A.aki(t.a.a(k.b))) +break +case"TextInput.setStyle":s=t.a.a(k.b) +r=J.aC(s) +p=A.ku(r.i(s,"textAlignIndex")) +o=A.ku(r.i(s,"textDirectionIndex")) +n=A.Nh(r.i(s,"fontWeightIndex")) +m=n!=null?A.afq(n):"normal" +l=A.aep(r.i(s,"fontSize")) +if(l==null)l=null +q=new A.a_9(new A.QG(l,m,A.ci(r.i(s,"fontFamily")),B.Bo[p],B.jV[o])) +break +case"TextInput.clearClient":q=B.wT +break +case"TextInput.hide":q=B.wU +break +case"TextInput.requestAutofill":q=B.wV +break +case"TextInput.finishAutofillContext":q=new A.a_1(A.mv(k.b)) +break +case"TextInput.setMarkedTextRect":q=B.wX +break +case"TextInput.setCaretRect":q=B.wW +break +default:$.aB().dv(b,null) +return}q.dO(this.a) +new A.ZR(b).$0()}} +A.ZR.prototype={ +$0(){$.aB().dv(this.a,B.K.bu([!0]))}, +$S:0} +A.SR.prototype={ +gnk(a){var s=this.a +if(s===$){s!==$&&A.ap() +s=this.a=new A.ZQ(this)}return s}, +ghJ(){var s,r,q,p,o=this,n=null,m=o.f +if(m===$){s=$.cW +if((s==null?$.cW=A.id():s).w){s=A.amW(o) +r=s}else{s=$.by() +if(s===B.B){q=$.cH() +q=q===B.a4}else q=!1 +if(q)p=new A.SU(o,A.a([],t.uK),$,$,$,n) +else if(s===B.B)p=new A.XF(o,A.a([],t.uK),$,$,$,n) +else{if(s===B.ax){q=$.cH() +q=q===B.e4}else q=!1 +if(q)p=new A.O_(o,A.a([],t.uK),$,$,$,n) +else p=s===B.aP?new A.Rp(o,A.a([],t.uK),$,$,$,n):A.akQ(o)}r=p}o.f!==$&&A.ap() +m=o.f=r}return m}, +WR(){var s,r,q=this +q.c=!0 +s=q.ghJ() +r=q.d +r.toString +s.xz(0,r,new A.SS(q),new A.ST(q))}, +tA(){var s,r=this +if(r.c){r.c=!1 +r.ghJ().fs(0) +r.gnk(r) +s=r.b +$.aB().fC("flutter/textinput",B.ad.fu(new A.eW("TextInputClient.onConnectionClosed",[s])),A.Nl())}}} +A.ST.prototype={ +$2(a,b){var s,r,q="flutter/textinput",p=this.a +if(p.d.f){p.gnk(p) +p=p.b +s=t.N +r=t.z +$.aB().fC(q,B.ad.fu(new A.eW("TextInputClient.updateEditingStateWithDeltas",[p,A.aL(["deltas",A.a([A.aL(["oldText",b.a,"deltaText",b.b,"deltaStart",b.c,"deltaEnd",b.d,"selectionBase",b.e,"selectionExtent",b.f,"composingBase",b.r,"composingExtent",b.w],s,r)],t.cs)],s,r)])),A.Nl())}else{p.gnk(p) +p=p.b +$.aB().fC(q,B.ad.fu(new A.eW("TextInputClient.updateEditingState",[p,a.K7()])),A.Nl())}}, +$S:239} +A.SS.prototype={ +$1(a){var s=this.a +s.gnk(s) +s=s.b +$.aB().fC("flutter/textinput",B.ad.fu(new A.eW("TextInputClient.performAction",[s,a])),A.Nl())}, +$S:237} +A.QG.prototype={ +dm(a){var s=this,r=a.style,q=A.asc(s.d,s.e) +q.toString +A.n(r,"text-align",q) +A.n(r,"font",s.b+" "+A.h(s.a)+"px "+A.h(A.a66(s.c)))}} +A.QE.prototype={ +dm(a){var s=A.f6(this.c),r=a.style +A.n(r,"width",A.h(this.a)+"px") +A.n(r,"height",A.h(this.b)+"px") +A.n(r,"transform",s)}} +A.QF.prototype={ +$1(a){return A.yf(a)}, +$S:229} +A.vj.prototype={ +D(){return"TransformKind."+this.b}} +A.a65.prototype={ +$1(a){return"0x"+B.d.lK(B.f.il(a,16),2,"0")}, +$S:81} +A.Ch.prototype={ +gp(a){return this.b.b}, +i(a,b){var s=this.c.i(0,b) +return s==null?null:s.d.b}, +B5(a,b,c){var s,r,q,p=this.b +p.n5(new A.wO(b,c)) +s=this.c +r=p.a +q=r.b.ms() +q.toString +s.l(0,b,q) +if(p.b>this.a){s.v(0,r.a.gqV().a) +p.dN(0)}}} +A.bk.prototype={ +az(a){var s=a.a,r=this.a +r[15]=s[15] +r[14]=s[14] +r[13]=s[13] +r[12]=s[12] +r[11]=s[11] +r[10]=s[10] +r[9]=s[9] +r[8]=s[8] +r[7]=s[7] +r[6]=s[6] +r[5]=s[5] +r[4]=s[4] +r[3]=s[3] +r[2]=s[2] +r[1]=s[1] +r[0]=s[0]}, +i(a,b){return this.a[b]}, +ae(a,b,a0){var s=this.a,r=s[0],q=s[4],p=s[8],o=s[12],n=s[1],m=s[5],l=s[9],k=s[13],j=s[2],i=s[6],h=s[10],g=s[14],f=s[3],e=s[7],d=s[11],c=s[15] +s[12]=r*b+q*a0+p*0+o +s[13]=n*b+m*a0+l*0+k +s[14]=j*b+i*a0+h*0+g +s[15]=f*b+e*a0+d*0+c}, +a2L(a,b){return this.ae(a,b,0)}, +hE(a,b,c,d){var s=c==null?b:c,r=d==null?b:d,q=this.a +q[15]=q[15] +q[0]=q[0]*b +q[1]=q[1]*b +q[2]=q[2]*b +q[3]=q[3]*b +q[4]=q[4]*s +q[5]=q[5]*s +q[6]=q[6]*s +q[7]=q[7]*s +q[8]=q[8]*r +q[9]=q[9]*r +q[10]=q[10]*r +q[11]=q[11]*r +q[12]=q[12] +q[13]=q[13] +q[14]=q[14]}, +aO(a,b){return this.hE(a,b,null,null)}, +cd(a,b,c){return this.hE(a,b,c,null)}, +ia(a){var s=a.a,r=this.a,q=r[0],p=s[0],o=r[4],n=s[1],m=r[8],l=s[2],k=r[12],j=r[1],i=r[5],h=r[9],g=r[13],f=r[2],e=r[6],d=r[10],c=r[14],b=1/(r[3]*p+r[7]*n+r[11]*l+r[15]) +s[0]=(q*p+o*n+m*l+k)*b +s[1]=(j*p+i*n+h*l+g)*b +s[2]=(f*p+e*n+d*l+c)*b +return a}, +o6(a){var s=this.a +return s[0]===1&&s[1]===0&&s[2]===0&&s[3]===0&&s[4]===0&&s[5]===1&&s[6]===0&&s[7]===0&&s[8]===0&&s[9]===0&&s[10]===1&&s[11]===0&&s[12]===0&&s[13]===0&&s[14]===0&&s[15]===1}, +K1(b1,b2,b3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=Math.sqrt(b2.gke()),c=b2.a,b=c[0]/d,a=c[1]/d,a0=c[2]/d,a1=Math.cos(b3),a2=Math.sin(b3),a3=1-a1,a4=b*b*a3+a1,a5=a0*a2,a6=b*a*a3-a5,a7=a*a2,a8=b*a0*a3+a7,a9=a*b*a3+a5,b0=a*a*a3+a1 +a5=b*a2 +s=a*a0*a3-a5 +r=a0*b*a3-a7 +q=a0*a*a3+a5 +p=a0*a0*a3+a1 +a5=this.a +a7=a5[0] +o=a5[4] +n=a5[8] +m=a5[1] +l=a5[5] +k=a5[9] +j=a5[2] +i=a5[6] +h=a5[10] +g=a5[3] +f=a5[7] +e=a5[11] +a5[0]=a7*a4+o*a9+n*r +a5[1]=m*a4+l*a9+k*r +a5[2]=j*a4+i*a9+h*r +a5[3]=g*a4+f*a9+e*r +a5[4]=a7*a6+o*b0+n*q +a5[5]=m*a6+l*b0+k*q +a5[6]=j*a6+i*b0+h*q +a5[7]=g*a6+f*b0+e*q +a5[8]=a7*a8+o*s+n*p +a5[9]=m*a8+l*s+k*p +a5[10]=j*a8+i*s+h*p +a5[11]=g*a8+f*s+e*p}, +fS(a,b,c){var s=this.a +s[14]=c +s[13]=b +s[12]=a}, +fp(b5){var s,r,q,p,o=b5.a,n=o[0],m=o[1],l=o[2],k=o[3],j=o[4],i=o[5],h=o[6],g=o[7],f=o[8],e=o[9],d=o[10],c=o[11],b=o[12],a=o[13],a0=o[14],a1=o[15],a2=n*i-m*j,a3=n*h-l*j,a4=n*g-k*j,a5=m*h-l*i,a6=m*g-k*i,a7=l*g-k*h,a8=f*a-e*b,a9=f*a0-d*b,b0=f*a1-c*b,b1=e*a0-d*a,b2=e*a1-c*a,b3=d*a1-c*a0,b4=a2*b3-a3*b2+a4*b1+a5*b0-a6*a9+a7*a8 +if(b4===0){this.az(b5) +return 0}s=1/b4 +r=this.a +r[0]=(i*b3-h*b2+g*b1)*s +r[1]=(-m*b3+l*b2-k*b1)*s +r[2]=(a*a7-a0*a6+a1*a5)*s +r[3]=(-e*a7+d*a6-c*a5)*s +q=-j +r[4]=(q*b3+h*b0-g*a9)*s +r[5]=(n*b3-l*b0+k*a9)*s +p=-b +r[6]=(p*a7+a0*a4-a1*a3)*s +r[7]=(f*a7-d*a4+c*a3)*s +r[8]=(j*b2-i*b0+g*a8)*s +r[9]=(-n*b2+m*b0-k*a8)*s +r[10]=(b*a6-a*a4+a1*a2)*s +r[11]=(-f*a6+e*a4-c*a2)*s +r[12]=(q*b1+i*a9-h*a8)*s +r[13]=(n*b1-m*a9+l*a8)*s +r[14]=(p*a5+a*a3-a0*a2)*s +r[15]=(f*a5-e*a3+d*a2)*s +return b4}, +cC(b5,b6){var s=this.a,r=s[15],q=s[0],p=s[4],o=s[8],n=s[12],m=s[1],l=s[5],k=s[9],j=s[13],i=s[2],h=s[6],g=s[10],f=s[14],e=s[3],d=s[7],c=s[11],b=b6.a,a=b[15],a0=b[0],a1=b[4],a2=b[8],a3=b[12],a4=b[1],a5=b[5],a6=b[9],a7=b[13],a8=b[2],a9=b[6],b0=b[10],b1=b[14],b2=b[3],b3=b[7],b4=b[11] +s[0]=q*a0+p*a4+o*a8+n*b2 +s[4]=q*a1+p*a5+o*a9+n*b3 +s[8]=q*a2+p*a6+o*b0+n*b4 +s[12]=q*a3+p*a7+o*b1+n*a +s[1]=m*a0+l*a4+k*a8+j*b2 +s[5]=m*a1+l*a5+k*a9+j*b3 +s[9]=m*a2+l*a6+k*b0+j*b4 +s[13]=m*a3+l*a7+k*b1+j*a +s[2]=i*a0+h*a4+g*a8+f*b2 +s[6]=i*a1+h*a5+g*a9+f*b3 +s[10]=i*a2+h*a6+g*b0+f*b4 +s[14]=i*a3+h*a7+g*b1+f*a +s[3]=e*a0+d*a4+c*a8+r*b2 +s[7]=e*a1+d*a5+c*a9+r*b3 +s[11]=e*a2+d*a6+c*b0+r*b4 +s[15]=e*a3+d*a7+c*b1+r*a}, +rE(a){var s=new A.bk(new Float32Array(16)) +s.az(this) +s.cC(0,a) +return s}, +Kf(a){var s=a[0],r=a[1],q=this.a +a[0]=q[0]*s+q[4]*r+q[12] +a[1]=q[1]*s+q[5]*r+q[13]}, +j(a){var s=this.bn(0) +return s}} +A.mh.prototype={ +dT(a,b,c){var s=this.a +s[0]=a +s[1]=b +s[2]=c}, +i(a,b){return this.a[b]}, +gp(a){var s=this.a,r=s[0],q=s[1] +s=s[2] +return Math.sqrt(r*r+q*q+s*s)}, +gke(){var s=this.a,r=s[0],q=s[1] +s=s[2] +return r*r+q*q+s*s}} +A.Rn.prototype={ +Ke(a,b,c){var s=this.a +this.b=s[12]+s[0]*b+s[4]*c +this.c=s[13]+s[1]*b+s[5]*c}} +A.Ao.prototype={ +Ph(a){var s=A.aqU(new A.PG(this)) +this.b=s +s.observe(this.a)}, +Q_(a){this.c.B(0,a)}, +dn(a){var s=this.b +s===$&&A.c() +s.disconnect() +this.c.dn(0)}, +gJc(a){var s=this.c +return new A.iO(s,A.m(s).h("iO<1>"))}, +l7(){var s,r=$.bC().x +if(r==null){s=self.window.devicePixelRatio +r=s===0?1:s}s=this.a +return new A.S(s.clientWidth*r,s.clientHeight*r)}, +Gt(a,b){return B.dc}} +A.PG.prototype={ +$2(a,b){new A.aA(a,new A.PF(),a.$ti.h("aA")).P(0,this.a.gPZ())}, +$S:224} +A.PF.prototype={ +$1(a){return new A.S(a.contentRect.width,a.contentRect.height)}, +$S:221} +A.PY.prototype={} +A.Bw.prototype={ +V7(a){this.b.B(0,null)}, +dn(a){var s=this.a +s===$&&A.c() +s.b.removeEventListener(s.a,s.c) +this.b.dn(0)}, +gJc(a){var s=this.b +return new A.iO(s,A.m(s).h("iO<1>"))}, +l7(){var s,r=null,q=A.b_("windowInnerWidth"),p=A.b_("windowInnerHeight"),o=self.window.visualViewport,n=$.bC().x +if(n==null){s=self.window.devicePixelRatio +n=s===0?1:s}if(o!=null){s=$.cH() +if(s===B.a4){o=self.document.documentElement.clientWidth +s=self.document.documentElement.clientHeight +q.b=o*n +p.b=s*n}else{s=o.width +if(s==null)s=r +s.toString +q.b=s*n +o=o.height +if(o==null)o=r +o.toString +p.b=o*n}}else{o=self.window.innerWidth +if(o==null)o=r +o.toString +q.b=o*n +o=self.window.innerHeight +if(o==null)o=r +o.toString +p.b=o*n}return new A.S(q.ap(),p.ap())}, +Gt(a,b){var s,r,q,p=$.bC().x +if(p==null){s=self.window.devicePixelRatio +p=s===0?1:s}s=self.window.visualViewport +r=A.b_("windowInnerHeight") +if(s!=null){q=$.cH() +if(q===B.a4&&!b)r.b=self.document.documentElement.clientHeight*p +else{s=s.height +if(s==null)s=null +s.toString +r.b=s*p}}else{s=self.window.innerHeight +if(s==null)s=null +s.toString +r.b=s*p}return new A.G4(0,0,0,a-r.ap())}} +A.PH.prototype={ +Ik(a,b){var s +b.ge7(b).P(0,new A.PI(this)) +s=A.a6("custom-element") +if(s==null)s=t.K.a(s) +A.x(this.d,"setAttribute",["flt-embedding",s])}, +Gb(a){A.n(a.style,"width","100%") +A.n(a.style,"height","100%") +A.n(a.style,"display","block") +A.n(a.style,"overflow","hidden") +A.n(a.style,"position","relative") +this.d.appendChild(a) +this.zc(a)}, +Hc(){return this.Hd(this.d)}, +Hs(){return this.Ht(this.d)}} +A.PI.prototype={ +$1(a){var s=a.a,r=A.a6(a.b) +if(r==null)r=t.K.a(r) +A.x(this.a.d,"setAttribute",[s,r])}, +$S:85} +A.QO.prototype={ +zc(a){}} +A.a1d.prototype={ +Hd(a){if(!this.w$)return +A.bI(a,"contextmenu",this.x$,null) +this.w$=!1}, +Ht(a){if(this.w$)return +A.dw(a,"contextmenu",this.x$,null) +this.w$=!0}} +A.GS.prototype={ +$1(a){a.preventDefault()}, +$S:1} +A.RW.prototype={ +Ik(a,b){var s,r,q="0",p="none" +b.ge7(b).P(0,new A.RX(this)) +s=self.document.body +s.toString +r=A.a6("full-page") +A.x(s,"setAttribute",["flt-embedding",r==null?t.K.a(r):r]) +this.PV() +s=self.document.body +s.toString +A.di(s,"position","fixed") +A.di(s,"top",q) +A.di(s,"right",q) +A.di(s,"bottom",q) +A.di(s,"left",q) +A.di(s,"overflow","hidden") +A.di(s,"padding",q) +A.di(s,"margin",q) +A.di(s,"user-select",p) +A.di(s,"-webkit-user-select",p) +A.di(s,"touch-action",p)}, +Gb(a){var s=a.style +A.n(s,"position","absolute") +A.n(s,"top","0") +A.n(s,"right","0") +A.n(s,"bottom","0") +A.n(s,"left","0") +self.document.body.append(a) +this.zc(a)}, +Hc(){return this.Hd(self.window)}, +Hs(){return this.Ht(self.window)}, +PV(){var s,r,q,p +for(s=t.sM,s=A.bt(new A.d5(self.document.head.querySelectorAll('meta[name="viewport"]'),s),s.h("j.E"),t.e),r=J.am(s.a),s=A.m(s),s=s.h("@<1>").ab(s.z[1]).z[1];r.t();){q=s.a(r.gC(r)) +q.remove()}p=A.aP(self.document,"meta") +s=A.a6("") +A.x(p,"setAttribute",["flt-viewport",s==null?t.K.a(s):s]) +p.name="viewport" +p.content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" +self.document.head.append(p) +this.zc(p)}} +A.RX.prototype={ +$1(a){var s=a.a,r=a.b,q=self.document.body +q.toString +r=A.a6(r) +A.x(q,"setAttribute",[s,r==null?t.K.a(r):r])}, +$S:85} +A.B0.prototype={ +Pi(a,b){var s=this,r=s.b,q=s.a +r.d.l(0,q,s) +r.e.l(0,q,B.iV) +if($.ky)s.c=A.a6b($.yg) +$.hY.push(new A.QZ(s))}, +gqs(){var s,r=this.c +if(r==null){if($.ky)s=$.yg +else s=B.f0 +$.ky=!0 +r=this.c=A.a6b(s)}return r}, +n2(){var s=0,r=A.Y(t.H),q,p=this,o,n,m +var $async$n2=A.Z(function(a,b){if(a===1)return A.V(b,r) +while(true)switch(s){case 0:m=p.c +if(m==null){if($.ky)o=$.yg +else o=B.f0 +$.ky=!0 +m=p.c=A.a6b(o)}if(m instanceof A.uI){s=1 +break}n=m.gjl() +m=p.c +s=3 +return A.a1(m==null?null:m.hA(),$async$n2) +case 3:p.c=A.acT(n) +case 1:return A.W(q,r)}}) +return A.X($async$n2,r)}, +qc(){var s=0,r=A.Y(t.H),q,p=this,o,n,m +var $async$qc=A.Z(function(a,b){if(a===1)return A.V(b,r) +while(true)switch(s){case 0:m=p.c +if(m==null){if($.ky)o=$.yg +else o=B.f0 +$.ky=!0 +m=p.c=A.a6b(o)}if(m instanceof A.tc){s=1 +break}n=m.gjl() +m=p.c +s=3 +return A.a1(m==null?null:m.hA(),$async$qc) +case 3:p.c=A.ac2(n) +case 1:return A.W(q,r)}}) +return A.X($async$qc,r)}, +n3(a){return this.XL(a)}, +XL(a){var s=0,r=A.Y(t.y),q,p=2,o,n=[],m=this,l,k,j +var $async$n3=A.Z(function(b,c){if(b===1){o=c +s=p}while(true)switch(s){case 0:k=m.d +j=new A.bp(new A.ai($.ab,t.U),t.hb) +m.d=j.a +s=3 +return A.a1(k,$async$n3) +case 3:l=!1 +p=4 +s=7 +return A.a1(a.$0(),$async$n3) +case 7:l=c +n.push(6) +s=5 +break +case 4:n=[2] +case 5:p=2 +J.ai7(j) +s=n.pop() +break +case 6:q=l +s=1 +break +case 1:return A.W(q,r) +case 2:return A.V(o,r)}}) +return A.X($async$n3,r)}, +xU(a){return this.a_N(a)}, +a_N(a){var s=0,r=A.Y(t.y),q,p=this +var $async$xU=A.Z(function(b,c){if(b===1)return A.V(c,r) +while(true)switch(s){case 0:q=p.n3(new A.R_(p,a)) +s=1 +break +case 1:return A.W(q,r)}}) +return A.X($async$xU,r)}, +gjG(){var s=this.b.e.i(0,this.a) +return s==null?B.iV:s}, +ghw(){if(this.r==null)this.l7() +var s=this.r +s.toString +return s}, +l7(){var s=this.e +s===$&&A.c() +this.r=s.l7()}, +Gv(a){var s=this.e +s===$&&A.c() +this.f=s.Gt(this.r.b,a)}, +a10(){var s,r,q,p +if(this.r!=null){s=this.e +s===$&&A.c() +r=s.l7() +s=this.r +q=s.b +p=r.b +if(q!==p&&s.a!==r.a){s=s.a +if(!(q>s&&pq&&r.a

").ab(b).h("bR<1,2>"))}, +B(a,b){if(!!a.fixed$length)A.a2(A.T("add")) +a.push(b)}, +fc(a,b){if(!!a.fixed$length)A.a2(A.T("removeAt")) +if(b<0||b>=a.length)throw A.d(A.Wi(b,null)) +return a.splice(b,1)[0]}, +lA(a,b,c){if(!!a.fixed$length)A.a2(A.T("insert")) +if(b<0||b>a.length)throw A.d(A.Wi(b,null)) +a.splice(b,0,c)}, +Im(a,b,c){var s,r +if(!!a.fixed$length)A.a2(A.T("insertAll")) +A.acx(b,0,a.length,"index") +if(!t.he.b(c))c=J.a7g(c) +s=J.bh(c) +a.length=a.length+s +r=b+s +this.be(a,r,a.length,a,b) +this.dA(a,b,r,c)}, +dN(a){if(!!a.fixed$length)A.a2(A.T("removeLast")) +if(a.length===0)throw A.d(A.my(a,-1)) +return a.pop()}, +v(a,b){var s +if(!!a.fixed$length)A.a2(A.T("remove")) +for(s=0;s"))}, +I(a,b){var s +if(!!a.fixed$length)A.a2(A.T("addAll")) +if(Array.isArray(b)){this.Pz(a,b) +return}for(s=J.am(b);s.t();)a.push(s.gC(s))}, +Pz(a,b){var s,r=b.length +if(r===0)return +if(a===b)throw A.d(A.bj(a)) +for(s=0;s").ab(c).h("aA<1,2>"))}, +bf(a,b){var s,r=A.aU(a.length,"",!1,t.N) +for(s=0;s=0;--s){r=a[s] +if(b.$1(r))return r +if(q!==a.length)throw A.d(A.bj(a))}if(c!=null)return c.$0() +throw A.d(A.bJ())}, +a17(a,b){return this.lF(a,b,null)}, +ks(a,b){var s,r,q,p,o=a.length +for(s=null,r=!1,q=0;qa.length)throw A.d(A.bE(b,0,a.length,"start",null)) +if(c==null)c=a.length +else if(ca.length)throw A.d(A.bE(c,b,a.length,"end",null)) +if(b===c)return A.a([],A.ac(a)) +return A.a(a.slice(b,c),A.ac(a))}, +cQ(a,b){return this.bx(a,b,null)}, +oO(a,b,c){A.d_(b,c,a.length,null,null) +return A.eG(a,b,c,A.ac(a).c)}, +gG(a){if(a.length>0)return a[0] +throw A.d(A.bJ())}, +gO(a){var s=a.length +if(s>0)return a[s-1] +throw A.d(A.bJ())}, +gc7(a){var s=a.length +if(s===1)return a[0] +if(s===0)throw A.d(A.bJ()) +throw A.d(A.abE())}, +zf(a,b,c){if(!!a.fixed$length)A.a2(A.T("removeRange")) +A.d_(b,c,a.length,null,null) +a.splice(b,c-b)}, +be(a,b,c,d,e){var s,r,q,p,o +if(!!a.immutable$list)A.a2(A.T("setRange")) +A.d_(b,c,a.length,null,null) +s=c-b +if(s===0)return +A.dA(e,"skipCount") +if(t.j.b(d)){r=d +q=e}else{r=J.a7f(d,e).cL(0,!1) +q=0}p=J.aC(r) +if(q+s>p.gp(r))throw A.d(A.abD()) +if(q=0;--o)a[b+o]=p.i(r,q+o) +else for(o=0;o=r)return-1 +for(s=0;s=r +for(s=q;s>=0;--s)if(J.e(a[s],b))return s +return-1}, +q(a,b){var s +for(s=0;sa.length)A.ac(a).c.a(null) +a.length=b}, +i(a,b){if(!(b>=0&&b=0&&b"))}, +T(a,b){var s=A.aw(a,!0,A.ac(a).c) +this.I(s,b) +return s}, +a0D(a,b){var s +if(0>=a.length)return-1 +for(s=0;s=p){r.d=null +return!1}r.d=q[s] +r.c=s+1 +return!0}} +J.jC.prototype={ +aV(a,b){var s +if(ab)return 1 +else if(a===b){if(a===0){s=this.go7(b) +if(this.go7(a)===s)return 0 +if(this.go7(a))return-1 +return 1}return 0}else if(isNaN(a)){if(isNaN(b))return 0 +return 1}else return-1}, +go7(a){return a===0?1/a<0:a<0}, +gAj(a){var s +if(a>0)s=1 +else s=a<0?-1:a +return s}, +K(a){var s +if(a>=-2147483648&&a<=2147483647)return a|0 +if(isFinite(a)){s=a<0?Math.ceil(a):Math.floor(a) +return s+0}throw A.d(A.T(""+a+".toInt()"))}, +cr(a){var s,r +if(a>=0){if(a<=2147483647){s=a|0 +return a===s?s:s+1}}else if(a>=-2147483648)return a|0 +r=Math.ceil(a) +if(isFinite(r))return r +throw A.d(A.T(""+a+".ceil()"))}, +cJ(a){var s,r +if(a>=0){if(a<=2147483647)return a|0}else if(a>=-2147483648){s=a|0 +return a===s?s:s-1}r=Math.floor(a) +if(isFinite(r))return r +throw A.d(A.T(""+a+".floor()"))}, +bd(a){if(a>0){if(a!==1/0)return Math.round(a)}else if(a>-1/0)return 0-Math.round(0-a) +throw A.d(A.T(""+a+".round()"))}, +zi(a){if(a<0)return-Math.round(-a) +else return Math.round(a)}, +iO(a,b,c){if(B.f.aV(b,c)>0)throw A.d(A.mx(b)) +if(this.aV(a,b)<0)return b +if(this.aV(a,c)>0)return c +return a}, +M(a,b){var s +if(b>20)throw A.d(A.bE(b,0,20,"fractionDigits",null)) +s=a.toFixed(b) +if(a===0&&this.go7(a))return"-"+s +return s}, +a2G(a,b){var s +if(b<1||b>21)throw A.d(A.bE(b,1,21,"precision",null)) +s=a.toPrecision(b) +if(a===0&&this.go7(a))return"-"+s +return s}, +il(a,b){var s,r,q,p +if(b<2||b>36)throw A.d(A.bE(b,2,36,"radix",null)) +s=a.toString(b) +if(B.d.ah(s,s.length-1)!==41)return s +r=/^([\da-z]+)(?:\.([\da-z]+))?\(e\+(\d+)\)$/.exec(s) +if(r==null)A.a2(A.T("Unexpected toString result: "+s)) +s=r[1] +q=+r[3] +p=r[2] +if(p!=null){s+=p +q-=p.length}return s+B.d.R("0",q)}, +j(a){if(a===0&&1/a<0)return"-0.0" +else return""+a}, +gu(a){var s,r,q,p,o=a|0 +if(a===o)return o&536870911 +s=Math.abs(a) +r=Math.log(s)/0.6931471805599453|0 +q=Math.pow(2,r) +p=s<1?s/q:q/s +return((p*9007199254740992|0)+(p*3542243181176521|0))*599197+r*1259&536870911}, +T(a,b){return a+b}, +a4(a,b){return a-b}, +R(a,b){return a*b}, +cv(a,b){var s=a%b +if(s===0)return 0 +if(s>0)return s +if(b<0)return s-b +else return s+b}, +iz(a,b){if((a|0)===a)if(b>=1||b<-1)return a/b|0 +return this.EW(a,b)}, +cq(a,b){return(a|0)===a?a/b|0:this.EW(a,b)}, +EW(a,b){var s=a/b +if(s>=-2147483648&&s<=2147483647)return s|0 +if(s>0){if(s!==1/0)return Math.floor(s)}else if(s>-1/0)return Math.ceil(s) +throw A.d(A.T("Result of truncating division is "+A.h(s)+": "+A.h(a)+" ~/ "+A.h(b)))}, +Lr(a,b){if(b<0)throw A.d(A.mx(b)) +return b>31?0:a<>>0}, +WD(a,b){return b>31?0:a<>>0}, +fk(a,b){var s +if(a>0)s=this.EF(a,b) +else{s=b>31?31:b +s=a>>s>>>0}return s}, +WH(a,b){if(0>b)throw A.d(A.mx(b)) +return this.EF(a,b)}, +EF(a,b){return b>31?0:a>>>b}, +Ai(a,b){if(b<0)throw A.d(A.mx(b)) +return this.mU(a,b)}, +mU(a,b){if(b>31)return 0 +return a>>>b}, +gcc(a){return A.bG(t.fY)}, +$ibX:1, +$iQ:1, +$ibH:1} +J.nA.prototype={ +gAj(a){var s +if(a>0)s=1 +else s=a<0?-1:a +return s}, +gcc(a){return A.bG(t.S)}, +$ibA:1, +$io:1} +J.rH.prototype={ +gcc(a){return A.bG(t.i)}, +$ibA:1} +J.io.prototype={ +ah(a,b){if(b<0)throw A.d(A.my(a,b)) +if(b>=a.length)A.a2(A.my(a,b)) +return a.charCodeAt(b)}, +a8(a,b){if(b>=a.length)throw A.d(A.my(a,b)) +return a.charCodeAt(b)}, +Y4(a,b,c){var s=b.length +if(c>s)throw A.d(A.bE(c,0,s,null,null)) +return new A.Lm(b,a,c)}, +a3i(a,b){return this.Y4(a,b,0)}, +T(a,b){return a+b}, +a__(a,b){var s=b.length,r=a.length +if(s>r)return!1 +return b===this.fY(a,r-s)}, +p_(a,b){var s=A.a(a.split(b),t.s) +return s}, +lS(a,b,c,d){var s=A.d_(b,c,a.length,null,null) +return A.afZ(a,b,s,d)}, +di(a,b,c){var s +if(c<0||c>a.length)throw A.d(A.bE(c,0,a.length,null,null)) +s=c+b.length +if(s>a.length)return!1 +return b===a.substring(c,s)}, +c3(a,b){return this.di(a,b,0)}, +am(a,b,c){return a.substring(b,A.d_(b,c,a.length,null,null))}, +fY(a,b){return this.am(a,b,null)}, +a2C(a){return a.toLowerCase()}, +Kg(a){var s,r,q,p=a.trim(),o=p.length +if(o===0)return p +if(this.a8(p,0)===133){s=J.a8_(p,1) +if(s===o)return""}else s=0 +r=o-1 +q=this.ah(p,r)===133?J.a80(p,r):o +if(s===0&&q===o)return p +return p.substring(s,q)}, +a2N(a){var s,r +if(typeof a.trimLeft!="undefined"){s=a.trimLeft() +if(s.length===0)return s +r=this.a8(s,0)===133?J.a8_(s,1):0}else{r=J.a8_(a,0) +s=a}if(r===0)return s +if(r===s.length)return"" +return s.substring(r)}, +zz(a){var s,r,q +if(typeof a.trimRight!="undefined"){s=a.trimRight() +r=s.length +if(r===0)return s +q=r-1 +if(this.ah(s,q)===133)r=J.a80(s,q)}else{r=J.a80(a,a.length) +s=a}if(r===s.length)return s +if(r===0)return"" +return s.substring(0,r)}, +R(a,b){var s,r +if(0>=b)return"" +if(b===1||a.length===0)return a +if(b!==b>>>0)throw A.d(B.wH) +for(s=a,r="";!0;){if((b&1)===1)r=s+r +b=b>>>1 +if(b===0)break +s+=s}return r}, +lK(a,b,c){var s=b-a.length +if(s<=0)return a +return this.R(c,s)+a}, +o_(a,b,c){var s +if(c<0||c>a.length)throw A.d(A.bE(c,0,a.length,null,null)) +s=a.indexOf(b,c) +return s}, +ka(a,b){return this.o_(a,b,0)}, +a15(a,b,c){var s,r +if(c==null)c=a.length +else if(c<0||c>a.length)throw A.d(A.bE(c,0,a.length,null,null)) +s=b.length +r=a.length +if(c+s>r)c=r-s +return a.lastIndexOf(b,c)}, +yi(a,b){return this.a15(a,b,null)}, +Z4(a,b,c){var s=a.length +if(c>s)throw A.d(A.bE(c,0,s,null,null)) +return A.as1(a,b,c)}, +q(a,b){return this.Z4(a,b,0)}, +aV(a,b){var s +if(a===b)s=0 +else s=a>6}r=r+((r&67108863)<<3)&536870911 +r^=r>>11 +return r+((r&16383)<<15)&536870911}, +gcc(a){return A.bG(t.N)}, +gp(a){return a.length}, +i(a,b){if(!(b>=0&&b").ab(s.z[1]).h("zm<1,2>"))}, +gp(a){return J.bh(this.gdZ())}, +gS(a){return J.fZ(this.gdZ())}, +gbv(a){return J.kL(this.gdZ())}, +fU(a,b){var s=A.m(this) +return A.bt(J.a7f(this.gdZ(),b),s.c,s.z[1])}, +aH(a,b){return A.m(this).z[1].a(J.yG(this.gdZ(),b))}, +gG(a){return A.m(this).z[1].a(J.kK(this.gdZ()))}, +gO(a){return A.m(this).z[1].a(J.yH(this.gdZ()))}, +q(a,b){return J.yF(this.gdZ(),b)}, +j(a){return J.dr(this.gdZ())}} +A.zm.prototype={ +t(){return this.a.t()}, +gC(a){var s=this.a +return this.$ti.z[1].a(s.gC(s))}} +A.kT.prototype={ +eT(a,b){return A.bt(this.a,A.m(this).c,b)}, +gdZ(){return this.a}} +A.vY.prototype={$iP:1} +A.vF.prototype={ +i(a,b){return this.$ti.z[1].a(J.bc(this.a,b))}, +l(a,b,c){J.fY(this.a,b,this.$ti.c.a(c))}, +sp(a,b){J.aip(this.a,b)}, +B(a,b){J.f9(this.a,this.$ti.c.a(b))}, +v(a,b){return J.ja(this.a,b)}, +dN(a){return this.$ti.z[1].a(J.ain(this.a))}, +oO(a,b,c){var s=this.$ti +return A.bt(J.aif(this.a,b,c),s.c,s.z[1])}, +be(a,b,c,d,e){var s=this.$ti +J.aiq(this.a,b,c,A.bt(d,s.z[1],s.c),e)}, +dA(a,b,c,d){return this.be(a,b,c,d,0)}, +$iP:1, +$iB:1} +A.bR.prototype={ +eT(a,b){return new A.bR(this.a,this.$ti.h("@<1>").ab(b).h("bR<1,2>"))}, +gdZ(){return this.a}} +A.i6.prototype={ +eT(a,b){return new A.i6(this.a,this.b,this.$ti.h("@<1>").ab(b).h("i6<1,2>"))}, +B(a,b){return this.a.B(0,this.$ti.c.a(b))}, +I(a,b){var s=this.$ti +this.a.I(0,A.bt(b,s.z[1],s.c))}, +v(a,b){return this.a.v(0,b)}, +o5(a,b){var s,r=this +if(r.b!=null)return r.QM(b,!0) +s=r.$ti +return new A.i6(r.a.o5(0,b),null,s.h("@<1>").ab(s.z[1]).h("i6<1,2>"))}, +QM(a,b){var s,r=this.b,q=this.$ti,p=q.z[1],o=r==null?A.fs(p):r.$1$0(p) +for(p=this.a,p=p.gX(p),q=q.z[1];p.t();){s=q.a(p.gC(p)) +if(b===a.q(0,s))o.B(0,s)}return o}, +Qy(){var s=this.b,r=this.$ti.z[1],q=s==null?A.fs(r):s.$1$0(r) +q.I(0,this) +return q}, +hB(a){var s=this.b,r=this.$ti.z[1],q=s==null?A.fs(r):s.$1$0(r) +q.I(0,this) +return q}, +$iP:1, +$ibr:1, +gdZ(){return this.a}} +A.kU.prototype={ +jJ(a,b,c){var s=this.$ti +return new A.kU(this.a,s.h("@<1>").ab(s.z[1]).ab(b).ab(c).h("kU<1,2,3,4>"))}, +a3(a,b){return J.dq(this.a,b)}, +i(a,b){return this.$ti.h("4?").a(J.bc(this.a,b))}, +l(a,b,c){var s=this.$ti +J.fY(this.a,s.c.a(b),s.z[1].a(c))}, +bq(a,b,c){var s=this.$ti +return s.z[3].a(J.yJ(this.a,s.c.a(b),new A.OV(this,c)))}, +v(a,b){return this.$ti.h("4?").a(J.ja(this.a,b))}, +P(a,b){J.pI(this.a,new A.OU(this,b))}, +gbg(a){var s=this.$ti +return A.bt(J.NQ(this.a),s.c,s.z[2])}, +gaJ(a){var s=this.$ti +return A.bt(J.aie(this.a),s.z[1],s.z[3])}, +gp(a){return J.bh(this.a)}, +gS(a){return J.fZ(this.a)}, +gbv(a){return J.kL(this.a)}, +ge7(a){var s=J.aib(this.a) +return s.fG(s,new A.OT(this),this.$ti.h("bb<3,4>"))}} +A.OV.prototype={ +$0(){return this.a.$ti.z[1].a(this.b.$0())}, +$S(){return this.a.$ti.h("2()")}} +A.OU.prototype={ +$2(a,b){var s=this.a.$ti +this.b.$2(s.z[2].a(a),s.z[3].a(b))}, +$S(){return this.a.$ti.h("~(1,2)")}} +A.OT.prototype={ +$1(a){var s=this.a.$ti,r=s.z[3] +return new A.bb(s.z[2].a(a.a),r.a(a.b),s.h("@<3>").ab(r).h("bb<1,2>"))}, +$S(){return this.a.$ti.h("bb<3,4>(bb<1,2>)")}} +A.i5.prototype={ +eT(a,b){return new A.i5(this.a,this.$ti.h("@<1>").ab(b).h("i5<1,2>"))}, +$iP:1, +gdZ(){return this.a}} +A.ho.prototype={ +j(a){return"LateInitializationError: "+this.a}} +A.jn.prototype={ +gp(a){return this.a.length}, +i(a,b){return B.d.ah(this.a,b)}} +A.a6H.prototype={ +$0(){return A.cJ(null,t.P)}, +$S:88} +A.YJ.prototype={} +A.P.prototype={} +A.bn.prototype={ +gX(a){return new A.db(this,this.gp(this))}, +P(a,b){var s,r=this,q=r.gp(r) +for(s=0;s").ab(c).h("aA<1,2>"))}, +fU(a,b){return A.eG(this,b,null,A.m(this).h("bn.E"))}, +cL(a,b){return A.aw(this,b,A.m(this).h("bn.E"))}, +cK(a){return this.cL(a,!0)}, +hB(a){var s,r=this,q=A.fs(A.m(r).h("bn.E")) +for(s=0;ss)throw A.d(A.bE(r,0,s,"start",null))}}, +gRv(){var s=J.bh(this.a),r=this.c +if(r==null||r>s)return s +return r}, +gWT(){var s=J.bh(this.a),r=this.b +if(r>s)return s +return r}, +gp(a){var s,r=J.bh(this.a),q=this.b +if(q>=r)return 0 +s=this.c +if(s==null||s>=r)return r-q +return s-q}, +aH(a,b){var s=this,r=s.gWT()+b +if(b<0||r>=s.gRv())throw A.d(A.c5(b,s.gp(s),s,null,"index")) +return J.yG(s.a,r)}, +fU(a,b){var s,r,q=this +A.dA(b,"count") +s=q.b+b +r=q.c +if(r!=null&&s>=r)return new A.ic(q.$ti.h("ic<1>")) +return A.eG(q.a,s,r,q.$ti.c)}, +zl(a,b){var s,r,q,p=this +A.dA(b,"count") +s=p.c +r=p.b +q=r+b +if(s==null)return A.eG(p.a,r,q,p.$ti.c) +else{if(s=o){r.d=null +return!1}r.d=p.aH(q,s);++r.c +return!0}} +A.dN.prototype={ +gX(a){return new A.dy(J.am(this.a),this.b)}, +gp(a){return J.bh(this.a)}, +gS(a){return J.fZ(this.a)}, +gG(a){return this.b.$1(J.kK(this.a))}, +gO(a){return this.b.$1(J.yH(this.a))}, +aH(a,b){return this.b.$1(J.yG(this.a,b))}} +A.l0.prototype={$iP:1} +A.dy.prototype={ +t(){var s=this,r=s.b +if(r.t()){s.a=s.c.$1(r.gC(r)) +return!0}s.a=null +return!1}, +gC(a){var s=this.a +return s==null?A.m(this).z[1].a(s):s}} +A.aA.prototype={ +gp(a){return J.bh(this.a)}, +aH(a,b){return this.b.$1(J.yG(this.a,b))}} +A.b2.prototype={ +gX(a){return new A.vp(J.am(this.a),this.b)}, +fG(a,b,c){return new A.dN(this,b,this.$ti.h("@<1>").ab(c).h("dN<1,2>"))}} +A.vp.prototype={ +t(){var s,r +for(s=this.a,r=this.b;s.t();)if(r.$1(s.gC(s)))return!0 +return!1}, +gC(a){var s=this.a +return s.gC(s)}} +A.ie.prototype={ +gX(a){return new A.B9(J.am(this.a),this.b,B.iu)}} +A.B9.prototype={ +gC(a){var s=this.d +return s==null?A.m(this).z[1].a(s):s}, +t(){var s,r,q=this,p=q.c +if(p==null)return!1 +for(s=q.a,r=q.b;!p.t();){q.d=null +if(s.t()){q.c=null +p=J.am(r.$1(s.gC(s))) +q.c=p}else return!1}p=q.c +q.d=p.gC(p) +return!0}} +A.m9.prototype={ +gX(a){return new A.Fq(J.am(this.a),this.b)}} +A.qX.prototype={ +gp(a){var s=J.bh(this.a),r=this.b +if(s>r)return r +return s}, +$iP:1} +A.Fq.prototype={ +t(){if(--this.b>=0)return this.a.t() +this.b=-1 +return!1}, +gC(a){var s +if(this.b<0){A.m(this).c.a(null) +return null}s=this.a +return s.gC(s)}} +A.iB.prototype={ +fU(a,b){A.mK(b,"count") +A.dA(b,"count") +return new A.iB(this.a,this.b+b,A.m(this).h("iB<1>"))}, +gX(a){return new A.EZ(J.am(this.a),this.b)}} +A.nc.prototype={ +gp(a){var s=J.bh(this.a)-this.b +if(s>=0)return s +return 0}, +fU(a,b){A.mK(b,"count") +A.dA(b,"count") +return new A.nc(this.a,this.b+b,this.$ti)}, +$iP:1} +A.EZ.prototype={ +t(){var s,r +for(s=this.a,r=0;r"))}, +fU(a,b){A.dA(b,"count") +return this}, +cL(a,b){var s=this.$ti.c +return b?J.rD(0,s):J.a7Z(0,s)}, +cK(a){return this.cL(a,!0)}, +hB(a){return A.fs(this.$ti.c)}} +A.AX.prototype={ +t(){return!1}, +gC(a){throw A.d(A.bJ())}} +A.ih.prototype={ +gX(a){return new A.Br(J.am(this.a),this.b)}, +gp(a){return J.bh(this.a)+J.bh(this.b)}, +gS(a){return J.fZ(this.a)&&J.fZ(this.b)}, +gbv(a){return J.kL(this.a)||J.kL(this.b)}, +q(a,b){return J.yF(this.a,b)||J.yF(this.b,b)}, +gG(a){var s=J.am(this.a) +if(s.t())return s.gC(s) +return J.kK(this.b)}, +gO(a){var s,r=J.am(this.b) +if(r.t()){s=r.gC(r) +for(;r.t();)s=r.gC(r) +return s}return J.yH(this.a)}} +A.qW.prototype={ +aH(a,b){var s=this.a,r=J.aC(s),q=r.gp(s) +if(b"))}} +A.oO.prototype={ +t(){var s,r +for(s=this.a,r=this.$ti.c;s.t();)if(r.b(s.gC(s)))return!0 +return!1}, +gC(a){var s=this.a +return this.$ti.c.a(s.gC(s))}} +A.rf.prototype={ +sp(a,b){throw A.d(A.T("Cannot change the length of a fixed-length list"))}, +B(a,b){throw A.d(A.T("Cannot add to a fixed-length list"))}, +v(a,b){throw A.d(A.T("Cannot remove from a fixed-length list"))}, +dN(a){throw A.d(A.T("Cannot remove from a fixed-length list"))}} +A.FV.prototype={ +l(a,b,c){throw A.d(A.T("Cannot modify an unmodifiable list"))}, +sp(a,b){throw A.d(A.T("Cannot change the length of an unmodifiable list"))}, +B(a,b){throw A.d(A.T("Cannot add to an unmodifiable list"))}, +v(a,b){throw A.d(A.T("Cannot remove from an unmodifiable list"))}, +dN(a){throw A.d(A.T("Cannot remove from an unmodifiable list"))}, +be(a,b,c,d,e){throw A.d(A.T("Cannot modify an unmodifiable list"))}, +dA(a,b,c,d){return this.be(a,b,c,d,0)}} +A.oM.prototype={} +A.co.prototype={ +gp(a){return J.bh(this.a)}, +aH(a,b){var s=this.a,r=J.aC(s) +return r.aH(s,r.gp(s)-1-b)}} +A.m7.prototype={ +gu(a){var s=this._hashCode +if(s!=null)return s +s=664597*J.p(this.a)&536870911 +this._hashCode=s +return s}, +j(a){return'Symbol("'+A.h(this.a)+'")'}, +k(a,b){if(b==null)return!1 +return b instanceof A.m7&&this.a==b.a}, +$im8:1} +A.y5.prototype={} +A.mq.prototype={$r:"+cacheSize,maxTextLength(1,2)",$s:1} +A.wO.prototype={$r:"+key,value(1,2)",$s:2} +A.wP.prototype={$r:"+breaks,graphemes,words(1,2,3)",$s:3} +A.wQ.prototype={$r:"+large,medium,small(1,2,3)",$s:4} +A.kW.prototype={} +A.n2.prototype={ +jJ(a,b,c){var s=A.m(this) +return A.abT(this,s.c,s.z[1],b,c)}, +gS(a){return this.gp(this)===0}, +gbv(a){return this.gp(this)!==0}, +j(a){return A.a87(this)}, +l(a,b,c){A.a7A()}, +bq(a,b,c){A.a7A()}, +v(a,b){A.a7A()}, +ge7(a){return this.a_3(0,A.m(this).h("bb<1,2>"))}, +a_3(a,b){var s=this +return A.a5J(function(){var r=a +var q=0,p=1,o,n,m,l +return function $async$ge7(c,d){if(c===1){o=d +q=p}while(true)switch(q){case 0:n=s.gbg(s),n=n.gX(n),m=A.m(s),m=m.h("@<1>").ab(m.z[1]).h("bb<1,2>") +case 2:if(!n.t()){q=3 +break}l=n.gC(n) +q=4 +return new A.bb(l,s.i(0,l),m) +case 4:q=2 +break +case 3:return A.a2D() +case 1:return A.a2E(o)}}},b)}, +of(a,b,c,d){var s=A.y(c,d) +this.P(0,new A.Pu(this,b,s)) +return s}, +$iay:1} +A.Pu.prototype={ +$2(a,b){var s=this.b.$2(a,b) +this.c.l(0,s.a,s.b)}, +$S(){return A.m(this.a).h("~(1,2)")}} +A.aW.prototype={ +gp(a){return this.a}, +a3(a,b){if(typeof b!="string")return!1 +if("__proto__"===b)return!1 +return this.b.hasOwnProperty(b)}, +i(a,b){if(!this.a3(0,b))return null +return this.b[b]}, +P(a,b){var s,r,q,p,o=this.c +for(s=o.length,r=this.b,q=0;q"))}, +gaJ(a){var s=this.$ti +return A.t_(this.c,new A.Pv(this),s.c,s.z[1])}} +A.Pv.prototype={ +$1(a){return this.a.b[a]}, +$S(){return this.a.$ti.h("2(1)")}} +A.vL.prototype={ +gX(a){var s=this.a.c +return new J.h1(s,s.length)}, +gp(a){return this.a.c.length}} +A.bq.prototype={ +kI(){var s,r,q,p=this,o=p.$map +if(o==null){s=p.$ti +r=s.c +q=A.akO(r) +o=A.jJ(A.apW(),q,r,s.z[1]) +A.afp(p.a,o) +p.$map=o}return o}, +a3(a,b){return this.kI().a3(0,b)}, +i(a,b){return this.kI().i(0,b)}, +P(a,b){this.kI().P(0,b)}, +gbg(a){var s=this.kI() +return new A.aT(s,A.m(s).h("aT<1>"))}, +gaJ(a){var s=this.kI() +return s.gaJ(s)}, +gp(a){return this.kI().a}} +A.S4.prototype={ +$1(a){return this.a.b(a)}, +$S:23} +A.rF.prototype={ +ga1s(){var s=this.a +if(t.of.b(s))return s +return this.a=new A.m7(s)}, +ga1R(){var s,r,q,p,o,n=this +if(n.c===1)return B.jY +s=n.d +r=J.aC(s) +q=r.gp(s)-J.bh(n.e)-n.f +if(q===0)return B.jY +p=[] +for(o=0;o>>0}, +j(a){return"Closure '"+this.$_name+"' of "+("Instance of '"+A.Wa(this.a)+"'")}} +A.Hh.prototype={ +j(a){return"Reading static variable '"+this.a+"' during its initialization"}} +A.Es.prototype={ +j(a){return"RuntimeError: "+this.a}} +A.a3S.prototype={} +A.e4.prototype={ +gp(a){return this.a}, +gS(a){return this.a===0}, +gbv(a){return this.a!==0}, +gbg(a){return new A.aT(this,A.m(this).h("aT<1>"))}, +gaJ(a){var s=A.m(this) +return A.t_(new A.aT(this,s.h("aT<1>")),new A.TB(this),s.c,s.z[1])}, +a3(a,b){var s,r +if(typeof b=="string"){s=this.b +if(s==null)return!1 +return s[b]!=null}else if(typeof b=="number"&&(b&0x3fffffff)===b){r=this.c +if(r==null)return!1 +return r[b]!=null}else return this.Ir(b)}, +Ir(a){var s=this.d +if(s==null)return!1 +return this.o4(s[this.o3(a)],a)>=0}, +Z5(a,b){return new A.aT(this,A.m(this).h("aT<1>")).iN(0,new A.TA(this,b))}, +I(a,b){J.pI(b,new A.Tz(this))}, +i(a,b){var s,r,q,p,o=null +if(typeof b=="string"){s=this.b +if(s==null)return o +r=s[b] +q=r==null?o:r.b +return q}else if(typeof b=="number"&&(b&0x3fffffff)===b){p=this.c +if(p==null)return o +r=p[b] +q=r==null?o:r.b +return q}else return this.Is(b)}, +Is(a){var s,r,q=this.d +if(q==null)return null +s=q[this.o3(a)] +r=this.o4(s,a) +if(r<0)return null +return s[r].b}, +l(a,b,c){var s,r,q=this +if(typeof b=="string"){s=q.b +q.Ba(s==null?q.b=q.vE():s,b,c)}else if(typeof b=="number"&&(b&0x3fffffff)===b){r=q.c +q.Ba(r==null?q.c=q.vE():r,b,c)}else q.Iu(b,c)}, +Iu(a,b){var s,r,q,p=this,o=p.d +if(o==null)o=p.d=p.vE() +s=p.o3(a) +r=o[s] +if(r==null)o[s]=[p.vF(a,b)] +else{q=p.o4(r,a) +if(q>=0)r[q].b=b +else r.push(p.vF(a,b))}}, +bq(a,b,c){var s,r,q=this +if(q.a3(0,b)){s=q.i(0,b) +return s==null?A.m(q).z[1].a(s):s}r=c.$0() +q.l(0,b,r) +return r}, +v(a,b){var s=this +if(typeof b=="string")return s.E3(s.b,b) +else if(typeof b=="number"&&(b&0x3fffffff)===b)return s.E3(s.c,b) +else return s.It(b)}, +It(a){var s,r,q,p,o=this,n=o.d +if(n==null)return null +s=o.o3(a) +r=n[s] +q=o.o4(r,a) +if(q<0)return null +p=r.splice(q,1)[0] +o.F8(p) +if(r.length===0)delete n[s] +return p.b}, +L(a){var s=this +if(s.a>0){s.b=s.c=s.d=s.e=s.f=null +s.a=0 +s.vC()}}, +P(a,b){var s=this,r=s.e,q=s.r +for(;r!=null;){b.$2(r.a,r.b) +if(q!==s.r)throw A.d(A.bj(s)) +r=r.c}}, +Ba(a,b,c){var s=a[b] +if(s==null)a[b]=this.vF(b,c) +else s.b=c}, +E3(a,b){var s +if(a==null)return null +s=a[b] +if(s==null)return null +this.F8(s) +delete a[b] +return s.b}, +vC(){this.r=this.r+1&1073741823}, +vF(a,b){var s,r=this,q=new A.U5(a,b) +if(r.e==null)r.e=r.f=q +else{s=r.f +s.toString +q.d=s +r.f=s.c=q}++r.a +r.vC() +return q}, +F8(a){var s=this,r=a.d,q=a.c +if(r==null)s.e=q +else r.c=q +if(q==null)s.f=r +else q.d=r;--s.a +s.vC()}, +o3(a){return J.p(a)&0x3fffffff}, +o4(a,b){var s,r +if(a==null)return-1 +s=a.length +for(r=0;r"]=s +delete s[""] +return s}} +A.TB.prototype={ +$1(a){var s=this.a,r=s.i(0,a) +return r==null?A.m(s).z[1].a(r):r}, +$S(){return A.m(this.a).h("2(1)")}} +A.TA.prototype={ +$1(a){return J.e(this.a.i(0,a),this.b)}, +$S(){return A.m(this.a).h("D(1)")}} +A.Tz.prototype={ +$2(a,b){this.a.l(0,a,b)}, +$S(){return A.m(this.a).h("~(1,2)")}} +A.U5.prototype={} +A.aT.prototype={ +gp(a){return this.a.a}, +gS(a){return this.a.a===0}, +gX(a){var s=this.a,r=new A.rQ(s,s.r) +r.c=s.e +return r}, +q(a,b){return this.a.a3(0,b)}, +P(a,b){var s=this.a,r=s.e,q=s.r +for(;r!=null;){b.$1(r.a) +if(q!==s.r)throw A.d(A.bj(s)) +r=r.c}}} +A.rQ.prototype={ +gC(a){return this.d}, +t(){var s,r=this,q=r.a +if(r.b!==q.r)throw A.d(A.bj(q)) +s=r.c +if(s==null){r.d=null +return!1}else{r.d=s.a +r.c=s.c +return!0}}} +A.a6p.prototype={ +$1(a){return this.a(a)}, +$S:55} +A.a6q.prototype={ +$2(a,b){return this.a(a,b)}, +$S:199} +A.a6r.prototype={ +$1(a){return this.a(a)}, +$S:92} +A.wL.prototype={ +gcc(a){return A.bG(this.CF())}, +CF(){return A.ar9(this.$r,this.ve())}, +j(a){return this.F3(!1)}, +F3(a){var s,r,q,p,o,n=this.RF(),m=this.ve(),l=(a?""+"Record ":"")+"(" +for(s=n.length,r="",q=0;q0;){--q;--s +j[q]=r[s]}}return A.U7(j,k)}, +$ilP:1} +A.wM.prototype={ +ve(){return[this.a,this.b]}, +k(a,b){if(b==null)return!1 +return b instanceof A.wM&&this.$s===b.$s&&J.e(this.a,b.a)&&J.e(this.b,b.b)}, +gu(a){return A.L(this.$s,this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.wN.prototype={ +ve(){return[this.a,this.b,this.c]}, +k(a,b){var s=this +if(b==null)return!1 +return b instanceof A.wN&&s.$s===b.$s&&J.e(s.a,b.a)&&J.e(s.b,b.b)&&J.e(s.c,b.c)}, +gu(a){var s=this +return A.L(s.$s,s.a,s.b,s.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.Tx.prototype={ +j(a){return"RegExp/"+this.a+"/"+this.b.flags}, +gUN(){var s=this,r=s.c +if(r!=null)return r +r=s.b +return s.c=A.abJ(s.a,r.multiline,!r.ignoreCase,r.unicode,r.dotAll,!0)}, +xO(a){var s=this.b.exec(a) +if(s==null)return null +return new A.wl(s)}, +LE(a){var s=this.xO(a) +if(s!=null)return s.b[0] +return null}, +RB(a,b){var s,r=this.gUN() +r.lastIndex=b +s=r.exec(a) +if(s==null)return null +return new A.wl(s)}} +A.wl.prototype={ +glf(a){var s=this.b +return s.index+s[0].length}, +i(a,b){return this.b[b]}, +$it1:1, +$ia8n:1} +A.a01.prototype={ +gC(a){var s=this.d +return s==null?t.ez.a(s):s}, +t(){var s,r,q,p,o,n=this,m=n.b +if(m==null)return!1 +s=n.c +r=m.length +if(s<=r){q=n.a +p=q.RB(m,s) +if(p!=null){n.d=p +o=p.glf(p) +if(p.b.index===o){if(q.b.unicode){s=n.c +q=s+1 +if(q=55296&&s<=56319){s=B.d.ah(m,q) +s=s>=56320&&s<=57343}else s=!1}else s=!1}else s=!1 +o=(s?o+1:o)+1}n.c=o +return!0}}n.b=n.d=null +return!1}} +A.uX.prototype={ +i(a,b){if(b!==0)A.a2(A.Wi(b,null)) +return this.c}, +$it1:1} +A.Lm.prototype={ +gX(a){return new A.a4s(this.a,this.b,this.c)}, +gG(a){var s=this.b,r=this.a.indexOf(s,this.c) +if(r>=0)return new A.uX(r,s) +throw A.d(A.bJ())}} +A.a4s.prototype={ +t(){var s,r,q=this,p=q.c,o=q.b,n=o.length,m=q.a,l=m.length +if(p+n>l){q.d=null +return!1}s=m.indexOf(o,p) +if(s<0){q.c=l+1 +q.d=null +return!1}r=s+n +q.d=new A.uX(s,o) +q.c=r===q.c?r+1:r +return!0}, +gC(a){var s=this.d +s.toString +return s}} +A.a16.prototype={ +ap(){var s=this.b +if(s===this)throw A.d(new A.ho("Local '"+this.a+"' has not been initialized.")) +return s}, +aw(){var s=this.b +if(s===this)throw A.d(A.fp(this.a)) +return s}, +sbH(a){var s=this +if(s.b!==s)throw A.d(new A.ho("Local '"+s.a+"' has already been initialized.")) +s.b=a}} +A.te.prototype={ +gcc(a){return B.LT}, +G9(a,b,c){throw A.d(A.T("Int64List not supported by dart2js."))}, +$ibA:1, +$izh:1} +A.ti.prototype={ +Ua(a,b,c,d){var s=A.bE(b,0,c,d,null) +throw A.d(s)}, +BB(a,b,c,d){if(b>>>0!==b||b>c)this.Ua(a,b,c,d)}} +A.tf.prototype={ +gcc(a){return B.LU}, +zR(a,b,c){throw A.d(A.T("Int64 accessor not supported by dart2js."))}, +Ae(a,b,c,d){throw A.d(A.T("Int64 accessor not supported by dart2js."))}, +$ibA:1, +$ic3:1} +A.nS.prototype={ +gp(a){return a.length}, +Ey(a,b,c,d,e){var s,r,q=a.length +this.BB(a,b,q,"start") +this.BB(a,c,q,"end") +if(b>c)throw A.d(A.bE(b,0,c,null,null)) +s=c-b +if(e<0)throw A.d(A.cy(e,null)) +r=d.length +if(r-e").b(b))s.By(b) +else s.mw(b)}}, +np(a,b){var s=this.a +if(this.b)s.eH(a,b) +else s.pe(a,b)}} +A.a57.prototype={ +$1(a){return this.a.$2(0,a)}, +$S:24} +A.a58.prototype={ +$2(a,b){this.a.$2(1,new A.r5(a,b))}, +$S:191} +A.a62.prototype={ +$2(a,b){this.a(a,b)}, +$S:190} +A.pd.prototype={ +j(a){return"IterationMarker("+this.b+", "+A.h(this.a)+")"}} +A.fU.prototype={ +gC(a){var s=this.c +if(s==null)return this.b +return s.gC(s)}, +t(){var s,r,q,p,o,n=this +for(;!0;){s=n.c +if(s!=null)if(s.t())return!0 +else n.c=null +r=function(a,b,c){var m,l=b +while(true)try{return a(l,m)}catch(k){m=k +l=c}}(n.a,0,1) +if(r instanceof A.pd){q=r.b +if(q===2){p=n.d +if(p==null||p.length===0){n.b=null +return!1}n.a=p.pop() +continue}else{s=r.a +if(q===3)throw s +else{o=J.am(s) +if(o instanceof A.fU){s=n.d +if(s==null)s=n.d=[] +s.push(n.a) +n.a=o.a +continue}else{n.c=o +continue}}}}else{n.b=r +return!0}}return!1}} +A.xD.prototype={ +gX(a){return new A.fU(this.a())}} +A.yV.prototype={ +j(a){return A.h(this.a)}, +$ibm:1, +gmg(){return this.b}} +A.iO.prototype={} +A.vC.prototype={ +vI(){}, +vL(){}} +A.vB.prototype={ +gAr(a){return new A.iO(this,A.m(this).h("iO<1>"))}, +gDv(){return this.c<4}, +VU(a){var s=a.CW,r=a.ch +if(s==null)this.d=r +else s.ch=r +if(r==null)this.e=s +else r.CW=s +a.CW=a +a.ch=a}, +EP(a,b,c,d){var s,r,q,p,o,n,m=this +if((m.c&4)!==0){s=new A.vS($.ab,c) +s.Wc() +return s}s=$.ab +r=d?1:0 +q=A.adG(s,a) +A.adH(s,b) +p=c==null?A.af3():c +o=new A.vC(m,q,p,s,r,A.m(m).h("vC<1>")) +o.CW=o +o.ch=o +o.ay=m.c&1 +n=m.e +m.e=o +o.ch=null +o.CW=n +if(n==null)m.d=o +else n.ch=o +if(m.d===o)A.Nq(m.a) +return o}, +DW(a){var s,r=this +A.m(r).h("vC<1>").a(a) +if(a.ch===a)return null +s=a.ay +if((s&2)!==0)a.ay=s|4 +else{r.VU(a) +if((r.c&2)===0&&r.d==null)r.Q9()}return null}, +DX(a){}, +DY(a){}, +B8(){if((this.c&4)!==0)return new A.fK("Cannot add new events after calling close") +return new A.fK("Cannot add new events while doing an addStream")}, +B(a,b){if(!this.gDv())throw A.d(this.B8()) +this.mT(b)}, +dn(a){var s,r,q=this +if((q.c&4)!==0){s=q.r +s.toString +return s}if(!q.gDv())throw A.d(q.B8()) +q.c|=4 +r=q.r +if(r==null)r=q.r=new A.ai($.ab,t.U) +q.jC() +return r}, +Q9(){if((this.c&4)!==0){var s=this.r +if((s.a&30)===0)s.ju(null)}A.Nq(this.b)}} +A.vy.prototype={ +mT(a){var s +for(s=this.d;s!=null;s=s.ch)s.pb(new A.oZ(a))}, +jC(){var s=this.d +if(s!=null)for(;s!=null;s=s.ch)s.pb(B.f3) +else this.r.ju(null)}} +A.S1.prototype={ +$0(){var s,r,q +try{this.a.uF(this.b.$0())}catch(q){s=A.ah(q) +r=A.aJ(q) +A.ap6(this.a,s,r)}}, +$S:0} +A.S0.prototype={ +$0(){this.c.a(null) +this.b.uF(null)}, +$S:0} +A.S3.prototype={ +$2(a,b){var s=this,r=s.a,q=--r.b +if(r.a!=null){r.a=null +if(r.b===0||s.c)s.d.eH(a,b) +else{s.e.b=a +s.f.b=b}}else if(q===0&&!s.c)s.d.eH(s.e.ap(),s.f.ap())}, +$S:61} +A.S2.prototype={ +$1(a){var s,r=this,q=r.a;--q.b +s=q.a +if(s!=null){J.fY(s,r.b,a) +if(q.b===0)r.c.mw(A.nH(s,!0,r.w))}else if(q.b===0&&!r.e)r.c.eH(r.f.ap(),r.r.ap())}, +$S(){return this.w.h("aM(0)")}} +A.RZ.prototype={ +$2(a,b){var s +if(this.a.b(a))s=!1 +else s=!0 +if(s)throw A.d(a) +return this.c.$2(a,b)}, +$S(){return this.d.h("0/(E,cP)")}} +A.RY.prototype={ +$1(a){return a}, +$S(){return this.a.h("0(0)")}} +A.GP.prototype={ +np(a,b){A.f4(a,"error",t.K) +if((this.a.a&30)!==0)throw A.d(A.a5("Future already completed")) +if(b==null)b=A.Oh(a) +this.eH(a,b)}, +no(a){return this.np(a,null)}} +A.bp.prototype={ +cH(a,b){var s=this.a +if((s.a&30)!==0)throw A.d(A.a5("Future already completed")) +s.ju(b)}, +hT(a){return this.cH(a,null)}, +eH(a,b){this.a.pe(a,b)}} +A.f3.prototype={ +a1l(a){if((this.c&15)!==6)return!0 +return this.b.b.zj(this.d,a.a)}, +a_u(a){var s,r=this.e,q=null,p=a.a,o=this.b.b +if(t.nW.b(r))q=o.K3(r,p,a.b) +else q=o.zj(r,p) +try{p=q +return p}catch(s){if(t.bs.b(A.ah(s))){if((this.c&1)!==0)throw A.d(A.cy("The error handler of Future.then must return a value of the returned future's type","onError")) +throw A.d(A.cy("The error handler of Future.catchError must return a value of the future's type","onError"))}else throw s}}} +A.ai.prototype={ +ec(a,b,c){var s,r,q=$.ab +if(q===B.a7){if(b!=null&&!t.nW.b(b)&&!t.in.b(b))throw A.d(A.h0(b,"onError",u.w))}else if(b!=null)b=A.aeR(b,q) +s=new A.ai(q,c.h("ai<0>")) +r=b==null?1:3 +this.kE(new A.f3(s,r,a,b,this.$ti.h("@<1>").ab(c).h("f3<1,2>"))) +return s}, +bw(a,b){return this.ec(a,null,b)}, +F_(a,b,c){var s=new A.ai($.ab,c.h("ai<0>")) +this.kE(new A.f3(s,3,a,b,this.$ti.h("@<1>").ab(c).h("f3<1,2>"))) +return s}, +l0(a,b){var s=this.$ti,r=$.ab,q=new A.ai(r,s) +if(r!==B.a7)a=A.aeR(a,r) +this.kE(new A.f3(q,2,b,a,s.h("@<1>").ab(s.c).h("f3<1,2>"))) +return q}, +jK(a){return this.l0(a,null)}, +io(a){var s=this.$ti,r=new A.ai($.ab,s) +this.kE(new A.f3(r,8,a,null,s.h("@<1>").ab(s.c).h("f3<1,2>"))) +return r}, +Ww(a){this.a=this.a&1|16 +this.c=a}, +ux(a){this.a=a.a&30|this.a&1 +this.c=a.c}, +kE(a){var s=this,r=s.a +if(r<=3){a.a=s.c +s.c=a}else{if((r&4)!==0){r=s.c +if((r.a&24)===0){r.kE(a) +return}s.ux(r)}A.kz(null,null,s.b,new A.a1X(s,a))}}, +DU(a){var s,r,q,p,o,n=this,m={} +m.a=a +if(a==null)return +s=n.a +if(s<=3){r=n.c +n.c=a +if(r!=null){q=a.a +for(p=a;q!=null;p=q,q=o)o=q.a +p.a=r}}else{if((s&4)!==0){s=n.c +if((s.a&24)===0){s.DU(a) +return}n.ux(s)}m.a=n.pV(a) +A.kz(null,null,n.b,new A.a24(m,n))}}, +pS(){var s=this.c +this.c=null +return this.pV(s)}, +pV(a){var s,r,q +for(s=a,r=null;s!=null;r=s,s=q){q=s.a +s.a=r}return r}, +uq(a){var s,r,q,p=this +p.a^=2 +try{a.ec(new A.a20(p),new A.a21(p),t.P)}catch(q){s=A.ah(q) +r=A.aJ(q) +A.f7(new A.a22(p,s,r))}}, +uF(a){var s,r=this,q=r.$ti +if(q.h("ad<1>").b(a))if(q.b(a))A.a2_(a,r) +else r.uq(a) +else{s=r.pS() +r.a=8 +r.c=a +A.p5(r,s)}}, +mw(a){var s=this,r=s.pS() +s.a=8 +s.c=a +A.p5(s,r)}, +eH(a,b){var s=this.pS() +this.Ww(A.Og(a,b)) +A.p5(this,s)}, +ju(a){if(this.$ti.h("ad<1>").b(a)){this.By(a) +return}this.PW(a)}, +PW(a){this.a^=2 +A.kz(null,null,this.b,new A.a1Z(this,a))}, +By(a){var s=this +if(s.$ti.b(a)){if((a.a&16)!==0){s.a^=2 +A.kz(null,null,s.b,new A.a23(s,a))}else A.a2_(a,s) +return}s.uq(a)}, +pe(a,b){this.a^=2 +A.kz(null,null,this.b,new A.a1Y(this,a,b))}, +$iad:1} +A.a1X.prototype={ +$0(){A.p5(this.a,this.b)}, +$S:0} +A.a24.prototype={ +$0(){A.p5(this.b,this.a.a)}, +$S:0} +A.a20.prototype={ +$1(a){var s,r,q,p=this.a +p.a^=2 +try{p.mw(p.$ti.c.a(a))}catch(q){s=A.ah(q) +r=A.aJ(q) +p.eH(s,r)}}, +$S:8} +A.a21.prototype={ +$2(a,b){this.a.eH(a,b)}, +$S:47} +A.a22.prototype={ +$0(){this.a.eH(this.b,this.c)}, +$S:0} +A.a1Z.prototype={ +$0(){this.a.mw(this.b)}, +$S:0} +A.a23.prototype={ +$0(){A.a2_(this.b,this.a)}, +$S:0} +A.a1Y.prototype={ +$0(){this.a.eH(this.b,this.c)}, +$S:0} +A.a27.prototype={ +$0(){var s,r,q,p,o,n,m=this,l=null +try{q=m.a.a +l=q.b.b.dO(q.d)}catch(p){s=A.ah(p) +r=A.aJ(p) +q=m.c&&m.b.a.c.a===s +o=m.a +if(q)o.c=m.b.a.c +else o.c=A.Og(s,r) +o.b=!0 +return}if(l instanceof A.ai&&(l.a&24)!==0){if((l.a&16)!==0){q=m.a +q.c=l.c +q.b=!0}return}if(t.o0.b(l)){n=m.b.a +q=m.a +q.c=l.bw(new A.a28(n),t.z) +q.b=!1}}, +$S:0} +A.a28.prototype={ +$1(a){return this.a}, +$S:189} +A.a26.prototype={ +$0(){var s,r,q,p,o +try{q=this.a +p=q.a +q.c=p.b.b.zj(p.d,this.b)}catch(o){s=A.ah(o) +r=A.aJ(o) +q=this.a +q.c=A.Og(s,r) +q.b=!0}}, +$S:0} +A.a25.prototype={ +$0(){var s,r,q,p,o,n,m=this +try{s=m.a.a.c +p=m.b +if(p.a.a1l(s)&&p.a.e!=null){p.c=p.a.a_u(s) +p.b=!1}}catch(o){r=A.ah(o) +q=A.aJ(o) +p=m.a.a.c +n=m.b +if(p.a===r)n.c=p +else n.c=A.Og(r,q) +n.b=!0}}, +$S:0} +A.Gr.prototype={} +A.iD.prototype={ +gp(a){var s={},r=new A.ai($.ab,t.h1) +s.a=0 +this.IU(new A.Zl(s,this),!0,new A.Zm(s,r),r.gQD()) +return r}} +A.Zl.prototype={ +$1(a){++this.a.a}, +$S(){return A.m(this.b).h("~(1)")}} +A.Zm.prototype={ +$0(){this.b.uF(this.a.a)}, +$S:0} +A.xz.prototype={ +gAr(a){return new A.ki(this,A.m(this).h("ki<1>"))}, +gVh(){if((this.b&8)===0)return this.a +return this.a.gzM()}, +Co(){var s,r=this +if((r.b&8)===0){s=r.a +return s==null?r.a=new A.wJ():s}s=r.a.gzM() +return s}, +gEQ(){var s=this.a +return(this.b&8)!==0?s.gzM():s}, +Bt(){if((this.b&4)!==0)return new A.fK("Cannot add event after closing") +return new A.fK("Cannot add event while adding a stream")}, +Cm(){var s=this.c +if(s==null)s=this.c=(this.b&2)!==0?$.a9W():new A.ai($.ab,t.U) +return s}, +B(a,b){var s=this,r=s.b +if(r>=4)throw A.d(s.Bt()) +if((r&1)!==0)s.mT(b) +else if((r&3)===0)s.Co().B(0,new A.oZ(b))}, +dn(a){var s=this,r=s.b +if((r&4)!==0)return s.Cm() +if(r>=4)throw A.d(s.Bt()) +r=s.b=r|4 +if((r&1)!==0)s.jC() +else if((r&3)===0)s.Co().B(0,B.f3) +return s.Cm()}, +EP(a,b,c,d){var s,r,q,p,o=this +if((o.b&3)!==0)throw A.d(A.a5("Stream has already been listened to.")) +s=A.ao3(o,a,b,c,d) +r=o.gVh() +q=o.b|=1 +if((q&8)!==0){p=o.a +p.szM(s) +p.a2m(0)}else o.a=s +s.Wy(r) +q=s.e +s.e=q|32 +new A.a4q(o).$0() +s.e&=4294967263 +s.BC((q&4)!==0) +return s}, +DW(a){var s,r,q,p,o,n,m,l=this,k=null +if((l.b&8)!==0)k=l.a.aT(0) +l.a=null +l.b=l.b&4294967286|2 +s=l.r +if(s!=null)if(k==null)try{r=s.$0() +if(t.pz.b(r))k=r}catch(o){q=A.ah(o) +p=A.aJ(o) +n=new A.ai($.ab,t.U) +n.pe(q,p) +k=n}else k=k.io(s) +m=new A.a4p(l) +if(k!=null)k=k.io(m) +else m.$0() +return k}, +DX(a){if((this.b&8)!==0)this.a.a3E(0) +A.Nq(this.e)}, +DY(a){if((this.b&8)!==0)this.a.a2m(0) +A.Nq(this.f)}} +A.a4q.prototype={ +$0(){A.Nq(this.a.d)}, +$S:0} +A.a4p.prototype={ +$0(){var s=this.a.c +if(s!=null&&(s.a&30)===0)s.ju(null)}, +$S:0} +A.Gs.prototype={ +mT(a){this.gEQ().pb(new A.oZ(a))}, +jC(){this.gEQ().pb(B.f3)}} +A.oU.prototype={} +A.ki.prototype={ +gu(a){return(A.fy(this.a)^892482866)>>>0}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +return b instanceof A.ki&&b.a===this.a}} +A.vN.prototype={ +DE(){return this.w.DW(this)}, +vI(){this.w.DX(this)}, +vL(){this.w.DY(this)}} +A.GF.prototype={ +Wy(a){if(a==null)return +this.r=a +if(a.c!=null){this.e|=64 +a.tt(this)}}, +Qe(){var s,r=this,q=r.e|=8 +if((q&64)!==0){s=r.r +if(s.a===1)s.a=3}if((q&32)===0)r.r=null +r.f=r.DE()}, +vI(){}, +vL(){}, +DE(){return null}, +pb(a){var s,r=this,q=r.r +if(q==null)q=r.r=new A.wJ() +q.B(0,a) +s=r.e +if((s&64)===0){s|=64 +r.e=s +if(s<128)q.tt(r)}}, +mT(a){var s=this,r=s.e +s.e=r|32 +s.d.zk(s.a,a) +s.e&=4294967263 +s.BC((r&4)!==0)}, +jC(){var s,r=this,q=new A.a0B(r) +r.Qe() +r.e|=16 +s=r.f +if(s!=null&&s!==$.a9W())s.io(q) +else q.$0()}, +BC(a){var s,r,q=this,p=q.e +if((p&64)!==0&&q.r.c==null){p=q.e=p&4294967231 +if((p&4)!==0)if(p<128){s=q.r +s=s==null?null:s.c==null +s=s!==!1}else s=!1 +else s=!1 +if(s){p&=4294967291 +q.e=p}}for(;!0;a=r){if((p&8)!==0){q.r=null +return}r=(p&4)!==0 +if(a===r)break +q.e=p^32 +if(r)q.vI() +else q.vL() +p=q.e&=4294967263}if((p&64)!==0&&p<128)q.r.tt(q)}} +A.a0B.prototype={ +$0(){var s=this.a,r=s.e +if((r&16)===0)return +s.e=r|42 +s.d.lW(s.c) +s.e&=4294967263}, +$S:0} +A.xA.prototype={ +IU(a,b,c,d){return this.a.EP(a,d,c,b===!0)}, +a1a(a){return this.IU(a,null,null,null)}} +A.Hr.prototype={ +gom(a){return this.a}, +som(a,b){return this.a=b}} +A.oZ.prototype={ +Ji(a){a.mT(this.b)}} +A.a1C.prototype={ +Ji(a){a.jC()}, +gom(a){return null}, +som(a,b){throw A.d(A.a5("No events after a done."))}} +A.wJ.prototype={ +tt(a){var s=this,r=s.a +if(r===1)return +if(r>=1){s.a=1 +return}A.f7(new A.a3x(s,a)) +s.a=1}, +B(a,b){var s=this,r=s.c +if(r==null)s.b=s.c=b +else{r.som(0,b) +s.c=b}}} +A.a3x.prototype={ +$0(){var s,r,q=this.a,p=q.a +q.a=0 +if(p===3)return +s=q.b +r=s.gom(s) +q.b=r +if(r==null)q.c=null +s.Ji(this.b)}, +$S:0} +A.vS.prototype={ +Wc(){var s=this +if((s.b&2)!==0)return +A.kz(null,null,s.a,s.gWs()) +s.b|=2}, +jC(){var s,r=this,q=r.b&=4294967293 +if(q>=4)return +r.b=q|1 +s=r.c +if(s!=null)r.a.lW(s)}} +A.Lk.prototype={} +A.a4X.prototype={} +A.a6_.prototype={ +$0(){var s=this.a,r=this.b +A.f4(s,"error",t.K) +A.f4(r,"stackTrace",t.AH) +A.akv(s,r)}, +$S:0} +A.a3W.prototype={ +lW(a){var s,r,q +try{if(B.a7===$.ab){a.$0() +return}A.aeS(null,null,this,a)}catch(q){s=A.ah(q) +r=A.aJ(q) +A.yl(s,r)}}, +a2v(a,b){var s,r,q +try{if(B.a7===$.ab){a.$1(b) +return}A.aeT(null,null,this,a,b)}catch(q){s=A.ah(q) +r=A.aJ(q) +A.yl(s,r)}}, +zk(a,b){return this.a2v(a,b,t.z)}, +Yk(a,b,c,d){return new A.a3X(this,a,c,d,b)}, +wQ(a){return new A.a3Y(this,a)}, +i(a,b){return null}, +a2s(a){if($.ab===B.a7)return a.$0() +return A.aeS(null,null,this,a)}, +dO(a){return this.a2s(a,t.z)}, +a2u(a,b){if($.ab===B.a7)return a.$1(b) +return A.aeT(null,null,this,a,b)}, +zj(a,b){return this.a2u(a,b,t.z,t.z)}, +a2t(a,b,c){if($.ab===B.a7)return a.$2(b,c) +return A.aq9(null,null,this,a,b,c)}, +K3(a,b,c){return this.a2t(a,b,c,t.z,t.z,t.z)}, +a27(a){return a}, +t1(a){return this.a27(a,t.z,t.z,t.z)}} +A.a3X.prototype={ +$2(a,b){return this.a.K3(this.b,a,b)}, +$S(){return this.e.h("@<0>").ab(this.c).ab(this.d).h("1(2,3)")}} +A.a3Y.prototype={ +$0(){return this.a.lW(this.b)}, +$S:0} +A.mn.prototype={ +gp(a){return this.a}, +gS(a){return this.a===0}, +gbv(a){return this.a!==0}, +gbg(a){return new A.mo(this,A.m(this).h("mo<1>"))}, +gaJ(a){var s=A.m(this) +return A.t_(new A.mo(this,s.h("mo<1>")),new A.a2b(this),s.c,s.z[1])}, +a3(a,b){var s,r +if(typeof b=="string"&&b!=="__proto__"){s=this.b +return s==null?!1:s[b]!=null}else if(typeof b=="number"&&(b&1073741823)===b){r=this.c +return r==null?!1:r[b]!=null}else return this.my(b)}, +my(a){var s=this.d +if(s==null)return!1 +return this.ek(this.Cu(s,a),a)>=0}, +i(a,b){var s,r,q +if(typeof b=="string"&&b!=="__proto__"){s=this.b +r=s==null?null:A.a8Q(s,b) +return r}else if(typeof b=="number"&&(b&1073741823)===b){q=this.c +r=q==null?null:A.a8Q(q,b) +return r}else return this.S3(0,b)}, +S3(a,b){var s,r,q=this.d +if(q==null)return null +s=this.Cu(q,b) +r=this.ek(s,b) +return r<0?null:s[r+1]}, +l(a,b,c){var s,r,q=this +if(typeof b=="string"&&b!=="__proto__"){s=q.b +q.BO(s==null?q.b=A.a8R():s,b,c)}else if(typeof b=="number"&&(b&1073741823)===b){r=q.c +q.BO(r==null?q.c=A.a8R():r,b,c)}else q.Wu(b,c)}, +Wu(a,b){var s,r,q,p=this,o=p.d +if(o==null)o=p.d=A.a8R() +s=p.eI(a) +r=o[s] +if(r==null){A.a8S(o,s,[a,b]);++p.a +p.e=null}else{q=p.ek(r,a) +if(q>=0)r[q+1]=b +else{r.push(a,b);++p.a +p.e=null}}}, +bq(a,b,c){var s,r,q=this +if(q.a3(0,b)){s=q.i(0,b) +return s==null?A.m(q).z[1].a(s):s}r=c.$0() +q.l(0,b,r) +return r}, +v(a,b){var s=this +if(typeof b=="string"&&b!=="__proto__")return s.iB(s.b,b) +else if(typeof b=="number"&&(b&1073741823)===b)return s.iB(s.c,b) +else return s.iI(0,b)}, +iI(a,b){var s,r,q,p,o=this,n=o.d +if(n==null)return null +s=o.eI(b) +r=n[s] +q=o.ek(r,b) +if(q<0)return null;--o.a +o.e=null +p=r.splice(q,2)[1] +if(0===r.length)delete n[s] +return p}, +P(a,b){var s,r,q,p,o,n=this,m=n.uH() +for(s=m.length,r=A.m(n).z[1],q=0;q=r.length){s.d=null +return!1}else{s.d=r[q] +s.c=q+1 +return!0}}} +A.wg.prototype={ +i(a,b){if(!this.y.$1(b))return null +return this.MJ(b)}, +l(a,b,c){this.ML(b,c)}, +a3(a,b){if(!this.y.$1(b))return!1 +return this.MI(b)}, +v(a,b){if(!this.y.$1(b))return null +return this.MK(b)}, +o3(a){return this.x.$1(a)&1073741823}, +o4(a,b){var s,r,q +if(a==null)return-1 +s=a.length +for(r=this.w,q=0;q"))}, +iG(a){return new A.hQ(a.h("hQ<0>"))}, +mL(){return this.iG(t.z)}, +gX(a){return new A.kk(this,this.mx())}, +gp(a){return this.a}, +gS(a){return this.a===0}, +gbv(a){return this.a!==0}, +q(a,b){var s,r +if(typeof b=="string"&&b!=="__proto__"){s=this.b +return s==null?!1:s[b]!=null}else if(typeof b=="number"&&(b&1073741823)===b){r=this.c +return r==null?!1:r[b]!=null}else return this.uK(b)}, +uK(a){var s=this.d +if(s==null)return!1 +return this.ek(s[this.eI(a)],a)>=0}, +B(a,b){var s,r,q=this +if(typeof b=="string"&&b!=="__proto__"){s=q.b +return q.mu(s==null?q.b=A.a8T():s,b)}else if(typeof b=="number"&&(b&1073741823)===b){r=q.c +return q.mu(r==null?q.c=A.a8T():r,b)}else return q.dj(0,b)}, +dj(a,b){var s,r,q=this,p=q.d +if(p==null)p=q.d=A.a8T() +s=q.eI(b) +r=p[s] +if(r==null)p[s]=[b] +else{if(q.ek(r,b)>=0)return!1 +r.push(b)}++q.a +q.e=null +return!0}, +I(a,b){var s +for(s=J.am(b);s.t();)this.B(0,s.gC(s))}, +v(a,b){var s=this +if(typeof b=="string"&&b!=="__proto__")return s.iB(s.b,b) +else if(typeof b=="number"&&(b&1073741823)===b)return s.iB(s.c,b) +else return s.iI(0,b)}, +iI(a,b){var s,r,q,p=this,o=p.d +if(o==null)return!1 +s=p.eI(b) +r=o[s] +q=p.ek(r,b) +if(q<0)return!1;--p.a +p.e=null +r.splice(q,1) +if(0===r.length)delete o[s] +return!0}, +L(a){var s=this +if(s.a>0){s.b=s.c=s.d=s.e=null +s.a=0}}, +mx(){var s,r,q,p,o,n,m,l,k,j,i=this,h=i.e +if(h!=null)return h +h=A.aU(i.a,null,!1,t.z) +s=i.b +if(s!=null){r=Object.getOwnPropertyNames(s) +q=r.length +for(p=0,o=0;o=r.length){s.d=null +return!1}else{s.d=r[q] +s.c=q+1 +return!0}}} +A.ec.prototype={ +jy(){return new A.ec(A.m(this).h("ec<1>"))}, +iG(a){return new A.ec(a.h("ec<0>"))}, +mL(){return this.iG(t.z)}, +gX(a){var s=new A.km(this,this.r) +s.c=this.e +return s}, +gp(a){return this.a}, +gS(a){return this.a===0}, +gbv(a){return this.a!==0}, +q(a,b){var s,r +if(typeof b=="string"&&b!=="__proto__"){s=this.b +if(s==null)return!1 +return s[b]!=null}else if(typeof b=="number"&&(b&1073741823)===b){r=this.c +if(r==null)return!1 +return r[b]!=null}else return this.uK(b)}, +uK(a){var s=this.d +if(s==null)return!1 +return this.ek(s[this.eI(a)],a)>=0}, +P(a,b){var s=this,r=s.e,q=s.r +for(;r!=null;){b.$1(r.a) +if(q!==s.r)throw A.d(A.bj(s)) +r=r.b}}, +gG(a){var s=this.e +if(s==null)throw A.d(A.a5("No elements")) +return s.a}, +gO(a){var s=this.f +if(s==null)throw A.d(A.a5("No elements")) +return s.a}, +B(a,b){var s,r,q=this +if(typeof b=="string"&&b!=="__proto__"){s=q.b +return q.mu(s==null?q.b=A.a8U():s,b)}else if(typeof b=="number"&&(b&1073741823)===b){r=q.c +return q.mu(r==null?q.c=A.a8U():r,b)}else return q.dj(0,b)}, +dj(a,b){var s,r,q=this,p=q.d +if(p==null)p=q.d=A.a8U() +s=q.eI(b) +r=p[s] +if(r==null)p[s]=[q.uA(b)] +else{if(q.ek(r,b)>=0)return!1 +r.push(q.uA(b))}return!0}, +v(a,b){var s=this +if(typeof b=="string"&&b!=="__proto__")return s.iB(s.b,b) +else if(typeof b=="number"&&(b&1073741823)===b)return s.iB(s.c,b) +else return s.iI(0,b)}, +iI(a,b){var s,r,q,p,o=this,n=o.d +if(n==null)return!1 +s=o.eI(b) +r=n[s] +q=o.ek(r,b) +if(q<0)return!1 +p=r.splice(q,1)[0] +if(0===r.length)delete n[s] +o.BP(p) +return!0}, +RI(a,b){var s,r,q,p,o=this,n=o.e +for(;n!=null;n=r){s=n.a +r=n.b +q=o.r +p=a.$1(s) +if(q!==o.r)throw A.d(A.bj(o)) +if(!0===p)o.v(0,s)}}, +L(a){var s=this +if(s.a>0){s.b=s.c=s.d=s.e=s.f=null +s.a=0 +s.uz()}}, +mu(a,b){if(a[b]!=null)return!1 +a[b]=this.uA(b) +return!0}, +iB(a,b){var s +if(a==null)return!1 +s=a[b] +if(s==null)return!1 +this.BP(s) +delete a[b] +return!0}, +uz(){this.r=this.r+1&1073741823}, +uA(a){var s,r=this,q=new A.a2M(a) +if(r.e==null)r.e=r.f=q +else{s=r.f +s.toString +q.c=s +r.f=s.b=q}++r.a +r.uz() +return q}, +BP(a){var s=this,r=a.c,q=a.b +if(r==null)s.e=q +else r.b=q +if(q==null)s.f=r +else q.c=r;--s.a +s.uz()}, +eI(a){return J.p(a)&1073741823}, +ek(a,b){var s,r +if(a==null)return-1 +s=a.length +for(r=0;r=0;--s){r=this.i(a,s) +if(b.$1(r))return r +if(q!==this.gp(a))throw A.d(A.bj(a))}if(c!=null)return c.$0() +throw A.d(A.bJ())}, +bf(a,b){var s +if(this.gp(a)===0)return"" +s=A.a8B("",a,b) +return s.charCodeAt(0)==0?s:s}, +yh(a){return this.bf(a,"")}, +zN(a,b){return new A.dm(a,b.h("dm<0>"))}, +fG(a,b,c){return new A.aA(a,b,A.b9(a).h("@").ab(c).h("aA<1,2>"))}, +fU(a,b){return A.eG(a,b,null,A.b9(a).h("R.E"))}, +cL(a,b){var s,r,q,p,o=this +if(o.gS(a)){s=J.rD(0,A.b9(a).h("R.E")) +return s}r=o.i(a,0) +q=A.aU(o.gp(a),r,!0,A.b9(a).h("R.E")) +for(p=1;p").ab(b).h("bR<1,2>"))}, +dN(a){var s,r=this +if(r.gp(a)===0)throw A.d(A.bJ()) +s=r.i(a,r.gp(a)-1) +r.sp(a,r.gp(a)-1) +return s}, +T(a,b){var s=A.aw(a,!0,A.b9(a).h("R.E")) +B.b.I(s,b) +return s}, +bx(a,b,c){var s=this.gp(a) +A.d_(b,s,s,null,null) +return A.nH(this.oO(a,b,s),!0,A.b9(a).h("R.E"))}, +cQ(a,b){return this.bx(a,b,null)}, +oO(a,b,c){A.d_(b,c,this.gp(a),null,null) +return A.eG(a,b,c,A.b9(a).h("R.E"))}, +a_c(a,b,c,d){var s +A.d_(b,c,this.gp(a),null,null) +for(s=b;s").b(d)){r=e +q=d}else{q=J.a7f(d,e).cL(0,!1) +r=0}p=J.aC(q) +if(r+s>p.gp(q))throw A.d(A.abD()) +if(r=0;--o)this.l(a,b+o,p.i(q,r+o)) +else for(o=0;o"))}, +of(a,b,c,d){var s,r,q,p,o,n=A.y(c,d) +for(s=J.am(this.gbg(a)),r=A.b9(a).h("aq.V");s.t();){q=s.gC(s) +p=this.i(a,q) +o=b.$2(q,p==null?r.a(p):p) +n.l(0,o.a,o.b)}return n}, +FL(a,b){var s,r +for(s=b.gX(b);s.t();){r=s.gC(s) +this.l(a,r.a,r.b)}}, +zg(a,b){var s,r,q,p,o=A.b9(a),n=A.a([],o.h("v")) +for(s=J.am(this.gbg(a)),o=o.h("aq.V");s.t();){r=s.gC(s) +q=this.i(a,r) +if(b.$2(r,q==null?o.a(q):q))n.push(r)}for(o=n.length,p=0;p").ab(s.h("aq.V")).h("wk<1,2>"))}, +j(a){return A.a87(a)}, +$iay:1} +A.Uf.prototype={ +$1(a){var s=this.a,r=J.bc(s,a) +if(r==null)r=A.b9(s).h("aq.V").a(r) +s=A.b9(s) +return new A.bb(a,r,s.h("@").ab(s.h("aq.V")).h("bb<1,2>"))}, +$S(){return A.b9(this.a).h("bb(aq.K)")}} +A.Ug.prototype={ +$2(a,b){var s,r=this.a +if(!r.a)this.b.a+=", " +r.a=!1 +r=this.b +s=r.a+=A.h(a) +r.a=s+": " +r.a+=A.h(b)}, +$S:63} +A.wk.prototype={ +gp(a){return J.bh(this.a)}, +gS(a){return J.fZ(this.a)}, +gbv(a){return J.kL(this.a)}, +gG(a){var s=this.a,r=J.dp(s) +s=r.i(s,J.kK(r.gbg(s))) +return s==null?this.$ti.z[1].a(s):s}, +gO(a){var s=this.a,r=J.dp(s) +s=r.i(s,J.yH(r.gbg(s))) +return s==null?this.$ti.z[1].a(s):s}, +gX(a){var s=this.a +return new A.IQ(J.am(J.NQ(s)),s)}} +A.IQ.prototype={ +t(){var s=this,r=s.a +if(r.t()){s.c=J.bc(s.b,r.gC(r)) +return!0}s.c=null +return!1}, +gC(a){var s=this.c +return s==null?A.m(this).z[1].a(s):s}} +A.Md.prototype={ +l(a,b,c){throw A.d(A.T("Cannot modify unmodifiable map"))}, +v(a,b){throw A.d(A.T("Cannot modify unmodifiable map"))}, +bq(a,b,c){throw A.d(A.T("Cannot modify unmodifiable map"))}} +A.rZ.prototype={ +jJ(a,b,c){var s=this.a +return s.jJ(s,b,c)}, +i(a,b){return this.a.i(0,b)}, +l(a,b,c){this.a.l(0,b,c)}, +bq(a,b,c){return this.a.bq(0,b,c)}, +a3(a,b){return this.a.a3(0,b)}, +P(a,b){this.a.P(0,b)}, +gS(a){var s=this.a +return s.gS(s)}, +gbv(a){var s=this.a +return s.gbv(s)}, +gp(a){var s=this.a +return s.gp(s)}, +gbg(a){var s=this.a +return s.gbg(s)}, +v(a,b){return this.a.v(0,b)}, +j(a){var s=this.a +return s.j(s)}, +gaJ(a){var s=this.a +return s.gaJ(s)}, +ge7(a){var s=this.a +return s.ge7(s)}, +of(a,b,c,d){var s=this.a +return s.of(s,b,c,d)}, +$iay:1} +A.mg.prototype={ +jJ(a,b,c){var s=this.a +return new A.mg(s.jJ(s,b,c),b.h("@<0>").ab(c).h("mg<1,2>"))}} +A.vU.prototype={ +Ui(a,b){var s=this +s.b=b +s.a=a +if(a!=null)a.b=s +if(b!=null)b.a=s}, +Xa(){var s,r=this,q=r.a +if(q!=null)q.b=r.b +s=r.b +if(s!=null)s.a=q +r.a=r.b=null}} +A.vT.prototype={ +vS(a){var s,r,q=this +q.c=null +s=q.a +if(s!=null)s.b=q.b +r=q.b +if(r!=null)r.a=s +q.a=q.b=null +return q.d}, +ig(a){var s=this,r=s.c +if(r!=null)--r.b +s.c=null +s.Xa() +return s.d}, +ms(){return this}, +$ia7L:1, +gqV(){return this.d}} +A.mm.prototype={ +ms(){return null}, +vS(a){throw A.d(A.bJ())}, +gqV(){throw A.d(A.bJ())}} +A.l_.prototype={ +eT(a,b){return new A.i5(this,this.$ti.h("@<1>").ab(b).h("i5<1,2>"))}, +gp(a){return this.b}, +n5(a){var s=this.a +new A.vT(this,a,s.$ti.h("vT<1>")).Ui(s,s.b);++this.b}, +dN(a){var s=this.a.a.vS(0);--this.b +return s}, +gG(a){return this.a.b.gqV()}, +gO(a){return this.a.a.gqV()}, +gS(a){var s=this.a +return s.b===s}, +gX(a){return new A.HF(this,this.a.b)}, +j(a){return A.ny(this,"{","}")}, +$iP:1} +A.HF.prototype={ +t(){var s=this,r=s.b,q=r==null?null:r.ms() +if(q==null){s.a=s.b=s.c=null +return!1}r=s.a +if(r!=q.c)throw A.d(A.bj(r)) +s.c=q.d +s.b=q.b +return!0}, +gC(a){var s=this.c +return s==null?A.m(this).c.a(s):s}} +A.rS.prototype={ +eT(a,b){return new A.i5(this,this.$ti.h("@<1>").ab(b).h("i5<1,2>"))}, +gX(a){var s=this +return new A.IN(s,s.c,s.d,s.b)}, +gS(a){return this.b===this.c}, +gp(a){return(this.c-this.b&this.a.length-1)>>>0}, +gG(a){var s=this,r=s.b +if(r===s.c)throw A.d(A.bJ()) +r=s.a[r] +return r==null?s.$ti.c.a(r):r}, +gO(a){var s=this,r=s.b,q=s.c +if(r===q)throw A.d(A.bJ()) +r=s.a +r=r[(q-1&r.length-1)>>>0] +return r==null?s.$ti.c.a(r):r}, +aH(a,b){var s,r=this +A.akX(b,r.gp(r),r,null) +s=r.a +s=s[(r.b+b&s.length-1)>>>0] +return s==null?r.$ti.c.a(s):s}, +cL(a,b){var s,r,q,p,o,n,m=this,l=m.a.length-1,k=(m.c-m.b&l)>>>0 +if(k===0){s=J.rD(0,m.$ti.c) +return s}s=m.$ti.c +r=A.aU(k,m.gG(m),!0,s) +for(q=m.a,p=m.b,o=0;o>>0] +r[o]=n==null?s.a(n):n}return r}, +cK(a){return this.cL(a,!0)}, +I(a,b){var s,r,q,p,o,n,m,l,k=this,j=k.$ti +if(j.h("B<1>").b(b)){s=b.length +r=k.gp(k) +q=r+s +p=k.a +o=p.length +if(q>=o){n=A.aU(A.abO(q+(q>>>1)),null,!1,j.h("1?")) +k.c=k.XP(n) +k.a=n +k.b=0 +B.b.be(n,r,q,b,0) +k.c+=s}else{j=k.c +m=o-j +if(s>>0)s[p]=null +q.b=q.c=0;++q.d}}, +j(a){return A.ny(this,"{","}")}, +n5(a){var s=this,r=s.b,q=s.a +r=s.b=(r-1&q.length-1)>>>0 +q[r]=a +if(r===s.c)s.CM();++s.d}, +oz(){var s,r,q=this,p=q.b +if(p===q.c)throw A.d(A.bJ());++q.d +s=q.a +r=s[p] +if(r==null)r=q.$ti.c.a(r) +s[p]=null +q.b=(p+1&s.length-1)>>>0 +return r}, +dN(a){var s,r=this,q=r.b,p=r.c +if(q===p)throw A.d(A.bJ());++r.d +q=r.a +p=r.c=(p-1&q.length-1)>>>0 +s=q[p] +if(s==null)s=r.$ti.c.a(s) +q[p]=null +return s}, +dj(a,b){var s=this,r=s.a,q=s.c +r[q]=b +r=(q+1&r.length-1)>>>0 +s.c=r +if(s.b===r)s.CM();++s.d}, +CM(){var s=this,r=A.aU(s.a.length*2,null,!1,s.$ti.h("1?")),q=s.a,p=s.b,o=q.length-p +B.b.be(r,0,o,q,p) +B.b.be(r,o,o+s.b,s.a,0) +s.b=0 +s.c=s.a.length +s.a=r}, +XP(a){var s,r,q=this,p=q.b,o=q.c,n=q.a +if(p<=o){s=o-p +B.b.be(a,0,s,n,p) +return s}else{r=n.length-p +B.b.be(a,0,r,n,p) +B.b.be(a,r,r+q.c,q.a,0) +return q.c+r}}} +A.IN.prototype={ +gC(a){var s=this.e +return s==null?A.m(this).c.a(s):s}, +t(){var s,r=this,q=r.a +if(r.c!==q.d)A.a2(A.bj(q)) +s=r.d +if(s===r.b){r.e=null +return!1}q=q.a +r.e=q[s] +r.d=(s+1&q.length-1)>>>0 +return!0}} +A.hD.prototype={ +gS(a){return this.gp(this)===0}, +gbv(a){return this.gp(this)!==0}, +eT(a,b){return A.YL(this,null,A.m(this).c,b)}, +I(a,b){var s +for(s=J.am(b);s.t();)this.B(0,s.gC(s))}, +JI(a){var s,r +for(s=a.length,r=0;r").ab(c).h("l0<1,2>"))}, +j(a){return A.ny(this,"{","}")}, +iN(a,b){var s +for(s=this.gX(this);s.t();)if(b.$1(s.gC(s)))return!0 +return!1}, +fU(a,b){return A.ad5(this,b,A.m(this).c)}, +gG(a){var s=this.gX(this) +if(!s.t())throw A.d(A.bJ()) +return s.gC(s)}, +gO(a){var s,r=this.gX(this) +if(!r.t())throw A.d(A.bJ()) +do s=r.gC(r) +while(r.t()) +return s}, +aH(a,b){var s,r +A.dA(b,"index") +s=this.gX(this) +for(r=b;s.t();){if(r===0)return s.gC(s);--r}throw A.d(A.c5(b,b-r,this,null,"index"))}, +$iP:1, +$ij:1, +$ibr:1} +A.mr.prototype={ +eT(a,b){return A.YL(this,this.gpL(),A.m(this).c,b)}, +jU(a){var s,r,q=this.jy() +for(s=this.gX(this);s.t();){r=s.gC(s) +if(!a.q(0,r))q.B(0,r)}return q}, +o5(a,b){var s,r,q=this.jy() +for(s=this.gX(this);s.t();){r=s.gC(s) +if(b.q(0,r))q.B(0,r)}return q}, +hB(a){var s=this.jy() +s.I(0,this) +return s}} +A.Me.prototype={ +B(a,b){return A.a91()}, +I(a,b){return A.a91()}, +v(a,b){return A.a91()}} +A.cr.prototype={ +jy(){return A.fs(this.$ti.c)}, +iG(a){return A.fs(a)}, +mL(){return this.iG(t.z)}, +q(a,b){return J.dq(this.a,b)}, +gX(a){return J.am(J.NQ(this.a))}, +gp(a){return J.bh(this.a)}} +A.Lg.prototype={} +A.dX.prototype={} +A.dG.prototype={ +VX(a){var s=this,r=s.$ti +r=new A.dG(a,s.a,r.h("@<1>").ab(r.z[1]).h("dG<1,2>")) +r.b=s.b +r.c=s.c +return r}} +A.Lf.prototype={ +fl(a){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null,f=h.gcp() +if(f==null){h.uD(a,a) +return-1}s=h.guC() +for(r=g,q=f,p=r,o=p,n=o,m=n;!0;){r=s.$2(q.a,a) +if(r>0){l=q.b +if(l==null)break +r=s.$2(l.a,a) +if(r>0){q.b=l.c +l.c=q +k=l.b +if(k==null){q=l +break}q=l +l=k}if(m==null)n=q +else m.b=q +m=q +q=l}else{if(r<0){j=q.c +if(j==null)break +r=s.$2(j.a,a) +if(r<0){q.c=j.b +j.b=q +i=j.c +if(i==null){q=j +break}q=j +j=i}if(o==null)p=q +else o.c=q}else break +o=q +q=j}}if(o!=null){o.c=q.b +q.b=p}if(m!=null){m.b=q.c +q.c=n}if(h.gcp()!==q){h.scp(q);++h.c}return r}, +WP(a){var s,r,q=a.b +for(s=a;q!=null;s=q,q=r){s.b=q.c +q.c=s +r=q.b}return s}, +EI(a){var s,r,q=a.c +for(s=a;q!=null;s=q,q=r){s.c=q.b +q.b=s +r=q.c}return s}, +iI(a,b){var s,r,q,p,o=this +if(o.gcp()==null)return null +if(o.fl(b)!==0)return null +s=o.gcp() +r=s.b;--o.a +q=s.c +if(r==null)o.scp(q) +else{p=o.EI(r) +p.c=q +o.scp(p)}++o.b +return s}, +uh(a,b){var s,r=this;++r.a;++r.b +s=r.gcp() +if(s==null){r.scp(a) +return}if(b<0){a.b=s +a.c=s.c +s.c=null}else{a.c=s +a.b=s.b +s.b=null}r.scp(a)}, +gCs(){var s=this,r=s.gcp() +if(r==null)return null +s.scp(s.WP(r)) +return s.gcp()}, +gDk(){var s=this,r=s.gcp() +if(r==null)return null +s.scp(s.EI(r)) +return s.gcp()}, +my(a){return this.wv(a)&&this.fl(a)===0}, +uD(a,b){return this.guC().$2(a,b)}, +wv(a){return this.ga3h().$1(a)}} +A.uS.prototype={ +i(a,b){var s=this +if(!s.f.$1(b))return null +if(s.d!=null)if(s.fl(b)===0)return s.d.d +return null}, +v(a,b){var s +if(!this.f.$1(b))return null +s=this.iI(0,b) +if(s!=null)return s.d +return null}, +l(a,b,c){var s,r=this,q=r.fl(b) +if(q===0){r.d=r.d.VX(c);++r.c +return}s=r.$ti +r.uh(new A.dG(c,b,s.h("@<1>").ab(s.z[1]).h("dG<1,2>")),q)}, +bq(a,b,c){var s,r,q,p,o=this,n=o.fl(b) +if(n===0)return o.d.d +s=o.b +r=o.c +q=c.$0() +if(s!==o.b)throw A.d(A.bj(o)) +if(r!==o.c)n=o.fl(b) +p=o.$ti +o.uh(new A.dG(q,b,p.h("@<1>").ab(p.z[1]).h("dG<1,2>")),n) +return q}, +gS(a){return this.d==null}, +gbv(a){return this.d!=null}, +P(a,b){var s,r,q=this.$ti +q=q.h("@<1>").ab(q.z[1]) +s=new A.ms(this,A.a([],q.h("v>")),this.c,q.h("ms<1,2>")) +for(;s.t();){r=s.gC(s) +b.$2(r.a,r.b)}}, +gp(a){return this.a}, +a3(a,b){return this.my(b)}, +gbg(a){var s=this.$ti +return new A.iW(this,s.h("@<1>").ab(s.h("dG<1,2>")).h("iW<1,2>"))}, +gaJ(a){var s=this.$ti +return new A.mt(this,s.h("@<1>").ab(s.z[1]).h("mt<1,2>"))}, +ge7(a){var s=this.$ti +return new A.xr(this,s.h("@<1>").ab(s.z[1]).h("xr<1,2>"))}, +a_g(){if(this.d==null)return null +return this.gCs().a}, +IR(){if(this.d==null)return null +return this.gDk().a}, +a16(a){var s,r,q,p=this +if(p.d==null)return null +if(p.fl(a)<0)return p.d.a +s=p.d.b +if(s==null)return null +r=s.c +for(;r!=null;s=r,r=q)q=r.c +return s.a}, +a_h(a){var s,r,q,p=this +if(p.d==null)return null +if(p.fl(a)>0)return p.d.a +s=p.d.c +if(s==null)return null +r=s.b +for(;r!=null;s=r,r=q)q=r.b +return s.a}, +$iay:1, +uD(a,b){return this.e.$2(a,b)}, +wv(a){return this.f.$1(a)}, +gcp(){return this.d}, +guC(){return this.e}, +scp(a){return this.d=a}} +A.Z5.prototype={ +$1(a){return this.a.b(a)}, +$S:62} +A.hU.prototype={ +gC(a){var s=this.b +if(s.length===0){A.m(this).h("hU.T").a(null) +return null}return this.vg(B.b.gO(s))}, +VJ(a){var s,r,q=this.b +B.b.L(q) +s=this.a +s.fl(a) +r=s.gcp() +r.toString +q.push(r) +this.d=s.c}, +t(){var s,r,q=this,p=q.c,o=q.a,n=o.b +if(p!==n){if(p==null){q.c=n +s=o.gcp() +for(p=q.b;s!=null;){p.push(s) +s=s.b}return p.length!==0}throw A.d(A.bj(o))}p=q.b +if(p.length===0)return!1 +if(q.d!==o.c)q.VJ(B.b.gO(p).a) +s=B.b.gO(p) +r=s.c +if(r!=null){for(;r!=null;){p.push(r) +r=r.b}return!0}p.pop() +while(!0){if(!(p.length!==0&&B.b.gO(p).c===s))break +s=p.pop()}return p.length!==0}} +A.iW.prototype={ +gp(a){return this.a.a}, +gS(a){return this.a.a===0}, +gX(a){var s=this.a,r=this.$ti +return new A.iX(s,A.a([],r.h("v<2>")),s.c,r.h("@<1>").ab(r.z[1]).h("iX<1,2>"))}, +q(a,b){return this.a.my(b)}, +hB(a){var s=this.a,r=this.$ti,q=A.Z6(s.e,s.f,r.c) +q.a=s.a +q.d=q.C1(s.d,r.z[1]) +return q}} +A.mt.prototype={ +gp(a){return this.a.a}, +gS(a){return this.a.a===0}, +gX(a){var s=this.a,r=this.$ti +r=r.h("@<1>").ab(r.z[1]) +return new A.xv(s,A.a([],r.h("v>")),s.c,r.h("xv<1,2>"))}} +A.xr.prototype={ +gp(a){return this.a.a}, +gS(a){return this.a.a===0}, +gX(a){var s=this.a,r=this.$ti +r=r.h("@<1>").ab(r.z[1]) +return new A.ms(s,A.a([],r.h("v>")),s.c,r.h("ms<1,2>"))}} +A.iX.prototype={ +vg(a){return a.a}} +A.xv.prototype={ +vg(a){return a.d}} +A.ms.prototype={ +vg(a){var s=this.$ti +return new A.bb(a.a,a.d,s.h("@<1>").ab(s.z[1]).h("bb<1,2>"))}} +A.or.prototype={ +DB(a){return A.Z6(new A.Z8(this,a),this.f,a)}, +jy(){return this.DB(t.z)}, +eT(a,b){return A.YL(this,this.gUR(),this.$ti.c,b)}, +gX(a){var s=this.$ti +return new A.iX(this,A.a([],s.h("v>")),this.c,s.h("@<1>").ab(s.h("dX<1>")).h("iX<1,2>"))}, +gp(a){return this.a}, +gS(a){return this.d==null}, +gbv(a){return this.d!=null}, +gG(a){if(this.a===0)throw A.d(A.bJ()) +return this.gCs().a}, +gO(a){if(this.a===0)throw A.d(A.bJ()) +return this.gDk().a}, +q(a,b){return this.f.$1(b)&&this.fl(this.$ti.c.a(b))===0}, +B(a,b){return this.dj(0,b)}, +dj(a,b){var s=this.fl(b) +if(s===0)return!1 +this.uh(new A.dX(b,this.$ti.h("dX<1>")),s) +return!0}, +v(a,b){if(!this.f.$1(b))return!1 +return this.iI(0,this.$ti.c.a(b))!=null}, +I(a,b){var s,r +for(s=J.am(b.gdZ()),r=A.m(b),r=r.h("@<1>").ab(r.z[1]).z[1];s.t();)this.dj(0,r.a(s.gC(s)))}, +o5(a,b){var s,r=this,q=r.$ti,p=A.Z6(r.e,r.f,q.c) +for(q=new A.iX(r,A.a([],q.h("v>")),r.c,q.h("@<1>").ab(q.h("dX<1>")).h("iX<1,2>"));q.t();){s=q.gC(q) +if(b.q(0,s))p.dj(0,s)}return p}, +C1(a,b){var s +if(a==null)return null +s=new A.dX(a.a,this.$ti.h("dX<1>")) +new A.Z7(this,b).$2(a,s) +return s}, +hB(a){var s=this,r=s.$ti,q=A.Z6(s.e,s.f,r.c) +q.a=s.a +q.d=s.C1(s.d,r.h("dX<1>")) +return q}, +j(a){return A.ny(this,"{","}")}, +$iP:1, +$ibr:1, +uD(a,b){return this.e.$2(a,b)}, +wv(a){return this.f.$1(a)}, +gcp(){return this.d}, +guC(){return this.e}, +scp(a){return this.d=a}} +A.Z9.prototype={ +$1(a){return this.a.b(a)}, +$S:62} +A.Z8.prototype={ +$2(a,b){var s=this.a,r=s.$ti.c +r.a(a) +r.a(b) +return s.e.$2(a,b)}, +$S(){return this.b.h("o(0,0)")}} +A.Z7.prototype={ +$2(a,b){var s,r,q,p,o,n=this.a.$ti.h("dX<1>") +do{s=a.b +r=a.c +if(s!=null){q=new A.dX(s.a,n) +b.b=q +this.$2(s,q)}p=r!=null +if(p){o=new A.dX(r.a,n) +b.c=o +b=o +a=r}}while(p)}, +$S(){return this.a.$ti.ab(this.b).h("~(1,dX<2>)")}} +A.xs.prototype={} +A.xt.prototype={} +A.xu.prototype={} +A.xO.prototype={} +A.yd.prototype={} +A.IA.prototype={ +i(a,b){var s,r=this.b +if(r==null)return this.c.i(0,b) +else if(typeof b!="string")return null +else{s=r[b] +return typeof s=="undefined"?this.VC(b):s}}, +gp(a){return this.b==null?this.c.a:this.kF().length}, +gS(a){return this.gp(this)===0}, +gbv(a){return this.gp(this)>0}, +gbg(a){var s +if(this.b==null){s=this.c +return new A.aT(s,A.m(s).h("aT<1>"))}return new A.IB(this)}, +gaJ(a){var s,r=this +if(r.b==null){s=r.c +return s.gaJ(s)}return A.t_(r.kF(),new A.a2G(r),t.N,t.z)}, +l(a,b,c){var s,r,q=this +if(q.b==null)q.c.l(0,b,c) +else if(q.a3(0,b)){s=q.b +s[b]=c +r=q.a +if(r==null?s!=null:r!==s)r[b]=null}else q.Fz().l(0,b,c)}, +a3(a,b){if(this.b==null)return this.c.a3(0,b) +if(typeof b!="string")return!1 +return Object.prototype.hasOwnProperty.call(this.a,b)}, +bq(a,b,c){var s +if(this.a3(0,b))return this.i(0,b) +s=c.$0() +this.l(0,b,s) +return s}, +v(a,b){if(this.b!=null&&!this.a3(0,b))return null +return this.Fz().v(0,b)}, +P(a,b){var s,r,q,p,o=this +if(o.b==null)return o.c.P(0,b) +s=o.kF() +for(r=0;r=0){i=B.d.ah("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",h) +if(i===k)continue +k=i}else{if(h===-1){if(o<0){g=p==null?c:p.a.length +if(g==null)g=0 +o=g+(r-q) +n=r}++m +if(k===61)continue}k=i}if(h!==-2){if(p==null){p=new A.ch("") +g=p}else g=p +g.a+=B.d.am(a0,q,r) +g.a+=A.bv(k) +q=l +continue}}throw A.d(A.bY("Invalid base64 data",a0,r))}if(p!=null){g=p.a+=B.d.am(a0,q,a2) +f=g.length +if(o>=0)A.aas(a0,n,a2,o,m,f) +else{e=B.f.cv(f-1,4)+1 +if(e===1)throw A.d(A.bY(b,a0,a2)) +for(;e<4;){g+="=" +p.a=g;++e}}g=p.a +return B.d.lS(a0,a1,a2,g.charCodeAt(0)==0?g:g)}d=a2-a1 +if(o>=0)A.aas(a0,n,a2,o,m,d) +else{e=B.f.cv(d,4) +if(e===1)throw A.d(A.bY(b,a0,a2)) +if(e>1)a0=B.d.lS(a0,a2,a2,e===2?"==":"=")}return a0}} +A.Oq.prototype={} +A.A8.prototype={} +A.Ad.prototype={} +A.QP.prototype={} +A.rI.prototype={ +j(a){var s=A.l1(this.a) +return(this.b!=null?"Converting object to an encodable object failed:":"Converting object did not return an encodable object:")+" "+s}} +A.BZ.prototype={ +j(a){return"Cyclic error in JSON stringify"}} +A.TC.prototype={ +dq(a,b){var s=A.aq7(b,this.gZC().a) +return s}, +xA(a){var s=A.ao9(a,this.gxB().b,null) +return s}, +gxB(){return B.zN}, +gZC(){return B.zM}} +A.TE.prototype={} +A.TD.prototype={} +A.a2I.prototype={ +Kx(a){var s,r,q,p,o,n,m=a.length +for(s=this.c,r=0,q=0;q92){if(p>=55296){o=p&64512 +if(o===55296){n=q+1 +n=!(n=0&&(B.d.ah(a,o)&64512)===55296)}else o=!1 +else o=!0 +if(o){if(q>r)s.a+=B.d.am(a,r,q) +r=q+1 +s.a+=A.bv(92) +s.a+=A.bv(117) +s.a+=A.bv(100) +o=p>>>8&15 +s.a+=A.bv(o<10?48+o:87+o) +o=p>>>4&15 +s.a+=A.bv(o<10?48+o:87+o) +o=p&15 +s.a+=A.bv(o<10?48+o:87+o)}}continue}if(p<32){if(q>r)s.a+=B.d.am(a,r,q) +r=q+1 +s.a+=A.bv(92) +switch(p){case 8:s.a+=A.bv(98) +break +case 9:s.a+=A.bv(116) +break +case 10:s.a+=A.bv(110) +break +case 12:s.a+=A.bv(102) +break +case 13:s.a+=A.bv(114) +break +default:s.a+=A.bv(117) +s.a+=A.bv(48) +s.a+=A.bv(48) +o=p>>>4&15 +s.a+=A.bv(o<10?48+o:87+o) +o=p&15 +s.a+=A.bv(o<10?48+o:87+o) +break}}else if(p===34||p===92){if(q>r)s.a+=B.d.am(a,r,q) +r=q+1 +s.a+=A.bv(92) +s.a+=A.bv(p)}}if(r===0)s.a+=a +else if(r>>18|240 +q=o.b=p+1 +r[p]=s>>>12&63|128 +p=o.b=q+1 +r[q]=s>>>6&63|128 +o.b=p+1 +r[p]=s&63|128 +return!0}else{o.wz() +return!1}}, +RH(a,b,c){var s,r,q,p,o,n,m,l=this +if(b!==c&&(B.d.ah(a,c-1)&64512)===55296)--c +for(s=l.c,r=s.length,q=b;q=r)break +l.b=o+1 +s[o]=p}else{o=p&64512 +if(o===55296){if(l.b+4>r)break +n=q+1 +if(l.XO(p,B.d.a8(a,n)))q=n}else if(o===56320){if(l.b+3>r)break +l.wz()}else if(p<=2047){o=l.b +m=o+1 +if(m>=r)break +l.b=m +s[o]=p>>>6|192 +l.b=m+1 +s[m]=p&63|128}else{o=l.b +if(o+2>=r)break +m=l.b=o+1 +s[o]=p>>>12|224 +o=l.b=m+1 +s[m]=p>>>6&63|128 +l.b=o+1 +s[o]=p&63|128}}}return q}} +A.a_P.prototype={ +er(a){var s=this.a,r=A.anS(s,a,0,null) +if(r!=null)return r +return new A.a4O(s).Zc(a,0,null,!0)}} +A.a4O.prototype={ +Zc(a,b,c,d){var s,r,q,p,o,n=this,m=A.d_(b,c,J.bh(a),null,null) +if(b===m)return"" +if(t.uo.b(a)){s=a +r=0}else{s=A.aoP(a,b,m) +m-=b +r=b +b=0}q=n.uL(s,b,m,!0) +p=n.b +if((p&1)!==0){o=A.aoQ(p) +n.b=0 +throw A.d(A.bY(o,a,r+n.c))}return q}, +uL(a,b,c,d){var s,r,q=this +if(c-b>1000){s=B.f.cq(b+c,2) +r=q.uL(a,b,s,!1) +if((q.b&1)!==0)return r +return r+q.uL(a,s,c,d)}return q.ZB(a,b,c,d)}, +ZB(a,b,c,d){var s,r,q,p,o,n,m,l=this,k=65533,j=l.b,i=l.c,h=new A.ch(""),g=b+1,f=a[b] +$label0$0:for(s=l.a;!0;){for(;!0;g=p){r=B.d.a8("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFFFFFFFFFFFFFFFGGGGGGGGGGGGGGGGHHHHHHHHHHHHHHHHHHHHHHHHHHHIHHHJEEBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBKCCCCCCCCCCCCDCLONNNMEEEEEEEEEEE",f)&31 +i=j<=32?f&61694>>>r:(f&63|i<<6)>>>0 +j=B.d.a8(" \x000:XECCCCCN:lDb \x000:XECCCCCNvlDb \x000:XECCCCCN:lDb AAAAA\x00\x00\x00\x00\x00AAAAA00000AAAAA:::::AAAAAGG000AAAAA00KKKAAAAAG::::AAAAA:IIIIAAAAA000\x800AAAAA\x00\x00\x00\x00 AAAAA",j+r) +if(j===0){h.a+=A.bv(i) +if(g===c)break $label0$0 +break}else if((j&1)!==0){if(s)switch(j){case 69:case 67:h.a+=A.bv(k) +break +case 65:h.a+=A.bv(k);--g +break +default:q=h.a+=A.bv(k) +h.a=q+A.bv(k) +break}else{l.b=j +l.c=g-1 +return""}j=0}if(g===c)break $label0$0 +p=g+1 +f=a[g]}p=g+1 +f=a[g] +if(f<128){while(!0){if(!(p=128){o=n-1 +p=n +break}p=n}if(o-g<20)for(m=g;m32)if(s)h.a+=A.bv(k) +else{l.b=77 +l.c=c +return""}l.b=j +l.c=i +s=h.a +return s.charCodeAt(0)==0?s:s}} +A.V7.prototype={ +$2(a,b){var s=this.b,r=this.a,q=s.a+=r.a +q+=a.a +s.a=q +s.a=q+": " +s.a+=A.l1(b) +r.a=", "}, +$S:188} +A.el.prototype={ +B(a,b){return A.ajx(this.a+B.f.cq(b.a,1000),this.b)}, +k(a,b){if(b==null)return!1 +return b instanceof A.el&&this.a===b.a&&this.b===b.b}, +aV(a,b){return B.f.aV(this.a,b.a)}, +gu(a){var s=this.a +return(s^B.f.fk(s,30))&1073741823}, +j(a){var s=this,r=A.ajz(A.amm(s)),q=A.Ar(A.amk(s)),p=A.Ar(A.amg(s)),o=A.Ar(A.amh(s)),n=A.Ar(A.amj(s)),m=A.Ar(A.aml(s)),l=A.ajA(A.ami(s)),k=r+"-"+q +if(s.b)return k+"-"+p+" "+o+":"+n+":"+m+"."+l+"Z" +else return k+"-"+p+" "+o+":"+n+":"+m+"."+l}, +$ibX:1} +A.aQ.prototype={ +T(a,b){return new A.aQ(this.a+b.a)}, +a4(a,b){return new A.aQ(this.a-b.a)}, +R(a,b){return new A.aQ(B.c.bd(this.a*b))}, +k(a,b){if(b==null)return!1 +return b instanceof A.aQ&&this.a===b.a}, +gu(a){return B.f.gu(this.a)}, +aV(a,b){return B.f.aV(this.a,b.a)}, +j(a){var s,r,q,p,o,n=this.a,m=B.f.cq(n,36e8),l=n%36e8 +if(n<0){m=0-m +n=0-l +s="-"}else{n=l +s=""}r=B.f.cq(n,6e7) +n%=6e7 +q=r<10?"0":"" +p=B.f.cq(n,1e6) +o=p<10?"0":"" +return s+m+":"+q+r+":"+o+p+"."+B.d.lK(B.f.j(n%1e6),6,"0")}, +$ibX:1} +A.a1D.prototype={ +j(a){return this.D()}} +A.bm.prototype={ +gmg(){return A.aJ(this.$thrownJsError)}} +A.kN.prototype={ +j(a){var s=this.a +if(s!=null)return"Assertion failed: "+A.l1(s) +return"Assertion failed"}, +gJ3(a){return this.a}} +A.iH.prototype={} +A.fb.prototype={ +gv0(){return"Invalid argument"+(!this.a?"(s)":"")}, +gv_(){return""}, +j(a){var s=this,r=s.c,q=r==null?"":" ("+r+")",p=s.d,o=p==null?"":": "+A.h(p),n=s.gv0()+q+o +if(!s.a)return n +return n+s.gv_()+": "+A.l1(s.gy9())}, +gy9(){return this.b}} +A.tS.prototype={ +gy9(){return this.b}, +gv0(){return"RangeError"}, +gv_(){var s,r=this.e,q=this.f +if(r==null)s=q!=null?": Not less than or equal to "+A.h(q):"" +else if(q==null)s=": Not greater than or equal to "+A.h(r) +else if(q>r)s=": Not in inclusive range "+A.h(r)+".."+A.h(q) +else s=qe.length +else s=!1 +if(s)f=null +if(f==null){if(e.length>78)e=B.d.am(e,0,75)+"..." +return g+"\n"+e}for(r=1,q=0,p=!1,o=0;o1?g+(" (at line "+r+", character "+(f-q+1)+")\n"):g+(" (at character "+(f+1)+")\n") +m=e.length +for(o=f;o78)if(f-q<75){l=q+75 +k=q +j="" +i="..."}else{if(m-f<75){k=m-75 +l=m +i=""}else{k=f-36 +l=f+36 +i="..."}j="..."}else{l=m +k=q +j="" +i=""}return g+j+B.d.am(e,k,l)+i+"\n"+B.d.R(" ",f-k+j.length)+"^\n"}else return f!=null?g+(" (at offset "+A.h(f)+")"):g}, +$icX:1} +A.j.prototype={ +eT(a,b){return A.bt(this,A.b9(this).h("j.E"),b)}, +xP(a,b){var s=this,r=A.b9(s) +if(r.h("P").b(s))return A.abk(s,b,r.h("j.E")) +return new A.ih(s,b,r.h("ih"))}, +fG(a,b,c){return A.t_(this,b,A.b9(this).h("j.E"),c)}, +hD(a,b){return new A.b2(this,b,A.b9(this).h("b2"))}, +zN(a,b){return new A.dm(this,b.h("dm<0>"))}, +q(a,b){var s +for(s=this.gX(this);s.t();)if(J.e(s.gC(s),b))return!0 +return!1}, +P(a,b){var s +for(s=this.gX(this);s.t();)b.$1(s.gC(s))}, +bf(a,b){var s,r,q=this.gX(this) +if(!q.t())return"" +s=J.dr(q.gC(q)) +if(!q.t())return s +if(b.length===0){r=s +do r+=J.dr(q.gC(q)) +while(q.t())}else{r=s +do r=r+b+J.dr(q.gC(q)) +while(q.t())}return r.charCodeAt(0)==0?r:r}, +yh(a){return this.bf(a,"")}, +iN(a,b){var s +for(s=this.gX(this);s.t();)if(b.$1(s.gC(s)))return!0 +return!1}, +cL(a,b){return A.aw(this,b,A.b9(this).h("j.E"))}, +cK(a){return this.cL(a,!0)}, +hB(a){return A.hq(this,A.b9(this).h("j.E"))}, +gp(a){var s,r=this.gX(this) +for(s=0;r.t();)++s +return s}, +gS(a){return!this.gX(this).t()}, +gbv(a){return!this.gS(this)}, +zl(a,b){return A.anp(this,b,A.b9(this).h("j.E"))}, +fU(a,b){return A.ad5(this,b,A.b9(this).h("j.E"))}, +gG(a){var s=this.gX(this) +if(!s.t())throw A.d(A.bJ()) +return s.gC(s)}, +gO(a){var s,r=this.gX(this) +if(!r.t())throw A.d(A.bJ()) +do s=r.gC(r) +while(r.t()) +return s}, +aH(a,b){var s,r +A.dA(b,"index") +s=this.gX(this) +for(r=b;s.t();){if(r===0)return s.gC(s);--r}throw A.d(A.c5(b,b-r,this,null,"index"))}, +j(a){return A.abF(this,"(",")")}} +A.bb.prototype={ +j(a){return"MapEntry("+A.h(this.a)+": "+A.h(this.b)+")"}} +A.aM.prototype={ +gu(a){return A.E.prototype.gu.call(this,this)}, +j(a){return"null"}} +A.E.prototype={$iE:1, +k(a,b){return this===b}, +gu(a){return A.fy(this)}, +j(a){return"Instance of '"+A.Wa(this)+"'"}, +E(a,b){throw A.d(A.ac8(this,b))}, +gcc(a){return A.w(this)}, +toString(){return this.j(this)}, +$0(){return this.E(this,A.I("$0","$0",0,[],[],0))}, +$1(a){return this.E(this,A.I("$1","$1",0,[a],[],0))}, +$2(a,b){return this.E(this,A.I("$2","$2",0,[a,b],[],0))}, +$1$2$onError(a,b,c){return this.E(this,A.I("$1$2$onError","$1$2$onError",0,[a,b,c],["onError"],1))}, +$3(a,b,c){return this.E(this,A.I("$3","$3",0,[a,b,c],[],0))}, +$4(a,b,c,d){return this.E(this,A.I("$4","$4",0,[a,b,c,d],[],0))}, +$1$1(a,b){return this.E(this,A.I("$1$1","$1$1",0,[a,b],[],1))}, +$1$hostElementAttributes(a){return this.E(this,A.I("$1$hostElementAttributes","$1$hostElementAttributes",0,[a],["hostElementAttributes"],0))}, +$1$highContrast(a){return this.E(this,A.I("$1$highContrast","$1$highContrast",0,[a],["highContrast"],0))}, +$1$accessibilityFeatures(a){return this.E(this,A.I("$1$accessibilityFeatures","$1$accessibilityFeatures",0,[a],["accessibilityFeatures"],0))}, +$1$locales(a){return this.E(this,A.I("$1$locales","$1$locales",0,[a],["locales"],0))}, +$1$textScaleFactor(a){return this.E(this,A.I("$1$textScaleFactor","$1$textScaleFactor",0,[a],["textScaleFactor"],0))}, +$1$platformBrightness(a){return this.E(this,A.I("$1$platformBrightness","$1$platformBrightness",0,[a],["platformBrightness"],0))}, +$12$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$scale$signalKind$timeStamp(a,b,c,d,e,f,g,h,i,j,k,l){return this.E(this,A.I("$12$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$scale$signalKind$timeStamp","$12$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$scale$signalKind$timeStamp",0,[a,b,c,d,e,f,g,h,i,j,k,l],["buttons","change","device","kind","physicalX","physicalY","pressure","pressureMax","scale","signalKind","timeStamp"],0))}, +$13$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$scrollDeltaX$scrollDeltaY$signalKind$timeStamp(a,b,c,d,e,f,g,h,i,j,k,l,m){return this.E(this,A.I("$13$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$scrollDeltaX$scrollDeltaY$signalKind$timeStamp","$13$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$scrollDeltaX$scrollDeltaY$signalKind$timeStamp",0,[a,b,c,d,e,f,g,h,i,j,k,l,m],["buttons","change","device","kind","physicalX","physicalY","pressure","pressureMax","scrollDeltaX","scrollDeltaY","signalKind","timeStamp"],0))}, +$11$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$signalKind$timeStamp(a,b,c,d,e,f,g,h,i,j,k){return this.E(this,A.I("$11$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$signalKind$timeStamp","$11$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$signalKind$timeStamp",0,[a,b,c,d,e,f,g,h,i,j,k],["buttons","change","device","kind","physicalX","physicalY","pressure","pressureMax","signalKind","timeStamp"],0))}, +$10$buttons$change$device$physicalX$physicalY$pressure$pressureMax$signalKind$timeStamp(a,b,c,d,e,f,g,h,i,j){return this.E(this,A.I("$10$buttons$change$device$physicalX$physicalY$pressure$pressureMax$signalKind$timeStamp","$10$buttons$change$device$physicalX$physicalY$pressure$pressureMax$signalKind$timeStamp",0,[a,b,c,d,e,f,g,h,i,j],["buttons","change","device","physicalX","physicalY","pressure","pressureMax","signalKind","timeStamp"],0))}, +$4$checkModifiers(a,b,c,d){return this.E(this,A.I("$4$checkModifiers","$4$checkModifiers",0,[a,b,c,d],["checkModifiers"],0))}, +$12$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$signalKind$tilt$timeStamp(a,b,c,d,e,f,g,h,i,j,k,l){return this.E(this,A.I("$12$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$signalKind$tilt$timeStamp","$12$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$signalKind$tilt$timeStamp",0,[a,b,c,d,e,f,g,h,i,j,k,l],["buttons","change","device","kind","physicalX","physicalY","pressure","pressureMax","signalKind","tilt","timeStamp"],0))}, +$1$0(a){return this.E(this,A.I("$1$0","$1$0",0,[a],[],1))}, +$1$accessibleNavigation(a){return this.E(this,A.I("$1$accessibleNavigation","$1$accessibleNavigation",0,[a],["accessibleNavigation"],0))}, +$1$semanticsEnabled(a){return this.E(this,A.I("$1$semanticsEnabled","$1$semanticsEnabled",0,[a],["semanticsEnabled"],0))}, +$4$cancelOnError$onDone$onError(a,b,c,d){return this.E(this,A.I("$4$cancelOnError$onDone$onError","$4$cancelOnError$onDone$onError",0,[a,b,c,d],["cancelOnError","onDone","onError"],0))}, +$1$growable(a){return this.E(this,A.I("$1$growable","$1$growable",0,[a],["growable"],0))}, +$2$path(a,b){return this.E(this,A.I("$2$path","$2$path",0,[a,b],["path"],0))}, +$2$priority$scheduler(a,b){return this.E(this,A.I("$2$priority$scheduler","$2$priority$scheduler",0,[a,b],["priority","scheduler"],0))}, +$3$replace$state(a,b,c){return this.E(this,A.I("$3$replace$state","$3$replace$state",0,[a,b,c],["replace","state"],0))}, +$3$onAction$onChange(a,b,c){return this.E(this,A.I("$3$onAction$onChange","$3$onAction$onChange",0,[a,b,c],["onAction","onChange"],0))}, +$2$position(a,b){return this.E(this,A.I("$2$position","$2$position",0,[a,b],["position"],0))}, +$1$style(a){return this.E(this,A.I("$1$style","$1$style",0,[a],["style"],0))}, +$21$background$color$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontVariations$fontWeight$foreground$height$leadingDistribution$letterSpacing$locale$shadows$textBaseline$wordSpacing(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){return this.E(this,A.I("$21$background$color$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontVariations$fontWeight$foreground$height$leadingDistribution$letterSpacing$locale$shadows$textBaseline$wordSpacing","$21$background$color$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontVariations$fontWeight$foreground$height$leadingDistribution$letterSpacing$locale$shadows$textBaseline$wordSpacing",0,[a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1],["background","color","decoration","decorationColor","decorationStyle","decorationThickness","fontFamily","fontFamilyFallback","fontFeatures","fontSize","fontStyle","fontVariations","fontWeight","foreground","height","leadingDistribution","letterSpacing","locale","shadows","textBaseline","wordSpacing"],0))}, +$12$ellipsis$fontFamily$fontSize$fontStyle$fontWeight$height$locale$maxLines$strutStyle$textAlign$textDirection$textHeightBehavior(a,b,c,d,e,f,g,h,i,j,k,l){return this.E(this,A.I("$12$ellipsis$fontFamily$fontSize$fontStyle$fontWeight$height$locale$maxLines$strutStyle$textAlign$textDirection$textHeightBehavior","$12$ellipsis$fontFamily$fontSize$fontStyle$fontWeight$height$locale$maxLines$strutStyle$textAlign$textDirection$textHeightBehavior",0,[a,b,c,d,e,f,g,h,i,j,k,l],["ellipsis","fontFamily","fontSize","fontStyle","fontWeight","height","locale","maxLines","strutStyle","textAlign","textDirection","textHeightBehavior"],0))}, +$1$range(a){return this.E(this,A.I("$1$range","$1$range",0,[a],["range"],0))}, +$1$paragraphWidth(a){return this.E(this,A.I("$1$paragraphWidth","$1$paragraphWidth",0,[a],["paragraphWidth"],0))}, +$4$boxHeightStyle$boxWidthStyle(a,b,c,d){return this.E(this,A.I("$4$boxHeightStyle$boxWidthStyle","$4$boxHeightStyle$boxWidthStyle",0,[a,b,c,d],["boxHeightStyle","boxWidthStyle"],0))}, +$2$end$start(a,b){return this.E(this,A.I("$2$end$start","$2$end$start",0,[a,b],["end","start"],0))}, +$3$boxHeightStyle(a,b,c){return this.E(this,A.I("$3$boxHeightStyle","$3$boxHeightStyle",0,[a,b,c],["boxHeightStyle"],0))}, +$2$aspect(a,b){return this.E(this,A.I("$2$aspect","$2$aspect",0,[a,b],["aspect"],0))}, +$8$removeBottomInset$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(a,b,c,d,e,f,g,h){return this.E(this,A.I("$8$removeBottomInset$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding","$8$removeBottomInset$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding",0,[a,b,c,d,e,f,g,h],["removeBottomInset","removeBottomPadding","removeLeftPadding","removeRightPadding","removeTopPadding"],0))}, +$7$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(a,b,c,d,e,f,g){return this.E(this,A.I("$7$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding","$7$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding",0,[a,b,c,d,e,f,g],["removeBottomPadding","removeLeftPadding","removeRightPadding","removeTopPadding"],0))}, +$8$maintainBottomViewPadding$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(a,b,c,d,e,f,g,h){return this.E(this,A.I("$8$maintainBottomViewPadding$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding","$8$maintainBottomViewPadding$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding",0,[a,b,c,d,e,f,g,h],["maintainBottomViewPadding","removeBottomPadding","removeLeftPadding","removeRightPadding","removeTopPadding"],0))}, +$1$bottom(a){return this.E(this,A.I("$1$bottom","$1$bottom",0,[a],["bottom"],0))}, +$3$debugReport(a,b,c){return this.E(this,A.I("$3$debugReport","$3$debugReport",0,[a,b,c],["debugReport"],0))}, +$3$cancel$down$reason(a,b,c){return this.E(this,A.I("$3$cancel$down$reason","$3$cancel$down$reason",0,[a,b,c],["cancel","down","reason"],0))}, +$2$down$up(a,b){return this.E(this,A.I("$2$down$up","$2$down$up",0,[a,b],["down","up"],0))}, +$1$down(a){return this.E(this,A.I("$1$down","$1$down",0,[a],["down"],0))}, +$2$reversed(a,b){return this.E(this,A.I("$2$reversed","$2$reversed",0,[a,b],["reversed"],0))}, +$1$floatingActionButtonScale(a){return this.E(this,A.I("$1$floatingActionButtonScale","$1$floatingActionButtonScale",0,[a],["floatingActionButtonScale"],0))}, +$1$padding(a){return this.E(this,A.I("$1$padding","$1$padding",0,[a],["padding"],0))}, +$2$viewInsets$viewPadding(a,b){return this.E(this,A.I("$2$viewInsets$viewPadding","$2$viewInsets$viewPadding",0,[a,b],["viewInsets","viewPadding"],0))}, +$2$padding$viewPadding(a,b){return this.E(this,A.I("$2$padding$viewPadding","$2$padding$viewPadding",0,[a,b],["padding","viewPadding"],0))}, +$3$clockwise$radius(a,b,c){return this.E(this,A.I("$3$clockwise$radius","$3$clockwise$radius",0,[a,b,c],["clockwise","radius"],0))}, +$1$floatingActionButtonArea(a){return this.E(this,A.I("$1$floatingActionButtonArea","$1$floatingActionButtonArea",0,[a],["floatingActionButtonArea"],0))}, +$8$color$fill$grade$opacity$opticalSize$shadows$size$weight(a,b,c,d,e,f,g,h){return this.E(this,A.I("$8$color$fill$grade$opacity$opticalSize$shadows$size$weight","$8$color$fill$grade$opacity$opticalSize$shadows$size$weight",0,[a,b,c,d,e,f,g,h],["color","fill","grade","opacity","opticalSize","shadows","size","weight"],0))}, +$1$findFirstFocus(a){return this.E(this,A.I("$1$findFirstFocus","$1$findFirstFocus",0,[a],["findFirstFocus"],0))}, +$2$value(a,b){return this.E(this,A.I("$2$value","$2$value",0,[a,b],["value"],0))}, +$1$details(a){return this.E(this,A.I("$1$details","$1$details",0,[a],["details"],0))}, +$11$borderRadius$color$containedInkWell$controller$customBorder$onRemoved$position$radius$rectCallback$referenceBox$textDirection(a,b,c,d,e,f,g,h,i,j,k){return this.E(this,A.I("$11$borderRadius$color$containedInkWell$controller$customBorder$onRemoved$position$radius$rectCallback$referenceBox$textDirection","$11$borderRadius$color$containedInkWell$controller$customBorder$onRemoved$position$radius$rectCallback$referenceBox$textDirection",0,[a,b,c,d,e,f,g,h,i,j,k],["borderRadius","color","containedInkWell","controller","customBorder","onRemoved","position","radius","rectCallback","referenceBox","textDirection"],0))}, +$1$context(a){return this.E(this,A.I("$1$context","$1$context",0,[a],["context"],0))}, +$2$maxWidth$minWidth(a,b){return this.E(this,A.I("$2$maxWidth$minWidth","$2$maxWidth$minWidth",0,[a,b],["maxWidth","minWidth"],0))}, +$2$maxHeight$minHeight(a,b){return this.E(this,A.I("$2$maxHeight$minHeight","$2$maxHeight$minHeight",0,[a,b],["maxHeight","minHeight"],0))}, +$1$color(a){return this.E(this,A.I("$1$color","$1$color",0,[a],["color"],0))}, +$1$side(a){return this.E(this,A.I("$1$side","$1$side",0,[a],["side"],0))}, +$2$color$fontSize(a,b){return this.E(this,A.I("$2$color$fontSize","$2$color$fontSize",0,[a,b],["color","fontSize"],0))}, +$2$minHeight$minWidth(a,b){return this.E(this,A.I("$2$minHeight$minWidth","$2$minHeight$minWidth",0,[a,b],["minHeight","minWidth"],0))}, +$3$foregroundColor$iconSize$overlayColor(a,b,c){return this.E(this,A.I("$3$foregroundColor$iconSize$overlayColor","$3$foregroundColor$iconSize$overlayColor",0,[a,b,c],["foregroundColor","iconSize","overlayColor"],0))}, +$2$bottom$top(a,b){return this.E(this,A.I("$2$bottom$top","$2$bottom$top",0,[a,b],["bottom","top"],0))}, +$2$left$right(a,b){return this.E(this,A.I("$2$left$right","$2$left$right",0,[a,b],["left","right"],0))}, +$2$after(a,b){return this.E(this,A.I("$2$after","$2$after",0,[a,b],["after"],0))}, +$2$hitTest$paintTransform(a,b){return this.E(this,A.I("$2$hitTest$paintTransform","$2$hitTest$paintTransform",0,[a,b],["hitTest","paintTransform"],0))}, +$3$crossAxisPosition$mainAxisPosition(a,b,c){return this.E(this,A.I("$3$crossAxisPosition$mainAxisPosition","$3$crossAxisPosition$mainAxisPosition",0,[a,b,c],["crossAxisPosition","mainAxisPosition"],0))}, +$2$hitTest$paintOffset(a,b){return this.E(this,A.I("$2$hitTest$paintOffset","$2$hitTest$paintOffset",0,[a,b],["hitTest","paintOffset"],0))}, +$3$context$exception$stack(a,b,c){return this.E(this,A.I("$3$context$exception$stack","$3$context$exception$stack",0,[a,b,c],["context","exception","stack"],0))}, +$2$decodeDeprecated(a,b){return this.E(this,A.I("$2$decodeDeprecated","$2$decodeDeprecated",0,[a,b],["decodeDeprecated"],0))}, +$4$allowUpscaling$targetHeight$targetWidth(a,b,c,d){return this.E(this,A.I("$4$allowUpscaling$targetHeight$targetWidth","$4$allowUpscaling$targetHeight$targetWidth",0,[a,b,c,d],["allowUpscaling","targetHeight","targetWidth"],0))}, +$2$decodeBufferDeprecated(a,b){return this.E(this,A.I("$2$decodeBufferDeprecated","$2$decodeBufferDeprecated",0,[a,b],["decodeBufferDeprecated"],0))}, +$2$decode(a,b){return this.E(this,A.I("$2$decode","$2$decode",0,[a,b],["decode"],0))}, +$2$textDirection(a,b){return this.E(this,A.I("$2$textDirection","$2$textDirection",0,[a,b],["textDirection"],0))}, +$3$textDirection(a,b,c){return this.E(this,A.I("$3$textDirection","$3$textDirection",0,[a,b,c],["textDirection"],0))}, +$1$immediately(a){return this.E(this,A.I("$1$immediately","$1$immediately",0,[a],["immediately"],0))}, +$1$2$arguments(a,b,c){return this.E(this,A.I("$1$2$arguments","$1$2$arguments",0,[a,b,c],["arguments"],1))}, +$2$1(a,b,c){return this.E(this,A.I("$2$1","$2$1",0,[a,b,c],[],2))}, +$5(a,b,c,d,e){return this.E(this,A.I("$5","$5",0,[a,b,c,d,e],[],0))}, +$1$reversed(a){return this.E(this,A.I("$1$reversed","$1$reversed",0,[a],["reversed"],0))}, +$1$2(a,b,c){return this.E(this,A.I("$1$2","$1$2",0,[a,b,c],[],1))}, +$2$ignoreCurrentFocus(a,b){return this.E(this,A.I("$2$ignoreCurrentFocus","$2$ignoreCurrentFocus",0,[a,b],["ignoreCurrentFocus"],0))}, +$1$letterSpacing(a){return this.E(this,A.I("$1$letterSpacing","$1$letterSpacing",0,[a],["letterSpacing"],0))}, +$1$5(a,b,c,d,e,f){return this.E(this,A.I("$1$5","$1$5",0,[a,b,c,d,e,f],[],1))}, +$3$bodyColor$decorationColor$displayColor(a,b,c){return this.E(this,A.I("$3$bodyColor$decorationColor$displayColor","$3$bodyColor$decorationColor$displayColor",0,[a,b,c],["bodyColor","decorationColor","displayColor"],0))}, +$1$direction(a){return this.E(this,A.I("$1$direction","$1$direction",0,[a],["direction"],0))}, +$3$code$details$message(a,b,c){return this.E(this,A.I("$3$code$details$message","$3$code$details$message",0,[a,b,c],["code","details","message"],0))}, +$2$code$message(a,b){return this.E(this,A.I("$2$code$message","$2$code$message",0,[a,b],["code","message"],0))}, +$5$elevationAdjustment$parentPaintClipRect$parentSemanticsClipRect$result$siblingNodes(a,b,c,d,e){return this.E(this,A.I("$5$elevationAdjustment$parentPaintClipRect$parentSemanticsClipRect$result$siblingNodes","$5$elevationAdjustment$parentPaintClipRect$parentSemanticsClipRect$result$siblingNodes",0,[a,b,c,d,e],["elevationAdjustment","parentPaintClipRect","parentSemanticsClipRect","result","siblingNodes"],0))}, +$2$0(a,b){return this.E(this,A.I("$2$0","$2$0",0,[a,b],[],2))}, +$1$config(a){return this.E(this,A.I("$1$config","$1$config",0,[a],["config"],0))}, +$2$descendant$rect(a,b){return this.E(this,A.I("$2$descendant$rect","$2$descendant$rect",0,[a,b],["descendant","rect"],0))}, +$4$curve$descendant$duration$rect(a,b,c,d){return this.E(this,A.I("$4$curve$descendant$duration$rect","$4$curve$descendant$duration$rect",0,[a,b,c,d],["curve","descendant","duration","rect"],0))}, +$2$ignoreRasterCache(a,b){return this.E(this,A.I("$2$ignoreRasterCache","$2$ignoreRasterCache",0,[a,b],["ignoreRasterCache"],0))}, +$1$3$onlyFirst(a,b,c,d){return this.E(this,A.I("$1$3$onlyFirst","$1$3$onlyFirst",0,[a,b,c,d],["onlyFirst"],1))}, +$1$includeChildren(a){return this.E(this,A.I("$1$includeChildren","$1$includeChildren",0,[a],["includeChildren"],0))}, +$1$oldLayer(a){return this.E(this,A.I("$1$oldLayer","$1$oldLayer",0,[a],["oldLayer"],0))}, +$3$oldLayer(a,b,c){return this.E(this,A.I("$3$oldLayer","$3$oldLayer",0,[a,b,c],["oldLayer"],0))}, +$3$offset$oldLayer(a,b,c){return this.E(this,A.I("$3$offset$oldLayer","$3$offset$oldLayer",0,[a,b,c],["offset","oldLayer"],0))}, +$2$oldLayer(a,b){return this.E(this,A.I("$2$oldLayer","$2$oldLayer",0,[a,b],["oldLayer"],0))}, +$4$isComplexHint$willChangeHint(a,b,c,d){return this.E(this,A.I("$4$isComplexHint$willChangeHint","$4$isComplexHint$willChangeHint",0,[a,b,c,d],["isComplexHint","willChangeHint"],0))}, +$3$clipBehavior$oldLayer(a,b,c){return this.E(this,A.I("$3$clipBehavior$oldLayer","$3$clipBehavior$oldLayer",0,[a,b,c],["clipBehavior","oldLayer"],0))}, +$2$doAntiAlias(a,b){return this.E(this,A.I("$2$doAntiAlias","$2$doAntiAlias",0,[a,b],["doAntiAlias"],0))}, +$5$borderRadius$shape$textDirection(a,b,c,d,e){return this.E(this,A.I("$5$borderRadius$shape$textDirection","$5$borderRadius$shape$textDirection",0,[a,b,c,d,e],["borderRadius","shape","textDirection"],0))}, +$4$in1$in2$operator$result(a,b,c,d){return this.E(this,A.I("$4$in1$in2$operator$result","$4$in1$in2$operator$result",0,[a,b,c,d],["in1","in2","operator","result"],0))}, +$1$maxHeight(a){return this.E(this,A.I("$1$maxHeight","$1$maxHeight",0,[a],["maxHeight"],0))}, +$2$parentUsesSize(a,b){return this.E(this,A.I("$2$parentUsesSize","$2$parentUsesSize",0,[a,b],["parentUsesSize"],0))}, +$1$width(a){return this.E(this,A.I("$1$width","$1$width",0,[a],["width"],0))}, +$1$height(a){return this.E(this,A.I("$1$height","$1$height",0,[a],["height"],0))}, +$4$isScrolling$newPosition$oldPosition$velocity(a,b,c,d){return this.E(this,A.I("$4$isScrolling$newPosition$oldPosition$velocity","$4$isScrolling$newPosition$oldPosition$velocity",0,[a,b,c,d],["isScrolling","newPosition","oldPosition","velocity"],0))}, +$1$maxWidth(a){return this.E(this,A.I("$1$maxWidth","$1$maxWidth",0,[a],["maxWidth"],0))}, +$2$bottomNavigationBarTop$floatingActionButtonArea(a,b){return this.E(this,A.I("$2$bottomNavigationBarTop$floatingActionButtonArea","$2$bottomNavigationBarTop$floatingActionButtonArea",0,[a,b],["bottomNavigationBarTop","floatingActionButtonArea"],0))}, +$6(a,b,c,d,e,f){return this.E(this,A.I("$6","$6",0,[a,b,c,d,e,f],[],0))}, +i(a,b){return this.E(a,A.I("i","i",0,[b],[],0))}, +zv(){return this.E(this,A.I("zv","zv",0,[],[],0))}, +a4(a,b){return this.E(a,A.I("a4","a4",0,[b],[],0))}, +pQ(a){return this.E(this,A.I("pQ","pQ",0,[a],[],0))}, +aX(){return this.E(this,A.I("aX","aX",0,[],[],0))}, +jT(){return this.E(this,A.I("jT","jT",0,[],[],0))}, +R(a,b){return this.E(a,A.I("R","R",0,[b],[],0))}, +T(a,b){return this.E(a,A.I("T","T",0,[b],[],0))}, +gX(a){return this.E(a,A.I("gX","gX",1,[],[],0))}, +gp(a){return this.E(a,A.I("gp","gp",1,[],[],0))}, +gbX(a){return this.E(a,A.I("gbX","gbX",1,[],[],0))}, +gel(){return this.E(this,A.I("gel","gel",1,[],[],0))}, +gbt(){return this.E(this,A.I("gbt","gbt",1,[],[],0))}, +geJ(){return this.E(this,A.I("geJ","geJ",1,[],[],0))}, +sel(a){return this.E(this,A.I("sel","sel",2,[a],[],0))}, +sbt(a){return this.E(this,A.I("sbt","sbt",2,[a],[],0))}, +seJ(a){return this.E(this,A.I("seJ","seJ",2,[a],[],0))}, +sbX(a,b){return this.E(a,A.I("sbX","sbX",2,[b],[],0))}} +A.Lp.prototype={ +j(a){return""}, +$icP:1} +A.uV.prototype={ +gHr(){var s,r=this.b +if(r==null)r=$.DD.$0() +s=r-this.a +if($.NH()===1e6)return s +return s*1000}, +mh(a){var s=this,r=s.b +if(r!=null){s.a=s.a+($.DD.$0()-r) +s.b=null}}, +fd(a){var s=this.b +this.a=s==null?$.DD.$0():s}} +A.XB.prototype={ +gC(a){return this.d}, +t(){var s,r,q,p=this,o=p.b=p.c,n=p.a,m=n.length +if(o===m){p.d=-1 +return!1}s=B.d.a8(n,o) +r=o+1 +if((s&64512)===55296&&r4)this.a.$2("an IPv6 part can only contain a maximum of 4 hex digits",a) +s=A.j5(B.d.am(this.b,a,b),16) +if(s<0||s>65535)this.a.$2("each part must be in the range of `0x0..0xFFFF`",a) +return s}, +$S:164} +A.xP.prototype={ +gwf(){var s,r,q,p,o=this,n=o.w +if(n===$){s=o.a +r=s.length!==0?""+s+":":"" +q=o.c +p=q==null +if(!p||s==="file"){s=r+"//" +r=o.b +if(r.length!==0)s=s+r+"@" +if(!p)s+=q +r=o.d +if(r!=null)s=s+":"+A.h(r)}else s=r +s+=o.e +r=o.f +if(r!=null)s=s+"?"+r +r=o.r +if(r!=null)s=s+"#"+r +n!==$&&A.ap() +n=o.w=s.charCodeAt(0)==0?s:s}return n}, +grR(){var s,r,q=this,p=q.x +if(p===$){s=q.e +if(s.length!==0&&B.d.a8(s,0)===47)s=B.d.fY(s,1) +r=s.length===0?B.cy:A.U7(new A.aA(A.a(s.split("/"),t.s),A.aqP(),t.nf),t.N) +q.x!==$&&A.ap() +p=q.x=r}return p}, +gu(a){var s,r=this,q=r.y +if(q===$){s=B.d.gu(r.gwf()) +r.y!==$&&A.ap() +r.y=s +q=s}return q}, +gz4(){var s,r,q=this,p=q.Q +if(p===$){s=q.f +r=A.aoJ(s==null?"":s) +q.Q!==$&&A.ap() +q.Q=r +p=r}return p}, +gKt(){return this.b}, +gy5(a){var s=this.c +if(s==null)return"" +if(B.d.c3(s,"["))return B.d.am(s,1,s.length-1) +return s}, +gyZ(a){var s=this.d +return s==null?A.ae5(this.a):s}, +gz3(a){var s=this.f +return s==null?"":s}, +gr6(){var s=this.r +return s==null?"":s}, +gIa(){return this.a.length!==0}, +gI6(){return this.c!=null}, +gI9(){return this.f!=null}, +gI7(){return this.r!=null}, +j(a){return this.gwf()}, +k(a,b){var s,r,q=this +if(b==null)return!1 +if(q===b)return!0 +if(t.eP.b(b))if(q.a===b.gm8())if(q.c!=null===b.gI6())if(q.b===b.gKt())if(q.gy5(q)===b.gy5(b))if(q.gyZ(q)===b.gyZ(b))if(q.e===b.glM(b)){s=q.f +r=s==null +if(!r===b.gI9()){if(r)s="" +if(s===b.gz3(b)){s=q.r +r=s==null +if(!r===b.gI7()){if(r)s="" +s=s===b.gr6()}else s=!1}else s=!1}else s=!1}else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +return s}, +$iFX:1, +gm8(){return this.a}, +glM(a){return this.e}} +A.a4M.prototype={ +$2(a,b){var s=this.b,r=this.a +s.a+=r.a +r.a="&" +r=s.a+=A.Mg(B.dJ,a,B.N,!0) +if(b!=null&&b.length!==0){s.a=r+"=" +s.a+=A.Mg(B.dJ,b,B.N,!0)}}, +$S:162} +A.a4L.prototype={ +$2(a,b){var s,r +if(b==null||typeof b=="string")this.a.$2(a,b) +else for(s=J.am(b),r=this.a;s.t();)r.$2(a,s.gC(s))}, +$S:10} +A.a4N.prototype={ +$3(a,b,c){var s,r,q,p +if(a===c)return +s=this.a +r=this.b +if(b<0){q=A.Mf(s,a,c,r,!0) +p=""}else{q=A.Mf(s,a,b,r,!0) +p=A.Mf(s,b+1,c,r,!0)}J.f9(this.c.bq(0,q,A.aqQ()),p)}, +$S:155} +A.a_H.prototype={ +gKr(){var s,r,q,p,o=this,n=null,m=o.c +if(m==null){m=o.a +s=o.b[0]+1 +r=B.d.o_(m,"?",s) +q=m.length +if(r>=0){p=A.xQ(m,r+1,q,B.dL,!1,!1) +q=r}else p=n +m=o.c=new A.Hj("data","",n,n,A.xQ(m,s,q,B.jW,!1,!1),p,n)}return m}, +j(a){var s=this.a +return this.b[0]===-1?"data:"+s:s}} +A.a5i.prototype={ +$2(a,b){var s=this.a[a] +B.Q.a_c(s,0,96,b) +return s}, +$S:153} +A.a5j.prototype={ +$3(a,b,c){var s,r +for(s=b.length,r=0;r>>0]=c}, +$S:113} +A.L3.prototype={ +gIa(){return this.b>0}, +gI6(){return this.c>0}, +ga0j(){return this.c>0&&this.d+1r?B.d.am(this.a,r,s-1):""}, +gy5(a){var s=this.c +return s>0?B.d.am(this.a,s,this.d):""}, +gyZ(a){var s,r=this +if(r.ga0j())return A.j5(B.d.am(r.a,r.d+1,r.e),null) +s=r.b +if(s===4&&B.d.c3(r.a,"http"))return 80 +if(s===5&&B.d.c3(r.a,"https"))return 443 +return 0}, +glM(a){return B.d.am(this.a,this.e,this.f)}, +gz3(a){var s=this.f,r=this.r +return s=r.r)return B.oZ +s=A.aej(r.gz3(r)) +s.Kh(s,A.afe()) +return A.a7z(s,t.N,t.E4)}, +gu(a){var s=this.x +return s==null?this.x=B.d.gu(this.a):s}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +return t.eP.b(b)&&this.a===b.j(0)}, +j(a){return this.a}, +$iFX:1} +A.Hj.prototype={} +A.r9.prototype={ +i(a,b){if(typeof b=="number"||typeof b=="string"||!1)A.nf(b) +return this.a.get(b)}, +l(a,b,c){this.a.set(b,c)}, +j(a){return"Expando:null"}} +A.k9.prototype={} +A.a_p.prototype={ +p0(a,b){A.mK(b,"name") +this.d.push(null) +return}, +HH(a){var s=this.d +if(s.length===0)throw A.d(A.a5("Uneven calls to start and finish")) +if(s.pop()==null)return +A.aoT(null)}} +A.a9.prototype={} +A.yL.prototype={ +gp(a){return a.length}} +A.yN.prototype={ +j(a){var s=String(a) +s.toString +return s}} +A.yS.prototype={ +j(a){var s=String(a) +s.toString +return s}} +A.q5.prototype={} +A.h5.prototype={ +gp(a){return a.length}} +A.Ag.prototype={ +gp(a){return a.length}} +A.bz.prototype={$ibz:1} +A.n4.prototype={ +gp(a){var s=a.length +s.toString +return s}} +A.Pz.prototype={} +A.dJ.prototype={} +A.fd.prototype={} +A.Ah.prototype={ +gp(a){return a.length}} +A.Ai.prototype={ +gp(a){return a.length}} +A.Aq.prototype={ +gp(a){return a.length}, +i(a,b){var s=a[b] +s.toString +return s}} +A.AM.prototype={ +j(a){var s=String(a) +s.toString +return s}} +A.qP.prototype={ +gp(a){var s=a.length +s.toString +return s}, +i(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.d(A.c5(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +l(a,b,c){throw A.d(A.T("Cannot assign element of immutable List."))}, +sp(a,b){throw A.d(A.T("Cannot resize immutable List."))}, +gG(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.d(A.a5("No elements"))}, +gO(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.d(A.a5("No elements"))}, +aH(a,b){return a[b]}, +$iaO:1, +$iP:1, +$iaY:1, +$ij:1, +$iB:1} +A.qQ.prototype={ +j(a){var s,r=a.left +r.toString +s=a.top +s.toString +return"Rectangle ("+A.h(r)+", "+A.h(s)+") "+A.h(this.gbr(a))+" x "+A.h(this.gbo(a))}, +k(a,b){var s,r +if(b==null)return!1 +if(t.zR.b(b)){s=a.left +s.toString +r=J.dp(b) +if(s===r.gho(b)){s=a.top +s.toString +s=s===r.gzy(b)&&this.gbr(a)===r.gbr(b)&&this.gbo(a)===r.gbo(b)}else s=!1}else s=!1 +return s}, +gu(a){var s,r=a.left +r.toString +s=a.top +s.toString +return A.L(r,s,this.gbr(a),this.gbo(a),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +gD3(a){return a.height}, +gbo(a){var s=this.gD3(a) +s.toString +return s}, +gho(a){var s=a.left +s.toString +return s}, +gzy(a){var s=a.top +s.toString +return s}, +gFF(a){return a.width}, +gbr(a){var s=this.gFF(a) +s.toString +return s}, +$ifB:1} +A.AO.prototype={ +gp(a){var s=a.length +s.toString +return s}, +i(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.d(A.c5(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +l(a,b,c){throw A.d(A.T("Cannot assign element of immutable List."))}, +sp(a,b){throw A.d(A.T("Cannot resize immutable List."))}, +gG(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.d(A.a5("No elements"))}, +gO(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.d(A.a5("No elements"))}, +aH(a,b){return a[b]}, +$iaO:1, +$iP:1, +$iaY:1, +$ij:1, +$iB:1} +A.AQ.prototype={ +gp(a){var s=a.length +s.toString +return s}} +A.a8.prototype={ +j(a){var s=a.localName +s.toString +return s}} +A.N.prototype={} +A.en.prototype={$ien:1} +A.Bd.prototype={ +gp(a){var s=a.length +s.toString +return s}, +i(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.d(A.c5(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +l(a,b,c){throw A.d(A.T("Cannot assign element of immutable List."))}, +sp(a,b){throw A.d(A.T("Cannot resize immutable List."))}, +gG(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.d(A.a5("No elements"))}, +gO(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.d(A.a5("No elements"))}, +aH(a,b){return a[b]}, +$iaO:1, +$iP:1, +$iaY:1, +$ij:1, +$iB:1} +A.Be.prototype={ +gp(a){return a.length}} +A.Bt.prototype={ +gp(a){return a.length}} +A.eo.prototype={$ieo:1} +A.BH.prototype={ +gp(a){var s=a.length +s.toString +return s}} +A.lf.prototype={ +gp(a){var s=a.length +s.toString +return s}, +i(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.d(A.c5(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +l(a,b,c){throw A.d(A.T("Cannot assign element of immutable List."))}, +sp(a,b){throw A.d(A.T("Cannot resize immutable List."))}, +gG(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.d(A.a5("No elements"))}, +gO(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.d(A.a5("No elements"))}, +aH(a,b){return a[b]}, +$iaO:1, +$iP:1, +$iaY:1, +$ij:1, +$iB:1} +A.Cg.prototype={ +j(a){var s=String(a) +s.toString +return s}} +A.Cr.prototype={ +gp(a){return a.length}} +A.Cv.prototype={ +a3(a,b){return A.f5(a.get(b))!=null}, +i(a,b){return A.f5(a.get(b))}, +P(a,b){var s,r,q=a.entries() +for(;!0;){s=q.next() +r=s.done +r.toString +if(r)return +r=s.value[0] +r.toString +b.$2(r,A.f5(s.value[1]))}}, +gbg(a){var s=A.a([],t.s) +this.P(a,new A.Ut(s)) +return s}, +gaJ(a){var s=A.a([],t.vp) +this.P(a,new A.Uu(s)) +return s}, +gp(a){var s=a.size +s.toString +return s}, +gS(a){var s=a.size +s.toString +return s===0}, +gbv(a){var s=a.size +s.toString +return s!==0}, +l(a,b,c){throw A.d(A.T("Not supported"))}, +bq(a,b,c){throw A.d(A.T("Not supported"))}, +v(a,b){throw A.d(A.T("Not supported"))}, +$iay:1} +A.Ut.prototype={ +$2(a,b){return this.a.push(a)}, +$S:10} +A.Uu.prototype={ +$2(a,b){return this.a.push(b)}, +$S:10} +A.Cw.prototype={ +a3(a,b){return A.f5(a.get(b))!=null}, +i(a,b){return A.f5(a.get(b))}, +P(a,b){var s,r,q=a.entries() +for(;!0;){s=q.next() +r=s.done +r.toString +if(r)return +r=s.value[0] +r.toString +b.$2(r,A.f5(s.value[1]))}}, +gbg(a){var s=A.a([],t.s) +this.P(a,new A.Uv(s)) +return s}, +gaJ(a){var s=A.a([],t.vp) +this.P(a,new A.Uw(s)) +return s}, +gp(a){var s=a.size +s.toString +return s}, +gS(a){var s=a.size +s.toString +return s===0}, +gbv(a){var s=a.size +s.toString +return s!==0}, +l(a,b,c){throw A.d(A.T("Not supported"))}, +bq(a,b,c){throw A.d(A.T("Not supported"))}, +v(a,b){throw A.d(A.T("Not supported"))}, +$iay:1} +A.Uv.prototype={ +$2(a,b){return this.a.push(a)}, +$S:10} +A.Uw.prototype={ +$2(a,b){return this.a.push(b)}, +$S:10} +A.et.prototype={$iet:1} +A.Cx.prototype={ +gp(a){var s=a.length +s.toString +return s}, +i(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.d(A.c5(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +l(a,b,c){throw A.d(A.T("Cannot assign element of immutable List."))}, +sp(a,b){throw A.d(A.T("Cannot resize immutable List."))}, +gG(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.d(A.a5("No elements"))}, +gO(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.d(A.a5("No elements"))}, +aH(a,b){return a[b]}, +$iaO:1, +$iP:1, +$iaY:1, +$ij:1, +$iB:1} +A.aZ.prototype={ +j(a){var s=a.nodeValue +return s==null?this.MG(a):s}, +$iaZ:1} +A.to.prototype={ +gp(a){var s=a.length +s.toString +return s}, +i(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.d(A.c5(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +l(a,b,c){throw A.d(A.T("Cannot assign element of immutable List."))}, +sp(a,b){throw A.d(A.T("Cannot resize immutable List."))}, +gG(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.d(A.a5("No elements"))}, +gO(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.d(A.a5("No elements"))}, +aH(a,b){return a[b]}, +$iaO:1, +$iP:1, +$iaY:1, +$ij:1, +$iB:1} +A.ey.prototype={ +gp(a){return a.length}, +$iey:1} +A.Dx.prototype={ +gp(a){var s=a.length +s.toString +return s}, +i(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.d(A.c5(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +l(a,b,c){throw A.d(A.T("Cannot assign element of immutable List."))}, +sp(a,b){throw A.d(A.T("Cannot resize immutable List."))}, +gG(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.d(A.a5("No elements"))}, +gO(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.d(A.a5("No elements"))}, +aH(a,b){return a[b]}, +$iaO:1, +$iP:1, +$iaY:1, +$ij:1, +$iB:1} +A.Eq.prototype={ +a3(a,b){return A.f5(a.get(b))!=null}, +i(a,b){return A.f5(a.get(b))}, +P(a,b){var s,r,q=a.entries() +for(;!0;){s=q.next() +r=s.done +r.toString +if(r)return +r=s.value[0] +r.toString +b.$2(r,A.f5(s.value[1]))}}, +gbg(a){var s=A.a([],t.s) +this.P(a,new A.Xz(s)) +return s}, +gaJ(a){var s=A.a([],t.vp) +this.P(a,new A.XA(s)) +return s}, +gp(a){var s=a.size +s.toString +return s}, +gS(a){var s=a.size +s.toString +return s===0}, +gbv(a){var s=a.size +s.toString +return s!==0}, +l(a,b,c){throw A.d(A.T("Not supported"))}, +bq(a,b,c){throw A.d(A.T("Not supported"))}, +v(a,b){throw A.d(A.T("Not supported"))}, +$iay:1} +A.Xz.prototype={ +$2(a,b){return this.a.push(a)}, +$S:10} +A.XA.prototype={ +$2(a,b){return this.a.push(b)}, +$S:10} +A.EH.prototype={ +gp(a){return a.length}} +A.eD.prototype={$ieD:1} +A.Fc.prototype={ +gp(a){var s=a.length +s.toString +return s}, +i(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.d(A.c5(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +l(a,b,c){throw A.d(A.T("Cannot assign element of immutable List."))}, +sp(a,b){throw A.d(A.T("Cannot resize immutable List."))}, +gG(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.d(A.a5("No elements"))}, +gO(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.d(A.a5("No elements"))}, +aH(a,b){return a[b]}, +$iaO:1, +$iP:1, +$iaY:1, +$ij:1, +$iB:1} +A.eE.prototype={$ieE:1} +A.Fe.prototype={ +gp(a){var s=a.length +s.toString +return s}, +i(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.d(A.c5(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +l(a,b,c){throw A.d(A.T("Cannot assign element of immutable List."))}, +sp(a,b){throw A.d(A.T("Cannot resize immutable List."))}, +gG(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.d(A.a5("No elements"))}, +gO(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.d(A.a5("No elements"))}, +aH(a,b){return a[b]}, +$iaO:1, +$iP:1, +$iaY:1, +$ij:1, +$iB:1} +A.eF.prototype={ +gp(a){return a.length}, +$ieF:1} +A.Fk.prototype={ +a3(a,b){return a.getItem(A.bW(b))!=null}, +i(a,b){return a.getItem(A.bW(b))}, +l(a,b,c){a.setItem(b,c)}, +bq(a,b,c){var s +if(a.getItem(b)==null)a.setItem(b,c.$0()) +s=a.getItem(b) +return s==null?A.bW(s):s}, +v(a,b){var s +A.bW(b) +s=a.getItem(b) +a.removeItem(b) +return s}, +P(a,b){var s,r,q +for(s=0;!0;++s){r=a.key(s) +if(r==null)return +q=a.getItem(r) +q.toString +b.$2(r,q)}}, +gbg(a){var s=A.a([],t.s) +this.P(a,new A.Zj(s)) +return s}, +gaJ(a){var s=A.a([],t.s) +this.P(a,new A.Zk(s)) +return s}, +gp(a){var s=a.length +s.toString +return s}, +gS(a){return a.key(0)==null}, +gbv(a){return a.key(0)!=null}, +$iay:1} +A.Zj.prototype={ +$2(a,b){return this.a.push(a)}, +$S:114} +A.Zk.prototype={ +$2(a,b){return this.a.push(b)}, +$S:114} +A.dP.prototype={$idP:1} +A.eH.prototype={$ieH:1} +A.dQ.prototype={$idQ:1} +A.FA.prototype={ +gp(a){var s=a.length +s.toString +return s}, +i(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.d(A.c5(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +l(a,b,c){throw A.d(A.T("Cannot assign element of immutable List."))}, +sp(a,b){throw A.d(A.T("Cannot resize immutable List."))}, +gG(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.d(A.a5("No elements"))}, +gO(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.d(A.a5("No elements"))}, +aH(a,b){return a[b]}, +$iaO:1, +$iP:1, +$iaY:1, +$ij:1, +$iB:1} +A.FB.prototype={ +gp(a){var s=a.length +s.toString +return s}, +i(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.d(A.c5(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +l(a,b,c){throw A.d(A.T("Cannot assign element of immutable List."))}, +sp(a,b){throw A.d(A.T("Cannot resize immutable List."))}, +gG(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.d(A.a5("No elements"))}, +gO(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.d(A.a5("No elements"))}, +aH(a,b){return a[b]}, +$iaO:1, +$iP:1, +$iaY:1, +$ij:1, +$iB:1} +A.FG.prototype={ +gp(a){var s=a.length +s.toString +return s}} +A.eI.prototype={$ieI:1} +A.FK.prototype={ +gp(a){var s=a.length +s.toString +return s}, +i(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.d(A.c5(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +l(a,b,c){throw A.d(A.T("Cannot assign element of immutable List."))}, +sp(a,b){throw A.d(A.T("Cannot resize immutable List."))}, +gG(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.d(A.a5("No elements"))}, +gO(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.d(A.a5("No elements"))}, +aH(a,b){return a[b]}, +$iaO:1, +$iP:1, +$iaY:1, +$ij:1, +$iB:1} +A.FL.prototype={ +gp(a){return a.length}} +A.FY.prototype={ +j(a){var s=String(a) +s.toString +return s}} +A.G0.prototype={ +gp(a){return a.length}} +A.H9.prototype={ +gp(a){var s=a.length +s.toString +return s}, +i(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.d(A.c5(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +l(a,b,c){throw A.d(A.T("Cannot assign element of immutable List."))}, +sp(a,b){throw A.d(A.T("Cannot resize immutable List."))}, +gG(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.d(A.a5("No elements"))}, +gO(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.d(A.a5("No elements"))}, +aH(a,b){return a[b]}, +$iaO:1, +$iP:1, +$iaY:1, +$ij:1, +$iB:1} +A.vR.prototype={ +j(a){var s,r,q,p=a.left +p.toString +s=a.top +s.toString +r=a.width +r.toString +q=a.height +q.toString +return"Rectangle ("+A.h(p)+", "+A.h(s)+") "+A.h(r)+" x "+A.h(q)}, +k(a,b){var s,r +if(b==null)return!1 +if(t.zR.b(b)){s=a.left +s.toString +r=J.dp(b) +if(s===r.gho(b)){s=a.top +s.toString +if(s===r.gzy(b)){s=a.width +s.toString +if(s===r.gbr(b)){s=a.height +s.toString +r=s===r.gbo(b) +s=r}else s=!1}else s=!1}else s=!1}else s=!1 +return s}, +gu(a){var s,r,q,p=a.left +p.toString +s=a.top +s.toString +r=a.width +r.toString +q=a.height +q.toString +return A.L(p,s,r,q,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +gD3(a){return a.height}, +gbo(a){var s=a.height +s.toString +return s}, +gFF(a){return a.width}, +gbr(a){var s=a.width +s.toString +return s}} +A.I9.prototype={ +gp(a){var s=a.length +s.toString +return s}, +i(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.d(A.c5(b,s,a,null,null)) +return a[b]}, +l(a,b,c){throw A.d(A.T("Cannot assign element of immutable List."))}, +sp(a,b){throw A.d(A.T("Cannot resize immutable List."))}, +gG(a){if(a.length>0)return a[0] +throw A.d(A.a5("No elements"))}, +gO(a){var s=a.length +if(s>0)return a[s-1] +throw A.d(A.a5("No elements"))}, +aH(a,b){return a[b]}, +$iaO:1, +$iP:1, +$iaY:1, +$ij:1, +$iB:1} +A.wv.prototype={ +gp(a){var s=a.length +s.toString +return s}, +i(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.d(A.c5(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +l(a,b,c){throw A.d(A.T("Cannot assign element of immutable List."))}, +sp(a,b){throw A.d(A.T("Cannot resize immutable List."))}, +gG(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.d(A.a5("No elements"))}, +gO(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.d(A.a5("No elements"))}, +aH(a,b){return a[b]}, +$iaO:1, +$iP:1, +$iaY:1, +$ij:1, +$iB:1} +A.Le.prototype={ +gp(a){var s=a.length +s.toString +return s}, +i(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.d(A.c5(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +l(a,b,c){throw A.d(A.T("Cannot assign element of immutable List."))}, +sp(a,b){throw A.d(A.T("Cannot resize immutable List."))}, +gG(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.d(A.a5("No elements"))}, +gO(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.d(A.a5("No elements"))}, +aH(a,b){return a[b]}, +$iaO:1, +$iP:1, +$iaY:1, +$ij:1, +$iB:1} +A.Lq.prototype={ +gp(a){var s=a.length +s.toString +return s}, +i(a,b){var s=a.length,r=b>>>0!==b||b>=s +r.toString +if(r)throw A.d(A.c5(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +l(a,b,c){throw A.d(A.T("Cannot assign element of immutable List."))}, +sp(a,b){throw A.d(A.T("Cannot resize immutable List."))}, +gG(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.d(A.a5("No elements"))}, +gO(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.d(A.a5("No elements"))}, +aH(a,b){return a[b]}, +$iaO:1, +$iP:1, +$iaY:1, +$ij:1, +$iB:1} +A.ce.prototype={ +gX(a){return new A.Bh(a,this.gp(a))}, +B(a,b){throw A.d(A.T("Cannot add to immutable List."))}, +dN(a){throw A.d(A.T("Cannot remove from immutable List."))}, +v(a,b){throw A.d(A.T("Cannot remove from immutable List."))}, +be(a,b,c,d,e){throw A.d(A.T("Cannot setRange on immutable List."))}, +dA(a,b,c,d){return this.be(a,b,c,d,0)}} +A.Bh.prototype={ +t(){var s=this,r=s.c+1,q=s.b +if(r>>0!==b||b>=s +s.toString +if(s)throw A.d(A.c5(b,this.gp(a),a,null,null)) +s=a.getItem(b) +s.toString +return s}, +l(a,b,c){throw A.d(A.T("Cannot assign element of immutable List."))}, +sp(a,b){throw A.d(A.T("Cannot resize immutable List."))}, +gG(a){var s=a.length +s.toString +if(s>0){s=a[0] +s.toString +return s}throw A.d(A.a5("No elements"))}, +gO(a){var s=a.length +s.toString +if(s>0){s=a[s-1] +s.toString +return s}throw A.d(A.a5("No elements"))}, +aH(a,b){return this.i(a,b)}, +$iP:1, +$ij:1, +$iB:1} +A.fu.prototype={$ifu:1} +A.CT.prototype={ +gp(a){var s=a.length +s.toString +return s}, +i(a,b){var s=a.length +s.toString +s=b>>>0!==b||b>=s +s.toString +if(s)throw A.d(A.c5(b,this.gp(a),a,null,null)) +s=a.getItem(b) +s.toString +return s}, +l(a,b,c){throw A.d(A.T("Cannot assign element of immutable List."))}, +sp(a,b){throw A.d(A.T("Cannot resize immutable List."))}, +gG(a){var s=a.length +s.toString +if(s>0){s=a[0] +s.toString +return s}throw A.d(A.a5("No elements"))}, +gO(a){var s=a.length +s.toString +if(s>0){s=a[s-1] +s.toString +return s}throw A.d(A.a5("No elements"))}, +aH(a,b){return this.i(a,b)}, +$iP:1, +$ij:1, +$iB:1} +A.Dy.prototype={ +gp(a){return a.length}} +A.Fl.prototype={ +gp(a){var s=a.length +s.toString +return s}, +i(a,b){var s=a.length +s.toString +s=b>>>0!==b||b>=s +s.toString +if(s)throw A.d(A.c5(b,this.gp(a),a,null,null)) +s=a.getItem(b) +s.toString +return s}, +l(a,b,c){throw A.d(A.T("Cannot assign element of immutable List."))}, +sp(a,b){throw A.d(A.T("Cannot resize immutable List."))}, +gG(a){var s=a.length +s.toString +if(s>0){s=a[0] +s.toString +return s}throw A.d(A.a5("No elements"))}, +gO(a){var s=a.length +s.toString +if(s>0){s=a[s-1] +s.toString +return s}throw A.d(A.a5("No elements"))}, +aH(a,b){return this.i(a,b)}, +$iP:1, +$ij:1, +$iB:1} +A.fM.prototype={$ifM:1} +A.FN.prototype={ +gp(a){var s=a.length +s.toString +return s}, +i(a,b){var s=a.length +s.toString +s=b>>>0!==b||b>=s +s.toString +if(s)throw A.d(A.c5(b,this.gp(a),a,null,null)) +s=a.getItem(b) +s.toString +return s}, +l(a,b,c){throw A.d(A.T("Cannot assign element of immutable List."))}, +sp(a,b){throw A.d(A.T("Cannot resize immutable List."))}, +gG(a){var s=a.length +s.toString +if(s>0){s=a[0] +s.toString +return s}throw A.d(A.a5("No elements"))}, +gO(a){var s=a.length +s.toString +if(s>0){s=a[s-1] +s.toString +return s}throw A.d(A.a5("No elements"))}, +aH(a,b){return this.i(a,b)}, +$iP:1, +$ij:1, +$iB:1} +A.II.prototype={} +A.IJ.prototype={} +A.Jl.prototype={} +A.Jm.prototype={} +A.Ln.prototype={} +A.Lo.prototype={} +A.LR.prototype={} +A.LS.prototype={} +A.B_.prototype={} +A.A_.prototype={ +D(){return"ClipOp."+this.b}} +A.a_U.prototype={ +D(){return"VertexMode."+this.b}} +A.Dm.prototype={ +D(){return"PathFillType."+this.b}} +A.a18.prototype={ +lB(a,b){A.arB(this.a,this.b,a,b)}} +A.xy.prototype={ +cZ(a){A.Ny(this.b,this.c,a)}} +A.iP.prototype={ +gp(a){var s=this.a +return s.gp(s)}, +a1V(a){var s,r,q=this +if(!q.d&&q.e!=null){q.e.lB(a.a,a.gIv()) +return!1}s=q.c +if(s<=0)return!0 +r=q.Cj(s-1) +q.a.dj(0,a) +return r}, +Cj(a){var s,r,q +for(s=this.a,r=!1;(s.c-s.b&s.a.length-1)>>>0>a;r=!0){q=s.oz() +A.Ny(q.b,q.c,null)}return r}, +Ro(){var s=this,r=s.a +if(!r.gS(r)&&s.e!=null){r=r.oz() +s.e.lB(r.a,r.gIv()) +A.f7(s.gCh())}else s.d=!1}} +A.OY.prototype={ +a1W(a,b,c){this.a.bq(0,a,new A.OZ()).a1V(new A.xy(b,c,$.ab))}, +Lm(a,b){var s=this.a.bq(0,a,new A.P_()),r=s.e +s.e=new A.a18(b,$.ab) +if(r==null&&!s.d){s.d=!0 +A.f7(s.gCh())}}, +a_H(a){var s,r,q,p,o,n,m,l="Invalid arguments for 'resize' method sent to dev.flutter/channel-buffers (arguments must be a two-element list, channel name and new capacity)",k="Invalid arguments for 'overflow' method sent to dev.flutter/channel-buffers (arguments must be a two-element list, channel name and flag state)",j=A.cB(a.buffer,a.byteOffset,a.byteLength) +if(j[0]===7){s=j[1] +if(s>=254)throw A.d(A.bV("Unrecognized message sent to dev.flutter/channel-buffers (method name too long)")) +r=2+s +q=B.N.dq(0,B.Q.bx(j,2,r)) +switch(q){case"resize":if(j[r]!==12)throw A.d(A.bV(l)) +p=r+1 +if(j[p]<2)throw A.d(A.bV(l));++p +if(j[p]!==7)throw A.d(A.bV("Invalid arguments for 'resize' method sent to dev.flutter/channel-buffers (first argument must be a string)"));++p +o=j[p] +if(o>=254)throw A.d(A.bV("Invalid arguments for 'resize' method sent to dev.flutter/channel-buffers (channel name must be less than 254 characters long)"));++p +r=p+o +n=B.N.dq(0,B.Q.bx(j,p,r)) +if(j[r]!==3)throw A.d(A.bV("Invalid arguments for 'resize' method sent to dev.flutter/channel-buffers (second argument must be an integer in the range 0 to 2147483647)")) +this.JV(0,n,a.getUint32(r+1,B.X===$.cG())) +break +case"overflow":if(j[r]!==12)throw A.d(A.bV(k)) +p=r+1 +if(j[p]<2)throw A.d(A.bV(k));++p +if(j[p]!==7)throw A.d(A.bV("Invalid arguments for 'overflow' method sent to dev.flutter/channel-buffers (first argument must be a string)"));++p +o=j[p] +if(o>=254)throw A.d(A.bV("Invalid arguments for 'overflow' method sent to dev.flutter/channel-buffers (channel name must be less than 254 characters long)"));++p +r=p+o +B.N.dq(0,B.Q.bx(j,p,r)) +r=j[r] +if(r!==1&&r!==2)throw A.d(A.bV("Invalid arguments for 'overflow' method sent to dev.flutter/channel-buffers (second argument must be a boolean)")) +break +default:throw A.d(A.bV("Unrecognized method '"+q+"' sent to dev.flutter/channel-buffers"))}}else{m=A.a(B.N.dq(0,j).split("\r"),t.s) +if(m.length===3&&J.e(m[0],"resize"))this.JV(0,m[1],A.j5(m[2],null)) +else throw A.d(A.bV("Unrecognized message "+A.h(m)+" sent to dev.flutter/channel-buffers."))}}, +JV(a,b,c){var s=this.a,r=s.i(0,b) +if(r==null)s.l(0,b,new A.iP(A.jK(c,t.mt),c)) +else{r.c=c +r.Cj(c)}}} +A.OZ.prototype={ +$0(){return new A.iP(A.jK(1,t.mt),1)}, +$S:116} +A.P_.prototype={ +$0(){return new A.iP(A.jK(1,t.mt),1)}, +$S:116} +A.CV.prototype={ +L3(a,b){return this.a>b.a&&this.b>b.b}, +k(a,b){if(b==null)return!1 +return b instanceof A.CV&&b.a===this.a&&b.b===this.b}, +gu(a){return A.L(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a){return"OffsetBase("+B.c.M(this.a,1)+", "+B.c.M(this.b,1)+")"}} +A.q.prototype={ +gcz(){var s=this.a,r=this.b +return Math.sqrt(s*s+r*r)}, +gqS(){var s=this.a,r=this.b +return s*s+r*r}, +a4(a,b){return new A.q(this.a-b.a,this.b-b.b)}, +T(a,b){return new A.q(this.a+b.a,this.b+b.b)}, +R(a,b){return new A.q(this.a*b,this.b*b)}, +cO(a,b){return new A.q(this.a/b,this.b/b)}, +k(a,b){if(b==null)return!1 +return b instanceof A.q&&b.a===this.a&&b.b===this.b}, +gu(a){return A.L(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a){return"Offset("+B.c.M(this.a,1)+", "+B.c.M(this.b,1)+")"}} +A.S.prototype={ +gS(a){return this.a<=0||this.b<=0}, +a4(a,b){var s=this +if(b instanceof A.S)return new A.q(s.a-b.a,s.b-b.b) +if(b instanceof A.q)return new A.S(s.a-b.a,s.b-b.b) +throw A.d(A.cy(b,null))}, +T(a,b){return new A.S(this.a+b.a,this.b+b.b)}, +R(a,b){return new A.S(this.a*b,this.b*b)}, +cO(a,b){return new A.S(this.a/b,this.b/b)}, +h7(a){return new A.q(a.a+this.a/2,a.b+this.b/2)}, +Ge(a,b){return new A.q(b.a+this.a,b.b+this.b)}, +q(a,b){var s=b.a +if(s>=0)if(s=0&&s=s.c||s.b>=s.d}, +cE(a){var s=this,r=a.a,q=a.b +return new A.C(s.a+r,s.b+q,s.c+r,s.d+q)}, +ae(a,b,c){var s=this +return new A.C(s.a+b,s.b+c,s.c+b,s.d+c)}, +dc(a){var s=this +return new A.C(s.a-a,s.b-a,s.c+a,s.d+a)}, +dd(a){var s=this +return new A.C(Math.max(s.a,a.a),Math.max(s.b,a.b),Math.min(s.c,a.c),Math.min(s.d,a.d))}, +jX(a){var s=this +return new A.C(Math.min(s.a,a.a),Math.min(s.b,a.b),Math.max(s.c,a.c),Math.max(s.d,a.d))}, +rM(a){var s=this +if(s.c<=a.a||a.c<=s.a)return!1 +if(s.d<=a.b||a.d<=s.b)return!1 +return!0}, +geA(){var s=this +return Math.min(Math.abs(s.c-s.a),Math.abs(s.d-s.b))}, +gav(){var s=this,r=s.a,q=s.b +return new A.q(r+(s.c-r)/2,q+(s.d-q)/2)}, +q(a,b){var s=this,r=b.a +if(r>=s.a)if(r=s.b&&rd&&s!==0)return Math.min(a,d/s) +return a}, +oS(){var s=this,r=s.c,q=s.a,p=Math.abs(r-q),o=s.d,n=s.b,m=Math.abs(o-n),l=s.Q,k=s.f,j=s.e,i=s.r,h=s.w,g=s.y,f=s.x,e=s.z,d=s.pp(s.pp(s.pp(s.pp(1,l,k,m),j,i,p),h,g,m),f,e,p) +if(d<1)return new A.fz(q,n,r,o,j*d,k*d,i*d,h*d,f*d,g*d,e*d,l*d,!1) +return new A.fz(q,n,r,o,j,k,i,h,f,g,e,l,!1)}, +q(a,b){var s,r,q,p,o,n,m=this,l=b.a,k=m.a +if(!(l=m.c)){s=b.b +s=s=m.d}else s=!0 +else s=!0 +if(s)return!1 +r=m.oS() +q=r.e +if(ls-q&&b.bs-q&&b.b>m.d-r.y){p=l-s+q +o=r.y +n=b.b-m.d+o}else{q=r.z +if(lm.d-r.Q){p=l-k-q +o=r.Q +n=b.b-m.d+o}else return!0}}}p/=q +n/=o +if(p*p+n*n>1)return!1 +return!0}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(A.w(s)!==J.J(b))return!1 +return b instanceof A.fz&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d&&b.e===s.e&&b.f===s.f&&b.r===s.r&&b.w===s.w&&b.z===s.z&&b.Q===s.Q&&b.x===s.x&&b.y===s.y}, +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.z,s.Q,s.x,s.y,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a){var s,r,q=this,p=B.c.M(q.a,1)+", "+B.c.M(q.b,1)+", "+B.c.M(q.c,1)+", "+B.c.M(q.d,1),o=q.e,n=q.f,m=q.r,l=q.w +if(new A.aF(o,n).k(0,new A.aF(m,l))){s=q.x +r=q.y +s=new A.aF(m,l).k(0,new A.aF(s,r))&&new A.aF(s,r).k(0,new A.aF(q.z,q.Q))}else s=!1 +if(s){if(o===n)return"RRect.fromLTRBR("+p+", "+B.c.M(o,1)+")" +return"RRect.fromLTRBXY("+p+", "+B.c.M(o,1)+", "+B.c.M(n,1)+")"}return"RRect.fromLTRBAndCorners("+p+", topLeft: "+new A.aF(o,n).j(0)+", topRight: "+new A.aF(m,l).j(0)+", bottomRight: "+new A.aF(q.x,q.y).j(0)+", bottomLeft: "+new A.aF(q.z,q.Q).j(0)+")"}} +A.a6W.prototype={ +$1(a){return this.KF(a)}, +$0(){return this.$1(null)}, +$C:"$1", +$R:0, +$D(){return[null]}, +KF(a){var s=0,r=A.Y(t.H) +var $async$$1=A.Z(function(b,c){if(b===1)return A.V(c,r) +while(true)switch(s){case 0:s=2 +return A.a1(A.a6t(a),$async$$1) +case 2:return A.W(null,r)}}) +return A.X($async$$1,r)}, +$S:150} +A.a6X.prototype={ +$0(){var s=0,r=A.Y(t.P),q=this +var $async$$0=A.Z(function(a,b){if(a===1)return A.V(b,r) +while(true)switch(s){case 0:q.a.$0() +s=2 +return A.a1(A.a9y(),$async$$0) +case 2:q.b.$0() +return A.W(null,r)}}) +return A.X($async$$0,r)}, +$S:88} +A.rK.prototype={ +D(){return"KeyEventType."+this.b}} +A.e5.prototype={ +Up(){var s=this.d +return"0x"+B.f.il(s,16)+new A.TF(B.c.cJ(s/4294967296)).$0()}, +Rz(){var s=this.e +if(s==null)return"" +switch(s){case"\n":return'"\\n"' +case"\t":return'"\\t"' +case"\r":return'"\\r"' +case"\b":return'"\\b"' +case"\f":return'"\\f"' +default:return'"'+s+'"'}}, +VH(){var s=this.e +if(s==null)return"" +return" (0x"+new A.aA(new A.jn(s),new A.TG(),t.sU.h("aA")).bf(0," ")+")"}, +j(a){var s=this,r=A.al4(s.b),q=B.f.il(s.c,16),p=s.Up(),o=s.Rz(),n=s.VH(),m=s.f?", synthesized":"" +return"KeyData(type: "+A.h(r)+", physical: 0x"+q+", logical: "+p+", character: "+o+n+m+")"}} +A.TF.prototype={ +$0(){switch(this.a){case 0:return" (Unicode)" +case 1:return" (Unprintable)" +case 2:return" (Flutter)" +case 23:return" (Web)"}return""}, +$S:33} +A.TG.prototype={ +$1(a){return B.d.lK(B.f.il(a,16),2,"0")}, +$S:81} +A.A.prototype={ +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.A&&b.gn(b)===s.gn(s)}, +gu(a){return B.f.gu(this.gn(this))}, +j(a){return"Color(0x"+B.d.lK(B.f.il(this.gn(this),16),8,"0")+")"}, +gn(a){return this.a}} +A.Zq.prototype={ +D(){return"StrokeCap."+this.b}} +A.Zr.prototype={ +D(){return"StrokeJoin."+this.b}} +A.Dk.prototype={ +D(){return"PaintingStyle."+this.b}} +A.mP.prototype={ +D(){return"BlendMode."+this.b}} +A.mZ.prototype={ +D(){return"Clip."+this.b}} +A.Ow.prototype={ +D(){return"BlurStyle."+this.b}} +A.t0.prototype={ +k(a,b){if(b==null)return!1 +return b instanceof A.t0&&b.a===this.a&&b.b===this.b}, +gu(a){return A.L(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a){return"MaskFilter.blur("+this.a.j(0)+", "+B.c.M(this.b,1)+")"}} +A.ng.prototype={ +D(){return"FilterQuality."+this.b}} +A.ka.prototype={ +aO(a,b){return new A.ka(this.a,this.b.R(0,b),this.c*b)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +return b instanceof A.ka&&b.a.k(0,s.a)&&b.b.k(0,s.b)&&b.c===s.c}, +gu(a){return A.L(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a){return"TextShadow("+this.a.j(0)+", "+this.b.j(0)+", "+A.h(this.c)+")"}} +A.jy.prototype={ +gp(a){return this.b}} +A.VK.prototype={} +A.jw.prototype={ +j(a){var s,r=A.w(this).j(0),q=this.a,p=A.c4(q[2],0),o=q[1],n=A.c4(o,0),m=q[4],l=A.c4(m,0),k=A.c4(q[3],0) +o=A.c4(o,0) +s=q[0] +return r+"(buildDuration: "+(A.h((p.a-n.a)*0.001)+"ms")+", rasterDuration: "+(A.h((l.a-k.a)*0.001)+"ms")+", vsyncOverhead: "+(A.h((o.a-A.c4(s,0).a)*0.001)+"ms")+", totalSpan: "+(A.h((A.c4(m,0).a-A.c4(s,0).a)*0.001)+"ms")+", layerCacheCount: "+q[6]+", layerCacheBytes: "+q[7]+", pictureCacheCount: "+q[8]+", pictureCacheBytes: "+q[9]+", frameNumber: "+B.b.gO(q)+")"}} +A.mJ.prototype={ +D(){return"AppLifecycleState."+this.b}} +A.q_.prototype={ +D(){return"AppExitResponse."+this.b}} +A.jL.prototype={ +glE(a){var s=this.a,r=B.aC.i(0,s) +return r==null?s:r}, +gqD(){var s=this.c,r=B.aU.i(0,s) +return r==null?s:r}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(b instanceof A.jL)if(b.glE(b)===r.glE(r))s=b.gqD()==r.gqD() +else s=!1 +else s=!1 +return s}, +gu(a){return A.L(this.glE(this),null,this.gqD(),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a){return this.VI("_")}, +VI(a){var s=this,r=s.glE(s) +if(s.c!=null)r+=a+A.h(s.gqD()) +return r.charCodeAt(0)==0?r:r}} +A.PM.prototype={ +D(){return"DartPerformanceMode."+this.b}} +A.iu.prototype={ +D(){return"PointerChange."+this.b}} +A.fx.prototype={ +D(){return"PointerDeviceKind."+this.b}} +A.nZ.prototype={ +D(){return"PointerSignalKind."+this.b}} +A.VW.prototype={ +D(){return"PointerPreferredStylusAuxiliaryAction."+this.b}} +A.hy.prototype={ +j(a){return"PointerData(x: "+A.h(this.w)+", y: "+A.h(this.x)+")"}} +A.tL.prototype={} +A.c0.prototype={ +j(a){switch(this.a){case 1:return"SemanticsAction.tap" +case 2:return"SemanticsAction.longPress" +case 4:return"SemanticsAction.scrollLeft" +case 8:return"SemanticsAction.scrollRight" +case 16:return"SemanticsAction.scrollUp" +case 32:return"SemanticsAction.scrollDown" +case 64:return"SemanticsAction.increase" +case 128:return"SemanticsAction.decrease" +case 256:return"SemanticsAction.showOnScreen" +case 512:return"SemanticsAction.moveCursorForwardByCharacter" +case 1024:return"SemanticsAction.moveCursorBackwardByCharacter" +case 2048:return"SemanticsAction.setSelection" +case 4096:return"SemanticsAction.copy" +case 8192:return"SemanticsAction.cut" +case 16384:return"SemanticsAction.paste" +case 32768:return"SemanticsAction.didGainAccessibilityFocus" +case 65536:return"SemanticsAction.didLoseAccessibilityFocus" +case 131072:return"SemanticsAction.customAction" +case 262144:return"SemanticsAction.dismiss" +case 524288:return"SemanticsAction.moveCursorForwardByWord" +case 1048576:return"SemanticsAction.moveCursorBackwardByWord" +case 2097152:return"SemanticsAction.setText"}return""}} +A.bO.prototype={ +j(a){switch(this.a){case 1:return"SemanticsFlag.hasCheckedState" +case 2:return"SemanticsFlag.isChecked" +case 4:return"SemanticsFlag.isSelected" +case 8:return"SemanticsFlag.isButton" +case 16:return"SemanticsFlag.isTextField" +case 32:return"SemanticsFlag.isFocused" +case 64:return"SemanticsFlag.hasEnabledState" +case 128:return"SemanticsFlag.isEnabled" +case 256:return"SemanticsFlag.isInMutuallyExclusiveGroup" +case 512:return"SemanticsFlag.isHeader" +case 1024:return"SemanticsFlag.isObscured" +case 2048:return"SemanticsFlag.scopesRoute" +case 4096:return"SemanticsFlag.namesRoute" +case 8192:return"SemanticsFlag.isHidden" +case 16384:return"SemanticsFlag.isImage" +case 32768:return"SemanticsFlag.isLiveRegion" +case 65536:return"SemanticsFlag.hasToggledState" +case 131072:return"SemanticsFlag.isToggled" +case 262144:return"SemanticsFlag.hasImplicitScrolling" +case 524288:return"SemanticsFlag.isMultiline" +case 1048576:return"SemanticsFlag.isReadOnly" +case 2097152:return"SemanticsFlag.isFocusable" +case 4194304:return"SemanticsFlag.isLink" +case 8388608:return"SemanticsFlag.isSlider" +case 16777216:return"SemanticsFlag.isKeyboardKey" +case 33554432:return"SemanticsFlag.isCheckStateMixed"}return""}} +A.YH.prototype={} +A.jV.prototype={ +D(){return"PlaceholderAlignment."+this.b}} +A.eT.prototype={ +j(a){var s=B.Dj.i(0,this.a) +s.toString +return s}} +A.ju.prototype={ +k(a,b){if(b==null)return!1 +if(J.J(b)!==A.w(this))return!1 +return b instanceof A.ju&&b.a===this.a&&b.b===this.b}, +gu(a){return A.L(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a){return"FontVariation('"+this.a+"', "+A.h(this.b)+")"}} +A.iE.prototype={ +D(){return"TextAlign."+this.b}} +A.v3.prototype={ +D(){return"TextBaseline."+this.b}} +A.v6.prototype={ +k(a,b){if(b==null)return!1 +return b instanceof A.v6&&b.a===this.a}, +gu(a){return B.f.gu(this.a)}, +j(a){var s,r=this.a +if(r===0)return"TextDecoration.none" +s=A.a([],t.s) +if((r&1)!==0)s.push("underline") +if((r&2)!==0)s.push("overline") +if((r&4)!==0)s.push("lineThrough") +if(s.length===1)return"TextDecoration."+s[0] +return"TextDecoration.combine(["+B.b.bf(s,", ")+"])"}} +A.ZO.prototype={ +D(){return"TextDecorationStyle."+this.b}} +A.Fw.prototype={ +D(){return"TextLeadingDistribution."+this.b}} +A.Ft.prototype={ +k(a,b){var s +if(b==null)return!1 +if(J.J(b)!==A.w(this))return!1 +if(b instanceof A.Ft)s=b.c===this.c +else s=!1 +return s}, +gu(a){return A.L(!0,!0,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a){return"TextHeightBehavior(applyHeightToFirstAscent: true, applyHeightToLastDescent: true, leadingDistribution: "+this.c.j(0)+")"}} +A.kd.prototype={ +D(){return"TextDirection."+this.b}} +A.iF.prototype={ +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.iF&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d&&b.e===s.e}, +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a){var s=this +return"TextBox.fromLTRBD("+B.c.M(s.a,1)+", "+B.c.M(s.b,1)+", "+B.c.M(s.c,1)+", "+B.c.M(s.d,1)+", "+s.e.j(0)+")"}} +A.v2.prototype={ +D(){return"TextAffinity."+this.b}} +A.bo.prototype={ +k(a,b){if(b==null)return!1 +if(J.J(b)!==A.w(this))return!1 +return b instanceof A.bo&&b.a===this.a&&b.b===this.b}, +gu(a){return A.L(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a){return A.w(this).j(0)+"(offset: "+this.a+", affinity: "+this.b.j(0)+")"}} +A.cD.prototype={ +gkd(){return this.a>=0&&this.b>=0}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +return b instanceof A.cD&&b.a===this.a&&b.b===this.b}, +gu(a){return A.L(B.f.gu(this.a),B.f.gu(this.b),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a){return"TextRange(start: "+this.a+", end: "+this.b+")"}} +A.jT.prototype={ +k(a,b){if(b==null)return!1 +if(J.J(b)!==A.w(this))return!1 +return b instanceof A.jT&&b.a===this.a}, +gu(a){return B.c.gu(this.a)}, +j(a){return A.w(this).j(0)+"(width: "+A.h(this.a)+")"}} +A.zb.prototype={ +D(){return"BoxHeightStyle."+this.b}} +A.Oz.prototype={ +D(){return"BoxWidthStyle."+this.b}} +A.oG.prototype={ +D(){return"TileMode."+this.b}} +A.l7.prototype={} +A.EU.prototype={} +A.zf.prototype={ +D(){return"Brightness."+this.b}} +A.OL.prototype={ +k(a,b){if(b==null)return!1 +return this===b}, +gu(a){return A.E.prototype.gu.call(this,this)}} +A.BA.prototype={ +k(a,b){var s +if(b==null)return!1 +if(J.J(b)!==A.w(this))return!1 +if(b instanceof A.BA)s=!0 +else s=!1 +return s}, +gu(a){return A.L(null,null,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a){return"GestureSettings(physicalTouchSlop: null, physicalDoubleTapSlop: null)"}} +A.a_N.prototype={} +A.yW.prototype={ +gp(a){return a.length}} +A.yX.prototype={ +a3(a,b){return A.f5(a.get(b))!=null}, +i(a,b){return A.f5(a.get(b))}, +P(a,b){var s,r,q=a.entries() +for(;!0;){s=q.next() +r=s.done +r.toString +if(r)return +r=s.value[0] +r.toString +b.$2(r,A.f5(s.value[1]))}}, +gbg(a){var s=A.a([],t.s) +this.P(a,new A.Oi(s)) +return s}, +gaJ(a){var s=A.a([],t.vp) +this.P(a,new A.Oj(s)) +return s}, +gp(a){var s=a.size +s.toString +return s}, +gS(a){var s=a.size +s.toString +return s===0}, +gbv(a){var s=a.size +s.toString +return s!==0}, +l(a,b,c){throw A.d(A.T("Not supported"))}, +bq(a,b,c){throw A.d(A.T("Not supported"))}, +v(a,b){throw A.d(A.T("Not supported"))}, +$iay:1} +A.Oi.prototype={ +$2(a,b){return this.a.push(a)}, +$S:10} +A.Oj.prototype={ +$2(a,b){return this.a.push(b)}, +$S:10} +A.yY.prototype={ +gp(a){return a.length}} +A.je.prototype={} +A.CU.prototype={ +gp(a){return a.length}} +A.Gt.prototype={} +A.q2.prototype={ +aq(){return new A.Gv(null,null,B.m)}} +A.Gv.prototype={ +mW(){var s=0,r=A.Y(t.z),q=this,p,o +var $async$mW=A.Z(function(a,b){if(a===1)return A.V(b,r) +while(true)switch(s){case 0:o=q.a.x +s=o!=null?2:3 +break +case 2:s=4 +return A.a1(A.S_(o,t.z),$async$mW) +case 4:case 3:if(q.c!=null){q.a.toString +p=q.d +p===$&&A.c() +p.a2h(0)}return A.W(null,r)}}) +return A.X($async$mW,r)}, +WW(){var s=this.d +s===$&&A.c() +s.ey(0).bw(new A.a0v(this),t.P)}, +aM(){var s,r,q=this +q.bb() +q.a.toString +s=A.d9(null,B.bI,null,null,q) +q.d!==$&&A.dj() +q.d=s +r=new A.Ic(s,$.ae().c9(),$.b7()) +s.aX() +s=s.bY$ +s.b=!0 +s.a.push(r.gdu()) +q.e!==$&&A.dj() +q.e=r +if(q.a.y)q.mW()}, +aQ(a){var s,r,q=this +q.bi(a) +s=q.a +s.toString +if(2e6!==B.bI.a){r=q.d +r===$&&A.c() +r.e=B.bI}s=s.y +if(s!==a.y)if(s)q.mW() +else q.WW() +q.a.toString}, +m(){var s=this.d +s===$&&A.c() +s.m() +this.P2()}, +N(a){var s,r,q=this,p=null,o=q.e +o===$&&A.c() +s=q.a.Q +if(o.b!==s){o.b=s +o.ao()}r=q.f +if(r===$){r!==$&&A.ap() +r=q.f=new A.av(0.3,0,t.a7)}if(o.c!==r){o.c=r +o.ao()}q.a.toString +if(o.d!==2){o.d=2 +o.ao()}s=q.a +s=new A.eM(s.e,p,p,p,p,p,s.f) +if(!J.e(o.e,s)){o.e=s +o.ao()}q.a.toString +if(o.f!==0.7){o.f=0.7 +o.ao()}return new A.fD(A.PJ(q.a.c,p,p,o),p)}} +A.a0v.prototype={ +$1(a){var s=this.a +if(s.c!=null){s=s.d +s===$&&A.c() +s.eC(0)}}, +$S:17} +A.Ic.prototype={ +aC(a,b){var s,r,q,p,o,n,m,l,k,j=this,i=j.e.a +i.toString +s=j.c +s.toString +r=j.a +q=s.V(0,r.gn(r)) +p=$.ae().b9() +p.sac(0,A.U(B.c.bd(255*q),i.gn(i)>>>16&255,i.gn(i)>>>8&255,i.gn(i)&255)) +p.sco(0,B.aj) +i=b.a +s=b.b +o=Math.min(i,s)/2 +n=j.b +n.toString +r=r.x +r===$&&A.c() +m=n.V(0,r) +r=j.r +r.fd(0) +i=0+i/2 +s=0+s/2 +l=1 +while(!0){n=j.d +n.toString +if(!(l<=n))break +n=j.f +n.toString +k=A.k0(new A.q(i,s),o+o*n*l*m) +r.FP(0,j.e.ti(k,B.q),B.h) +a.cs(r,p);++l}}, +iw(a){return!1}, +nZ(a){return null}, +goU(){return null}, +tI(a){return!1}, +j(a){return"#"+A.bs(this)}} +A.y3.prototype={ +m(){var s=this,r=s.dH$ +if(r!=null)r.H(0,s.gn0()) +s.dH$=null +s.aW()}, +c8(){this.dV() +this.d4() +this.n1()}} +A.Zn.prototype={ +gC(a){var s=this,r=s.d +return r==null?s.d=B.d.am(s.a,s.b,s.c):r}, +t(){return this.PP(1,this.c)}, +PP(a,b){var s,r,q,p,o,n,m,l,k,j=this +if(a>0){s=j.c +for(r=j.a,q=r.length,p=176;ss;){p=k.c=q-1 +o=B.d.ah(r,p) +if((o&64512)!==56320){p=k.d=B.d.a8(j,k.d&240|A.yw(o)) +if(((p>=208?k.d=A.a9A(r,s,k.c,p):p)&1)===0)return q +continue}if(p>=s){n=B.d.ah(r,p-1) +if((n&64512)===55296){m=A.kF(n,o) +p=--k.c}else m=2}else m=2 +l=k.d=B.d.a8(j,k.d&240|m) +if(((l>=208?k.d=A.a9A(r,s,p,l):l)&1)===0)return q}p=k.d=B.d.a8(j,k.d&240|15) +if(((p>=208?k.d=A.a9A(r,s,q,p):p)&1)===0)return k.c +return-1}} +A.BF.prototype={ +pi(a){var s=this.b[a] +if(s==null){this.$ti.c.a(null) +s=null}return s}, +gp(a){return this.c}, +j(a){var s=this.b +return A.abF(A.eG(s,0,A.f4(this.c,"count",t.S),A.ac(s).c),"(",")")}, +Q0(a,b){var s,r,q,p,o,n,m,l,k,j=this,i=b*2+2 +for(s=j.a,r=j.$ti.c;q=j.c,i0){j.b[b]=k +b=p}}j.b[b]=a}} +A.CE.prototype={ +N(a){return new A.t2(B.zo,"Avatar Glow Demo",A.adj(null,!0),null)}} +A.rr.prototype={ +aq(){return new A.Ih(B.m)}} +A.Ih.prototype={ +N(a){var s,r=this,q=null,p="assets/images/dart.png",o=A.al(a),n=r.d,m=t.nA +o=A.Px(q,A.aji(A.a([A.q3(n,A.jM(B.O,A.P1(B.ck,A.T0(p,50),30),B.w,q,8,q,q,B.bd,q,q,B.aD),B.an,B.i,B.b_,q),B.hy,A.q3(n,B.DR,B.an,B.i,B.b_,B.cl)],m),B.oV),B.w,o.fr,q,q,q,q,q,B.z5,q,q,q) +n=r.d +m=A.a([o,B.hy,A.acH(A.a([A.q3(n,A.jM(B.O,A.P1(B.ck,A.T0("assets/images/flutter.png",60),40),B.w,q,8,q,q,B.bd,q,q,B.aD),B.an,B.h1,B.b_,q),A.q3(n,A.jM(B.O,A.P1(B.ck,A.T0("assets/images/love.png",60),40),B.w,q,8,q,q,B.bd,q,q,B.aD),B.an,B.h1,B.b_,q)],m),B.fh,B.De,B.oW),B.hy,A.q3(r.d,A.jM(B.O,A.P1(B.ck,A.T0(p,50),30),B.w,q,8,q,q,B.bd,q,q,B.aD),B.an,B.DL,B.b_,q)],m) +n=A.aL([null,0],t.st,t.S) +o=!0 +o=o?B.vs:q +s=r.d +return new A.uf(new A.pZ(B.LJ,new A.K4(q,q,1/0,56),q),new A.Ca(new A.Z_(!0,!0,!0,m,n),q,B.ba,!1,q,q,o,!1,q,5,B.bf,B.Fs,q,B.aR,q),A.q3(s,A.abv(q,A.abu(s?B.zs:B.zt,B.i,q),42,new A.a2j(r),q,q),B.an,B.h1,B.b_,q),B.x3,new A.q7(A.al(a).fr,B.w2,B.f4,8,q),q)}} +A.a2j.prototype={ +$0(){var s=this.a +s.aA(new A.a2i(s))}, +$S:0} +A.a2i.prototype={ +$0(){var s=this.a +return s.d=!s.d}, +$S:0} +A.h_.prototype={ +D(){return"AnimationStatus."+this.b}} +A.ca.prototype={ +j(a){return"#"+A.bs(this)+"("+A.h(this.t9())+")"}, +t9(){switch(this.gaP(this)){case B.ag:return"\u25b6" +case B.a6:return"\u25c0" +case B.J:return"\u23ed" +case B.F:return"\u23ee"}}} +A.oR.prototype={ +D(){return"_AnimationDirection."+this.b}} +A.yQ.prototype={ +D(){return"AnimationBehavior."+this.b}} +A.mH.prototype={ +gn(a){var s=this.x +s===$&&A.c() +return s}, +sn(a,b){var s=this +s.eC(0) +s.vv(b) +s.ao() +s.mt()}, +gdP(){var s=this.r +if(!(s!=null&&s.a!=null))return 0 +s=this.w +s.toString +return s.dr(0,this.y.a/1e6)}, +vv(a){var s=this,r=s.a,q=s.b,p=s.x=A.O(a,r,q) +if(p===r)s.Q=B.F +else if(p===q)s.Q=B.J +else s.Q=s.z===B.a9?B.ag:B.a6}, +gaP(a){var s=this.Q +s===$&&A.c() +return s}, +j_(a,b){var s=this +s.z=B.a9 +if(b!=null)s.sn(0,b) +return s.Bo(s.b)}, +c5(a){return this.j_(a,null)}, +K0(a,b){this.z=B.hN +return this.Bo(this.a)}, +ey(a){return this.K0(a,null)}, +js(a,b,c){var s,r,q,p,o,n,m=this,l=$.Yk.xI$ +l===$&&A.c() +if((l.a&4)!==0)switch(m.d.a){case 0:s=0.05 +break +case 1:s=1 +break +default:s=1}else s=1 +if(c==null){r=m.b-m.a +if(isFinite(r)){l=m.x +l===$&&A.c() +q=Math.abs(a-l)/r}else q=1 +if(m.z===B.hN&&m.f!=null){l=m.f +l.toString +p=l}else{l=m.e +l.toString +p=l}o=new A.aQ(B.c.bd(p.a*q))}else{l=m.x +l===$&&A.c() +o=a===l?B.r:c}m.eC(0) +l=o.a +if(l===B.r.a){l=m.x +l===$&&A.c() +if(l!==a){m.x=A.O(a,m.a,m.b) +m.ao()}m.Q=m.z===B.a9?B.J:B.F +m.mt() +return A.a8I()}n=m.x +n===$&&A.c() +return m.wc(new A.a2C(l*s/1e6,n,a,b,B.b8))}, +Bo(a){return this.js(a,B.ae,null)}, +a2h(a){var s,r,q=this,p=q.a,o=q.b,n=q.e +q.eC(0) +s=q.x +s===$&&A.c() +r=n.a/1e6 +s=o===p?0:s/(o-p)*r +return q.wc(new A.a3R(p,o,!1,q.gRe(),r,s,B.b8))}, +Rf(a){this.z=a +this.Q=a===B.a9?B.ag:B.a6 +this.mt()}, +wc(a){var s,r=this +r.w=a +r.y=B.r +r.x=A.O(a.cN(0,0),r.a,r.b) +s=r.r.mh(0) +r.Q=r.z===B.a9?B.ag:B.a6 +r.mt() +return s}, +mi(a,b){this.y=this.w=null +this.r.mi(0,b)}, +eC(a){return this.mi(a,!0)}, +m(){var s=this +s.r.m() +s.r=null +s.bT$.L(0) +s.bY$.L(0) +s.tU()}, +mt(){var s=this,r=s.Q +r===$&&A.c() +if(s.as!==r){s.as=r +s.oo(r)}}, +PQ(a){var s,r=this +r.y=a +s=a.a/1e6 +r.x=A.O(r.w.cN(0,s),r.a,r.b) +if(r.w.j7(s)){r.Q=r.z===B.a9?B.J:B.F +r.mi(0,!1)}r.ao() +r.mt()}, +t9(){var s,r=this.r,q=r==null,p=!q&&r.a!=null?"":"; paused" +if(q)s="; DISPOSED" +else s=r.b?"; silenced":"" +r=this.tT() +q=this.x +q===$&&A.c() +return A.h(r)+" "+B.c.M(q,3)+p+s}} +A.a2C.prototype={ +cN(a,b){var s,r,q=this,p=A.O(b/q.b,0,1) +if(p===0)return q.c +else{s=q.d +if(p===1)return s +else{r=q.c +return r+(s-r)*q.e.V(0,p)}}}, +dr(a,b){return(this.cN(0,b+0.001)-this.cN(0,b-0.001))/0.002}, +j7(a){return a>this.b}} +A.a3R.prototype={ +cN(a,b){var s=this,r=b+s.r,q=s.f,p=B.c.cv(r/q,1) +B.c.iz(r,q) +s.e.$1(B.a9) +q=A.M(s.b,s.c,p) +q.toString +return q}, +dr(a,b){return(this.c-this.b)/this.f}, +j7(a){return!1}} +A.Gk.prototype={} +A.Gl.prototype={} +A.Gm.prototype={} +A.Ge.prototype={ +Z(a,b){}, +H(a,b){}, +e0(a){}, +cn(a){}, +gaP(a){return B.J}, +gn(a){return 1}, +j(a){return"kAlwaysCompleteAnimation"}} +A.Gf.prototype={ +Z(a,b){}, +H(a,b){}, +e0(a){}, +cn(a){}, +gaP(a){return B.F}, +gn(a){return 0}, +j(a){return"kAlwaysDismissedAnimation"}} +A.pV.prototype={ +Z(a,b){return this.gaZ(this).Z(0,b)}, +H(a,b){return this.gaZ(this).H(0,b)}, +e0(a){return this.gaZ(this).e0(a)}, +cn(a){return this.gaZ(this).cn(a)}, +gaP(a){var s=this.gaZ(this) +return s.gaP(s)}} +A.tO.prototype={ +saZ(a,b){var s,r=this,q=r.c +if(b==q)return +if(q!=null){r.a=q.gaP(q) +q=r.c +r.b=q.gn(q) +if(r.iV$>0)r.qO()}r.c=b +if(b!=null){if(r.iV$>0)r.qN() +q=r.b +s=r.c +s=s.gn(s) +if(q==null?s!=null:q!==s)r.ao() +q=r.a +s=r.c +if(q!=s.gaP(s)){q=r.c +r.oo(q.gaP(q))}r.b=r.a=null}}, +qN(){var s=this,r=s.c +if(r!=null){r.Z(0,s.gdu()) +s.c.e0(s.gJ8())}}, +qO(){var s=this,r=s.c +if(r!=null){r.H(0,s.gdu()) +s.c.cn(s.gJ8())}}, +gaP(a){var s=this.c +if(s!=null)s=s.gaP(s) +else{s=this.a +s.toString}return s}, +gn(a){var s=this.c +if(s!=null)s=s.gn(s) +else{s=this.b +s.toString}return s}, +j(a){var s=this,r=s.c +if(r==null)return"ProxyAnimation(null; "+A.h(s.tT())+" "+B.c.M(s.gn(s),3)+")" +return r.j(0)+"\u27a9ProxyAnimation"}} +A.fE.prototype={ +Z(a,b){this.aX() +this.a.Z(0,b)}, +H(a,b){this.a.H(0,b) +this.jT()}, +qN(){this.a.e0(this.gkT())}, +qO(){this.a.cn(this.gkT())}, +q0(a){this.oo(this.Ec(a))}, +gaP(a){var s=this.a +return this.Ec(s.gaP(s))}, +gn(a){var s=this.a +return 1-s.gn(s)}, +Ec(a){switch(a.a){case 1:return B.a6 +case 2:return B.ag +case 3:return B.F +case 0:return B.J}}, +j(a){return this.a.j(0)+"\u27aaReverseAnimation"}} +A.qy.prototype={ +Fi(a){var s=this +switch(a.a){case 0:case 3:s.d=null +break +case 1:if(s.d==null)s.d=B.ag +break +case 2:if(s.d==null)s.d=B.a6 +break}}, +gFA(){if(this.c!=null){var s=this.d +if(s==null){s=this.a +s=s.gaP(s)}s=s!==B.a6}else s=!0 +return s}, +m(){this.a.cn(this.gFh())}, +gn(a){var s=this,r=s.gFA()?s.b:s.c,q=s.a,p=q.gn(q) +if(r==null)return p +if(p===0||p===1)return p +return r.V(0,p)}, +j(a){var s=this,r=s.c +if(r==null)return s.a.j(0)+"\u27a9"+s.b.j(0) +if(s.gFA())return s.a.j(0)+"\u27a9"+s.b.j(0)+"\u2092\u2099/"+r.j(0) +return s.a.j(0)+"\u27a9"+s.b.j(0)+"/"+r.j(0)+"\u2092\u2099"}, +gaZ(a){return this.a}} +A.LQ.prototype={ +D(){return"_TrainHoppingMode."+this.b}} +A.me.prototype={ +q0(a){if(a!==this.e){this.ao() +this.e=a}}, +gaP(a){var s=this.a +return s.gaP(s)}, +XJ(){var s,r,q=this,p=q.b +if(p!=null){switch(q.c.a){case 0:p=p.gn(p) +s=q.a +r=p<=s.gn(s) +break +case 1:p=p.gn(p) +s=q.a +r=p>=s.gn(s) +break +default:r=!1}if(r){p=q.a +s=q.gkT() +p.cn(s) +p.H(0,q.gww()) +p=q.b +q.a=p +q.b=null +p.e0(s) +s=q.a +q.q0(s.gaP(s))}}else r=!1 +p=q.a +p=p.gn(p) +if(p!==q.f){q.ao() +q.f=p}if(r&&q.d!=null)q.d.$0()}, +gn(a){var s=this.a +return s.gn(s)}, +m(){var s,r,q=this +q.a.cn(q.gkT()) +s=q.gww() +q.a.H(0,s) +q.a=null +r=q.b +if(r!=null)r.H(0,s) +q.b=null +q.bY$.L(0) +q.bT$.L(0) +q.tU()}, +j(a){var s=this +if(s.b!=null)return A.h(s.a)+"\u27a9TrainHoppingAnimation(next: "+A.h(s.b)+")" +return A.h(s.a)+"\u27a9TrainHoppingAnimation(no next)"}} +A.n1.prototype={ +qN(){var s,r=this,q=r.a,p=r.gDw() +q.Z(0,p) +s=r.gDx() +q.e0(s) +q=r.b +q.Z(0,p) +q.e0(s)}, +qO(){var s,r=this,q=r.a,p=r.gDw() +q.H(0,p) +s=r.gDx() +q.cn(s) +q=r.b +q.H(0,p) +q.cn(s)}, +gaP(a){var s=this.b +if(s.gaP(s)===B.ag||s.gaP(s)===B.a6)return s.gaP(s) +s=this.a +return s.gaP(s)}, +j(a){return"CompoundAnimation("+this.a.j(0)+", "+this.b.j(0)+")"}, +UB(a){var s=this +if(s.gaP(s)!=s.c){s.c=s.gaP(s) +s.oo(s.gaP(s))}}, +UA(){var s=this +if(!J.e(s.gn(s),s.d)){s.d=s.gn(s) +s.ao()}}} +A.pU.prototype={ +gn(a){var s,r=this.a +r=r.gn(r) +s=this.b +s=s.gn(s) +return Math.min(A.kC(r),A.kC(s))}} +A.vI.prototype={} +A.vJ.prototype={} +A.vK.prototype={} +A.Hg.prototype={} +A.K6.prototype={} +A.K7.prototype={} +A.K8.prototype={} +A.KB.prototype={} +A.KC.prototype={} +A.LN.prototype={} +A.LO.prototype={} +A.LP.prototype={} +A.tC.prototype={ +V(a,b){return this.ji(b)}, +ji(a){throw A.d(A.c9(null))}, +j(a){return"ParametricCurve"}} +A.eP.prototype={ +V(a,b){if(b===0||b===1)return b +return this.N9(0,b)}} +A.wf.prototype={ +ji(a){return a}} +A.hk.prototype={ +ji(a){var s=this.a +a=A.O((a-s)/(this.b-s),0,1) +if(a===0||a===1)return a +return this.c.V(0,a)}, +j(a){var s=this,r=s.c +if(!(r instanceof A.wf))return"Interval("+A.h(s.a)+"\u22ef"+A.h(s.b)+")\u27a9"+r.j(0) +return"Interval("+A.h(s.a)+"\u22ef"+A.h(s.b)+")"}} +A.FF.prototype={ +ji(a){return a<0.5?0:1}} +A.dK.prototype={ +Cp(a,b,c){var s=1-c +return 3*a*s*s*c+3*b*s*c*c+c*c*c}, +ji(a){var s,r,q,p,o,n,m=this +for(s=m.a,r=m.c,q=0,p=1;!0;){o=(q+p)/2 +n=m.Cp(s,r,o) +if(Math.abs(a-n)<0.001)return m.Cp(m.b,m.d,o) +if(n"))}} +A.aR.prototype={ +gn(a){var s=this.a +return this.b.V(0,s.gn(s))}, +j(a){var s=this.a,r=this.b +return s.j(0)+"\u27a9"+r.j(0)+"\u27a9"+A.h(r.V(0,s.gn(s)))}, +t9(){return A.h(this.tT())+" "+this.b.j(0)}, +gaZ(a){return this.a}} +A.fQ.prototype={ +V(a,b){return this.b.V(0,this.a.V(0,b))}, +j(a){return this.a.j(0)+"\u27a9"+this.b.j(0)}} +A.av.prototype={ +cB(a){var s=this.a +return A.m(this).h("av.T").a(J.ai1(s,J.ai2(J.ai3(this.b,s),a)))}, +V(a,b){var s,r=this +if(b===0){s=r.a +return s==null?A.m(r).h("av.T").a(s):s}if(b===1){s=r.b +return s==null?A.m(r).h("av.T").a(s):s}return r.cB(b)}, +j(a){return"Animatable("+A.h(this.a)+" \u2192 "+A.h(this.b)+")"}, +swP(a){return this.a=a}, +slf(a,b){return this.b=b}} +A.ud.prototype={ +cB(a){return this.c.cB(1-a)}} +A.h6.prototype={ +cB(a){return A.r(this.a,this.b,a)}} +A.tX.prototype={ +cB(a){return A.acy(this.a,this.b,a)}} +A.jA.prototype={ +cB(a){var s,r=this.a +r.toString +s=this.b +s.toString +return B.c.bd(r+(s-r)*a)}} +A.i8.prototype={ +V(a,b){if(b===0||b===1)return b +return this.a.V(0,b)}, +j(a){return"CurveTween(curve: "+this.a.j(0)+")"}} +A.y2.prototype={} +A.vl.prototype={ +Pu(a,b){var s,r,q,p,o,n,m,l=this.a +B.b.I(l,a) +for(s=l.length,r=0,q=0;q=n&&b"}} +A.eO.prototype={ +gn(a){return this.b.a}, +gmK(){var s=this +return!s.e.k(0,s.f)||!s.x.k(0,s.y)||!s.r.k(0,s.w)||!s.z.k(0,s.Q)}, +gmI(){var s=this +return!s.e.k(0,s.r)||!s.f.k(0,s.w)||!s.x.k(0,s.z)||!s.y.k(0,s.Q)}, +gmJ(){var s=this +return!s.e.k(0,s.x)||!s.f.k(0,s.y)||!s.r.k(0,s.z)||!s.w.k(0,s.Q)}, +JW(a){var s,r,q,p,o,n=this,m=null +if(n.gmK()){s=a.aj(t.by) +r=s==null?m:s.f.c.gng() +if(r==null){r=A.dl(a,B.vk) +r=r==null?m:r.d +q=r}else q=r +if(q==null)q=B.U}else q=B.U +if(n.gmI()){r=A.dl(a,B.vh) +r=r==null?m:r.Q +p=r===!0}else p=!1 +if(n.gmJ())A.ajr(a) +switch(q.a){case 1:switch(0){case 0:o=p?n.r:n.e +break}break +case 0:switch(0){case 0:o=p?n.w:n.f +break}break +default:o=m}return new A.eO(o,n.c,m,n.e,n.f,n.r,n.w,n.x,n.y,n.z,n.Q,0)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.eO&&b.b.a===s.b.a&&b.e.k(0,s.e)&&b.f.k(0,s.f)&&b.r.k(0,s.r)&&b.w.k(0,s.w)&&b.x.k(0,s.x)&&b.y.k(0,s.y)&&b.z.k(0,s.z)&&b.Q.k(0,s.Q)}, +gu(a){var s=this +return A.L(s.b.a,s.e,s.f,s.r,s.x,s.y,s.w,s.Q,s.z,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a){var s=this,r=new A.PB(s),q=A.a([r.$2("color",s.e)],t.s) +if(s.gmK())q.push(r.$2("darkColor",s.f)) +if(s.gmI())q.push(r.$2("highContrastColor",s.r)) +if(s.gmK()&&s.gmI())q.push(r.$2("darkHighContrastColor",s.w)) +if(s.gmJ())q.push(r.$2("elevatedColor",s.x)) +if(s.gmK()&&s.gmJ())q.push(r.$2("darkElevatedColor",s.y)) +if(s.gmI()&&s.gmJ())q.push(r.$2("highContrastElevatedColor",s.z)) +if(s.gmK()&&s.gmI()&&s.gmJ())q.push(r.$2("darkHighContrastElevatedColor",s.Q)) +r=s.c +if(r==null)r="CupertinoDynamicColor" +q=B.b.bf(q,", ") +return r+"("+q+", resolved by: UNRESOLVED)"}} +A.PB.prototype={ +$2(a,b){var s=b.k(0,this.a.b)?"*":"" +return s+a+" = "+b.j(0)+s}, +$S:136} +A.Hb.prototype={} +A.Aj.prototype={ +Y(a){var s=this.f,r=A.ajn(s,a) +return J.e(r,s)?this:this.e2(r)}, +nu(a,b,c,d,e,f,g,h){var s,r=this,q=g==null?r.a:g,p=b==null?r.b:b,o=h==null?r.c:h,n=c==null?r.d:c,m=e==null?r.e:e,l=a==null?r.f:a +if(d==null){s=r.r +s=s==null?null:A.O(s,0,1)}else s=d +return A.aaP(l,p,n,s,m,f==null?r.w:f,q,o)}, +e2(a){return this.nu(a,null,null,null,null,null,null,null)}} +A.Hc.prototype={} +A.Hd.prototype={ +yg(a){return a.glE(a)==="en"}, +fF(a,b){return new A.c1(B.w6,t.yK)}, +tK(a){return!1}, +j(a){return"DefaultCupertinoLocalizations.delegate(en_US)"}} +A.Ax.prototype={$iPC:1} +A.PD.prototype={ +$0(){return A.ajo(this.a)}, +$S:50} +A.PE.prototype={ +$0(){var s=this.a,r=s.a +r.toString +s=s.at +s.toString +r.ZM() +return new A.vO(s,r)}, +$S(){return this.b.h("vO<0>()")}} +A.Ak.prototype={ +N(a){var s,r=this,q=a.aj(t.I) +q.toString +s=q.w +q=r.e +return A.ad6(A.ad6(new A.At(q,r.f,q,null),r.c,s,!0),r.d,s,!1)}} +A.oX.prototype={ +aq(){return new A.oY(B.m,this.$ti.h("oY<1>"))}, +ZW(){return this.d.$0()}, +a1H(){return this.e.$0()}} +A.oY.prototype={ +aM(){var s,r=this +r.bb() +s=A.a7W(r,null) +s.ay=r.gSN() +s.ch=r.gSP() +s.CW=r.gSL() +s.cx=r.gSI() +r.e=s}, +m(){var s=this.e +s===$&&A.c() +s.k3.L(0) +s.u1() +this.aW()}, +SO(a){this.d=this.a.a1H()}, +SQ(a){var s,r,q=this.d +q.toString +s=a.c +s.toString +r=this.c +r=this.C0(s/r.geh(r).a) +q=q.a +s=q.x +s===$&&A.c() +q.sn(0,s-r)}, +SM(a){var s,r=this,q=r.d +q.toString +s=r.c +q.Hl(r.C0(a.a.a.a/s.geh(s).a)) +r.d=null}, +SJ(){var s=this.d +if(s!=null)s.Hl(0) +this.d=null}, +W6(a){var s +if(this.a.ZW()){s=this.e +s===$&&A.c() +s.XZ(a)}}, +C0(a){var s=this.c.aj(t.I) +s.toString +switch(s.w.a){case 0:return-a +case 1:return a}}, +N(a){var s,r,q=null,p=a.aj(t.I) +p.toString +s=t.w +r=p.w===B.q?A.cL(a,B.b9,s).w.f.a:A.cL(a,B.b9,s).w.f.c +r=Math.max(r,20) +return A.a8A(B.i2,A.a([this.a.c,new A.DB(0,0,0,r,A.Cc(B.dw,q,q,this.gW5(),q,q,q),q)],t.nA),B.GN)}} +A.vO.prototype={ +Hl(a){var s,r,q,p,o=this +if(Math.abs(a)>=1)s=a<=0 +else{r=o.a.x +r===$&&A.c() +s=r>0.5}if(s){r=o.a +q=r.x +q===$&&A.c() +q=A.M(800,0,q) +q.toString +q=A.c4(0,Math.min(B.c.cJ(q),300)) +r.z=B.a9 +r.js(1,B.jl,q)}else{o.b.fa() +r=o.a +q=r.r +if(q!=null&&q.a!=null){q=r.x +q===$&&A.c() +q=A.M(0,800,q) +q.toString +q=A.c4(0,B.c.cJ(q)) +r.z=B.hN +r.js(0,B.jl,q)}}q=r.r +if(q!=null&&q.a!=null){p=A.b_("animationStatusCallback") +p.b=new A.a1f(o,p) +q=p.ap() +r.aX() +r=r.bT$ +r.b=!0 +r.a.push(q)}else o.b.qQ()}} +A.a1f.prototype={ +$1(a){var s=this.a +s.b.qQ() +s.a.cn(this.b.ap())}, +$S:3} +A.fR.prototype={ +cl(a,b){var s +if(a instanceof A.fR){s=A.a1g(a,this,b) +s.toString +return s}s=A.a1g(null,this,b) +s.toString +return s}, +cm(a,b){var s +if(a instanceof A.fR){s=A.a1g(this,a,b) +s.toString +return s}s=A.a1g(this,null,b) +s.toString +return s}, +GL(a){return new A.a1j(this,a)}, +k(a,b){var s,r +if(b==null)return!1 +if(J.J(b)!==A.w(this))return!1 +if(b instanceof A.fR){s=b.a +r=this.a +r=s==null?r==null:s===r +s=r}else s=!1 +return s}, +gu(a){return J.p(this.a)}} +A.a1h.prototype={ +$1(a){var s=A.r(null,a,this.a) +s.toString +return s}, +$S:103} +A.a1i.prototype={ +$1(a){var s=A.r(null,a,1-this.a) +s.toString +return s}, +$S:103} +A.a1j.prototype={ +yU(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h=this.b.a +if(h==null)return +s=c.e +r=s.a +q=0.05*r +p=s.b +o=q/(h.length-1) +switch(c.d.a){case 0:n=b.a+r +m=1 +break +case 1:n=b.a +m=-1 +break +default:n=null +m=null}for(s=b.b,r=s+p,l=0,k=0;k0)A.rn() +break +case 0:if(Math.abs(b.a.a)<10&&Math.abs(a.a-r.db)>0)A.rn() +break}}, +m(){var s=this.cy +s===$&&A.c() +s.m() +this.AP()}} +A.a1l.prototype={ +$0(){this.a.oH()}, +$S:0} +A.a1k.prototype={ +$1(a){return A.rn()}, +$S:134} +A.Am.prototype={ +k(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.J(b)!==A.w(r))return!1 +if(b instanceof A.Am)if(b.a.k(0,r.a))if(b.b.k(0,r.b))s=!0 +else s=!1 +else s=!1 +else s=!1 +return s}, +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.Lz.prototype={ +k(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.J(b)!==A.w(this))return!1 +return b instanceof A.Lz&&B.dr.k(0,B.dr)&&B.dq.k(0,B.dq)}, +gu(a){return A.L(B.dr,B.dq,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.He.prototype={} +A.An.prototype={ +N(a){var s=null +return new A.wa(this,A.SZ(this.d,A.aaP(this.c.glO(),s,s,s,s,s,s,s),s),s)}} +A.wa.prototype={ +bO(a){return!this.f.c.k(0,a.f.c)}} +A.qx.prototype={ +glO(){var s=this.b +return s==null?B.yy:s}, +grX(){var s=this.c +return s==null?B.jo:s}, +gzo(){var s=null,r=this.d +return r==null?new A.a1r(B.dr,B.dq,B.xc,this.glO(),s,s,s,s,s,s,s,s):r}, +gwN(){var s=this.e +return s==null?B.yz:s}, +goR(){var s=this.f +return s==null?B.jo:s}, +gwL(){var s=this.r +return s==null?!1:s}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.J(b)!==A.w(r))return!1 +if(b instanceof A.qx)if(b.gng()==r.gng())if(b.glO().k(0,r.glO()))if(b.grX().k(0,r.grX()))if(b.gzo().k(0,r.gzo()))if(b.gwN().k(0,r.gwN()))if(b.goR().k(0,r.goR())){b.gwL() +r.gwL() +s=!0}else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +return s}, +gu(a){var s=this,r=s.gng(),q=s.glO(),p=s.grX(),o=s.gzo(),n=s.gwN(),m=s.goR() +s.gwL() +return A.L(r,q,p,o,n,m,!1,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.CN.prototype={ +gng(){return this.a}} +A.a1n.prototype={} +A.a1m.prototype={} +A.a1r.prototype={} +A.Hf.prototype={} +A.a60.prototype={ +$0(){return null}, +$S:131} +A.a59.prototype={ +$0(){var s=self.window.navigator.platform,r=s==null?null:s.toLowerCase() +if(r==null)r="" +if(B.d.c3(r,"mac"))return B.aJ +if(B.d.c3(r,"win"))return B.aX +if(B.d.q(r,"iphone")||B.d.q(r,"ipad")||B.d.q(r,"ipod"))return B.al +if(B.d.q(r,"android"))return B.ak +if(self.window.matchMedia("only screen and (pointer: fine)").matches)return B.aW +return B.ak}, +$S:132} +A.kj.prototype={ +oC(a,b){var s=A.eR.prototype.gn.call(this,this) +s.toString +return J.aak(s)}, +j(a){return this.oC(a,B.ah)}} +A.ne.prototype={} +A.B6.prototype={} +A.B5.prototype={} +A.bu.prototype={ +a_7(){var s,r,q,p,o,n,m,l=this.a +if(t.hK.b(l)){s=l.gJ3(l) +r=l.j(0) +if(typeof s=="string"&&s!==r){q=r.length +p=J.aC(s) +if(q>p.gp(s)){o=B.d.yi(r,s) +if(o===q-p.gp(s)&&o>2&&B.d.am(r,o-2,o)===": "){n=B.d.am(r,0,o-2) +m=B.d.ka(n," Failed assertion:") +if(m>=0)n=B.d.am(n,0,m)+"\n"+B.d.fY(n,m+1) +l=p.zz(s)+"\n"+n}else l=null}else l=null}else l=null +if(l==null)l=r}else if(!(typeof l=="string"))l=t.yt.b(l)||t.A2.b(l)?J.dr(l):" "+A.h(l) +l=B.d.zz(l) +return l.length===0?" ":l}, +gLH(){return A.ajG(new A.RB(this).$0(),!0,B.jt)}, +bW(){return"Exception caught by "+this.c}, +j(a){A.ao5(null,B.yN,this) +return""}} +A.RB.prototype={ +$0(){return J.aix(this.a.a_7().split("\n")[0])}, +$S:33} +A.ig.prototype={ +gJ3(a){return this.j(0)}, +bW(){return"FlutterError"}, +j(a){var s,r,q=new A.dm(this.a,t.dw) +if(!q.gS(q)){s=q.gG(q) +r=J.eg(s) +s=A.eR.prototype.gn.call(r,s) +s.toString +s=J.aak(s)}else s="FlutterError" +return s}, +$ikN:1} +A.RD.prototype={ +$1(a){return A.bg(a)}, +$S:133} +A.RE.prototype={ +$1(a){return a+1}, +$S:98} +A.RF.prototype={ +$1(a){return a+1}, +$S:98} +A.a6d.prototype={ +$1(a){return B.d.q(a,"StackTrace.current")||B.d.q(a,"dart-sdk/lib/_internal")||B.d.q(a,"dart:sdk_internal")}, +$S:42} +A.HY.prototype={} +A.I_.prototype={} +A.HZ.prototype={} +A.z4.prototype={ +Pg(){var s,r,q,p,o,n,m,l,k=this,j=null +A.anE("Framework initialization") +k.P0() +$.at=k +s=t.h +r=A.cK(s) +q=A.a([],t.pX) +p=t.S +o=new A.Ie(new A.ro(A.jJ(j,j,t.tP,p),t.b4)) +n=A.a7R(!0,"Root Focus Scope",!1) +m=A.a([],t.e6) +l=$.b7() +n=n.w=new A.ri(o,n,A.az(t.b),m,l) +m=$.fI.aE$ +m===$&&A.c() +m.a=o.ga_C() +$.e3.p3$.b.l(0,o.ga_Q(),j) +o=n +s=new A.OE(new A.Is(r),q,o,A.y(t.uY,s)) +k.a1$=s +s.a=k.gSw() +s=$.aB() +s.fr=k.ga_F() +s.fx=$.ab +B.e5.mb(k.gT4()) +s=new A.Az(A.y(p,t.lv),B.pe) +B.pe.mb(s.gUC()) +k.eu$=s +k.P1() +s=t.N +A.arV("Flutter.FrameworkInitialization",A.y(s,s),"Extension") +A.anD()}, +ev(){}, +kb(){}, +a1h(a){var s,r=A.adm() +r.p0(0,"Lock events");++this.c +s=a.$0() +s.io(new A.Ot(this,r)) +return s}, +zC(){}, +j(a){return""}} +A.Ot.prototype={ +$0(){var s=this.a +if(--s.c<=0){this.b.HH(0) +s.OT() +if(s.as$.c!==0)s.Cn()}}, +$S:9} +A.a7.prototype={} +A.ei.prototype={ +Z(a,b){var s,r,q,p,o=this +if(o.gbX(o)===o.gbt().length){s=t.xR +if(o.gbX(o)===0)o.sbt(A.aU(1,null,!1,s)) +else{r=A.aU(o.gbt().length*2,null,!1,s) +for(q=0;q0){r.gbt()[s]=null +r.seJ(r.geJ()+1)}else r.pQ(s) +break}}, +m(){this.sbt($.b7()) +this.sbX(0,0)}, +ao(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this +if(f.gbX(f)===0)return +f.sel(f.gel()+1) +p=f.gbX(f) +for(s=0;s0){l=f.gbX(f)-f.geJ() +if(l*2<=f.gbt().length){k=A.aU(l,null,!1,t.xR) +for(j=0,s=0;s#"+A.bs(this)+"("+A.h(this.a)+")"}} +A.qK.prototype={ +D(){return"DiagnosticLevel."+this.b}} +A.ia.prototype={ +D(){return"DiagnosticsTreeStyle."+this.b}} +A.a3n.prototype={} +A.dv.prototype={ +oC(a,b){return this.bn(0)}, +j(a){return this.oC(a,B.ah)}} +A.eR.prototype={ +gn(a){this.Uz() +return this.at}, +Uz(){return}} +A.qL.prototype={} +A.AE.prototype={} +A.a0.prototype={ +bW(){return"#"+A.bs(this)}, +oC(a,b){var s=this.bW() +return s}, +j(a){return this.oC(a,B.ah)}} +A.PX.prototype={ +bW(){return"#"+A.bs(this)}} +A.h7.prototype={ +j(a){return this.K6(B.jt).bn(0)}, +bW(){return"#"+A.bs(this)}, +a2y(a,b){return A.a7C(a,b,this)}, +K6(a){return this.a2y(null,a)}} +A.Hs.prototype={} +A.dL.prototype={} +A.Ce.prototype={} +A.vm.prototype={ +j(a){return"[#"+A.bs(this)+"]"}} +A.dS.prototype={ +k(a,b){if(b==null)return!1 +if(J.J(b)!==A.w(this))return!1 +return A.m(this).h("dS").b(b)&&J.e(b.a,this.a)}, +gu(a){return A.L(A.w(this),this.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a){var s=A.m(this),r=s.h("dS.T"),q=this.a,p=A.bG(r)===B.Me?"<'"+A.h(q)+"'>":"<"+A.h(q)+">" +if(A.w(this)===A.bG(s.h("dS")))return"["+p+"]" +return"["+A.bG(r).j(0)+" "+p+"]"}} +A.a8Y.prototype={} +A.eV.prototype={} +A.rP.prototype={} +A.K.prototype={ +zb(a){var s=a.a,r=this.a +if(s<=r){a.a=r+1 +a.ic()}}, +ic(){}, +gbl(){return this.b}, +ak(a){this.b=a}, +ag(a){this.b=null}, +gaZ(a){return this.c}, +hP(a){var s +a.c=this +s=this.b +if(s!=null)a.ak(s) +this.zb(a)}, +iR(a){a.c=null +if(this.b!=null)a.ag(0)}} +A.be.prototype={ +gpM(){var s,r=this,q=r.c +if(q===$){s=A.cK(r.$ti.c) +r.c!==$&&A.ap() +r.c=s +q=s}return q}, +v(a,b){this.b=!0 +this.gpM().L(0) +return B.b.v(this.a,b)}, +L(a){this.b=!1 +B.b.L(this.a) +this.gpM().L(0)}, +q(a,b){var s=this,r=s.a +if(r.length<3)return B.b.q(r,b) +if(s.b){s.gpM().I(0,r) +s.b=!1}return s.gpM().q(0,b)}, +gX(a){var s=this.a +return new J.h1(s,s.length)}, +gS(a){return this.a.length===0}, +gbv(a){return this.a.length!==0}, +cL(a,b){var s=this.a,r=A.ac(s) +return b?A.a(s.slice(0),r):J.nz(s.slice(0),r.c)}, +cK(a){return this.cL(a,!0)}} +A.ro.prototype={ +B(a,b){var s=this.a,r=s.i(0,b) +s.l(0,b,(r==null?0:r)+1)}, +v(a,b){var s=this.a,r=s.i(0,b) +if(r==null)return!1 +if(r===1)s.v(0,b) +else s.l(0,b,r-1) +return!0}, +q(a,b){return this.a.a3(0,b)}, +gX(a){var s=this.a +return A.ip(s,s.r)}, +gS(a){return this.a.a===0}, +gbv(a){return this.a.a!==0}} +A.tJ.prototype={ +a2_(a,b,c){var s=this.a,r=s==null?$.yD():s,q=r.hy(0,0,b,A.fy(b),c) +if(q===s)return this +return new A.tJ(q)}, +i(a,b){var s=this.a +if(s==null)return null +return s.m0(0,0,b,J.p(b))}} +A.a4G.prototype={} +A.I7.prototype={ +hy(a,b,c,d,e){var s,r,q,p,o=B.f.mU(d,b)&31,n=this.a,m=n[o] +if(m==null)m=$.yD() +s=m.hy(0,b+5,c,d,e) +if(s===m)n=this +else{r=n.length +q=A.aU(r,null,!1,t.X) +for(p=0;p>>0,a1=c.a,a2=(a1&a0-1)>>>0,a3=a2-(a2>>>1&1431655765) +a3=(a3&858993459)+(a3>>>2&858993459) +a3=a3+(a3>>>4)&252645135 +a3+=a3>>>8 +s=a3+(a3>>>16)&63 +if((a1&a0)>>>0!==0){a=c.b +a2=2*s +r=a[a2] +q=a2+1 +p=a[q] +if(r==null){o=J.ail(p,a5+5,a6,a7,a8) +if(o===p)return c +a2=a.length +n=A.aU(a2,b,!1,t.X) +for(m=0;m>>1&1431655765) +a3=(a3&858993459)+(a3>>>2&858993459) +a3=a3+(a3>>>4)&252645135 +a3+=a3>>>8 +i=a3+(a3>>>16)&63 +if(i>=16){a1=c.TX(a5) +a1.a[a]=$.yD().hy(0,a5+5,a6,a7,a8) +return a1}else{h=2*s +g=2*i +f=A.aU(g+2,b,!1,t.X) +for(a=c.b,e=0;e>>0,f)}}}, +m0(a,b,c,d){var s,r,q,p,o=1<<(B.f.Ai(d,b)&31)>>>0,n=this.a +if((n&o)>>>0===0)return null +n=(n&o-1)>>>0 +s=n-(n>>>1&1431655765) +s=(s&858993459)+(s>>>2&858993459) +s=s+(s>>>4)&252645135 +s+=s>>>8 +n=this.b +r=2*(s+(s>>>16)&63) +q=n[r] +p=n[r+1] +if(q==null)return p.m0(0,b+5,c,d) +if(c===q)return p +return null}, +TX(a){var s,r,q,p,o,n,m,l=A.aU(32,null,!1,t.X) +for(s=this.a,r=a+5,q=this.b,p=0,o=0;o<32;++o)if((B.f.mU(s,o)&1)!==0){n=q[p] +m=p+1 +if(n==null)l[o]=q[m] +else l[o]=$.yD().hy(0,r,n,J.p(n),q[m]) +p+=2}return new A.I7(l)}} +A.w6.prototype={ +hy(a,b,c,d,e){var s,r,q,p,o,n,m,l,k,j=this,i=j.a +if(d===i){s=j.D5(c) +if(s!==-1){i=j.b +r=s+1 +q=i[r] +if(q==null?e==null:q===e)i=j +else{q=i.length +p=A.aU(q,null,!1,t.X) +for(o=0;o>>0,k).hy(0,b,c,d,e)}, +m0(a,b,c,d){var s=this.D5(c) +return s<0?null:this.b[s+1]}, +D5(a){var s,r,q=this.b,p=q.length +for(s=J.i0(a),r=0;r=s.a.length)s.w_(q) +B.Q.dA(s.a,s.b,q,a) +s.b+=r}, +mq(a,b,c){var s=this,r=c==null?s.e.length:c,q=s.b+(r-b) +if(q>=s.a.length)s.w_(q) +B.Q.dA(s.a,s.b,q,a) +s.b=q}, +Py(a){return this.mq(a,0,null)}, +w_(a){var s=this.a,r=s.length,q=a==null?0:a,p=Math.max(q,r*2),o=new Uint8Array(p) +B.Q.dA(o,0,r,s) +this.a=o}, +W0(){return this.w_(null)}, +h0(a){var s=B.f.cv(this.b,a) +if(s!==0)this.mq($.agP(),0,a-s)}, +iQ(){var s,r=this +if(r.c)throw A.d(A.a5("done() must not be called more than once on the same "+A.w(r).j(0)+".")) +s=A.lv(r.a.buffer,0,r.b) +r.a=new Uint8Array(0) +r.c=!0 +return s}} +A.tV.prototype={ +km(a){return this.a.getUint8(this.b++)}, +tl(a){var s=this.b,r=$.cG() +B.e2.zR(this.a,s,r)}, +kn(a){var s=this.a,r=A.cB(s.buffer,s.byteOffset+this.b,a) +this.b+=a +return r}, +tm(a){var s +this.h0(8) +s=this.a +B.pa.G9(s.buffer,s.byteOffset+this.b,a)}, +h0(a){var s=this.b,r=B.f.cv(s,a) +if(r!==0)this.b=s+(a-r)}} +A.fJ.prototype={ +gu(a){var s=this +return A.L(s.b,s.d,s.f,s.r,s.w,s.x,s.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s=this +if(b==null)return!1 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.fJ&&b.b===s.b&&b.d===s.d&&b.f===s.f&&b.r===s.r&&b.w===s.w&&b.x===s.x&&b.a===s.a}, +j(a){var s=this +return"StackFrame(#"+s.b+", "+s.c+":"+s.d+"/"+s.e+":"+s.f+":"+s.r+", className: "+s.w+", method: "+s.x+")"}} +A.Zb.prototype={ +$1(a){return a.length!==0}, +$S:42} +A.c1.prototype={ +l0(a,b){return new A.ai($.ab,this.$ti.h("ai<1>"))}, +jK(a){return this.l0(a,null)}, +ec(a,b,c){var s=a.$1(this.a) +if(c.h("ad<0>").b(s))return s +return new A.c1(s,c.h("c1<0>"))}, +bw(a,b){return this.ec(a,null,b)}, +io(a){var s,r,q,p,o,n=this +try{s=a.$0() +if(t.o0.b(s)){p=s.bw(new A.ZB(n),n.$ti.c) +return p}return n}catch(o){r=A.ah(o) +q=A.aJ(o) +p=A.a7U(r,q,n.$ti.c) +return p}}, +$iad:1} +A.ZB.prototype={ +$1(a){return this.a.a}, +$S(){return this.a.$ti.h("1(@)")}} +A.Bz.prototype={ +D(){return"GestureDisposition."+this.b}} +A.cz.prototype={} +A.Bx.prototype={} +A.p6.prototype={ +j(a){var s=this,r=s.a +r=r.length===0?""+"":""+new A.aA(r,new A.a29(s),A.ac(r).h("aA<1,u>")).bf(0,", ") +if(s.b)r+=" [open]" +if(s.c)r+=" [held]" +if(s.d)r+=" [hasPendingSweep]" +return r.charCodeAt(0)==0?r:r}} +A.a29.prototype={ +$1(a){if(a===this.a.e)return a.j(0)+" (eager winner)" +return a.j(0)}, +$S:138} +A.S5.prototype={ +FK(a,b,c){this.a.bq(0,b,new A.S7(this,b)).a.push(c) +return new A.Bx(this,b,c)}, +YO(a,b){var s=this.a.i(0,b) +if(s==null)return +s.b=!1 +this.F7(b,s)}, +B3(a){var s,r=this.a,q=r.i(0,a) +if(q==null)return +if(q.c){q.d=!0 +return}r.v(0,a) +r=q.a +if(r.length!==0){B.b.gG(r).h4(a) +for(s=1;s0.4){r.dy=B.vd +r.Y(B.bh)}else if(a.gny().gqS()>A.yq(a.gc1(a),r.b))r.Y(B.a0) +if(s>0.4&&r.dy===B.vc)r.dy=B.vd}r.Aq(a)}, +h4(a){if(this.dy===B.eA)this.dy=B.vc}, +qP(a){if(this.dy===B.eA){this.Y(B.a0) +return}this.dy=B.hP}, +ie(a){this.fX(a) +this.qP(a)}} +A.AD.prototype={ +gu(a){return A.L(this.a,23,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){if(b==null)return!1 +if(J.J(b)!==A.w(this))return!1 +return b instanceof A.AD&&b.a==this.a}, +j(a){return"DeviceGestureSettings(touchSlop: "+A.h(this.a)+")"}} +A.hf.prototype={ +j(a){return"#"+A.bs(this)+"("+this.a.j(0)+")"}} +A.pw.prototype={} +A.wp.prototype={ +cC(a,b){return this.a.rE(b)}} +A.pl.prototype={ +cC(a,b){var s,r,q,p,o=new Float64Array(16),n=new A.aS(o) +n.az(b) +s=this.a +r=s.a +q=s.b +s=o[0] +p=o[3] +o[0]=s+r*p +o[1]=o[1]+q*p +o[2]=o[2]+0*p +o[3]=p +p=o[4] +s=o[7] +o[4]=p+r*s +o[5]=o[5]+q*s +o[6]=o[6]+0*s +o[7]=s +s=o[8] +p=o[11] +o[8]=s+r*p +o[9]=o[9]+q*p +o[10]=o[10]+0*p +o[11]=p +p=o[12] +s=o[15] +o[12]=p+r*s +o[13]=o[13]+q*s +o[14]=o[14]+0*s +o[15]=s +return n}} +A.fk.prototype={ +Sj(){var s,r,q,p,o=this.c +if(o.length===0)return +s=this.b +r=B.b.gO(s) +for(q=o.length,p=0;p":B.b.bf(s,", "))+")"}} +A.nK.prototype={} +A.rX.prototype={} +A.nJ.prototype={} +A.e8.prototype={ +f6(a){var s,r=this +switch(a.gcG(a)){case 1:if(r.p3==null&&r.p2==null&&r.p4==null&&r.RG==null&&!0)return!1 +break +case 2:s=!0 +if(s)return!1 +break +case 4:s=!0 +if(s)return!1 +break +default:return!1}return r.mk(a)}, +xg(){var s,r=this +r.Y(B.bh) +r.k2=!0 +s=r.CW +s.toString +r.AO(s) +r.Qm()}, +I1(a){var s,r=this +if(!a.gmp()){if(t.Y.b(a)){s=new A.fN(a.gc1(a),A.aU(20,null,!1,t.pa)) +r.a9=s +s.kX(a.gfL(a),a.gd_())}if(t.f2.b(a)){s=r.a9 +s.toString +s.kX(a.gfL(a),a.gd_())}}if(t.Cs.b(a)){if(r.k2)r.Qk(a) +else r.Y(B.a0) +r.vZ()}else if(t.AJ.b(a)){r.BA() +r.vZ()}else if(t.Y.b(a)){r.k3=new A.eY(a.gd_(),a.gbp(a)) +r.k4=a.gcG(a) +r.Qj(a)}else if(t.f2.b(a))if(a.gcG(a)!==r.k4){r.Y(B.a0) +s=r.CW +s.toString +r.fX(s)}else if(r.k2)r.Ql(a)}, +Qj(a){this.k3.toString +this.e.i(0,a.gbN()).toString +switch(this.k4){case 1:break +case 2:break +case 4:break}}, +BA(){if(this.ch===B.dv)switch(this.k4){case 1:break +case 2:break +case 4:break}}, +Qm(){var s,r=this +switch(r.k4){case 1:if(r.p3!=null){s=r.k3.a +r.de("onLongPressStart",new A.Ua(r,new A.nK(s)))}s=r.p2 +if(s!=null)r.de("onLongPress",s) +break +case 2:break +case 4:break}}, +Ql(a){var s,r=this +a.gbp(a) +s=a.gd_() +a.gbp(a).a4(0,r.k3.b) +a.gd_().a4(0,r.k3.a) +switch(r.k4){case 1:if(r.p4!=null)r.de("onLongPressMoveUpdate",new A.U9(r,new A.rX(s))) +break +case 2:break +case 4:break}}, +Qk(a){var s,r=this,q=r.a9.oP(),p=q==null?B.by:new A.f1(q.a) +a.gbp(a) +s=a.gd_() +r.a9=null +switch(r.k4){case 1:if(r.RG!=null)r.de("onLongPressEnd",new A.U8(r,new A.nJ(s,p))) +break +case 2:break +case 4:break}}, +vZ(){var s=this +s.k2=!1 +s.a9=s.k4=s.k3=null}, +Y(a){var s=this +if(a===B.a0)if(s.k2)s.vZ() +else s.BA() +s.AH(a)}, +h4(a){}} +A.Ua.prototype={ +$0(){return this.a.p3.$1(this.b)}, +$S:0} +A.U9.prototype={ +$0(){return this.a.p4.$1(this.b)}, +$S:0} +A.U8.prototype={ +$0(){return this.a.RG.$1(this.b)}, +$S:0} +A.j_.prototype={ +i(a,b){return this.c[b+this.a]}, +R(a,b){var s,r,q,p,o,n,m +for(s=this.b,r=this.c,q=this.a,p=b.c,o=b.a,n=0,m=0;m"),q=A.ny(A.aw(new A.aA(s,new A.W2(),r),!0,r.h("bn.E")),"[","]") +r=this.b +r===$&&A.c() +return"PolynomialFit("+q+", confidence: "+B.c.M(r,3)+")"}} +A.W2.prototype={ +$1(a){return B.c.a2G(a,3)}, +$S:144} +A.C7.prototype={ +Ao(a6){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4=this.a,a5=a4.length +if(a6>a5)return null +s=a6+1 +r=new A.W1(new Float64Array(s)) +q=s*a5 +p=new Float64Array(q) +for(o=this.c,n=0*a5,m=0;m=0;--c){p[c]=new A.j_(c*a5,a5,q).R(0,d) +for(i=c*s,k=l;k>c;--k)p[c]=p[c]-n[i+k]*p[k] +p[c]=p[c]/n[i+c]}for(b=0,m=0;mn&&Math.abs(a.d.b)>s))return null +q=o.dx +if(q==null)q=8000 +p=A.O(r,-q,q) +return new A.em(new A.f1(new A.q(0,p)),p)}, +vs(a,b){var s=this.k2 +s===$&&A.c() +return Math.abs(s)>A.yq(a,this.b)}, +mE(a){return new A.q(0,a.b)}, +mF(a){return a.b}} +A.fl.prototype={ +uJ(a,b){var s,r,q,p,o=this,n=o.db +if(n==null)n=50 +s=o.cy +if(s==null)s=A.yq(b,o.b) +r=a.a.a +if(!(Math.abs(r)>n&&Math.abs(a.d.a)>s))return null +q=o.dx +if(q==null)q=8000 +p=A.O(r,-q,q) +return new A.em(new A.f1(new A.q(p,0)),p)}, +vs(a,b){var s=this.k2 +s===$&&A.c() +return Math.abs(s)>A.yq(a,this.b)}, +mE(a){return new A.q(a.a,0)}, +mF(a){return a.a}} +A.fw.prototype={ +uJ(a,b){var s,r,q,p,o=this,n=o.db +if(n==null)n=50 +s=o.cy +if(s==null)s=A.yq(b,o.b) +r=a.a +if(!(r.gqS()>n*n&&a.d.gqS()>s*s))return null +q=o.db +if(q==null)q=50 +p=o.dx +if(p==null)p=8000 +return new A.em(new A.f1(r).YK(q,p),null)}, +vs(a,b){var s=this.k2 +s===$&&A.c() +return Math.abs(s)>A.aqK(a,this.b)}, +mE(a){return a}, +mF(a){return null}} +A.H8.prototype={ +V3(){this.a=!0}} +A.pu.prototype={ +fX(a){if(this.r){this.r=!1 +$.e3.p3$.JM(this.b,a)}}, +II(a,b){return a.gbp(a).a4(0,this.d).gcz()<=b}} +A.fg.prototype={ +f6(a){var s,r=this +if(r.y==null)if(r.r==null&&!0)return!1 +s=r.mk(a) +if(!s)r.jx() +return s}, +h5(a){var s=this,r=s.y +if(r!=null)if(!r.II(a,100))return +else{r=s.y +if(!r.f.a||a.gcG(a)!==r.e){s.jx() +return s.F5(a)}}s.F5(a)}, +F5(a){var s,r,q,p,o,n,m=this +m.EN() +s=$.e3.p4$.FK(0,a.gbN(),m) +r=a.gbN() +q=a.gbp(a) +p=a.gcG(a) +o=new A.H8() +A.c8(B.z_,o.gV2()) +n=new A.pu(r,s,q,p,o) +m.z.l(0,a.gbN(),n) +o=a.gbh(a) +if(!n.r){n.r=!0 +$.e3.p3$.FS(r,m.gpK(),o)}}, +UL(a){var s,r=this,q=r.z,p=q.i(0,a.gbN()) +p.toString +if(t.Cs.b(a)){s=r.y +if(s==null){if(r.x==null)r.x=A.c8(B.bJ,r.gUM()) +s=p.b +$.e3.p4$.a0y(s) +p.fX(r.gpK()) +q.v(0,s) +r.BN() +r.y=p}else{s=s.c +s.a.mS(s.b,s.c,B.bh) +s=p.c +s.a.mS(s.b,s.c,B.bh) +p.fX(r.gpK()) +q.v(0,p.b) +q=r.r +if(q!=null)r.de("onDoubleTap",q) +r.jx()}}else if(t.f2.b(a)){if(!p.II(a,18))r.mR(p)}else if(t.AJ.b(a))r.mR(p)}, +h4(a){}, +ie(a){var s,r=this,q=r.z.i(0,a) +if(q==null){s=r.y +s=s!=null&&s.b===a}else s=!1 +if(s)q=r.y +if(q!=null)r.mR(q)}, +mR(a){var s,r=this,q=r.z +q.v(0,a.b) +s=a.c +s.a.mS(s.b,s.c,B.a0) +a.fX(r.gpK()) +s=r.y +if(s!=null)if(a===s)r.jx() +else{r.Bz() +if(q.a===0)r.jx()}}, +m(){this.jx() +this.AB()}, +jx(){var s,r=this +r.EN() +if(r.y!=null){if(r.z.a!==0)r.Bz() +s=r.y +s.toString +r.y=null +r.mR(s) +$.e3.p4$.a29(0,s.b)}r.BN()}, +BN(){var s=this.z +s=s.gaJ(s) +B.b.P(A.aw(s,!0,A.m(s).h("j.E")),this.gVO())}, +EN(){var s=this.x +if(s!=null){s.aT(0) +this.x=null}}, +Bz(){}} +A.VX.prototype={ +FS(a,b,c){J.fY(this.a.bq(0,a,new A.VZ()),b,c)}, +JM(a,b){var s,r=this.a,q=r.i(0,a) +q.toString +s=J.bx(q) +s.v(q,b) +if(s.gS(q))r.v(0,a)}, +Rg(a,b,c){var s,r,q,p +try{b.$1(a.aD(c))}catch(q){s=A.ah(q) +r=A.aJ(q) +p=A.bg("while routing a pointer event") +A.dx(new A.bu(s,r,"gesture library",p,null,!1))}}, +K2(a){var s=this,r=s.a.i(0,a.gbN()),q=s.b,p=t.yd,o=t.rY,n=A.nF(q,p,o) +if(r!=null)s.Cb(a,r,A.nF(r,p,o)) +s.Cb(a,q,n)}, +Cb(a,b,c){c.P(0,new A.VY(this,b,a))}} +A.VZ.prototype={ +$0(){return A.y(t.yd,t.rY)}, +$S:146} +A.VY.prototype={ +$2(a,b){if(J.dq(this.b,a))this.a.Rg(this.c,a,b)}, +$S:147} +A.W_.prototype={ +JG(a,b,c){if(this.a!=null)return +this.b=b +this.a=c}, +Y(a){var s,r,q,p,o=this,n=o.a +if(n==null)return +try{q=o.b +q.toString +n.$1(q)}catch(p){s=A.ah(p) +r=A.aJ(p) +n=A.bg("while resolving a PointerSignalEvent") +A.dx(new A.bu(s,r,"gesture library",n,null,!1))}o.b=o.a=null}} +A.Qy.prototype={ +D(){return"DragStartBehavior."+this.b}} +A.cj.prototype={ +wB(a){}, +XZ(a){var s=this +s.e.l(0,a.gbN(),a.gc1(a)) +if(s.f6(a))s.h5(a) +else s.nY(a)}, +h5(a){}, +nY(a){}, +f6(a){var s,r=this.c +if(r!=null){s=a.gc1(a) +s=J.dq(r.a,s) +r=s}else r=!0 +return r&&this.d.$1(a.gcG(a))}, +a1_(a){var s,r=this.c +if(r!=null){s=a.gc1(a) +s=J.dq(r.a,s) +r=s}else r=!0 +return r}, +m(){}, +Ix(a,b,c){var s,r,q,p,o=null +try{o=b.$0()}catch(q){s=A.ah(q) +r=A.aJ(q) +p=A.bg("while handling a gesture") +A.dx(new A.bu(s,r,"gesture",p,null,!1))}return o}, +de(a,b){return this.Ix(a,b,null,t.z)}, +a0Q(a,b,c){return this.Ix(a,b,c,t.z)}} +A.tu.prototype={ +h5(a){this.p5(a.gbN(),a.gbh(a))}, +nY(a){this.Y(B.a0)}, +h4(a){}, +ie(a){}, +Y(a){var s,r,q=this.f,p=A.aw(q.gaJ(q),!0,t.o) +q.L(0) +for(q=p.length,s=0;s18 +else s=!1 +if(p.cy){r=p.ay +q=r!=null&&p.Cx(a)>r}else q=!1 +if(t.f2.b(a))r=s||q +else r=!1 +if(r){p.Y(B.a0) +r=p.CW +r.toString +p.fX(r)}else p.I1(a)}p.Aq(a)}, +xg(){}, +h4(a){if(a===this.CW){this.q1() +this.cy=!0}}, +ie(a){var s=this +if(a===s.CW&&s.ch===B.dv){s.q1() +s.ch=B.zn}}, +qP(a){var s=this +s.q1() +s.ch=B.b3 +s.cx=null +s.cy=!1}, +m(){this.q1() +this.u1()}, +q1(){var s=this.db +if(s!=null){s.aT(0) +this.db=null}}, +Cx(a){return a.gbp(a).a4(0,this.cx.b).gcz()}} +A.W6.prototype={ +$0(){this.a.xg() +return null}, +$S:0} +A.eY.prototype={ +T(a,b){return new A.eY(this.a.T(0,b.a),this.b.T(0,b.b))}, +a4(a,b){return new A.eY(this.a.a4(0,b.a),this.b.a4(0,b.b))}, +j(a){return"OffsetPair(local: "+this.a.j(0)+", global: "+this.b.j(0)+")"}} +A.Ia.prototype={} +A.ov.prototype={} +A.ow.prototype={} +A.z3.prototype={ +h5(a){var s=this +if(s.ch===B.b3){if(s.k4!=null&&s.ok!=null)s.mZ() +s.k4=a}if(s.k4!=null)s.Nc(a)}, +p5(a,b){this.N5(a,b)}, +I1(a){var s,r,q=this +if(t.Cs.b(a)){q.ok=a +q.BD()}else if(t.AJ.b(a)){q.Y(B.a0) +if(q.k2){s=q.k4 +s.toString +q.re(a,s,"")}q.mZ()}else{s=a.gcG(a) +r=q.k4 +if(s!==r.gcG(r)){q.Y(B.a0) +s=q.CW +s.toString +q.fX(s)}}}, +Y(a){var s,r=this +if(r.k3&&a===B.a0){s=r.k4 +s.toString +r.re(null,s,"spontaneous") +r.mZ()}r.AH(a)}, +xg(){this.EU()}, +h4(a){var s=this +s.AO(a) +if(a===s.CW){s.EU() +s.k3=!0 +s.BD()}}, +ie(a){var s,r=this +r.Nd(a) +if(a===r.CW){if(r.k2){s=r.k4 +s.toString +r.re(null,s,"forced")}r.mZ()}}, +EU(){var s,r=this +if(r.k2)return +s=r.k4 +s.toString +r.I3(s) +r.k2=!0}, +BD(){var s,r,q=this +if(!q.k3||q.ok==null)return +s=q.k4 +s.toString +r=q.ok +r.toString +q.I4(s,r) +q.mZ()}, +mZ(){var s=this +s.k3=s.k2=!1 +s.k4=s.ok=null}} +A.ea.prototype={ +f6(a){var s=this +switch(a.gcG(a)){case 1:if(s.W==null&&s.ad==null&&s.a_==null&&s.a0==null)return!1 +break +case 2:if(s.a9==null&&s.cX==null&&s.cb==null&&s.ct==null)return!1 +break +case 4:return!1 +break +default:return!1}return s.mk(a)}, +I3(a){var s,r=this,q=a.gbp(a),p=a.gd_() +r.e.i(0,a.gbN()).toString +s=new A.ov(q,p) +switch(a.gcG(a)){case 1:if(r.W!=null)r.de("onTapDown",new A.ZF(r,s)) +break +case 2:if(r.cX!=null)r.de("onSecondaryTapDown",new A.ZG(r,s)) +break +case 4:break}}, +I4(a,b){var s,r,q=this +b.gc1(b) +b.gbp(b) +b.gd_() +s=new A.ow() +switch(a.gcG(a)){case 1:if(q.a_!=null)q.de("onTapUp",new A.ZH(q,s)) +r=q.ad +if(r!=null)q.de("onTap",r) +break +case 2:if(q.cb!=null)q.de("onSecondaryTapUp",new A.ZI(q,s)) +if(q.a9!=null)q.de("onSecondaryTap",new A.ZJ(q)) +break +case 4:break}}, +re(a,b,c){var s,r=this,q=c===""?c:c+" " +switch(b.gcG(b)){case 1:s=r.a0 +if(s!=null)r.de(q+"onTapCancel",s) +break +case 2:s=r.ct +if(s!=null)r.de(q+"onSecondaryTapCancel",s) +break +case 4:break}}} +A.ZF.prototype={ +$0(){return this.a.W.$1(this.b)}, +$S:0} +A.ZG.prototype={ +$0(){return this.a.cX.$1(this.b)}, +$S:0} +A.ZH.prototype={ +$0(){return this.a.a_.$1(this.b)}, +$S:0} +A.ZI.prototype={ +$0(){return this.a.cb.$1(this.b)}, +$S:0} +A.ZJ.prototype={ +$0(){return this.a.a9.$0()}, +$S:0} +A.f1.prototype={ +a4(a,b){return new A.f1(this.a.a4(0,b.a))}, +T(a,b){return new A.f1(this.a.T(0,b.a))}, +YK(a,b){var s=this.a,r=s.gqS() +if(r>b*b)return new A.f1(s.cO(0,s.gcz()).R(0,b)) +if(r100||Math.abs(m-p.a.a)/1000>40)break +k=n.b +e.push(k.a) +d.push(k.b) +c.push(1) +b.push(-l) +a=(a===0?20:a)-1;++o +if(o<20){q=n +p=q +continue}else{q=n +break}}while(!0) +if(o>=3){j=new A.C7(b,e,c).Ao(2) +if(j!=null){i=new A.C7(b,d,c).Ao(2) +if(i!=null){f=j.a[1] +m=i.a[1] +h=j.b +h===$&&A.c() +g=i.b +g===$&&A.c() +return new A.mi(new A.q(f*1000,m*1000),h*g,new A.aQ(r-q.a.a),s.b.a4(0,q.b))}}}return new A.mi(B.h,1,new A.aQ(r-q.a.a),s.b.a4(0,q.b))}} +A.lg.prototype={ +kX(a,b){var s=(this.c+1)%20 +this.c=s +this.d[s]=new A.wK(a,b)}, +kN(a){var s,r,q=this.c+a,p=B.f.cv(q,20),o=B.f.cv(q-1,20) +q=this.d +s=q[p] +r=q[o] +if(s==null||r==null)return B.h +q=s.a.a-r.a.a +return q>0?s.b.a4(0,r.b).R(0,1000).cO(0,q/1000):B.h}, +oP(){var s,r,q=this,p=q.kN(-2).R(0,0.6).T(0,q.kN(-1).R(0,0.35)).T(0,q.kN(0).R(0,0.05)),o=q.d,n=q.c,m=o[n] +for(s=null,r=1;r<=20;++r){s=o[B.f.cv(n+r,20)] +if(s!=null)break}if(s==null||m==null)return B.v4 +else return new A.mi(p,1,new A.aQ(m.a.a-s.a.a),m.b.a4(0,s.b))}} +A.nL.prototype={ +oP(){var s,r,q=this,p=q.kN(-2).R(0,0.15).T(0,q.kN(-1).R(0,0.65)).T(0,q.kN(0).R(0,0.2)),o=q.d,n=q.c,m=o[n] +for(s=null,r=1;r<=20;++r){s=o[B.f.cv(n+r,20)] +if(s!=null)break}if(s==null||m==null)return B.v4 +else return new A.mi(p,1,new A.aQ(m.a.a-s.a.a),m.b.a4(0,s.b))}} +A.Ga.prototype={ +N(a){var s=this +return A.abv(null,s.c,null,new A.a0_(s,a),s.f,s.vf(a))}} +A.a0_.prototype={ +$0(){this.a.vK(this.b)}, +$S:0} +A.oQ.prototype={ +N(a){var s,r,q,p +a.aj(t.tH) +s=A.al(a) +r=this.c.$1(s.R8) +if(r!=null)return r.$1(a) +q=this.d.$1(a) +switch(A.kE().a){case 0:s=A.Cf(a,B.db,t.z4) +s.toString +p=this.e.$1(s) +break +case 1:case 3:case 5:case 2:case 4:p=null +break +default:p=null}return A.abu(q,null,p)}} +A.z1.prototype={ +N(a){return new A.oQ(new A.Om(),new A.On(),new A.Oo(),null)}} +A.Om.prototype={ +$1(a){return a==null?null:a.a}, +$S:68} +A.On.prototype={ +$1(a){return B.zq}, +$S:67} +A.Oo.prototype={ +$1(a){return"Back"}, +$S:66} +A.z0.prototype={ +vK(a){return A.alI(a)}, +vf(a){A.Cf(a,B.db,t.z4).toString +return"Back"}} +A.AS.prototype={ +N(a){return new A.oQ(new A.Qz(),new A.QA(),new A.QB(),null)}} +A.Qz.prototype={ +$1(a){return a==null?null:a.c}, +$S:68} +A.QA.prototype={ +$1(a){return B.jE}, +$S:67} +A.QB.prototype={ +$1(a){return"Open navigation menu"}, +$S:66} +A.AR.prototype={ +vK(a){var s,r,q=A.oe(a),p=q.e +if(p.gbj()!=null){s=q.x +r=s.y +s=r==null?A.m(s).h("bN.T").a(r):r}else s=!1 +if(s)p.gbj().dn(0) +q=q.d.gbj() +if(q!=null)q.a1J(0) +return null}, +vf(a){A.Cf(a,B.db,t.z4).toString +return"Open navigation menu"}} +A.AZ.prototype={ +N(a){return new A.oQ(new A.QQ(),new A.QR(),new A.QS(),null)}} +A.QQ.prototype={ +$1(a){return a==null?null:a.d}, +$S:68} +A.QR.prototype={ +$1(a){return B.jE}, +$S:67} +A.QS.prototype={ +$1(a){return"Open navigation menu"}, +$S:66} +A.AY.prototype={ +vK(a){var s,r,q=A.oe(a),p=q.d +if(p.gbj()!=null){s=q.w +r=s.y +s=r==null?A.m(s).h("bN.T").a(r):r}else s=!1 +if(s)p.gbj().dn(0) +q=q.e.gbj() +if(q!=null)q.a1J(0) +return null}, +vf(a){A.Cf(a,B.db,t.z4).toString +return"Open navigation menu"}} +A.mD.prototype={ +gu(a){var s=this +return A.cl([s.a,s.b,s.c,s.d])}, +k(a,b){var s +if(b==null)return!1 +if(this===b)return!0 +if(J.J(b)!==A.w(this))return!1 +if(b instanceof A.mD)s=!0 +else s=!1 +return s}} +A.Gc.prototype={} +A.a_n.prototype={ +D(){return"ThemeMode."+this.b}} +A.t2.prototype={ +aq(){return new A.wm(B.m)}} +A.Uh.prototype={ +$2(a,b){return new A.nO(a,b)}, +$S:151} +A.Ul.prototype={ +jn(a){return A.al(a).r}, +Gi(a,b,c){switch(A.b8(c.a)){case B.aZ:return b +case B.ba:switch(A.al(a).r.a){case 3:case 4:case 5:return new A.EF(b,c.b,null) +case 0:case 1:case 2:return b}break}}, +Gh(a,b,c){var s=A.b_("indicator") +if(A.al(a).y)s.sbH(B.i4) +else{A.al(a) +s.sbH(B.i5)}switch(A.al(a).r.a){case 2:case 3:case 4:case 5:return b +case 0:switch(s.ap()){case B.i4:return A.ani(c.a,b,c.d) +case B.i5:break}break +case 1:break}return A.abo(c.a,b,A.al(a).ax.f)}} +A.wm.prototype={ +aM(){this.bb() +this.d=A.alk()}, +gUo(){var s=A.a([],t.wv) +this.a.toString +s.push(B.x9) +s.push(B.x4) +return s}, +U9(a,b){return new A.Bj(B.zx,b,B.Nb,null)}, +Uw(a,b){var s,r,q,p,o,n,m,l,k=this,j=null +k.a.toString +s=A.dl(a,B.vk) +r=s==null?j:s.d +if(r==null)r=B.U +q=r===B.W +s=A.dl(a,B.vh) +s=s==null?j:s.Q +p=s===!0 +if(q)if(p)k.a.toString +if(q)k.a.toString +if(p)k.a.toString +o=k.a.cy +s=o.f3 +n=s.b +if(n==null){m=o.ax.b +n=A.U(102,m.gn(m)>>>16&255,m.gn(m)>>>8&255,m.gn(m)&255)}l=s.a +if(l==null)l=o.ax.b +k.a.toString +s=b==null?B.hx:b +return new A.uh(A.aaU(new A.pQ(o,s,B.ae,B.O,j,j),l,n),j)}, +Q7(a){var s,r,q=this,p=null,o=q.a,n=o.cy +n=n.fr +s=n +if(s==null)s=B.dW +n=o.e +o=o.CW +r=q.gUo() +q.a.toString +return new A.vq(p,p,p,new A.a2R(),p,p,p,p,p,n,B.DB,p,p,B.Bc,q.gUv(),o,p,B.I9,s,p,r,p,p,B.jQ,!1,!1,!1,!1,q.gU8(),!0,p,p,p,new A.ii(q,t.l9))}, +N(a){var s,r=null,q=A.Bn(!1,!1,this.Q7(a),r,r,r,r,!0,r,r,new A.a2S(),r,r,r) +this.a.toString +s=this.d +s===$&&A.c() +return new A.uj(B.wB,new A.le(s,q,r),r)}} +A.a2R.prototype={ +$1$2(a,b,c){var s=null,r=A.a([],t.F8),q=$.ab,p=A.DF(B.cf),o=A.a([],t.tD),n=A.kg(s),m=$.ab +return new A.lo(b,!1,!0,r,new A.bM(s,c.h("bM>")),new A.bM(s,t.F),new A.Vo(),s,0,new A.bp(new A.ai(q,c.h("ai<0?>")),c.h("bp<0?>")),p,o,a,n,new A.bp(new A.ai(m,c.h("ai<0?>")),c.h("bp<0?>")),c.h("lo<0>"))}, +$2(a,b){return this.$1$2(a,b,t.z)}, +$S:154} +A.a2S.prototype={ +$2(a,b){if(!(b instanceof A.hz)||!b.c.goe().k(0,B.cB))return B.cp +return A.anJ()?B.co:B.cp}, +$S:111} +A.a4w.prototype={ +zP(a){return a.zr(this.b)}, +tn(a){return new A.S(a.b,this.b)}, +zX(a,b){return new A.q(0,a.b-b.b)}, +md(a){return this.b!==a.b}} +A.K4.prototype={} +A.pZ.prototype={ +S9(a){var s=new A.O2(this,a).$0() +return s}, +aq(){return new A.vx(B.m)}, +jc(a){return A.yz().$1(a)}} +A.O2.prototype={ +$0(){switch(this.b.r.a){case 0:case 1:case 3:case 5:return!1 +case 2:case 4:return!0}}, +$S:50} +A.vx.prototype={ +b4(){var s,r=this +r.cR() +s=r.d +if(s!=null)s.H(0,r.gvn()) +s=r.c.aj(t.dT) +s=s==null?null:s.f +r.d=s +if(s!=null){s=s.d +s.U5(s.c,new A.kn(r.gvn()),!1)}}, +m(){var s=this,r=s.d +if(r!=null){r.H(0,s.gvn()) +s.d=null}s.aW()}, +Ty(a){var s,r,q,p=this +if(a instanceof A.eC&&p.a.jc(a)){s=p.e +r=a.a +switch(r.e.a){case 0:q=p.e=Math.max(r.gew()-r.gc6(),0)>0 +break +case 2:q=p.e=Math.max(r.gc6()-r.gex(),0)>0 +break +case 1:case 3:q=s +break +default:q=s}if(q!==s)p.aA(new A.a0j())}}, +N(b9){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3=this,b4=null,b5=A.al(b9),b6=A.abx(b9),b7=A.al(b9).RG,b8=b5.y +if(b8)s=new A.a0i(b9,b4,b4,0,3,b4,b4,b4,b4,b4,b4,16,64,b4,b4,b4) +else s=new A.a0h(b9,b4,b4,4,b4,B.l,b4,b4,b4,b4,b4,16,56,b4,b4,b4) +r=b9.r4(t.yp) +q=A.UC(b9,t.X) +b9.aj(t.Ct) +p=A.az(t.BD) +o=b3.e +if(o)p.B(0,B.p5) +o=r==null +if(o)n=b4 +else{r.a.toString +n=!1}if(o)r=b4 +else{r.a.toString +r=!1}m=r===!0 +r=q==null +if(r)o=b4 +else if(!q.gri()){o=q.k_$ +o=o!=null&&o.length!==0}else o=!0 +l=o===!0 +b3.a.toString +k=b7.Q +if(k==null)k=56 +o=s.gbP(s) +j=t._ +i=A.lp(b4,p,j) +j=i==null?A.lp(b7.a,p,j):i +o=j==null?A.lp(o,p,t.iO):j +b3.a.toString +h=b7.b +g=h==null?s.gc4():h +b3.a.toString +f=b7.c +if(f==null){j=s.c +j.toString +f=j}if(p.q(0,B.p5)){b3.a.toString +p=b7.d +if(p==null)p=s.d +e=p==null?f:p}else e=f +b3.a.toString +d=b7.w +c=d==null?s.gk9().e2(g):d +b3.a.toString +p=b7.x +if(p==null)p=b4 +if(p==null)p=d +if(p==null){p=s.gkW() +p=p==null?b4:p.e2(h) +b=p}else b=p +if(b==null)b=c +b3.a.toString +a=b7.as +if(a==null){p=s.glZ() +a=p==null?b4:p.e2(g)}b3.a.toString +a0=b7.at +if(a0==null){p=s.glX() +a0=p==null?b4:p.e2(g)}b3.a.toString +if(n===!0){r=c.a +a1=new A.AR(B.yQ,b4,A.ru(b4,b4,b4,b4,b4,b4,b4,b4,b4,r==null?24:r,b4,b4,b4,b4),b4)}else{if(!(!m&&l)){if(r)r=b4 +else r=q.gri()||q.xK$>0 +r=r===!0}else r=!0 +if(r)a1=B.vC +else a1=b4}if(a1!=null)if(b8){if(c.k(0,s.gk9()))a2=b6 +else{a3=A.ru(b4,b4,b4,b4,b4,b4,c.f,b4,b4,c.a,b4,b4,b4,b4) +r=b6.a +a2=new A.lh(r==null?b4:r.GJ(a3.c,a3.as,a3.d))}a1=A.abw(a1,a2) +b3.a.toString +a1=new A.ej(A.kQ(b4,56),a1,b4)}else{b3.a.toString +a1=new A.ej(A.kQ(b4,56),a1,b4)}a4=b3.a.e +switch(b5.r.a){case 0:case 1:case 3:case 5:a5=!0 +break +case 2:case 4:a5=b4 +break +default:a5=b4}a4=A.dC(b4,new A.Gp(a4,b4),!1,b4,!1,b4,b4,!0,b4,b4,a5,b4,b4,b4,b4,b4,b4,b4,b4,b4) +a0.toString +a4=A.qG(a4,b4,B.da,!1,a0,b4,b4,B.aK) +a6=A.cL(b9,b4,t.w).w +a4=A.nP(a4,a6.qA(Math.min(a6.c,1.34)),b4) +b3.a.toString +if(m){r=c.a +a7=new A.AY(B.za,b4,A.ru(b4,b4,b4,b4,b4,b4,b4,b4,b4,r==null?24:r,b4,b4,b4,b4),b4)}else a7=b4 +if(a7!=null){if(b.k(0,s.gkW()))a8=b6 +else{a9=A.ru(b4,b4,b4,b4,b4,b4,b.f,b4,b4,b.a,b4,b4,b4,b4) +r=b6.a +a8=new A.lh(r==null?b4:r.GJ(a9.c,a9.as,a9.d))}a7=A.abw(A.rv(a7,b),a8)}r=b3.a.S9(b5) +b3.a.toString +p=b7.z +if(p==null)p=16 +a.toString +b0=A.aaM(new A.qC(new A.a4w(k),A.rv(A.qG(new A.CL(a1,a4,a7,r,p,b4),b4,B.c3,!0,a,b4,b4,B.aK),c),b4),B.aR) +b0=A.acK(!1,b0,!0) +r=A.oD(o) +b8=b8?B.H:b4 +b1=r===B.W?B.Hm:B.Hn +b2=new A.hI(b4,b4,b4,b4,b8,b1.f,b1.r,b1.w) +b3.a.toString +b8=b7.e +if(b8==null)b8=s.gbA(s) +b3.a.toString +r=b7.f +if(r==null)r=s.gbS() +b3.a.toString +p=b7.r +if(p==null)p=s.r +return A.dC(b4,new A.pW(b2,A.jM(B.O,A.dC(b4,new A.jb(B.vr,b4,b4,b0,b4),!1,b4,!0,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4),B.w,o,e,b4,b8,p,r,b4,B.aD),b4,t.tO),!0,b4,!1,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4)}} +A.a0j.prototype={ +$0(){}, +$S:0} +A.Gp.prototype={ +aG(a){var s=a.aj(t.I) +s.toString +s=new A.Kf(B.T,s.w,null,A.au()) +s.aI() +s.saU(null) +return s}, +aN(a,b){var s=a.aj(t.I) +s.toString +b.sbR(s.w)}} +A.Kf.prototype={ +cf(a){var s=a.GE(1/0) +return a.bI(this.F$.ip(s))}, +bQ(){var s,r=this,q=t.k,p=q.a(A.z.prototype.ga5.call(r)).GE(1/0) +r.F$.ck(p,!0) +q=q.a(A.z.prototype.ga5.call(r)) +s=r.F$.k3 +s.toString +r.k3=q.bI(s) +r.wG()}} +A.a0h.prototype={ +gjF(){var s,r=this,q=r.ch +if(q===$){s=A.al(r.ay) +r.ch!==$&&A.ap() +r.ch=s +q=s}return q}, +geE(){var s,r=this,q=r.CW +if(q===$){s=r.gjF() +r.CW!==$&&A.ap() +q=r.CW=s.ax}return q}, +gbP(a){return this.geE().a===B.W?this.geE().cy:this.geE().b}, +gc4(){return this.geE().a===B.W?this.geE().db:this.geE().c}, +gk9(){return this.gjF().ok}, +glZ(){return this.gjF().p3.z}, +glX(){return this.gjF().p3.r}} +A.a0i.prototype={ +gjF(){var s,r=this,q=r.ch +if(q===$){s=A.al(r.ay) +r.ch!==$&&A.ap() +r.ch=s +q=s}return q}, +geE(){var s,r=this,q=r.CW +if(q===$){s=r.gjF() +r.CW!==$&&A.ap() +q=r.CW=s.ax}return q}, +gEZ(){var s,r=this,q=r.cx +if(q===$){s=r.gjF() +r.cx!==$&&A.ap() +q=r.cx=s.p3}return q}, +gbP(a){return this.geE().cy}, +gc4(){return this.geE().db}, +gbA(a){return B.H}, +gbS(){var s=this.geE(),r=s.k3 +return r==null?s.b:r}, +gk9(){var s=null +return new A.cd(24,s,s,s,s,this.geE().db,s,s)}, +gkW(){var s=null,r=this.geE(),q=r.dy +return new A.cd(24,s,s,s,s,q==null?r.db:q,s,s)}, +glZ(){return this.gEZ().z}, +glX(){return this.gEZ().r}} +A.mI.prototype={ +gu(a){var s=this +return A.L(s.gbP(s),s.gc4(),s.c,s.d,s.gbA(s),s.gbS(),s.r,s.gk9(),s.gkW(),s.y,s.z,s.Q,s.glZ(),s.glX(),s.ax,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.mI&&J.e(b.gbP(b),s.gbP(s))&&J.e(b.gc4(),s.gc4())&&b.c==s.c&&b.d==s.d&&J.e(b.gbA(b),s.gbA(s))&&J.e(b.gbS(),s.gbS())&&J.e(b.r,s.r)&&J.e(b.gk9(),s.gk9())&&J.e(b.gkW(),s.gkW())&&b.z==s.z&&b.Q==s.Q&&J.e(b.glZ(),s.glZ())&&J.e(b.glX(),s.glX())&&!0}, +gbP(a){return this.a}, +gc4(){return this.b}, +gbA(a){return this.e}, +gbS(){return this.f}, +gk9(){return this.w}, +gkW(){return this.x}, +glZ(){return this.as}, +glX(){return this.at}} +A.Go.prototype={} +A.t4.prototype={ +hN(){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=g.a +f.toString +s=g.b +s.toString +r=s.a4(0,f) +q=Math.abs(r.a) +p=Math.abs(r.b) +o=r.gcz() +n=s.a +m=f.b +l=new A.q(n,m) +k=new A.Uj(g,o) +if(q>2&&p>2){j=o*o +i=f.a +h=s.b +if(q>>16&255,q>>>8&255,q&255),0,B.ac,-1),s,r.c)}if(s==null){q=p.a.a +return A.aj(p,new A.bD(A.U(0,q>>>16&255,q>>>8&255,q&255),0,B.ac,-1),r.c)}return A.aj(p,s,r.c)}, +$ibd:1} +A.GH.prototype={} +A.qd.prototype={ +aq(){return new A.vD(null,null,B.m)}} +A.vD.prototype={ +xZ(){this.aA(new A.a14())}, +gcF(){var s=this.a.z +return s}, +o0(){var s,r=this +r.a.toString +s=r.gcF() +r.a.toString +s.dw(0,B.M,!1) +r.gcF().Z(0,r.gk8())}, +aM(){this.bb() +this.o0()}, +aQ(a){var s,r=this +r.bi(a) +s=a.z +if(r.a.z!==s){s.H(0,r.gk8()) +r.a.toString +s=r.r +if(s!=null){s.a_$=$.b7() +s.W$=0}r.r=null +r.o0()}r.a.toString}, +m(){var s,r=this +r.gcF().H(0,r.gk8()) +s=r.r +if(s!=null){s.a_$=$.b7() +s.W$=0}s=r.d +if(s!=null)s.m() +r.P3()}, +N(c5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0=this,c1=null,c2=c0.a,c3=new A.a11(c2.r,c2.a2x(c5),c0.a.ZH(c5)),c4=new A.a12(c0,c3) +c2=t.u6 +s=c4.$1$1(new A.a0F(),c2) +r=c4.$1$1(new A.a0G(),t.w8) +q=t._ +p=c4.$1$1(new A.a0H(),q) +o=c4.$1$1(new A.a0S(),q) +n=c4.$1$1(new A.a0V(),q) +m=c4.$1$1(new A.a0W(),q) +l=c4.$1$1(new A.a0X(),t.DS) +k=t.xB +j=c4.$1$1(new A.a0Y(),k) +i=c4.$1$1(new A.a0Z(),k) +h=c4.$1$1(new A.a1_(),k) +g=c4.$1$1(new A.a10(),q) +f=c4.$1$1(new A.a0I(),c2) +e=c4.$1$1(new A.a0J(),t.Fn) +d=c4.$1$1(new A.a0K(),t.yX) +c=c3.$1$1(new A.a0L(),t.vW) +b=c3.$1$1(new A.a0M(),t.c1) +a=c3.$1$1(new A.a0N(),t.ya) +a0=c3.$1$1(new A.a0O(),t.y) +a1=c3.$1$1(new A.a0P(),t.bX) +a2=new A.q(c.a,c.b).R(0,4) +a3=c3.$1$1(new A.a0Q(),t.zQ) +c2=j.a +q=j.b +a4=c.xy(new A.aI(c2,h.a,q,h.b)) +if(i!=null){a5=a4.bI(i) +c2=a5.a +if(isFinite(c2))a4=a4.Zo(c2,c2) +c2=a5.b +if(isFinite(c2))a4=a4.Zn(c2,c2)}a6=a2.b +c2=a2.a +a7=Math.max(0,c2) +a8=l.B(0,new A.bl(a7,a6,a7,a6)).iO(0,B.aS,B.vl) +if(a.a>0){q=c0.e +if(q!=null){k=c0.f +if(k!=null)if(q!==s)if(k.gn(k)!==p.gn(p)){q=c0.f +q=(q.gn(q)>>>24&255)/255===1&&(p.gn(p)>>>24&255)/255<1&&s===0}else q=!1 +else q=!1 +else q=!1}else q=!1}else q=!1 +if(q){q=c0.d +if(!J.e(q==null?c1:q.e,a)){q=c0.d +if(q!=null)q.m() +q=A.d9(c1,a,c1,c1,c0) +q.aX() +k=q.bT$ +k.b=!0 +k.a.push(new A.a0R(c0)) +c0.d=q}p=c0.f +c0.d.sn(0,0) +c0.d.c5(0)}c0.e=s +c0.f=p +s.toString +q=r==null?c1:r.e2(o) +k=d.jN(e) +a9=p==null?B.cJ:B.h2 +b0=c0.a +b1=b0.w +b2=b0.c +b3=b0.d +b4=b0.e +b5=b0.x +b0=b0.f +b6=d.jN(e) +b7=c0.gcF() +b8=g==null?o:g +a1.toString +a9=A.jM(a,A.abA(!1,!0,A.rv(new A.hw(a8,new A.jb(a1,1,1,c0.a.Q,c1),c1),new A.cd(f,c1,c1,c1,c1,b8,c1,c1)),b6,a0,c1,b5,B.H,c1,new A.J4(new A.a0T(c3)),b0,c1,b4,b3,b2,new A.bB(new A.a0U(c3),t.T),c1,a3,b7),b1,p,s,c1,n,k,m,q,a9) +switch(b.a){case 0:b9=new A.S(48+c2,48+a6) +break +case 1:b9=B.L +break +default:b9=c1}return A.dC(!0,new A.Iv(b9,new A.ej(a4,a9,c1),c1),!0,!0,!1,c1,c1,c1,c1,c1,c1,c1,c1,c1,c1,c1,c1,c1,c1,c1)}} +A.a14.prototype={ +$0(){}, +$S:0} +A.a11.prototype={ +$1$1(a,b){var s=a.$1(this.a),r=a.$1(this.b),q=a.$1(this.c),p=s==null?r:s +return p==null?q:p}, +$1(a){return this.$1$1(a,t.z)}, +$S:160} +A.a12.prototype={ +$1$1(a,b){return this.b.$1$1(new A.a13(this.a,a,b),b)}, +$1(a){return this.$1$1(a,t.z)}, +$S:161} +A.a13.prototype={ +$1(a){var s=this.b.$1(a) +return s==null?null:s.Y(this.a.gcF().a)}, +$S(){return this.c.h("0?(b4?)")}} +A.a0F.prototype={ +$1(a){var s=a.gds(a) +return s}, +$S:110} +A.a0G.prototype={ +$1(a){return a.a}, +$S:163} +A.a0H.prototype={ +$1(a){var s=a.gbP(a) +return s}, +$S:37} +A.a0S.prototype={ +$1(a){var s=a.gc4() +return s}, +$S:37} +A.a0V.prototype={ +$1(a){var s=a.gbA(a) +return s}, +$S:37} +A.a0W.prototype={ +$1(a){var s=a.gbS() +return s}, +$S:37} +A.a0X.prototype={ +$1(a){var s=a.gc2(a) +return s}, +$S:165} +A.a0Y.prototype={ +$1(a){var s=a.ghr() +return s}, +$S:65} +A.a0Z.prototype={ +$1(a){return a.y}, +$S:65} +A.a1_.prototype={ +$1(a){var s=a.ghq() +return s}, +$S:65} +A.a10.prototype={ +$1(a){return a.Q}, +$S:37} +A.a0I.prototype={ +$1(a){var s=a.gda() +return s}, +$S:110} +A.a0J.prototype={ +$1(a){var s=a.gfT() +return s}, +$S:167} +A.a0K.prototype={ +$1(a){var s=a.gc_(a) +return s}, +$S:168} +A.a0T.prototype={ +$1(a){return this.a.$1$1(new A.a0D(a),t.oR)}, +$S:169} +A.a0D.prototype={ +$1(a){var s=a.ghs() +s=s==null?null:s.Y(this.a) +return s}, +$S:170} +A.a0U.prototype={ +$1(a){return this.a.$1$1(new A.a0C(a),t.iO)}, +$S:171} +A.a0C.prototype={ +$1(a){var s=a.ght() +s=s==null?null:s.Y(this.a) +return s}, +$S:172} +A.a0L.prototype={ +$1(a){var s=a.ghC() +return s}, +$S:173} +A.a0M.prototype={ +$1(a){var s=a.ghz() +return s}, +$S:174} +A.a0N.prototype={ +$1(a){return a.cx}, +$S:175} +A.a0O.prototype={ +$1(a){return a.cy}, +$S:176} +A.a0P.prototype={ +$1(a){return a.db}, +$S:177} +A.a0Q.prototype={ +$1(a){var s=a.gfW() +return s}, +$S:178} +A.a0R.prototype={ +$1(a){if(a===B.J)this.a.aA(new A.a0E())}, +$S:3} +A.a0E.prototype={ +$0(){}, +$S:0} +A.J4.prototype={ +Y(a){var s=this.a.$1(a) +s.toString +return s}, +gnw(){return"ButtonStyleButton_MouseCursor"}} +A.Iv.prototype={ +aG(a){var s=new A.Kk(this.e,null,A.au()) +s.aI() +s.saU(null) +return s}, +aN(a,b){b.syv(this.e)}} +A.Kk.prototype={ +syv(a){if(this.A.k(0,a))return +this.A=a +this.a7()}, +Bw(a,b){var s,r,q=this.F$ +if(q!=null){s=b.$2(q,a) +q=s.a +r=this.A +return a.bI(new A.S(Math.max(q,r.a),Math.max(s.b,r.b)))}return B.L}, +cf(a){return this.Bw(a,A.Nz())}, +bQ(){var s,r,q=this,p=q.Bw(t.k.a(A.z.prototype.ga5.call(q)),A.NA()) +q.k3=p +s=q.F$ +if(s!=null){r=s.e +r.toString +t.r.a(r) +s=s.k3 +s.toString +r.a=B.T.jI(t.uu.a(p.a4(0,s)))}}, +bM(a,b){var s +if(this.hL(a,b))return!0 +s=this.F$.k3.h7(B.h) +return a.wF(new A.a3O(this,s),s,A.ac_(s))}} +A.a3O.prototype={ +$2(a,b){return this.a.F$.bM(a,this.b)}, +$S:20} +A.y4.prototype={ +c8(){this.dV() +this.d4() +this.eN()}, +m(){var s=this,r=s.b_$ +if(r!=null)r.H(0,s.gem()) +s.b_$=null +s.aW()}} +A.OG.prototype={ +D(){return"ButtonTextTheme."+this.b}} +A.zg.prototype={ +gc2(a){switch(0){case 0:case 1:return B.z2}}, +gc_(a){switch(0){case 0:case 1:return B.Fd}}, +k(a,b){var s=this +if(b==null)return!1 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.zg&&J.e(b.gc2(b),s.gc2(s))&&J.e(b.gc_(b),s.gc_(s))&&J.e(b.w,s.w)&&J.e(b.y,s.y)&&J.e(b.z,s.z)&&J.e(b.at,s.at)&&b.ax==s.ax}, +gu(a){var s=this +return A.L(B.vY,88,36,s.gc2(s),s.gc_(s),!1,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.GI.prototype={} +A.qg.prototype={ +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,s.e,s.f,s.r,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.qg&&J.e(b.b,s.b)&&J.e(b.c,s.c)&&J.e(b.d,s.d)&&b.e==s.e&&J.e(b.f,s.f)&&J.e(b.r,s.r)}} +A.GK.prototype={} +A.qh.prototype={ +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.qh&&b.b==s.b&&b.c==s.c&&b.d==s.d&&b.e==s.e&&J.e(b.w,s.w)&&J.e(b.x,s.x)}} +A.GL.prototype={} +A.qj.prototype={ +gu(a){var s=this +return A.cl([s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy])}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.qj&&J.e(b.a,s.a)&&J.e(b.b,s.b)&&J.e(b.c,s.c)&&J.e(b.d,s.d)&&J.e(b.e,s.e)&&J.e(b.f,s.f)&&J.e(b.r,s.r)&&J.e(b.w,s.w)&&b.x==s.x&&J.e(b.y,s.y)&&J.e(b.z,s.z)&&J.e(b.Q,s.Q)&&J.e(b.as,s.as)&&J.e(b.at,s.at)&&J.e(b.ax,s.ax)&&J.e(b.ay,s.ay)&&b.ch==s.ch&&b.CW==s.CW&&b.cx==s.cx&&J.e(b.cy,s.cy)}} +A.GN.prototype={} +A.qk.prototype={ +gUI(){var s=this.y +return 2*s}, +gUx(){var s=this.y +return 2*s}, +N(a){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null,f=A.al(a) +if(f.y){s=f.ax +r=s.e +s=r==null?s.c:r +q=s}else q=g +s=f.y +if(s){r=f.p3.w +r.toString +p=r}else{r=f.p2.w +r.toString +p=r}o=p.e2(q) +n=h.d +if(n==null)if(s){s=f.ax +r=s.d +s=r==null?s.b:r +m=s}else m=g +else m=n +if(m==null){s=o.b +s.toString +switch(A.oD(s).a){case 0:n=f.fy +break +case 1:n=f.fx +break +default:n=m}}else{if(q==null){n.toString +switch(A.oD(n).a){case 0:o=o.e2(f.fy) +break +case 1:o=o.e2(f.fx) +break}}n=m}l=h.gUI() +k=h.gUx() +s=h.f +s=s!=null?A.ajB(B.vW,s,g):g +r=h.c +if(r==null)r=g +else{j=A.cL(a,g,t.w).w.qA(1) +i=f.ok.e2(o.b) +j=A.OW(A.nP(A.SZ(A.qG(r,g,B.c3,!0,o,g,g,B.aK),i,g),j,g),g,g) +r=j}return new A.pM(r,new A.eM(n,s,g,g,g,g,B.b_),g,new A.aI(l,k,l,k),B.ae,B.O,g,g)}} +A.n0.prototype={ +k(a,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b=this +if(a0==null)return!1 +if(b===a0)return!0 +if(J.J(a0)!==A.w(b))return!1 +if(a0 instanceof A.n0)if(a0.a===b.a){s=a0.b +r=b.b +if(s.k(0,r)){q=a0.c +p=b.c +if(q.k(0,p)){o=a0.d +if(o==null)o=s +n=b.d +if(o.k(0,n==null?r:n)){o=a0.e +if(o==null)o=q +n=b.e +if(o.k(0,n==null?p:n)){o=a0.f +n=b.f +if(o.k(0,n)){m=a0.r +l=b.r +if(m.k(0,l)){k=a0.w +if(k==null)k=o +j=b.w +if(k.k(0,j==null?n:j)){k=a0.x +if(k==null)k=m +j=b.x +if(k.k(0,j==null?l:j)){k=a0.y +j=k==null +i=j?o:k +h=b.y +g=h==null +if(i.k(0,g?n:h)){i=a0.z +f=i==null +e=f?m:i +d=b.z +c=d==null +if(e.k(0,c?l:d)){e=a0.Q +if(e==null){if(j)k=o}else k=e +j=b.Q +if(j==null)j=g?n:h +if(k.k(0,j)){k=a0.as +if(k==null)m=f?m:i +else m=k +k=b.as +if(k==null)l=c?l:d +else l=k +if(m.k(0,l)){m=a0.at +l=b.at +if(m.k(0,l)){k=a0.ax +j=b.ax +if(k.k(0,j)){i=a0.ay +m=i==null?m:i +i=b.ay +if(m.k(0,i==null?l:i)){m=a0.ch +if(m==null)m=k +l=b.ch +if(m.k(0,l==null?j:l))if(a0.CW.k(0,b.CW)){m=a0.cx +l=b.cx +if(m.k(0,l)){k=a0.cy +j=b.cy +if(k.k(0,j)){i=a0.db +h=b.db +if(i.k(0,h)){g=a0.dx +if(g==null)g=k +f=b.dx +if(g.k(0,f==null?j:f)){g=a0.dy +if(g==null)g=i +f=b.dy +if(g.k(0,f==null?h:f)){g=a0.fr +if(g==null)g=m +f=b.fr +if(g.k(0,f==null?l:f)){g=a0.fx +m=g==null?m:g +g=b.fx +if(m.k(0,g==null?l:g)){m=a0.fy +if(m==null)m=B.l +l=b.fy +if(m.k(0,l==null?B.l:l)){m=a0.go +if(m==null)m=B.l +l=b.go +if(m.k(0,l==null?B.l:l)){m=a0.id +if(m==null)m=i +l=b.id +if(m.k(0,l==null?h:l)){m=a0.k1 +if(m==null)m=k +l=b.k1 +if(m.k(0,l==null?j:l)){m=a0.k2 +q=m==null?q:m +m=b.k2 +if(q.k(0,m==null?p:m)){q=a0.k4 +if(q==null)q=s +p=b.k4 +if(q.k(0,p==null?r:p)){q=a0.ok +if(q==null)q=o +p=b.ok +if(q.k(0,p==null?n:p)){q=a0.k3 +s=q==null?s:q +q=b.k3 +s=s.k(0,q==null?r:q)}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1 +else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1 +else s=!1 +return s}, +gu(b3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9=this,b0=a9.b,b1=a9.c,b2=a9.d +if(b2==null)b2=b0 +s=a9.e +if(s==null)s=b1 +r=a9.f +q=a9.r +p=a9.w +if(p==null)p=r +o=a9.x +if(o==null)o=q +n=a9.y +m=n==null +l=m?r:n +k=a9.z +j=k==null +i=j?q:k +h=a9.Q +if(h==null){if(m)n=r}else n=h +m=a9.as +if(m==null)m=j?q:k +k=a9.at +j=a9.ax +h=a9.ay +if(h==null)h=k +g=a9.ch +if(g==null)g=j +f=a9.cx +e=a9.cy +d=a9.db +c=a9.dx +if(c==null)c=e +b=a9.dy +if(b==null)b=d +a=a9.fr +if(a==null)a=f +a0=a9.fx +if(a0==null)a0=f +a1=a9.fy +if(a1==null)a1=B.l +a2=a9.go +if(a2==null)a2=B.l +a3=a9.id +if(a3==null)a3=d +a4=a9.k1 +if(a4==null)a4=e +a5=a9.k2 +if(a5==null)a5=b1 +a6=a9.k4 +if(a6==null)a6=b0 +a7=a9.ok +if(a7==null)a7=r +a8=a9.k3 +return A.L(a9.a,b0,b1,b2,s,r,q,p,o,l,i,n,m,k,j,h,g,a9.CW,f,A.L(e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8==null?b0:a8,B.a,B.a,B.a,B.a,B.a,B.a))}} +A.GO.prototype={} +A.nN.prototype={} +A.qD.prototype={ +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.J(b)!==A.w(r))return!1 +if(b instanceof A.qD)if(J.e(b.a,r.a))if(b.b==r.b)if(b.c==r.c)if(b.d==r.d)if(J.e(b.e,r.e))if(b.f==r.f)if(b.r==r.r)if(J.e(b.w,r.w))if(b.x==r.x)if(b.y==r.y)if(b.z==r.z)if(b.Q==r.Q)s=!0 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +return s}} +A.Hi.prototype={} +A.qE.prototype={ +gu(a){var s=this +return A.cl([s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db,s.dx,s.dy,s.fr,s.fx,s.fy,s.go,s.id,s.k1,s.k2,s.k3,s.k4])}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +return b instanceof A.qE&&J.e(b.a,s.a)&&b.b==s.b&&J.e(b.c,s.c)&&J.e(b.d,s.d)&&J.e(b.e,s.e)&&J.e(b.f,s.f)&&J.e(b.r,s.r)&&J.e(b.w,s.w)&&J.e(b.x,s.x)&&J.e(b.y,s.y)&&J.e(b.z,s.z)&&b.Q==s.Q&&b.as==s.as&&b.at==s.at&&b.ax==s.ax&&b.ay==s.ay&&J.e(b.ch,s.ch)&&J.e(b.CW,s.CW)&&b.cx==s.cx&&b.cy==s.cy&&b.db==s.db&&J.e(b.dx,s.dx)&&b.dy==s.dy&&J.e(b.fr,s.fr)&&J.e(b.fx,s.fx)&&J.e(b.fy,s.fy)&&J.e(b.go,s.go)&&J.e(b.id,s.id)&&J.e(b.k1,s.k1)&&J.e(b.k2,s.k2)&&J.e(b.k3,s.k3)&&b.k4==s.k4}} +A.Hk.prototype={} +A.qM.prototype={ +gu(a){return J.p(this.e)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.qM&&J.e(b.a,s.a)&&b.b==s.b&&J.e(b.c,s.c)&&J.e(b.d,s.d)&&J.e(b.e,s.e)&&J.e(b.f,s.f)&&J.e(b.y,s.y)&&J.e(b.r,s.r)&&J.e(b.w,s.w)&&J.e(b.x,s.x)}} +A.Ht.prototype={} +A.qN.prototype={ +gu(a){var s=this +return A.L(s.gac(s),s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.qN&&J.e(b.gac(b),s.gac(s))&&b.b==s.b&&b.c==s.c&&b.d==s.d&&b.e==s.e}, +gac(a){return this.a}} +A.Hx.prototype={} +A.qT.prototype={ +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.qT&&J.e(b.a,s.a)&&J.e(b.b,s.b)&&b.c==s.c&&J.e(b.d,s.d)&&J.e(b.e,s.e)&&J.e(b.f,s.f)&&J.e(b.r,s.r)&&b.w==s.w}} +A.HG.prototype={} +A.qU.prototype={ +gu(a){return A.L(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.J(b)!==A.w(r))return!1 +if(b instanceof A.qU)if(J.e(b.a,r.a))s=J.e(b.c,r.c) +else s=!1 +else s=!1 +return s}} +A.HH.prototype={} +A.qY.prototype={ +gu(a){return J.p(this.a)}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.J(b)!==A.w(this))return!1 +return b instanceof A.qY&&J.e(b.a,this.a)}} +A.HJ.prototype={} +A.iS.prototype={} +A.ra.prototype={ +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,null,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.ra&&J.e(b.a,s.a)&&J.e(b.b,s.b)&&J.e(b.c,s.c)&&J.e(b.d,s.d)&&J.e(b.e,s.e)&&J.e(b.f,s.f)&&J.e(b.r,s.r)&&J.e(b.w,s.w)&&J.e(b.x,s.x)&&J.e(b.y,s.y)&&J.e(b.z,s.z)&&!0}} +A.HO.prototype={} +A.re.prototype={ +gu(a){return J.p(this.a)}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.J(b)!==A.w(this))return!1 +return b instanceof A.re&&J.e(b.a,this.a)}} +A.HS.prototype={} +A.rg.prototype={ +bO(a){var s=this +return s.f!==a.f||s.r!==a.r||s.w!==a.w||s.x!==a.x||!1}} +A.a1s.prototype={ +j(a){return""}} +A.w1.prototype={ +D(){return"_FloatingActionButtonType."+this.b}} +A.Bj.prototype={ +N(a5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=null,a0=A.al(a5),a1=a0.al,a2=this.k1,a3=a0.y?new A.a1G(a5,a2,!0,a,a,a,a,a,6,6,8,a,6,a,!0,a,B.ic,B.ib,B.id,B.vT,8,a,a,a):new A.a1F(a2,!0,A.al(a5),A.al(a5).ax,a,a,a,a,a,6,6,8,a,12,a,!0,a,B.ic,B.ib,B.id,B.vU,8,a,a,a),a4=a1.a +if(a4==null)a4=a3.gc4() +s=a1.b +if(s==null)s=a3.gbP(a3) +r=a1.c +if(r==null)r=a3.glu() +q=a1.d +if(q==null)q=a3.gly() +p=a1.e +if(p==null)p=a3.gku() +o=a1.f +if(o==null){n=a3.f +n.toString +o=n}m=a1.r +if(m==null){n=a3.r +n.toString +m=n}l=a1.w +if(l==null){n=a3.w +n.toString +l=n}n=a1.x +k=n==null?a3.x:n +if(k==null)k=o +j=a1.y +if(j==null){n=a3.y +n.toString +j=n}i=a1.Q +if(i==null){n=a3.Q +n.toString +i=n}h=a1.as +if(h==null){n=a3.gda() +n.toString +h=n}n=a1.cy +if(n==null){n=a3.glj() +n.toString}g=n.e2(a4) +f=a1.z +if(f==null){n=a3.gc_(a3) +n.toString +f=n}n=this.c +e=A.rv(n,new A.cd(h,a,a,a,a,a,a,a)) +switch(a2.a){case 0:d=a1.at +if(d==null){a2=a3.at +a2.toString +d=a2}break +case 1:d=a1.ax +if(d==null){a2=a3.ax +a2.toString +d=a2}break +case 2:d=a1.ay +if(d==null){a2=a3.ay +a2.toString +d=a2}break +case 3:d=a1.ch +if(d==null){a2=a3.ch +a2.toString +d=a2}c=a1.cx +if(c==null)c=a3.gli() +a2=A.a([],t.nA) +a2.push(n) +e=new A.GM(new A.hw(c,A.acH(a2,B.fh,B.oV,B.oW),a),a) +break +default:d=a}b=new A.tU(this.z,new A.HI(a,a1.db),g,s,r,q,p,o,l,m,j,k,d,f,e,a0.e,a,!1,B.w,i,a) +return new A.Cu(new A.ld(B.x6,b,a),a)}} +A.HI.prototype={ +Y(a){var s=A.lp(this.a,a,t.EA) +if(s==null)s=null +return s==null?B.iZ.Y(a):s}, +gnw(){return"MaterialStateMouseCursor(FloatActionButton)"}} +A.GM.prototype={ +aG(a){var s=a.aj(t.I) +s.toString +s=new A.Kg(B.T,s.w,null,A.au()) +s.aI() +s.saU(null) +return s}, +aN(a,b){var s=a.aj(t.I) +s.toString +b.sbR(s.w)}} +A.Kg.prototype={ +cf(a){var s,r=this.F$,q=a.a,p=a.b,o=a.c,n=a.d +if(r!=null){s=r.ip(B.cb) +return new A.S(Math.max(q,Math.min(p,s.a)),Math.max(o,Math.min(n,s.b)))}else return new A.S(A.O(1/0,q,p),A.O(1/0,o,n))}, +bQ(){var s=this,r=t.k.a(A.z.prototype.ga5.call(s)),q=s.F$,p=r.a,o=r.b,n=r.c,m=r.d +if(q!=null){q.ck(B.cb,!0) +q=s.F$.k3 +s.k3=new A.S(Math.max(p,Math.min(o,q.a)),Math.max(n,Math.min(m,q.b))) +s.wG()}else s.k3=new A.S(A.O(1/0,p,o),A.O(1/0,n,m))}} +A.a1F.prototype={ +gc4(){return this.fx.r}, +gbP(a){return this.fx.f}, +glu(){return this.fr.cx}, +gly(){return this.fr.dx}, +gku(){return this.fr.k3}, +gc_(a){return this.dx===B.hO?B.uM:B.bd}, +gda(){return this.dx===B.Nc?36:24}, +gli(){return new A.e2(this.dy&&this.dx===B.hO?16:20,0,20,0)}, +glj(){return this.fr.p3.as.Zh(1.2)}} +A.a1G.prototype={ +gmD(){var s,r=this,q=r.fx +if(q===$){s=A.al(r.dx) +r.fx!==$&&A.ap() +q=r.fx=s.ax}return q}, +gc4(){var s=this.gmD(),r=s.e +return r==null?s.c:r}, +gbP(a){var s=this.gmD(),r=s.d +return r==null?s.b:r}, +gku(){var s=this.gmD(),r=s.e +s=(r==null?s.c:r).a +return A.U(31,s>>>16&255,s>>>8&255,s&255)}, +glu(){var s=this.gmD(),r=s.e +s=(r==null?s.c:r).a +return A.U(31,s>>>16&255,s>>>8&255,s&255)}, +gly(){var s=this.gmD(),r=s.e +s=(r==null?s.c:r).a +return A.U(20,s>>>16&255,s>>>8&255,s&255)}, +gc_(a){switch(this.dy.a){case 0:return B.u_ +case 1:return B.Fb +case 2:return B.Fc +case 3:return B.u_}}, +gda(){switch(this.dy.a){case 0:return 24 +case 1:return 24 +case 2:return 36 +case 3:return 24}}, +gli(){return new A.e2(this.fr&&this.dy===B.hO?16:20,0,20,0)}, +glj(){var s,r=this,q=r.fy +if(q===$){s=A.al(r.dx) +r.fy!==$&&A.ap() +q=r.fy=s.p3}return q.as}} +A.Rx.prototype={ +j(a){return"FloatingActionButtonLocation"}} +A.Zc.prototype={ +m3(a){return new A.q(this.KO(a,0),this.KP(a,0))}} +A.Rl.prototype={ +KP(a,b){var s,r,q=a.c,p=a.r.b,o=a.f.d,n=a.b.b,m=a.a.b,l=a.w.b,k=a.e.d,j=m/2 +if(p-q>k+j)s=0 +else s=k===0?o:j+16 +r=q-j-s +if(l>0)r=Math.min(r,q-l-m-16) +if(n>0)r=Math.min(r,q-n-j) +return Math.min(p-m-s,r)}} +A.Rk.prototype={ +KO(a,b){return(a.r.a-a.a.a)/2}} +A.a17.prototype={ +j(a){return"FloatingActionButtonLocation.centerDocked"}} +A.Rw.prototype={ +j(a){return"FloatingActionButtonAnimator"}} +A.a4c.prototype={ +zT(a,b,c){if(c<0.5)return a +else return b}} +A.vw.prototype={ +gn(a){var s=this,r=s.w.x +r===$&&A.c() +if(r>>16&255,r.gn(r)>>>8&255,r.gn(r)&255) +return s}if(a.q(0,B.V)){s=q.c +r=q.a +s=r==null?p:A.U(20,r.gn(r)>>>16&255,r.gn(r)>>>8&255,r.gn(r)&255) +return s}if(a.q(0,B.a2)){s=q.b +r=q.a +s=r==null?p:A.U(31,r.gn(r)>>>16&255,r.gn(r)>>>8&255,r.gn(r)&255) +return s}}if(a.q(0,B.P)){s=q.d +r=q.a +s=r==null?p:A.U(31,r.gn(r)>>>16&255,r.gn(r)>>>8&255,r.gn(r)&255) +return s}if(a.q(0,B.V)){s=q.c +r=q.a +s=r==null?p:A.U(20,r.gn(r)>>>16&255,r.gn(r)>>>8&255,r.gn(r)&255) +return s}if(a.q(0,B.a2)){s=q.b +r=q.a +s=r==null?p:A.U(20,r.gn(r)>>>16&255,r.gn(r)>>>8&255,r.gn(r)&255) +return s}return p}, +j(a){return"{hovered: "+A.h(this.c)+", focused: "+A.h(this.b)+", pressed: "+A.h(this.d)+", otherwise: null}"}} +A.Im.prototype={ +gan(){var s,r=this,q=r.fx +if(q===$){s=A.al(r.dy) +r.fx!==$&&A.ap() +q=r.fx=s.ax}return q}, +gbP(a){return B.DM}, +gc4(){return new A.bB(new A.a2k(this),t.T)}, +ght(){return new A.bB(new A.a2m(this),t.T)}, +gds(a){return B.dX}, +gbA(a){return B.b7}, +gbS(){return B.b7}, +gc2(a){return B.e0}, +ghr(){return B.dZ}, +ghq(){return B.e1}, +gda(){return B.dY}, +gfT(){return null}, +gc_(a){return B.e_}, +ghs(){return new A.bB(new A.a2l(),t.EB)}, +ghC(){return B.c5}, +ghz(){return A.al(this.dy).e}, +gfW(){return A.al(this.dy).x}} +A.a2k.prototype={ +$1(a){var s,r +if(a.q(0,B.M)){s=this.a.gan().db.a +return A.U(97,s>>>16&255,s>>>8&255,s&255)}if(a.q(0,B.a3))return this.a.gan().b +s=this.a.gan() +r=s.dy +return r==null?s.db:r}, +$S:5} +A.a2m.prototype={ +$1(a){var s,r,q=this +if(a.q(0,B.a3)){if(a.q(0,B.V)){s=q.a.gan().b +return A.U(20,s.gn(s)>>>16&255,s.gn(s)>>>8&255,s.gn(s)&255)}if(a.q(0,B.a2)){s=q.a.gan().b +return A.U(31,s.gn(s)>>>16&255,s.gn(s)>>>8&255,s.gn(s)&255)}if(a.q(0,B.P)){s=q.a.gan().b +return A.U(31,s.gn(s)>>>16&255,s.gn(s)>>>8&255,s.gn(s)&255)}}if(a.q(0,B.V)){s=q.a.gan() +r=s.dy +s=(r==null?s.db:r).a +return A.U(20,s>>>16&255,s>>>8&255,s&255)}if(a.q(0,B.a2)){s=q.a.gan() +r=s.dy +s=(r==null?s.db:r).a +return A.U(31,s>>>16&255,s>>>8&255,s&255)}if(a.q(0,B.P)){s=q.a.gan() +r=s.dy +s=(r==null?s.db:r).a +return A.U(31,s>>>16&255,s>>>8&255,s&255)}return B.H}, +$S:5} +A.a2l.prototype={ +$1(a){if(a.q(0,B.M))return B.bv +return B.c2}, +$S:49} +A.HT.prototype={ +gan(){var s,r=this,q=r.fx +if(q===$){s=A.al(r.dy) +r.fx!==$&&A.ap() +q=r.fx=s.ax}return q}, +gbP(a){return new A.bB(new A.a1H(this),t.T)}, +gc4(){return new A.bB(new A.a1I(this),t.T)}, +ght(){return new A.bB(new A.a1K(this),t.T)}, +gds(a){return B.dX}, +gbA(a){return B.b7}, +gbS(){return B.b7}, +gc2(a){return B.e0}, +ghr(){return B.dZ}, +ghq(){return B.e1}, +gda(){return B.dY}, +gfT(){return null}, +gc_(a){return B.e_}, +ghs(){return new A.bB(new A.a1J(),t.EB)}, +ghC(){return B.c5}, +ghz(){return A.al(this.dy).e}, +gfW(){return A.al(this.dy).x}} +A.a1H.prototype={ +$1(a){var s,r +if(a.q(0,B.M)){s=this.a.gan().db.a +return A.U(31,s>>>16&255,s>>>8&255,s&255)}if(a.q(0,B.a3))return this.a.gan().b +s=this.a +if(s.fr){s=s.gan() +r=s.dx +return r==null?s.cy:r}return s.gan().b}, +$S:5} +A.a1I.prototype={ +$1(a){var s +if(a.q(0,B.M)){s=this.a.gan().db.a +return A.U(97,s>>>16&255,s>>>8&255,s&255)}if(a.q(0,B.a3))return this.a.gan().c +s=this.a +if(s.fr)return s.gan().b +return s.gan().c}, +$S:5} +A.a1K.prototype={ +$1(a){var s,r=this +if(a.q(0,B.a3)){if(a.q(0,B.V)){s=r.a.gan().c.a +return A.U(20,s>>>16&255,s>>>8&255,s&255)}if(a.q(0,B.a2)){s=r.a.gan().c.a +return A.U(31,s>>>16&255,s>>>8&255,s&255)}if(a.q(0,B.P)){s=r.a.gan().c.a +return A.U(31,s>>>16&255,s>>>8&255,s&255)}}s=r.a +if(s.fr){if(a.q(0,B.V)){s=s.gan().b +return A.U(20,s.gn(s)>>>16&255,s.gn(s)>>>8&255,s.gn(s)&255)}if(a.q(0,B.a2)){s=s.gan().b +return A.U(31,s.gn(s)>>>16&255,s.gn(s)>>>8&255,s.gn(s)&255)}if(a.q(0,B.P)){s=s.gan().b +return A.U(31,s.gn(s)>>>16&255,s.gn(s)>>>8&255,s.gn(s)&255)}}if(a.q(0,B.V)){s=s.gan().c.a +return A.U(20,s>>>16&255,s>>>8&255,s&255)}if(a.q(0,B.a2)){s=s.gan().c.a +return A.U(31,s>>>16&255,s>>>8&255,s&255)}if(a.q(0,B.P)){s=s.gan().c.a +return A.U(31,s>>>16&255,s>>>8&255,s&255)}return B.H}, +$S:5} +A.a1J.prototype={ +$1(a){if(a.q(0,B.M))return B.bv +return B.c2}, +$S:49} +A.HU.prototype={ +gan(){var s,r=this,q=r.fx +if(q===$){s=A.al(r.dy) +r.fx!==$&&A.ap() +q=r.fx=s.ax}return q}, +gbP(a){return new A.bB(new A.a1L(this),t.T)}, +gc4(){return new A.bB(new A.a1M(this),t.T)}, +ght(){return new A.bB(new A.a1O(this),t.T)}, +gds(a){return B.dX}, +gbA(a){return B.b7}, +gbS(){return B.b7}, +gc2(a){return B.e0}, +ghr(){return B.dZ}, +ghq(){return B.e1}, +gda(){return B.dY}, +gfT(){return null}, +gc_(a){return B.e_}, +ghs(){return new A.bB(new A.a1N(),t.EB)}, +ghC(){return B.c5}, +ghz(){return A.al(this.dy).e}, +gfW(){return A.al(this.dy).x}} +A.a1L.prototype={ +$1(a){var s,r +if(a.q(0,B.M)){s=this.a.gan().db.a +return A.U(31,s>>>16&255,s>>>8&255,s&255)}if(a.q(0,B.a3)){s=this.a.gan() +r=s.w +return r==null?s.f:r}s=this.a +if(s.fr){s=s.gan() +r=s.dx +return r==null?s.cy:r}s=s.gan() +r=s.w +return r==null?s.f:r}, +$S:5} +A.a1M.prototype={ +$1(a){var s,r +if(a.q(0,B.M)){s=this.a.gan().db.a +return A.U(97,s>>>16&255,s>>>8&255,s&255)}if(a.q(0,B.a3)){s=this.a.gan() +r=s.x +return r==null?s.r:r}s=this.a +if(s.fr){s=s.gan() +r=s.dy +return r==null?s.db:r}s=s.gan() +r=s.x +return r==null?s.r:r}, +$S:5} +A.a1O.prototype={ +$1(a){var s,r,q=this +if(a.q(0,B.a3)){if(a.q(0,B.V)){s=q.a.gan() +r=s.x +s=(r==null?s.r:r).a +return A.U(20,s>>>16&255,s>>>8&255,s&255)}if(a.q(0,B.a2)){s=q.a.gan() +r=s.x +s=(r==null?s.r:r).a +return A.U(31,s>>>16&255,s>>>8&255,s&255)}if(a.q(0,B.P)){s=q.a.gan() +r=s.x +s=(r==null?s.r:r).a +return A.U(31,s>>>16&255,s>>>8&255,s&255)}}s=q.a +if(s.fr){if(a.q(0,B.V)){s=s.gan() +r=s.dy +s=(r==null?s.db:r).a +return A.U(20,s>>>16&255,s>>>8&255,s&255)}if(a.q(0,B.a2)){s=s.gan() +r=s.dy +s=(r==null?s.db:r).a +return A.U(31,s>>>16&255,s>>>8&255,s&255)}if(a.q(0,B.P)){s=s.gan() +r=s.dy +s=(r==null?s.db:r).a +return A.U(31,s>>>16&255,s>>>8&255,s&255)}}if(a.q(0,B.V)){s=s.gan() +r=s.x +s=(r==null?s.r:r).a +return A.U(20,s>>>16&255,s>>>8&255,s&255)}if(a.q(0,B.a2)){s=s.gan() +r=s.x +s=(r==null?s.r:r).a +return A.U(31,s>>>16&255,s>>>8&255,s&255)}if(a.q(0,B.P)){s=s.gan() +r=s.x +s=(r==null?s.r:r).a +return A.U(31,s>>>16&255,s>>>8&255,s&255)}return B.H}, +$S:5} +A.a1N.prototype={ +$1(a){if(a.q(0,B.M))return B.bv +return B.c2}, +$S:49} +A.Jp.prototype={ +gan(){var s,r=this,q=r.fx +if(q===$){s=A.al(r.dy) +r.fx!==$&&A.ap() +q=r.fx=s.ax}return q}, +gbP(a){return new A.bB(new A.a3p(this),t.T)}, +gc4(){return new A.bB(new A.a3q(this),t.T)}, +ght(){return new A.bB(new A.a3s(this),t.T)}, +gds(a){return B.dX}, +gbA(a){return B.b7}, +gbS(){return B.b7}, +gc2(a){return B.e0}, +ghr(){return B.dZ}, +ghq(){return B.e1}, +gda(){return B.dY}, +gfT(){return new A.bB(new A.a3t(this),t.aq)}, +gc_(a){return B.e_}, +ghs(){return new A.bB(new A.a3r(),t.EB)}, +ghC(){return B.c5}, +ghz(){return A.al(this.dy).e}, +gfW(){return A.al(this.dy).x}} +A.a3p.prototype={ +$1(a){var s,r +if(a.q(0,B.M)){if(a.q(0,B.a3)){s=this.a.gan().db.a +return A.U(31,s>>>16&255,s>>>8&255,s&255)}return B.H}if(a.q(0,B.a3)){s=this.a.gan() +r=s.id +return r==null?s.db:r}return B.H}, +$S:5} +A.a3q.prototype={ +$1(a){var s,r +if(a.q(0,B.M)){s=this.a.gan().db.a +return A.U(97,s>>>16&255,s>>>8&255,s&255)}if(a.q(0,B.a3)){s=this.a.gan() +r=s.k1 +return r==null?s.cy:r}s=this.a.gan() +r=s.dy +return r==null?s.db:r}, +$S:5} +A.a3s.prototype={ +$1(a){var s,r,q=this +if(a.q(0,B.a3)){if(a.q(0,B.V)){s=q.a.gan() +r=s.k1 +s=(r==null?s.cy:r).a +return A.U(20,s>>>16&255,s>>>8&255,s&255)}if(a.q(0,B.a2)){s=q.a.gan() +r=s.k1 +s=(r==null?s.cy:r).a +return A.U(20,s>>>16&255,s>>>8&255,s&255)}if(a.q(0,B.P)){s=q.a.gan() +r=s.k1 +s=(r==null?s.cy:r).a +return A.U(31,s>>>16&255,s>>>8&255,s&255)}}if(a.q(0,B.V)){s=q.a.gan() +r=s.dy +s=(r==null?s.db:r).a +return A.U(20,s>>>16&255,s>>>8&255,s&255)}if(a.q(0,B.a2)){s=q.a.gan() +r=s.dy +s=(r==null?s.db:r).a +return A.U(20,s>>>16&255,s>>>8&255,s&255)}if(a.q(0,B.P)){s=q.a.gan().db.a +return A.U(31,s>>>16&255,s>>>8&255,s&255)}return B.H}, +$S:5} +A.a3t.prototype={ +$1(a){var s,r +if(a.q(0,B.a3))return null +else{if(a.q(0,B.M)){s=this.a.gan().db.a +return new A.bD(A.U(31,s>>>16&255,s>>>8&255,s&255),1,B.ac,-1)}s=this.a.gan() +r=s.fr +return new A.bD(r==null?s.cx:r,1,B.ac,-1)}}, +$S:182} +A.a3r.prototype={ +$1(a){if(a.q(0,B.M))return B.bv +return B.c2}, +$S:49} +A.lh.prototype={ +gu(a){return J.p(this.a)}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.J(b)!==A.w(this))return!1 +return b instanceof A.lh&&J.e(b.a,this.a)}} +A.rt.prototype={ +bO(a){return!this.w.k(0,a.w)}} +A.Io.prototype={} +A.jz.prototype={ +Sm(a){var s +if(a===B.F&&!this.CW){s=this.ch +s===$&&A.c() +s.m() +this.ix()}}, +m(){var s=this.ch +s===$&&A.c() +s.m() +this.ix()}, +DI(a,b,c){var s,r,q=this +a.bm(0) +s=q.f +if(s!=null)a.eW(0,s.ez(b,q.ax)) +switch(q.z.a){case 1:s=b.gav() +r=q.Q +a.e6(s,r==null?35:r,c) +break +case 0:s=q.as +if(!s.k(0,B.ab))a.cg(A.Wg(b,s.c,s.d,s.a,s.b),c) +else a.bK(b,c) +break}a.b6(0)}, +yV(a,b){var s,r,q,p=this,o=$.ae().b9(),n=p.e,m=p.ay +m===$&&A.c() +s=m.a +o.sac(0,A.U(m.b.V(0,s.gn(s)),n.gn(n)>>>16&255,n.gn(n)>>>8&255,n.gn(n)&255)) +r=A.a88(b) +n=p.at +if(n!=null)q=n.$0() +else{n=p.b.k3 +q=new A.C(0,0,0+n.a,0+n.b)}if(r==null){a.bm(0) +a.V(0,b.a) +p.DI(a,q,o) +a.b6(0)}else p.DI(a,q.cE(r),o)}} +A.a5t.prototype={ +$0(){var s=this.a.k3 +return new A.C(0,0,0+s.a,0+s.b)}, +$S:106} +A.a2A.prototype={ +GK(a,b,c,d,e,f,g,a0,a1,a2,a3,a4){var s,r,q,p,o,n,m,l,k,j,i,h=null +if(a1==null){if(a2!=null){s=a2.$0() +r=new A.S(s.c-s.a,s.d-s.b)}else{s=a3.k3 +s.toString +r=s}s=Math.max(r.Ge(0,B.h).gcz(),new A.q(0+r.a,0).a4(0,new A.q(0,0+r.b)).gcz())/2}else s=a1 +q=new A.rA(a0,B.ab,s,A.apC(a3,d,a2),a4,c,f,e,a3,g) +p=e.A +o=A.d9(h,B.fl,h,h,p) +n=e.geb() +o.aX() +m=o.bY$ +m.b=!0 +m.a.push(n) +o.c5(0) +q.cx=o +m=c.gn(c) +l=t.m +k=t.xD +q.CW=new A.aR(l.a(o),new A.jA(0,m>>>24&255),k.h("aR")) +m=A.d9(h,B.cl,h,h,p) +m.aX() +o=m.bY$ +o.b=!0 +o.a.push(n) +m.c5(0) +q.ch=m +o=t.a7 +j=$.agh() +i=o.h("fQ") +q.ay=new A.aR(l.a(m),new A.fQ(j,new A.av(s*0.3,s+5,o),i),i.h("aR")) +p=A.d9(h,B.jv,h,h,p) +p.aX() +i=p.bY$ +i.b=!0 +i.a.push(n) +p.aX() +n=p.bT$ +n.b=!0 +n.a.push(q.gU1()) +q.db=p +n=c.gn(c) +i=$.agi() +k=k.h("fQ") +q.cy=new A.aR(l.a(p),new A.fQ(i,new A.jA(n>>>24&255,0),k),k.h("aR")) +e.wD(q) +return q}} +A.rA.prototype={ +qy(a){var s=this.ch +s===$&&A.c() +s.e=B.yX +s.c5(0) +s=this.cx +s===$&&A.c() +s.c5(0) +s=this.db +s===$&&A.c() +s.z=B.a9 +s.js(1,B.ae,B.jv)}, +aT(a){var s,r=this,q=r.cx +q===$&&A.c() +q.eC(0) +q=r.cx.x +q===$&&A.c() +s=1-q +q=r.db +q===$&&A.c() +q.sn(0,s) +if(s<1){q=r.db +q.z=B.a9 +q.js(1,B.ae,B.fl)}}, +U2(a){if(a===B.J)this.m()}, +m(){var s=this,r=s.ch +r===$&&A.c() +r.m() +r=s.cx +r===$&&A.c() +r.m() +r=s.db +r===$&&A.c() +r.m() +s.ix()}, +yV(a,b){var s,r,q,p,o,n,m=this,l=m.cx +l===$&&A.c() +l=l.r +if(l!=null&&l.a!=null){l=m.CW +l===$&&A.c() +s=l.a +r=l.b.V(0,s.gn(s))}else{l=m.cy +l===$&&A.c() +s=l.a +r=l.b.V(0,s.gn(s))}q=$.ae().b9() +l=m.e +q.sac(0,A.U(r,l.gn(l)>>>16&255,l.gn(l)>>>8&255,l.gn(l)&255)) +l=m.at +p=l!=null?l.$0():null +s=p!=null?p.gav():m.b.k3.h7(B.h) +o=m.ch +o===$&&A.c() +o=o.x +o===$&&A.c() +o=A.ts(m.z,s,B.b1.V(0,o)) +o.toString +s=m.ay +s===$&&A.c() +n=s.a +n=s.b.V(0,n.gn(n)) +m.Jg(m.Q,a,o,l,m.f,q,n,m.ax,b)}} +A.a5s.prototype={ +$0(){var s=this.a.k3 +return new A.C(0,0,0+s.a,0+s.b)}, +$S:106} +A.a2B.prototype={ +GK(a,b,c,d,e,f,g,h,i,j,k,a0){var s,r,q=null,p=i==null?A.apF(k,d,j,h):i,o=new A.rB(h,B.ab,p,A.apB(k,d,j),!d,a0,c,f,e,k,g),n=e.A,m=A.d9(q,B.cl,q,q,n),l=e.geb() +m.aX() +s=m.bY$ +s.b=!0 +s.a.push(l) +m.c5(0) +o.CW=m +s=t.a7 +r=t.m +o.ch=new A.aR(r.a(m),new A.av(0,p,s),s.h("aR")) +n=A.d9(q,B.O,q,q,n) +n.aX() +s=n.bY$ +s.b=!0 +s.a.push(l) +n.aX() +l=n.bT$ +l.b=!0 +l.a.push(o.gU3()) +o.cy=n +l=c.gn(c) +o.cx=new A.aR(r.a(n),new A.jA(l>>>24&255,0),t.xD.h("aR")) +e.wD(o) +return o}} +A.rB.prototype={ +qy(a){var s=B.c.cJ(this.as/1),r=this.CW +r===$&&A.c() +r.e=A.c4(0,s) +r.c5(0) +this.cy.c5(0)}, +aT(a){var s=this.cy +if(s!=null)s.c5(0)}, +U4(a){if(a===B.J)this.m()}, +m(){var s=this,r=s.CW +r===$&&A.c() +r.m() +s.cy.m() +s.cy=null +s.ix()}, +yV(a,b){var s,r,q=this,p=$.ae().b9(),o=q.e,n=q.cx +n===$&&A.c() +s=n.a +p.sac(0,A.U(n.b.V(0,s.gn(s)),o.gn(o)>>>16&255,o.gn(o)>>>8&255,o.gn(o)&255)) +r=q.z +if(q.ax){o=q.b.k3.h7(B.h) +n=q.CW +n===$&&A.c() +n=n.x +n===$&&A.c() +r=A.ts(r,o,n)}r.toString +o=q.ch +o===$&&A.c() +n=o.a +n=o.b.V(0,n.gn(n)) +q.Jg(q.Q,a,r,q.at,q.f,p,n,q.ay,b)}} +A.jB.prototype={ +qy(a){}, +aT(a){}, +sac(a,b){if(b.k(0,this.e))return +this.e=b +this.a.aB()}, +sx6(a){if(J.e(a,this.f))return +this.f=a +this.a.aB()}, +Jg(a,b,c,d,e,f,g,h,i){var s,r=A.a88(i) +b.bm(0) +if(r==null)b.V(0,i.a) +else b.ae(0,r.a,r.b) +if(d!=null){s=d.$0() +if(e!=null)b.eW(0,e.ez(s,h)) +else if(!a.k(0,B.ab))b.jL(A.Wg(s,a.c,a.d,a.a,a.b)) +else b.jM(s)}b.e6(c,g,f) +b.b6(0)}} +A.nw.prototype={} +A.wI.prototype={ +bO(a){return this.f!==a.f}} +A.nu.prototype={ +KV(a){return null}, +N(a){var s=this,r=a.aj(t.AD),q=r==null?null:r.f +return new A.wd(s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.Q,s.z,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db,s.dx,s.dy,s.fr,s.fx,s.fy,s.go,s.id,!1,s.k2,!1,s.k4,s.ok,q,s.gKU(),s.gZy(),s.p1,null)}, +Zz(a){return!0}} +A.wd.prototype={ +aq(){return new A.wc(A.y(t.uS,t.z6),new A.be(A.a([],t.hL),t.fR),null,B.m)}} +A.kl.prototype={ +D(){return"_HighlightType."+this.b}} +A.wc.prototype={ +ga0q(){var s=this.r +s=s.gaJ(s) +s=new A.b2(s,new A.a2y(),A.m(s).h("b2")) +return!s.gS(s)}, +yo(a,b){var s,r=this.y,q=r.a,p=q.length +if(b){r.b=!0 +q.push(a)}else r.v(0,a) +s=q.length!==0 +if(s!==(p!==0)){r=this.a.p1 +if(r!=null)r.yo(this,s)}}, +Al(a){var s=this.c +s.toString +this.WU(s) +this.I2()}, +Lu(){return this.Al(null)}, +xZ(){this.aA(new A.a2x())}, +gcF(){var s=this.a.p4 +if(s==null){s=this.x +s.toString}return s}, +o0(){var s,r,q=this +if(q.a.p4==null)q.x=A.abU(null) +s=q.gcF() +r=q.a +r.toString +s.dw(0,B.M,!q.df(r)) +q.gcF().Z(0,q.gk8())}, +aM(){this.P7() +this.o0() +$.at.a1$.f.a.d.B(0,this.gI_())}, +aQ(a){var s,r,q,p,o=this +o.bi(a) +s=a.p4 +if(o.a.p4!=s){if(s!=null)s.H(0,o.gk8()) +if(o.a.p4!=null){s=o.x +if(s!=null){s.a_$=$.b7() +s.W$=0}o.x=null}o.o0()}s=o.a +if(s.cx!=a.cx||s.CW!==a.CW||!1){s=o.r +r=s.i(0,B.c8) +if(r!=null){q=r.ch +q===$&&A.c() +q.m() +r.ix() +o.zH(B.c8,!1,o.f)}p=s.i(0,B.vf) +if(p!=null){s=p.ch +s===$&&A.c() +s.m() +p.ix()}}if(!J.e(o.a.db,a.db))o.Xk() +s=o.a +s.toString +if(o.df(s)!==o.df(a)){s=o.gcF() +q=o.a +q.toString +s.dw(0,B.M,!o.df(q)) +s=o.a +s.toString +if(!o.df(s)){o.gcF().dw(0,B.P,!1) +r=o.r.i(0,B.c8) +if(r!=null){s=r.ch +s===$&&A.c() +s.m() +r.ix()}}o.zH(B.c8,!1,o.f)}o.zG()}, +m(){var s,r=this +$.at.a1$.f.a.d.v(0,r.gI_()) +r.gcF().H(0,r.gk8()) +s=r.x +if(s!=null){s.a_$=$.b7() +s.W$=0}r.aW()}, +gte(){if(!this.ga0q()){var s=this.d +s=s!=null&&s.a!==0}else s=!0 +return s}, +KL(a){switch(a.a){case 0:return B.O +case 1:case 2:return B.z0}}, +zH(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null,f=h.r,e=f.i(0,a),d=a.a +switch(d){case 0:h.gcF().dw(0,B.P,c) +break +case 1:if(b)h.gcF().dw(0,B.V,c) +break +case 2:break}if(a===B.c7){s=h.a.p1 +if(s!=null)s.yo(h,c)}s=e==null +if(c===(!s&&e.CW))return +if(c)if(s){s=h.a.fx +if(s==null)r=g +else{q=h.gcF().a +r=s.a.$1(q)}if(r==null){s=h.c +s.toString +p=A.al(s) +switch(d){case 0:r=h.a.fr +if(r==null)r=p.cy +break +case 2:r=h.a.dx +if(r==null)r=p.cx +break +case 1:r=h.a.dy +if(r==null)r=p.dx +break}}s=h.c.ga2() +s.toString +t.x.a(s) +q=h.c +q.toString +q=A.abR(q,t.xT) +q.toString +o=h.a +o.toString +o=h.df(o)?r:A.U(0,r.gn(r)>>>16&255,r.gn(r)>>>8&255,r.gn(r)&255) +n=h.a +m=n.CW +l=n.cx +k=n.db +n=n.p2.$1(s) +j=h.c.aj(t.I) +j.toString +i=h.KL(a) +s=new A.jz(m,l,B.ab,n,j.w,o,k,q,s,new A.a2z(h,a)) +i=A.d9(g,i,g,g,q.A) +i.aX() +o=i.bY$ +o.b=!0 +o.a.push(q.geb()) +i.aX() +o=i.bT$ +o.b=!0 +o.a.push(s.gSl()) +i.c5(0) +s.ch=i +o=s.e +o=o.gn(o) +s.ay=new A.aR(t.m.a(i),new A.jA(0,o>>>24&255),t.xD.h("aR")) +q.wD(s) +f.l(0,a,s) +h.oG()}else{e.CW=!0 +f=e.ch +f===$&&A.c() +f.c5(0)}else{e.CW=!1 +f=e.ch +f===$&&A.c() +f.ey(0)}switch(d){case 0:f=h.a.at +if(f!=null)f.$1(c) +break +case 1:if(b){f=h.a.ax +if(f!=null)f.$1(c)}break +case 2:break}}, +jj(a,b){return this.zH(a,!0,b)}, +Xk(){var s,r,q,p=this +for(s=p.r,s=s.gaJ(s),s=new A.dy(J.am(s.a),s.b),r=A.m(s).z[1];s.t();){q=s.a +if(q==null)q=r.a(q) +if(q!=null)q.sx6(p.a.db)}s=p.e +if(s!=null)s.sx6(p.a.db) +s=p.d +if(s!=null&&s.a!==0)for(s=new A.kk(s,s.mx()),r=A.m(s).c;s.t();){q=s.d +if(q==null)q=r.a(q) +q.sx6(p.a.db)}}, +R6(a){var s,r,q,p,o,n,m,l,k,j,i=this,h={},g=i.c +g.toString +g=A.abR(g,t.xT) +g.toString +s=i.c.ga2() +s.toString +t.x.a(s) +r=s.ko(a) +q=i.a.fx +if(q==null)q=null +else{p=i.gcF().a +p=q.a.$1(p) +q=p}o=q==null?i.a.fy:q +if(o==null){q=i.c +q.toString +o=A.al(q).k3}q=i.a +n=q.ch?q.p2.$1(s):null +q=i.a +m=q.cy +l=q.db +h.a=null +q=q.go +if(q==null){q=i.c +q.toString +q=A.al(q).x}p=i.a +k=p.ch +p=p.cx +j=i.c.aj(t.I) +j.toString +return h.a=q.GK(0,m,o,k,g,l,new A.a2u(h,i),r,p,n,s,j.w)}, +a_w(a){if(this.c==null)return +this.aA(new A.a2w(this))}, +gWF(){var s,r=this,q=r.c +q.toString +q=A.dl(q,B.vi) +s=q==null?null:q.ax +switch((s==null?B.h3:s).a){case 0:q=r.a +q.toString +return r.df(q)&&r.z +case 1:return r.z}}, +zG(){var s,r=$.at.a1$.f.a.b +switch((r==null?A.If():r).a){case 0:s=!1 +break +case 1:s=this.gWF() +break +default:s=null}this.jj(B.vf,s)}, +a_y(a){var s,r=this +r.z=a +r.gcF().dw(0,B.a2,a) +r.zG() +s=r.a.k2 +if(s!=null)s.$1(a)}, +HW(a){if(this.y.a.length!==0)return +this.WV(a)}, +a0c(a){this.HW(a) +this.a.toString}, +a0e(a){this.a.toString}, +a01(a){this.HW(a) +this.a.toString}, +a03(a){this.a.toString}, +EM(a,b){var s,r,q,p,o=this +if(a!=null){s=a.ga2() +s.toString +t.x.a(s) +r=s.k3 +r=new A.C(0,0,0+r.a,0+r.b).gav() +q=A.cf(s.bs(0,null),r)}else q=b.a +o.gcF().dw(0,B.P,!0) +p=o.R6(q) +s=o.d;(s==null?o.d=A.cK(t.nv):s).B(0,p) +s=o.e +if(s!=null)s.aT(0) +o.e=p +o.oG() +o.jj(B.c7,!0)}, +WV(a){return this.EM(null,a)}, +WU(a){return this.EM(a,null)}, +I2(){var s=this,r=s.e +if(r!=null)r.qy(0) +s.e=null +s.jj(B.c7,!1) +r=s.a +if(r.id){r=s.c +r.toString +A.Ro(r)}s.a.d.$0()}, +a0a(){var s=this,r=s.e +if(r!=null)r.aT(0) +s.e=null +s.a.toString +s.jj(B.c7,!1)}, +a_Y(){var s=this,r=s.e +if(r!=null)r.qy(0) +s.e=null +s.jj(B.c7,!1) +s.a.toString}, +a0_(){var s=this,r=s.e +if(r!=null)r.aT(0) +s.e=null +s.a.toString +s.jj(B.c7,!1)}, +d6(){var s,r,q,p,o,n,m,l=this,k=l.d +if(k!=null){l.d=null +for(k=new A.kk(k,k.mx()),s=A.m(k).c;k.t();){r=k.d;(r==null?s.a(r):r).m()}l.e=null}for(k=l.r,s=A.ip(k,k.r);s.t();){r=s.d +q=k.i(0,r) +if(q!=null){p=q.ch +p===$&&A.c() +p.r.m() +p.r=null +o=p.bT$ +o.b=!1 +B.b.L(o.a) +n=o.c +if(n===$){m=A.cK(o.$ti.c) +o.c!==$&&A.ap() +o.c=m +n=m}if(n.a>0){n.b=n.c=n.d=n.e=null +n.a=0}o=p.bY$ +o.b=!1 +B.b.L(o.a) +n=o.c +if(n===$){m=A.cK(o.$ti.c) +o.c!==$&&A.ap() +o.c=m +n=m}if(n.a>0){n.b=n.c=n.d=n.e=null +n.a=0}p.tU() +q.ix()}k.l(0,r,null)}k=l.a.p1 +if(k!=null)k.yo(l,!1) +l.P6()}, +df(a){return!0}, +a_K(a){var s,r=this +r.f=!0 +s=r.a +s.toString +if(r.df(s))r.jj(B.c8,r.f)}, +a_M(a){this.f=!1 +this.jj(B.c8,!1)}, +gQd(){var s,r=this,q=r.c +q.toString +q=A.dl(q,B.vi) +s=q==null?null:q.ax +switch((s==null?B.h3:s).a){case 0:q=r.a +q.toString +return r.df(q)&&r.a.ok +case 1:return!0}}, +N(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d=null +e.Au(a) +s=new A.a2v(e,a) +for(r=e.r,q=A.ip(r,r.r);q.t();){p=q.d +o=r.i(0,p) +if(o!=null)o.sac(0,s.$1(p))}r=e.e +if(r!=null){q=e.a.fx +if(q==null)q=d +else{p=e.gcF().a +p=q.a.$1(p) +q=p}if(q==null)q=e.a.fy +r.sac(0,q==null?A.al(a).k3:q)}r=e.a.ay +if(r==null)r=B.iZ +n=A.lp(r,e.gcF().a,t.oR) +m=e.w +if(m===$){r=e.gAk() +q=t.B8 +p=t.dc +l=A.aL([B.LR,new A.kS(r,new A.be(A.a([],q),p),t.ei),B.LS,new A.kS(r,new A.be(A.a([],q),p),t.wV)],t.n,t.nT) +e.w!==$&&A.ap() +e.w=l +m=l}r=e.a.k4 +q=e.gQd() +p=e.a +p.toString +p=e.df(p)?e.ga0b():d +o=e.a +o.toString +o=e.df(o)?e.ga0d():d +k=e.a +k.toString +k=e.df(k)?e.ga08():d +j=e.a +j.toString +j=e.df(j)?e.ga09():d +i=e.a +i.toString +i=e.df(i)?e.ga00():d +h=e.a +h.toString +h=e.df(h)?e.ga02():d +g=e.a +g.toString +g=e.df(g)?e.ga_X():d +f=e.a +f.toString +f=e.df(f)?e.ga_Z():d +return new A.wI(e,A.NU(m,A.Bn(!1,q,A.tb(A.dC(d,A.a7V(B.ap,e.a.c,B.bf,!0,d,d,d,d,d,d,d,d,d,d,g,f,i,h,k,j,p,o,d,d,d),!1,d,!1,d,d,d,d,d,d,d,d,e.gAk(),d,d,d,d,d,d),n,e.ga_J(),e.ga_L(),d),d,d,d,r,!0,d,e.ga_x(),d,d,d,d)),d)}, +$ia8W:1} +A.a2y.prototype={ +$1(a){return a!=null}, +$S:192} +A.a2x.prototype={ +$0(){}, +$S:0} +A.a2z.prototype={ +$0(){var s=this.a +s.r.l(0,this.b,null) +s.oG()}, +$S:0} +A.a2u.prototype={ +$0(){var s,r=this.b,q=r.d +if(q!=null){s=this.a +q.v(0,s.a) +if(r.e==s.a)r.e=null +r.oG()}}, +$S:0} +A.a2w.prototype={ +$0(){this.a.zG()}, +$S:0} +A.a2v.prototype={ +$1(a){var s,r,q=this,p=A.al(q.b) +switch(a.a){case 0:s=q.a +r=s.a.fx +r=r==null?null:r.a.$1(B.Gg) +s=r==null?s.a.fr:r +return s==null?p.cy:s +case 2:s=q.a +r=s.a.fx +r=r==null?null:r.a.$1(B.Gc) +s=r==null?s.a.dx:r +return s==null?p.cx:s +case 1:s=q.a +r=s.a.fx +r=r==null?null:r.a.$1(B.G8) +s=r==null?s.a.dy:r +return s==null?p.dx:s}}, +$S:193} +A.BV.prototype={} +A.y8.prototype={ +aM(){this.bb() +if(this.gte())this.pj()}, +d6(){var s=this.hh$ +if(s!=null){s.ao() +s.dB() +this.hh$=null}this.mn()}} +A.Ry.prototype={ +D(){return"FloatingLabelBehavior."+this.b}} +A.Bk.prototype={ +gu(a){return B.f.gu(-1)}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.J(b)!==A.w(this))return!1 +return b instanceof A.Bk&&!0}, +j(a){return A.akC(-1)}} +A.BW.prototype={ +gu(a){var s=null +return A.L(s,s,s,s,s,s,s,B.zg,B.f_,!1,s,!1,s,s,s,s,s,s,!1,A.L(s,s,s,s,s,s,s,s,s,s,s,!1,s,B.a,B.a,B.a,B.a,B.a,B.a,B.a))}, +k(a,b){var s +if(b==null)return!1 +if(this===b)return!0 +if(J.J(b)!==A.w(this))return!1 +if(b instanceof A.BW)if(B.f_.k(0,B.f_))s=!0 +else s=!1 +else s=!1 +return s}} +A.Iu.prototype={} +A.rT.prototype={ +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,B.a)}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.J(b)!==A.w(r))return!1 +if(b instanceof A.rT)if(J.e(b.b,r.b))if(b.c==r.c)if(J.e(b.d,r.d))if(J.e(b.e,r.e))if(J.e(b.r,r.r))if(J.e(b.w,r.w))if(J.e(b.x,r.x))if(J.e(b.f,r.f))if(J.e(b.y,r.y))if(J.e(b.z,r.z))if(J.e(b.Q,r.Q))if(b.as==r.as)if(b.at==r.at)if(b.ax==r.ax)s=!0 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +return s}} +A.IO.prototype={} +A.jN.prototype={ +D(){return"MaterialType."+this.b}} +A.nM.prototype={ +aq(){return new A.IV(new A.bM("ink renderer",t.F),null,null,B.m)}} +A.IV.prototype={ +S5(a){var s=A.al(a),r=this.a,q=r.f +if(q==null)switch(r.d.a){case 0:q=s.as +break +case 1:q=s.at +break +case 3:case 2:case 4:break}return q}, +N(a){var s,r,q,p,o,n,m,l=this,k=null,j=A.al(a),i=l.S5(a),h=l.a,g=h.r +if(g==null)if(j.y){s=j.ax.fy +if(s==null)s=B.l +g=s}else{s=j.k2 +g=s}r=h.e +q=h.c +s=h.x +if(s==null){h=A.al(a).p3.z +h.toString}else h=s +s=l.a +q=new A.pN(q,h,B.ae,s.as,k,k) +h=s +s=h.d +q=new A.cZ(new A.a37(l),new A.It(i,l,s!==B.cJ,q,l.d),k,t.am) +if(s===B.aD&&h.y==null&&!0){h=A.al(a) +s=l.a +if(h.y){i.toString +p=A.abb(i,s.w,s.e)}else{i.toString +p=A.a7N(a,i,s.e)}h=l.a +s=h.as +return new A.pP(q,B.bD,h.Q,r,p,!1,g,B.an,s,k,k)}o=l.Sh() +h=l.a +if(h.d===B.cJ)return A.aaL(new A.xm(q,o,!0,k),h.Q,new A.m_(o,A.e1(a),k)) +s=h.as +n=h.Q +m=h.e +i.toString +return new A.wn(q,o,!0,n,m,i,g,h.w,B.an,s,k,k)}, +Sh(){var s=this.a,r=s.y +if(r!=null)return r +s=s.d +switch(s.a){case 0:case 4:return B.tZ +case 1:case 3:s=B.Dz.i(0,s) +s.toString +return new A.cw(s,B.v) +case 2:return B.bd}}} +A.a37.prototype={ +$1(a){var s,r=$.at.a1$.z.i(0,this.a.d).ga2() +r.toString +t.xT.a(r) +s=r.bG +s=s==null?null:J.kL(s) +if(s===!0)r.aB() +return!1}, +$S:194} +A.wU.prototype={ +wD(a){var s=this.bG +J.f9(s==null?this.bG=A.a([],t.pW):s,a) +this.aB()}, +j4(a){return this.au}, +aC(a,b){var s,r,q,p,o=this.bG +if(o!=null&&J.kL(o)){s=a.gby(a) +s.bm(0) +s.ae(0,b.a,b.b) +r=this.k3 +s.jM(new A.C(0,0,0+r.a,0+r.b)) +for(r=J.am(o);r.t();){q=r.gC(r) +p=A.al_(q.a,q.b) +if(p!=null)q.yV(s,p)}s.b6(0)}this.hM(a,b)}} +A.It.prototype={ +aG(a){var s=new A.wU(this.f,this.r,null,A.au()) +s.aI() +s.saU(null) +return s}, +aN(a,b){b.au=this.r}} +A.im.prototype={ +m(){var s=this.a,r=s.bG +r.toString +J.ja(r,this) +s.aB() +this.c.$0()}, +j(a){return"#"+A.bs(this)}} +A.m0.prototype={ +cB(a){return A.cx(this.a,this.b,a)}} +A.wn.prototype={ +aq(){return new A.IS(null,null,B.m)}} +A.IS.prototype={ +lw(a){var s,r,q=this +q.CW=t.nr.a(a.$3(q.CW,q.a.z,new A.a2T())) +s=q.a +r=t.mo +s=r.a(a.$3(q.cy,s.as,new A.a2U())) +q.cy=s +s=q.a.at +q.cx=s!=null?r.a(a.$3(q.cx,s,new A.a2V())):null +q.db=t.AE.a(a.$3(q.db,q.a.w,new A.a2W()))}, +N(a){var s,r,q,p,o,n,m=this,l=null,k=m.db +k.toString +s=m.gej() +s=k.V(0,s.gn(s)) +s.toString +k=m.CW +k.toString +r=m.gej() +q=k.V(0,r.gn(r)) +k=A.al(a) +r=m.a +if(k.y){k=r.Q +r=m.cx +if(r==null)r=l +else{p=m.gej() +p=r.V(0,p.gn(p)) +r=p}o=A.abb(k,r,q)}else o=A.a7N(a,r.Q,q) +m.a.toString +k=m.cy +if(k==null)n=l +else{r=m.gej() +r=k.V(0,r.gn(r)) +n=r}if(n==null)n=B.H +k=A.e1(a) +r=m.a +p=r.y +return A.aci(new A.xm(r.r,s,!0,l),p,new A.m_(s,k,l),o,q,n)}} +A.a2T.prototype={ +$1(a){return new A.av(A.Ng(a),null,t.a7)}, +$S:96} +A.a2U.prototype={ +$1(a){return new A.h6(t.iO.a(a),null)}, +$S:45} +A.a2V.prototype={ +$1(a){return new A.h6(t.iO.a(a),null)}, +$S:45} +A.a2W.prototype={ +$1(a){return new A.m0(t.Fy.a(a),null)}, +$S:197} +A.xm.prototype={ +N(a){var s=A.e1(a) +return A.PJ(this.c,new A.KX(this.d,s,null),null,null)}} +A.KX.prototype={ +aC(a,b){this.b.hu(a,new A.C(0,0,0+b.a,0+b.b),this.c)}, +iw(a){return!a.b.k(0,this.b)}} +A.My.prototype={ +c8(){this.dV() +this.d4() +this.eN()}, +m(){var s=this,r=s.b_$ +if(r!=null)r.H(0,s.gem()) +s.b_$=null +s.aW()}} +A.IT.prototype={ +yg(a){return a.glE(a)==="en"}, +fF(a,b){return new A.c1(B.w7,t.zU)}, +tK(a){return!1}, +j(a){return"DefaultMaterialLocalizations.delegate(en_US)"}} +A.Ay.prototype={$iln:1} +A.bZ.prototype={ +D(){return"MaterialState."+this.b}} +A.Cm.prototype={ +qH(a){return this.Y(A.az(t.BD)).qH(a)}, +$ibd:1} +A.HL.prototype={ +Y(a){if(a.q(0,B.M))return B.bv +return B.c2}, +gnw(){return"MaterialStateMouseCursor(clickable)"}} +A.bd.prototype={} +A.we.prototype={ +Y(a){var s,r=this,q=r.a,p=q==null?null:q.Y(a) +q=r.b +s=q==null?null:q.Y(a) +return r.d.$3(p,s,r.c)}, +$ibd:1} +A.bB.prototype={ +Y(a){return this.a.$1(a)}, +$ibd:1} +A.cM.prototype={ +Y(a){return this.a}, +j(a){var s="MaterialStatePropertyAll(",r=this.a +if(typeof r=="number")return s+A.fV(r)+")" +else return s+A.h(r)+")"}, +$ibd:1} +A.Cn.prototype={ +dw(a,b,c){var s=this.a +if(c?J.f9(s,b):J.ja(s,b))this.ao()}} +A.Cl.prototype={ +Kl(a,b){return new A.Uo(this,a,b)}, +Kk(a){return this.Kl(a,null)}, +XX(a){if(this.ln$.B(0,a))this.aA(new A.Um())}, +t2(a){if(this.ln$.v(0,a))this.aA(new A.Un())}} +A.Uo.prototype={ +$1(a){var s=this.a,r=this.b +if(s.ln$.q(0,r)===a)return +if(a)s.XX(r) +else s.t2(r)}, +$S:22} +A.Um.prototype={ +$0(){}, +$S:0} +A.Un.prototype={ +$0(){}, +$S:0} +A.Cs.prototype={} +A.t7.prototype={ +gu(a){return J.p(this.a)}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.J(b)!==A.w(this))return!1 +return b instanceof A.t7&&J.e(b.a,this.a)}} +A.IX.prototype={} +A.Ct.prototype={ +gu(a){var s=this +return A.cl([s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as])}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.J(b)!==A.w(r))return!1 +if(b instanceof A.Ct)if(b.a==r.a)if(b.b==r.b)if(b.c==r.c)if(b.d==r.d)if(b.e==r.e)if(b.f==r.f)if(b.r==r.r)if(b.w==r.w)if(b.x===r.x)if(b.y==r.y)s=J.e(b.as,r.as) +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +return s}} +A.IM.prototype={ +Y(a){var s,r=this,q=r.a,p=q==null?null:q.Y(a) +q=r.b +s=q==null?null:q.Y(a) +q=p==null +if(q&&s==null)return null +if(q){q=s.a.a +return A.aj(new A.bD(A.U(0,q>>>16&255,q>>>8&255,q&255),0,B.ac,-1),s,r.c)}if(s==null){q=p.a.a +return A.aj(p,new A.bD(A.U(0,q>>>16&255,q>>>8&255,q&255),0,B.ac,-1),r.c)}return A.aj(p,s,r.c)}, +$ibd:1} +A.IY.prototype={} +A.nQ.prototype={ +gu(a){return J.p(this.a)}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.J(b)!==A.w(this))return!1 +return b instanceof A.nQ&&J.e(b.a,this.a)}} +A.IZ.prototype={} +A.tk.prototype={ +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.tk&&b.a==s.a&&J.e(b.b,s.b)&&b.c==s.c&&J.e(b.d,s.d)&&J.e(b.e,s.e)&&J.e(b.f,s.f)&&J.e(b.r,s.r)&&b.w==s.w&&b.x==s.x&&!0}} +A.Ja.prototype={} +A.tl.prototype={ +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.tl&&b.a==s.a&&J.e(b.b,s.b)&&b.c==s.c&&J.e(b.d,s.d)&&J.e(b.e,s.e)&&J.e(b.f,s.f)&&J.e(b.r,s.r)&&J.e(b.w,s.w)&&b.x==s.x&&b.y==s.y}} +A.Jb.prototype={} +A.tm.prototype={ +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.tm&&J.e(b.a,s.a)&&b.b==s.b&&J.e(b.c,s.c)&&J.e(b.d,s.d)&&J.e(b.e,s.e)&&J.e(b.f,s.f)&&b.r==s.r&&J.e(b.y,s.y)&&J.e(b.z,s.z)&&b.Q==s.Q&&b.as==s.as}} +A.Jc.prototype={} +A.tw.prototype={ +gu(a){return J.p(this.a)}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.J(b)!==A.w(this))return!1 +return b instanceof A.tw&&J.e(b.a,this.a)}} +A.Jo.prototype={} +A.lo.prototype={} +A.Ck.prototype={} +A.wo.prototype={} +A.Mp.prototype={ +N(a){var s=this +return new A.na(s.c,new A.a5_(s),new A.a50(s),new A.na(new A.fE(s.d,new A.be(A.a([],t.A),t.Q),0),new A.a51(s),new A.a52(s),s.f,null),null)}} +A.a5_.prototype={ +$3(a,b,c){return new A.ks(b,c,this.a.e&&!0,!1,null)}, +$C:"$3", +$R:3, +$S:93} +A.a50.prototype={ +$3(a,b,c){return new A.kt(b,this.a.e,!0,c,null)}, +$C:"$3", +$R:3, +$S:91} +A.a51.prototype={ +$3(a,b,c){return new A.ks(b,c,this.a.e&&!0,!0,null)}, +$C:"$3", +$R:3, +$S:93} +A.a52.prototype={ +$3(a,b,c){return new A.kt(b,this.a.e,!1,c,null)}, +$C:"$3", +$R:3, +$S:91} +A.ks.prototype={ +aq(){return new A.Mn(new A.uR($.b7()),$,$,B.m)}} +A.Mn.prototype={ +gzK(){return!1}, +mN(){var s,r=this,q=r.a,p=q.f +if(p)s=B.ce +else{s=$.ah1() +s=new A.aR(q.c,s,A.m(s).h("aR"))}r.i0$=s +p=p?$.ah2():$.ah3() +q=q.c +r.iW$=new A.aR(q,p,A.m(p).h("aR")) +q.Z(0,r.glJ()) +r.a.c.e0(r.glI())}, +aM(){var s,r,q,p,o=this +o.mN() +s=o.a +r=s.f +q=o.i0$ +q===$&&A.c() +p=o.iW$ +p===$&&A.c() +o.d=A.aem(s.c,q,r,p) +o.bb()}, +aQ(a){var s,r,q,p=this,o=p.a +if(a.f!==o.f||a.c!==o.c){o=a.c +o.H(0,p.glJ()) +o.cn(p.glI()) +p.mN() +o=p.d +o===$&&A.c() +o.m() +o=p.a +s=o.f +r=p.i0$ +r===$&&A.c() +q=p.iW$ +q===$&&A.c() +p.d=A.aem(o.c,r,s,q)}p.bi(a)}, +m(){var s,r=this +r.a.c.H(0,r.glJ()) +r.a.c.cn(r.glI()) +s=r.d +s===$&&A.c() +s.m() +r.aW()}, +N(a){var s=this.d +s===$&&A.c() +return A.ad8(!0,this.a.d,this.lo$,B.uK,s)}} +A.kt.prototype={ +aq(){return new A.Mo(new A.uR($.b7()),$,$,B.m)}} +A.Mo.prototype={ +gzK(){return!1}, +mN(){var s,r=this,q=r.a,p=q.e +if(p){s=$.ah5() +s=new A.aR(q.c,s,A.m(s).h("aR"))}else s=B.ce +r.i0$=s +p=p?$.ah6():$.ah7() +q=q.c +r.iW$=new A.aR(q,p,A.m(p).h("aR")) +q.Z(0,r.glJ()) +r.a.c.e0(r.glI())}, +aM(){var s,r,q,p,o=this +o.mN() +s=o.a +r=s.e +q=o.i0$ +q===$&&A.c() +p=o.iW$ +p===$&&A.c() +o.d=A.aen(s.c,q,r,p) +o.bb()}, +aQ(a){var s,r,q,p=this,o=p.a +if(a.e!==o.e||a.c!==o.c){o=a.c +o.H(0,p.glJ()) +o.cn(p.glI()) +p.mN() +o=p.d +o===$&&A.c() +o.m() +o=p.a +s=o.e +r=p.i0$ +r===$&&A.c() +q=p.iW$ +q===$&&A.c() +p.d=A.aen(o.c,r,s,q)}p.bi(a)}, +m(){var s,r=this +r.a.c.H(0,r.glJ()) +r.a.c.cn(r.glI()) +s=r.d +s===$&&A.c() +s.m() +r.aW()}, +N(a){var s=this.d +s===$&&A.c() +return A.ad8(!0,this.a.f,this.lo$,B.uK,s)}} +A.it.prototype={} +A.G8.prototype={ +Gj(a,b,c,d,e){return new A.Mp(c,d,!0,e,!0,null)}} +A.Al.prototype={ +Gj(a,b,c,d,e,f){return A.ajp(a,b,c,d,e,f)}} +A.D0.prototype={ +uk(a){var s=t.dM +return A.aw(new A.aA(B.By,new A.Vq(a),s),!0,s.h("bn.E"))}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.J(b)!==A.w(r))return!1 +s=b instanceof A.D0 +if(s&&!0)return!0 +return s&&A.dh(r.uk(B.dU),r.uk(B.dU))}, +gu(a){return A.cl(this.uk(B.dU))}} +A.Vq.prototype={ +$1(a){return this.a.i(0,a)}, +$S:200} +A.y1.prototype={ +a1D(){var s,r=this,q=r.iW$ +q===$&&A.c() +s=q.a +if(J.e(q.b.V(0,s.gn(s)),1)){q=r.i0$ +q===$&&A.c() +if(!J.e(q.gn(q),0)){q=r.i0$ +q=J.e(q.gn(q),1)}else q=!0}else q=!1 +s=r.lo$ +if(q)s.sqn(!1) +else{r.gzK() +s.sqn(!1)}}, +a1C(a){switch(a.a){case 0:case 3:this.lo$.sqn(!1) +break +case 1:case 2:this.gzK() +this.lo$.sqn(!1) +break}}} +A.y_.prototype={ +vM(a){this.ao()}, +Rp(a,b,c){var s,r,q,p,o +if(!this.r){s=this.w +s=s.gaP(s)!==B.J}else s=!1 +if(s){s=this.w +s=$.ah4().V(0,s.gn(s)) +s.toString +r=s}else r=0 +if(r>0){s=a.gby(a) +q=b.a +p=b.b +o=$.ae().b9() +o.sac(0,A.U(B.c.bd(255*r),0,0,0)) +s.bK(new A.C(q,p,q+c.a,p+c.b),o)}}, +rO(a,b,c,d){var s,r,q=this,p=q.w +switch(p.gaP(p)){case B.J:case B.F:return d.$2(a,b) +case B.ag:case B.a6:break}q.Rp(a,b,c) +p=q.z +s=q.x +r=s.a +A.af_(p,s.b.V(0,r.gn(r)),c) +r=q.as +r.saY(0,a.rZ(!0,b,p,new A.a4Y(q,d),r.a))}, +m(){var s=this,r=s.w,q=s.gdu() +r.H(0,q) +r.cn(s.gmM()) +s.x.a.H(0,q) +s.y.H(0,q) +s.Q.saY(0,null) +s.as.saY(0,null) +s.dB()}, +iw(a){var s,r,q,p,o=this +if(a.r===o.r){s=a.w +r=o.w +if(J.e(s.gn(s),r.gn(r))){s=a.x +r=s.a +q=o.x +p=q.a +if(J.e(s.b.V(0,r.gn(r)),q.b.V(0,p.gn(p)))){s=a.y +r=o.y +r=!J.e(s.gn(s),r.gn(r)) +s=r}else s=!0}else s=!0}else s=!0 +return s}} +A.a4Y.prototype={ +$2(a,b){var s=this.a,r=s.Q +s=s.y +r.saY(0,a.Jy(b,B.c.bd(s.gn(s)*255),this.b,r.a))}, +$S:12} +A.y0.prototype={ +vM(a){this.ao()}, +rO(a,b,c,d){var s,r,q=this,p=q.y +switch(p.gaP(p)){case B.J:case B.F:return d.$2(a,b) +case B.ag:case B.a6:break}p=q.z +s=q.w +r=s.a +A.af_(p,s.b.V(0,r.gn(r)),c) +r=q.as +r.saY(0,a.rZ(!0,b,p,new A.a4Z(q,d),r.a))}, +iw(a){var s,r,q,p +if(a.r===this.r){s=a.x +r=this.x +if(J.e(s.gn(s),r.gn(r))){s=a.w +r=s.a +q=this.w +p=q.a +p=!J.e(s.b.V(0,r.gn(r)),q.b.V(0,p.gn(p))) +s=p}else s=!0}else s=!0 +return s}, +m(){var s,r=this +r.Q.saY(0,null) +r.as.saY(0,null) +s=r.gdu() +r.w.a.H(0,s) +r.x.H(0,s) +r.y.cn(r.gmM()) +r.dB()}} +A.a4Z.prototype={ +$2(a,b){var s=this.a,r=s.Q +s=s.x +r.saY(0,a.Jy(b,B.c.bd(s.gn(s)*255),this.b,r.a))}, +$S:12} +A.Js.prototype={} +A.Nd.prototype={} +A.Ne.prototype={} +A.tM.prototype={ +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.J(b)!==A.w(r))return!1 +if(b instanceof A.tM)if(J.e(b.a,r.a))if(J.e(b.b,r.b))if(b.c==r.c)if(J.e(b.d,r.d))if(J.e(b.e,r.e))if(J.e(b.f,r.f))if(b.r==r.r)s=!0 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +return s}} +A.K3.prototype={} +A.tN.prototype={ +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.tN&&J.e(b.a,s.a)&&J.e(b.b,s.b)&&b.c==s.c&&J.e(b.d,s.d)&&J.e(b.e,s.e)}} +A.K5.prototype={} +A.tQ.prototype={ +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,s.e,s.f,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.J(b)!==A.w(r))return!1 +if(b instanceof A.tQ)if(b.b==r.b)if(b.c==r.c)if(b.d==r.d)s=!0 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +return s}} +A.K9.prototype={} +A.ed.prototype={ +D(){return"_ScaffoldSlot."+this.b}} +A.uh.prototype={ +aq(){var s=null +return new A.Ev(A.fs(t.yp),A.jK(s,t.tT),A.jK(s,t.Ew),s,s,B.m)}} +A.Ev.prototype={ +b4(){var s,r=this,q=r.c +q.toString +s=A.cL(q,B.vg,t.w).w.y +q=r.y +if(q===!0)if(!s){q=r.x +q=q!=null&&q.b==null}else q=!1 +else q=!1 +if(q)r.a0o(B.GI) +r.y=s +r.cR()}, +a0o(a){var s,r,q=this,p=null,o=q.r +if(o.b!==o.c){p.gaP(p) +s=!1}else s=!0 +if(s)return +r=o.gG(o).b +o=q.y +o.toString +if(o){p.sn(0,0) +r.cH(0,a)}else p.ey(0).bw(new A.XJ(q,r,a),t.H) +o=q.x +if(o!=null)o.aT(0) +q.x=null}, +N(a){var s,r,q=this +q.y=A.cL(a,B.vg,t.w).w.y +s=q.r +if(!s.gS(s)){r=A.UC(a,t.X) +if(r==null||r.glC())null.ga3w()}return new A.x6(q,q.a.c,null)}, +m(){var s=this.x +if(s!=null)s.aT(0) +this.x=null +this.OG()}} +A.XJ.prototype={ +$1(a){var s=this.b +if((s.a.a&30)===0)s.cH(0,this.c)}, +$S:17} +A.x6.prototype={ +bO(a){return this.f!==a.f}} +A.XK.prototype={} +A.a4F.prototype={ +m3(a){var s=this +return s.c.zT(s.a.m3(a),s.b.m3(a),s.d)}, +j(a){return"_TransitionSnapshotFabLocation(begin: "+this.a.j(0)+", end: "+this.b.j(0)+", progress: "+A.h(this.d)+")"}} +A.ug.prototype={ +Ee(a){var s,r,q,p=this +if(a===1)return p +if(a===0)return new A.ug(p.a,null) +s=p.b +r=s.gav() +q=r.a +r=r.b +s=A.acy(new A.C(q,r,q+0,r+0),s,a) +s.toString +return p.Zf(s)}, +GG(a,b){var s=a==null?this.a:a +return new A.ug(s,b==null?this.b:b)}, +Zf(a){return this.GG(null,a)}} +A.KI.prototype={ +Fy(a,b,c){var s=this +s.b=c==null?s.b:c +s.c=s.c.GG(a,b) +s.ao()}, +XE(a){return this.Fy(null,null,a)}, +XF(a,b){return this.Fy(a,b,null)}} +A.vA.prototype={ +k(a,b){var s=this +if(b==null)return!1 +if(!s.LP(0,b))return!1 +return b instanceof A.vA&&b.r===s.r&&b.e===s.e&&b.f===s.f}, +gu(a){var s=this +return A.L(A.aI.prototype.gu.call(s,s),s.r,s.e,s.f,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.Gy.prototype={ +N(a){return this.c}} +A.a4a.prototype={ +rS(a7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2=this,a3=A.a7p(a7),a4=a7.a,a5=a3.zs(a4),a6=a7.b +if(a2.b.i(0,B.eF)!=null){s=a2.dt(B.eF,a5).b +a2.dM(B.eF,B.h) +r=s}else{r=0 +s=0}if(a2.b.i(0,B.eK)!=null){q=0+a2.dt(B.eK,a5).b +p=Math.max(0,a6-q) +a2.dM(B.eK,new A.q(0,p))}else{q=0 +p=null}if(a2.b.i(0,B.hW)!=null){q+=a2.dt(B.hW,new A.aI(0,a5.b,0,Math.max(0,a6-q-r))).b +a2.dM(B.hW,new A.q(0,Math.max(0,a6-q)))}if(a2.b.i(0,B.eJ)!=null){o=a2.dt(B.eJ,a5) +a2.dM(B.eJ,new A.q(0,s)) +if(!a2.ay)r+=o.b}else o=B.L +n=a2.f +m=Math.max(0,a6-Math.max(n.d,q)) +if(a2.b.i(0,B.eE)!=null){l=Math.max(0,m-r) +k=a2.d +if(k)l=A.O(l+q,0,a3.d-r) +k=k?q:0 +a2.dt(B.eE,new A.vA(k,s,o.b,0,a5.b,0,l)) +a2.dM(B.eE,new A.q(0,r))}if(a2.b.i(0,B.eH)!=null){a2.dt(B.eH,new A.aI(0,a5.b,0,m)) +a2.dM(B.eH,B.h)}k=a2.b.i(0,B.ca)!=null&&!a2.at?a2.dt(B.ca,a5):B.L +if(a2.b.i(0,B.eI)!=null){j=a2.dt(B.eI,new A.aI(0,a5.b,0,Math.max(0,m-r))) +a2.dM(B.eI,new A.q((a4-j.a)/2,m-j.b))}else j=B.L +i=A.b_("floatingActionButtonRect") +if(a2.b.i(0,B.eL)!=null){h=a2.dt(B.eL,a3) +g=new A.XK(h,j,m,n,a2.r,a7,k,a2.w) +f=a2.z.m3(g) +e=a2.as.zT(a2.y.m3(g),f,a2.Q) +a2.dM(B.eL,e) +d=e.a +c=e.b +i.b=new A.C(d,c,d+h.a,c+h.b)}if(a2.b.i(0,B.ca)!=null){d=a2.ax +b=d!=null&&d") +k=t.A +j=t.Q +i=t.i +h=A.adF(new A.fE(new A.aR(p,new A.i8(new A.nh(B.jI)),l),new A.be(A.a([],k),j),0),new A.aR(p,new A.i8(B.jI),l),p,0.5,i) +p=d.a.d +g=$.agY() +m.a(p) +f=$.agZ() +e=A.adF(new A.aR(p,g,g.$ti.h("aR")),new A.fE(new A.aR(p,f,A.m(f).h("aR")),new A.be(A.a([],k),j),0),p,0.5,i) +d.e=A.aar(h,s,i) +i=A.aar(h,q,i) +d.r=i +d.w=new A.aR(m.a(i),new A.i8(B.zF),l) +d.f=A.a8L(new A.aR(r,new A.av(1,1,b),b.h("aR")),e,c) +d.x=A.a8L(new A.aR(o,n,n.$ti.h("aR")),e,c) +n=d.r +o=d.gV_() +n.aX() +n=n.bY$ +n.b=!0 +n.a.push(o) +n=d.e +n.aX() +n=n.bY$ +n.b=!0 +n.a.push(o)}, +Tq(a){this.aA(new A.a1P(this,a))}, +N(a){var s,r,q=this,p=A.a([],t.nA),o=q.d +o===$&&A.c() +o=o.Q +o===$&&A.c() +if(o!==B.F){o=q.e +s=q.y +o===$&&A.c() +r=q.f +r===$&&A.c() +p.push(A.acL(A.acG(s,r),o))}o=q.a +s=q.r +o=o.c +s===$&&A.c() +r=q.x +r===$&&A.c() +p.push(A.acL(A.acG(o,r),s)) +return A.a8A(B.eP,p,B.uL)}, +V0(){var s,r,q=this.e +q===$&&A.c() +s=q.a +s=s.gn(s) +q=q.b +q=q.gn(q) +q=Math.min(A.kC(s),A.kC(q)) +s=this.r +s===$&&A.c() +r=s.a +r=r.gn(r) +s=s.b +s=s.gn(s) +s=Math.max(q,Math.min(A.kC(r),A.kC(s))) +this.a.f.XE(s)}} +A.a1P.prototype={ +$0(){if(this.b===B.F)this.a.a.r.c5(0)}, +$S:0} +A.uf.prototype={ +aq(){var s=null,r=t.rG,q=t.F,p=$.b7() +return new A.od(new A.bM(s,r),new A.bM(s,r),new A.bM(s,q),new A.ua(!1,p),new A.ua(!1,p),A.a([],t.pc),new A.bM(s,q),B.l,s,A.y(t.wb,t.O),s,!0,s,s,s,B.m)}} +A.od.prototype={ +gcD(){this.a.toString +return null}, +ih(a,b){var s=this +s.lR(s.w,"drawer_open") +s.lR(s.x,"end_drawer_open")}, +XA(){var s,r=this,q=r.y.r +if(!q.gS(q)){q=r.y.r +s=q.gG(q)}else s=null +if(r.z!=s)r.aA(new A.XN(r,s))}, +Xp(){var s,r=this,q=r.y.e +if(!q.gS(q)){q=r.y.e +s=q.gG(q)}else s=null +if(r.Q!=s)r.aA(new A.XM(r,s))}, +Uy(){this.a.toString}, +UJ(a){var s,r,q,p,o=this,n={},m=o.cy +n.a=m +s=o.ch +s===$&&A.c() +r=s.r +if(r!=null&&r.a!=null){r=o.cx +r.toString +m.toString +q=o.CW +q===$&&A.c() +s=s.x +s===$&&A.c() +n.a=new A.a4F(r,m,q,s) +p=Math.min(1-s,s)}else p=0 +o.aA(new A.XL(n,o,a)) +o.ch.j_(0,p)}, +TL(){var s,r=this.c +r.toString +s=A.W7(r) +if(s!=null&&s.d.length!==0)s.hQ(0,B.yw,B.cl)}, +gjA(){this.a.toString +return!0}, +aM(){var s,r=this,q=null +r.bb() +s=r.c +s.toString +r.dx=new A.KI(s,B.Fi,$.b7()) +s=r.a.w +r.cy=s +r.CW=B.xa +r.cx=s +r.ch=A.d9(q,new A.aQ(4e5),q,1,r) +r.db=A.d9(q,B.O,q,q,r)}, +aQ(a){var s,r=this +r.OJ(a) +s=r.a +s=s.w +if(s!==a.w)r.UJ(s) +r.a.toString}, +b4(){var s,r,q=this,p=q.c.aj(t.Cu),o=p==null?null:p.f,n=q.y,m=n==null +if(!m)s=o==null||n!==o +else s=!1 +if(s)if(!m)n.d.v(0,q) +q.y=o +if(o!=null){n=o.d +n.B(0,q) +r=q.c.r4(t.yp) +if(r==null||!n.q(0,r)){n=o.r +if(!n.gS(n))q.XA() +n=o.e +if(!n.gS(n))q.Xp()}}q.Uy() +q.OI()}, +m(){var s=this,r=s.dx +r===$&&A.c() +r.a_$=$.b7() +r.W$=0 +r=s.ch +r===$&&A.c() +r.m() +r=s.db +r===$&&A.c() +r.m() +r=s.y +if(r!=null)r.d.v(0,s) +s.w.m() +s.x.m() +s.OK()}, +uf(a,b,c,d,e,f,g,h,i){var s,r=this.c +r.toString +s=A.cL(r,null,t.w).w.JL(f,g,h,i) +if(e)s=s.a2d(!0) +if(d&&s.e.d!==0)s=s.wY(s.f.wX(s.r.d)) +if(b!=null)a.push(A.U1(A.nP(b,s,null),c))}, +PE(a,b,c,d,e,f,g,h){return this.uf(a,b,c,!1,d,e,f,g,h)}, +mr(a,b,c,d,e,f,g){return this.uf(a,b,c,!1,!1,d,e,f,g)}, +ue(a,b,c,d,e,f,g,h){return this.uf(a,b,c,d,!1,e,f,g,h)}, +Bv(a,b){this.a.toString}, +Bu(a,b){this.a.toString}, +N(a){var s,r,q,p,o,n,m,l,k,j=this,i=null,h={},g=A.al(a),f=a.aj(t.I) +f.toString +s=f.w +r=A.a([],t.fd) +f=j.a.f +j.gjA() +j.PE(r,new A.Gy(new A.nD(f,j.f),!1,!1,i),B.eE,!0,!0,!1,!1,!0) +if(j.dy)j.mr(r,A.ac1(!0,i,j.fr,!1,i,i,i),B.eH,!0,!0,!0,!0) +j.a.toString +f=A.cL(a,B.b9,t.w).w +f=j.r=A.aiG(a,j.a.e.fx)+f.f.b +q=j.a.e +j.mr(r,new A.ej(new A.aI(0,1/0,0,f),new A.rg(1,f,f,f,i,q,i),i),B.eF,!0,!1,!1,!1) +h.a=!1 +h.b=null +if(j.at!=null||j.as.length!==0){f=A.aw(j.as,!0,t.cm) +q=j.at +if(q!=null)f.push(q.a) +p=A.a8A(B.vq,f,B.uL) +j.gjA() +j.mr(r,p,B.eI,!0,!1,!1,!0)}f=j.z +if(f!=null){f.a.ga3k() +h.a=!1 +f=j.z +if(f!=null){f=f.a +f.gbr(f)}h.b=g.hj.w +f=j.z +f=f==null?i:f.a +j.a.toString +j.gjA() +j.ue(r,f,B.ca,!1,!0,!1,!1,!0)}h.c=!1 +if(j.Q!=null){a.aj(t.rg) +f=A.al(a) +o=f.ry.f +h.c=(o==null?0:o)!==0 +f=j.Q +f=f==null?i:f.a +j.a.toString +j.gjA() +j.ue(r,f,B.eJ,!1,!0,!1,!1,!0)}f=j.a +f=f.CW +j.gjA() +j.ue(r,f,B.eK,!1,!1,!1,!1,!0) +f=j.ch +f===$&&A.c() +q=j.CW +q===$&&A.c() +n=j.dx +n===$&&A.c() +m=j.db +m===$&&A.c() +j.mr(r,new A.w_(j.a.r,f,q,n,m,i),B.eL,!0,!0,!0,!0) +switch(g.r.a){case 2:case 4:j.mr(r,A.a7V(B.ap,i,B.bf,!0,i,i,i,i,i,i,i,i,i,i,i,i,i,i,j.gTK(),i,i,i,i,i,i),B.eG,!0,!1,!1,!0) +break +case 0:case 1:case 3:case 5:break}f=j.x +q=f.y +if(q==null?A.m(f).h("bN.T").a(q):q){j.Bu(r,s) +j.Bv(r,s)}else{j.Bv(r,s) +j.Bu(r,s)}f=t.w +q=A.cL(a,B.b9,f).w +j.gjA() +n=A.cL(a,B.hQ,f).w +l=q.f.wX(n.e.d) +q=A.cL(a,B.Nk,f).w +j.gjA() +f=A.cL(a,B.hQ,f).w +f=f.e.d!==0?0:i +k=q.r.wX(f) +if(l.d<=0)j.a.toString +j.a.toString +f=j.dx +return new A.x8(!1,f,new A.ul(A.jM(B.O,A.mF(j.ch,new A.XO(h,j,!1,l,k,s,r),i),B.w,g.go,0,i,i,i,i,i,B.aD),i),i)}} +A.XN.prototype={ +$0(){this.a.z=this.b}, +$S:0} +A.XM.prototype={ +$0(){this.a.Q=this.b}, +$S:0} +A.XL.prototype={ +$0(){var s=this.b +s.cx=this.a.a +s.cy=this.c}, +$S:0} +A.XO.prototype={ +$2(a,b){var s,r,q,p,o,n,m,l=this,k=A.aL([B.uZ,new A.Hv(a,new A.be(A.a([],t.B8),t.dc))],t.n,t.nT),j=l.b +j.a.toString +s=j.cy +s.toString +r=j.ch +r===$&&A.c() +r=r.x +r===$&&A.c() +q=j.CW +q===$&&A.c() +p=j.dx +p===$&&A.c() +j=j.cx +j.toString +o=l.a +n=o.a +m=o.c +return A.NU(k,new A.qA(new A.a4a(l.c,!1,l.d,l.e,l.f,p,j,s,r,q,n,o.b,m),l.r,null))}, +$S:202} +A.Hv.prototype={ +i5(a,b){var s=this.e,r=A.oe(s).w,q=r.y +if(!(q==null?A.m(r).h("bN.T").a(q):q)){s=A.oe(s).x +r=s.y +s=r==null?A.m(s).h("bN.T").a(r):r}else s=!0 +return s}, +cZ(a){var s=this.e +A.oe(s).a.toString +A.oe(s).a.toString}} +A.x8.prototype={ +bO(a){return this.f!==a.f}} +A.a4b.prototype={ +$2(a,b){if(!a.a)a.H(0,b)}, +$S:30} +A.x7.prototype={ +c8(){this.dV() +this.d4() +this.eN()}, +m(){var s=this,r=s.b_$ +if(r!=null)r.H(0,s.gem()) +s.b_$=null +s.aW()}} +A.x9.prototype={ +c8(){this.dV() +this.d4() +this.eN()}, +m(){var s=this,r=s.b_$ +if(r!=null)r.H(0,s.gem()) +s.b_$=null +s.aW()}} +A.xa.prototype={ +aQ(a){this.bi(a) +this.nH()}, +b4(){var s,r,q,p,o=this +o.cR() +s=o.bc$ +r=o.glU() +q=o.c +q.toString +q=A.o9(q) +o.f1$=q +p=o.kU(q,r) +if(r){o.ih(s,o.dG$) +o.dG$=!1}if(p)if(s!=null)s.m()}, +m(){var s,r=this +r.f0$.P(0,new A.a4b()) +s=r.bc$ +if(s!=null)s.m() +r.bc$=null +r.OH()}} +A.y6.prototype={ +c8(){this.dV() +this.d4() +this.eN()}, +m(){var s=this,r=s.b_$ +if(r!=null)r.H(0,s.gem()) +s.b_$=null +s.aW()}} +A.EF.prototype={ +N(a){var s=this,r=null +if(A.al(a).r===B.al)return new A.n5(8,B.cX,s.c,s.d,!1,B.F9,3,r,B.yY,B.yT,B.ay,A.yz(),r,r,r) +return new A.pg(r,r,s.c,s.d,r,r,r,r,B.bJ,B.cm,B.r,A.yz(),r,r,r)}} +A.pg.prototype={ +aq(){return new A.IU(new A.bM(null,t.F),null,null,B.m)}} +A.IU.prototype={ +gkr(){var s=this,r=s.a.e +if(r==null){r=s.fr +r===$&&A.c() +r=r.a +r=r==null?null:r.Y(s.gmX())}if(r==null){r=s.fr +r===$&&A.c() +r=r.e}return r==null?!1:r}, +gjV(){this.a.toString +var s=this.fr +s===$&&A.c() +s=s.f +if(s==null){s=this.fx +s===$&&A.c() +s=!s}return s}, +gq4(){return new A.bB(new A.a30(this),t.mz)}, +gmX(){var s=A.az(t.BD) +if(this.db)s.B(0,B.p4) +if(this.dx)s.B(0,B.V) +return s}, +gX_(){var s,r,q,p,o,n,m,l=this,k=l.dy +k===$&&A.c() +s=k.db +r=A.b_("dragColor") +q=A.b_("hoverColor") +p=A.b_("idleColor") +switch(k.a.a){case 1:k=s.a +o=k>>>16&255 +n=k>>>8&255 +k&=255 +r.b=A.U(153,o,n,k) +q.b=A.U(B.c.bd(127.5),o,n,k) +m=l.fx +m===$&&A.c() +if(m){k=l.c +k.toString +k=A.al(k).cy.a +k=A.U(255,k>>>16&255,k>>>8&255,k&255)}else k=A.U(B.c.bd(25.5),o,n,k) +p.b=k +break +case 0:k=s.a +o=k>>>16&255 +n=k>>>8&255 +k&=255 +r.b=A.U(191,o,n,k) +q.b=A.U(166,o,n,k) +m=l.fx +m===$&&A.c() +if(m){k=l.c +k.toString +k=A.al(k).cy.a +k=A.U(255,k>>>16&255,k>>>8&255,k&255)}else k=A.U(B.c.bd(76.5),o,n,k) +p.b=k +break}return new A.bB(new A.a2Y(l,r,q,p),t.qn)}, +gX7(){var s=this.dy +s===$&&A.c() +return new A.bB(new A.a3_(this,s.a,s.db),t.qn)}, +gX6(){var s=this.dy +s===$&&A.c() +return new A.bB(new A.a2Z(this,s.a,s.db),t.qn)}, +gWZ(){return new A.bB(new A.a2X(this),t.jj)}, +aM(){var s,r=this +r.AS() +s=r.cy=A.d9(null,B.O,null,null,r) +s.aX() +s=s.bY$ +s.b=!0 +s.a.push(new A.a36(r))}, +b4(){var s,r=this,q=r.c +q.toString +s=A.al(q) +r.dy=s.ax +q=r.c +q.aj(t.p2) +q=A.al(q) +r.fr=q.w +switch(s.r.a){case 0:r.fx=!0 +break +case 2:case 3:case 1:case 4:case 5:r.fx=!1 +break}r.Nh()}, +oH(){var s,r=this,q=r.at +q===$&&A.c() +q.sac(0,r.gX_().a.$1(r.gmX())) +q.sKd(r.gX7().a.$1(r.gmX())) +q.sKc(r.gX6().a.$1(r.gmX())) +s=r.c.aj(t.I) +s.toString +q.sbR(s.w) +q.szq(r.gWZ().a.$1(r.gmX())) +s=r.a.w +if(s==null){s=r.fr +s===$&&A.c() +s=s.r}if(s==null){s=r.fx +s===$&&A.c() +s=s?null:B.F8}q.sox(s) +s=r.fr +s===$&&A.c() +s=s.z +if(s==null){s=r.fx +s===$&&A.c() +s=s?0:2}q.sx4(s) +s=r.fr.Q +q.syn(s==null?0:s) +s=r.fr.as +q.syu(0,s==null?48:s) +s=r.c +s.toString +q.sc2(0,A.cL(s,B.b9,t.w).w.f) +q.stv(r.a.dx) +q.sIh(!r.gjV())}, +rh(a){this.AR(a) +this.aA(new A.a35(this))}, +rg(a,b){this.AQ(a,b) +this.aA(new A.a34(this))}, +xR(a){var s,r=this +r.Ni(a) +if(r.IC(a.gbp(a),a.gc1(a),!0)){r.aA(new A.a32(r)) +s=r.cy +s===$&&A.c() +s.c5(0)}else if(r.dx){r.aA(new A.a33(r)) +s=r.cy +s===$&&A.c() +s.ey(0)}}, +xS(a){var s,r=this +r.Nj(a) +r.aA(new A.a31(r)) +s=r.cy +s===$&&A.c() +s.ey(0)}, +m(){var s=this.cy +s===$&&A.c() +s.m() +this.AP()}} +A.a30.prototype={ +$1(a){var s,r +if(a.q(0,B.V)){s=this.a +s.a.toString +s=s.fr +s===$&&A.c() +s=s.d===!0}else s=!1 +if(s)return!0 +s=this.a +r=s.a.as +s=s.fr +s===$&&A.c() +s=s.c +s=s==null?null:s.Y(a) +return s==null?!1:s}, +$S:204} +A.a2Y.prototype={ +$1(a){var s,r,q,p=this,o=null +if(a.q(0,B.p4)){s=p.a.fr +s===$&&A.c() +s=s.w +s=s==null?o:s.Y(a) +return s==null?p.b.ap():s}s=p.a +if(s.gq4().a.$1(a)){s=s.fr +s===$&&A.c() +s=s.w +s=s==null?o:s.Y(a) +return s==null?p.c.ap():s}r=s.fr +r===$&&A.c() +r=r.w +r=r==null?o:r.Y(a) +if(r==null)r=p.d.ap() +q=s.fr.w +q=q==null?o:q.Y(a) +if(q==null)q=p.c.ap() +s=s.cy +s===$&&A.c() +s=s.x +s===$&&A.c() +s=A.r(r,q,s) +s.toString +return s}, +$S:5} +A.a3_.prototype={ +$1(a){var s=this.a +if(s.gkr()&&s.gq4().a.$1(a)){s=s.fr +s===$&&A.c() +s=s.x +s=s==null?null:s.Y(a) +if(s==null){s=this.c.a +s=this.b===B.U?A.U(8,s>>>16&255,s>>>8&255,s&255):A.U(13,s>>>16&255,s>>>8&255,s&255)}return s}return B.H}, +$S:5} +A.a2Z.prototype={ +$1(a){var s=this.a +if(s.gkr()&&s.gq4().a.$1(a)){s=s.fr +s===$&&A.c() +s=s.y +s=s==null?null:s.Y(a) +if(s==null){s=this.c.a +s=this.b===B.U?A.U(B.c.bd(25.5),s>>>16&255,s>>>8&255,s&255):A.U(64,s>>>16&255,s>>>8&255,s&255)}return s}return B.H}, +$S:5} +A.a2X.prototype={ +$1(a){var s,r +if(a.q(0,B.V)&&this.a.gq4().a.$1(a)){s=this.a +r=s.a.id +s=s.fr +s===$&&A.c() +s=s.b +s=s==null?null:s.Y(a) +return s==null?12:s}s=this.a +r=s.a.x +if(r==null){r=s.fr +r===$&&A.c() +r=r.b +r=r==null?null:r.Y(a)}if(r==null){s=s.fx +s===$&&A.c() +r=8/(s?2:1) +s=r}else s=r +return s}, +$S:205} +A.a36.prototype={ +$0(){this.a.oH()}, +$S:0} +A.a35.prototype={ +$0(){this.a.db=!0}, +$S:0} +A.a34.prototype={ +$0(){this.a.db=!1}, +$S:0} +A.a32.prototype={ +$0(){this.a.dx=!0}, +$S:0} +A.a33.prototype={ +$0(){this.a.dx=!1}, +$S:0} +A.a31.prototype={ +$0(){this.a.dx=!1}, +$S:0} +A.uv.prototype={ +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.uv&&b.a==s.a&&b.b==s.b&&b.c==s.c&&b.d==s.d&&b.e==s.e&&b.f==s.f&&J.e(b.r,s.r)&&b.w==s.w&&b.x==s.x&&b.y==s.y&&b.z==s.z&&b.Q==s.Q&&b.as==s.as}} +A.KM.prototype={} +A.uw.prototype={ +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.uw&&b.a==s.a&&b.b==s.b&&b.c==s.c&&b.d==s.d&&b.e==s.e&&b.f==s.f&&b.r==s.r&&b.w==s.w&&b.x==s.x&&b.y==s.y&&J.e(b.z,s.z)}} +A.IL.prototype={ +Y(a){var s,r=this,q=r.a,p=q==null?null:q.Y(a) +q=r.b +s=q==null?null:q.Y(a) +if(p==s)return p +if(p==null){q=s.a.a +return A.aj(new A.bD(A.U(0,q>>>16&255,q>>>8&255,q&255),0,B.ac,-1),s,r.c)}if(s==null){q=p.a.a +return A.aj(p,new A.bD(A.U(0,q>>>16&255,q>>>8&255,q&255),0,B.ac,-1),r.c)}return A.aj(p,s,r.c)}, +$ibd:1} +A.KN.prototype={} +A.ux.prototype={ +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.ux&&J.e(b.a,s.a)&&b.b==s.b&&J.e(b.c,s.c)&&J.e(b.d,s.d)&&J.e(b.e,s.e)&&J.e(b.f,s.f)&&J.e(b.r,s.r)&&J.e(b.w,s.w)&&J.e(b.x,s.x)}} +A.KO.prototype={} +A.uy.prototype={ +gu(a){return A.L(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.J(b)!==A.w(this))return!1 +return b instanceof A.uy&&J.e(b.a,this.a)&&!0}} +A.KP.prototype={} +A.uN.prototype={ +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,s.e,s.r,s.f,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,A.L(s.cy,s.db,s.dx,s.dy,s.fr,s.fx,s.fy,s.go,s.id,s.k1,s.k2,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a))}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.J(b)!==A.w(r))return!1 +if(b instanceof A.uN)if(b.a==r.a)if(J.e(b.b,r.b))if(J.e(b.c,r.c))if(J.e(b.d,r.d))if(J.e(b.e,r.e))if(J.e(b.r,r.r))if(J.e(b.f,r.f))if(J.e(b.w,r.w))if(J.e(b.x,r.x))if(J.e(b.y,r.y))if(J.e(b.z,r.z))if(J.e(b.Q,r.Q))if(J.e(b.as,r.as))if(J.e(b.at,r.at))if(J.e(b.ax,r.ax))if(J.e(b.ay,r.ay))if(J.e(b.go,r.go))if(b.id==r.id)s=!0 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +return s}} +A.L6.prototype={} +A.uP.prototype={ +D(){return"SnackBarClosedReason."+this.b}} +A.uQ.prototype={ +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,null,s.z,s.Q,s.as,s.at,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.uQ&&J.e(b.a,s.a)&&J.e(b.b,s.b)&&J.e(b.c,s.c)&&J.e(b.d,s.d)&&b.e==s.e&&J.e(b.f,s.f)&&b.w==s.w&&J.e(b.x,s.x)&&J.e(b.z,s.z)&&b.Q==s.Q&&J.e(b.as,s.as)&&J.e(b.at,s.at)}} +A.Lb.prototype={} +A.v_.prototype={ +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.v_&&b.a==s.a&&b.b==s.b&&b.c==s.c&&b.f==s.f&&b.r==s.r&&!0}} +A.Lr.prototype={} +A.v0.prototype={ +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.J(b)!==A.w(r))return!1 +if(b instanceof A.v0)if(J.e(b.a,r.a))if(J.e(b.b,r.b))if(J.e(b.d,r.d))if(J.e(b.e,r.e))if(J.e(b.f,r.f))if(J.e(b.r,r.r))if(J.e(b.w,r.w))if(J.e(b.x,r.x))if(b.y==r.y)s=!0 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +return s}} +A.Lu.prototype={} +A.v4.prototype={ +gu(a){return J.p(this.a)}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.J(b)!==A.w(this))return!1 +return b instanceof A.v4&&J.e(b.a,this.a)}} +A.Lw.prototype={} +A.va.prototype={ +gu(a){return A.L(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.va&&J.e(b.a,s.a)&&J.e(b.b,s.b)&&J.e(b.c,s.c)}} +A.Lx.prototype={} +A.cR.prototype={ +bV(b3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1=this,b2=null +if(b3==null)return b1 +s=b1.a +r=s==null?b2:s.bV(b3.a) +if(r==null)r=b3.a +q=b1.b +p=q==null?b2:q.bV(b3.b) +if(p==null)p=b3.b +o=b1.c +n=o==null?b2:o.bV(b3.c) +if(n==null)n=b3.c +m=b1.d +l=m==null?b2:m.bV(b3.d) +if(l==null)l=b3.d +k=b1.e +j=k==null?b2:k.bV(b3.e) +if(j==null)j=b3.e +i=b1.f +h=i==null?b2:i.bV(b3.f) +if(h==null)h=b3.f +g=b1.r +f=g==null?b2:g.bV(b3.r) +if(f==null)f=b3.r +e=b1.w +d=e==null?b2:e.bV(b3.w) +if(d==null)d=b3.w +c=b1.x +b=c==null?b2:c.bV(b3.x) +if(b==null)b=b3.x +a=b1.y +a0=a==null?b2:a.bV(b3.y) +if(a0==null)a0=b3.y +a1=b1.z +a2=a1==null?b2:a1.bV(b3.z) +if(a2==null)a2=b3.z +a3=b1.Q +a4=a3==null?b2:a3.bV(b3.Q) +if(a4==null)a4=b3.Q +a5=b1.as +a6=a5==null?b2:a5.bV(b3.as) +if(a6==null)a6=b3.as +a7=b1.at +a8=a7==null?b2:a7.bV(b3.at) +if(a8==null)a8=b3.at +a9=b1.ax +b0=a9==null?b2:a9.bV(b3.ax) +if(b0==null)b0=b3.ax +if(r==null)r=b2 +s=r==null?s:r +r=p==null?b2:p +if(r==null)r=q +q=n==null?b2:n +if(q==null)q=o +p=l==null?m:l +o=j==null?b2:j +if(o==null)o=k +n=h==null?b2:h +if(n==null)n=i +m=f==null?b2:f +if(m==null)m=g +l=d==null?b2:d +if(l==null)l=e +k=b==null?b2:b +if(k==null)k=c +j=a0==null?b2:a0 +if(j==null)j=a +i=a2==null?b2:a2 +if(i==null)i=a1 +h=a4==null?b2:a4 +if(h==null)h=a3 +g=a6==null?b2:a6 +if(g==null)g=a5 +f=a8==null?a7:a8 +e=b0==null?b2:b0 +return A.a8G(j,i,h,s,r,q,p,o,n,g,f,e==null?a9:e,m,l,k)}, +Ya(a,b,a0,a1,a2,a3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d=null,c=e.a +c=c==null?d:c.dD(a0,d,b,d,a1,a2,0,1,a3) +s=e.b +s=s==null?d:s.dD(a0,d,b,d,a1,a2,0,1,a3) +r=e.c +r=r==null?d:r.dD(a0,d,b,d,a1,a2,0,1,a3) +q=e.d +q=q==null?d:q.dD(a0,d,b,d,a1,a2,0,1,a3) +p=e.e +p=p==null?d:p.dD(a0,d,b,d,a1,a2,0,1,a3) +o=e.f +o=o==null?d:o.dD(a,d,b,d,a1,a2,0,1,a3) +n=e.r +n=n==null?d:n.dD(a,d,b,d,a1,a2,0,1,a3) +m=e.w +m=m==null?d:m.dD(a,d,b,d,a1,a2,0,1,a3) +l=e.x +l=l==null?d:l.dD(a,d,b,d,a1,a2,0,1,a3) +k=e.y +k=k==null?d:k.dD(a,d,b,d,a1,a2,0,1,a3) +j=e.z +j=j==null?d:j.dD(a,d,b,d,a1,a2,0,1,a3) +i=e.Q +i=i==null?d:i.dD(a0,d,b,d,a1,a2,0,1,a3) +h=e.as +h=h==null?d:h.dD(a,d,b,d,a1,a2,0,1,a3) +g=e.at +g=g==null?d:g.dD(a,d,b,d,a1,a2,0,1,a3) +f=e.ax +return A.a8G(k,j,i,c,s,r,q,p,o,h,g,f==null?d:f.dD(a,d,b,d,a1,a2,0,1,a3),n,m,l)}, +G3(a,b,c){return this.Ya(a,b,c,null,null,null)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.cR&&J.e(s.a,b.a)&&J.e(s.b,b.b)&&J.e(s.c,b.c)&&J.e(s.d,b.d)&&J.e(s.e,b.e)&&J.e(s.f,b.f)&&J.e(s.r,b.r)&&J.e(s.w,b.w)&&J.e(s.x,b.x)&&J.e(s.y,b.y)&&J.e(s.z,b.z)&&J.e(s.Q,b.Q)&&J.e(s.as,b.as)&&J.e(s.at,b.at)&&J.e(s.ax,b.ax)}, +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,B.a,B.a,B.a,B.a,B.a)}} +A.LA.prototype={} +A.FD.prototype={ +N(a){var s,r,q=this.c,p=B.be.a,o=B.be.b,n=B.be.c,m=B.be.d,l=B.be.e,k=B.be.f,j=B.be.r,i=a.aj(t.mA) +if(i==null)i=B.js +s=q.f3 +r=s.b +if(r==null)r=i.x +s=s.a +i=s==null?i.w:s +return new A.wb(this,new A.An(new A.Ui(q,new A.CN(p,o,n,m,l,k,j),B.iX,p,o,n,m,l,k,j),A.SZ(A.aaU(this.d,i,r),q.ok,null),null),null)}} +A.wb.prototype={ +bO(a){return!this.w.c.k(0,a.w.c)}} +A.mb.prototype={ +cB(a){var s,r=this.a +r.toString +s=this.b +s.toString +return A.anA(r,s,a)}} +A.pQ.prototype={ +aq(){return new A.Gj(null,null,B.m)}} +A.Gj.prototype={ +lw(a){var s=a.$3(this.CW,this.a.r,new A.a0g()) +s.toString +this.CW=t.zE.a(s)}, +N(a){var s,r=this.CW +r.toString +s=this.gej() +return new A.FD(r.V(0,s.gn(s)),this.a.w,null)}} +A.a0g.prototype={ +$1(a){return new A.mb(t.oz.a(a),null)}, +$S:206} +A.lq.prototype={ +D(){return"MaterialTapTargetSize."+this.b}} +A.f0.prototype={ +k(a,b){var s,r,q=this +if(b==null)return!1 +if(J.J(b)!==A.w(q))return!1 +if(b instanceof A.f0)if(b.a===q.a)if(A.a6G(b.c,q.c))if(b.d.k(0,q.d))if(b.e===q.e)if(b.f.k(0,q.f))if(b.r===q.r)if(b.w.k(0,q.w))if(b.x===q.x)if(b.y===q.y)if(b.z.k(0,q.z))if(b.as.k(0,q.as))if(b.at.k(0,q.at))if(b.ax.k(0,q.ax))if(b.ay.k(0,q.ay))if(b.ch.k(0,q.ch))if(b.CW.k(0,q.CW))if(b.cx.k(0,q.cx))if(b.cy.k(0,q.cy))if(b.db.k(0,q.db))if(b.dx.k(0,q.dx))if(b.dy.k(0,q.dy))if(b.fr.k(0,q.fr))if(b.fx.k(0,q.fx))if(b.fy.k(0,q.fy))if(b.go.k(0,q.go))if(b.id.k(0,q.id))if(b.k2.k(0,q.k2))if(b.k3.k(0,q.k3))if(b.k4.k(0,q.k4))if(b.ok.k(0,q.ok))if(b.p1.k(0,q.p1))if(b.p2.k(0,q.p2))if(b.p3.k(0,q.p3))if(b.p4.k(0,q.p4))if(J.e(b.R8,q.R8))if(b.RG.k(0,q.RG))if(b.rx.k(0,q.rx))if(b.ry.k(0,q.ry))if(b.to.k(0,q.to))if(b.x1.k(0,q.x1))if(b.x2.k(0,q.x2))if(b.xr.k(0,q.xr))if(b.y1.k(0,q.y1))if(b.y2.k(0,q.y2))if(b.bU.k(0,q.bU))if(b.bL.k(0,q.bL))if(b.W.k(0,q.W))if(b.a_.k(0,q.a_))if(b.ad.k(0,q.ad))if(b.a0.k(0,q.a0))if(b.a9.k(0,q.a9))if(b.cX.k(0,q.cX))if(b.cb.k(0,q.cb))if(b.ct.k(0,q.ct))if(b.J.k(0,q.J))if(b.al.k(0,q.al))if(b.ai.k(0,q.ai))if(b.aE.k(0,q.aE))if(b.ba.k(0,q.ba))if(b.aL.k(0,q.aL))if(b.bD.k(0,q.bD))if(b.ci.k(0,q.ci))if(b.d8.k(0,q.d8))if(b.F.k(0,q.F))if(b.a1.k(0,q.a1))if(b.eu.k(0,q.eu))if(b.bE.k(0,q.bE))if(b.cu.k(0,q.cu))if(b.f2.k(0,q.f2))if(b.i2.k(0,q.i2))if(b.e9.k(0,q.e9))if(b.fw.k(0,q.fw))if(b.hj.k(0,q.hj))if(b.k5.k(0,q.k5))if(b.lp.k(0,q.lp))if(b.bF.k(0,q.bF))if(b.f3.k(0,q.f3))if(b.fz.k(0,q.fz))if(b.iX.k(0,q.iX))if(b.k6.k(0,q.k6))if(b.lq===q.lq){s=b.A +s.toString +r=q.A +r.toString +if(s.k(0,r)){s=b.k1 +s.toString +r=q.k1 +r.toString +if(s.k(0,r)){s=b.lr +s.toString +r=q.lr +r.toString +if(s.k(0,r)){s=b.ls +s.toString +r=q.ls +r.toString +if(s.k(0,r)){s=b.Q +s.toString +r=q.Q +r.toString +r=s.k(0,r) +s=r}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +return s}, +gu(a){var s=this,r=[s.a,s.b],q=s.c +B.b.I(r,q.gbg(q)) +B.b.I(r,q.gaJ(q)) +r.push(s.d) +r.push(s.e) +r.push(s.f) +r.push(s.r) +r.push(s.w) +r.push(s.x) +r.push(s.y) +r.push(s.z) +r.push(s.as) +r.push(s.at) +r.push(s.ax) +r.push(s.ay) +r.push(s.ch) +r.push(s.CW) +r.push(s.cx) +r.push(s.cy) +r.push(s.db) +r.push(s.dx) +r.push(s.dy) +r.push(s.fr) +r.push(s.fx) +r.push(s.fy) +r.push(s.go) +r.push(s.id) +r.push(s.k2) +r.push(s.k3) +r.push(s.k4) +r.push(s.ok) +r.push(s.p1) +r.push(s.p2) +r.push(s.p3) +r.push(s.p4) +r.push(s.R8) +r.push(s.RG) +r.push(s.rx) +r.push(s.ry) +r.push(s.to) +r.push(s.x1) +r.push(s.x2) +r.push(s.xr) +r.push(s.y1) +r.push(s.y2) +r.push(s.bU) +r.push(s.bL) +r.push(s.W) +r.push(s.a_) +r.push(s.ad) +r.push(s.a0) +r.push(s.a9) +r.push(s.cX) +r.push(s.cb) +r.push(s.ct) +r.push(s.J) +r.push(s.al) +r.push(s.ai) +r.push(s.aE) +r.push(s.ba) +r.push(s.aL) +r.push(s.bD) +r.push(s.ci) +r.push(s.d8) +r.push(s.F) +r.push(s.a1) +r.push(s.eu) +r.push(s.bE) +r.push(s.cu) +r.push(s.f2) +r.push(s.i2) +r.push(s.e9) +r.push(s.fw) +r.push(s.hj) +r.push(s.k5) +r.push(s.lp) +r.push(s.bF) +r.push(s.f3) +r.push(s.fz) +r.push(s.iX) +r.push(s.k6) +r.push(!0) +r.push(s.lq) +r.push(s.r0) +q=s.A +q.toString +r.push(q) +q=s.k1 +q.toString +r.push(q) +q=s.lr +q.toString +r.push(q) +q=s.ls +q.toString +r.push(q) +q=s.Q +q.toString +r.push(q) +return A.cl(r)}} +A.a_m.prototype={ +$0(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3=null,b4=this.a,b5=this.b,b6=b5.bV(b4.p2) +b5=b5.bV(b4.p3) +s=b4.ax +r=s.b +q=s.c +p=s.d +if(p==null)p=r +o=s.e +if(o==null)o=q +n=s.f +m=s.r +l=s.w +if(l==null)l=n +k=s.x +if(k==null)k=m +j=s.y +i=j==null?n:j +h=s.z +g=h==null?m:h +f=s.Q +if(f==null){if(j==null)j=n}else j=f +f=s.as +if(f==null){if(h==null)h=m}else h=f +f=s.at +e=s.ax +d=s.ay +if(d==null)d=f +c=s.ch +if(c==null)c=e +b=s.cx +a=s.cy +a0=s.db +a1=s.dx +if(a1==null)a1=a +a2=s.dy +if(a2==null)a2=a0 +a3=s.fr +if(a3==null)a3=b +a4=s.fx +if(a4==null)a4=b +a5=s.fy +if(a5==null)a5=B.l +a6=s.go +if(a6==null)a6=B.l +a7=s.id +if(a7==null)a7=a0 +a8=s.k1 +if(a8==null)a8=a +a9=s.k2 +if(a9==null)a9=q +b0=s.k4 +if(b0==null)b0=r +b1=s.ok +if(b1==null)b1=n +b2=s.k3 +if(b2==null)b2=r +j=A.a7w(s.CW,s.a,f,d,a9,a7,b,e,c,a8,q,o,m,k,a0,a2,g,h,a3,a4,r,p,b0,a6,n,l,b1,a5,a,b2,a1,i,j) +return A.a8H(b4.R8,b4.r0,b4.RG,b4.a,b4.ls,b4.rx,b4.ry,b4.Q,b4.to,b4.x1,b4.x2,b4.xr,b4.y1,b4.as,b4.at,b4.y2,b4.bU,b4.bL,j,b4.b,b4.W,b4.a_,b4.ay,b4.ad,b4.ch,b4.CW,b4.a0,b4.a9,b4.cX,b4.cb,b4.lr,b4.ct,b4.c,b4.J,!0,b4.al,b4.cx,b4.cy,b4.db,b4.dx,b4.ai,b4.ok,b4.dy,b4.d,b4.aE,b4.e,b4.ba,b4.aL,b4.bD,b4.ci,b4.d8,b4.F,b4.a1,b4.f,b4.r,b4.eu,b4.fr,b4.lq,b4.fx,b4.fy,b4.p1,b6,b4.bE,b4.cu,b4.go,b4.w,b4.f2,b4.i2,b4.id,b4.e9,b4.k1,b4.k2,b4.fw,b4.hj,b4.k3,b4.x,b4.k5,b4.lp,b4.bF,b4.f3,b5,b4.fz,b4.iX,b4.A,b4.k6,b4.p4,b4.k4,b4.y,b4.z)}, +$S:207} +A.a_k.prototype={ +$2(a,b){return new A.bb(a,b.a3x(this.a.c.i(0,a),this.b),t.wF)}, +$S:208} +A.a_l.prototype={ +$1(a){return!this.a.c.a3(0,a.a)}, +$S:209} +A.Ui.prototype={ +gng(){return this.ay.ax.a}, +glO(){return this.ay.ax.b}, +grX(){return this.ay.ax.c}, +goR(){return this.ay.go}} +A.pa.prototype={ +gu(a){return(A.pH(this.a)^A.pH(this.b))>>>0}, +k(a,b){if(b==null)return!1 +return b instanceof A.pa&&b.a===this.a&&b.b===this.b}} +A.HP.prototype={ +bq(a,b,c){var s,r=this.a,q=r.i(0,b) +if(q!=null)return q +if(r.a===this.b){s=new A.aT(r,A.m(r).h("aT<1>")) +r.v(0,s.gG(s))}s=c.$0() +r.l(0,b,s) +return s}} +A.iM.prototype={ +xy(a){var s=this.a,r=this.b,q=A.O(a.a+new A.q(s,r).R(0,4).a,0,a.b) +return a.Zp(A.O(a.c+new A.q(s,r).R(0,4).b,0,a.d),q)}, +k(a,b){if(b==null)return!1 +if(J.J(b)!==A.w(this))return!1 +return b instanceof A.iM&&b.a===this.a&&b.b===this.b}, +gu(a){return A.L(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +bW(){return this.Mq()+"(h: "+A.fV(this.a)+", v: "+A.fV(this.b)+")"}} +A.LE.prototype={} +A.Mi.prototype={} +A.ve.prototype={ +gu(a){var s=this +return A.cl([s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db,s.dx])}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.ve&&J.e(b.a,s.a)&&J.e(b.b,s.b)&&J.e(b.c,s.c)&&J.e(b.d,s.d)&&J.e(b.e,s.e)&&J.e(b.f,s.f)&&J.e(b.r,s.r)&&J.e(b.w,s.w)&&J.e(b.x,s.x)&&J.e(b.y,s.y)&&J.e(b.z,s.z)&&J.e(b.Q,s.Q)&&b.as==s.as&&J.e(b.at,s.at)&&J.e(b.ax,s.ax)&&J.e(b.ay,s.ay)&&J.e(b.ch,s.ch)&&J.e(b.CW,s.CW)&&J.e(b.cx,s.cx)&&J.e(b.db,s.db)&&J.e(b.dx,s.dx)}} +A.LG.prototype={} +A.vf.prototype={ +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.y,s.x,s.z,s.Q,s.as,s.ax,s.at,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.vf&&J.e(b.a,s.a)&&J.e(b.b,s.b)&&J.e(b.c,s.c)&&J.e(b.d,s.d)&&J.e(b.e,s.e)&&J.e(b.f,s.f)&&J.e(b.r,s.r)&&J.e(b.w,s.w)&&J.e(b.y,s.y)&&J.e(b.x,s.x)&&J.e(b.z,s.z)&&J.e(b.Q,s.Q)&&J.e(b.as,s.as)&&J.e(b.ax,s.ax)&&b.at==s.at}} +A.LI.prototype={} +A.vg.prototype={ +aq(){return new A.md(null,null,B.m)}} +A.md.prototype={ +gq3(){var s=this.a.c +return s==null?null.a3J():s}, +aM(){var s,r,q=this +q.bb() +q.fx=q.fr=!1 +q.cy=$.k2.xr$.b.a!==0 +s=A.d9(null,B.yU,B.fl,null,q) +s.aX() +r=s.bT$ +r.b=!0 +r.a.push(q.gX4()) +q.as=s +$.k2.xr$.Z(0,q.gCV()) +$.e3.p3$.b.l(0,q.gCX(),null)}, +b4(){this.cR() +this.c.aj(t.fc) +this.fy=!0}, +S7(){var s=this.c +s.toString +switch(A.al(s).r.a){case 4:case 3:case 5:return 24 +case 0:case 1:case 2:return 32}}, +S6(){var s=this.c +s.toString +switch(A.al(s).r.a){case 4:case 3:case 5:return B.z6 +case 0:case 1:case 2:return B.z4}}, +Cw(){var s=this.c +s.toString +switch(A.al(s).r.a){case 4:case 3:case 5:return 12 +case 0:case 1:case 2:return 14}}, +T3(){var s,r,q=this +if(q.c==null)return +s=$.k2.xr$.b.a!==0 +r=q.cy +r===$&&A.c() +if(s!==r)q.aA(new A.a_u(q,s))}, +X5(a){var s +if(a===B.F){s=this.fx +s===$&&A.c() +if(!s){s=this.fr +s===$&&A.c() +s=!s}else s=!0}else s=!1 +if(s)this.vT()}, +uW(a){var s,r=this,q=r.ay +if(q!=null)q.aT(0) +r.ay=null +if(a){r.vT() +return}r.fx=!0 +if(r.db){if(r.ax==null){q=r.ch +q===$&&A.c() +s=r.as +s===$&&A.c() +r.ax=A.c8(q,s.gK_(s))}}else if(r.ax==null){q=r.CW +q===$&&A.c() +s=r.as +s===$&&A.c() +r.ax=A.c8(q,s.gK_(s))}r.db=!1}, +ED(){var s=this,r=s.ax +if(r!=null)r.aT(0) +s.ax=null +if(s.ay==null){r=s.cx +r===$&&A.c() +s.ay=A.c8(r,s.ga_1())}}, +QL(){var s=this,r=s.fr +r===$&&A.c() +if(!r){r=s.fx +r===$&&A.c()}else r=!0 +if(r)return +s.fr=!0 +r=s.ax +if(r!=null)r.aT(0) +s.ax=null +r=s.ay +if(r!=null)r.aT(0) +s.ay=null +r=s.at +if(r!=null)r.ig(0) +r=s.as +r===$&&A.c() +r.ey(0)}, +Eb(){var s,r=this,q=r.fr +q===$&&A.c() +if(!q)return +r.fr=!1 +q=r.ax +if(q!=null)q.aT(0) +r.ax=null +q=r.ay +if(q!=null)q.aT(0) +r.ay=null +if(r.at.d.a==null){q=r.c +q.toString +r.a.toString +q=A.abS(q,t.bm) +q.toString +s=r.at +s.toString +q.y7(0,s)}A.EP(r.gq3()) +q=r.as +q===$&&A.c() +q.c5(0)}, +Hz(){var s,r=this +r.fy===$&&A.c() +s=r.c +if(s==null)return!1 +s=r.ay +if(s!=null)s.aT(0) +r.ay=null +r.fx=!1 +s=r.fr +s===$&&A.c() +if(s){s=r.cy +s===$&&A.c() +if(s)A.adp(r) +r.Eb() +return!0}if(r.at!=null){s=r.ax +if(s!=null)s.aT(0) +r.ax=null +s=r.as +s===$&&A.c() +s.c5(0) +return!1}r.R0() +s=r.as +s===$&&A.c() +s.c5(0) +return!0}, +CU(a){var s +if(this.c!=null){s=this.fr +s===$&&A.c() +this.uW(s||a)}}, +pt(){return this.CU(!1)}, +R0(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d=null,c=e.c +c.toString +e.a.toString +c=A.abS(c,t.bm) +c.toString +s=e.c.ga2() +s.toString +t.x.a(s) +r=s.k3.h7(B.h) +q=A.cf(s.bs(0,c.c.ga2()),r) +r=e.c.aj(t.I) +r.toString +s=A.a_j(d,d,e.a.c) +p=e.d +p===$&&A.c() +o=e.e +o===$&&A.c() +n=e.f +n===$&&A.c() +m=e.cy +m===$&&A.c() +l=m?new A.a_r(e):d +m=m?new A.a_s(e):d +k=e.r +k===$&&A.c() +j=e.w +j===$&&A.c() +i=e.x +i===$&&A.c() +h=e.as +h===$&&A.c() +h=A.eQ(B.an,h,d) +g=e.y +g===$&&A.c() +f=e.z +f===$&&A.c() +r=A.Vh(new A.a_t(A.aaV(new A.LJ(s,p,o,n,k,j,i,h,q,g,f,l,m,d),r.w)),!1) +e.at=r +e.fr=!1 +c.y7(0,r) +A.EP(e.gq3()) +if(e.cy)A.adp(e) +$.iG.push(e)}, +vT(){var s,r=this +B.b.v($.iG,r) +$.anG.v(0,r) +s=r.ax +if(s!=null)s.aT(0) +r.ax=null +s=r.ay +if(s!=null)s.aT(0) +r.ay=null +s=r.fr +s===$&&A.c() +if(!s){s=r.at +if(s!=null)s.ig(0)}r.fr=!1 +s=r.at +if(s!=null){s.r=!0 +s=s.d +if(s.a==null){s.a_$=$.b7() +s.W$=0}}r.at=null +s=r.cy +s===$&&A.c() +if(s)if($.iG.length!==0)B.b.gO($.iG).Eb()}, +Tg(a){if(this.at==null)return +if(t.Cs.b(a)||t.AJ.b(a))this.pt() +else if(t.Y.b(a))this.CU(!0)}, +d6(){var s,r=this +if(r.at!=null)r.uW(!0) +s=r.ay +if(s!=null)s.aT(0) +r.mn()}, +m(){var s,r=this +$.e3.p3$.b.v(0,r.gCX()) +$.k2.xr$.H(0,r.gCV()) +r.vT() +s=r.as +s===$&&A.c() +s.m() +r.OR()}, +CZ(){var s,r,q=this +q.db=!0 +if(q.Hz()){s=q.dy +s===$&&A.c()}else s=!1 +if(s){s=q.dx +s===$&&A.c() +r=q.c +if(s===B.hC){r.toString +A.aky(r)}else{r.toString +A.Ro(r)}}q.a.toString}, +TO(){this.CZ() +this.pt()}, +N(a){var s,r,q,p,o,n,m,l=this,k=null +if(l.gq3().length===0){s=l.a.z +return s}r=A.al(a) +a.aj(t.cF) +q=A.al(a).k6 +s=r.p3.z +if(r.ax.a===B.W){s.toString +p=s.GH(B.l,l.Cw()) +o=new A.eM(A.U(B.c.bd(229.5),255,255,255),k,k,B.ia,k,k,B.bD)}else{s.toString +p=s.GH(B.i,l.Cw()) +o=new A.eM(A.U(B.c.bd(229.5),97,97,97),k,k,B.ia,k,k,B.bD)}l.a.toString +s=q.a +l.d=s==null?l.S7():s +l.a.toString +s=q.b +l.e=s==null?l.S6():s +l.a.toString +s=q.c +l.f=s==null?B.aS:s +s=q.d +l.y=s==null?24:s +l.z=!0 +l.Q=!1 +s=q.r +l.r=s==null?o:s +s=q.w +l.w=s==null?p:s +l.x=B.bw +l.cx=B.r +l.ch=B.yV +l.CW=B.ay +l.dx=B.hC +l.dy=!0 +s=l.gq3() +n=A.dC(k,l.a.z,!1,k,!1,k,k,k,k,k,k,k,k,k,k,k,k,k,k,s) +l.fy===$&&A.c() +s=l.dx +m=s===B.hC?l.gTo():k +n=A.a7V(B.ap,n,B.bf,!0,k,k,k,k,k,k,m,k,k,k,k,k,k,k,s===B.LO?l.gTN():k,k,k,k,k,k,k) +s=l.cy +s===$&&A.c() +if(s)n=A.tb(n,B.cg,new A.a_v(l),new A.a_w(l),k) +return n}} +A.a_u.prototype={ +$0(){this.a.cy=this.b}, +$S:0} +A.a_r.prototype={ +$1(a){var s=this.a +if(s.c!=null)s.ED() +return null}, +$S:51} +A.a_s.prototype={ +$1(a){return this.a.pt()}, +$S:46} +A.a_t.prototype={ +$1(a){return this.a}, +$S:25} +A.a_v.prototype={ +$1(a){var s=this.a +if(s.c!=null)s.ED() +return null}, +$S:51} +A.a_w.prototype={ +$1(a){return this.a.pt()}, +$S:46} +A.a4y.prototype={ +zP(a){return new A.aI(0,a.b,0,a.d)}, +zX(a,b){return A.arU(b,!0,a,this.b,this.c)}, +md(a){return!this.b.k(0,a.b)||this.c!==a.c||!1}} +A.LJ.prototype={ +N(a){var s,r=this,q=null,p=A.al(a).p3.z +p.toString +s=new A.hh(!0,q,A.abe(new A.ej(new A.aI(0,1/0,r.d,1/0),A.qG(A.Px(q,A.OW(new A.v1(q,r.c,r.w,r.x,q),1,1),B.w,q,q,r.r,q,q,r.f,r.e,q,q,q),q,B.c3,!0,p,q,q,B.aK),q),r.y),q) +p=r.at +if(p!=null||r.ax!=null)s=A.tb(s,B.cg,p,r.ax,q) +p=A.dl(a,B.hQ) +p=p==null?q:p.e +p=p==null?q:p.d +if(p==null)p=0 +return new A.lM(0,0,0,p,q,q,new A.qC(new A.a4y(r.z,r.Q,!0),s,q),q)}} +A.xI.prototype={ +m(){var s=this,r=s.dH$ +if(r!=null)r.H(0,s.gn0()) +s.dH$=null +s.aW()}, +c8(){this.dV() +this.d4() +this.n1()}} +A.vh.prototype={ +gu(a){var s=this,r=null +return A.L(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,r,r,r,r,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.J(b)!==A.w(r))return!1 +if(b instanceof A.vh)if(b.a==r.a)if(J.e(b.b,r.b))if(J.e(b.c,r.c))if(b.d==r.d)if(J.e(b.r,r.r))if(J.e(b.w,r.w))s=!0 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +return s}} +A.FJ.prototype={ +D(){return"TooltipTriggerMode."+this.b}} +A.LK.prototype={} +A.XV.prototype={ +D(){return"ScriptCategory."+this.b}} +A.oJ.prototype={ +KG(a){switch(a.a){case 0:return this.c +case 1:return this.d +case 2:return this.e}}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.oJ&&b.a.k(0,s.a)&&b.b.k(0,s.b)&&b.c.k(0,s.c)&&b.d.k(0,s.d)&&b.e.k(0,s.e)}, +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.M9.prototype={} +A.dZ.prototype={ +j(a){var s=this +if(s.gh1(s)===0)return A.a7l(s.gh2(),s.gh3()) +if(s.gh2()===0)return A.a7k(s.gh1(s),s.gh3()) +return A.a7l(s.gh2(),s.gh3())+" + "+A.a7k(s.gh1(s),0)}, +k(a,b){var s=this +if(b==null)return!1 +return b instanceof A.dZ&&b.gh2()===s.gh2()&&b.gh1(b)===s.gh1(s)&&b.gh3()===s.gh3()}, +gu(a){var s=this +return A.L(s.gh2(),s.gh1(s),s.gh3(),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.d8.prototype={ +gh2(){return this.a}, +gh1(a){return 0}, +gh3(){return this.b}, +a4(a,b){return new A.d8(this.a-b.a,this.b-b.b)}, +T(a,b){return new A.d8(this.a+b.a,this.b+b.b)}, +R(a,b){return new A.d8(this.a*b,this.b*b)}, +jI(a){var s=a.a/2,r=a.b/2 +return new A.q(s+this.a*s,r+this.b*r)}, +a0E(a,b){var s=b.a,r=a.a,q=(b.c-s-r)/2,p=b.b,o=a.b,n=(b.d-p-o)/2 +s=s+q+this.a*q +p=p+n+this.b*n +return new A.C(s,p,s+r,p+o)}, +Y(a){return this}, +j(a){return A.a7l(this.a,this.b)}} +A.eh.prototype={ +gh2(){return 0}, +gh1(a){return this.a}, +gh3(){return this.b}, +a4(a,b){return new A.eh(this.a-b.a,this.b-b.b)}, +T(a,b){return new A.eh(this.a+b.a,this.b+b.b)}, +R(a,b){return new A.eh(this.a*b,this.b*b)}, +Y(a){var s=this +switch(a.a){case 0:return new A.d8(-s.a,s.b) +case 1:return new A.d8(s.a,s.b)}}, +j(a){return A.a7k(this.a,this.b)}} +A.ws.prototype={ +R(a,b){return new A.ws(this.a*b,this.b*b,this.c*b)}, +Y(a){var s=this +switch(a.a){case 0:return new A.d8(s.a-s.b,s.c) +case 1:return new A.d8(s.a+s.b,s.c)}}, +gh2(){return this.a}, +gh1(a){return this.b}, +gh3(){return this.c}} +A.u1.prototype={ +D(){return"RenderComparison."+this.b}} +A.z_.prototype={ +D(){return"Axis."+this.b}} +A.G_.prototype={ +D(){return"VerticalDirection."+this.b}} +A.mO.prototype={ +D(){return"AxisDirection."+this.b}} +A.tA.prototype={ +Io(a,b,c,d){return $.ae().hm(a,!1,c,d)}, +o2(a){return this.Io(a,!1,null,null)}, +Ip(a,b,c,d){var s=$.ae(),r=a.a +r.toString +return s.hm(r,!1,c,d)}, +a0M(a){return this.Ip(a,!1,null,null)}, +Iq(a,b){return A.Nx(a,b)}, +a0O(a){return this.Iq(a,null)}, +$ide:1} +A.Ls.prototype={ +ao(){var s,r,q +for(s=this.a,s=A.dV(s,s.r),r=A.m(s).c;s.t();){q=s.d;(q==null?r.a(q):q).$0()}}, +Z(a,b){this.a.B(0,b)}, +H(a,b){this.a.v(0,b)}} +A.q6.prototype={ +tQ(a){var s=this +return new A.wt(s.gdk().a4(0,a.gdk()),s.geM().a4(0,a.geM()),s.geG().a4(0,a.geG()),s.gfh().a4(0,a.gfh()),s.gdl().a4(0,a.gdl()),s.geL().a4(0,a.geL()),s.gfi().a4(0,a.gfi()),s.geF().a4(0,a.geF()))}, +B(a,b){var s=this +return new A.wt(s.gdk().T(0,b.gdk()),s.geM().T(0,b.geM()),s.geG().T(0,b.geG()),s.gfh().T(0,b.gfh()),s.gdl().T(0,b.gdl()),s.geL().T(0,b.geL()),s.gfi().T(0,b.gfi()),s.geF().T(0,b.geF()))}, +j(a){var s,r,q,p,o=this +if(o.gdk().k(0,o.geM())&&o.geM().k(0,o.geG())&&o.geG().k(0,o.gfh()))if(!o.gdk().k(0,B.D))s=o.gdk().a===o.gdk().b?"BorderRadius.circular("+B.c.M(o.gdk().a,1)+")":"BorderRadius.all("+o.gdk().j(0)+")" +else s=null +else{r=""+"BorderRadius.only(" +if(!o.gdk().k(0,B.D)){r+="topLeft: "+o.gdk().j(0) +q=!0}else q=!1 +if(!o.geM().k(0,B.D)){if(q)r+=", " +r+="topRight: "+o.geM().j(0) +q=!0}if(!o.geG().k(0,B.D)){if(q)r+=", " +r+="bottomLeft: "+o.geG().j(0) +q=!0}if(!o.gfh().k(0,B.D)){if(q)r+=", " +r+="bottomRight: "+o.gfh().j(0)}r+=")" +s=r.charCodeAt(0)==0?r:r}if(o.gdl().k(0,o.geL())&&o.geL().k(0,o.geF())&&o.geF().k(0,o.gfi()))if(!o.gdl().k(0,B.D))p=o.gdl().a===o.gdl().b?"BorderRadiusDirectional.circular("+B.c.M(o.gdl().a,1)+")":"BorderRadiusDirectional.all("+o.gdl().j(0)+")" +else p=null +else{r=""+"BorderRadiusDirectional.only(" +if(!o.gdl().k(0,B.D)){r+="topStart: "+o.gdl().j(0) +q=!0}else q=!1 +if(!o.geL().k(0,B.D)){if(q)r+=", " +r+="topEnd: "+o.geL().j(0) +q=!0}if(!o.gfi().k(0,B.D)){if(q)r+=", " +r+="bottomStart: "+o.gfi().j(0) +q=!0}if(!o.geF().k(0,B.D)){if(q)r+=", " +r+="bottomEnd: "+o.geF().j(0)}r+=")" +p=r.charCodeAt(0)==0?r:r}r=s!=null +if(r&&p!=null)return A.h(s)+" + "+p +if(r)return s +if(p!=null)return p +return"BorderRadius.zero"}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.q6&&b.gdk().k(0,s.gdk())&&b.geM().k(0,s.geM())&&b.geG().k(0,s.geG())&&b.gfh().k(0,s.gfh())&&b.gdl().k(0,s.gdl())&&b.geL().k(0,s.geL())&&b.gfi().k(0,s.gfi())&&b.geF().k(0,s.geF())}, +gu(a){var s=this +return A.L(s.gdk(),s.geM(),s.geG(),s.gfh(),s.gdl(),s.geL(),s.gfi(),s.geF(),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.cc.prototype={ +gdk(){return this.a}, +geM(){return this.b}, +geG(){return this.c}, +gfh(){return this.d}, +gdl(){return B.D}, +geL(){return B.D}, +gfi(){return B.D}, +geF(){return B.D}, +dh(a){var s=this,r=s.a.eV(0,B.D),q=s.b.eV(0,B.D) +return A.Wg(a,s.c.eV(0,B.D),s.d.eV(0,B.D),r,q)}, +tQ(a){if(a instanceof A.cc)return this.a4(0,a) +return this.LO(a)}, +B(a,b){if(b instanceof A.cc)return this.T(0,b) +return this.LN(0,b)}, +a4(a,b){var s=this +return new A.cc(s.a.a4(0,b.a),s.b.a4(0,b.b),s.c.a4(0,b.c),s.d.a4(0,b.d))}, +T(a,b){var s=this +return new A.cc(s.a.T(0,b.a),s.b.T(0,b.b),s.c.T(0,b.c),s.d.T(0,b.d))}, +R(a,b){var s=this +return new A.cc(s.a.R(0,b),s.b.R(0,b),s.c.R(0,b),s.d.R(0,b))}, +Y(a){return this}} +A.wt.prototype={ +R(a,b){var s=this +return new A.wt(s.a.R(0,b),s.b.R(0,b),s.c.R(0,b),s.d.R(0,b),s.e.R(0,b),s.f.R(0,b),s.r.R(0,b),s.w.R(0,b))}, +Y(a){var s=this +switch(a.a){case 0:return new A.cc(s.a.T(0,s.f),s.b.T(0,s.e),s.c.T(0,s.w),s.d.T(0,s.r)) +case 1:return new A.cc(s.a.T(0,s.e),s.b.T(0,s.f),s.c.T(0,s.r),s.d.T(0,s.w))}}, +gdk(){return this.a}, +geM(){return this.b}, +geG(){return this.c}, +gfh(){return this.d}, +gdl(){return this.e}, +geL(){return this.f}, +gfi(){return this.r}, +geF(){return this.w}} +A.z7.prototype={ +D(){return"BorderStyle."+this.b}} +A.bD.prototype={ +aO(a,b){var s=Math.max(0,this.b*b),r=b<=0?B.bC:this.c +return new A.bD(this.a,s,r,-1)}, +ik(){switch(this.c.a){case 1:var s=$.ae().b9() +s.sac(0,this.a) +s.shK(this.b) +s.sco(0,B.R) +return s +case 0:s=$.ae().b9() +s.sac(0,B.H) +s.shK(0) +s.sco(0,B.R) +return s}}, +gd0(){return this.b*(1-(1+this.d)/2)}, +gkw(){return this.b*(1+this.d)/2}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.bD&&b.a.k(0,s.a)&&b.b===s.b&&b.c===s.c&&b.d===s.d}, +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +bW(){return"BorderSide"}} +A.bw.prototype={ +eO(a,b,c){return null}, +B(a,b){return this.eO(a,b,!1)}, +T(a,b){var s=this.B(0,b) +if(s==null)s=b.eO(0,this,!0) +return s==null?new A.f2(A.a([b,this],t.h_)):s}, +cl(a,b){if(a==null)return this.aO(0,b) +return null}, +cm(a,b){if(a==null)return this.aO(0,1-b) +return null}, +j(a){return"ShapeBorder()"}} +A.cC.prototype={ +glc(){var s=Math.max(this.a.gd0(),0) +return new A.bl(s,s,s,s)}, +cl(a,b){if(a==null)return this.aO(0,b) +return null}, +cm(a,b){if(a==null)return this.aO(0,1-b) +return null}} +A.f2.prototype={ +glc(){return B.b.a_n(this.a,B.aS,new A.a1a())}, +eO(a,b,c){var s,r,q,p=b instanceof A.f2 +if(!p){s=this.a +r=c?B.b.gO(s):B.b.gG(s) +q=r.eO(0,b,c) +if(q==null)q=b.eO(0,r,!c) +if(q!=null){p=A.aw(s,!0,t.Fy) +p[c?p.length-1:0]=q +return new A.f2(p)}}s=A.a([],t.h_) +if(c)B.b.I(s,this.a) +if(p)B.b.I(s,b.a) +else s.push(b) +if(!c)B.b.I(s,this.a) +return new A.f2(s)}, +B(a,b){return this.eO(a,b,!1)}, +aO(a,b){var s=this.a,r=A.ac(s).h("aA<1,bw>") +return new A.f2(A.aw(new A.aA(s,new A.a1b(b),r),!0,r.h("bn.E")))}, +cl(a,b){return A.adI(a,this,b)}, +cm(a,b){return A.adI(this,a,b)}, +ez(a,b){return B.b.gG(this.a).ez(a,b)}, +hu(a,b,c){var s,r,q,p,o +for(s=this.a,r=s.length,q=0;q") +return new A.aA(new A.co(s,r),new A.a1c(),r.h("aA")).bf(0," + ")}} +A.a1a.prototype={ +$2(a,b){return a.B(0,b.glc())}, +$S:214} +A.a1b.prototype={ +$1(a){return a.aO(0,this.a)}, +$S:215} +A.a1c.prototype={ +$1(a){return a.j(0)}, +$S:216} +A.Gz.prototype={} +A.ze.prototype={ +D(){return"BoxShape."+this.b}} +A.z8.prototype={ +eO(a,b,c){return null}, +B(a,b){return this.eO(a,b,!1)}, +ez(a,b){var s=$.ae().c9() +s.kY(a) +return s}} +A.dk.prototype={ +glc(){var s,r=this +if(r.gFG()){s=r.a.gd0() +return new A.bl(s,s,s,s)}return new A.bl(r.d.gd0(),r.a.gd0(),r.b.gd0(),r.c.gd0())}, +go9(){var s,r,q=this +if(q.gmv())if(q.gFG())if(q.gmY()){s=q.a.d +r=q.d.d===s&&q.c.d===s&&q.b.d===s}else r=!1 +else r=!1 +else r=!1 +return r}, +gmv(){var s=this,r=s.a.a +return s.d.a.k(0,r)&&s.c.a.k(0,r)&&s.b.a.k(0,r)}, +gFG(){var s=this,r=s.a.b +return s.d.b===r&&s.c.b===r&&s.b.b===r}, +gmY(){var s=this,r=s.a.c +return s.d.c===r&&s.c.c===r&&s.b.c===r}, +eO(a,b,c){var s=this +if(b instanceof A.dk&&A.i3(s.a,b.a)&&A.i3(s.b,b.b)&&A.i3(s.c,b.c)&&A.i3(s.d,b.d))return new A.dk(A.fc(s.a,b.a),A.fc(s.b,b.b),A.fc(s.c,b.c),A.fc(s.d,b.d)) +return null}, +B(a,b){return this.eO(a,b,!1)}, +aO(a,b){var s=this +return new A.dk(s.a.aO(0,b),s.b.aO(0,b),s.c.aO(0,b),s.d.aO(0,b))}, +cl(a,b){if(a instanceof A.dk)return A.a7o(a,this,b) +return this.AY(a,b)}, +cm(a,b){if(a instanceof A.dk)return A.a7o(this,a,b) +return this.AZ(a,b)}, +rP(a,b,c,d,e){var s,r=this +if(r.go9()){s=r.a +switch(s.c.a){case 0:return +case 1:switch(d.a){case 1:A.aaz(a,b,s) +break +case 0:if(c!=null&&!c.k(0,B.ab)){A.aaA(a,b,s,c) +return}A.aaB(a,b,s) +break}return}}if(r.gmv()&&r.gmY()){s=r.a +switch(s.c.a){case 0:return +case 1:A.aay(a,b,c,r.c,r.d,r.b,d,e,s) +return}}A.afM(a,b,r.c,r.d,r.b,r.a)}, +hu(a,b,c){return this.rP(a,b,null,B.bD,c)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.dk&&b.a.k(0,s.a)&&b.b.k(0,s.b)&&b.c.k(0,s.c)&&b.d.k(0,s.d)}, +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a){var s,r,q=this +if(q.go9())return"Border.all("+q.a.j(0)+")" +s=A.a([],t.s) +r=q.a +if(!r.k(0,B.v))s.push("top: "+r.j(0)) +r=q.b +if(!r.k(0,B.v))s.push("right: "+r.j(0)) +r=q.c +if(!r.k(0,B.v))s.push("bottom: "+r.j(0)) +r=q.d +if(!r.k(0,B.v))s.push("left: "+r.j(0)) +return"Border("+B.b.bf(s,", ")+")"}} +A.ds.prototype={ +glc(){var s,r=this +if(r.go9()){s=r.a.gd0() +return new A.e2(s,s,s,s)}return new A.e2(r.b.gd0(),r.a.gd0(),r.c.gd0(),r.d.gd0())}, +go9(){var s,r,q,p,o=this +if(o.gmv()){s=o.a +r=s.b +q=o.b +if(q.b===r&&o.d.b===r&&o.c.b===r)if(o.gmY()){p=s.d +s=q.d===p&&o.d.d===p&&o.c.d===p}else s=!1 +else s=!1}else s=!1 +return s}, +gmv(){var s=this,r=s.a.a +return s.b.a.k(0,r)&&s.d.a.k(0,r)&&s.c.a.k(0,r)}, +gmY(){var s=this,r=s.a.c +return s.b.c===r&&s.d.c===r&&s.c.c===r}, +eO(a,b,c){var s,r,q,p=this,o=null +if(b instanceof A.ds){s=p.a +r=b.a +if(A.i3(s,r)&&A.i3(p.b,b.b)&&A.i3(p.c,b.c)&&A.i3(p.d,b.d))return new A.ds(A.fc(s,r),A.fc(p.b,b.b),A.fc(p.c,b.c),A.fc(p.d,b.d)) +return o}if(b instanceof A.dk){s=b.a +r=p.a +if(!A.i3(s,r)||!A.i3(b.c,p.d))return o +q=p.b +if(!q.k(0,B.v)||!p.c.k(0,B.v)){if(!b.d.k(0,B.v)||!b.b.k(0,B.v))return o +return new A.ds(A.fc(s,r),q,p.c,A.fc(b.c,p.d))}return new A.dk(A.fc(s,r),b.b,A.fc(b.c,p.d),b.d)}return o}, +B(a,b){return this.eO(a,b,!1)}, +aO(a,b){var s=this +return new A.ds(s.a.aO(0,b),s.b.aO(0,b),s.c.aO(0,b),s.d.aO(0,b))}, +cl(a,b){if(a instanceof A.ds)return A.a7n(a,this,b) +return this.AY(a,b)}, +cm(a,b){if(a instanceof A.ds)return A.a7n(this,a,b) +return this.AZ(a,b)}, +rP(a,b,c,d,e){var s,r,q,p=this +if(p.go9()){s=p.a +switch(s.c.a){case 0:return +case 1:switch(d.a){case 1:A.aaz(a,b,s) +break +case 0:if(c!=null&&!c.k(0,B.ab)){A.aaA(a,b,s,c) +return}A.aaB(a,b,s) +break}return}}switch(e.a){case 0:r=p.c +q=p.b +break +case 1:r=p.b +q=p.c +break +default:r=null +q=null}if(p.gmv()&&p.gmY()){s=p.a +switch(s.c.a){case 0:return +case 1:A.aay(a,b,c,p.d,r,q,d,e,s) +return}}A.afM(a,b,p.d,r,q,p.a)}, +hu(a,b,c){return this.rP(a,b,null,B.bD,c)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.ds&&b.a.k(0,s.a)&&b.b.k(0,s.b)&&b.c.k(0,s.c)&&b.d.k(0,s.d)}, +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a){var s=this,r=A.a([],t.s),q=s.a +if(!q.k(0,B.v))r.push("top: "+q.j(0)) +q=s.b +if(!q.k(0,B.v))r.push("start: "+q.j(0)) +q=s.c +if(!q.k(0,B.v))r.push("end: "+q.j(0)) +q=s.d +if(!q.k(0,B.v))r.push("bottom: "+q.j(0)) +return"BorderDirectional("+B.b.bf(r,", ")+")"}} +A.eM.prototype={ +gc2(a){var s=this.c +s=s==null?null:s.glc() +return s==null?B.aS:s}, +ti(a,b){var s,r,q +switch(this.w.a){case 1:s=A.k0(a.gav(),a.geA()/2) +r=$.ae().c9() +r.qg(s) +return r +case 0:r=this.d +if(r!=null){q=$.ae().c9() +q.en(r.Y(b).dh(a)) +return q}r=$.ae().c9() +r.kY(a) +return r}}, +aO(a,b){var s=this,r=null,q=A.r(r,s.a,b),p=A.aaC(r,s.c,b),o=A.h3(r,s.d,b),n=A.aaF(r,s.e,b) +return new A.eM(q,s.b,p,o,n,r,s.w)}, +gyc(){return this.e!=null}, +cl(a,b){if(a==null)return this.aO(0,b) +if(a instanceof A.eM)return A.aaD(a,this,b) +return this.Ml(a,b)}, +cm(a,b){if(a==null)return this.aO(0,1-b) +if(a instanceof A.eM)return A.aaD(this,a,b) +return this.Mm(a,b)}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.J(b)!==A.w(r))return!1 +if(b instanceof A.eM)if(J.e(b.a,r.a))if(J.e(b.b,r.b))if(J.e(b.c,r.c))if(J.e(b.d,r.d))if(A.dh(b.e,r.e))s=b.w===r.w +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +return s}, +gu(a){var s=this,r=s.e +r=r==null?null:A.cl(r) +return A.L(s.a,s.b,s.c,s.d,r,s.f,null,s.w,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +Id(a,b,c){var s +switch(this.w.a){case 0:s=this.d +if(s!=null)return s.Y(c).dh(new A.C(0,0,0+a.a,0+a.b)).q(0,b) +return!0 +case 1:return b.a4(0,a.h7(B.h)).gcz()<=Math.min(a.a,a.b)/2}}, +GL(a){return new A.a0A(this,a)}} +A.a0A.prototype={ +DG(a,b,c,d){var s=this.b +switch(s.w.a){case 1:a.e6(b.gav(),b.geA()/2,c) +break +case 0:s=s.d +if(s==null||s.k(0,B.ab))a.bK(b,c) +else a.cg(s.Y(d).dh(b),c) +break}}, +Vd(a,b,c){var s,r,q,p,o,n,m=this.b.e +if(m==null)return +for(s=m.length,r=0;r0?n*0.57735+0.5:0)) +o=b.cE(q.b) +n=q.d +this.DG(a,new A.C(o.a-n,o.b-n,o.c+n,o.d+n),p,c)}}, +Va(a,b,c){var s,r,q=this,p=q.b,o=p.b +if(o==null)return +if(q.e==null)q.e=new A.Av(o,q.a) +switch(p.w.a){case 1:s=A.k0(b.gav(),b.geA()/2) +r=$.ae().c9() +r.qg(s) +break +case 0:p=p.d +if(p!=null){r=$.ae().c9() +r.en(p.Y(c.d).dh(b))}else r=null +break +default:r=null}q.e.rO(a,b,r,c)}, +m(){var s,r=this.e +if(r!=null){s=r.c +if(s!=null)s.H(0,new A.ep(r.gCT(),null,r.a.b)) +s=r.d +if(s!=null)s.a.m() +r.d=null}this.LQ()}, +yU(a,b,c){var s,r,q,p=this,o=c.e,n=b.a,m=b.b,l=new A.C(n,m,n+o.a,m+o.b),k=c.d +p.Vd(a,l,k) +o=p.b +n=o.a +m=n==null +if(!m||!1){s=p.c +if(s!=null)r=!1 +else r=!0 +if(r){q=$.ae().b9() +if(!m)q.sac(0,n) +p.c=q +n=q}else n=s +n.toString +p.DG(a,l,n,k)}p.Va(a,l,c) +n=o.c +if(n!=null){m=o.d +m=m==null?null:m.Y(k) +n.rP(a,l,m,o.w,k)}}, +j(a){return"BoxPainter for "+this.b.j(0)}} +A.za.prototype={ +D(){return"BoxFit."+this.b}} +A.Bf.prototype={} +A.i4.prototype={ +aO(a,b){var s=this +return new A.i4(s.d*b,s.e,s.a,s.b.R(0,b),s.c*b)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.i4&&b.a.k(0,s.a)&&b.b.k(0,s.b)&&b.c===s.c&&b.d===s.d&&b.e===s.e}, +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a){var s=this +return"BoxShadow("+s.a.j(0)+", "+s.b.j(0)+", "+A.fV(s.c)+", "+A.fV(s.d)+", "+s.e.j(0)+")"}} +A.cV.prototype={ +aO(a,b){return new A.cV(this.b,this.a.aO(0,b))}, +cl(a,b){var s,r +if(a instanceof A.cV){s=A.aj(a.a,this.a,b) +r=A.M(a.b,this.b,b) +r.toString +return new A.cV(A.O(r,0,1),s)}return this.kz(a,b)}, +cm(a,b){var s,r +if(a instanceof A.cV){s=A.aj(this.a,a.a,b) +r=A.M(this.b,a.b,b) +r.toString +return new A.cV(A.O(r,0,1),s)}return this.kA(a,b)}, +ez(a,b){var s=$.ae().c9() +s.qg(this.BH(a)) +return s}, +jN(a){var s=a==null?this.a:a +return new A.cV(this.b,s)}, +hu(a,b,c){var s,r=this.a +switch(r.c.a){case 0:break +case 1:s=r.b*r.d +if(this.b===0)a.e6(b.gav(),(b.geA()+s)/2,r.ik()) +else a.hY(this.BH(b).dc(s/2),r.ik()) +break}}, +BH(a){var s,r,q,p,o,n,m,l=this.b +if(l===0||a.c-a.a===a.d-a.b)return A.k0(a.gav(),a.geA()/2) +s=a.c +r=a.a +q=s-r +p=a.d +o=a.b +n=p-o +l=1-l +if(q").b(b)&&A.a6G(b.b,s.b)}, +gu(a){return A.L(A.w(this),this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a){return"ColorSwatch(primary value: "+this.Me(0)+")"}} +A.fe.prototype={ +bW(){return"Decoration"}, +gc2(a){return B.aS}, +gyc(){return!1}, +cl(a,b){return null}, +cm(a,b){return null}, +Id(a,b,c){return!0}, +ti(a,b){throw A.d(A.T("This Decoration subclass does not expect to be used for clipping."))}} +A.zc.prototype={ +m(){}} +A.Hn.prototype={} +A.no.prototype={ +D(){return"ImageRepeat."+this.b}} +A.Au.prototype={ +k(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.J(b)!==A.w(r))return!1 +if(b instanceof A.Au)if(b.a.k(0,r.a))if(b.d===r.d)if(B.T.k(0,B.T))s=!0 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +return s}, +gu(a){return A.L(this.a,null,this.d,B.T,null,B.bl,!1,1,1,B.ds,!1,!1,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a){var s=A.a([this.a.j(0)],t.s),r=!(this.d===B.ig&&!0) +if(r)s.push(this.d.j(0)) +s.push(B.T.j(0)) +s.push("scale 1") +s.push("opacity 1") +s.push(B.ds.j(0)) +return"DecorationImage("+B.b.bf(s,", ")+")"}} +A.Av.prototype={ +rO(a,b,c,d){var s,r,q,p,o=this,n=null,m=o.a,l=m.a.Y(d),k=l.a +if(k==null)k=l +s=o.c +r=s==null +if(r)q=n +else{q=s.a +if(q==null)q=s}if(k!==q){p=new A.ep(o.gCT(),n,m.b) +if(!r)s.H(0,p) +o.c=l +l.Z(0,p)}if(o.d==null)return +k=c!=null +if(k){a.bm(0) +a.eW(0,c)}s=o.d +r=s.a +A.afN(B.T,a,n,n,s.c,B.ds,m.d,!1,r,!1,!1,1,b,B.bl,s.b) +if(k)a.b6(0)}, +SZ(a,b){var s,r,q=this +if(J.e(q.d,a))return +s=q.d +if(s!=null)if(a.a.yb(s.a)){r=s.b +s=r===r&&a.c==s.c}else s=!1 +else s=!1 +if(s){a.a.m() +return}s=q.d +if(s!=null)s.a.m() +q.d=a +if(!b)q.b.$0()}, +j(a){return"DecorationImagePainter(stream: "+A.h(this.c)+", image: "+A.h(this.d)+") for "+this.a.j(0)}} +A.bU.prototype={ +gcj(){var s=this +return s.gd1(s)+s.gd2(s)+s.ge_(s)+s.gdY()}, +Y6(a){var s=this +switch(a.a){case 0:return s.gcj() +case 1:return s.gb3(s)+s.gb8(s)}}, +B(a,b){var s=this +return new A.ko(s.gd1(s)+b.gd1(b),s.gd2(s)+b.gd2(b),s.ge_(s)+b.ge_(b),s.gdY()+b.gdY(),s.gb3(s)+b.gb3(b),s.gb8(s)+b.gb8(b))}, +iO(a,b,c){var s=this +return new A.ko(A.O(s.gd1(s),b.a,c.a),A.O(s.gd2(s),b.c,c.b),A.O(s.ge_(s),0,c.c),A.O(s.gdY(),0,c.d),A.O(s.gb3(s),b.b,c.e),A.O(s.gb8(s),b.d,c.f))}, +j(a){var s=this +if(s.ge_(s)===0&&s.gdY()===0){if(s.gd1(s)===0&&s.gd2(s)===0&&s.gb3(s)===0&&s.gb8(s)===0)return"EdgeInsets.zero" +if(s.gd1(s)===s.gd2(s)&&s.gd2(s)===s.gb3(s)&&s.gb3(s)===s.gb8(s))return"EdgeInsets.all("+B.c.M(s.gd1(s),1)+")" +return"EdgeInsets("+B.c.M(s.gd1(s),1)+", "+B.c.M(s.gb3(s),1)+", "+B.c.M(s.gd2(s),1)+", "+B.c.M(s.gb8(s),1)+")"}if(s.gd1(s)===0&&s.gd2(s)===0)return"EdgeInsetsDirectional("+B.c.M(s.ge_(s),1)+", "+B.c.M(s.gb3(s),1)+", "+B.c.M(s.gdY(),1)+", "+B.c.M(s.gb8(s),1)+")" +return"EdgeInsets("+B.c.M(s.gd1(s),1)+", "+B.c.M(s.gb3(s),1)+", "+B.c.M(s.gd2(s),1)+", "+B.c.M(s.gb8(s),1)+") + EdgeInsetsDirectional("+B.c.M(s.ge_(s),1)+", 0.0, "+B.c.M(s.gdY(),1)+", 0.0)"}, +k(a,b){var s=this +if(b==null)return!1 +return b instanceof A.bU&&b.gd1(b)===s.gd1(s)&&b.gd2(b)===s.gd2(s)&&b.ge_(b)===s.ge_(s)&&b.gdY()===s.gdY()&&b.gb3(b)===s.gb3(s)&&b.gb8(b)===s.gb8(s)}, +gu(a){var s=this +return A.L(s.gd1(s),s.gd2(s),s.ge_(s),s.gdY(),s.gb3(s),s.gb8(s),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.bl.prototype={ +gd1(a){return this.a}, +gb3(a){return this.b}, +gd2(a){return this.c}, +gb8(a){return this.d}, +ge_(a){return 0}, +gdY(){return 0}, +B(a,b){if(b instanceof A.bl)return this.T(0,b) +return this.Ax(0,b)}, +iO(a,b,c){var s=this +return new A.bl(A.O(s.a,b.a,c.a),A.O(s.b,b.b,c.e),A.O(s.c,b.c,c.b),A.O(s.d,b.d,c.f))}, +a4(a,b){var s=this +return new A.bl(s.a-b.a,s.b-b.b,s.c-b.c,s.d-b.d)}, +T(a,b){var s=this +return new A.bl(s.a+b.a,s.b+b.b,s.c+b.c,s.d+b.d)}, +R(a,b){var s=this +return new A.bl(s.a*b,s.b*b,s.c*b,s.d*b)}, +Y(a){return this}, +jO(a,b,c,d){var s=this,r=b==null?s.a:b,q=d==null?s.b:d,p=c==null?s.c:c +return new A.bl(r,q,p,a==null?s.d:a)}, +wX(a){return this.jO(a,null,null,null)}, +Zl(a,b){return this.jO(a,null,null,b)}, +Zm(a,b){return this.jO(null,a,b,null)}} +A.e2.prototype={ +ge_(a){return this.a}, +gb3(a){return this.b}, +gdY(){return this.c}, +gb8(a){return this.d}, +gd1(a){return 0}, +gd2(a){return 0}, +B(a,b){if(b instanceof A.e2)return this.T(0,b) +return this.Ax(0,b)}, +a4(a,b){var s=this +return new A.e2(s.a-b.a,s.b-b.b,s.c-b.c,s.d-b.d)}, +T(a,b){var s=this +return new A.e2(s.a+b.a,s.b+b.b,s.c+b.c,s.d+b.d)}, +R(a,b){var s=this +return new A.e2(s.a*b,s.b*b,s.c*b,s.d*b)}, +Y(a){var s=this +switch(a.a){case 0:return new A.bl(s.c,s.b,s.a,s.d) +case 1:return new A.bl(s.a,s.b,s.c,s.d)}}} +A.ko.prototype={ +R(a,b){var s=this +return new A.ko(s.a*b,s.b*b,s.c*b,s.d*b,s.e*b,s.f*b)}, +Y(a){var s=this +switch(a.a){case 0:return new A.bl(s.d+s.a,s.e,s.c+s.b,s.f) +case 1:return new A.bl(s.c+s.a,s.e,s.d+s.b,s.f)}}, +gd1(a){return this.a}, +gd2(a){return this.b}, +ge_(a){return this.c}, +gdY(){return this.d}, +gb3(a){return this.e}, +gb8(a){return this.f}} +A.T1.prototype={ +L(a){var s,r,q,p +for(s=this.b,r=s.gaJ(s),r=new A.dy(J.am(r.a),r.b),q=A.m(r).z[1];r.t();){p=r.a;(p==null?q.a(p):p).m()}s.L(0) +for(s=this.a,r=s.gaJ(s),r=new A.dy(J.am(r.a),r.b),q=A.m(r).z[1];r.t();){p=r.a +if(p==null)p=q.a(p) +p.a.H(0,p.b)}s.L(0) +this.f=0}, +xD(a){var s,r,q,p=this,o=p.c.v(0,a) +if(o!=null){s=o.a +r=o.d +r===$&&A.c() +if(s.w)A.a2(A.a5(u.V)) +B.b.v(s.x,r) +o.B0()}q=p.a.v(0,a) +if(q!=null){q.a.H(0,q.b) +return!0}o=p.b.v(0,a) +if(o!=null){s=p.f +r=o.b +r.toString +p.f=s-r +o.m() +return!0}return!1}, +F4(a,b,c){var s,r=this,q=b.b +if(q!=null&&q<=104857600&&!0){s=r.f +q.toString +r.f=s+q +r.b.l(0,a,b) +r.Qg(c)}else b.m()}, +wl(a,b,c){var s=this.c.bq(0,a,new A.T3(this,b,a)) +if(s.b==null)s.b=c}, +JA(a,b,c,d){var s,r,q,p,o,n,m,l=this,k=null,j={},i=l.a,h=i.i(0,b),g=h==null?k:h.a +j.a=g +if(g!=null)return g +h=l.b +q=h.v(0,b) +if(q!=null){j=q.a +l.wl(b,j,q.b) +h.l(0,b,q) +return j}p=l.c.i(0,b) +if(p!=null){j=p.a +i=p.b +if(j.w)A.a2(A.a5(u.V)) +h=new A.nq(j) +h.pa(j) +l.F4(b,new A.vE(j,i,h),k) +return j}try{g=j.a=c.$0() +l.wl(b,g,k) +h=g}catch(o){s=A.ah(o) +r=A.aJ(o) +d.$2(s,r) +return k}j.b=!1 +n=A.b_("pendingImage") +m=new A.ep(new A.T4(j,l,b,!0,k,n),k,k) +n.b=new A.Jt(h,m) +i.l(0,b,n.ap()) +j.a.Z(0,m) +return j.a}, +Qg(a){var s,r,q,p,o,n=this,m=n.b,l=A.m(m).h("aT<1>") +while(!0){if(!(n.f>104857600||m.a>1000))break +s=new A.aT(m,l) +r=s.gX(s) +if(!r.t())A.a2(A.bJ()) +q=r.gC(r) +p=m.i(0,q) +s=n.f +o=p.b +o.toString +n.f=s-o +p.m() +m.v(0,q)}}} +A.T3.prototype={ +$0(){return A.aoc(this.b,new A.T2(this.a,this.c))}, +$S:218} +A.T2.prototype={ +$0(){this.a.c.v(0,this.b)}, +$S:0} +A.T4.prototype={ +$2(a,b){var s,r,q,p,o,n=this +if(a!=null){s=a.a +r=s.gbo(s)*s.gbr(s)*4 +s.m()}else r=null +s=n.a +q=s.a +if(q.w)A.a2(A.a5(u.V)) +p=new A.nq(q) +p.pa(q) +o=new A.vE(q,r,p) +p=n.b +q=n.c +p.wl(q,s.a,r) +if(n.d)p.F4(q,o,n.e) +else o.m() +p.a.v(0,q) +if(!s.b){q=n.f.ap() +q.a.H(0,q.b)}s.b=!0}, +$S:219} +A.GJ.prototype={ +m(){$.bK.cx$.push(new A.a15(this))}} +A.a15.prototype={ +$1(a){var s=this.a,r=s.c +if(r!=null)r.m() +s.c=null}, +$S:2} +A.vE.prototype={} +A.pf.prototype={ +Pv(a,b,c){var s=new A.a2N(this,b) +this.d=s +if(a.w)A.a2(A.a5(u.V)) +a.x.push(s)}, +j(a){return"#"+A.bs(this)}} +A.a2N.prototype={ +$0(){var s,r,q +this.b.$0() +s=this.a +r=s.a +q=s.d +q===$&&A.c() +if(r.w)A.a2(A.a5(u.V)) +B.b.v(r.x,q) +s.B0()}, +$S:0} +A.Jt.prototype={} +A.rx.prototype={ +k(a,b){var s=this +if(b==null)return!1 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.rx&&b.a==s.a&&b.b==s.b&&J.e(b.c,s.c)&&b.d==s.d&&J.e(b.e,s.e)&&b.f==s.f}, +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.e,s.f,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a){var s,r=this,q=""+"ImageConfiguration(",p=r.a +if(p!=null){q+="bundle: "+p.j(0) +s=!0}else s=!1 +p=r.b +if(p!=null){if(s)q+=", " +p=q+("devicePixelRatio: "+B.c.M(p,1)) +q=p +s=!0}p=r.c +if(p!=null){if(s)q+=", " +p=q+("locale: "+p.j(0)) +q=p +s=!0}p=r.d +if(p!=null){if(s)q+=", " +p=q+("textDirection: "+p.j(0)) +q=p +s=!0}p=r.e +if(p!=null){if(s)q+=", " +p=q+("size: "+p.j(0)) +q=p +s=!0}p=r.f +if(p!=null){if(s)q+=", " +p=q+("platform: "+p.b) +q=p}q+=")" +return q.charCodeAt(0)==0?q:q}} +A.fn.prototype={ +Y(a){var s=new A.Tb() +this.QZ(a,new A.T9(this,a,s),new A.Ta(this,a,s)) +return s}, +QZ(a,b,c){var s,r,q,p,o,n={} +n.a=null +n.b=!1 +s=new A.T6(n,c) +r=null +try{r=this.yy(a)}catch(o){q=A.ah(o) +p=A.aJ(o) +s.$2(q,p) +return}r.bw(new A.T5(n,this,b,s),t.H).jK(s)}, +oA(a,b,c,d){var s,r +if(b.a!=null){s=$.fv.fv$ +s===$&&A.c() +s.JA(0,c,new A.T7(b),d) +return}s=$.fv.fv$ +s===$&&A.c() +r=s.JA(0,c,new A.T8(this,c),d) +if(r!=null)b.A9(r)}, +rr(a,b,c){throw A.d(A.T("Implement loadBuffer for faster image loading"))}, +rs(a,b){return new A.oP(A.a([],t.fE),A.a([],t.u))}, +rt(a,b){return new A.oP(A.a([],t.fE),A.a([],t.u))}, +j(a){return"ImageConfiguration()"}} +A.T9.prototype={ +$2(a,b){this.a.oA(this.b,this.c,a,b)}, +$S(){return A.m(this.a).h("~(fn.T,~(E,cP?))")}} +A.Ta.prototype={ +$3(a,b,c){return this.KD(a,b,c)}, +KD(a,b,c){var s=0,r=A.Y(t.H),q=this,p +var $async$$3=A.Z(function(d,e){if(d===1)return A.V(e,r) +while(true)switch(s){case 0:s=2 +return A.a1(null,$async$$3) +case 2:p=q.c +if(p.a==null)p.A9(new A.a1E(A.a([],t.fE),A.a([],t.u))) +p=p.a +p.toString +p.t4(A.bg("while resolving an image"),b,null,!0,c) +return A.W(null,r)}}) +return A.X($async$$3,r)}, +$S(){return A.m(this.a).h("ad<~>(fn.T?,E,cP?)")}} +A.T6.prototype={ +KC(a,b){var s=0,r=A.Y(t.H),q,p=this,o +var $async$$2=A.Z(function(c,d){if(c===1)return A.V(d,r) +while(true)switch(s){case 0:o=p.a +if(o.b){s=1 +break}o.b=!0 +p.b.$3(o.a,a,b) +case 1:return A.W(q,r)}}) +return A.X($async$$2,r)}, +$2(a,b){return this.KC(a,b)}, +$S:220} +A.T5.prototype={ +$1(a){var s,r,q,p=this +p.a.a=a +try{p.c.$2(a,p.d)}catch(q){s=A.ah(q) +r=A.aJ(q) +p.d.$2(s,r)}}, +$S(){return A.m(this.b).h("aM(fn.T)")}} +A.T7.prototype={ +$0(){var s=this.a.a +s.toString +return s}, +$S:84} +A.T8.prototype={ +$0(){var s=this.a,r=this.b,q=s.rt(r,$.fv.ga0N()) +if(q instanceof A.oP){q=s.rs(r,$.fv.ga0L()) +if(q instanceof A.oP)q=s.rr(0,r,$.fv.ga0I())}return q}, +$S:84} +A.oP.prototype={} +A.h2.prototype={ +k(a,b){var s=this +if(b==null)return!1 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.h2&&b.a===s.a&&b.b===s.b&&b.c===s.c}, +gu(a){return A.L(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a){return"AssetBundleImageKey(bundle: "+this.a.j(0)+', name: "'+this.b+'", scale: '+A.h(this.c)+")"}} +A.yU.prototype={ +rt(a,b){return A.a8c(this.Uk(a,b),a.b,null,a.c)}, +rs(a,b){return A.a8c(this.Ul(a,b),a.b,null,a.c)}, +rr(a,b,c){return A.a8c(this.Um(b,c),b.b,null,b.c)}, +iF(a,b,c,d){return this.Un(a,b,c,d)}, +Um(a,b){return this.iF(a,null,null,b)}, +Ul(a,b){return this.iF(a,null,b,null)}, +Uk(a,b){return this.iF(a,b,null,null)}, +Un(a,b,c,d){var s=0,r=A.Y(t.gP),q,p=2,o,n,m,l,k,j,i,h,g +var $async$iF=A.Z(function(e,f){if(e===1){o=f +s=p}while(true)switch(s){case 0:s=b!=null?3:4 +break +case 3:n=null +p=6 +s=9 +return A.a1(a.a.oc(a.b),$async$iF) +case 9:n=f +p=2 +s=8 +break +case 6:p=5 +i=o +if(A.ah(i) instanceof A.ig){j=$.fv.fv$ +j===$&&A.c() +j.xD(a) +throw i}else throw i +s=8 +break +case 5:s=2 +break +case 8:q=b.$1(n) +s=1 +break +case 4:s=c!=null?10:11 +break +case 10:m=null +p=13 +s=16 +return A.a1(a.a.oc(a.b),$async$iF) +case 16:m=f +p=2 +s=15 +break +case 13:p=12 +h=o +if(A.ah(h) instanceof A.ig){j=$.fv.fv$ +j===$&&A.c() +j.xD(a) +throw h}else throw h +s=15 +break +case 12:s=2 +break +case 15:q=c.$1(m) +s=1 +break +case 11:l=null +p=18 +s=21 +return A.a1(a.a.fF(0,a.b),$async$iF) +case 21:l=f +p=2 +s=20 +break +case 18:p=17 +g=o +if(A.ah(g) instanceof A.ig){j=$.fv.fv$ +j===$&&A.c() +j.xD(a) +throw g}else throw g +s=20 +break +case 17:s=2 +break +case 20:d.toString +q=d.$1(A.cB(l.buffer,0,null)) +s=1 +break +case 1:return A.W(q,r) +case 2:return A.V(o,r)}}) +return A.X($async$iF,r)}} +A.a1E.prototype={} +A.mM.prototype={ +glD(){return this.a}, +yy(a){var s,r={},q=a.a +if(q==null)q=$.NO() +r.a=r.b=null +s=t.P +A.akL(q.a1g("AssetManifest.bin",A.aqq(),t.g3).bw(new A.Oc(r,this,a,q),s),new A.Od(r),s,t.K) +s=r.a +if(s!=null)return s +s=new A.ai($.ab,t.hv) +r.b=new A.bp(s,t.q8) +return s}, +Qr(a,b,c){var s,r,q,p,o,n +if(c==null)return new A.eL(null,a,!0) +s=b.b +if(s==null)return B.b.HI(c,new A.Ob()) +r=A.a8z(t.i,t.hw) +for(q=c.length,p=0;p(r+q)/2){s=a.i(0,q) +s.toString +return s}else{s=a.i(0,r) +s.toString +return s}}, +k(a,b){if(b==null)return!1 +if(J.J(b)!==A.w(this))return!1 +return b instanceof A.mM&&b.glD()===this.glD()&&!0}, +gu(a){return A.L(this.glD(),this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a){return"AssetImage(bundle: "+A.h(this.b)+', name: "'+this.glD()+'")'}} +A.Oc.prototype={ +$1(a){var s,r,q=this,p=q.b,o=a.KH(p.glD()),n=p.Qr(p.glD(),q.c,o) +p=n.a +if(p==null)p=1 +s=new A.h2(q.d,n.b,p) +p=q.a +r=p.b +if(r!=null)r.cH(0,s) +else p.a=new A.c1(s,t.rT)}, +$S:222} +A.Od.prototype={ +$2(a,b){this.a.b.np(a,b)}, +$S:47} +A.Ob.prototype={ +$1(a){return a.c}, +$S:223} +A.fm.prototype={ +cw(a){return new A.fm(this.a.cw(0),this.b,this.c)}, +j(a){var s=this.c +s=s!=null?s+" ":"" +return s+this.a.j(0)+" @ "+A.fV(this.b)+"x"}, +gu(a){return A.L(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s=this +if(b==null)return!1 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.fm&&b.a===s.a&&b.b===s.b&&b.c==s.c}} +A.ep.prototype={ +gu(a){return A.L(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s=this +if(b==null)return!1 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.ep&&J.e(b.a,s.a)&&J.e(b.b,s.b)&&J.e(b.c,s.c)}, +a1F(a,b){return this.a.$2(a,b)}} +A.Tb.prototype={ +A9(a){var s,r=this +r.a=a +s=r.b +if(s!=null){r.b=null +a.f=!0 +B.b.P(s,a.gqf(a)) +r.a.f=!1}}, +Z(a,b){var s=this.a +if(s!=null)return s.Z(0,b) +s=this.b;(s==null?this.b=A.a([],t.fE):s).push(b)}, +H(a,b){var s,r=this.a +if(r!=null)return r.H(0,b) +for(s=0;r=this.b,s")),n),!0,n.h("j.E")) +s=!1 +for(o=m.length,l=0;l=s.a}else r=!0 +if(r){s=p.at +p.Cl(new A.fm(s.gf5(s).cw(0),p.Q,p.d)) +p.ax=a +s=p.at +p.ay=s.gHp(s) +s=p.at +s.gf5(s).m() +p.at=null +q=B.f.iz(p.ch,p.z.gnU()) +if(p.z.gt3()===-1||q<=p.z.gt3())p.kH() +return}s.toString +r=p.ax +r===$&&A.c() +p.CW=A.c8(new A.aQ(B.f.bd(s.a-(a.a-r.a))),new A.UP(p))}, +kH(){var s=0,r=A.Y(t.H),q,p=2,o,n=this,m,l,k,j,i +var $async$kH=A.Z(function(a,b){if(a===1){o=b +s=p}while(true)switch(s){case 0:j=n.at +if(j!=null)j.gf5(j).m() +n.at=null +p=4 +s=7 +return A.a1(n.z.fO(),$async$kH) +case 7:n.at=b +p=2 +s=6 +break +case 4:p=3 +i=o +m=A.ah(i) +l=A.aJ(i) +n.t4(A.bg("resolving an image frame"),m,n.as,!0,l) +s=1 +break +s=6 +break +case 3:s=2 +break +case 6:if(n.z.gnU()===1){if(n.a.length===0){s=1 +break}j=n.at +n.Cl(new A.fm(j.gf5(j).cw(0),n.Q,n.d)) +j=n.at +j.gf5(j).m() +n.at=null +s=1 +break}n.Ef() +case 1:return A.W(q,r) +case 2:return A.V(o,r)}}) +return A.X($async$kH,r)}, +Ef(){if(this.cx)return +this.cx=!0 +$.bK.tu(this.gSq())}, +Cl(a){this.Ll(a);++this.ch}, +Z(a,b){var s,r=this +if(r.a.length===0){s=r.z +if(s!=null)s=r.b==null||s.gnU()>1 +else s=!1}else s=!1 +if(s)r.kH() +r.MB(0,b)}, +H(a,b){var s,r=this +r.MC(0,b) +if(r.a.length===0){s=r.CW +if(s!=null)s.aT(0) +r.CW=null}}, +pG(){this.MA() +if(this.w)this.y=null}} +A.UQ.prototype={ +$2(a,b){this.a.t4(A.bg("resolving an image codec"),a,this.b,!0,b)}, +$S:47} +A.UP.prototype={ +$0(){this.a.Ef()}, +$S:0} +A.Ir.prototype={} +A.Iq.prototype={} +A.yM.prototype={} +A.nv.prototype={ +k(a,b){var s +if(b==null)return!1 +if(b instanceof A.nv)if(b.a===this.a)if(b.b==this.b)s=A.dh(b.f,this.f) +else s=!1 +else s=!1 +else s=!1 +return s}, +gu(a){return A.L(this.a,this.b,this.c,!1,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a){return"InlineSpanSemanticsInformation{text: "+this.a+", semanticsLabel: "+A.h(this.b)+", recognizer: "+A.h(this.c)+"}"}} +A.fo.prototype={ +KZ(a){var s={} +s.a=null +this.aR(new A.Tj(s,a,new A.yM())) +return s.a}, +Ka(a){var s,r=new A.ch("") +this.Gx(r,!0,a) +s=r.a +return s.charCodeAt(0)==0?s:s}, +ah(a,b){var s={} +if(b<0)return null +s.a=null +this.aR(new A.Ti(s,b,new A.yM())) +return s.a}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.J(b)!==A.w(this))return!1 +return b instanceof A.fo&&J.e(b.a,this.a)}, +gu(a){return J.p(this.a)}} +A.Tj.prototype={ +$1(a){var s=a.L_(this.b,this.c) +this.a.a=s +return s==null}, +$S:41} +A.Ti.prototype={ +$1(a){var s=a.YP(this.b,this.c) +this.a.a=s +return s==null}, +$S:41} +A.Vb.prototype={} +A.P2.prototype={ +zV(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c +if(b==null||!a.rM(b)){s=$.ae().c9() +s.kY(a) +return s}s=b.c +r=b.a +q=(s-r)/2 +p=-1*q-1 +s=a.b +o=s-b.gav().b +n=o*o +m=p*p+n +l=q*q +k=Math.sqrt(n*q*q*(m-l)) +n=p*q*q +j=(n-k)/m +i=(n+k)/m +h=Math.sqrt(l-j*j) +g=Math.sqrt(l-i*i) +f=A.aU(6,null,!1,t.CT) +l=p-15 +f[0]=new A.q(l,o) +f[1]=new A.q(p,o) +e=o<0?-1:1 +n=e*h>e*g?new A.q(j,h):new A.q(i,g) +f[2]=n +f[3]=new A.q(-1*n.a,n.b) +f[4]=new A.q(-1*p,o) +f[5]=new A.q(-1*l,o) +for(r+=q,n=b.b,n+=(b.d-n)/2,d=0;d<6;++d){m=f[d] +f[d]=new A.q(m.a+r,m.b+n)}r=$.ae().c9() +n=a.a +r.fH(0,n,s) +m=f[0] +r.bZ(0,m.a,m.b) +m=f[1] +l=m.a +m=m.b +c=f[2] +r.z2(l,m,c.a,c.b) +c=f[3] +c.toString +r.G8(c,!1,new A.aF(q,q)) +c=f[4] +m=c.a +c=c.b +l=f[5] +r.z2(m,c,l.a,l.b) +l=a.c +r.bZ(0,l,s) +s=a.d +r.bZ(0,l,s) +r.bZ(0,n,s) +r.dn(0) +return r}} +A.Ok.prototype={ +zV(a,b){var s=B.tZ.KQ(a) +return s}} +A.cw.prototype={ +aO(a,b){var s=this.a.aO(0,b) +return new A.cw(this.b.R(0,b),s)}, +cl(a,b){var s,r,q=this +if(a instanceof A.cw){s=A.aj(a.a,q.a,b) +r=A.h3(a.b,q.b,b) +r.toString +return new A.cw(r,s)}if(a instanceof A.cV){s=A.aj(a.a,q.a,b) +return new A.dF(q.b,1-b,a.b,s)}return q.kz(a,b)}, +cm(a,b){var s,r,q=this +if(a instanceof A.cw){s=A.aj(q.a,a.a,b) +r=A.h3(q.b,a.b,b) +r.toString +return new A.cw(r,s)}if(a instanceof A.cV){s=A.aj(q.a,a.a,b) +return new A.dF(q.b,b,a.b,s)}return q.kA(a,b)}, +jN(a){var s=a==null?this.a:a +return new A.cw(this.b,s)}, +ez(a,b){var s=$.ae().c9() +s.en(this.b.Y(b).dh(a)) +return s}, +KQ(a){return this.ez(a,null)}, +hu(a,b,c){var s,r,q,p,o=this.a +switch(o.c.a){case 0:break +case 1:s=this.b +if(o.b===0)a.cg(s.Y(c).dh(b),o.ik()) +else{r=$.ae().b9() +r.sac(0,o.a) +q=s.Y(c).dh(b) +p=q.dc(-o.gd0()) +a.hb(q.dc(o.gkw()),p,r)}break}}, +k(a,b){if(b==null)return!1 +if(J.J(b)!==A.w(this))return!1 +return b instanceof A.cw&&b.a.k(0,this.a)&&b.b.k(0,this.b)}, +gu(a){return A.L(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a){return"RoundedRectangleBorder("+this.a.j(0)+", "+this.b.j(0)+")"}} +A.dF.prototype={ +aO(a,b){var s=this.a.aO(0,b) +return new A.dF(this.b.R(0,b),b,this.d,s)}, +cl(a,b){var s,r,q,p=this +if(a instanceof A.cw){s=A.aj(a.a,p.a,b) +r=A.h3(a.b,p.b,b) +r.toString +return new A.dF(r,p.c*b,p.d,s)}if(a instanceof A.cV){s=A.aj(a.a,p.a,b) +r=p.c +return new A.dF(p.b,r+(1-r)*(1-b),a.b,s)}if(a instanceof A.dF){s=A.aj(a.a,p.a,b) +r=A.h3(a.b,p.b,b) +r.toString +q=A.M(a.c,p.c,b) +q.toString +return new A.dF(r,q,p.d,s)}return p.kz(a,b)}, +cm(a,b){var s,r,q,p=this +if(a instanceof A.cw){s=A.aj(p.a,a.a,b) +r=A.h3(p.b,a.b,b) +r.toString +return new A.dF(r,p.c*(1-b),p.d,s)}if(a instanceof A.cV){s=A.aj(p.a,a.a,b) +r=p.c +return new A.dF(p.b,r+(1-r)*b,a.b,s)}if(a instanceof A.dF){s=A.aj(p.a,a.a,b) +r=A.h3(p.b,a.b,b) +r.toString +q=A.M(p.c,a.c,b) +q.toString +return new A.dF(r,q,p.d,s)}return p.kA(a,b)}, +Bi(a){var s,r,q,p,o,n,m,l,k=this.c +if(k===0||a.c-a.a===a.d-a.b)return a +s=a.c +r=a.a +q=s-r +p=a.d +o=a.b +n=p-o +m=1-this.d +if(q>>0)+s+-56613888 +case 56320:s=s.ah(0,a-1) +s.toString +return(s<<10>>>0)+r+-56613888 +default:return r}}, +WK(a,b){var s,r=this.QA(b?a-1:a),q=b?a:a-1,p=this.a.ah(0,q) +if(!(r==null||p==null||A.adD(r)||A.adD(p))){q=A.o4("[\\p{Space_Separator}\\p{Punctuation}]",!0,!0) +s=A.bv(r) +q=!q.b.test(s)}else q=!0 +return q}} +A.a4K.prototype={ +fN(a){var s +if(a<0)return null +s=this.b.fN(a) +return s==null||this.a.$2(s,!1)?s:this.fN(s-1)}, +fQ(a){var s=this.b.fQ(Math.max(a,0)) +return s==null||this.a.$2(s,!0)?s:this.fQ(s)}} +A.pe.prototype={} +A.vZ.prototype={} +A.Fx.prototype={ +a7(){var s=this,r=s.a +if(r!=null)r.m() +s.dx=s.dy=s.a=null}, +soB(a,b){var s,r,q=this +if(J.e(q.d,b))return +s=q.d +s=s==null?null:s.a +if(!J.e(s,b.a)){s=q.CW +if(s!=null)s.m() +q.CW=null}s=q.d +s=s==null?null:s.aV(0,b) +r=s==null?B.bX:s +q.d=b +q.e=null +s=r.a +if(s>=3)q.a7() +else if(s>=2)q.b=!0}, +grT(){var s=this.e +if(s==null){s=this.d +s=s==null?null:s.Ka(!1) +this.e=s}return s==null?"":s}, +szm(a,b){if(this.f===b)return +this.f=b +this.a7()}, +sbR(a){var s,r=this +if(r.r===a)return +r.r=a +r.a7() +s=r.CW +if(s!=null)s.m() +r.CW=null}, +szn(a){var s,r=this +if(r.w===a)return +r.w=a +r.a7() +s=r.CW +if(s!=null)s.m() +r.CW=null}, +sZV(a){if(this.x==a)return +this.x=a +this.a7()}, +syl(a,b){if(J.e(this.y,b))return +this.y=b +this.a7()}, +syq(a){if(this.z==a)return +this.z=a +this.a7()}, +szp(a){if(this.as===a)return +this.as=a +this.a7()}, +tE(a){if(a==null||a.length===0||A.dh(a,this.ch))return +this.ch=a +this.a7()}, +C4(a){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=null,e=g.d.a +if(e==null)e=f +else{s=g.f +r=g.r +if(r==null)r=a +q=g.w +p=g.z +o=g.at +n=g.x +m=g.y +l=e.at +o=l==null?f:new A.Ft(l) +k=e.w +j=e.x +i=e.d +h=e.r +if(h==null)h=14 +e=e.as +e=A.a8g(n,i,h*q,j,k,e,m,p,f,s,r,o)}if(e==null){e=g.f +s=g.r +if(s==null)s=a +r=g.w +q=g.z +p=g.at +p=A.a8g(g.x,f,14*r,f,f,f,g.y,q,f,e,s,p) +e=p}return e}, +R2(){return this.C4(null)}, +grV(){var s,r,q=this,p=q.CW +if(p==null){p=q.C4(B.S) +s=$.ae().qG(p) +p=q.d +if(p==null)r=null +else{p=p.a +r=p==null?null:p.zZ(q.w)}if(r!=null)s.rY(r) +s.n8(" ") +p=s.aS() +p.j9(B.Ek) +q.CW=p}return p.gbo(p)}, +gbr(a){var s=this.as,r=this.a +s=s===B.LI?r.gym():r.gbr(r) +return Math.ceil(s)}, +eX(a){var s +switch(a.a){case 0:s=this.a +return s.gn9(s) +case 1:s=this.a +return s.gIg(s)}}, +C3(){var s,r,q,p=this,o=p.d +if(o==null)throw A.d(A.a5("TextPainter.text must be set to a non-null value before using the TextPainter.")) +s=p.R2() +r=$.ae().qG(s) +s=p.w +o.Gg(r,p.ch,s) +p.ay=r.gJl() +q=r.aS() +p.a=q +p.b=!1 +return q}, +Dm(a,b){var s,r,q=this +q.a.j9(new A.jT(b)) +if(a!==b){switch(q.as.a){case 1:s=Math.ceil(q.a.gym()) +break +case 0:s=Math.ceil(q.a.gJ0()) +break +default:s=null}s=A.O(s,a,b) +r=q.a +if(s!==Math.ceil(r.gbr(r)))q.a.j9(new A.jT(s))}}, +yj(a,b){var s=this,r=s.a==null +if(!r&&b===s.cx&&a===s.cy)return +if(s.b||r)s.C3() +s.cx=b +s.cy=a +s.dx=s.dy=null +s.Dm(b,a) +s.ax=s.a.oK()}, +a18(){return this.yj(1/0,0)}, +aC(a,b){var s,r=this,q=r.cx,p=r.cy +if(r.a==null||q==null||p==null)throw A.d(A.a5("TextPainter.paint called when text geometry was not yet calculated.\nPlease call layout() before paint() to position the text before painting it.")) +if(r.b){r.C3() +r.Dm(q,p)}s=r.a +s.toString +a.f_(s,b)}, +CB(a){var s,r,q,p,o,n,m,l,k,j,i=this,h=i.grT().length +if(h===0||a>h)return null +s=B.d.ah(i.grT(),Math.max(0,a-1)) +r=s&64512 +q=r===55296||r===56320||i.d.ah(0,a)===8205||s===8207||s===8206 +p=q?2:1 +o=A.a([],t.px) +for(r=-h,n=!q,m=s===10;o.length===0;){l=a-p +k=i.a +k.toString +o=k.tg(Math.max(0,l),a,B.ii) +if(o.length===0){if(n&&m)break +if(l>>0,n=!q;o.length===0;){m=a+p +o=this.a.tg(a,m,B.ii) +if(o.length===0){if(n)break +if(m>=r)break +p*=2 +continue}l=B.b.gG(o).e===B.q?B.b.gG(o):B.b.gO(o) +r=l.e +n=r===B.q?l.a:l.c +k=l.b +return new A.pe(new A.q(n,k),r,l.d-k)}return null}, +oN(a,b){var s,r,q,p,o,n=this,m=a.a<0?B.vb:n.BU(a) +if(m instanceof A.vZ){s=n.f +r=n.r +r.toString +q=A.anv(s,r) +p=q===0?0:q*n.gbr(n) +return new A.q(p,m.a)}t.sq.a(m) +switch(m.b.a){case 0:s=m.a +o=new A.q(s.a-(b.c-b.a),s.b) +break +case 1:o=m.a +break +default:o=null}return new A.q(A.O(o.a,0,n.gbr(n)),o.b)}, +KM(a,b){var s +if(a.a<0)return null +s=this.BU(a) +return s instanceof A.pe?s.c:null}, +BU(a){var s,r,q,p=this +if(a.k(0,p.dx)){s=p.db +s===$&&A.c() +return s}r=a.a +switch(a.b.a){case 0:q=p.CB(r) +if(q==null)q=p.CA(r) +break +case 1:q=p.CA(r) +if(q==null)q=p.CB(r) +break +default:q=null}p.dx=a +return p.db=q==null?B.vb:q}, +m(){var s=this,r=s.CW +if(r!=null)r.m() +s.CW=null +r=s.a +if(r!=null)r.m() +s.d=s.a=null}} +A.vb.prototype={ +gGW(a){return this.e}, +gzL(){return!0}, +i4(a,b){t.Y.b(a)}, +Gg(a,b,c){var s,r,q,p,o=this.a,n=o!=null +if(n)a.rY(o.zZ(c)) +o=this.b +if(o!=null)try{a.n8(o)}catch(q){o=A.ah(q) +if(o instanceof A.fb){s=o +r=A.aJ(q) +A.dx(new A.bu(s,r,"painting library",A.bg("while building a TextSpan"),null,!1)) +a.n8("\ufffd")}else throw q}o=this.c +if(o!=null)for(p=0;p<1;++p)o[p].Gg(a,b,c) +if(n)a.fa()}, +aR(a){var s,r +if(this.b!=null)if(!a.$1(this))return!1 +s=this.c +if(s!=null)for(r=0;r<1;++r)if(!s[r].aR(a))return!1 +return!0}, +L_(a,b){var s,r,q,p,o=this.b +if(o==null)return null +s=a.b +r=a.a +q=b.a +p=q+o.length +if(!(q===r&&s===B.G))if(!(q0?q:B.cY +if(p===B.bX)return p}else p=B.cY +s=n.c +if(s!=null)for(r=b.c,o=0;o<1;++o){q=s[o].aV(0,r[o]) +if(q.a>p.a)p=q +if(p===B.bX)return p}return p}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +if(!s.ME(0,b))return!1 +return b instanceof A.vb&&b.b==s.b&&s.e.k(0,b.e)&&A.dh(b.c,s.c)}, +gu(a){var s=this,r=null,q=A.fo.prototype.gu.call(s,s),p=s.c +p=p==null?r:A.cl(p) +return A.L(q,s.b,r,r,r,r,s.e,p,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +bW(){return"TextSpan"}, +$iag:1, +$iiq:1, +gyE(){return null}, +gyF(){return null}} +A.k.prototype={ +glv(){return this.e}, +gjE(a){return this.d}, +qB(a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=this,a0=a.ay +if(a0==null&&b6==null)s=a3==null?a.b:a3 +else s=null +r=a.ch +if(r==null&&a1==null)q=a2==null?a.c:a2 +else q=null +p=b2==null?a.r:b2 +o=b5==null?a.w:b5 +n=b9==null?a.y:b9 +m=c5==null?a.z:c5 +l=c4==null?a.Q:c4 +k=b7==null?a.as:b7 +j=b8==null?a.at:b8 +a0=b6==null?a0:b6 +r=a1==null?r:a1 +i=c3==null?a.dy:c3 +h=b4==null?a.fx:b4 +g=a5==null?a.CW:a5 +f=a6==null?a.cx:a6 +e=a7==null?a.cy:a7 +d=a8==null?a.db:a8 +c=a9==null?a.gjE(a):a9 +b=b0==null?a.e:b0 +return A.vc(r,q,s,null,g,f,e,d,c,b,a.fr,p,a.x,h,o,a0,k,a.a,j,n,a.ax,a.fy,a.f,i,l,m)}, +e2(a){return this.qB(null,null,a,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null)}, +GH(a,b){return this.qB(null,null,a,null,null,null,null,null,null,null,null,b,null,null,null,null,null,null,null,null,null,null,null,null,null)}, +Zh(a){return this.qB(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,a,null,null,null,null,null,null)}, +dD(a,b,c,d,e,a0,a1,a2,a3){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null,f=h.ay +if(f==null)s=a==null?h.b:a +else s=g +r=h.ch +if(r==null)q=h.c +else q=g +p=h.gjE(h) +o=h.r +o=o==null?g:o*a2+a1 +n=h.w +n=n==null?g:B.jU[B.f.iO(n.a,0,8)] +m=h.y +m=m==null?g:m+0 +l=h.z +l=l==null?g:l+0 +k=h.as +k=k==null?g:k+0 +j=c==null?h.cx:c +i=h.db +i=i==null?g:i+0 +return A.vc(r,q,s,g,h.CW,j,h.cy,i,p,h.e,h.fr,o,h.x,h.fx,n,f,k,h.a,h.at,m,h.ax,h.fy,h.f,h.dy,h.Q,l)}, +bV(a4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3 +if(a4==null)return this +if(!a4.a)return a4 +s=a4.b +r=a4.c +q=a4.r +p=a4.w +o=a4.x +n=a4.y +m=a4.z +l=a4.Q +k=a4.as +j=a4.at +i=a4.ax +h=a4.ay +g=a4.ch +f=a4.dy +e=a4.fr +d=a4.fx +c=a4.CW +b=a4.cx +a=a4.cy +a0=a4.db +a1=a4.gjE(a4) +a2=a4.e +a3=a4.f +return this.qB(g,r,s,null,c,b,a,a0,a1,a2,e,q,o,d,p,h,k,j,n,i,a4.fy,a3,f,l,m)}, +zZ(a){var s,r,q=this,p=q.glv(),o=q.r +o=o==null?null:o*a +s=q.ch +if(s==null){s=q.c +if(s!=null){r=$.ae().b9() +r.sac(0,s) +s=r}else s=null}return A.adi(s,q.b,q.CW,q.cx,q.cy,q.db,q.d,p,q.fr,o,q.x,q.fx,q.w,q.ay,q.as,q.at,q.y,q.ax,q.dy,q.Q,q.z)}, +aV(a,b){var s=this +if(s===b)return B.cY +if(s.a!==b.a||s.d!=b.d||s.r!=b.r||s.w!=b.w||s.y!=b.y||s.z!=b.z||s.Q!=b.Q||s.as!=b.as||s.at!=b.at||s.ay!=b.ay||s.ch!=b.ch||!A.dh(s.dy,b.dy)||!A.dh(s.fr,b.fr)||!A.dh(s.fx,b.fx)||!A.dh(s.glv(),b.glv())||!1)return B.bX +if(!J.e(s.b,b.b)||!J.e(s.c,b.c)||!J.e(s.CW,b.CW)||!J.e(s.cx,b.cx)||s.cy!=b.cy||s.db!=b.db)return B.Fa +return B.cY}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.J(b)!==A.w(r))return!1 +if(b instanceof A.k)if(b.a===r.a)if(J.e(b.b,r.b))if(J.e(b.c,r.c))if(b.r==r.r)if(b.w==r.w)if(b.y==r.y)if(b.z==r.z)if(b.Q==r.Q)if(b.as==r.as)if(b.at==r.at)if(b.ay==r.ay)if(b.ch==r.ch)if(A.dh(b.dy,r.dy))if(A.dh(b.fr,r.fr))if(A.dh(b.fx,r.fx))if(J.e(b.CW,r.CW))if(J.e(b.cx,r.cx))if(b.cy==r.cy)if(b.db==r.db)if(b.d==r.d)if(A.dh(b.glv(),r.glv()))s=!0 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +return s}, +gu(a){var s,r=this,q=null,p=r.glv(),o=p==null?q:A.cl(p),n=A.L(r.cy,r.db,r.d,o,r.f,r.fy,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a),m=r.dy,l=r.fx +o=m==null?q:A.cl(m) +s=l==null?q:A.cl(l) +return A.L(r.a,r.b,r.c,r.r,r.w,r.x,r.y,r.z,r.Q,r.as,r.at,r.ax,r.ay,r.ch,o,q,s,r.CW,r.cx,n)}, +bW(){return"TextStyle"}} +A.Ly.prototype={} +A.Bv.prototype={ +Pk(a,b,c,d,e){var s=this +s.r=A.aeN(new A.RV(s),s.gxx(s),0,10,0)}, +cN(a,b){var s,r,q=this +if(b>q.r)return q.gr2() +s=q.e +r=q.c +return q.d+s*Math.pow(q.b,b)/r-s/r-q.f/2*b*b}, +dr(a,b){var s=this +if(b>s.r)return 0 +return s.e*Math.pow(s.b,b)-s.f*b}, +gr2(){var s=this +if(s.f===0)return s.d-s.e/s.c +return s.cN(0,s.r)}, +K5(a){var s,r=this,q=r.d +if(a===q)return 0 +s=r.e +if(s!==0)if(s>0)q=ar.gr2() +else q=a>q||a=l&&n.c>=n.d)return new A.S(A.O(0,m,l),A.O(0,n.c,n.d)) +s=a.a +r=a.b +q=s/r +if(s>l){r=l/q +s=l}p=n.d +if(r>p){s=p*q +r=p}if(s=s.b&&s.c>=s.d}, +R(a,b){var s=this +return new A.aI(s.a*b,s.b*b,s.c*b,s.d*b)}, +cO(a,b){var s=this +return new A.aI(s.a/b,s.b/b,s.c/b,s.d/b)}, +ga0Z(){var s=this,r=s.a +if(r>=0)if(r<=s.b){r=s.c +r=r>=0&&r<=s.d}else r=!1 +else r=!1 +return r}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.aI&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d}, +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a){var s,r=this,q=r.ga0Z()?"":"; NOT NORMALIZED",p=r.a +if(p===1/0&&r.c===1/0)return"BoxConstraints(biggest"+q+")" +if(p===0&&r.b===1/0&&r.c===0&&r.d===1/0)return"BoxConstraints(unconstrained"+q+")" +s=new A.Oy() +return"BoxConstraints("+s.$3(p,r.b,"w")+", "+s.$3(r.c,r.d,"h")+q+")"}} +A.Oy.prototype={ +$3(a,b,c){if(a===b)return c+"="+B.c.M(a,1) +return B.c.M(a,1)+"<="+c+"<="+B.c.M(b,1)}, +$S:231} +A.h4.prototype={ +FW(a,b,c){if(c!=null){c=A.Cp(A.a8j(c)) +if(c==null)return!1}return this.wF(a,b,c)}, +qk(a,b,c){var s,r=b==null,q=r?c:c.a4(0,b) +r=!r +if(r)this.c.push(new A.pl(new A.q(-b.a,-b.b))) +s=a.$2(this,q) +if(r)this.rU() +return s}, +wF(a,b,c){var s,r=c==null,q=r?b:A.cf(c,b) +r=!r +if(r)this.c.push(new A.wp(c)) +s=a.$2(this,q) +if(r)this.rU() +return s}, +FV(a,b,c){var s,r=this +if(b!=null)r.c.push(new A.pl(new A.q(-b.a,-b.b))) +else{c.toString +c=A.Cp(A.a8j(c)) +c.toString +r.c.push(new A.wp(c))}s=a.$1(r) +r.rU() +return s}, +Y1(a,b){return this.FV(a,null,b)}, +Y0(a,b){return this.FV(a,b,null)}} +A.mT.prototype={ +j(a){return"#"+A.bs(this.a)+"@"+this.c.j(0)}} +A.e_.prototype={ +j(a){return"offset="+this.a.j(0)}} +A.qv.prototype={} +A.G.prototype={ +eg(a){if(!(a.e instanceof A.e_))a.e=new A.e_(B.h)}, +ip(a){var s=this.k1 +if(s==null)s=this.k1=A.y(t.k,t.DB) +return s.bq(0,a,new A.WK(this,a))}, +cf(a){return B.L}, +gjq(){var s=this.k3 +return new A.C(0,0,0+s.a,0+s.b)}, +tj(a,b){var s=null +try{s=this.kl(a)}finally{}if(s==null&&!b)return this.k3.b +return s}, +KK(a){return this.tj(a,!1)}, +kl(a){var s=this,r=s.k4 +if(r==null)r=s.k4=A.y(t.E7,t.u6) +r.bq(0,a,new A.WJ(s,a)) +return s.k4.i(0,a)}, +eX(a){return null}, +ga5(){return t.k.a(A.z.prototype.ga5.call(this))}, +Qv(){var s,r=this,q=r.k4,p=q==null +if(!(!p&&q.a!==0)){s=r.id +if(!(s!=null&&s.a!==0)){s=r.k1 +s=s!=null&&s.a!==0}else s=!0}else s=!0 +if(s){if(!p)q.L(0) +q=r.id +if(q!=null)q.L(0) +q=r.k1 +if(q!=null)q.L(0) +return!0}return!1}, +a7(){var s=this +if(s.Qv()&&s.c instanceof A.z){s.rz() +return}s.Nq()}, +ck(a,b){var s,r=this +if(r.k3!=null)if(!a.k(0,t.k.a(A.z.prototype.ga5.call(r)))){s=r.k4 +s=s!=null&&s.a!==0}else s=!1 +else s=!1 +if(s){s=r.k4 +if(s!=null)s.L(0)}r.Np(a,b)}, +j9(a){return this.ck(a,!1)}, +or(){this.k3=this.cf(t.k.a(A.z.prototype.ga5.call(this)))}, +bQ(){}, +bM(a,b){var s=this +if(s.k3.q(0,b))if(s.d9(a,b)||s.j4(b)){a.B(0,new A.mT(b,s)) +return!0}return!1}, +j4(a){return!1}, +d9(a,b){return!1}, +d5(a,b){var s,r=a.e +r.toString +s=t.r.a(r).a +b.ae(0,s.a,s.b)}, +ko(a){var s,r,q,p,o,n=this.bs(0,null) +if(n.fp(n)===0)return B.h +s=new A.cS(new Float64Array(3)) +s.dT(0,0,1) +r=new A.cS(new Float64Array(3)) +r.dT(0,0,0) +q=n.ia(r) +r=new A.cS(new Float64Array(3)) +r.dT(0,0,1) +p=n.ia(r).a4(0,q) +r=new A.cS(new Float64Array(3)) +r.dT(a.a,a.b,0) +o=n.ia(r) +r=o.a4(0,p.is(s.Hj(o)/s.Hj(p))).a +return new A.q(r[0],r[1])}, +gi9(){var s=this.k3 +return new A.C(0,0,0+s.a,0+s.b)}, +i4(a,b){this.No(a,b)}} +A.WK.prototype={ +$0(){return this.a.cf(this.b)}, +$S:232} +A.WJ.prototype={ +$0(){return this.a.eX(this.b)}, +$S:233} +A.d0.prototype={ +ZF(a){var s,r,q,p=this.U$ +for(s=A.m(this).h("d0.1?");p!=null;){r=s.a(p.e) +q=p.kl(a) +if(q!=null)return q+r.a.b +p=r.af$}return null}, +GZ(a){var s,r,q,p,o=this.U$ +for(s=A.m(this).h("d0.1"),r=null;o!=null;){q=o.e +q.toString +s.a(q) +p=o.kl(a) +if(p!=null){p+=q.a.b +r=r!=null?Math.min(r,p):p}o=q.af$}return r}, +x9(a,b){var s,r,q={},p=q.a=this.bC$ +for(s=A.m(this).h("d0.1");p!=null;p=r){p=p.e +p.toString +s.a(p) +if(a.qk(new A.WI(q,b,p),p.a,b))return!0 +r=p.b5$ +q.a=r}return!1}, +nx(a,b){var s,r,q,p,o,n=this.U$ +for(s=A.m(this).h("d0.1"),r=b.a,q=b.b;n!=null;){p=n.e +p.toString +s.a(p) +o=p.a +a.f9(n,new A.q(o.a+r,o.b+q)) +n=p.af$}}} +A.WI.prototype={ +$2(a,b){return this.a.a.bM(a,b)}, +$S:20} +A.vM.prototype={ +ag(a){this.u2(0)}} +A.eX.prototype={ +j(a){return this.p7(0)+"; id="+A.h(this.e)}} +A.UM.prototype={ +dt(a,b){var s,r=this.b.i(0,a) +r.ck(b,!0) +s=r.k3 +s.toString +return s}, +dM(a,b){var s=this.b.i(0,a).e +s.toString +t.DU.a(s).a=b}, +Qa(a,b){var s,r,q,p,o,n,m=this,l=m.b +try{m.b=A.y(t.K,t.x) +for(r=t.DU,q=b;q!=null;q=n){p=q.e +p.toString +s=r.a(p) +p=m.b +p.toString +o=s.e +o.toString +p.l(0,o,q) +n=s.af$}m.rS(a)}finally{m.b=l}}, +j(a){return"MultiChildLayoutDelegate"}} +A.DS.prototype={ +eg(a){if(!(a.e instanceof A.eX))a.e=new A.eX(null,null,B.h)}, +sxb(a){var s=this,r=s.J +if(r===a)return +if(A.w(a)!==A.w(r)||a.md(r))s.a7() +s.J=a +s.b!=null}, +ak(a){this.Og(a)}, +ag(a){this.Oh(0)}, +cf(a){return a.bI(new A.S(A.O(1/0,a.a,a.b),A.O(1/0,a.c,a.d)))}, +bQ(){var s=this,r=t.k.a(A.z.prototype.ga5.call(s)) +r=r.bI(new A.S(A.O(1/0,r.a,r.b),A.O(1/0,r.c,r.d))) +s.k3=r +s.J.Qa(r,s.U$)}, +aC(a,b){this.nx(a,b)}, +d9(a,b){return this.x9(a,b)}} +A.wS.prototype={ +ak(a){var s,r,q +this.eD(a) +s=this.U$ +for(r=t.DU;s!=null;){s.ak(a) +q=s.e +q.toString +s=r.a(q).af$}}, +ag(a){var s,r,q +this.dU(0) +s=this.U$ +for(r=t.DU;s!=null;){s.ag(0) +q=s.e +q.toString +s=r.a(q).af$}}} +A.Kh.prototype={} +A.Ap.prototype={ +Z(a,b){var s=this.a +return s==null?null:s.Z(0,b)}, +H(a,b){var s=this.a +return s==null?null:s.H(0,b)}, +goU(){return null}, +tI(a){return this.iw(a)}, +nZ(a){return null}, +j(a){var s=A.bs(this),r=this.a +r=r==null?null:r.j(0) +if(r==null)r="" +return"#"+s+"("+r+")"}} +A.DT.prototype={ +srQ(a){var s=this.A +if(s==a)return +this.A=a +this.C9(a,s)}, +sHR(a){var s=this.a6 +if(s==a)return +this.a6=a +this.C9(a,s)}, +C9(a,b){var s=this,r=a==null +if(r)s.aB() +else if(b==null||A.w(a)!==A.w(b)||a.iw(b))s.aB() +if(s.b!=null){if(b!=null)b.H(0,s.geb()) +if(!r)a.Z(0,s.geb())}if(r){if(s.b!=null)s.b0()}else if(b==null||A.w(a)!==A.w(b)||a.tI(b))s.b0()}, +sa1S(a){if(this.au.k(0,a))return +this.au=a +this.a7()}, +ak(a){var s,r=this +r.mo(a) +s=r.A +if(s!=null)s.Z(0,r.geb()) +s=r.a6 +if(s!=null)s.Z(0,r.geb())}, +ag(a){var s=this,r=s.A +if(r!=null)r.H(0,s.geb()) +r=s.a6 +if(r!=null)r.H(0,s.geb()) +s.kC(0)}, +d9(a,b){var s=this.a6 +if(s!=null){s=s.nZ(b) +s=s===!0}else s=!1 +if(s)return!0 +return this.u7(a,b)}, +j4(a){var s=this.A +if(s!=null){s.nZ(a) +s=!0}else s=!1 +return s}, +bQ(){this.u8() +this.b0()}, +nq(a){return a.bI(this.au)}, +DM(a,b,c){var s +A.b_("debugPreviousCanvasSaveCount") +a.bm(0) +if(!b.k(0,B.h))a.ae(0,b.a,b.b) +s=this.k3 +s.toString +c.aC(a,s) +a.b6(0)}, +aC(a,b){var s,r,q=this +if(q.A!=null){s=a.gby(a) +r=q.A +r.toString +q.DM(s,b,r) +q.Ez(a)}q.hM(a,b) +if(q.a6!=null){s=a.gby(a) +r=q.a6 +r.toString +q.DM(s,b,r) +q.Ez(a)}}, +Ez(a){}, +e4(a){var s,r=this +r.fZ(a) +s=r.A +r.cY=s==null?null:s.goU() +s=r.a6 +r.hk=s==null?null:s.goU() +a.a=!1}, +nc(a,b,c){var s,r,q,p,o=this +o.fA=A.acC(o.fA,B.jZ) +o.i3=A.acC(o.i3,B.jZ) +s=o.fA +r=s!=null&&!s.gS(s) +s=o.i3 +q=s!=null&&!s.gS(s) +s=A.a([],t.R) +if(r){p=o.fA +p.toString +B.b.I(s,p)}B.b.I(s,c) +if(q){p=o.i3 +p.toString +B.b.I(s,p)}o.AW(a,b,s)}, +l1(){this.u4() +this.i3=this.fA=null}} +A.PN.prototype={} +A.DW.prototype={ +Pr(a){var s,r,q,p,o=this +try{r=o.J +if(r!==""){q=$.agn() +s=$.ae().qG(q) +s.rY($.ago()) +s.n8(r) +r=s.aS() +o.al!==$&&A.dj() +o.al=r}else{o.al!==$&&A.dj() +o.al=null}}catch(p){}}, +gkt(){return!0}, +j4(a){return!0}, +cf(a){return a.bI(B.GE)}, +aC(a,b){var s,r,q,p,o,n,m,l,k,j,i=this +try{p=a.gby(a) +o=i.k3 +n=b.a +m=b.b +l=o.a +o=o.b +k=$.ae().b9() +k.sac(0,$.agm()) +p.bK(new A.C(n,m,n+l,m+o),k) +p=i.al +p===$&&A.c() +if(p!=null){s=i.k3.a +r=0 +q=0 +if(s>328){s-=128 +r+=64}p.j9(new A.jT(s)) +if(i.k3.b>96+p.gbo(p)+12)q+=96 +a.gby(a).f_(p,b.T(0,new A.q(r,q)))}}catch(j){}}} +A.Rt.prototype={ +D(){return"FlexFit."+this.b}} +A.hc.prototype={ +j(a){return this.p7(0)+"; flex="+A.h(this.e)+"; fit="+A.h(this.f)}} +A.Cj.prototype={ +D(){return"MainAxisSize."+this.b}} +A.Ci.prototype={ +D(){return"MainAxisAlignment."+this.b}} +A.kY.prototype={ +D(){return"CrossAxisAlignment."+this.b}} +A.DY.prototype={ +eg(a){if(!(a.e instanceof A.hc))a.e=new A.hc(null,null,B.h)}, +eX(a){if(this.J===B.aZ)return this.GZ(a) +return this.ZF(a)}, +pm(a){switch(this.J.a){case 0:return a.b +case 1:return a.a}}, +po(a){switch(this.J.a){case 0:return a.a +case 1:return a.b}}, +cf(a){var s +if(this.aE===B.jk)return B.L +s=this.BY(a,A.Nz()) +switch(this.J.a){case 0:return a.bI(new A.S(s.a,s.b)) +case 1:return a.bI(new A.S(s.b,s.a))}}, +BY(a2,a3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=this,b=null,a=c.J===B.aZ?a2.b:a2.d,a0=a<1/0,a1=c.U$ +for(s=t.uc,r=a2.b,q=a2.d,p=b,o=0,n=0,m=0;a1!=null;){l=a1.e +l.toString +s.a(l) +k=l.e +if(k==null)k=0 +if(k>0){o+=k +p=a1}else{if(c.aE===B.jj)switch(c.J.a){case 0:j=A.kQ(q,b) +break +case 1:j=A.kQ(b,r) +break +default:j=b}else switch(c.J.a){case 0:j=new A.aI(0,1/0,0,q) +break +case 1:j=new A.aI(0,r,0,1/0) +break +default:j=b}i=a3.$2(a1,j) +m+=c.po(i) +n=Math.max(n,A.kC(c.pm(i)))}a1=l.af$}h=Math.max(0,(a0?a:0)-m) +if(o>0){g=a0?h/o:0/0 +a1=c.U$ +for(f=0;a1!=null;){l=a1.e +l.toString +k=s.a(l).e +if(k==null)k=0 +if(k>0){if(a0)e=a1===p?h-f:g*k +else e=1/0 +d=A.b_("minChildExtent") +l=a1.e +l.toString +l=s.a(l).f +switch((l==null?B.ze:l).a){case 0:if(d.b!==d)A.a2(A.TY(d.a)) +d.b=e +break +case 1:if(d.b!==d)A.a2(A.TY(d.a)) +d.b=0 +break}if(c.aE===B.jj)switch(c.J.a){case 0:l=d.b +if(l===d)A.a2(A.hp(d.a)) +j=new A.aI(l,e,q,q) +break +case 1:l=d.b +if(l===d)A.a2(A.hp(d.a)) +j=new A.aI(r,r,l,e) +break +default:j=b}else switch(c.J.a){case 0:l=d.b +if(l===d)A.a2(A.hp(d.a)) +j=new A.aI(l,e,0,q) +break +case 1:l=d.b +if(l===d)A.a2(A.hp(d.a)) +j=new A.aI(0,r,l,e) +break +default:j=b}i=a3.$2(a1,j) +m+=c.po(i) +f+=e +n=Math.max(n,A.kC(c.pm(i)))}l=a1.e +l.toString +a1=s.a(l).af$}}return new A.a2K(a0&&c.ai===B.oX?a:m,n,m)}, +bQ(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=this,a0=t.k.a(A.z.prototype.ga5.call(a)),a1=a.BY(a0,A.NA()),a2=a1.a,a3=a1.b +if(a.aE===B.jk){s=a.U$ +for(r=t.uc,q=0,p=0,o=0;s!=null;){n=a.bD +n.toString +m=s.tj(n,!0) +if(m!=null){q=Math.max(q,m) +p=Math.max(m,p) +o=Math.max(s.k3.b-m,o) +a3=Math.max(p+o,a3)}n=s.e +n.toString +s=r.a(n).af$}}else q=0 +switch(a.J.a){case 0:r=a.k3=a0.bI(new A.S(a2,a3)) +a2=r.a +a3=r.b +break +case 1:r=a.k3=a0.bI(new A.S(a3,a2)) +a2=r.b +a3=r.a +break}l=a2-a1.c +a.ci=Math.max(0,-l) +k=Math.max(0,l) +j=A.b_("leadingSpace") +i=A.b_("betweenSpace") +r=A.aeY(a.J,a.ba,a.aL) +h=r===!1 +switch(a.al.a){case 0:j.sbH(0) +i.sbH(0) +break +case 1:j.sbH(k) +i.sbH(0) +break +case 2:j.sbH(k/2) +i.sbH(0) +break +case 3:j.sbH(0) +r=a.bk$ +i.sbH(r>1?k/(r-1):0) +break +case 4:r=a.bk$ +i.sbH(r>0?k/r:0) +j.sbH(i.ap()/2) +break +case 5:r=a.bk$ +i.sbH(r>0?k/(r+1):0) +j.sbH(i.ap()) +break}g=h?a2-j.ap():j.ap() +s=a.U$ +for(r=t.uc,n=a3/2,f=i.a;s!=null;){e=s.e +e.toString +r.a(e) +d=a.aE +switch(d.a){case 0:case 1:if(A.aeY(A.ard(a.J),a.ba,a.aL)===(d===B.ji))c=0 +else{d=s.k3 +d.toString +c=a3-a.pm(d)}break +case 2:d=s.k3 +d.toString +c=n-a.pm(d)/2 +break +case 3:c=0 +break +case 4:if(a.J===B.aZ){d=a.bD +d.toString +m=s.tj(d,!0) +c=m!=null?q-m:0}else c=0 +break +default:c=null}if(h){d=s.k3 +d.toString +g-=a.po(d)}switch(a.J.a){case 0:e.a=new A.q(g,c) +break +case 1:e.a=new A.q(c,g) +break}if(h){d=i.b +if(d===i)A.a2(A.hp(f)) +g-=d}else{d=s.k3 +d.toString +d=a.po(d) +b=i.b +if(b===i)A.a2(A.hp(f)) +g+=d+b}s=e.af$}}, +d9(a,b){return this.x9(a,b)}, +aC(a,b){var s,r,q,p=this +if(!(p.ci>1e-10)){p.nx(a,b) +return}s=p.k3 +if(s.gS(s))return +s=p.F +r=p.cx +r===$&&A.c() +q=p.k3 +s.saY(0,a.ov(r,b,new A.C(0,0,0+q.a,0+q.b),p.gZG(),p.d8,s.a))}, +m(){this.F.saY(0,null) +this.Oi()}, +jR(a){var s +switch(this.d8.a){case 0:return null +case 1:case 2:case 3:if(this.ci>1e-10){s=this.k3 +s=new A.C(0,0,0+s.a,0+s.b)}else s=null +return s}}, +bW(){return this.Nt()}} +A.a2K.prototype={} +A.Ki.prototype={ +ak(a){var s,r,q +this.eD(a) +s=this.U$ +for(r=t.uc;s!=null;){s.ak(a) +q=s.e +q.toString +s=r.a(q).af$}}, +ag(a){var s,r,q +this.dU(0) +s=this.U$ +for(r=t.uc;s!=null;){s.ag(0) +q=s.e +q.toString +s=r.a(q).af$}}} +A.Kj.prototype={} +A.wT.prototype={ +m(){var s,r,q +for(s=this.a_b$,r=s.length,q=0;q>")) +this.f4(new A.yR(s,c.h("yR<0>")),b,!0,c) +return s.length===0?null:B.b.gG(s).a}, +PL(a){var s,r=this +if(!r.y&&r.z!=null){s=r.z +s.toString +a.FR(s) +return}r.hO(a) +r.y=!1}, +bW(){var s=this.Mr() +return s+(this.b==null?" DETACHED":"")}} +A.C3.prototype={ +saY(a,b){var s=this.a +if(b==null?s==null:b===s)return +if(s!=null)if(--s.x===0)s.m() +this.a=b +if(b!=null)++b.x}, +j(a){var s=this.a +return"LayerHandle("+(s!=null?J.dr(s):"DISPOSED")+")"}} +A.Du.prototype={ +sJj(a){var s +this.dL() +s=this.cx +if(s!=null)s.m() +this.cx=a}, +m(){this.sJj(null) +this.AD()}, +hO(a){var s=this.cx +s.toString +a.FQ(B.h,s,this.cy,this.db)}, +f4(a,b,c){return!1}} +A.ek.prototype={ +mC(a){var s +this.MM(a) +if(!a)return +s=this.CW +for(;s!=null;){s.mC(!0) +s=s.Q}}, +Yp(a){var s=this +s.td() +s.hO(a) +if(s.e>0)s.mC(!0) +s.y=!1 +return a.aS()}, +m(){this.ze() +this.d.L(0) +this.AD()}, +td(){var s,r=this +r.MN() +s=r.CW +for(;s!=null;){s.td() +r.y=r.y||s.y +s=s.Q}}, +f4(a,b,c,d){var s,r,q +for(s=this.cx,r=a.a;s!=null;s=s.as){if(s.f4(a,b,!0,d))return!0 +q=r.length +if(q!==0)return!1}return!1}, +ak(a){var s +this.tR(a) +s=this.CW +for(;s!=null;){s.ak(a) +s=s.Q}}, +ag(a){var s +this.dU(0) +s=this.CW +for(;s!=null;){s.ag(0) +s=s.Q}this.mC(!1)}, +eQ(a,b){var s,r=this +r.dL() +s=b.e +if(s!==0)r.qa(s) +r.At(b) +s=b.as=r.cx +if(s!=null)s.Q=b +r.cx=b +if(r.CW==null)r.CW=b +b.w.saY(0,b)}, +ze(){var s,r,q,p,o=this,n=o.CW +for(s=t.ow;n!=null;n=r){r=n.Q +n.Q=n.as=null +o.dL() +q=n.e +if(q!==0){q=-q +o.e+=q +p=s.a(A.K.prototype.gaZ.call(o,o)) +if(p!=null)p.qa(q)}o.tS(n) +n.w.saY(0,null)}o.cx=o.CW=null}, +hO(a){this.jH(a)}, +jH(a){var s=this.CW +for(;s!=null;){s.PL(a) +s=s.Q}}} +A.ht.prototype={ +srF(a,b){if(!b.k(0,this.p1))this.dL() +this.p1=b}, +f4(a,b,c,d){return this.mj(a,b.a4(0,this.p1),!0,d)}, +hO(a){var s=this,r=s.p1 +s.shZ(a.z0(r.a,r.b,t.cV.a(s.z))) +s.jH(a) +a.fa()}} +A.qs.prototype={ +f4(a,b,c,d){if(!this.p1.q(0,b))return!1 +return this.mj(a,b,!0,d)}, +hO(a){var s=this,r=s.p1 +r.toString +s.shZ(a.Jv(r,s.p2,t.CW.a(s.z))) +s.jH(a) +a.fa()}} +A.qr.prototype={ +f4(a,b,c,d){if(!this.p1.q(0,b))return!1 +return this.mj(a,b,!0,d)}, +hO(a){var s=this,r=s.p1 +r.toString +s.shZ(a.Ju(r,s.p2,t.cB.a(s.z))) +s.jH(a) +a.fa()}} +A.qq.prototype={ +f4(a,b,c,d){if(!this.p1.q(0,b))return!1 +return this.mj(a,b,!0,d)}, +hO(a){var s=this,r=s.p1 +r.toString +s.shZ(a.Js(r,s.p2,t.xS.a(s.z))) +s.jH(a) +a.fa()}} +A.vk.prototype={ +sbh(a,b){var s=this +if(b.k(0,s.a_))return +s.a_=b +s.a9=!0 +s.dL()}, +hO(a){var s,r,q=this +q.ad=q.a_ +if(!q.p1.k(0,B.h)){s=q.p1 +s=A.Co(s.a,s.b,0) +r=q.ad +r.toString +s.cC(0,r) +q.ad=s}q.shZ(a.Jz(q.ad.a,t.Al.a(q.z))) +q.jH(a) +a.fa()}, +X8(a){var s,r=this +if(r.a9){s=r.a_ +s.toString +r.a0=A.Cp(A.a8j(s)) +r.a9=!1}s=r.a0 +if(s==null)return null +return A.cf(s,a)}, +f4(a,b,c,d){var s=this.X8(b) +if(s==null)return!1 +return this.N3(a,s,!0,d)}} +A.CY.prototype={ +sFZ(a,b){var s=this,r=s.a_ +if(b!=r){if(b===255||r===255)s.shZ(null) +s.a_=b +s.dL()}}, +hO(a){var s,r,q,p=this +if(p.CW==null){p.shZ(null) +return}s=p.a_ +s.toString +r=p.p1 +q=p.z +if(s<255)p.shZ(a.Jx(s,r,t.i6.a(q))) +else p.shZ(a.z0(r.a,r.b,t.cV.a(q))) +p.jH(a) +a.fa()}} +A.pX.prototype={ +f4(a,b,c,d){var s,r,q,p=this,o=p.mj(a,b,!0,d),n=a.a +if(n.length!==0&&!0)return o +s=p.p2 +if(s!=null){r=p.p3 +q=r.a +r=r.b +s=!new A.C(q,r,q+s.a,r+s.b).q(0,b)}else s=!1 +if(s)return o +if(A.bG(p.$ti.c)===A.bG(d)){o=o||!1 +n.push(new A.pY(d.a(p.p1),b.a4(0,p.p3),d.h("pY<0>")))}return o}} +A.IE.prototype={} +A.J6.prototype={ +a2i(a){var s=this.a +this.a=a +return s}, +j(a){var s="#",r=A.bs(this.b),q=this.a.a +return s+A.bs(this)+"("+("latestEvent: "+(s+r))+", "+("annotations: [list of "+q+"]")+")"}} +A.J7.prototype={ +ghV(a){var s=this.c +return s.ghV(s)}} +A.CB.prototype={ +D4(a){var s,r,q,p,o,n,m=t.mC,l=A.jJ(null,null,m,t.rA) +for(s=a.a,r=s.length,q=0;q") +this.a.a_s(a.ghV(a),a.d,A.t_(new A.aT(s,r),new A.UI(),r.h("j.E"),t.oR))}, +a2U(a,b){var s,r,q,p,o +if(a.gc1(a)!==B.bt)return +if(t.zs.b(a))return +s=t.yg.b(a)?A.abr():b.$0() +r=a.ghV(a) +q=this.b +p=q.i(0,r) +if(!A.alw(p,a))return +o=q.a +new A.UL(this,p,a,r,s).$0() +if(o!==0!==(q.a!==0))this.ao()}, +a2P(a){new A.UJ(this,a).$0()}} +A.UI.prototype={ +$1(a){return a.gGW(a)}, +$S:234} +A.UL.prototype={ +$0(){var s=this +new A.UK(s.a,s.b,s.c,s.d,s.e).$0()}, +$S:0} +A.UK.prototype={ +$0(){var s,r,q,p,o,n=this,m=null,l=n.b +if(l==null){s=n.c +if(t.yg.b(s))return +n.a.b.l(0,n.d,new A.J6(A.jJ(m,m,t.mC,t.rA),s))}else{s=n.c +if(t.yg.b(s))n.a.b.v(0,s.ghV(s))}r=n.a +q=r.b.i(0,n.d) +if(q==null){l.toString +q=l}p=q.b +q.b=s +o=t.yg.b(s)?A.jJ(m,m,t.mC,t.rA):r.D4(n.e) +r.CQ(new A.J7(q.a2i(o),o,p,s))}, +$S:0} +A.UJ.prototype={ +$0(){var s,r,q,p,o,n,m,l +for(s=this.a,r=s.b,r=r.gaJ(r),r=new A.dy(J.am(r.a),r.b),q=this.b,p=A.m(r).z[1];r.t();){o=r.a +if(o==null)o=p.a(o) +n=o.b +m=s.RO(o,q) +l=o.a +o.a=m +s.CQ(new A.J7(l,m,n,null))}}, +$S:0} +A.UG.prototype={ +$2(a,b){var s +if(!this.a.a3(0,a))if(a.gzL()&&a.gyF(a)!=null){s=a.gyF(a) +s.toString +s.$1(this.b.aD(this.c.i(0,a)))}}, +$S:235} +A.UH.prototype={ +$1(a){return!this.a.a3(0,a)}, +$S:236} +A.MB.prototype={} +A.cg.prototype={ +ag(a){}, +j(a){return""}} +A.nW.prototype={ +f9(a,b){var s,r=this +if(a.gdK()){r.p6() +if(!a.cy){s=a.ay +s===$&&A.c() +s=!s}else s=!0 +if(s)A.ace(a,null,!0) +else if(a.db)A.alN(a) +s=a.ch.a +s.toString +t.cY.a(s) +s.srF(0,b) +r.G2(s)}else{s=a.ay +s===$&&A.c() +if(s){a.ch.saY(0,null) +a.vP(r,b)}else a.vP(r,b)}}, +G2(a){a.ig(0) +this.a.eQ(0,a)}, +gby(a){var s,r,q=this +if(q.e==null){q.c=A.alQ(q.b) +s=$.ae() +r=s.GR() +q.d=r +q.e=s.GM(r,null) +r=q.c +r.toString +q.a.eQ(0,r)}s=q.e +s.toString +return s}, +p6(){var s,r=this +if(r.e==null)return +s=r.c +s.toString +s.sJj(r.d.nK()) +r.e=r.d=r.c=null}, +Af(){var s=this.c +if(s!=null)if(!s.cy){s.cy=!0 +s.dL()}}, +ow(a,b,c,d){var s,r=this +if(a.CW!=null)a.ze() +r.p6() +r.G2(a) +s=r.Zv(a,d==null?r.b:d) +b.$2(s,c) +s.p6()}, +Jw(a,b,c){return this.ow(a,b,c,null)}, +Zv(a,b){return new A.nW(a,b)}, +ov(a,b,c,d,e,f){var s,r,q=this +if(e===B.w){d.$2(q,b) +return null}s=c.cE(b) +if(a){r=f==null?new A.qs(B.aR,A.y(t.S,t.O),A.au()):f +if(!s.k(0,r.p1)){r.p1=s +r.dL()}if(e!==r.p2){r.p2=e +r.dL()}q.ow(r,d,b,s) +return r}else{q.YN(s,e,s,new A.Vu(q,d,b)) +return null}}, +a1X(a,b,c,d,e,f,g){var s,r,q,p=this +if(f===B.w){e.$2(p,b) +return null}s=c.cE(b) +r=d.cE(b) +if(a){q=g==null?new A.qr(B.f4,A.y(t.S,t.O),A.au()):g +if(!r.k(0,q.p1)){q.p1=r +q.dL()}if(f!==q.p2){q.p2=f +q.dL()}p.ow(q,e,b,s) +return q}else{p.YM(r,f,s,new A.Vt(p,e,b)) +return null}}, +Jt(a,b,c,d,e,f,g){var s,r,q,p=this +if(f===B.w){e.$2(p,b) +return null}s=c.cE(b) +r=d.cE(b) +if(a){q=g==null?new A.qq(B.f4,A.y(t.S,t.O),A.au()):g +if(r!==q.p1){q.p1=r +q.dL()}if(f!==q.p2){q.p2=f +q.dL()}p.ow(q,e,b,s) +return q}else{p.YL(r,f,s,new A.Vs(p,e,b)) +return null}}, +rZ(a,b,c,d,e){var s,r=this,q=b.a,p=b.b,o=A.Co(q,p,0) +o.cC(0,c) +o.ae(0,-q,-p) +if(a){s=e==null?A.adq(null):e +s.sbh(0,o) +r.ow(s,d,b,A.ac0(o,r.b)) +return s}else{q=r.gby(r) +q.bm(0) +q.V(0,o.a) +d.$2(r,b) +r.gby(r).b6(0) +return null}}, +a1Z(a,b,c,d){return this.rZ(a,b,c,d,null)}, +Jy(a,b,c,d){var s=d==null?A.ac9():d +s.sFZ(0,b) +s.srF(0,a) +this.Jw(s,c,B.h) +return s}, +j(a){return"PaintingContext#"+A.fy(this)+"(layer: "+this.a.j(0)+", canvas bounds: "+this.b.j(0)+")"}} +A.Vu.prototype={ +$0(){return this.b.$2(this.a,this.c)}, +$S:0} +A.Vt.prototype={ +$0(){return this.b.$2(this.a,this.c)}, +$S:0} +A.Vs.prototype={ +$0(){return this.b.$2(this.a,this.c)}, +$S:0} +A.Pw.prototype={} +A.nY.prototype={ +lT(){var s=this.cx +if(s!=null)s.a.xC()}, +sa2r(a){var s=this.e +if(s===a)return +if(s!=null)s.ag(0) +this.e=a +a.ak(this)}, +HK(){var s,r,q,p,o,n,m,l,k,j,i,h,g=this +try{for(o=t.W,n=t.By;m=g.r,m.length!==0;){s=m +g.r=A.a([],n) +m=s +l=new A.VF() +if(!!m.immutable$list)A.a2(A.T("sort")) +k=m.length-1 +if(k-0<=32)A.Fb(m,0,k,l) +else A.Fa(m,0,k,l) +for(r=0;r")) +h.uc(l,k,j,i.c) +B.b.I(m,h) +break}}q=J.bc(s,r) +if(q.z){m=q +m=o.a(A.K.prototype.gbl.call(m))===g}else m=!1 +if(m)q.Ug()}g.f=!1}for(o=g.CW,o=A.dV(o,o.r),n=A.m(o).c;o.t();){m=o.d +p=m==null?n.a(m):m +p.HK()}}finally{g.f=!1}}, +Ru(a){try{a.$0()}finally{this.f=!0}}, +HJ(){var s,r,q,p,o=this.z +B.b.ei(o,new A.VE()) +for(s=o.length,r=t.W,q=0;q0){if(s.at==null){r=t.ju +s.at=new A.uD(s.c,A.az(r),A.y(t.S,r),A.az(r),$.b7()) +s.b.$0()}}else{r=s.at +if(r!=null){r.b.L(0) +r.c.L(0) +r.d.L(0) +r.dB() +s.at=null +s.d.$0()}}}, +HM(){var s,r,q,p,o,n,m,l,k,j=this +if(j.at==null)return +try{p=j.ch +o=A.aw(p,!0,A.m(p).c) +B.b.ei(o,new A.VH()) +s=o +p.L(0) +for(p=s,n=p.length,m=t.W,l=0;l0;m=l){l=m-1 +r[m].d5(r[l],n)}return n}, +jR(a){return null}, +H2(a){return null}, +e4(a){}, +tz(a){var s +if(t.W.a(A.K.prototype.gbl.call(this)).at==null)return +s=this.fr +if(s!=null&&!s.as)s.Lg(a) +else{s=this.c +if(s!=null)t.aP.a(s).tz(a)}}, +gpX(){var s,r=this +if(r.dx==null){s=A.k8() +r.dx=s +r.e4(s)}s=r.dx +s.toString +return s}, +l1(){this.dy=!0 +this.fr=null +this.aR(new A.WV())}, +b0(){var s,r,q,p,o,n,m,l=this +if(l.b==null||t.W.a(A.K.prototype.gbl.call(l)).at==null){l.dx=null +return}if(l.fr!=null){s=l.dx +s=s==null?null:s.a +r=s===!0}else r=!1 +s=l.dx +q=(s==null?null:s.id)!=null||l.gpX().id!=null +l.dx=null +p=l.gpX().a&&r +s=t.aP +o=l +while(!0){n=o.c +if(n instanceof A.z)m=q||!p +else m=!1 +if(!m)break +if(o!==l&&o.dy)break +o.dy=!0 +if(p)q=!1 +n.toString +s.a(n) +if(n.dx==null){m=A.k8() +n.dx=m +n.e4(m)}p=n.dx.a +if(p&&n.fr==null)return +o=n}if(o!==l&&l.fr!=null&&l.dy)t.W.a(A.K.prototype.gbl.call(l)).ch.v(0,l) +if(!o.dy){o.dy=!0 +s=t.W +if(s.a(A.K.prototype.gbl.call(l))!=null){s.a(A.K.prototype.gbl.call(l)).ch.B(0,o) +s.a(A.K.prototype.gbl.call(l)).lT()}}}, +Xw(){var s,r,q,p,o,n,m,l=this,k=null +if(l.z)return +s=l.fr +if(s==null)s=k +else{s=t.aa.a(A.K.prototype.gaZ.call(s,s)) +if(s==null)s=k +else s=s.at||s.as}r=t.dK.a(l.CH(s===!0)) +s=t.R +q=A.a([],s) +p=A.a([],s) +s=l.fr +o=s==null +n=o?k:s.x +m=o?k:s.y +s=o?k:s.z +r.l6(s==null?0:s,m,n,q,p)}, +CH(a){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f={},e=g.gpX() +f.a=e.c +f.b=!e.d&&!e.a +s=a||e.p3 +r=A.a([],t.xm) +q=e.b||!(g.c instanceof A.z) +p=e.id!=null +o=t.dK +n=A.y(t.oX,o) +m=t.yj +l=A.a([],m) +k=A.a([],t.zd) +j=e.ad +j=j==null?null:j.a!==0 +g.fM(new A.WQ(f,g,s,r,l,k,e,j===!0,p,n)) +if(q)for(o=l.length,i=0;i"))) +for(j=h.b,i=0;!1;++i)k.push(j[i].fG(0,new A.WS(g,n),o).cK(0))}g.dy=!1 +if(!(g.c instanceof A.z)){g.pF(l,!0) +B.b.P(k,g.gDu()) +o=f.a +h=new A.KD(A.a([],m),A.a([g],t.By),o)}else if(f.b){o=f.a +h=new A.GR(k,A.a([],m),o)}else{g.pF(l,!0) +B.b.P(k,g.gDu()) +o=f.a +h=new A.mu(a,e,k,A.a([],m),A.a([g],t.By),o) +if(e.a)h.z=!0}h.I(0,l) +return h}, +pF(a,b){var s,r,q,p,o,n,m,l=this,k=A.az(t.dK) +for(s=J.aC(a),r=0;r#"+A.bs(this)}, +j(a){return this.bW()}, +hI(a,b,c,d){var s=this.c +if(s instanceof A.z)s.hI(a,b==null?this:b,c,d)}, +tL(){return this.hI(B.b1,null,B.r,null)}, +oZ(a,b){return this.hI(B.b1,a,B.r,b)}, +$iag:1} +A.WT.prototype={ +$0(){var s=A.a([],t.E),r=this.a +s.push(A.a7C("The following RenderObject was being processed when the exception was fired",B.yL,r)) +s.push(A.a7C("RenderObject",B.yM,r)) +return s}, +$S:15} +A.WW.prototype={ +$0(){this.b.$1(this.c.a(this.a.ga5()))}, +$S:0} +A.WU.prototype={ +$1(a){var s +a.Fg() +s=a.cx +s===$&&A.c() +if(s)this.a.cx=!0}, +$S:28} +A.WV.prototype={ +$1(a){a.l1()}, +$S:28} +A.WQ.prototype={ +$1(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e=a.CH(f.c) +if(e.a){B.b.L(f.d) +B.b.L(f.e) +B.b.L(f.f) +if(!f.r.a)f.a.a=!0}for(s=e.gJ2(),r=s.length,q=f.e,p=f.x,o=f.w,n=f.b,m=f.r,l=f.d,k=f.y,j=0;j1){b=new A.KU() +b.BZ(a3,a4,c)}else b=a2 +c=b.c +c===$&&A.c() +a=b.d +a===$&&A.c() +a0=A.es(c,a) +e=e==null?a0:e.jX(a0) +c=b.b +if(c!=null){a1=A.es(b.c,c) +f=f==null?a1:f.dd(a1)}c=b.a +if(c!=null){a1=A.es(b.c,c) +g=g==null?a1:g.dd(a1)}d=d.c +if(d!=null)l.I(0,d)}}if(h!=null)j=!(e.a>=e.c||e.b>=e.d) +else j=!1 +if(j){if(i==null||a6.q(0,i.e))i=A.EN(a2,B.b.gG(o).gme()) +a6.B(0,i.e) +i.dx=l +if(!i.w.k(0,e)){i.w=e +i.eK()}if(!A.a89(i.r,a2)){i.r=null +i.eK()}i.x=f +i.y=g +for(k=k.gX(m);k.t();){j=k.gC(k) +if(j.geq()!=null)B.b.gG(j.b).fr=i}i.Kq(0,h) +a5.push(i)}}}, +l6(a,b,a0,a1,a2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e=null,d=A.az(t.S),c=f.y +for(s=f.x,r=s.length,q=0;q");s.t();){n=s.gC(s) +if(n instanceof A.mu){if(n.z){m=n.b +m=B.b.gG(m).fr!=null&&d.q(0,B.b.gG(m).fr.e)}else m=!1 +if(m)B.b.gG(n.b).fr=null}m=n.b +l=new A.fL(r,1,e,p) +l.uc(r,1,e,o) +B.b.I(m,l) +n.l6(a+f.f.xr,b,a0,a1,a2)}return}k=f.QJ(b,a0) +s=f.e +r=!s +if(r){if(k==null)p=e +else{p=k.d +p===$&&A.c() +if(!p.gS(p)){p=k.c +p===$&&A.c() +p=p.IJ()}else p=!0}p=p===!0}else p=!1 +if(p)return +p=f.b +o=B.b.gG(p) +if(o.fr==null)o.fr=A.EN(e,B.b.gG(p).gme()) +j=B.b.gG(p).fr +j.syd(s) +j.dx=f.c +j.z=a +if(a!==0){f.uY() +s=f.f +s.sds(0,s.xr+a)}if(k!=null){s=k.d +s===$&&A.c() +j.sar(0,s) +s=k.c +s===$&&A.c() +j.sbh(0,s) +j.x=k.b +j.y=k.a +if(r&&k.e){f.uY() +f.f.b2(B.ho,!0)}}s=t.R +i=A.a([],s) +f.Dy(j.x,j.y,a2,d) +for(r=J.am(c);r.t();){o=r.gC(r) +if(o instanceof A.mu){if(o.z){n=o.b +n=B.b.gG(n).fr!=null&&d.q(0,B.b.gG(n).fr.e)}else n=!1 +if(n)B.b.gG(o.b).fr=null}h=A.a([],s) +n=j.x +o.l6(0,j.y,n,i,h) +B.b.I(a2,h)}s=f.f +if(s.a)B.b.gG(p).nc(j,f.f,i) +else j.jk(0,i,s) +a1.push(j) +for(s=a2.length,r=t.xJ,q=0;q1){s=new A.KU() +s.BZ(b,a,r) +r=s}else r=null +return r}, +geq(){return this.z?null:this.f}, +I(a,b){var s,r,q,p,o,n,m=this +for(s=b.length,r=m.y,q=0;q0;){r=c[s];--s +q=c[s] +a=r.H2(q) +if(a!=null){m.b=a +m.a=A.adX(m.a,r.jR(q))}else m.b=A.adX(m.b,r.jR(q)) +l=$.ah_() +l.cP() +A.aoq(r,q,m.c,l) +m.b=A.adY(m.b,l) +m.a=A.adY(m.a,l)}p=B.b.gG(c) +l=m.b +l=l==null?p.gjq():l.dd(p.gjq()) +m.d=l +o=m.a +if(o!=null){n=o.dd(l) +if(n.gS(n)){l=m.d +l=!l.gS(l)}else l=!1 +m.e=l +if(!l)m.d=n}}} +A.Km.prototype={} +A.hJ.prototype={ +j(a){var s=A.a(["offset="+this.a.j(0)],t.s) +s.push(this.p7(0)) +return B.b.bf(s,"; ")}} +A.u3.prototype={ +eg(a){if(!(a.e instanceof A.hJ))a.e=new A.hJ(null,null,B.h)}, +soB(a,b){var s=this,r=s.J +switch(r.d.aV(0,b).a){case 0:return +case 1:r.soB(0,b) +s.ai=null +s.b0() +break +case 2:r.soB(0,b) +s.ai=s.al=null +s.v1(b) +s.aB() +s.b0() +break +case 3:r.soB(0,b) +s.ai=s.al=s.a1=null +s.v1(b) +s.a7() +s.vU() +s.Cd() +s.Fw() +break}}, +soy(a){var s=this +if(a==s.ba)return +s.vU() +s.Cd() +s.ba=a +s.Fw()}, +Fw(){var s,r,q=this +if(q.ba==null)return +s=q.aE +if(s==null)s=q.aE=q.Sf() +r=q.ba +B.b.P(s,r.giM(r))}, +vU(){var s,r=this.ba +if(r==null||this.aE==null)return +s=this.aE +s.toString +B.b.P(s,r.gzd(r))}, +Sf(){var s,r,q,p,o=this.J.d.Ka(!1),n=A.a([],t.sb) +for(s=o.length,r=0;r")),h.uc(e,1,a8,i.c),h=new A.db(h,h.gp(h)),i=A.m(h).c;h.t();){g=h.d +if(g==null)g=i.a(g) +d=d.jX(new A.C(g.a,g.b,g.c,g.d)) +c=g.e}i=d.a +h=Math.max(0,i) +g=d.b +f=Math.max(0,g) +i=Math.min(d.c-i,p.a(A.z.prototype.ga5.call(a7)).b) +g=Math.min(d.d-g,p.a(A.z.prototype.ga5.call(a7)).d) +b=Math.floor(h)-4 +a=Math.floor(f)-4 +i=Math.ceil(h+i)+4 +g=Math.ceil(f+g)+4 +a0=new A.C(b,a,i,g) +a1=A.k8() +a2=n+1 +a1.k1=new A.tv(n,a8) +a1.d=!0 +a1.y2=o +f=k.b +b1=f==null?b1:f +a1.R8=new A.cb(b1,k.f) +b1=b2.y +if(b1!=null){a3=b1.dd(a0) +if(a3.a>=a3.c||a3.b>=a3.d)b1=!(b>=i||a>=g) +else b1=!1 +a1.b2(B.ho,b1)}a4=A.b_("newChild") +b1=a7.cu +i=b1==null?a8:b1.a!==0 +if(i===!0){b1.toString +i=new A.aT(b1,A.m(b1).h("aT<1>")) +a5=i.gX(i) +if(!a5.t())A.a2(A.bJ()) +b1=b1.v(0,a5.gC(a5)) +b1.toString +if(a4.b!==a4)A.a2(A.TY(a4.a)) +a4.b=b1}else{a6=new A.vm() +b1=A.EN(a6,a7.R5(a6)) +if(a4.b!==a4)A.a2(A.TY(a4.a)) +a4.b=b1}if(b1===a4)A.a2(A.hp(a4.a)) +J.aiy(b1,a1) +if(!b1.w.k(0,a0)){b1.w=a0 +b1.eK()}b1=a4.b +if(b1===a4)A.a2(A.hp(a4.a)) +i=b1.d +i.toString +s.l(0,i,b1) +b1=a4.b +if(b1===a4)A.a2(A.hp(a4.a)) +a9.push(b1) +n=a2 +o=c}a7.cu=s +b2.jk(0,a9,b3)}, +R5(a){return new A.WX(this,a)}, +l1(){this.u4() +this.cu=null}} +A.X_.prototype={ +$1(a){return a.x=null}, +$S:243} +A.WY.prototype={ +$1(a){return!0}, +$S:41} +A.X1.prototype={ +$1(a){var s=a.w +s===$&&A.c() +return s.c!==B.c1}, +$S:244} +A.WZ.prototype={ +$2(a,b){return this.a.a.bM(a,b)}, +$S:20} +A.X0.prototype={ +$2(a,b){var s=this.a.a +s.toString +a.f9(s,b)}, +$S:12} +A.WX.prototype={ +$0(){var s=this.a,r=s.cu.i(0,this.b) +r.toString +s.oZ(s,r.w)}, +$S:0} +A.iV.prototype={ +gn(a){var s=this.w +s===$&&A.c() +return s}, +Vg(){var s=this,r=s.CG(),q=s.w +q===$&&A.c() +if(q.k(0,r))return +s.w=r +s.ao()}, +CG(){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=g.d +if(f==null||g.e==null)return B.FC +s=f.a +r=g.e.a +f=g.b +q=f.pq(new A.bo(s,B.G)) +p=s===r?q:f.pq(new A.bo(r,B.G)) +f=f.J +o=f.r +o.toString +n=s>r!==(B.S===o) +m=A.Co(g.gfj().a,g.gfj().b,0) +m.fp(m) +o=A.cf(m,q) +l=f.grV() +k=n?B.uW:B.uV +j=A.cf(m,p) +f=f.grV() +i=n?B.uV:B.uW +h=g.d.a===g.e.a?B.FE:B.hn +return new A.k6(new A.lW(o,l,k),new A.lW(j,f,i),h,!0)}, +ld(a){var s=this,r=A.b_("result"),q=s.d,p=s.e,o=a.a +switch(o.a){case 0:case 1:r.sbH(s.Xv(t.ib.a(a).b,o===B.cZ)) +break +case 2:s.e=s.d=null +r.sbH(B.c0) +break +case 3:o=s.a +s.d=new A.bo(o.a,B.G) +s.e=new A.bo(o.b,B.am) +r.sbH(B.c0) +break +case 4:r.sbH(s.Tz(t.k2.a(a).gA0())) +break +case 5:t.uQ.a(a) +r.sbH(s.SY(a.gHS(a),a.gfD(),a.ga36())) +break +case 6:t.sQ.a(a) +r.sbH(s.SH(a.gxx(a),a.gfD(),a.gHa(a))) +break}if(!J.e(q,s.d)||!J.e(p,s.e)){s.b.aB() +s.Vg()}return r.ap()}, +Xv(a,b){var s,r,q,p,o,n,m=this +if(b)m.e=null +else m.d=null +s=m.b +r=s.bs(0,null) +r.fp(r) +q=A.cf(r,a) +p=m.gfj() +if(p.gS(p))return A.acP(m.gfj(),q) +p=m.gfj() +o=s.J.r +o.toString +n=m.BI(s.fP(A.amU(p,q,o))) +if(b)m.e=n +else m.d=n +s=n.a +p=m.a +if(s===p.b)return B.aH +if(s===p.a)return B.aI +return A.acP(m.gfj(),q)}, +BI(a){var s,r=a.a,q=this.a,p=q.b +if(r<=p)s=r===p&&a.b===B.G +else s=!0 +if(s)return new A.bo(p,B.am) +q=q.a +if(r=p)r.b=q.b=new A.bo(n,B.G) +else{r.b=new A.bo(s.a,B.G) +q.b=new A.bo(p,B.am)}o.d=r.ap() +o.e=q.ap() +return B.af}, +SH(a,b,c){var s,r,q,p,o,n,m,l=this,k=l.b,j=k.bs(0,null) +if(j.fp(j)===0)switch(c){case B.ef:case B.d0:return B.aI +case B.eg:case B.d_:return B.aH}s=A.cf(j,new A.q(a,0)).a +switch(c){case B.ef:case B.eg:if(b){k=l.e +k.toString +r=k}else{k=l.d +k.toString +r=k}q=l.TT(r,!1,s) +p=q.a +o=q.b +break +case B.d_:case B.d0:n=l.e +if(n==null){n=new A.bo(l.a.b,B.am) +l.e=n +r=n}else r=n +n=l.d +if(n==null){l.d=r +m=r}else m=n +p=k.fP(new A.q(s,k.pq(b?r:m).b-k.J.grV()/2)) +o=B.af +break +default:p=null +o=null}if(b)l.e=p +else l.d=p +return o}, +SY(a,b,c){var s,r,q,p,o,n,m=this,l=m.e +if(l==null){l=m.a +l=a?new A.bo(l.a,B.G):new A.bo(l.b,B.am) +m.e=l +s=l}else s=l +l=m.d +if(l==null){m.d=s +r=s}else r=l +s=b?s:r +if(a&&s.a===m.a.b)return B.aH +l=!a +if(l&&s.a===m.a.a)return B.aI +switch(c){case B.Ht:l=m.a +q=m.vD(s,a,new A.zo(B.d.am(m.c,l.a,l.b))) +p=B.af +break +case B.Hu:l=m.b.J +o=l.d +o.toString +l=l.a +l.toString +l=new A.G7(o,l) +p=new A.a4K(l.gWJ(),l) +l.c=p +q=m.vD(s,a,p) +p=B.af +break +case B.Hv:q=m.UK(s,a,new A.U2(m)) +p=B.af +break +case B.Hw:o=m.a +n=o.a +o=o.b +q=m.vD(s,a,new A.Qf(B.d.am(m.c,n,o))) +if(a&&q.a===o)p=B.aH +else p=l&&q.a===n?B.aI:B.af +break +default:p=null +q=null}if(b)m.e=q +else m.d=q +return p}, +vD(a,b,c){var s,r=a.a +if(b){r=c.fQ(r) +s=r==null?this.a.b:r}else{r=c.fN(r-1) +s=r==null?this.a.a:r}return new A.bo(s,B.G)}, +UK(a,b,c){var s,r,q,p,o=this +switch(a.b.a){case 0:s=a.a +if(s<1&&!b)return B.Hy +r=o.a.a +s=new A.zo(o.c).fN(r+s) +if(s==null)s=r +q=Math.max(0,s)-1 +break +case 1:q=a.a +break +default:q=null}if(b){s=c.fQ(q) +p=s==null?o.a.b:s}else{s=c.fN(q) +p=s==null?o.a.a:s}return new A.bo(p,B.G)}, +TT(a,b,c){var s,r,q,p,o,n,m,l=this,k=l.b,j=k.J,i=j.dy +if(i==null)i=j.dy=j.a.Gu() +s=k.oN(a,B.A) +j=i.length +r=j-1 +for(q=s.b,p=0;pq){r=J.aic(o) +break}}if(b&&r===i.length-1)n=new A.bo(l.a.b,B.am) +else if(!b&&r===0)n=new A.bo(l.a.a,B.G) +else n=l.BI(k.fP(new A.q(c,i[b?r+1:r-1].gnd()))) +k=n.a +j=l.a +if(k===j.a)m=B.aI +else m=k===j.b?B.aH:B.af +return new A.bb(n,m,t.nz)}, +Vx(a){var s,r,q,p,o=this +if(o.d==null||o.e==null)return!1 +s=A.b_("currentStart") +r=A.b_("currentEnd") +q=o.d +q.toString +p=o.e +p.toString +if(A.a8X(q,p)>0){s.b=q +r.b=p}else{s.b=p +r.b=q}return A.a8X(s.ap(),a)>=0&&A.a8X(r.ap(),a)<=0}, +bs(a,b){var s=A.Co(this.gfj().a,this.gfj().b,0) +s.cC(0,this.b.bs(0,b)) +return s}, +hx(a,b){if(this.b.b==null)return}, +gfj(){var s,r,q,p,o,n,m=this,l=m.x +if(l==null){l=m.b +s=m.a +r=s.a +q=l.zO(A.a_i(B.G,r,s.b,!1)) +if(q.length!==0){l=B.b.gG(q) +p=new A.C(l.a,l.b,l.c,l.d) +for(o=1;o0 +r.jZ$=p +if(r.F$!=null&&s!==p)r.og() +r.a1j() +if(q===0||r.hi$===0)r.b0()}}, +lL(a){var s=this.ll$ +return s.gn(s)>0}, +fM(a){var s,r=this.F$ +if(r!=null)if(this.hi$===0){s=this.xJ$ +s.toString}else s=!0 +else s=!1 +if(s){r.toString +a.$1(r)}}} +A.DN.prototype={} +A.qz.prototype={ +Z(a,b){var s=this.a +return s==null?null:s.Z(0,b)}, +H(a,b){var s=this.a +return s==null?null:s.H(0,b)}, +j(a){return"CustomClipper"}} +A.m_.prototype={ +th(a){return this.b.ez(new A.C(0,0,0+a.a,0+a.b),this.c)}, +tJ(a){if(A.w(a)!==B.Mc)return!0 +t.qm.a(a) +return!a.b.k(0,this.b)||a.c!=this.c}} +A.pp.prototype={ +snn(a){var s,r=this,q=r.A +if(q==a)return +r.A=a +s=a==null +if(s||q==null||A.w(a)!==A.w(q)||a.tJ(q))r.pD() +if(r.b!=null){if(q!=null)q.H(0,r.gpC()) +if(!s)a.Z(0,r.gpC())}}, +ak(a){var s +this.mo(a) +s=this.A +if(s!=null)s.Z(0,this.gpC())}, +ag(a){var s=this.A +if(s!=null)s.H(0,this.gpC()) +this.kC(0)}, +pD(){this.a6=null +this.aB() +this.b0()}, +sl2(a){if(a!==this.au){this.au=a +this.aB()}}, +bQ(){var s,r=this,q=r.k3 +q=q!=null?q:null +r.u8() +s=r.k3 +s.toString +if(!J.e(q,s))r.a6=null}, +iK(){var s,r,q=this +if(q.a6==null){s=q.A +if(s==null)s=null +else{r=q.k3 +r.toString +r=s.th(r) +s=r}q.a6=s==null?q.gph():s}}, +jR(a){var s,r=this +switch(r.au.a){case 0:return null +case 1:case 2:case 3:if(r.A==null)s=null +else{s=r.k3 +s=new A.C(0,0,0+s.a,0+s.b)}if(s==null){s=r.k3 +s=new A.C(0,0,0+s.a,0+s.b)}return s}}, +m(){this.dI=null +this.iy()}} +A.DQ.prototype={ +gph(){var s=this.k3 +return new A.C(0,0,0+s.a,0+s.b)}, +bM(a,b){var s=this +if(s.A!=null){s.iK() +if(!s.a6.q(0,b))return!1}return s.hL(a,b)}, +aC(a,b){var s,r,q=this,p=q.F$ +if(p!=null){s=q.ch +if(q.au!==B.w){q.iK() +p=q.cx +p===$&&A.c() +r=q.a6 +r.toString +s.saY(0,a.ov(p,b,r,A.fC.prototype.gkh.call(q),q.au,t.iM.a(s.a)))}else{a.f9(p,b) +s.saY(0,null)}}else q.ch.saY(0,null)}} +A.DP.prototype={ +gph(){var s=$.ae().c9(),r=this.k3 +s.kY(new A.C(0,0,0+r.a,0+r.b)) +return s}, +bM(a,b){var s=this +if(s.A!=null){s.iK() +if(!s.a6.q(0,b))return!1}return s.hL(a,b)}, +aC(a,b){var s,r,q,p,o=this,n=o.F$ +if(n!=null){s=o.ch +if(o.au!==B.w){o.iK() +n=o.cx +n===$&&A.c() +r=o.k3 +q=r.a +r=r.b +p=o.a6 +p.toString +s.saY(0,a.Jt(n,b,new A.C(0,0,0+q,0+r),p,A.fC.prototype.gkh.call(o),o.au,t.bN.a(s.a)))}else{a.f9(n,b) +s.saY(0,null)}}else o.ch.saY(0,null)}} +A.wX.prototype={ +sds(a,b){if(this.U===b)return +this.U=b +this.aB()}, +sbA(a,b){if(this.bC.k(0,b))return +this.bC=b +this.aB()}, +sac(a,b){if(this.b5.k(0,b))return +this.b5=b +this.aB()}, +e4(a){this.fZ(a) +a.sds(0,this.U)}} +A.E6.prototype={ +sc_(a,b){if(this.hi===b)return +this.hi=b +this.pD()}, +sYm(a,b){if(J.e(this.jZ,b))return +this.jZ=b +this.pD()}, +gph(){var s,r,q=this.k3,p=0+q.a +q=0+q.b +switch(this.hi.a){case 0:s=this.jZ +if(s==null)s=B.ab +return s.dh(new A.C(0,0,p,q)) +case 1:s=(p-0)/2 +r=(q-0)/2 +return new A.fz(0,0,p,q,s,r,s,r,s,r,s,r,s===r)}}, +bM(a,b){var s=this +if(s.A!=null){s.iK() +if(!s.a6.q(0,b))return!1}return s.hL(a,b)}, +aC(a,b){var s,r,q,p,o,n,m,l,k,j,i=this +if(i.F$==null){i.ch.saY(0,null) +return}i.iK() +s=i.a6.cE(b) +r=$.ae() +q=r.c9() +q.en(s) +p=a.gby(a) +if(i.U!==0&&!0){p.bK(new A.C(s.a,s.b,s.c,s.d).dc(20),$.aac()) +o=i.bC +n=i.U +m=i.b5 +p.he(q,o,n,(m.gn(m)>>>24&255)!==255)}l=i.au===B.bH +if(!l){r=r.b9() +r.sac(0,i.b5) +p.cg(s,r)}r=i.cx +r===$&&A.c() +o=i.k3 +n=o.a +o=o.b +m=i.a6 +m.toString +k=i.ch +j=t.bG.a(k.a) +k.saY(0,a.a1X(r,b,new A.C(0,0,0+n,0+o),m,new A.X2(i,l),i.au,j))}} +A.X2.prototype={ +$2(a,b){var s,r +if(this.b){s=a.gby(a) +r=$.ae().b9() +r.sac(0,this.a.b5) +s.hd(r)}this.a.hM(a,b)}, +$S:12} +A.E7.prototype={ +gph(){var s=$.ae().c9(),r=this.k3 +s.kY(new A.C(0,0,0+r.a,0+r.b)) +return s}, +bM(a,b){var s=this +if(s.A!=null){s.iK() +if(!s.a6.q(0,b))return!1}return s.hL(a,b)}, +aC(a,b){var s,r,q,p,o,n,m,l,k,j=this +if(j.F$==null){j.ch.saY(0,null) +return}j.iK() +s=j.k3 +r=b.a +q=b.b +p=s.a +s=s.b +o=j.a6.cE(b) +n=a.gby(a) +if(j.U!==0&&!0){n.bK(new A.C(r,q,r+p,q+s).dc(20),$.aac()) +s=j.bC +r=j.U +q=j.b5 +n.he(o,s,r,(q.gn(q)>>>24&255)!==255)}m=j.au===B.bH +if(!m){s=$.ae().b9() +s.sac(0,j.b5) +n.cs(o,s)}s=j.cx +s===$&&A.c() +r=j.k3 +q=r.a +r=r.b +p=j.a6 +p.toString +l=j.ch +k=t.bN.a(l.a) +l.saY(0,a.Jt(s,b,new A.C(0,0,0+q,0+r),p,new A.X3(j,m),j.au,k))}} +A.X3.prototype={ +$2(a,b){var s,r +if(this.b){s=a.gby(a) +r=$.ae().b9() +r.sac(0,this.a.b5) +s.hd(r)}this.a.hM(a,b)}, +$S:12} +A.Aw.prototype={ +D(){return"DecorationPosition."+this.b}} +A.DV.prototype={ +sZD(a){var s,r=this +if(a.k(0,r.a6))return +s=r.A +if(s!=null)s.m() +r.A=null +r.a6=a +r.aB()}, +sbp(a,b){if(b===this.au)return +this.au=b +this.aB()}, +swW(a){if(a.k(0,this.bG))return +this.bG=a +this.aB()}, +ag(a){var s=this,r=s.A +if(r!=null)r.m() +s.A=null +s.kC(0) +s.aB()}, +j4(a){var s=this.a6,r=this.k3 +r.toString +return s.Id(r,a,this.bG.d)}, +aC(a,b){var s,r,q,p=this,o=p.A +if(o==null)o=p.A=p.a6.GL(p.geb()) +s=p.bG +r=p.k3 +r.toString +q=new A.rx(s.a,s.b,s.c,s.d,r,s.f) +if(p.au===B.fi){o.yU(a.gby(a),b,q) +if(p.a6.gyc())a.Af()}p.hM(a,b) +if(p.au===B.jr){o=p.A +o.toString +o.yU(a.gby(a),b,q) +if(p.a6.gyc())a.Af()}}} +A.Eg.prototype={ +sJf(a,b){return}, +seP(a){var s=this +if(J.e(s.a6,a))return +s.a6=a +s.aB() +s.b0()}, +sbR(a){var s=this +if(s.au==a)return +s.au=a +s.aB() +s.b0()}, +gqo(){return!1}, +sbh(a,b){var s,r=this +if(J.e(r.dI,b))return +s=new A.aS(new Float64Array(16)) +s.az(b) +r.dI=s +r.aB() +r.b0()}, +sk7(a){return}, +guX(){var s,r,q,p,o,n=this,m=n.a6,l=m==null?null:m.Y(n.au) +if(l==null)return n.dI +s=new A.aS(new Float64Array(16)) +s.cP() +m=n.k3 +r=m.a/2 +q=m.b/2 +m=r+l.a*r +p=q+l.b*q +o=new A.q(m,p) +s.ae(0,m,p) +m=n.dI +m.toString +s.cC(0,m) +s.ae(0,-o.a,-o.b) +return s}, +bM(a,b){return this.d9(a,b)}, +d9(a,b){var s=this.bG?this.guX():null +return a.FW(new A.Xd(this),b,s)}, +aC(a,b){var s,r,q,p,o,n,m,l=this +if(l.F$!=null){s=l.guX() +s.toString +r=A.a88(s) +if(r==null){q=s.H3() +if(q===0||!isFinite(q)){l.ch.saY(0,null) +return}p=l.cx +p===$&&A.c() +o=A.fC.prototype.gkh.call(l) +n=l.ch +m=n.a +n.saY(0,a.rZ(p,b,s,o,m instanceof A.vk?m:null))}else{l.hM(a,b.T(0,r)) +l.ch.saY(0,null)}}}, +d5(a,b){var s=this.guX() +s.toString +b.cC(0,s)}} +A.Xd.prototype={ +$2(a,b){return this.a.u7(a,b)}, +$S:20} +A.DZ.prototype={ +sa2M(a){var s=this +if(s.A.k(0,a))return +s.A=a +s.aB() +s.b0()}, +bM(a,b){return this.d9(a,b)}, +d9(a,b){var s,r,q=this +if(q.a6){s=q.A +r=q.k3 +r=new A.q(s.a*r.a,s.b*r.b) +s=r}else s=null +return a.qk(new A.WL(q),s,b)}, +aC(a,b){var s,r,q=this +if(q.F$!=null){s=q.A +r=q.k3 +q.hM(a,new A.q(b.a+s.a*r.a,b.b+s.b*r.b))}}, +d5(a,b){var s=this.A,r=this.k3 +b.ae(0,s.a*r.a,s.b*r.b)}} +A.WL.prototype={ +$2(a,b){return this.a.u7(a,b)}, +$S:20} +A.E8.prototype={ +nq(a){return new A.S(A.O(1/0,a.a,a.b),A.O(1/0,a.c,a.d))}, +i4(a,b){var s,r=this,q=null +if(t.Y.b(a)){s=r.cI +return s==null?q:s.$1(a)}if(t.f2.b(a))return q +if(t.Cs.b(a)){s=r.cA +return s==null?q:s.$1(a)}if(t.hV.b(a))return q +if(t.AJ.b(a)){s=r.U +return s==null?q:s.$1(a)}if(t.EL.b(a)){s=r.bC +return s==null?q:s.$1(a)}if(t.eB.b(a))return q +if(t.zv.b(a))return q +if(t.zs.b(a)){s=r.fv +return s==null?q:s.$1(a)}}} +A.E3.prototype={ +bM(a,b){return this.Nv(a,b)&&!0}, +i4(a,b){var s=this.cA +if(s!=null&&t.hV.b(a))return s.$1(a)}, +gGW(a){return this.U}, +gzL(){return this.bC}, +ak(a){this.mo(a) +this.bC=!0}, +ag(a){this.bC=!1 +this.kC(0)}, +nq(a){return new A.S(A.O(1/0,a.a,a.b),A.O(1/0,a.c,a.d))}, +$iiq:1, +gyE(a){return this.es}, +gyF(a){return this.bk}} +A.Eb.prototype={ +gdK(){return!0}} +A.u2.prototype={ +sIi(a){var s,r=this +if(a===r.A)return +r.A=a +s=r.a6 +if(s==null||!s)r.b0()}, +sy6(a){var s=this,r=s.a6 +if(a==r)return +if(r==null)r=s.A +s.a6=a +if(r!==(a==null?s.A:a))s.b0()}, +bM(a,b){return!this.A&&this.hL(a,b)}, +fM(a){var s,r=this.F$ +if(r!=null){s=this.a6 +s=!(s==null?this.A:s)}else s=!1 +if(s){r.toString +a.$1(r)}}} +A.E4.prototype={ +srG(a){var s=this +if(a===s.A)return +s.A=a +s.a7() +s.rz()}, +eX(a){if(this.A)return null +return this.Ol(a)}, +gkt(){return this.A}, +cf(a){if(this.A)return new A.S(A.O(0,a.a,a.b),A.O(0,a.c,a.d)) +return this.Nu(a)}, +or(){this.Nm()}, +bQ(){var s,r=this +if(r.A){s=r.F$ +if(s!=null)s.j9(t.k.a(A.z.prototype.ga5.call(r)))}else r.u8()}, +bM(a,b){return!this.A&&this.hL(a,b)}, +lL(a){return!this.A}, +aC(a,b){if(this.A)return +this.hM(a,b)}, +fM(a){if(this.A)return +this.u5(a)}} +A.tZ.prototype={ +sFI(a){if(this.A===a)return +this.A=a +this.b0()}, +sy6(a){return}, +bM(a,b){return this.A?this.k3.q(0,b):this.hL(a,b)}, +fM(a){var s,r,q=this.F$ +if(q!=null){s=this.a6 +r=this.A +s=!r}else s=!1 +if(s){q.toString +a.$1(q)}}} +A.iz.prototype={ +sa2V(a){if(A.a9L(a,this.cI))return +this.cI=a +this.b0()}, +sje(a){var s,r=this +if(J.e(r.es,a))return +s=r.es +r.es=a +if(a!=null!==(s!=null))r.b0()}, +sjd(a){var s,r=this +if(J.e(r.cA,a))return +s=r.cA +r.cA=a +if(a!=null!==(s!=null))r.b0()}, +sJ9(a){var s,r=this +if(J.e(r.bk,a))return +s=r.bk +r.bk=a +if(a!=null!==(s!=null))r.b0()}, +sJe(a){var s,r=this +if(J.e(r.U,a))return +s=r.U +r.U=a +if(a!=null!==(s!=null))r.b0()}, +e4(a){var s,r=this +r.fZ(a) +if(r.es!=null){s=r.cI +s=s==null||s.q(0,B.d1)}else s=!1 +if(s)a.sje(r.es) +if(r.cA!=null){s=r.cI +s=s==null||s.q(0,B.u7)}else s=!1 +if(s)a.sjd(r.cA) +if(r.bk!=null){s=r.cI +if(s==null||s.q(0,B.d5))a.srK(r.gVq()) +s=r.cI +if(s==null||s.q(0,B.d4))a.srJ(r.gVo())}if(r.U!=null){s=r.cI +if(s==null||s.q(0,B.d2))a.srL(r.gVs()) +s=r.cI +if(s==null||s.q(0,B.d3))a.srI(r.gVm())}}, +Vp(){var s,r,q=this.bk +if(q!=null){s=this.k3 +r=s.a*-0.8 +s=s.h7(B.h) +s=A.cf(this.bs(0,null),s) +q.$1(new A.hb(null,new A.q(r,0),r,s))}}, +Vr(){var s,r,q=this.bk +if(q!=null){s=this.k3 +r=s.a*0.8 +s=s.h7(B.h) +s=A.cf(this.bs(0,null),s) +q.$1(new A.hb(null,new A.q(r,0),r,s))}}, +Vt(){var s,r,q=this.U +if(q!=null){s=this.k3 +r=s.b*-0.8 +s=s.h7(B.h) +s=A.cf(this.bs(0,null),s) +q.$1(new A.hb(null,new A.q(0,r),r,s))}}, +Vn(){var s,r,q=this.U +if(q!=null){s=this.k3 +r=s.b*0.8 +s=s.h7(B.h) +s=A.cf(this.bs(0,null),s) +q.$1(new A.hb(null,new A.q(0,r),r,s))}}} +A.u5.prototype={ +sJq(a){var s=this +if(s.A===a)return +s.A=a +s.Fc(a) +s.b0()}, +sZ3(a){if(this.a6===a)return +this.a6=a +this.b0()}, +sa_a(a){if(this.au===a)return +this.au=a +this.b0()}, +sa_8(a){return}, +Fc(a){var s=this,r=a.fy +r=a.fx +r=r==null?null:new A.cb(r,B.a1) +s.dI=r +s.cY=null +s.hk=null +s.fA=null +s.i3=null}, +sbR(a){if(this.xL==a)return +this.xL=a +this.b0()}, +fM(a){this.u5(a)}, +e4(a){var s,r,q=this +q.fZ(a) +a.a=q.a6 +a.b=q.au +s=q.A.a +if(s!=null){a.b2(B.uh,!0) +a.b2(B.ua,s)}s=q.A.f +if(s!=null)a.b2(B.ui,s) +s=q.A.w +if(s!=null)a.b2(B.ug,s) +s=q.A.as +if(s!=null)a.b2(B.ud,s) +s=q.A.at +if(s!=null)a.b2(B.ue,s) +s=q.A.db +if(s!=null)a.b2(B.ub,s) +s=q.dI +if(s!=null){a.R8=s +a.d=!0}s=q.cY +if(s!=null){a.RG=s +a.d=!0}s=q.hk +if(s!=null){a.rx=s +a.d=!0}s=q.fA +if(s!=null){a.ry=s +a.d=!0}s=q.i3 +if(s!=null){a.to=s +a.d=!0}s=q.A +r=s.p2 +if(r!=null){a.x1=r +a.d=!0}s.p3!=null +s=q.A.cx +if(s!=null)a.b2(B.uc,s) +s=q.A.cy +if(s!=null)a.b2(B.uf,s) +s=q.xL +if(s!=null){a.y2=s +a.d=!0}s=q.A +r=s.R8 +if(r!=null){a.k1=r +a.d=!0}s=s.RG +if(s!=null)a.wE(s) +if(q.A.rx!=null)a.sje(q.gVu()) +if(q.A.ry!=null)a.sjd(q.gVk()) +if(q.A.al!=null)a.srH(q.gVi())}, +Vv(){var s=this.A.rx +if(s!=null)s.$0()}, +Vl(){var s=this.A.ry +if(s!=null)s.$0()}, +Vj(){var s=this.A.al +if(s!=null)s.$0()}} +A.DO.prototype={ +sYl(a){return}, +e4(a){this.fZ(a) +a.c=!0}} +A.E2.prototype={ +e4(a){this.fZ(a) +a.d=a.p3=a.a=!0}} +A.DX.prototype={ +sa_9(a){if(a===this.A)return +this.A=a +this.b0()}, +fM(a){if(this.A)return +this.u5(a)}} +A.E0.prototype={ +sa0C(a,b){if(b===this.A)return +this.A=b +this.b0()}, +e4(a){this.fZ(a) +a.k2=this.A +a.d=!0}} +A.u0.prototype={ +sn(a,b){if(this.A.k(0,b))return +this.A=b +this.aB()}, +sLv(a){return}, +aC(a,b){var s=this,r=s.A,q=s.k3 +q.toString +a.Jw(new A.pX(r,q,b,A.y(t.S,t.O),A.au(),s.$ti.h("pX<1>")),A.fC.prototype.gkh.call(s),b)}, +gqo(){return!0}} +A.Ke.prototype={ +ak(a){var s=this +s.mo(a) +s.ll$.Z(0,s.gq7()) +s.wq()}, +ag(a){this.ll$.H(0,this.gq7()) +this.kC(0)}, +aC(a,b){if(this.hi$===0)return +this.hM(a,b)}} +A.wY.prototype={ +ak(a){var s +this.eD(a) +s=this.F$ +if(s!=null)s.ak(a)}, +ag(a){var s +this.dU(0) +s=this.F$ +if(s!=null)s.ag(0)}} +A.wZ.prototype={ +eX(a){var s=this.F$ +if(s!=null)return s.kl(a) +return this.AT(a)}} +A.k7.prototype={ +D(){return"SelectionResult."+this.b}} +A.d1.prototype={$ia7:1} +A.EJ.prototype={ +soy(a){var s=this,r=s.lm$ +if(a==r)return +if(a==null)s.H(0,s.gEt()) +else if(r==null)s.Z(0,s.gEt()) +s.Es() +s.lm$=a +s.Eu()}, +Eu(){var s=this +if(s.lm$==null){s.k0$=!1 +return}if(s.k0$&&!s.gn(s).d){s.lm$.v(0,s) +s.k0$=!1}else if(!s.k0$&&s.gn(s).d){s.lm$.B(0,s) +s.k0$=!0}}, +Es(){var s=this +if(s.k0$){s.lm$.v(0,s) +s.k0$=!1}}} +A.uA.prototype={ +D(){return"SelectionEventType."+this.b}} +A.oB.prototype={ +D(){return"TextGranularity."+this.b}} +A.Yj.prototype={} +A.qp.prototype={} +A.lV.prototype={} +A.oi.prototype={ +D(){return"SelectionExtendDirection."+this.b}} +A.uC.prototype={ +D(){return"SelectionStatus."+this.b}} +A.k6.prototype={ +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.k6&&J.e(b.a,s.a)&&J.e(b.b,s.b)&&b.c===s.c&&b.d===s.d}, +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.lW.prototype={ +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.lW&&b.a.k(0,s.a)&&b.b===s.b&&b.c===s.c}, +gu(a){return A.L(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.Fz.prototype={ +D(){return"TextSelectionHandleType."+this.b}} +A.Ec.prototype={ +eX(a){var s,r,q=this.F$ +if(q!=null){s=q.kl(a) +r=q.e +r.toString +t.r.a(r) +if(s!=null)s+=r.a.b}else s=this.AT(a) +return s}, +aC(a,b){var s,r=this.F$ +if(r!=null){s=r.e +s.toString +a.f9(r,t.r.a(s).a.T(0,b))}}, +d9(a,b){var s,r=this.F$ +if(r!=null){s=r.e +s.toString +t.r.a(s) +return a.qk(new A.X4(b,s,r),s.a,b)}return!1}} +A.X4.prototype={ +$2(a,b){return this.c.bM(a,b)}, +$S:20} +A.E5.prototype={ +pZ(){var s=this +if(s.A!=null)return +s.A=s.a6.Y(s.au)}, +sc2(a,b){var s=this +if(s.a6.k(0,b))return +s.a6=b +s.A=null +s.a7()}, +sbR(a){var s=this +if(s.au==a)return +s.au=a +s.A=null +s.a7()}, +cf(a){var s,r,q,p=this +p.pZ() +if(p.F$==null){s=p.A +return a.bI(new A.S(s.a+s.c,s.b+s.d))}s=p.A +s.toString +r=a.H_(s) +q=p.F$.ip(r) +s=p.A +return a.bI(new A.S(s.a+q.a+s.c,s.b+q.b+s.d))}, +bQ(){var s,r,q,p,o,n,m=this,l=t.k.a(A.z.prototype.ga5.call(m)) +m.pZ() +if(m.F$==null){s=m.A +m.k3=l.bI(new A.S(s.a+s.c,s.b+s.d)) +return}s=m.A +s.toString +r=l.H_(s) +m.F$.ck(r,!0) +s=m.F$ +q=s.e +q.toString +t.r.a(q) +p=m.A +o=p.a +n=p.b +q.a=new A.q(o,n) +s=s.k3 +m.k3=l.bI(new A.S(o+s.a+p.c,n+s.b+p.d))}} +A.DM.prototype={ +pZ(){var s=this +if(s.A!=null)return +s.A=s.a6.Y(s.au)}, +seP(a){var s=this +if(s.a6.k(0,a))return +s.a6=a +s.A=null +s.a7()}, +sbR(a){var s=this +if(s.au==a)return +s.au=a +s.A=null +s.a7()}, +wG(){var s,r,q,p,o=this +o.pZ() +s=o.F$ +r=s.e +r.toString +t.r.a(r) +q=o.A +q.toString +p=o.k3 +p.toString +s=s.k3 +s.toString +r.a=q.jI(t.uu.a(p.a4(0,s)))}} +A.E9.prototype={ +sa2Y(a){if(this.cA==a)return +this.cA=a +this.a7()}, +sa0m(a){if(this.bk==a)return +this.bk=a +this.a7()}, +cf(a){var s,r,q=this,p=q.cA!=null||a.b===1/0,o=q.bk!=null||a.d===1/0,n=q.F$ +if(n!=null){s=n.ip(new A.aI(0,a.b,0,a.d)) +if(p){n=q.cA +if(n==null)n=1 +n=s.a*n}else n=1/0 +if(o){r=q.bk +if(r==null)r=1 +r=s.b*r}else r=1/0 +return a.bI(new A.S(n,r))}n=p?0:1/0 +return a.bI(new A.S(n,o?0:1/0))}, +bQ(){var s,r,q=this,p=t.k.a(A.z.prototype.ga5.call(q)),o=q.cA!=null||p.b===1/0,n=q.bk!=null||p.d===1/0,m=q.F$ +if(m!=null){m.ck(new A.aI(0,p.b,0,p.d),!0) +if(o){m=q.F$.k3.a +s=q.cA +m*=s==null?1:s}else m=1/0 +if(n){s=q.F$.k3.b +r=q.bk +s*=r==null?1:r}else s=1/0 +q.k3=p.bI(new A.S(m,s)) +q.wG()}else{m=o?0:1/0 +q.k3=p.bI(new A.S(m,n?0:1/0))}}} +A.YQ.prototype={ +tn(a){return new A.S(A.O(1/0,a.a,a.b),A.O(1/0,a.c,a.d))}} +A.DU.prototype={ +sxb(a){var s=this,r=s.A +if(r===a)return +if(A.w(a)!==A.w(r)||a.md(r))s.a7() +s.A=a +s.b!=null}, +ak(a){this.Om(a)}, +ag(a){this.On(0)}, +cf(a){return a.bI(this.A.tn(a))}, +bQ(){var s,r,q,p,o,n,m=this,l=t.k,k=l.a(A.z.prototype.ga5.call(m)) +m.k3=k.bI(m.A.tn(k)) +if(m.F$!=null){s=m.A.zP(l.a(A.z.prototype.ga5.call(m))) +l=m.F$ +l.toString +k=s.a +r=s.b +q=k>=r +l.ck(s,!(q&&s.c>=s.d)) +l=m.F$ +p=l.e +p.toString +t.r.a(p) +o=m.A +n=m.k3 +n.toString +if(q&&s.c>=s.d)l=new A.S(A.O(0,k,r),A.O(0,s.c,s.d)) +else{l=l.k3 +l.toString}p.a=o.zX(n,l)}}} +A.x_.prototype={ +ak(a){var s +this.eD(a) +s=this.F$ +if(s!=null)s.ak(a)}, +ag(a){var s +this.dU(0) +s=this.F$ +if(s!=null)s.ag(0)}} +A.BE.prototype={ +D(){return"GrowthDirection."+this.b}} +A.kb.prototype={ +gIF(){return!1}, +Ye(a,b){var s=this.w +switch(A.b8(this.a).a){case 0:return new A.aI(b,a,s,s) +case 1:return new A.aI(s,s,b,a)}}, +Yd(){return this.Ye(1/0,0)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(!(b instanceof A.kb))return!1 +return b.a===s.a&&b.b===s.b&&b.d===s.d&&b.f===s.f&&b.r===s.r&&b.w===s.w&&b.x===s.x&&b.y===s.y&&b.Q===s.Q&&b.z===s.z}, +gu(a){var s=this +return A.L(s.a,s.b,s.d,s.f,s.r,s.w,s.x,s.y,s.Q,s.z,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a){var s=this,r=A.a([s.a.j(0),s.b.j(0),s.c.j(0),"scrollOffset: "+B.c.M(s.d,1),"remainingPaintExtent: "+B.c.M(s.r,1)],t.s),q=s.f +if(q!==0)r.push("overlap: "+B.c.M(q,1)) +r.push("crossAxisExtent: "+B.c.M(s.w,1)) +r.push("crossAxisDirection: "+s.x.j(0)) +r.push("viewportMainAxisExtent: "+B.c.M(s.y,1)) +r.push("remainingCacheExtent: "+B.c.M(s.Q,1)) +r.push("cacheOrigin: "+B.c.M(s.z,1)) +return"SliverConstraints("+B.b.bf(r,", ")+")"}} +A.F1.prototype={ +bW(){return"SliverGeometry"}} +A.oo.prototype={} +A.F2.prototype={ +j(a){return A.w(this.a).j(0)+"@(mainAxis: "+A.h(this.c)+", crossAxis: "+A.h(this.d)+")"}} +A.uO.prototype={ +j(a){var s=this.a +return"layoutOffset="+(s==null?"None":B.c.M(s,1))}} +A.kc.prototype={ +j(a){return"paintOffset="+A.h(this.a)}} +A.iC.prototype={} +A.cm.prototype={ +ga5(){return t.p.a(A.z.prototype.ga5.call(this))}, +gjq(){return this.gi9()}, +gi9(){var s=this,r=t.p +switch(A.b8(r.a(A.z.prototype.ga5.call(s)).a).a){case 0:return new A.C(0,0,0+s.id.c,0+r.a(A.z.prototype.ga5.call(s)).w) +case 1:return new A.C(0,0,0+r.a(A.z.prototype.ga5.call(s)).w,0+s.id.c)}}, +or(){}, +Ic(a,b,c){var s=this +if(c>=0&&c=0&&br;j=h,i=o){o=a3.In(p,!0) +if(o==null){n=a3.U$ +k=n.e +k.toString +m.a(k).a=0 +if(r===0){n.ck(p,!0) +o=a3.U$ +if(a5.a==null)a5.a=o +i=o +break}else{a3.id=A.m4(a4,!1,a4,a4,0,0,0,0,-r) +return}}n=a3.U$ +n.toString +h=j-a3.kj(n) +if(h<-1e-10){a3.id=A.m4(a4,!1,a4,a4,0,0,0,0,-h) +a7=a3.U$.e +a7.toString +m.a(a7).a=0 +return}n=o.e +n.toString +m.a(n).a=h +if(a5.a==null)a5.a=o}if(r<1e-10)while(!0){n=a3.U$ +n.toString +n=n.e +n.toString +m.a(n) +k=n.b +k.toString +if(!(k>0))break +n=n.a +n.toString +o=a3.In(p,!0) +k=a3.U$ +k.toString +h=n-a3.kj(k) +k=a3.U$.e +k.toString +m.a(k).a=0 +if(h<-1e-10){a3.id=A.m4(a4,!1,a4,a4,0,0,0,0,-h) +return}}if(i==null){o.ck(p,!0) +a5.a=o}a5.b=!0 +a5.c=o +n=o.e +n.toString +m.a(n) +k=n.b +k.toString +a5.d=k +n=n.a +n.toString +a5.e=n+a3.kj(o) +g=new A.X7(a5,a3,p) +for(f=0;a5.es+a6.r||s>0,a4,a4,a,a1,0,a,a4) +if(a===n)a7.R8=!0 +a7.xh()}} +A.X7.prototype={ +$0(){var s,r,q,p=this.a,o=p.c,n=p.a +if(o==n)p.b=!1 +s=this.b +o=o.e +o.toString +r=p.c=A.m(s).h("ar.1").a(o).af$ +o=r==null +if(o)p.b=!1 +q=++p.d +if(!p.b){if(!o){o=r.e +o.toString +o=t.D.a(o).b +o.toString +q=o!==q +o=q}else o=!0 +q=this.c +if(o){r=s.a0G(q,n,!0) +p.c=r +if(r==null)return!1}else r.ck(q,!0) +o=p.a=p.c}else o=r +n=o.e +n.toString +t.D.a(n) +q=p.e +n.a=q +p.e=q+s.kj(o) +return!0}, +$S:50} +A.hn.prototype={$icg:1} +A.Xb.prototype={ +eg(a){}} +A.hE.prototype={ +j(a){var s=this.b,r=this.nQ$?"keepAlive; ":"" +return"index="+A.h(s)+"; "+r+this.NY(0)}} +A.o6.prototype={ +eg(a){if(!(a.e instanceof A.hE))a.e=new A.hE(!1,null,null)}, +hP(a){var s +this.AV(a) +s=a.e +s.toString +if(!t.D.a(s).c)this.a0.xc(t.x.a(a))}, +y8(a,b,c){this.tV(0,b,c)}, +rD(a,b){var s,r=this,q=a.e +q.toString +t.D.a(q) +if(!q.c){r.Mi(a,b) +r.a0.xc(a) +r.a7()}else{s=r.a9 +if(s.i(0,q.b)===a)s.v(0,q.b) +r.a0.xc(a) +q=q.b +q.toString +s.l(0,q,a)}}, +v(a,b){var s=b.e +s.toString +t.D.a(s) +if(!s.c){this.Mk(0,b) +return}this.a9.v(0,s.b) +this.iR(b)}, +uQ(a,b){this.Iy(new A.X8(this,a,b),t.p)}, +C7(a){var s,r=this,q=a.e +q.toString +t.D.a(q) +if(q.nQ$){r.v(0,a) +s=q.b +s.toString +r.a9.l(0,s,a) +a.e=q +r.AV(a) +q.c=!0}else r.a0.JJ(a)}, +ak(a){var s,r,q +this.Oo(a) +for(s=this.a9,s=s.gaJ(s),s=new A.dy(J.am(s.a),s.b),r=A.m(s).z[1];s.t();){q=s.a;(q==null?r.a(q):q).ak(a)}}, +ag(a){var s,r,q +this.Op(0) +for(s=this.a9,s=s.gaJ(s),s=new A.dy(J.am(s.a),s.b),r=A.m(s).z[1];s.t();){q=s.a;(q==null?r.a(q):q).ag(0)}}, +ic(){this.Mj() +var s=this.a9 +s.gaJ(s).P(0,this.gza())}, +aR(a){var s +this.Aw(a) +s=this.a9 +s.gaJ(s).P(0,a)}, +fM(a){this.Aw(a)}, +XW(a,b){var s +this.uQ(a,null) +s=this.U$ +if(s!=null){s=s.e +s.toString +t.D.a(s).a=b +return!0}this.a0.R8=!0 +return!1}, +FN(){return this.XW(0,0)}, +In(a,b){var s,r,q,p=this,o=p.U$ +o.toString +o=o.e +o.toString +s=t.D +o=s.a(o).b +o.toString +r=o-1 +p.uQ(r,null) +o=p.U$ +o.toString +q=o.e +q.toString +q=s.a(q).b +q.toString +if(q===r){o.ck(a,b) +return p.U$}p.a0.R8=!0 +return null}, +a0G(a,b,c){var s,r,q,p=b.e +p.toString +s=t.D +p=s.a(p).b +p.toString +r=p+1 +this.uQ(r,b) +p=b.e +p.toString +q=A.m(this).h("ar.1").a(p).af$ +if(q!=null){p=q.e +p.toString +p=s.a(p).b +p.toString +p=p===r}else p=!1 +if(p){q.ck(a,c) +return q}this.a0.R8=!0 +return null}, +wV(a,b){var s={} +s.a=a +s.b=b +this.Iy(new A.Xa(s,this),t.p)}, +kj(a){switch(A.b8(t.p.a(A.z.prototype.ga5.call(this)).a).a){case 0:return a.k3.a +case 1:return a.k3.b}}, +y4(a,b,c){var s,r,q=this.bC$,p=A.aaE(a) +for(s=A.m(this).h("ar.1");q!=null;){if(this.a0u(p,q,b,c))return!0 +r=q.e +r.toString +q=s.a(r).b5$}return!1}, +wU(a){var s=a.e +s.toString +return t.D.a(s).a}, +lL(a){var s=t.ub.a(a.e) +return(s==null?null:s.b)!=null&&!this.a9.a3(0,s.b)}, +d5(a,b){var s +if(!this.lL(a)){s=b.a +s[0]=0 +s[1]=0 +s[2]=0 +s[3]=0 +s[4]=0 +s[5]=0 +s[6]=0 +s[7]=0 +s[8]=0 +s[9]=0 +s[10]=0 +s[11]=0 +s[12]=0 +s[13]=0 +s[14]=0 +s[15]=0}else this.Yb(a,b)}, +aC(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this,c=null +if(d.U$==null)return +s=t.p +switch(A.j4(s.a(A.z.prototype.ga5.call(d)).a,s.a(A.z.prototype.ga5.call(d)).b)){case B.u:r=b.T(0,new A.q(0,d.id.c)) +q=B.E6 +p=B.e3 +o=!0 +break +case B.aa:r=b +q=B.e3 +p=B.h4 +o=!1 +break +case B.t:r=b +q=B.h4 +p=B.e3 +o=!1 +break +case B.Z:r=b.T(0,new A.q(d.id.c,0)) +q=B.Ed +p=B.h4 +o=!0 +break +default:o=c +r=o +p=r +q=p}n=d.U$ +for(m=A.m(d).h("ar.1"),l=t.D;n!=null;){k=n.e +k.toString +k=l.a(k).a +k.toString +j=k-s.a(A.z.prototype.ga5.call(d)).d +k=r.a +i=q.a +k=k+i*j+p.a*0 +h=r.b +g=q.b +h=h+g*j+p.b*0 +f=new A.q(k,h) +if(o){e=d.kj(n) +f=new A.q(k+i*e,h+g*e)}if(j0)a.f9(n,f) +k=n.e +k.toString +n=m.a(k).af$}}} +A.X8.prototype={ +$1(a){var s=this.a,r=s.a9,q=this.b,p=this.c +if(r.a3(0,q)){r=r.v(0,q) +r.toString +q=r.e +q.toString +t.D.a(q) +s.iR(r) +r.e=q +s.tV(0,r,p) +q.c=!1}else s.a0.Zu(q,p)}, +$S:75} +A.Xa.prototype={ +$1(a){var s,r,q +for(s=this.a,r=this.b;s.a>0;){q=r.U$ +q.toString +r.C7(q);--s.a}for(;s.b>0;){q=r.bC$ +q.toString +r.C7(q);--s.b}s=r.a9 +s=s.gaJ(s) +q=A.m(s).h("b2") +B.b.P(A.aw(new A.b2(s,new A.X9(),q),!0,q.h("j.E")),r.a0.ga2c())}, +$S:75} +A.X9.prototype={ +$1(a){var s=a.e +s.toString +return!t.D.a(s).nQ$}, +$S:248} +A.x0.prototype={ +ak(a){var s,r,q +this.eD(a) +s=this.U$ +for(r=t.D;s!=null;){s.ak(a) +q=s.e +q.toString +s=r.a(q).af$}}, +ag(a){var s,r,q +this.dU(0) +s=this.U$ +for(r=t.D;s!=null;){s.ag(0) +q=s.e +q.toString +s=r.a(q).af$}}} +A.Kr.prototype={} +A.Ks.prototype={} +A.L8.prototype={ +ag(a){this.u2(0)}} +A.L9.prototype={} +A.u6.prototype={ +gwO(){var s=this,r=t.p +switch(A.j4(r.a(A.z.prototype.ga5.call(s)).a,r.a(A.z.prototype.ga5.call(s)).b)){case B.u:return s.bF.d +case B.aa:return s.bF.a +case B.t:return s.bF.b +case B.Z:return s.bF.c}}, +gY2(){var s=this,r=t.p +switch(A.j4(r.a(A.z.prototype.ga5.call(s)).a,r.a(A.z.prototype.ga5.call(s)).b)){case B.u:return s.bF.b +case B.aa:return s.bF.c +case B.t:return s.bF.d +case B.Z:return s.bF.a}}, +gZx(){switch(A.b8(t.p.a(A.z.prototype.ga5.call(this)).a).a){case 0:var s=this.bF +return s.gb3(s)+s.gb8(s) +case 1:return this.bF.gcj()}}, +eg(a){if(!(a.e instanceof A.kc))a.e=new A.kc(B.h)}, +bQ(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0=this,a1=null,a2=t.p,a3=a2.a(A.z.prototype.ga5.call(a0)),a4=a0.gwO() +a0.gY2() +s=a0.bF +s.toString +a2=s.Y6(A.b8(a2.a(A.z.prototype.ga5.call(a0)).a)) +r=a0.gZx() +if(a0.F$==null){q=a0.h6(a3,0,a2) +a0.id=A.m4(a0.ni(a3,0,a2),!1,a1,a1,a2,Math.min(q,a3.r),0,a2,a1) +return}p=a0.h6(a3,0,a4) +o=a3.f +if(o>0)o=Math.max(0,o-p) +s=a0.F$ +s.toString +n=Math.max(0,a3.d-a4) +m=Math.min(0,a3.z+a4) +l=a3.r +k=a0.h6(a3,0,a4) +j=a3.Q +i=a0.ni(a3,0,a4) +h=Math.max(0,a3.w-r) +g=a3.a +f=a3.b +s.ck(new A.kb(g,f,a3.c,n,a4+a3.e,o,l-k,h,a3.x,a3.y,m,j-i),!0) +e=a0.F$.id +s=e.y +if(s!=null){a0.id=A.m4(a1,!1,a1,a1,0,0,0,0,s) +return}s=e.a +n=a4+s +m=a2+s +d=a0.h6(a3,n,m) +c=p+d +b=a0.ni(a3,0,a4) +a=a0.ni(a3,n,m) +n=e.c +k=e.d +q=Math.min(p+Math.max(n,k+d),l) +l=e.b +k=Math.min(c+k,q) +j=Math.min(a+b+e.z,j) +i=e.e +n=Math.max(c+n,p+e.r) +a0.id=A.m4(j,e.x,n,k,a2+i,q,l,m,a1) +m=a0.F$.e +m.toString +t.qg.a(m) +switch(A.j4(g,f)){case B.u:a2=a0.bF +n=a2.a +s=a2.d+s +m.a=new A.q(n,a0.h6(a3,s,s+a2.b)) +break +case B.aa:m.a=new A.q(a0.h6(a3,0,a0.bF.a),a0.bF.b) +break +case B.t:a2=a0.bF +m.a=new A.q(a2.a,a0.h6(a3,0,a2.b)) +break +case B.Z:a2=a0.bF +s=a2.c+s +m.a=new A.q(a0.h6(a3,s,s+a2.a),a0.bF.b) +break}}, +y4(a,b,c){var s,r,q,p,o=this,n=o.F$ +if(n!=null&&n.id.r>0){n=n.e +n.toString +t.qg.a(n) +s=o.h6(t.p.a(A.z.prototype.ga5.call(o)),0,o.gwO()) +r=o.F$ +r.toString +r=o.YG(r) +n=n.a +q=o.F$.ga0s() +p=n!=null +if(p)a.c.push(new A.pl(new A.q(-n.a,-n.b))) +q.$3$crossAxisPosition$mainAxisPosition(a,b-r,c-s) +if(p)a.rU()}return!1}, +YG(a){var s=this,r=t.p +switch(A.j4(r.a(A.z.prototype.ga5.call(s)).a,r.a(A.z.prototype.ga5.call(s)).b)){case B.u:case B.t:return s.bF.a +case B.Z:case B.aa:return s.bF.b}}, +wU(a){return this.gwO()}, +d5(a,b){var s=a.e +s.toString +s=t.qg.a(s).a +b.ae(0,s.a,s.b)}, +aC(a,b){var s,r=this.F$ +if(r!=null&&r.id.w){s=r.e +s.toString +a.f9(r,b.T(0,t.qg.a(s).a))}}} +A.Ee.prototype={ +WM(){if(this.bF!=null)return +this.bF=this.f3}, +sc2(a,b){var s=this +if(s.f3.k(0,b))return +s.f3=b +s.bF=null +s.a7()}, +sbR(a){var s=this +if(s.fz===a)return +s.fz=a +s.bF=null +s.a7()}, +bQ(){this.WM() +this.Nw()}} +A.Kq.prototype={ +ak(a){var s +this.eD(a) +s=this.F$ +if(s!=null)s.ak(a)}, +ag(a){var s +this.dU(0) +s=this.F$ +if(s!=null)s.ag(0)}} +A.WG.prototype={ +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +return b instanceof A.WG&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d}, +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a){var s=this +return"RelativeRect.fromLTRB("+B.c.M(s.a,1)+", "+B.c.M(s.b,1)+", "+B.c.M(s.c,1)+", "+B.c.M(s.d,1)+")"}} +A.df.prototype={ +gye(){var s=this +return s.e!=null||s.f!=null||s.r!=null||s.w!=null||s.x!=null||!1}, +j(a){var s=this,r=A.a([],t.s),q=s.e +if(q!=null)r.push("top="+A.fV(q)) +q=s.f +if(q!=null)r.push("right="+A.fV(q)) +q=s.r +if(q!=null)r.push("bottom="+A.fV(q)) +q=s.w +if(q!=null)r.push("left="+A.fV(q)) +q=s.x +if(q!=null)r.push("width="+A.fV(q)) +if(r.length===0)r.push("not positioned") +r.push(s.p7(0)) +return B.b.bf(r,"; ")}} +A.Fh.prototype={ +D(){return"StackFit."+this.b}} +A.u7.prototype={ +eg(a){if(!(a.e instanceof A.df))a.e=new A.df(null,null,B.h)}, +WQ(){var s=this +if(s.al!=null)return +s.al=s.ai.Y(s.aE)}, +seP(a){var s=this +if(s.ai.k(0,a))return +s.ai=a +s.al=null +s.a7()}, +sbR(a){var s=this +if(s.aE==a)return +s.aE=a +s.al=null +s.a7()}, +eX(a){return this.GZ(a)}, +cf(a){return this.EJ(a,A.Nz())}, +EJ(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this +e.WQ() +if(e.bk$===0){s=a.a +r=a.b +q=A.O(1/0,s,r) +p=a.c +o=a.d +n=A.O(1/0,p,o) +return isFinite(q)&&isFinite(n)?new A.S(A.O(1/0,s,r),A.O(1/0,p,o)):new A.S(A.O(0,s,r),A.O(0,p,o))}m=a.a +l=a.c +switch(e.ba.a){case 0:k=new A.aI(0,a.b,0,a.d) +break +case 1:k=A.z9(new A.S(A.O(1/0,m,a.b),A.O(1/0,l,a.d))) +break +case 2:k=a +break +default:k=null}j=e.U$ +for(s=t.B,i=l,h=m,g=!1;j!=null;){r=j.e +r.toString +s.a(r) +if(!r.gye()){f=b.$2(j,k) +h=Math.max(h,f.a) +i=Math.max(i,f.b) +g=!0}j=r.af$}return g?new A.S(h,i):new A.S(A.O(1/0,m,a.b),A.O(1/0,l,a.d))}, +bQ(){var s,r,q,p,o,n,m,l=this,k=t.k.a(A.z.prototype.ga5.call(l)) +l.J=!1 +l.k3=l.EJ(k,A.NA()) +s=l.U$ +for(r=t.B,q=t.uu;s!=null;){p=s.e +p.toString +r.a(p) +if(!p.gye()){o=l.al +o.toString +n=l.k3 +n.toString +m=s.k3 +m.toString +p.a=o.jI(q.a(n.a4(0,m)))}else{o=l.k3 +o.toString +n=l.al +n.toString +l.J=A.acD(s,p,o,n)||l.J}s=p.af$}}, +d9(a,b){return this.x9(a,b)}, +a1O(a,b){this.nx(a,b)}, +aC(a,b){var s,r=this,q=r.aL,p=q!==B.w&&r.J,o=r.bD +if(p){p=r.cx +p===$&&A.c() +s=r.k3 +o.saY(0,a.ov(p,b,new A.C(0,0,0+s.a,0+s.b),r.ga1N(),q,o.a))}else{o.saY(0,null) +r.nx(a,b)}}, +m(){this.bD.saY(0,null) +this.iy()}, +jR(a){var s +switch(this.aL.a){case 0:return null +case 1:case 2:case 3:if(this.J){s=this.k3 +s=new A.C(0,0,0+s.a,0+s.b)}else s=null +return s}}} +A.Kt.prototype={ +ak(a){var s,r,q +this.eD(a) +s=this.U$ +for(r=t.B;s!=null;){s.ak(a) +q=s.e +q.toString +s=r.a(q).af$}}, +ag(a){var s,r,q +this.dU(0) +s=this.U$ +for(r=t.B;s!=null;){s.ag(0) +q=s.e +q.toString +s=r.a(q).af$}}} +A.Ku.prototype={} +A.jc.prototype={ +cB(a){return A.pK(this.a,this.b,a)}} +A.G2.prototype={ +k(a,b){if(b==null)return!1 +if(J.J(b)!==A.w(this))return!1 +return b instanceof A.G2&&b.a.k(0,this.a)&&b.b===this.b}, +gu(a){return A.L(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a){return this.a.j(0)+" at "+A.fV(this.b)+"x"}} +A.u8.prototype={ +swW(a){var s,r,q,p,o=this +if(o.k1.k(0,a))return +s=o.k1 +o.k1=a +r=s.b +r=A.t5(r,r,1) +q=o.k1.b +if(!r.k(0,A.t5(q,q,1))){r=o.Fp() +q=o.ch +p=q.a +p.toString +J.ai8(p) +q.saY(0,r) +o.aB()}o.a7()}, +Fp(){var s,r=this.k1.b +r=A.t5(r,r,1) +this.k4=r +s=A.adq(r) +s.ak(this) +return s}, +or(){}, +bQ(){var s,r=this.k1.a +this.id=r +s=this.F$ +if(s!=null)s.j9(A.z9(r))}, +bM(a,b){var s=this.F$ +if(s!=null)s.bM(A.aaE(a),b) +a.B(0,new A.hf(this,t.Cq)) +return!0}, +a0x(a){var s,r=A.a([],t.f1),q=new A.aS(new Float64Array(16)) +q.cP() +s=new A.h4(r,A.a([q],t.hZ),A.a([],t.pw)) +this.bM(s,a) +return s}, +gdK(){return!0}, +aC(a,b){var s=this.F$ +if(s!=null)a.f9(s,b)}, +d5(a,b){var s=this.k4 +s.toString +b.cC(0,s) +this.Nn(a,b)}, +YX(){var s,r,q +try{q=$.ae() +s=q.GS() +r=this.ch.a.Yp(s) +this.XC() +q.JO(r) +r.m()}finally{}}, +XC(){var s,r,q,p,o,n,m,l,k,j=null,i=this.gi9(),h=i.gav(),g=this.k2 +g.gjG() +s=i.gav() +g.gjG() +g=this.ch +r=t.g9 +q=g.a.HF(0,new A.q(h.a,0),r) +switch(A.kE().a){case 0:p=g.a.HF(0,new A.q(s.a,i.d-1-0),r) +break +case 1:case 2:case 3:case 4:case 5:p=j +break +default:p=j}h=q==null +if(h&&p==null)return +if(!h&&p!=null){h=q.f +g=q.r +s=q.e +r=q.w +A.adg(new A.hI(p.a,p.b,p.c,p.d,s,h,g,r)) +return}o=A.kE()===B.ak +n=h?p:q +h=n.f +g=n.r +s=n.e +r=n.w +m=o?n.a:j +l=o?n.b:j +k=o?n.c:j +A.adg(new A.hI(m,l,k,o?n.d:j,s,h,g,r))}, +gi9(){var s=this.id.R(0,this.k1.b) +return new A.C(0,0,0+s.a,0+s.b)}, +gjq(){var s,r=this.k4 +r.toString +s=this.id +return A.es(r,new A.C(0,0,0+s.a,0+s.b))}} +A.Kw.prototype={ +ak(a){var s +this.eD(a) +s=this.F$ +if(s!=null)s.ak(a)}, +ag(a){var s +this.dU(0) +s=this.F$ +if(s!=null)s.ag(0)}} +A.OH.prototype={ +D(){return"CacheExtentStyle."+this.b}} +A.Ei.prototype={ +j(a){return"RevealedOffset(offset: "+A.h(this.a)+", rect: "+this.b.j(0)+")"}} +A.o7.prototype={ +e4(a){this.fZ(a) +a.wE(B.uj)}, +fM(a){var s=this.gGo() +new A.b2(s,new A.Xf(),A.b9(s).h("b2<1>")).P(0,a)}, +shR(a){if(a===this.J)return +this.J=a +this.a7()}, +sZw(a){if(a===this.al)return +this.al=a +this.a7()}, +srF(a,b){var s=this,r=s.ai +if(b===r)return +if(s.b!=null)r.H(0,s.grw()) +s.ai=b +if(s.b!=null)b.Z(0,s.grw()) +s.a7()}, +sYv(a){if(250===this.aE)return +this.aE=250 +this.a7()}, +sYw(a){if(a===this.aL)return +this.aL=a +this.a7()}, +sl2(a){var s=this +if(a!==s.bD){s.bD=a +s.aB() +s.b0()}}, +ak(a){this.Or(a) +this.ai.Z(0,this.grw())}, +ag(a){this.ai.H(0,this.grw()) +this.Os(0)}, +gdK(){return!0}, +IS(a,b,c,d,e,f,g,h,a0,a1,a2){var s,r,q,p,o,n,m,l,k=this,j=A.aqn(k.ai.k4,e),i=f+h +for(s=f,r=0;c!=null;){q=a2<=0?0:a2 +p=Math.max(b,-q) +o=b-p +c.ck(new A.kb(k.J,e,j,q,r,i-s,Math.max(0,a1-s+f),d,k.al,g,p,Math.max(0,a0+o)),!0) +n=c.id +m=n.y +if(m!=null)return m +l=s+n.b +if(n.w||a2>0)k.Ki(c,l,e) +else k.Ki(c,-a2+f,e) +i=Math.max(l+n.c,i) +m=n.a +a2-=m +r+=m +s+=n.d +m=n.z +if(m!==0){a0-=m-o +b=Math.min(p+m,0)}k.a2S(e,n) +c=a.$1(c)}return 0}, +jR(a){var s,r,q,p,o,n +switch(this.bD.a){case 0:return null +case 1:case 2:case 3:break}s=this.k3 +r=0+s.a +q=0+s.b +s=t.p +if(s.a(A.z.prototype.ga5.call(a)).f===0||!isFinite(s.a(A.z.prototype.ga5.call(a)).y))return new A.C(0,0,r,q) +p=s.a(A.z.prototype.ga5.call(a)).y-s.a(A.z.prototype.ga5.call(a)).r+s.a(A.z.prototype.ga5.call(a)).f +switch(A.j4(this.J,s.a(A.z.prototype.ga5.call(a)).b)){case B.t:o=0+p +n=0 +break +case B.u:q-=p +n=0 +o=0 +break +case B.aa:n=0+p +o=0 +break +case B.Z:r-=p +n=0 +o=0 +break +default:n=0 +o=0}return new A.C(n,o,r,q)}, +H2(a){var s,r=this,q=r.ba +if(q==null){q=r.k3 +return new A.C(0,0,0+q.a,0+q.b)}switch(A.b8(r.J).a){case 1:s=r.k3 +return new A.C(0,0-q,0+s.a,0+s.b+q) +case 0:s=r.k3 +return new A.C(0-q,0,0+s.a+q,0+s.b)}}, +aC(a,b){var s,r,q,p=this +if(p.U$==null)return +s=p.ga0k()&&p.bD!==B.w +r=p.ci +if(s){s=p.cx +s===$&&A.c() +q=p.k3 +r.saY(0,a.ov(s,b,new A.C(0,0,0+q.a,0+q.b),p.gVb(),p.bD,r.a))}else{r.saY(0,null) +p.DH(a,b)}}, +m(){this.ci.saY(0,null) +this.iy()}, +DH(a,b){var s,r,q,p,o,n,m +for(s=this.gGo(),r=s.length,q=b.a,p=b.b,o=0;o0}, +$S:250} +A.Xe.prototype={ +$1(a){var s=this,r=s.c,q=s.a,p=s.b.Z_(r,q.b) +return r.Ic(s.d,q.a,p)}, +$S:76} +A.u9.prototype={ +eg(a){if(!(a.e instanceof A.iC))a.e=new A.iC(null,null,B.h)}, +sY7(a){if(a===this.r1)return +this.r1=a +this.a7()}, +sav(a){if(a==this.dJ)return +this.dJ=a +this.a7()}, +gkt(){return!0}, +cf(a){return new A.S(A.O(1/0,a.a,a.b),A.O(1/0,a.c,a.d))}, +bQ(){var s,r,q,p,o,n,m,l,k,j=this +switch(A.b8(j.J).a){case 1:j.ai.G7(j.k3.b) +break +case 0:j.ai.G7(j.k3.a) +break}if(j.dJ==null){j.nO=j.nN=0 +j.qX=!1 +j.ai.G4(0,0) +return}switch(A.b8(j.J).a){case 1:s=j.k3 +r=s.b +q=s.a +break +case 0:s=j.k3 +r=s.a +q=s.b +break +default:r=null +q=null}s=0 +do{p=j.ai.at +p.toString +o=j.PX(r,q,p+0) +if(o!==0)j.ai.Zs(o) +else{p=j.ai +n=j.nN +n===$&&A.c() +m=j.r1 +n=Math.min(0,n+r*m) +l=j.nO +l===$&&A.c() +if(p.G4(n,Math.max(0,l-r*(1-m))))break}k=s+1 +if(k<10){s=k +continue}else break}while(!0)}, +PX(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this +e.nO=e.nN=0 +e.qX=!1 +s=a*e.r1-c +r=A.O(s,0,a) +q=a-s +p=A.O(q,0,a) +switch(e.aL.a){case 0:e.ba=e.aE +break +case 1:e.ba=a*e.aE +break}o=e.ba +o.toString +n=a+2*o +m=s+o +l=A.O(m,0,n) +k=A.O(n-m,0,n) +j=e.dJ.e +j.toString +i=A.m(e).h("ar.1").a(j).b5$ +j=i==null +if(!j){h=Math.max(a,s) +g=e.IS(e.gYE(),A.O(q,-o,0),i,b,B.jD,p,a,0,l,r,h-a) +if(g!==0)return-g}q=e.dJ +o=-s +h=Math.max(0,o) +o=j?Math.min(0,o):0 +j=s>=a?s:r +f=e.ba +f.toString +return e.IS(e.gYC(),A.O(s,-f,0),q,b,B.jC,j,a,o,k,p,h)}, +ga0k(){return this.qX}, +a2S(a,b){var s,r=this +switch(a.a){case 0:s=r.nO +s===$&&A.c() +r.nO=s+b.a +break +case 1:s=r.nN +s===$&&A.c() +r.nN=s-b.a +break}if(b.x)r.qX=!0}, +Ki(a,b,c){var s=a.e +s.toString +t.qg.a(s).a=this.YY(a,b,c)}, +a1M(a){var s=a.e +s.toString +return t.qg.a(s).a}, +Lb(a,b){var s,r,q,p,o=this +switch(t.p.a(A.z.prototype.ga5.call(a)).b.a){case 0:s=o.dJ +for(r=A.m(o).h("ar.1"),q=0;s!==a;){q+=s.id.a +p=s.e +p.toString +s=r.a(p).af$}return q+b +case 1:r=o.dJ.e +r.toString +p=A.m(o).h("ar.1") +s=p.a(r).b5$ +for(q=0;s!==a;){q-=s.id.a +r=s.e +r.toString +s=p.a(r).b5$}return q-b}}, +a1n(a){var s,r,q,p=this +switch(t.p.a(A.z.prototype.ga5.call(a)).b.a){case 0:s=p.dJ +for(r=A.m(p).h("ar.1");s!==a;){s.id.toString +q=s.e +q.toString +s=r.a(q).af$}return 0 +case 1:r=p.dJ.e +r.toString +q=A.m(p).h("ar.1") +s=q.a(r).b5$ +for(;s!==a;){s.id.toString +r=s.e +r.toString +s=q.a(r).b5$}return 0}}, +d5(a,b){var s=a.e +s.toString +s=t.qg.a(s).a +b.ae(0,s.a,s.b)}, +Z_(a,b){var s,r=a.e +r.toString +t.qg.a(r) +s=t.p +switch(A.j4(s.a(A.z.prototype.ga5.call(a)).a,s.a(A.z.prototype.ga5.call(a)).b)){case B.t:return b-r.a.b +case B.aa:return b-r.a.a +case B.u:return a.id.c-(b-r.a.b) +case B.Z:return a.id.c-(b-r.a.a)}}, +gGo(){var s,r,q=this,p=A.a([],t.jT),o=q.U$ +if(o==null)return p +for(s=A.m(q).h("ar.1");o!=q.dJ;){o.toString +p.push(o) +r=o.e +r.toString +o=s.a(r).af$}o=q.bC$ +for(;!0;){o.toString +p.push(o) +if(o===q.dJ)return p +r=o.e +r.toString +o=s.a(r).b5$}}, +gYH(){var s,r,q,p=this,o=A.a([],t.jT) +if(p.U$==null)return o +s=p.dJ +for(r=A.m(p).h("ar.1");s!=null;){o.push(s) +q=s.e +q.toString +s=r.a(q).af$}q=p.dJ.e +q.toString +s=r.a(q).b5$ +for(;s!=null;){o.push(s) +q=s.e +q.toString +s=r.a(q).b5$}return o}} +A.hS.prototype={ +ak(a){var s,r,q +this.eD(a) +s=this.U$ +for(r=A.m(this).h("hS.0");s!=null;){s.ak(a) +q=s.e +q.toString +s=r.a(q).af$}}, +ag(a){var s,r,q +this.dU(0) +s=this.U$ +for(r=A.m(this).h("hS.0");s!=null;){s.ag(0) +q=s.e +q.toString +s=r.a(q).af$}}} +A.uk.prototype={ +D(){return"ScrollDirection."+this.b}} +A.iL.prototype={ +ol(a,b,c,d){var s=d.a===B.r.a +if(s){this.ea(b) +return A.cJ(null,t.H)}else return this.hQ(b,c,d)}, +j(a){var s=this,r=A.a([],t.s) +s.NU(r) +r.push(A.w(s.w).j(0)) +r.push(s.r.j(0)) +r.push(A.h(s.fr)) +r.push(s.k4.j(0)) +return"#"+A.bs(s)+"("+B.b.bf(r,", ")+")"}, +ca(a){var s=this.at +if(s!=null)a.push("offset: "+B.c.M(s,1))}} +A.p4.prototype={} +A.lS.prototype={ +D(){return"SchedulerPhase."+this.b}} +A.Vz.prototype={} +A.de.prototype={ +JN(a){var s=this.y$ +B.b.v(s,a) +if(s.length===0){s=$.aB() +s.ay=null +s.ch=$.ab}}, +RD(a){var s,r,q,p,o,n,m,l,k=this.y$,j=A.aw(k,!0,t.wX) +for(p=j.length,o=0;o0)return!1 +if(j)A.a2(A.a5(l)) +s=k.pi(0) +j=s.b +if(m.Q$.$2$priority$scheduler(j,m)){try{if(k.c===0)A.a2(A.a5(l));++k.d +k.pi(0) +p=k.c-1 +o=k.pi(p) +k.b[p]=null +k.c=p +if(p>0)k.Q0(o,0) +j=s +j.f.cH(0,j.a3I())}catch(n){r=A.ah(n) +q=A.aJ(n) +j=A.bg("during a task callback") +A.dx(new A.bu(r,q,"scheduler library",j,null,!1))}return k.c!==0}return!1}, +oT(a,b){var s,r=this +r.hF() +s=++r.ax$ +r.ay$.l(0,s,new A.p4(a)) +return r.ax$}, +tu(a){return this.oT(a,!1)}, +gZZ(){var s=this +if(s.cy$==null){if(s.dx$===B.bY)s.hF() +s.cy$=new A.bp(new A.ai($.ab,t.U),t.hb) +s.cx$.push(new A.XQ(s))}return s.cy$.a}, +gHT(){return this.dy$}, +Ev(a){if(this.dy$===a)return +this.dy$=a +if(a)this.hF()}, +Hy(){var s=$.aB() +if(s.w==null){s.w=this.gSu() +s.x=$.ab}if(s.y==null){s.y=this.gSR() +s.z=$.ab}}, +xC(){switch(this.dx$.a){case 0:case 4:this.hF() +return +case 1:case 2:case 3:return}}, +hF(){var s,r=this +if(!r.db$)s=!(A.de.prototype.gHT.call(r)&&r.fw$) +else s=!0 +if(s)return +r.Hy() +$.aB().hF() +r.db$=!0}, +L6(){if(this.db$)return +this.Hy() +$.aB().hF() +this.db$=!0}, +A6(){var s,r,q=this +if(q.fr$||q.dx$!==B.bY)return +q.fr$=!0 +s=A.adm() +s.p0(0,"Warm-up frame") +r=q.db$ +A.c8(B.r,new A.XS(q)) +A.c8(B.r,new A.XT(q,r)) +q.a1h(new A.XU(q,s))}, +Bh(a){var s=this.fx$ +return A.c4(B.c.bd((s==null?B.r:new A.aQ(a.a-s.a)).a/1)+this.fy$.a,0)}, +Sv(a){if(this.fr$){this.k3$=!0 +return}this.HX(a)}, +SS(){var s=this +if(s.k3$){s.k3$=!1 +s.cx$.push(new A.XP(s)) +return}s.HZ()}, +HX(a){var s,r,q=this +if(q.fx$==null)q.fx$=a +r=a==null +q.id$=q.Bh(r?q.go$:a) +if(!r)q.go$=a +q.db$=!1 +try{q.dx$=B.Fj +s=q.ay$ +q.ay$=A.y(t.S,t.b1) +J.pI(s,new A.XR(q)) +q.ch$.L(0)}finally{q.dx$=B.Fk}}, +a2k(a){var s=this,r=s.ok$,q=r==null +if(!q&&r!==a)return null +if(r===a)++s.p1$ +else if(q){s.ok$=a +s.p1$=1}return new A.Vz(s.gRm())}, +Rn(){if(--this.p1$===0){this.ok$=null +$.aB()}}, +HZ(){var s,r,q,p,o,n,m,l=this +try{l.dx$=B.u1 +for(p=l.CW$,o=p.length,n=0;n0&&r<4){s=s.id$ +s.toString +q.c=s}s=q.a +s.toString +return s}, +mi(a,b){var s=this,r=s.a +if(r==null)return +s.c=s.a=null +s.zD() +if(b)r.F0(s) +else r.F1()}, +eC(a){return this.mi(a,!1)}, +X2(a){var s,r=this +r.e=null +s=r.c +if(s==null)s=r.c=a +r.d.$1(new A.aQ(a.a-s.a)) +if(!r.b&&r.a!=null&&r.e==null)r.e=$.bK.oT(r.gwj(),!0)}, +zD(){var s,r=this.e +if(r!=null){s=$.bK +s.ay$.v(0,r) +s.ch$.B(0,r) +this.e=null}}, +m(){var s=this,r=s.a +if(r!=null){s.a=null +s.zD() +r.F0(s)}}, +a2F(a,b){var s=""+"Ticker()" +return s.charCodeAt(0)==0?s:s}, +j(a){return this.a2F(a,!1)}} +A.mc.prototype={ +F1(){this.c=!0 +this.a.hT(0) +var s=this.b +if(s!=null)s.hT(0)}, +F0(a){var s +this.c=!1 +s=this.b +if(s!=null)s.no(new A.vd(a))}, +a2X(a){var s,r,q=this,p=new A.a_o(a) +if(q.b==null){s=q.b=new A.bp(new A.ai($.ab,t.U),t.hb) +r=q.c +if(r!=null)if(r)s.hT(0) +else s.no(B.LK)}q.b.a.ec(p,p,t.H)}, +l0(a,b){return this.a.a.l0(a,b)}, +jK(a){return this.l0(a,null)}, +ec(a,b,c){return this.a.a.ec(a,b,c)}, +bw(a,b){return this.ec(a,null,b)}, +io(a){return this.a.a.io(a)}, +j(a){var s=A.bs(this),r=this.c +if(r==null)r="active" +else r=r?"complete":"canceled" +return"#"+s+"("+r+")"}, +$iad:1} +A.a_o.prototype={ +$1(a){this.a.$0()}, +$S:24} +A.vd.prototype={ +j(a){var s=this.a +if(s!=null)return"This ticker was canceled: "+s.j(0) +return'The ticker was canceled before the "orCancel" property was first used.'}, +$icX:1} +A.EL.prototype={ +gpY(){var s,r=this.xG$ +if(r===$){s=A.kg($.aB().a.c) +this.xG$!==$&&A.ap() +this.xG$=s +r=s}return r}, +Rd(){--this.xH$ +this.gpY().sn(0,this.xH$>0)}, +D0(){var s,r=this +if($.aB().a.c){if(r.r_$==null){++r.xH$ +r.gpY().sn(0,!0) +r.r_$=new A.Yv(r.gRc())}}else{s=r.r_$ +if(s!=null)s.a.$0() +r.r_$=null}}, +TC(a,b,c){var s=this.y1$ +s===$&&A.c() +s=s.at +if(s!=null)s.a1P(a,b,null)}} +A.Yv.prototype={} +A.lX.prototype={ +j(a){return"SemanticsTag("+this.a+")"}} +A.qi.prototype={} +A.P0.prototype={} +A.cb.prototype={ +T(a,b){var s,r,q,p,o,n,m,l=this.a,k=l.length +if(k===0)return b +s=b.a +if(s.length===0)return this +r=A.aw(this.b,!0,t.lS) +q=b.b +p=q.length +if(p!==0)for(o=0;o=0;--o)r[o]=n[q-o-1].e}n=a1.fr +m=n.length +if(m!==0){l=new Int32Array(m) +for(o=0;o0?r[n-1].p1:null +if(n!==0)if(J.J(l)===J.J(o)){if(l!=null)o.toString +k=!0}else k=!1 +else k=!0 +if(!k&&p.length!==0){if(o!=null){if(!!p.immutable$list)A.a2(A.T("sort")) +h=p.length-1 +if(h-0<=32)A.Fb(p,0,h,J.a9f()) +else A.Fa(p,0,h,J.a9f())}B.b.I(q,p) +B.b.L(p)}p.push(new A.iY(m,l,n))}if(o!=null)B.b.fV(p) +B.b.I(q,p) +h=t.wg +return A.aw(new A.aA(q,new A.Yx(),h),!0,h.h("bn.E"))}, +Lg(a){if(this.b==null)return +B.i8.m9(0,a.K8(this.e))}, +bW(){return"SemanticsNode#"+this.e}, +a2z(a,b,c){return new A.KT(a,this,b,!0,!0,null,c)}, +K6(a){return this.a2z(B.yH,null,a)}} +A.Yz.prototype={ +$1(a){var s,r,q=this.a +q.a=q.a|a.dy +q.b=q.b|a.db +if(q.x==null)q.x=a.ok +q.z=a.p2 +if(q.Q==null)q.Q=a.p4 +if(q.as==null)q.as=a.R8 +if(q.at==null)q.at=a.RG +if(q.ax==null)q.ax=a.rx +if(q.ay==null)q.ay=a.ry +q.ch=a.to +q.CW=a.x1 +q.cx=a.x2 +if(q.d.a==="")q.d=a.fx +if(q.e.a==="")q.e=a.fy +if(q.f.a==="")q.f=a.go +if(q.w==="")q.w=a.k1 +s=a.dx +if(s!=null){r=q.y;(r==null?q.y=A.az(t.xJ):r).I(0,s)}for(s=this.b.cy,s=A.ip(s,s.r),r=this.c;s.t();)r.B(0,A.aaT(s.d)) +a.k4!=null +s=q.c +r=q.x +q.c=A.a5g(a.fr,a.ok,s,r) +r=q.r +s=q.x +q.r=A.a5g(a.id,a.ok,r,s) +q.cy=Math.max(q.cy,a.k3+a.k2) +return!0}, +$S:58} +A.Yx.prototype={ +$1(a){return a.a}, +$S:255} +A.iN.prototype={ +aV(a,b){return B.c.aV(this.b,b.b)}, +$ibX:1} +A.fT.prototype={ +aV(a,b){return B.c.aV(this.a,b.a)}, +LB(){var s,r,q,p,o,n,m,l,k,j=A.a([],t.iV) +for(s=this.c,r=s.length,q=0;q") +return A.aw(new A.ie(n,new A.a4n(),s),!0,s.h("j.E"))}, +LA(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3=this.c,a4=a3.length +if(a4<=1)return a3 +s=t.S +r=A.y(s,t.ju) +q=A.y(s,s) +for(p=this.b,o=p===B.S,p=p===B.q,n=a4,m=0;m2.356194490192345 +else a0=!1 +if(a||a0)q.l(0,l.e,f.e)}}a1=A.a([],t.t) +a2=A.a(a3.slice(0),A.ac(a3)) +B.b.ei(a2,new A.a4j()) +new A.aA(a2,new A.a4k(),A.ac(a2).h("aA<1,o>")).P(0,new A.a4m(A.az(s),q,a1)) +a3=t.sC +a3=A.aw(new A.aA(a1,new A.a4l(r),a3),!0,a3.h("bn.E")) +a4=A.ac(a3).h("co<1>") +return A.aw(new A.co(a3,a4),!0,a4.h("bn.E"))}, +$ibX:1} +A.a4n.prototype={ +$1(a){return a.LA()}, +$S:72} +A.a4j.prototype={ +$2(a,b){var s,r,q=a.w,p=A.mw(a,new A.q(q.a,q.b)) +q=b.w +s=A.mw(b,new A.q(q.a,q.b)) +r=B.c.aV(p.b,s.b) +if(r!==0)return-r +return-B.c.aV(p.a,s.a)}, +$S:57} +A.a4m.prototype={ +$1(a){var s=this,r=s.a +if(r.q(0,a))return +r.B(0,a) +r=s.b +if(r.a3(0,a)){r=r.i(0,a) +r.toString +s.$1(r)}s.c.push(a)}, +$S:32} +A.a4k.prototype={ +$1(a){return a.e}, +$S:258} +A.a4l.prototype={ +$1(a){var s=this.a.i(0,a) +s.toString +return s}, +$S:259} +A.a5c.prototype={ +$1(a){return a.LB()}, +$S:72} +A.iY.prototype={ +aV(a,b){var s,r=this.b +if(r==null||b.b==null)return this.c-b.c +r.toString +s=b.b +s.toString +return r.aV(0,s)}, +$ibX:1} +A.uD.prototype={ +Lh(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e=f.b +if(e.a===0)return +s=A.az(t.S) +r=A.a([],t.R) +for(q=t.aa,p=A.m(e).h("b2<1>"),o=p.h("j.E"),n=f.d;e.a!==0;){m=A.aw(new A.b2(e,new A.YC(f),p),!0,o) +e.L(0) +n.L(0) +l=new A.YD() +if(!!m.immutable$list)A.a2(A.T("sort")) +k=m.length-1 +if(k-0<=32)A.Fb(m,0,k,l) +else A.Fa(m,0,k,l) +B.b.I(r,m) +for(l=m.length,j=0;j#"+A.bs(this)}} +A.YC.prototype={ +$1(a){return!this.a.d.q(0,a)}, +$S:58} +A.YD.prototype={ +$2(a,b){return a.a-b.a}, +$S:57} +A.YE.prototype={ +$2(a,b){return a.a-b.a}, +$S:57} +A.YB.prototype={ +$1(a){if(a.cx.a3(0,this.b)){this.a.a=a +return!1}return!0}, +$S:58} +A.fH.prototype={ +jr(a,b){var s=this +s.e.l(0,a,b) +s.f=s.f|a.a +s.d=!0}, +dW(a,b){this.jr(a,new A.Yl(b))}, +sje(a){a.toString +this.dW(B.d1,a)}, +sjd(a){a.toString +this.dW(B.u7,a)}, +srJ(a){this.dW(B.d4,a)}, +srH(a){this.dW(B.FL,a)}, +srK(a){this.dW(B.d5,a)}, +srL(a){this.dW(B.d2,a)}, +srI(a){this.dW(B.d3,a)}, +syG(a){this.dW(B.u8,a)}, +syB(a){this.dW(B.u6,a)}, +syz(a,b){this.dW(B.FN,b)}, +syA(a,b){this.dW(B.FR,b)}, +syM(a,b){this.dW(B.FH,b)}, +syK(a){this.jr(B.FO,new A.Yo(a))}, +syI(a){this.jr(B.FF,new A.Ym(a))}, +syL(a){this.jr(B.FP,new A.Yp(a))}, +syJ(a){this.jr(B.FG,new A.Yn(a))}, +syP(a){this.jr(B.FI,new A.Yq(a))}, +syQ(a){this.jr(B.FJ,new A.Yr(a))}, +syC(a){this.dW(B.FM,a)}, +syD(a){this.dW(B.FQ,a)}, +sL9(a){if(a===this.k3)return +this.k3=a +this.d=!0}, +sLa(a){if(a==this.k4)return +this.k4=a +this.d=!0}, +syr(a){return}, +sx5(a){return}, +sds(a,b){if(b===this.xr)return +this.xr=b +this.d=!0}, +wE(a){var s=this.ad;(s==null?this.ad=A.az(t.xJ):s).B(0,a)}, +b2(a,b){var s=this,r=s.a0,q=a.a +if(b)s.a0=r|q +else s.a0=r&~q +s.d=!0}, +Iz(a){var s=this +if(a==null||!a.d||!s.d)return!0 +if((s.f&a.f)!==0)return!1 +if((s.a0&a.a0)!==0)return!1 +if(s.RG.a.length!==0&&a.RG.a.length!==0)return!1 +return!0}, +kV(a){var s,r,q=this +if(!a.d)return +q.e.I(0,a.e) +q.p4.I(0,a.p4) +q.f=q.f|a.f +q.a0=q.a0|a.a0 +q.bU=a.bU +if(q.bL==null)q.bL=a.bL +if(q.W==null)q.W=a.W +if(q.a_==null)q.a_=a.a_ +if(q.x2==null)q.x2=a.x2 +if(q.k2==null)q.k2=a.k2 +if(q.k4==null)q.k4=a.k4 +if(q.k3==null)q.k3=a.k3 +q.ok=a.ok +q.p1=a.p1 +q.p2=a.p2 +s=q.y2 +if(s==null){s=q.y2=a.y2 +q.d=!0}if(q.k1==null)q.k1=a.k1 +r=q.R8 +q.R8=A.a5g(a.R8,a.y2,r,s) +if(q.RG.a==="")q.RG=a.RG +if(q.rx.a==="")q.rx=a.rx +if(q.ry.a==="")q.ry=a.ry +s=q.to +r=q.y2 +q.to=A.a5g(a.to,a.y2,s,r) +if(q.x1==="")q.x1=a.x1 +q.y1=Math.max(q.y1,a.y1+a.xr) +q.d=q.d||a.d}, +GA(){var s=this,r=A.k8() +r.a=s.a +r.b=s.b +r.c=s.c +r.d=s.d +r.p3=s.p3 +r.y2=s.y2 +r.k1=s.k1 +r.R8=s.R8 +r.rx=s.rx +r.RG=s.RG +r.ry=s.ry +r.to=s.to +r.x2=s.x2 +r.x1=s.x1 +r.xr=s.xr +r.y1=s.y1 +r.a0=s.a0 +r.ad=s.ad +r.bU=s.bU +r.bL=s.bL +r.W=s.W +r.a_=s.a_ +r.f=s.f +r.k2=s.k2 +r.k4=s.k4 +r.k3=s.k3 +r.ok=s.ok +r.p1=s.p1 +r.p2=s.p2 +r.e.I(0,s.e) +r.p4.I(0,s.p4) +return r}} +A.Yl.prototype={ +$1(a){this.a.$0()}, +$S:7} +A.Yo.prototype={ +$1(a){a.toString +this.a.$1(A.mv(a))}, +$S:7} +A.Ym.prototype={ +$1(a){a.toString +this.a.$1(A.mv(a))}, +$S:7} +A.Yp.prototype={ +$1(a){a.toString +this.a.$1(A.mv(a))}, +$S:7} +A.Yn.prototype={ +$1(a){a.toString +this.a.$1(A.mv(a))}, +$S:7} +A.Yq.prototype={ +$1(a){var s,r,q +a.toString +s=J.ai4(t.f.a(a),t.N,t.S) +r=s.i(0,"base") +r.toString +q=s.i(0,"extent") +q.toString +this.a.$1(A.a_i(B.G,r,q,!1))}, +$S:7} +A.Yr.prototype={ +$1(a){a.toString +this.a.$1(A.bW(a))}, +$S:7} +A.PO.prototype={ +D(){return"DebugSemanticsDumpOrder."+this.b}} +A.oj.prototype={ +aV(a,b){var s=this.ZQ(b) +return s}, +$ibX:1} +A.tv.prototype={ +ZQ(a){var s=a.b,r=this.b +if(s===r)return 0 +return B.f.aV(r,s)}} +A.KS.prototype={} +A.KV.prototype={} +A.KW.prototype={} +A.Yt.prototype={ +K8(a){var s=A.aL(["type",this.a,"data",this.oM()],t.N,t.z) +if(a!=null)s.l(0,"nodeId",a) +return s}, +a2D(){return this.K8(null)}, +j(a){var s,r,q=A.a([],t.s),p=this.oM(),o=p.gbg(p),n=A.aw(o,!0,A.m(o).h("j.E")) +B.b.fV(n) +for(o=n.length,s=0;s#"+A.bs(this)+"()"}} +A.OI.prototype={ +lG(a,b){return this.LJ(a,!0)}, +a1g(a,b,c){var s,r={},q=this.c +if(q.a3(0,a)){r=q.i(0,a) +r.toString +return c.h("ad<0>").a(r)}r.a=r.b=null +this.fF(0,a).bw(b,c).ec(new A.OJ(r,this,a,c),new A.OK(r),t.H) +s=r.a +if(s!=null)return s +s=new A.ai($.ab,c.h("ai<0>")) +r.b=new A.bp(s,c.h("bp<0>")) +q.l(0,a,s) +return r.b.a}} +A.OJ.prototype={ +$1(a){var s=this,r=new A.c1(a,s.d.h("c1<0>")),q=s.a +q.a=r +s.b.c.l(0,s.c,r) +q=q.b +if(q!=null)q.cH(0,a)}, +$S(){return this.d.h("aM(0)")}} +A.OK.prototype={ +$2(a,b){this.a.b.np(a,b)}, +$S:47} +A.VI.prototype={ +fF(a,b){var s,r=B.bF.er(A.ae4(null,A.Mg(B.fF,b,B.N,!1),null).e),q=$.fI.ba$ +q===$&&A.c() +s=q.ty(0,"flutter/assets",A.lv(r.buffer,0,null)).bw(new A.VJ(b),t.B6) +return s}, +oc(a){return this.a1e(a)}, +a1e(a){var s=0,r=A.Y(t.gG),q,p=this,o,n +var $async$oc=A.Z(function(b,c){if(b===1)return A.V(c,r) +while(true)switch(s){case 0:o=A +n=A +s=3 +return A.a1(p.fF(0,a),$async$oc) +case 3:q=o.a7Y(n.cB(c.buffer,0,null)) +s=1 +break +case 1:return A.W(q,r)}}) +return A.X($async$oc,r)}} +A.VJ.prototype={ +$1(a){if(a==null)throw A.d(A.RA(A.a([A.app(this.a),A.bg("The asset does not exist or has empty data.")],t.E))) +return a}, +$S:261} +A.oT.prototype={ +KH(a){var s,r,q,p=this.b +if(!p.a3(0,a)){s=this.a +r=J.aC(s) +if(r.i(s,a)==null)return null +q=r.i(s,a) +if(q==null)q=[] +q=J.fa(t.n0.a(q),t.mE) +p.l(0,a,q.fG(q,new A.a0k(),t.hw).cK(0)) +r.v(s,a)}s=A.a([new A.eL(null,a,!0)],t.k0) +p=p.i(0,a) +p.toString +B.b.I(s,p) +return s}, +$iOf:1} +A.a0k.prototype={ +$1(a){var s=J.aC(a),r=s.i(a,"asset") +r.toString +A.bW(r) +s=s.i(a,"dpr") +s.toString +return new A.eL(A.Ng(s),r,!1)}, +$S:262} +A.eL.prototype={} +A.Os.prototype={} +A.ok.prototype={ +nX(){var s=$.NO() +s.a.L(0) +s.b.L(0) +s.c.L(0)}, +j1(a){return this.a06(a)}, +a06(a){var s=0,r=A.Y(t.H),q,p=this +var $async$j1=A.Z(function(b,c){if(b===1)return A.V(c,r) +while(true)switch(s){case 0:switch(A.bW(J.bc(t.a.a(a),"type"))){case"memoryPressure":p.nX() +break}s=1 +break +case 1:return A.W(q,r)}}) +return A.X($async$j1,r)}, +PG(){var s=A.b_("controller") +s.sbH(new A.oU(new A.YK(s),null,null,null,t.tI)) +return J.aid(s.ap())}, +a22(){if(this.z$!=null)return +$.aB() +var s=A.acQ("AppLifecycleState.resumed") +if(s!=null)this.r8(s)}, +vl(a){return this.T2(a)}, +T2(a){var s=0,r=A.Y(t.dR),q,p=this,o +var $async$vl=A.Z(function(b,c){if(b===1)return A.V(c,r) +while(true)switch(s){case 0:a.toString +o=A.acQ(a) +o.toString +p.r8(o) +q=null +s=1 +break +case 1:return A.W(q,r)}}) +return A.X($async$vl,r)}, +pu(a){return this.Tb(a)}, +Tb(a){var s=0,r=A.Y(t.z),q,p=this,o +var $async$pu=A.Z(function(b,c){if(b===1)return A.V(c,r) +while(true)switch(s){case 0:case 3:switch(a.a){case"SystemChrome.systemUIChange":s=5 +break +case"System.requestAppExit":s=6 +break +default:s=4 +break}break +case 5:t.j.a(a.b) +s=4 +break +case 6:o=A +s=7 +return A.a1(p.rd(),$async$pu) +case 7:q=o.aL(["response",c.b],t.N,t.z) +s=1 +break +case 4:case 1:return A.W(q,r)}}) +return A.X($async$pu,r)}, +$ide:1} +A.YK.prototype={ +$0(){var s=0,r=A.Y(t.H),q=this,p,o,n +var $async$$0=A.Z(function(a,b){if(a===1)return A.V(b,r) +while(true)switch(s){case 0:o=A.b_("rawLicenses") +n=o +s=2 +return A.a1($.NO().lG("NOTICES",!1),$async$$0) +case 2:n.sbH(b) +p=q.a +n=J +s=3 +return A.a1(A.afb(A.aqw(),o.ap(),"parseLicenses",t.N,t.rh),$async$$0) +case 3:n.pI(b,J.aia(p.ap())) +s=4 +return A.a1(J.ai5(p.ap()),$async$$0) +case 4:return A.W(null,r)}}) +return A.X($async$$0,r)}, +$S:38} +A.a1o.prototype={ +ty(a,b,c){var s=new A.ai($.ab,t.sB) +$.aB().Wt(b,c,A.aks(new A.a1p(new A.bp(s,t.BB)))) +return s}, +Ag(a,b){if(b==null){a=$.NN().a.i(0,a) +if(a!=null)a.e=null}else $.NN().Lm(a,new A.a1q(b))}} +A.a1p.prototype={ +$1(a){var s,r,q,p +try{this.a.cH(0,a)}catch(q){s=A.ah(q) +r=A.aJ(q) +p=A.bg("during a platform message response callback") +A.dx(new A.bu(s,r,"services library",p,null,!1))}}, +$S:14} +A.a1q.prototype={ +$2(a,b){return this.KE(a,b)}, +KE(a,b){var s=0,r=A.Y(t.H),q=1,p,o=[],n=this,m,l,k,j,i,h +var $async$$2=A.Z(function(c,d){if(c===1){p=d +s=q}while(true)switch(s){case 0:i=null +q=3 +s=6 +return A.a1(n.a.$1(a),$async$$2) +case 6:i=d +o.push(5) +s=4 +break +case 3:q=2 +h=p +m=A.ah(h) +l=A.aJ(h) +j=A.bg("during a platform message callback") +A.dx(new A.bu(m,l,"services library",j,null,!1)) +o.push(5) +s=4 +break +case 2:o=[1] +case 4:q=1 +b.$1(i) +s=o.pop() +break +case 5:return A.W(null,r) +case 1:return A.V(p,r)}}) +return A.X($async$$2,r)}, +$S:266} +A.nC.prototype={ +D(){return"KeyboardLockMode."+this.b}} +A.jD.prototype={} +A.lk.prototype={} +A.jF.prototype={} +A.rM.prototype={} +A.St.prototype={ +Rh(a){var s,r,q,p,o,n,m,l,k,j +this.d=!0 +s=!1 +for(n=this.c,m=0;!1;++m){r=n[m] +try{q=r.$1(a) +s=s||q}catch(l){p=A.ah(l) +o=A.aJ(l) +k=A.bg("while processing a key handler") +j=$.f8() +if(j!=null)j.$1(new A.bu(p,o,"services library",k,null,!1))}}this.d=!1 +return s}, +I0(a){var s,r,q=this,p=a.a,o=a.b +if(a instanceof A.lk){q.a.l(0,p,o) +s=$.agj().i(0,o.a) +if(s!=null){r=q.b +if(r.q(0,s))r.v(0,s) +else r.B(0,s)}}else if(a instanceof A.jF)q.a.v(0,p) +return q.Rh(a)}} +A.C0.prototype={ +D(){return"KeyDataTransitMode."+this.b}} +A.rL.prototype={ +j(a){return"KeyMessage("+A.h(this.a)+")"}} +A.C1.prototype={ +a_B(a){var s,r=this,q=r.d +switch((q==null?r.d=B.zP:q).a){case 0:return!1 +case 1:if(a.c===0&&a.d===0)return!1 +s=A.al5(a) +if(a.f&&r.e.length===0){r.b.I0(s) +r.Cc(A.a([s],t.DG),null)}else r.e.push(s) +return!1}}, +Cc(a,b){var s,r,q,p,o=this.a +if(o!=null){s=new A.rL(a,b) +try{o=o.$1(s) +return o}catch(p){r=A.ah(p) +q=A.aJ(p) +o=A.bg("while processing the key message handler") +A.dx(new A.bu(r,q,"services library",o,null,!1))}}return!1}, +xX(a){var s=0,r=A.Y(t.a),q,p=this,o,n,m,l,k,j,i +var $async$xX=A.Z(function(b,c){if(b===1)return A.V(c,r) +while(true)switch(s){case 0:if(p.d==null){p.d=B.zO +p.c.a.push(p.gQR())}o=A.amt(t.a.a(a)) +if(o instanceof A.hz){p.f.v(0,o.c.gfI()) +n=!0}else if(o instanceof A.o2){m=p.f +l=o.c +if(m.q(0,l.gfI())){m.v(0,l.gfI()) +n=!1}else n=!0}else n=!0 +if(n){p.c.a_U(o) +for(m=p.e,l=m.length,k=p.b,j=!1,i=0;i") +r=A.hq(new A.aT(e,s),s.h("j.E")) +q=A.a([],t.DG) +p=e.i(0,d) +o=$.fI.go$ +n=a.a +if(n==="")n=f +if(a instanceof A.hz)if(p==null){m=new A.lk(d,c,n,o,!1) +r.B(0,d)}else m=new A.rM(d,p,n,o,!1) +else if(p==null)m=f +else{m=new A.jF(d,p,f,o,!1) +r.v(0,d)}for(s=this.c.d,l=A.m(s).h("aT<1>"),k=l.h("j.E"),j=r.jU(A.hq(new A.aT(s,l),k)),j=j.gX(j),i=this.e;j.t();){h=j.gC(j) +if(h.k(0,d))q.push(new A.jF(h,c,f,o,!0)) +else{g=e.i(0,h) +g.toString +i.push(new A.jF(h,g,f,o,!0))}}for(e=A.hq(new A.aT(s,l),k).jU(r),e=e.gX(e);e.t();){l=e.gC(e) +k=s.i(0,l) +k.toString +i.push(new A.lk(l,k,f,o,!0))}if(m!=null)i.push(m) +B.b.I(i,q)}} +A.IC.prototype={} +A.TX.prototype={} +A.f.prototype={ +gu(a){return B.f.gu(this.a)}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.J(b)!==A.w(this))return!1 +return b instanceof A.f&&b.a===this.a}} +A.i.prototype={ +gu(a){return B.f.gu(this.a)}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.J(b)!==A.w(this))return!1 +return b instanceof A.i&&b.a===this.a}} +A.ID.prototype={} +A.hr.prototype={ +j(a){return"MethodCall("+this.a+", "+A.h(this.b)+")"}} +A.tK.prototype={ +j(a){var s=this +return"PlatformException("+s.a+", "+A.h(s.b)+", "+A.h(s.c)+", "+A.h(s.d)+")"}, +$icX:1} +A.t9.prototype={ +j(a){return"MissingPluginException("+A.h(this.a)+")"}, +$icX:1} +A.Zo.prototype={ +e3(a){if(a==null)return null +return B.c4.er(A.cB(a.buffer,a.byteOffset,a.byteLength))}, +bu(a){if(a==null)return null +return A.lv(B.bF.er(a).buffer,0,null)}} +A.Tu.prototype={ +bu(a){if(a==null)return null +return B.f2.bu(B.bc.xA(a))}, +e3(a){var s +if(a==null)return a +s=B.f2.e3(a) +s.toString +return B.bc.dq(0,s)}} +A.Tw.prototype={ +fu(a){var s=B.bb.bu(A.aL(["method",a.a,"args",a.b],t.N,t.X)) +s.toString +return s}, +eY(a){var s,r,q,p=null,o=B.bb.e3(a) +if(!t.f.b(o))throw A.d(A.bY("Expected method call Map, got "+A.h(o),p,p)) +s=J.aC(o) +r=s.i(o,"method") +q=s.i(o,"args") +if(typeof r=="string")return new A.hr(r,q) +throw A.d(A.bY("Invalid method call: "+A.h(o),p,p))}, +GX(a){var s,r,q,p=null,o=B.bb.e3(a) +if(!t.j.b(o))throw A.d(A.bY("Expected envelope List, got "+A.h(o),p,p)) +s=J.aC(o) +if(s.gp(o)===1)return s.i(o,0) +if(s.gp(o)===3)if(typeof s.i(o,0)=="string")r=s.i(o,1)==null||typeof s.i(o,1)=="string" +else r=!1 +else r=!1 +if(r){r=A.bW(s.i(o,0)) +q=A.ci(s.i(o,1)) +throw A.d(A.a8i(r,s.i(o,2),q,p))}if(s.gp(o)===4)if(typeof s.i(o,0)=="string")if(s.i(o,1)==null||typeof s.i(o,1)=="string")r=s.i(o,3)==null||typeof s.i(o,3)=="string" +else r=!1 +else r=!1 +else r=!1 +if(r){r=A.bW(s.i(o,0)) +q=A.ci(s.i(o,1)) +throw A.d(A.a8i(r,s.i(o,2),q,A.ci(s.i(o,3))))}throw A.d(A.bY("Invalid envelope: "+A.h(o),p,p))}, +nJ(a){var s=B.bb.bu([a]) +s.toString +return s}, +jW(a,b,c){var s=B.bb.bu([a,c,b]) +s.toString +return s}, +Hv(a,b){return this.jW(a,null,b)}} +A.Ze.prototype={ +bu(a){var s +if(a==null)return null +s=A.a_Z(64) +this.cM(0,s,a) +return s.iQ()}, +e3(a){var s,r +if(a==null)return null +s=new A.tV(a) +r=this.fb(0,s) +if(s.b=b.a.byteLength)throw A.d(B.ao) +return this.ib(b.km(0),b)}, +ib(a,b){var s,r,q,p,o,n,m,l,k=this +switch(a){case 0:return null +case 1:return!0 +case 2:return!1 +case 3:s=b.b +r=$.cG() +q=b.a.getInt32(s,B.X===r) +b.b+=4 +return q +case 4:return b.tl(0) +case 6:b.h0(8) +s=b.b +r=$.cG() +q=b.a.getFloat64(s,B.X===r) +b.b+=8 +return q +case 5:case 7:p=k.dg(b) +return B.c4.er(b.kn(p)) +case 8:return b.kn(k.dg(b)) +case 9:p=k.dg(b) +b.h0(4) +s=b.a +o=A.ac6(s.buffer,s.byteOffset+b.b,p) +b.b=b.b+4*p +return o +case 10:return b.tm(k.dg(b)) +case 14:p=k.dg(b) +b.h0(4) +s=b.a +r=s.buffer +s=s.byteOffset+b.b +A.Nj(r,s,p) +o=new Float32Array(r,s,p) +b.b=b.b+4*p +return o +case 11:p=k.dg(b) +b.h0(8) +s=b.a +o=A.ac4(s.buffer,s.byteOffset+b.b,p) +b.b=b.b+8*p +return o +case 12:p=k.dg(b) +n=A.aU(p,null,!1,t.X) +for(s=b.a,m=0;m=s.byteLength)A.a2(B.ao) +b.b=r+1 +n[m]=k.ib(s.getUint8(r),b)}return n +case 13:p=k.dg(b) +s=t.X +n=A.y(s,s) +for(s=b.a,m=0;m=s.byteLength)A.a2(B.ao) +b.b=r+1 +r=k.ib(s.getUint8(r),b) +l=b.b +if(l>=s.byteLength)A.a2(B.ao) +b.b=l+1 +n.l(0,r,k.ib(s.getUint8(l),b))}return n +default:throw A.d(B.ao)}}, +dQ(a,b){var s,r +if(b<254)a.d3(0,b) +else{s=a.d +if(b<=65535){a.d3(0,254) +r=$.cG() +s.setUint16(0,b,B.X===r) +a.mq(a.e,0,2)}else{a.d3(0,255) +r=$.cG() +s.setUint32(0,b,B.X===r) +a.mq(a.e,0,4)}}}, +dg(a){var s,r,q=a.km(0) +switch(q){case 254:s=a.b +r=$.cG() +q=a.a.getUint16(s,B.X===r) +a.b+=2 +return q +case 255:s=a.b +r=$.cG() +q=a.a.getUint32(s,B.X===r) +a.b+=4 +return q +default:return q}}} +A.Zf.prototype={ +$2(a,b){var s=this.a,r=this.b +s.cM(0,r,a) +s.cM(0,r,b)}, +$S:63} +A.Zi.prototype={ +fu(a){var s=A.a_Z(64) +B.a_.cM(0,s,a.a) +B.a_.cM(0,s,a.b) +return s.iQ()}, +eY(a){var s,r,q +a.toString +s=new A.tV(a) +r=B.a_.fb(0,s) +q=B.a_.fb(0,s) +if(typeof r=="string"&&s.b>=a.byteLength)return new A.hr(r,q) +else throw A.d(B.jy)}, +nJ(a){var s=A.a_Z(64) +s.d3(0,0) +B.a_.cM(0,s,a) +return s.iQ()}, +jW(a,b,c){var s=A.a_Z(64) +s.d3(0,1) +B.a_.cM(0,s,a) +B.a_.cM(0,s,c) +B.a_.cM(0,s,b) +return s.iQ()}, +Hv(a,b){return this.jW(a,null,b)}, +GX(a){var s,r,q,p,o,n +if(a.byteLength===0)throw A.d(B.zl) +s=new A.tV(a) +if(s.km(0)===0)return B.a_.fb(0,s) +r=B.a_.fb(0,s) +q=B.a_.fb(0,s) +p=B.a_.fb(0,s) +o=s.b=a.byteLength +else n=!1 +if(n)throw A.d(A.a8i(r,p,A.ci(q),o)) +else throw A.d(B.zm)}} +A.UF.prototype={ +a_s(a,b,c){var s,r,q,p +if(t.yg.b(b)){this.b.v(0,a) +return}s=this.b +r=s.i(0,a) +q=A.ao4(c) +if(q==null)q=this.a +if(J.e(r==null?null:t.Ft.a(r.a),q))return +p=q.qH(a) +s.l(0,a,p) +B.Eh.fB("activateSystemCursor",A.aL(["device",p.b,"kind",t.Ft.a(p.a).a],t.N,t.z),t.H)}} +A.ta.prototype={} +A.cv.prototype={ +j(a){var s=this.gnw() +return s}} +A.Hq.prototype={ +qH(a){throw A.d(A.c9(null))}, +gnw(){return"defer"}} +A.Lt.prototype={} +A.hH.prototype={ +gnw(){return"SystemMouseCursor("+this.a+")"}, +qH(a){return new A.Lt(this,a)}, +k(a,b){if(b==null)return!1 +if(J.J(b)!==A.w(this))return!1 +return b instanceof A.hH&&b.a===this.a}, +gu(a){return B.d.gu(this.a)}} +A.J5.prototype={} +A.jf.prototype={ +gnf(){var s=$.fI.ba$ +s===$&&A.c() +return s}, +m9(a,b){return this.Lf(0,b,this.$ti.h("1?"))}, +Lf(a,b,c){var s=0,r=A.Y(c),q,p=this,o,n +var $async$m9=A.Z(function(d,e){if(d===1)return A.V(e,r) +while(true)switch(s){case 0:o=p.b +n=o +s=3 +return A.a1(p.gnf().ty(0,p.a,o.bu(b)),$async$m9) +case 3:q=n.e3(e) +s=1 +break +case 1:return A.W(q,r)}}) +return A.X($async$m9,r)}, +tD(a){this.gnf().Ag(this.a,new A.Or(this,a))}} +A.Or.prototype={ +$1(a){return this.KA(a)}, +KA(a){var s=0,r=A.Y(t.yD),q,p=this,o,n +var $async$$1=A.Z(function(b,c){if(b===1)return A.V(c,r) +while(true)switch(s){case 0:o=p.a.b +n=o +s=3 +return A.a1(p.b.$1(o.e3(a)),$async$$1) +case 3:q=n.bu(c) +s=1 +break +case 1:return A.W(q,r)}}) +return A.X($async$$1,r)}, +$S:120} +A.t8.prototype={ +gnf(){var s=$.fI.ba$ +s===$&&A.c() +return s}, +mH(a,b,c,d){return this.Uc(a,b,c,d,d.h("0?"))}, +Uc(a,b,c,d,e){var s=0,r=A.Y(e),q,p=this,o,n,m,l +var $async$mH=A.Z(function(f,g){if(f===1)return A.V(g,r) +while(true)switch(s){case 0:o=p.b +n=o.fu(new A.hr(a,b)) +m=p.a +s=3 +return A.a1(p.gnf().ty(0,m,n),$async$mH) +case 3:l=g +if(l==null){if(c){q=null +s=1 +break}throw A.d(A.alu("No implementation found for method "+a+" on channel "+m))}q=d.h("0?").a(o.GX(l)) +s=1 +break +case 1:return A.W(q,r)}}) +return A.X($async$mH,r)}, +mb(a){var s=this.gnf() +s.Ag(this.a,new A.Us(this,a))}, +ps(a,b){return this.Ss(a,b)}, +Ss(a,b){var s=0,r=A.Y(t.yD),q,p=2,o,n=this,m,l,k,j,i,h,g,f,e +var $async$ps=A.Z(function(c,d){if(c===1){o=d +s=p}while(true)switch(s){case 0:h=n.b +g=h.eY(a) +p=4 +e=h +s=7 +return A.a1(b.$1(g),$async$ps) +case 7:k=e.nJ(d) +q=k +s=1 +break +p=2 +s=6 +break +case 4:p=3 +f=o +k=A.ah(f) +if(k instanceof A.tK){m=k +k=m.a +i=m.b +q=h.jW(k,m.c,i) +s=1 +break}else if(k instanceof A.t9){q=null +s=1 +break}else{l=k +h=h.Hv("error",J.dr(l)) +q=h +s=1 +break}s=6 +break +case 3:s=2 +break +case 6:case 1:return A.W(q,r) +case 2:return A.V(o,r)}}) +return A.X($async$ps,r)}} +A.Us.prototype={ +$1(a){return this.a.ps(a,this.b)}, +$S:120} +A.jQ.prototype={ +fB(a,b,c){return this.a0S(a,b,c,c.h("0?"))}, +rm(a,b){return this.fB(a,null,b)}, +a0S(a,b,c,d){var s=0,r=A.Y(d),q,p=this +var $async$fB=A.Z(function(e,f){if(e===1)return A.V(f,r) +while(true)switch(s){case 0:q=p.MQ(a,b,!0,c) +s=1 +break +case 1:return A.W(q,r)}}) +return A.X($async$fB,r)}} +A.ll.prototype={ +D(){return"KeyboardSide."+this.b}} +A.eu.prototype={ +D(){return"ModifierKey."+this.b}} +A.tT.prototype={ +ga1v(){var s,r,q=A.y(t.BK,t.FE) +for(s=0;s<9;++s){r=B.k1[s] +if(this.a0Y(r))q.l(0,r,B.bN)}return q}} +A.fA.prototype={} +A.Wk.prototype={ +$0(){var s,r,q,p=this.b,o=J.aC(p),n=A.ci(o.i(p,"key")),m=n==null +if(!m){s=n.length +s=s!==0&&s===1}else s=!1 +if(s)this.a.a=n +s=A.ci(o.i(p,"code")) +if(s==null)s="" +m=m?"":n +r=A.Nh(o.i(p,"location")) +if(r==null)r=0 +q=A.Nh(o.i(p,"metaState")) +if(q==null)q=0 +p=A.Nh(o.i(p,"keyCode")) +return new A.DI(s,m,r,q,p==null?0:p)}, +$S:406} +A.hz.prototype={} +A.o2.prototype={} +A.Wp.prototype={ +a_U(a){var s,r,q,p,o,n,m,l,k,j,i=this +if(a instanceof A.hz){p=a.c +i.d.l(0,p.gfI(),p.goe())}else if(a instanceof A.o2)i.d.v(0,a.c.gfI()) +i.WY(a) +for(p=i.a,o=A.aw(p,!0,t.vc),n=o.length,m=0;m")),e),a0=a1 instanceof A.hz +if(a0)a.B(0,g.gfI()) +for(s=g.a,r=null,q=0;q<9;++q){p=B.k1[q] +o=$.agl() +n=o.i(0,new A.c2(p,B.aT)) +if(n==null)continue +m=B.p2.i(0,s) +if(n.q(0,m==null?new A.i(98784247808+B.d.gu(s)):m))r=p +if(f.i(0,p)===B.bN){c.I(0,n) +if(n.iN(0,a.giP(a)))continue}l=f.i(0,p)==null?A.az(e):o.i(0,new A.c2(p,f.i(0,p))) +if(l==null)continue +for(o=new A.km(l,l.r),o.c=l.e,m=A.m(o).c;o.t();){k=o.d +if(k==null)k=m.a(k) +j=$.agk().i(0,k) +j.toString +d.l(0,k,j)}}i=b.i(0,B.br)!=null&&!J.e(b.i(0,B.br),B.cC) +for(e=$.a9X(),e=A.ip(e,e.r);e.t();){a=e.d +h=i&&a.k(0,B.br) +if(!c.q(0,a)&&!h)b.v(0,a)}b.v(0,B.cR) +b.I(0,d) +if(a0&&r!=null&&!b.a3(0,g.gfI())){e=g.gfI().k(0,B.bV) +if(e)b.l(0,g.gfI(),g.goe())}}} +A.c2.prototype={ +k(a,b){if(b==null)return!1 +if(J.J(b)!==A.w(this))return!1 +return b instanceof A.c2&&b.a===this.a&&b.b==this.b}, +gu(a){return A.L(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.Kb.prototype={} +A.Ka.prototype={} +A.DI.prototype={ +gfI(){var s=this.a,r=B.p2.i(0,s) +return r==null?new A.i(98784247808+B.d.gu(s)):r}, +goe(){var s,r=this.b,q=B.DJ.i(0,r),p=q==null?null:q[this.c] +if(p!=null)return p +s=B.Ds.i(0,r) +if(s!=null)return s +if(r.length===1)return new A.f(B.d.a8(r.toLowerCase(),0)) +return new A.f(B.d.gu(this.a)+98784247808)}, +a0Y(a){var s=this +switch(a.a){case 0:return(s.d&4)!==0 +case 1:return(s.d&1)!==0 +case 2:return(s.d&2)!==0 +case 3:return(s.d&8)!==0 +case 5:return(s.d&16)!==0 +case 4:return(s.d&32)!==0 +case 6:return(s.d&64)!==0 +case 7:case 8:return!1}}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.J(b)!==A.w(s))return!1 +return b instanceof A.DI&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d&&b.e===s.e}, +gu(a){var s=this +return A.L(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.uc.prototype={ +ga2q(){var s=this +if(s.c)return new A.c1(s.a,t.m6) +if(s.b==null){s.b=new A.bp(new A.ai($.ab,t.jr),t.Fj) +s.pr()}return s.b.a}, +pr(){var s=0,r=A.Y(t.H),q,p=this,o +var $async$pr=A.Z(function(a,b){if(a===1)return A.V(b,r) +while(true)switch(s){case 0:s=3 +return A.a1(B.h5.rm("get",t.mE),$async$pr) +case 3:o=b +if(p.b==null){s=1 +break}p.DN(o) +case 1:return A.W(q,r)}}) +return A.X($async$pr,r)}, +DN(a){var s,r=a==null +if(!r){s=J.bc(a,"enabled") +s.toString +A.mv(s)}else s=!1 +this.a_W(r?null:t.Fx.a(J.bc(a,"data")),s)}, +a_W(a,b){var s,r,q=this,p=q.c&&b +q.d=p +if(p)$.bK.cx$.push(new A.Xl(q)) +s=q.a +if(b){p=q.R7(a) +r=t.N +if(p==null){p=t.X +p=A.y(p,p)}r=new A.cn(p,q,null,"root",A.y(r,t.hp),A.y(r,t.Cm)) +p=r}else p=null +q.a=p +q.c=!0 +r=q.b +if(r!=null)r.cH(0,p) +q.b=null +if(q.a!=s){q.ao() +if(s!=null)s.m()}}, +vB(a){return this.UF(a)}, +UF(a){var s=0,r=A.Y(t.H),q=this,p +var $async$vB=A.Z(function(b,c){if(b===1)return A.V(c,r) +while(true)switch(s){case 0:p=a.a +switch(p){case"push":q.DN(t.mE.a(a.b)) +break +default:throw A.d(A.c9(p+" was invoked but isn't implemented by "+A.w(q).j(0)))}return A.W(null,r)}}) +return A.X($async$vB,r)}, +R7(a){if(a==null)return null +return t.ym.a(B.a_.e3(A.lv(a.buffer,a.byteOffset,a.byteLength)))}, +L7(a){var s=this +s.r.B(0,a) +if(!s.f){s.f=!0 +$.bK.cx$.push(new A.Xm(s))}}, +Ce(){var s,r,q,p,o,n=this +if(!n.f)return +n.f=!1 +for(s=n.r,r=A.dV(s,s.r),q=A.m(r).c;r.t();){p=r.d;(p==null?q.a(p):p).w=!1}s.L(0) +o=B.a_.bu(n.a.a) +B.h5.fB("put",A.cB(o.buffer,o.byteOffset,o.byteLength),t.H)}, +a_j(){if($.bK.db$)return +this.Ce()}} +A.Xl.prototype={ +$1(a){this.a.d=!1}, +$S:2} +A.Xm.prototype={ +$1(a){return this.a.Ce()}, +$S:2} +A.cn.prototype={ +gmP(){var s=J.yJ(this.a,"c",new A.Xi()) +s.toString +return t.mE.a(s)}, +giH(){var s=J.yJ(this.a,"v",new A.Xj()) +s.toString +return t.mE.a(s)}, +a2a(a,b,c){var s=this,r=J.dq(s.giH(),b),q=c.h("0?").a(J.ja(s.giH(),b)) +if(J.fZ(s.giH()))J.ja(s.a,"v") +if(r)s.kM() +return q}, +YJ(a,b){var s,r,q,p,o=this,n=o.f +if(n.a3(0,a)||!J.dq(o.gmP(),a)){n=t.N +s=new A.cn(A.y(n,t.X),null,null,a,A.y(n,t.hp),A.y(n,t.Cm)) +o.hP(s) +return s}r=t.N +q=o.c +p=J.bc(o.gmP(),a) +p.toString +s=new A.cn(t.mE.a(p),q,o,a,A.y(r,t.hp),A.y(r,t.Cm)) +n.l(0,a,s) +return s}, +hP(a){var s=this,r=a.d +if(r!==s){if(r!=null)r.pR(a) +a.d=s +s.B7(a) +if(a.c!=s.c)s.E_(a)}}, +Rr(a){this.pR(a) +a.d=null +if(a.c!=null){a.wp(null) +a.FD(this.gDZ())}}, +kM(){var s,r=this +if(!r.w){r.w=!0 +s=r.c +if(s!=null)s.L7(r)}}, +E_(a){a.wp(this.c) +a.FD(this.gDZ())}, +wp(a){var s=this,r=s.c +if(r==a)return +if(s.w)if(r!=null)r.r.v(0,s) +s.c=a +if(s.w&&a!=null){s.w=!1 +s.kM()}}, +pR(a){var s,r,q,p=this +if(J.e(p.f.v(0,a.e),a)){J.ja(p.gmP(),a.e) +s=p.r +r=s.i(0,a.e) +if(r!=null){q=J.bx(r) +p.Cq(q.dN(r)) +if(q.gS(r))s.v(0,a.e)}if(J.fZ(p.gmP()))J.ja(p.a,"c") +p.kM() +return}s=p.r +q=s.i(0,a.e) +if(q!=null)J.ja(q,a) +q=s.i(0,a.e) +q=q==null?null:J.fZ(q) +if(q===!0)s.v(0,a.e)}, +B7(a){var s=this +if(s.f.a3(0,a.e)){J.f9(s.r.bq(0,a.e,new A.Xh()),a) +s.kM() +return}s.Cq(a) +s.kM()}, +Cq(a){this.f.l(0,a.e,a) +J.fY(this.gmP(),a.e,a.a)}, +FE(a,b){var s,r,q=this.f +q=q.gaJ(q) +s=this.r +s=s.gaJ(s) +r=q.xP(0,new A.ie(s,new A.Xk(),A.m(s).h("ie"))) +J.pI(b?A.aw(r,!1,A.m(r).h("j.E")):r,a)}, +FD(a){return this.FE(a,!1)}, +a2e(a){var s,r=this +if(a===r.e)return +s=r.d +if(s!=null)s.pR(r) +r.e=a +s=r.d +if(s!=null)s.B7(r)}, +m(){var s,r=this +r.FE(r.gRq(),!0) +r.f.L(0) +r.r.L(0) +s=r.d +if(s!=null)s.pR(r) +r.d=null +r.wp(null) +r.x=!0}, +j(a){return"RestorationBucket(restorationId: "+this.e+", owner: "+A.h(this.b)+")"}} +A.Xi.prototype={ +$0(){var s=t.X +return A.y(s,s)}, +$S:105} +A.Xj.prototype={ +$0(){var s=t.X +return A.y(s,s)}, +$S:105} +A.Xh.prototype={ +$0(){return A.a([],t.oy)}, +$S:274} +A.Xk.prototype={ +$1(a){return a}, +$S:275} +A.Oa.prototype={} +A.hI.prototype={ +F2(){var s,r,q,p,o=this,n=o.a +n=n==null?null:n.a +s=o.e +s=s==null?null:s.a +r=o.f.D() +q=o.r.D() +p=o.c +p=p==null?null:p.D() +return A.aL(["systemNavigationBarColor",n,"systemNavigationBarDividerColor",null,"systemStatusBarContrastEnforced",o.w,"statusBarColor",s,"statusBarBrightness",r,"statusBarIconBrightness",q,"systemNavigationBarIconBrightness",p,"systemNavigationBarContrastEnforced",o.d],t.N,t.z)}, +j(a){return"SystemUiOverlayStyle("+this.F2().j(0)+")"}, +gu(a){var s=this +return A.L(s.a,s.b,s.d,s.e,s.f,s.r,s.w,s.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s,r=this +if(b==null)return!1 +if(J.J(b)!==A.w(r))return!1 +if(b instanceof A.hI)if(J.e(b.a,r.a))if(J.e(b.e,r.e))if(b.r===r.r)if(b.f===r.f)s=b.c==r.c +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +return s}} +A.ZD.prototype={ +$0(){if(!J.e($.ou,$.a8E)){B.bq.fB("SystemChrome.setSystemUIOverlayStyle",$.ou.F2(),t.H) +$.a8E=$.ou}$.ou=null}, +$S:0} +A.Fo.prototype={ +D(){return"SystemSoundType."+this.b}} +A.ZN.prototype={ +fN(a){var s +if(a<0)return null +s=this.m5(a).a +return s>=0?s:null}, +fQ(a){var s=this.m5(Math.max(0,a)).b +return s>=0?s:null}, +m5(a){var s,r=this.fN(a) +if(r==null)r=-1 +s=this.fQ(a) +return new A.cD(r,s==null?-1:s)}} +A.zo.prototype={ +fN(a){var s +if(a<0)return null +s=this.a +return A.a8C(s,Math.min(a,s.length)).b}, +fQ(a){var s,r=this.a +if(a>=r.length)return null +s=A.a8C(r,Math.max(0,a+1)) +return s.b+s.gC(s).length}, +m5(a){var s,r,q,p=this +if(a<0){s=p.fQ(a) +return new A.cD(-1,s==null?-1:s)}else{s=p.a +if(a>=s.length){s=p.fN(a) +return new A.cD(s==null?-1:s,-1)}}r=A.a8C(s,a) +s=r.b +if(s!==r.c)s=new A.cD(s,s+r.gC(r).length) +else{q=p.fQ(a) +s=new A.cD(s,q==null?-1:q)}return s}} +A.U2.prototype={ +m5(a){var s=this.a,r=Math.max(a,0),q=s.b.J.a.zS(new A.bo(r,B.G)) +s=s.a +r=s.a +s=s.b +return A.a_i(B.G,B.f.iO(q.a,r,s),B.f.iO(q.b,r,s),!1)}} +A.Qf.prototype={ +fN(a){return a<0?null:0}, +fQ(a){var s=this.a.length +return a>=s?null:s}} +A.Fy.prototype={ +j(a){var s,r,q=this,p=", isDirectional: " +if(!q.gkd())return"TextSelection.invalid" +s=""+q.c +r=""+q.f +return q.a===q.b?"TextSelection.collapsed(offset: "+s+", affinity: "+q.e.j(0)+p+r+")":"TextSelection(baseOffset: "+s+", extentOffset: "+q.d+p+r+")"}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(!(b instanceof A.Fy))return!1 +if(!r.gkd())return!b.gkd() +if(b.c===r.c)if(b.d===r.d)s=(r.a!==r.b||b.e===r.e)&&b.f===r.f +else s=!1 +else s=!1 +return s}, +gu(a){var s,r=this +if(!r.gkd())return A.L(-B.f.gu(1),-B.f.gu(1),A.fy(B.G),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a) +s=r.a===r.b?A.fy(r.e):A.fy(B.G) +return A.L(B.f.gu(r.c),B.f.gu(r.d),s,B.bM.gu(r.f),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.Yi.prototype={ +D(){return"SelectionChangedCause."+this.b}} +A.Fv.prototype={ +gQf(){var s=this.c +s===$&&A.c() +return s}, +pA(a){return this.Ur(a)}, +Ur(a){var s=0,r=A.Y(t.z),q,p=2,o,n=this,m,l,k,j,i +var $async$pA=A.Z(function(b,c){if(b===1){o=c +s=p}while(true)switch(s){case 0:p=4 +s=7 +return A.a1(n.vp(a),$async$pA) +case 7:k=c +q=k +s=1 +break +p=2 +s=6 +break +case 4:p=3 +i=o +m=A.ah(i) +l=A.aJ(i) +k=A.bg("during method call "+a.a) +A.dx(new A.bu(m,l,"services library",k,new A.a_g(a),!1)) +throw i +s=6 +break +case 3:s=2 +break +case 6:case 1:return A.W(q,r) +case 2:return A.V(o,r)}}) +return A.X($async$pA,r)}, +vp(a){return this.TP(a)}, +TP(a){var s=0,r=A.Y(t.z),q,p=this,o,n,m,l,k,j +var $async$vp=A.Z(function(b,c){if(b===1)return A.V(c,r) +while(true)switch(s){case 0:j=a.a +if(j==="TextInputClient.focusElement"){p.f.i(0,J.bc(t.j.a(a.b),0)) +s=1 +break}else if(j==="TextInputClient.requestElementsInRect"){o=J.fa(t.j.a(a.b),t.fY) +n=A.m(o).h("aA") +m=p.f +l=A.m(m).h("aT<1>") +k=l.h("dN>") +q=A.aw(new A.dN(new A.b2(new A.aT(m,l),new A.a_d(p,A.aw(new A.aA(o,new A.a_e(),n),!0,n.h("bn.E"))),l.h("b2")),new A.a_f(p),k),!0,k.h("j.E")) +s=1 +break}else if(j==="TextInputClient.scribbleInteractionBegan"){s=1 +break}else if(j==="TextInputClient.scribbleInteractionFinished"){s=1 +break}s=1 +break +case 1:return A.W(q,r)}}) +return A.X($async$vp,r)}} +A.a_g.prototype={ +$0(){var s=null +return A.a([A.jq("call",this.a,!0,B.aQ,s,!1,s,s,B.ah,s,!1,!0,!0,B.b2,s,t.fw)],t.E)}, +$S:15} +A.a_e.prototype={ +$1(a){return a}, +$S:276} +A.a_d.prototype={ +$1(a){this.a.f.i(0,a) +return!1}, +$S:42} +A.a_f.prototype={ +$1(a){var s=this.a.f.i(0,a),r=s.gwR(s) +s=[a] +B.b.I(s,[r.gho(r),r.gzy(r),r.gbr(r),r.gbo(r)]) +return s}, +$S:277} +A.v8.prototype={} +A.Jw.prototype={} +A.MF.prototype={} +A.a5v.prototype={ +$1(a){this.a.sbH(a) +return!1}, +$S:29} +A.aD.prototype={} +A.bf.prototype={ +fm(a){this.b=a}, +i5(a,b){this.grn() +return!0}, +grn(){return!0}, +qz(a){return!0}, +zw(a,b){return this.qz(a)?B.co:B.dx}, +XR(a){var s=this.a +s.b=!0 +s.a.push(a) +return null}, +JH(a){return this.a.v(0,a)}} +A.kX.prototype={} +A.kS.prototype={ +cZ(a){return this.c.$1(a)}} +A.NT.prototype={ +Iw(a,b,c){if(a instanceof A.kX)return a.lB(b,c) +else return a.cZ(b)}} +A.i1.prototype={ +aq(){return new A.vu(A.az(t.nT),new A.E(),B.m)}} +A.NV.prototype={ +$1(a){var s=a.f +s.toString +t.im.a(s) +return!1}, +$S:43} +A.NY.prototype={ +$1(a){var s,r=this,q=a.f +q.toString +s=A.a7h(t.im.a(q),r.b,r.d) +if(s!=null){r.c.tX(a,null) +r.a.a=s +return!0}return!1}, +$S:43} +A.NW.prototype={ +$1(a){var s,r=a.f +r.toString +s=A.a7h(t.im.a(r),this.b,this.c) +if(s!=null){this.a.a=s +return!0}return!1}, +$S:43} +A.NZ.prototype={ +$1(a){var s,r,q=this,p=a.f +p.toString +s=q.b +r=A.a7h(t.im.a(p),s,q.d) +p=r!=null +if(p&&r.i5(0,s))q.a.a=A.aap(a).Iw(r,s,q.c) +return p}, +$S:43} +A.vu.prototype={ +aM(){this.bb() +this.Fa()}, +Sk(a){this.aA(new A.a00(this))}, +Fa(){var s,r,q,p,o=this,n=o.a.d +n=n.gaJ(n) +s=A.hq(n,A.m(n).h("j.E")) +r=o.d.jU(s) +n=o.d +n.toString +q=s.jU(n) +for(n=r.gX(r),p=o.gCN();n.t();)n.gC(n).JH(p) +for(n=q.gX(q);n.t();)n.gC(n).XR(p) +o.d=s}, +aQ(a){this.bi(a) +this.Fa()}, +m(){var s,r,q,p,o=this +o.aW() +for(s=o.d,s=A.dV(s,s.r),r=o.gCN(),q=A.m(s).c;s.t();){p=s.d;(p==null?q.a(p):p).JH(r)}o.d=null}, +N(a){var s=this.a +return new A.vt(null,s.d,this.e,s.e,null)}} +A.a00.prototype={ +$0(){this.a.e=new A.E()}, +$S:0} +A.vt.prototype={ +bO(a){var s +if(this.w===a.w)s=!A.a6G(a.r,this.r) +else s=!0 +return s}} +A.G5.prototype={ +cZ(a){a.a3n() +return null}} +A.AK.prototype={ +qz(a){return this.c}, +cZ(a){}} +A.mE.prototype={} +A.mU.prototype={} +A.h8.prototype={} +A.AI.prototype={} +A.lO.prototype={} +A.DE.prototype={ +i5(a,b){var s,r,q,p,o,n=$.at.a1$.f.c +if(n==null||n.e==null)return!1 +for(s=t.c,r=0;r<2;++r){q=B.B0[r] +p=n.e +p.toString +o=A.a7j(p,q,s) +if(o!=null&&o.i5(0,q)){this.c=o +this.d=q +return!0}}return!1}, +cZ(a){var s,r=this.c +r===$&&A.c() +s=this.d +s===$&&A.c() +r.cZ(s)}} +A.Jr.prototype={ +Ud(a,b,c){var s +a.fm(this.gjQ()) +s=A.m(this).h("kX<1>").b(a)?a.lB(b,c):a.cZ(b) +a.fm(null) +return s}, +lB(a,b){var s=this,r=A.a7i(s.gru(),A.m(s).c) +return r==null?s.a0R(a,s.b,b):s.Ud(r,a,b)}, +cZ(a){return this.lB(a,null)}, +grn(){var s=this,r=A.a7j(s.gru(),null,A.m(s).c) +if(r!=null){r.fm(s.gjQ()) +r.grn() +r.fm(null)}else s.gjQ().grn() +return!0}, +i5(a,b){var s,r=this,q=A.a7i(r.gru(),A.m(r).c),p=q==null +if(!p)q.fm(r.gjQ()) +s=(p?r.gjQ():q).i5(0,b) +if(!p)q.fm(null) +return s}, +qz(a){var s,r=this,q=A.a7i(r.gru(),A.m(r).c),p=q==null +if(!p)q.fm(r.gjQ()) +s=(p?r.gjQ():q).qz(a) +if(!p)q.fm(null) +return s}} +A.wG.prototype={ +a0R(a,b,c){var s=this.e +if(b==null)return s.cZ(a) +else return s.cZ(a)}, +gjQ(){return this.e}, +gru(){return this.f}} +A.Gd.prototype={} +A.Gb.prototype={} +A.Iy.prototype={} +A.y9.prototype={ +fm(a){this.LI(a) +this.e.fm(a)}} +A.pW.prototype={ +aG(a){var s=new A.u0(this.e,!0,null,A.au(),this.$ti.h("u0<1>")) +s.aI() +s.saU(null) +return s}, +aN(a,b){b.sn(0,this.e) +b.sLv(!0)}} +A.vq.prototype={ +aq(){return new A.xS(B.m)}} +A.xS.prototype={ +gTY(){var s,r +$.at.toString +s=$.aB() +if(s.gxa()!=="/"){$.at.toString +s=s.gxa()}else{r=this.a.ax +$.at.toString +s=s.gxa() +s=s}return s}, +aM(){var s=this +s.bb() +s.Xt() +$.at.toString +s.r=s.Ea($.aB().a.f,s.a.fy) +$.at.bE$.push(s)}, +aQ(a){this.bi(a) +this.Fu(a)}, +m(){B.b.v($.at.bE$,this) +var s=this.d +if(s!=null)s.m() +this.aW()}, +BM(){var s=this.d +if(s!=null)s.m() +this.e=this.d=null}, +Fu(a){var s,r=this +r.a.toString +if(r.gFC()){r.BM() +if(r.f!=null){r.a.toString +a.toString +s=!1}else s=!0 +if(s){s=r.a.c +r.f=new A.ii(r,t.yh)}}else{r.BM() +r.f=null}}, +Xt(){return this.Fu(null)}, +gFC(){var s=this.a +if(s.Q==null){s=s.as +s=s==null?null:s.gbv(s) +if(s!==!0){this.a.toString +s=!1}else s=!0}else s=!0 +return s}, +UU(a){var s=this,r=a.a,q=r==="/"&&s.a.Q!=null?new A.a4R(s):s.a.as.i(0,r) +if(q!=null)return s.a.f.$1$2(a,q,t.z) +s.a.toString +return null}, +V5(a){return this.a.at.$1(a)}, +qM(){var s=0,r=A.Y(t.y),q,p=this,o,n +var $async$qM=A.Z(function(a,b){if(a===1)return A.V(b,r) +while(true)switch(s){case 0:p.a.toString +o=p.f +n=o==null?null:o.gbj() +if(n==null){q=!1 +s=1 +break}q=n.J1() +s=1 +break +case 1:return A.W(q,r)}}) +return A.X($async$qM,r)}, +nF(a){return this.ZK(a)}, +ZK(a){var s=0,r=A.Y(t.y),q,p=this,o,n +var $async$nF=A.Z(function(b,c){if(b===1)return A.V(c,r) +while(true)switch(s){case 0:p.a.toString +o=p.f +n=o==null?null:o.gbj() +if(n==null){q=!1 +s=1 +break}o=n.w5(a,null,t.X) +o.toString +o=A.adV(o,B.vm,!1,null) +n.e.push(o) +n.v4() +n.Bx() +q=!0 +s=1 +break +case 1:return A.W(q,r)}}) +return A.X($async$nF,r)}, +Ea(a,b){this.a.toString +return A.aqv(a,b)}, +H4(a){var s=this,r=s.Ea(a,s.a.fy) +if(!r.k(0,s.r))s.aA(new A.a4T(s,r))}, +N(a){var s,r,q,p,o,n,m,l,k,j,i=this,h=null,g={} +g.a=null +s=i.a +s.toString +if(i.gFC()){s=i.f +r=i.gTY() +q=i.a +p=q.ay +p.toString +g.a=A.abh(!0,new A.tn(r,i.gUT(),i.gV4(),p,"nav",A.arO(),!0,B.w,s),"Navigator Scope",h,h) +s=q}else{s=i.a +s.toString}g.b=null +o=new A.jh(new A.a4S(g,i),h) +g.b=o +o=A.qG(o,h,B.c3,!0,s.cy,h,h,B.aK) +g.b=o +n=h +s=i.a +r=s.CW +s=s.db +s=A.U(255,s.gn(s)>>>16&255,s.gn(s)>>>8&255,s.gn(s)&255) +g=g.b +q=i.a +q.toString +p=i.r +p.toString +m=A.anW() +l=A.nF($.agO(),t.n,t.nT) +k=t.B8 +j=t.dc +l.l(0,B.v1,new A.wG(new A.of(new A.be(A.a([],k),j)),a,!1,!1,!1,!1,new A.be(A.a([],k),j),t.uq.h("wG"))) +k=t.wv +j=A.a([],k) +B.b.I(j,i.a.dy) +j.push(B.xd) +k=A.a(j.slice(0),k) +return new A.ue(new A.uF(A.a8w(new A.AA(A.NU(l,A.abj(new A.Fr(new A.uG(new A.rW(p,k,new A.FH(r,s,g,h),h),h),h),new A.tW(A.y(t.j5,t.uJ)))),h),"",m),h),q.p3,h)}} +A.a4R.prototype={ +$1(a){var s=this.a.a.Q +s.toString +return s}, +$S:25} +A.a4T.prototype={ +$0(){this.a.r=this.b}, +$S:0} +A.a4S.prototype={ +$1(a){return this.b.a.ch.$2(a,this.a.a)}, +$S:25} +A.Nc.prototype={} +A.q1.prototype={ +aq(){return new A.vz(B.m)}} +A.vz.prototype={ +aM(){this.bb() +this.Ff()}, +aQ(a){this.bi(a) +this.Ff()}, +Ff(){this.e=new A.cZ(this.gPB(),this.a.c,null,t.dm)}, +m(){var s,r,q=this.d +if(q!=null)for(q=A.ip(q,q.r);q.t();){s=q.d +r=this.d.i(0,s) +r.toString +s.H(0,r)}this.aW()}, +PC(a){var s,r=this,q=a.a,p=r.d +if(p==null)p=r.d=A.y(t.yF,t.O) +p.l(0,q,r.QW(q)) +p=r.d.i(0,q) +p.toString +q.Z(0,p) +if(!r.f){r.f=!0 +s=r.Cv() +if(s!=null)r.Fq(s) +else $.bK.cx$.push(new A.a0p(r))}return!1}, +Cv(){var s={},r=this.c +r.toString +s.a=null +r.aR(new A.a0u(s)) +return t.ot.a(s.a)}, +Fq(a){var s,r +this.c.toString +s=this.f +r=this.e +r===$&&A.c() +a.Br(t.CR.a(A.al3(r,s)))}, +QW(a){var s=A.b_("callback"),r=new A.a0t(this,a,s) +s.sbH(r) +return r}, +N(a){var s=this.f,r=this.e +r===$&&A.c() +return new A.rJ(s,r,null)}} +A.a0p.prototype={ +$1(a){var s,r=this.a +if(r.c==null)return +s=r.Cv() +s.toString +r.Fq(s)}, +$S:2} +A.a0u.prototype={ +$1(a){this.a.a=a}, +$S:6} +A.a0t.prototype={ +$0(){var s=this.a,r=this.b +s.d.v(0,r) +r.H(0,this.c.ap()) +if(s.d.a===0)if($.bK.dx$.a<3)s.aA(new A.a0r(s)) +else{s.f=!1 +A.f7(new A.a0s(s))}}, +$S:0} +A.a0r.prototype={ +$0(){this.a.f=!1}, +$S:0} +A.a0s.prototype={ +$0(){var s=this.a +if(s.c!=null&&s.d.a===0)s.aA(new A.a0q(s))}, +$S:0} +A.a0q.prototype={ +$0(){}, +$S:0} +A.nB.prototype={} +A.C_.prototype={} +A.mN.prototype={ +pj(){var s=new A.C_($.b7()) +this.hh$=s +this.c.cT(new A.nB(s))}, +oG(){var s,r=this +if(r.gte()){if(r.hh$==null)r.pj()}else{s=r.hh$ +if(s!=null){s.ao() +s.dB() +r.hh$=null}}}, +N(a){if(this.gte()&&this.hh$==null)this.pj() +return B.NF}} +A.Jh.prototype={ +N(a){throw A.d(A.RC("Widgets that mix AutomaticKeepAliveClientMixin into their State must call super.build() but must ignore the return value of the superclass."))}} +A.Ma.prototype={ +Aa(a,b){}, +lH(a){A.adZ(this,new A.a4I(this,a))}} +A.a4I.prototype={ +$1(a){var s=a.z +if(s!=null&&s.q(0,this.a))a.b4()}, +$S:6} +A.a4H.prototype={ +$1(a){A.adZ(a,this.a)}, +$S:6} +A.Mb.prototype={ +bJ(a){return new A.Ma(A.ij(t.h,t.X),this,B.Y)}} +A.eS.prototype={ +bO(a){return this.w!==a.w}} +A.qB.prototype={ +aG(a){var s=new A.DT(this.e,this.f,B.L,!1,!1,null,A.au()) +s.aI() +s.saU(null) +return s}, +aN(a,b){b.srQ(this.e) +b.sHR(this.f) +b.sa1S(B.L) +b.dI=b.bG=!1}, +nG(a){a.srQ(null) +a.sHR(null)}} +A.n_.prototype={ +aG(a){var s=new A.DQ(null,this.f,null,A.au()) +s.aI() +s.saU(null) +return s}, +aN(a,b){b.snn(null) +b.sl2(this.f)}, +nG(a){a.snn(null)}} +A.A0.prototype={ +aG(a){var s=new A.DP(this.e,this.f,null,A.au()) +s.aI() +s.saU(null) +return s}, +aN(a,b){b.snn(this.e) +b.sl2(this.f)}, +nG(a){a.snn(null)}} +A.Dr.prototype={ +aG(a){var s=this,r=new A.E6(s.e,s.r,s.w,s.y,s.x,null,s.f,null,A.au()) +r.aI() +r.saU(null) +return r}, +aN(a,b){var s=this +b.sc_(0,s.e) +b.sl2(s.f) +b.sYm(0,s.r) +b.sds(0,s.w) +b.sac(0,s.x) +b.sbA(0,s.y)}} +A.Ds.prototype={ +aG(a){var s=this,r=new A.E7(s.r,s.x,s.w,s.e,s.f,null,A.au()) +r.aI() +r.saU(null) +return r}, +aN(a,b){var s=this +b.snn(s.e) +b.sl2(s.f) +b.sds(0,s.r) +b.sac(0,s.w) +b.sbA(0,s.x)}} +A.oH.prototype={ +aG(a){var s=this,r=A.e1(a),q=new A.Eg(s.w,null,A.au()) +q.aI() +q.saU(null) +q.sbh(0,s.e) +q.seP(s.r) +q.sbR(r) +q.sk7(s.x) +q.sJf(0,null) +return q}, +aN(a,b){var s=this +b.sbh(0,s.e) +b.sJf(0,null) +b.seP(s.r) +b.sbR(A.e1(a)) +b.bG=s.w +b.sk7(s.x)}} +A.Bu.prototype={ +aG(a){var s=new A.DZ(this.e,this.f,null,A.au()) +s.aI() +s.saU(null) +return s}, +aN(a,b){b.sa2M(this.e) +b.a6=this.f}} +A.hw.prototype={ +aG(a){var s=new A.E5(this.e,A.e1(a),null,A.au()) +s.aI() +s.saU(null) +return s}, +aN(a,b){b.sc2(0,this.e) +b.sbR(A.e1(a))}} +A.jb.prototype={ +aG(a){var s=new A.E9(this.f,this.r,this.e,A.e1(a),null,A.au()) +s.aI() +s.saU(null) +return s}, +aN(a,b){b.seP(this.e) +b.sa2Y(this.f) +b.sa0m(this.r) +b.sbR(A.e1(a))}} +A.zn.prototype={} +A.qC.prototype={ +aG(a){var s=new A.DU(this.e,null,A.au()) +s.aI() +s.saU(null) +return s}, +aN(a,b){b.sxb(this.e)}} +A.rO.prototype={ +qp(a){var s,r,q=a.e +q.toString +t.DU.a(q) +s=this.f +if(q.e!==s){q.e=s +r=a.c +if(r instanceof A.z)r.a7()}}} +A.qA.prototype={ +aG(a){var s=new A.DS(this.e,0,null,null,A.au()) +s.aI() +s.I(0,null) +return s}, +aN(a,b){b.sxb(this.e)}} +A.om.prototype={ +aG(a){return A.acA(A.kQ(this.f,this.e))}, +aN(a,b){b.sFX(A.kQ(this.f,this.e))}, +bW(){var s,r=this,q=r.e +if(q===1/0&&r.f===1/0)s="SizedBox.expand" +else s=q===0&&r.f===0?"SizedBox.shrink":"SizedBox" +q=r.a +return q==null?s:s+"-"+q.j(0)}} +A.ej.prototype={ +aG(a){return A.acA(this.e)}, +aN(a,b){b.sFX(this.e)}} +A.C9.prototype={ +aG(a){var s=new A.E1(this.e,this.f,null,A.au()) +s.aI() +s.saU(null) +return s}, +aN(a,b){b.sa1o(0,this.e) +b.sa1m(0,this.f)}} +A.tt.prototype={ +aG(a){var s=new A.E4(this.e,null,A.au()) +s.aI() +s.saU(null) +return s}, +aN(a,b){b.srG(this.e)}, +bJ(a){return new A.Jn(this,B.Y)}} +A.Jn.prototype={} +A.F4.prototype={ +aG(a){var s=a.aj(t.I) +s.toString +s=new A.Ee(this.e,s.w,null,A.au()) +s.aI() +s.saU(null) +return s}, +aN(a,b){var s +b.sc2(0,this.e) +s=a.aj(t.I) +s.toString +b.sbR(s.w)}} +A.Fg.prototype={ +aG(a){var s=A.e1(a) +s=new A.u7(this.e,s,this.r,B.aR,A.au(),0,null,null,A.au()) +s.aI() +s.I(0,null) +return s}, +aN(a,b){var s +b.seP(this.e) +s=A.e1(a) +b.sbR(s) +s=this.r +if(b.ba!==s){b.ba=s +b.a7()}if(B.aR!==b.aL){b.aL=B.aR +b.aB() +b.b0()}}} +A.lM.prototype={ +qp(a){var s,r,q,p=this,o=a.e +o.toString +t.B.a(o) +s=p.f +if(o.w!=s){o.w=s +r=!0}else r=!1 +s=p.r +if(o.e!=s){o.e=s +r=!0}s=p.w +if(o.f!=s){o.f=s +r=!0}s=p.x +if(o.r!=s){o.r=s +r=!0}s=p.y +if(o.x!=s){o.x=s +r=!0}if(r){q=a.c +if(q instanceof A.z)q.a7()}}} +A.DB.prototype={ +N(a){var s=this,r=a.aj(t.I) +r.toString +return A.ama(s.f,s.x,null,null,s.c,r.w,s.d,s.r)}} +A.Bi.prototype={ +gUQ(){switch(this.e.a){case 0:return!0 +case 1:var s=this.w +return s===B.ji||s===B.yt}}, +zQ(a){var s=this.x +s=this.gUQ()?A.e1(a):null +return s}, +aG(a){var s=this,r=null,q=new A.DY(s.e,s.f,s.r,s.w,s.zQ(a),s.y,s.z,B.w,A.au(),A.aU(4,A.a8F(r,r,r,r,r,B.bw,B.q,r,1,B.aK),!1,t.dY),!0,0,r,r,A.au()) +q.aI() +q.I(0,r) +return q}, +aN(a,b){var s=this,r=s.e +if(b.J!==r){b.J=r +b.a7()}r=s.f +if(b.al!==r){b.al=r +b.a7()}r=s.r +if(b.ai!==r){b.ai=r +b.a7()}r=s.w +if(b.aE!==r){b.aE=r +b.a7()}r=s.zQ(a) +if(b.ba!=r){b.ba=r +b.a7()}r=s.y +if(b.aL!==r){b.aL=r +b.a7()}if(B.w!==b.d8){b.d8=B.w +b.aB() +b.b0()}}} +A.Ep.prototype={} +A.A9.prototype={} +A.Ej.prototype={ +aG(a){var s,r,q,p=this,o=null,n=p.e,m=p.r +if(m==null){m=a.aj(t.I) +m.toString +m=m.w}s=p.x +r=A.a85(a) +q=s===B.da?"\u2026":o +s=new A.u3(A.a8F(q,r,p.z,p.as,n,p.f,m,p.ax,p.y,p.at),p.w,s,p.ch,!1,0,o,o,A.au()) +s.aI() +s.I(0,o) +s.v1(n) +s.soy(p.ay) +return s}, +aN(a,b){var s,r=this +b.soB(0,r.e) +b.szm(0,r.f) +s=r.r +if(s==null){s=a.aj(t.I) +s.toString +s=s.w}b.sbR(s) +b.sLx(r.w) +b.sa1K(0,r.x) +b.szn(r.y) +b.syq(r.z) +b.sLF(r.as) +b.szp(r.at) +b.sK4(r.ax) +s=A.a85(a) +b.syl(0,s) +b.soy(r.ay) +b.sLd(r.ch)}} +A.Xo.prototype={ +$1(a){return!0}, +$S:41} +A.DH.prototype={ +aG(a){var s=this,r=s.d +r=r==null?null:r.cw(0) +r=new A.E_(r,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.CW,!1,null,!1,A.au()) +r.aI() +r.Xh() +return r}, +aN(a,b){var s=this,r=s.d +b.sf5(0,r==null?null:r.cw(0)) +b.aE=s.e +b.sbr(0,s.f) +b.sbo(0,s.r) +b.sL4(0,s.w) +b.sac(0,s.x) +b.soq(0,s.y) +b.sYS(s.Q) +b.sa_i(s.as) +b.seP(s.at) +b.sa2g(0,s.ax) +b.sYA(s.ay) +b.sa1k(!1) +b.sbR(null) +b.srl(s.CW) +b.sro(!1) +b.sk7(s.z)}, +nG(a){a.sf5(0,null)}} +A.Cb.prototype={ +aG(a){var s=this,r=null,q=new A.E8(s.e,r,s.r,r,s.x,s.y,r,r,s.as,s.at,r,A.au()) +q.aI() +q.saU(r) +return q}, +aN(a,b){var s=this +b.cI=s.e +b.es=null +b.cA=s.r +b.bk=null +b.U=s.x +b.bC=s.y +b.af=b.b5=null +b.fv=s.as +b.A=s.at}} +A.CA.prototype={ +aG(a){var s=this,r=new A.E3(!0,s.e,s.f,s.r,s.w,B.ap,null,A.au()) +r.aI() +r.saU(null) +return r}, +aN(a,b){var s,r=this +b.es=r.e +b.cA=r.f +b.bk=r.r +s=r.w +if(!b.U.k(0,s)){b.U=s +b.aB()}if(b.A!==B.ap){b.A=B.ap +b.aB()}}} +A.fD.prototype={ +aG(a){var s=new A.Eb(null,A.au()) +s.aI() +s.saU(null) +return s}} +A.hh.prototype={ +aG(a){var s=new A.u2(this.e,this.f,null,A.au()) +s.aI() +s.saU(null) +return s}, +aN(a,b){b.sIi(this.e) +b.sy6(this.f)}} +A.yK.prototype={ +aG(a){var s=new A.tZ(!1,null,null,A.au()) +s.aI() +s.saU(null) +return s}, +aN(a,b){b.sFI(!1) +b.sy6(null)}} +A.EK.prototype={ +aG(a){var s=this,r=new A.u5(s.e,s.f,s.r,!1,s.CJ(a),null,A.au()) +r.aI() +r.saU(null) +r.Fc(r.A) +return r}, +CJ(a){var s,r=this.e,q=r.p4 +if(q!=null)return q +if(r.fx==null){r=r.p2!=null +s=r}else s=!0 +if(!s)return null +return A.e1(a)}, +aN(a,b){var s=this +b.sZ3(s.f) +b.sa_a(s.r) +b.sa_8(!1) +b.sJq(s.e) +b.sbR(s.CJ(a))}} +A.Cu.prototype={ +aG(a){var s=new A.E2(null,A.au()) +s.aI() +s.saU(null) +return s}} +A.z5.prototype={ +aG(a){var s=new A.DO(!0,null,A.au()) +s.aI() +s.saU(null) +return s}, +aN(a,b){b.sYl(!0)}} +A.r6.prototype={ +aG(a){var s=new A.DX(this.e,null,A.au()) +s.aI() +s.saU(null) +return s}, +aN(a,b){b.sa_9(this.e)}} +A.BT.prototype={ +aG(a){var s=new A.E0(this.e,null,A.au()) +s.aI() +s.saU(null) +return s}, +aN(a,b){b.sa0C(0,this.e)}} +A.nD.prototype={ +N(a){return this.c}} +A.jh.prototype={ +N(a){return this.c.$1(a)}} +A.qt.prototype={ +aG(a){var s=new A.wR(this.e,B.ap,null,A.au()) +s.aI() +s.saU(null) +return s}, +aN(a,b){t.oZ.a(b).sac(0,this.e)}} +A.wR.prototype={ +sac(a,b){if(b.k(0,this.cI))return +this.cI=b +this.aB()}, +aC(a,b){var s,r,q,p,o,n,m=this +if(m.k3.L3(0,B.L)){s=a.gby(a) +r=m.k3 +q=b.a +p=b.b +o=r.a +r=r.b +n=$.ae().b9() +n.sac(0,m.cI) +s.bK(new A.C(q,p,q+o,p+r),n)}s=m.F$ +if(s!=null)a.f9(s,b)}} +A.a4V.prototype={ +$0(){var s,r,q=this,p=q.b +if(p==null||t.f2.b(q.c)){p=q.a.y1$ +p===$&&A.c() +p=p.e +p.toString +s=q.c +s=s.gbp(s) +r=A.aiS() +p.bM(r,s) +p=r}return p}, +$S:285} +A.a4W.prototype={ +$1(a){var s=a==null?t.K.a(a):a +return this.a.j1(s)}, +$S:286} +A.hP.prototype={ +qM(){return A.cJ(!1,t.y)}, +nF(a){return A.cJ(!1,t.y)}, +ZL(a){var s=a.a +s.toString +return this.nF(s)}, +H5(){}, +H7(){}, +H6(){}, +H4(a){}, +xj(){var s=0,r=A.Y(t.mH),q +var $async$xj=A.Z(function(a,b){if(a===1)return A.V(b,r) +while(true)switch(s){case 0:q=B.i6 +s=1 +break +case 1:return A.W(q,r)}}) +return A.X($async$xj,r)}} +A.vr.prototype={ +rd(){var s=0,r=A.Y(t.mH),q,p=this,o,n,m,l +var $async$rd=A.Z(function(a,b){if(a===1)return A.V(b,r) +while(true)switch(s){case 0:o=p.bE$,n=o.length,m=!1,l=0 +case 3:if(!(l"))}, +aG(a){return this.d}, +aN(a,b){}, +Yg(a,b){var s,r={} +r.a=b +if(b==null){a.IX(new A.WO(r,this,a)) +s=r.a +s.toString +a.qt(s,new A.WP(r))}else{b.p2=this +b.ja()}r=r.a +r.toString +return r}, +bW(){return this.e}} +A.WO.prototype={ +$0(){var s=this.b,r=A.amz(s,s.$ti.c) +this.a.a=r +r.r=this.c}, +$S:0} +A.WP.prototype={ +$0(){var s=this.a.a +s.toString +s.B2(null,null) +s.pP()}, +$S:0} +A.k1.prototype={ +aR(a){var s=this.p1 +if(s!=null)a.$1(s)}, +iZ(a){this.p1=null +this.kx(a)}, +f7(a,b){this.B2(a,b) +this.pP()}, +b7(a,b){this.ml(0,b) +this.pP()}, +hv(){var s=this,r=s.p2 +if(r!=null){s.p2=null +s.ml(0,s.$ti.h("lQ<1>").a(r)) +s.pP()}s.AX()}, +pP(){var s,r,q,p,o,n,m,l=this +try{o=l.p1 +n=l.f +n.toString +l.p1=l.dz(o,l.$ti.h("lQ<1>").a(n).c,B.iO)}catch(m){s=A.ah(m) +r=A.aJ(m) +o=A.bg("attaching to the render tree") +q=new A.bu(s,r,"widgets library",o,null,!1) +A.dx(q) +p=A.a7P(q) +l.p1=l.dz(null,p,B.iO)}}, +ga2(){return this.$ti.h("aG<1>").a(A.c_.prototype.ga2.call(this))}, +j5(a,b){var s=this.$ti +s.h("aG<1>").a(A.c_.prototype.ga2.call(this)).saU(s.c.a(a))}, +jb(a,b,c){}, +kk(a,b){this.$ti.h("aG<1>").a(A.c_.prototype.ga2.call(this)).saU(null)}} +A.G6.prototype={$iag:1} +A.wV.prototype={ +f7(a,b){this.u6(a,b)}} +A.xT.prototype={ +ev(){this.LK() +$.e3=this +var s=$.aB() +s.Q=this.gTc() +s.as=$.ab}, +zC(){this.LM() +this.v6()}} +A.xU.prototype={ +ev(){this.OS() +$.bK=this}, +kb(){this.LL()}} +A.xV.prototype={ +ev(){var s,r,q,p,o=this +o.OU() +$.fI=o +o.ba$!==$&&A.dj() +o.ba$=B.x5 +s=new A.uc(A.az(t.hp),$.b7()) +B.h5.mb(s.gUE()) +o.aL$=s +s=t.F3 +r=new A.St(A.y(s,t.lT),A.az(t.vQ),A.a([],t.AV)) +o.ai$!==$&&A.dj() +o.ai$=r +q=$.a72() +p=A.a([],t.DG) +o.aE$!==$&&A.dj() +s=o.aE$=new A.C1(r,q,p,A.az(s)) +p=$.aB() +p.at=s.ga_A() +p.ax=$.ab +B.vE.tD(s.ga_V()) +s=$.abM +if(s==null)s=$.abM=A.a([],t.e8) +s.push(o.gPF()) +B.vG.tD(new A.a4W(o)) +B.vF.tD(o.gT1()) +B.bq.mb(o.gTa()) +$.agy() +o.a22()}, +kb(){this.OV()}} +A.xW.prototype={ +ev(){this.OW() +$.fv=this +var s=t.K +this.fv$=new A.T1(A.y(s,t.BL),A.y(s,t.lM),A.y(s,t.s8))}, +nX(){this.NW() +var s=this.fv$ +s===$&&A.c() +s.L(0)}, +j1(a){return this.a07(a)}, +a07(a){var s=0,r=A.Y(t.H),q,p=this +var $async$j1=A.Z(function(b,c){if(b===1)return A.V(c,r) +while(true)switch(s){case 0:s=3 +return A.a1(p.NX(a),$async$j1) +case 3:switch(A.bW(J.bc(t.a.a(a),"type"))){case"fontsChange":p.xE$.ao() +break}s=1 +break +case 1:return A.W(q,r)}}) +return A.X($async$j1,r)}} +A.xX.prototype={ +ev(){var s,r,q=this +q.OZ() +$.Yk=q +s=$.aB() +q.xI$=s.a.a +s.p2=q.gTD() +r=$.ab +s.p3=r +s.p4=q.gTB() +s.R8=r +q.D0()}} +A.xY.prototype={ +ev(){var s,r,q,p,o,n=this +n.P_() +$.k2=n +s=t.By +n.y1$=new A.nY(n.gTE(),n.gTI(),n.gTG(),A.a([],s),A.a([],s),A.a([],s),A.az(t.aP),A.az(t.EQ)) +s=$.aB() +s.f=n.ga_I() +r=s.r=$.ab +s.go=n.ga0g() +s.id=r +s.k3=n.ga_O() +s.k4=r +r=n.GU() +s=s.d.i(0,0) +s.toString +s=new A.u8(B.L,r,s,null,A.au()) +s.aI() +s.saU(null) +r=n.y1$ +r===$&&A.c() +r.sa2r(s) +s=n.y1$.e +s.Q=s +r=t.W +r.a(A.K.prototype.gbl.call(s)).r.push(s) +q=s.Fp() +s.ch.saY(0,q) +r.a(A.K.prototype.gbl.call(s)).Q.push(s) +n.CW$.push(n.gT8()) +s=n.xr$ +if(s!=null){s.a_$=$.b7() +s.W$=0}s=t.S +r=$.b7() +n.xr$=new A.CB(new A.UF(B.bv,A.y(s,t.Df)),A.y(s,t.eg),r) +n.cx$.push(n.gTU()) +s=n.y1$ +p=n.x1$ +if(p===$){o=new A.Gx(n,r) +n.gpY().Z(0,o.gdu()) +n.x1$!==$&&A.ap() +n.x1$=o +p=o}s.ak(p)}, +kb(){this.OX()}, +xo(a,b,c){this.xr$.a2U(b,new A.a4V(this,c,b)) +this.Mx(0,b,c)}} +A.xZ.prototype={ +xT(){var s,r,q +this.Ny() +for(s=this.bE$,r=s.length,q=0;q=s.b&&s.c>=s.d) +else s=!0}else s=!1 +if(s)m=new A.C9(0,0,new A.ej(B.ie,n,n),n) +else{s=o.d +if(s!=null)m=new A.jb(s,n,n,m,n)}r=o.gV8() +if(r!=null)m=new A.hw(r,m,n) +s=o.f +if(s!=null)m=new A.qt(s,m,n) +s=o.as +if(s!==B.w){q=A.e1(a) +p=o.r +p.toString +m=A.aaL(m,s,new A.Hm(q==null?B.q:q,p,n))}s=o.r +if(s!=null)m=A.a7B(m,s,B.fi) +s=o.w +if(s!=null)m=A.a7B(m,s,B.jr) +s=o.x +if(s!=null)m=new A.ej(s,m,n) +s=o.y +if(s!=null)m=new A.hw(s,m,n) +s=o.z +if(s!=null)m=A.a8M(o.Q,m,s,!0) +m.toString +return m}} +A.Hm.prototype={ +th(a){return this.c.ti(new A.C(0,0,0+a.a,0+a.b),this.b)}, +tJ(a){return!a.c.k(0,this.c)||a.b!==this.b}} +A.n6.prototype={ +bO(a){return!J.e(this.w,a.w)||!J.e(this.x,a.x)}} +A.Ji.prototype={ +N(a){throw A.d(A.RC("A DefaultSelectionStyle constructed with DefaultSelectionStyle.fallback cannot be incorporated into the widget tree, it is meant only to provide a fallback value returned by DefaultSelectionStyle.of() when no enclosing default selection style is present in a BuildContext."))}} +A.AA.prototype={ +S8(){return $.agd()}, +N(a){var s=A.a8w(this.c,"",this.S8()) +return A.a8w(s,"",A.ajE())}} +A.AJ.prototype={ +gaF(a){var s=this.a +if(s==null)return null +s=s.c +s.toString +return s}} +A.na.prototype={ +aq(){return new A.vW(A.DF(null),A.DF(null),B.m)}, +a_p(a,b,c){return this.d.$3(a,b,c)}, +a2o(a,b,c){return this.e.$3(a,b,c)}} +A.vW.prototype={ +aM(){var s,r=this +r.bb() +s=r.a.c +r.d=s.gaP(s) +s=r.a.c +s.aX() +s=s.bT$ +s.b=!0 +s.a.push(r.gul()) +r.Ck()}, +Bp(a){var s,r=this,q=r.d +q===$&&A.c() +s=r.Q8(a,q) +r.d=s +if(q!==s)r.Ck()}, +aQ(a){var s,r,q=this +q.bi(a) +s=a.c +if(s!==q.a.c){r=q.gul() +s.cn(r) +s=q.a.c +s.aX() +s=s.bT$ +s.b=!0 +s.a.push(r) +r=q.a.c +q.Bp(r.gaP(r))}}, +Q8(a,b){switch(a.a){case 0:case 3:return a +case 1:switch(b.a){case 0:case 3:case 1:return a +case 2:return b}break +case 2:switch(b.a){case 0:case 3:case 2:return a +case 1:return b}break}}, +Ck(){var s=this,r=s.d +r===$&&A.c() +switch(r.a){case 0:case 1:s.e.saZ(0,s.a.c) +s.f.saZ(0,B.cf) +break +case 2:case 3:s.e.saZ(0,B.ce) +s.f.saZ(0,new A.fE(s.a.c,new A.be(A.a([],t.A),t.Q),0)) +break}}, +m(){this.a.c.cn(this.gul()) +this.aW()}, +N(a){var s=this.a +return s.a_p(a,this.e,s.a2o(a,this.f,s.f))}} +A.jE.prototype={ +D(){return"KeyEventResult."+this.b}} +A.Gu.prototype={} +A.RI.prototype={ +ag(a){var s,r=this.a +if(r.ax===this){if(!r.gj3()){s=r.w +s=s!=null&&s.e===r}else s=!0 +if(s)r.zB(B.v3) +s=r.w +if(s!=null){if(s.c===r)s.c=null +s.d.v(0,r)}s=r.Q +if(s!=null)s.VR(0,r) +r.ax=null}}, +zh(a){var s,r=this.a +if(r.ax===this){s=r.e +s.toString +a=A.a7S(s,!0,!0);(a==null?r.e.r.f.b:a).vW(r)}}, +JQ(){return this.zh(null)}} +A.FT.prototype={ +D(){return"UnfocusDisposition."+this.b}} +A.cu.prototype={ +geB(){var s,r,q +if(this.a)return!0 +for(s=this.gfn(),r=s.length,q=0;q"))}, +gfn(){var s,r,q=this.x +if(q==null){s=A.a([],t.d) +r=this.Q +for(;r!=null;){s.push(r) +r=r.Q}this.x=s +q=s}return q}, +gj2(){if(!this.gj3()){var s=this.w +if(s==null)s=null +else{s=s.c +s=s==null?null:B.b.q(s.gfn(),this)}s=s===!0}else s=!0 +return s}, +gj3(){var s=this.w +return(s==null?null:s.c)===this}, +gkf(){return this.gdE()}, +gdE(){var s,r,q,p +for(s=this.gfn(),r=s.length,q=0;q#"+s+q}, +$ia7:1} +A.RK.prototype={ +$1(a){return!a.geB()&&a.gce()}, +$S:13} +A.l9.prototype={ +gkf(){return this}, +goD(){if(!this.gce())return B.wc +return A.cu.prototype.goD.call(this)}, +oW(a){if(a.Q==null)this.vW(a) +if(this.gj2())a.iC(!0) +else a.kR()}, +iC(a){var s,r,q=this,p=q.fr +while(!0){if((p.length!==0?B.b.gO(p):null)!=null)s=!(p.length!==0?B.b.gO(p):null).gce() +else s=!1 +if(!s)break +p.pop()}r=p.length!==0?B.b.gO(p):null +if(!a||r==null){if(q.gce()){q.kR() +q.Dt(q)}return}r.iC(!0)}} +A.jt.prototype={ +D(){return"FocusHighlightMode."+this.b}} +A.RJ.prototype={ +D(){return"FocusHighlightStrategy."+this.b}} +A.ri.prototype={ +pE(){if(this.r)return +this.r=!0 +A.f7(this.gPT())}, +PU(){var s,r,q,p,o,n,m,l,k,j,i,h=this +h.r=!1 +s=h.c +for(r=h.f,q=r.length,p=h.b,o=0;o"))),o=null;l.t();o=n){n=l.gC(l) +if(o==r){l=b?B.bZ:B.c_ +n.t5() +s=n.e +s.toString +A.acN(s,1,l) +return!0}}return!1}} +A.RN.prototype={ +$1(a){var s,r,q,p,o,n,m +for(s=a.c,r=s.length,q=this.b,p=this.a,o=0;o")) +if(!o.gS(o))q=o}n=J.aam(q,new A.Qc(new A.C(g.gar(g).a,-1/0,g.gar(g).c,1/0))) +if(!n.gS(n)){p=B.b.gG(A.ajK(g.gar(g).gav(),n)) +break}p=B.b.gG(A.ajL(g.gar(g).gav(),q)) +break +case B.aM:case B.aO:q=k.WN(b,g.gar(g),i.goD()) +if(q.length===0){p=j +break}if(r!=null&&!r.d.gGa()){o=new A.b2(q,new A.Qd(r),A.ac(q).h("b2<1>")) +if(!o.gS(o))q=o}n=J.aam(q,new A.Qe(new A.C(-1/0,g.gar(g).b,1/0,g.gar(g).d))) +if(!n.gS(n)){p=B.b.gG(A.ajJ(g.gar(g).gav(),n)) +break}p=B.b.gG(A.ajM(g.gar(g).gav(),q)) +break +default:p=j}if(p!=null){h=k.nP$ +m=h.i(0,i) +l=new A.p_(b,g) +if(m!=null)m.a.push(l) +else h.l(0,i,new A.Hu(A.a([l],t.gE))) +switch(b){case B.aL:case B.aO:A.kx(p,B.c_) +break +case B.aN:case B.aM:A.kx(p,B.bZ) +break}return!0}return!1}} +A.a3M.prototype={ +$1(a){return a.b===this.a}, +$S:290} +A.Q6.prototype={ +$2(a,b){if(this.a)if(this.b)return B.c.aV(a.gar(a).b,b.gar(b).b) +else return B.c.aV(b.gar(b).d,a.gar(a).d) +else if(this.b)return B.c.aV(a.gar(a).a,b.gar(b).a) +else return B.c.aV(b.gar(b).c,a.gar(a).c)}, +$S:26} +A.Q8.prototype={ +$2(a,b){var s=a.gar(a).gav(),r=b.gar(b).gav(),q=this.a,p=A.a7F(q,s,r) +if(p===0)return A.a7E(q,s,r) +return p}, +$S:26} +A.Q7.prototype={ +$2(a,b){var s=a.gar(a).gav(),r=b.gar(b).gav(),q=this.a,p=A.a7E(q,s,r) +if(p===0)return A.a7F(q,s,r) +return p}, +$S:26} +A.Q9.prototype={ +$2(a,b){var s,r,q,p=this.a,o=a.gar(a),n=b.gar(b),m=o.a,l=p.a,k=o.c +m=Math.abs(m-l)=s.c}, +$S:13} +A.Q2.prototype={ +$2(a,b){return B.c.aV(a.gar(a).gav().a,b.gar(b).gav().a)}, +$S:26} +A.Q3.prototype={ +$1(a){var s=this.a +return!a.gar(a).k(0,s)&&a.gar(a).gav().b<=s.b}, +$S:13} +A.Q4.prototype={ +$1(a){var s=this.a +return!a.gar(a).k(0,s)&&a.gar(a).gav().b>=s.d}, +$S:13} +A.Q5.prototype={ +$2(a,b){return B.c.aV(a.gar(a).gav().b,b.gar(b).gav().b)}, +$S:26} +A.Q_.prototype={ +$1(a){var s,r,q=this.b.a.pop().b,p=q.e +p.toString +p=A.hC(p) +s=$.at.a1$.f.c.e +s.toString +if(p!=A.hC(s)){p=this.a +s=this.c +p.ky(s) +p.nP$.v(0,s) +return!1}switch(a){case B.aL:case B.aO:r=B.c_ +break +case B.aM:case B.aN:r=B.bZ +break +default:r=null}A.kx(q,r) +return!0}, +$S:292} +A.Qb.prototype={ +$1(a){var s=a.e +s.toString +return A.hC(s)===this.a}, +$S:13} +A.Qc.prototype={ +$1(a){var s=a.gar(a).dd(this.a) +return!s.gS(s)}, +$S:13} +A.Qd.prototype={ +$1(a){var s=a.e +s.toString +return A.hC(s)===this.a}, +$S:13} +A.Qe.prototype={ +$1(a){var s=a.gar(a).dd(this.a) +return!s.gS(s)}, +$S:13} +A.cF.prototype={ +gHb(){var s=this.d +if(s==null){s=this.c.e +s.toString +s=this.d=new A.a3K().$1(s)}s.toString +return s}} +A.a3J.prototype={ +$1(a){var s=a.gHb() +return A.nG(s,A.ac(s).c)}, +$S:293} +A.a3L.prototype={ +$2(a,b){switch(this.a.a){case 1:return B.c.aV(a.b.a,b.b.a) +case 0:return B.c.aV(b.b.c,a.b.c)}}, +$S:80} +A.a3K.prototype={ +$1(a){var s,r,q=A.a([],t.AG),p=t.I,o=a.jm(p) +for(;o!=null;){s=o.f +s.toString +q.push(p.a(s)) +s=A.apz(o) +if(s==null)o=null +else{s=s.y +r=s==null?null:s.i(0,A.bG(p)) +o=r}}return q}, +$S:295} +A.hR.prototype={ +gar(a){var s,r,q,p,o=this +if(o.b==null)for(s=o.a,s=new A.aA(s,new A.a3H(),A.ac(s).h("aA<1,C>")),s=new A.db(s,s.gp(s)),r=A.m(s).c;s.t();){q=s.d +if(q==null)q=r.a(q) +p=o.b +if(p==null){o.b=q +p=q}o.b=p.jX(q)}s=o.b +s.toString +return s}} +A.a3H.prototype={ +$1(a){return a.b}, +$S:296} +A.a3I.prototype={ +$2(a,b){switch(this.a.a){case 1:return B.c.aV(a.gar(a).a,b.gar(b).a) +case 0:return B.c.aV(b.gar(b).c,a.gar(a).c)}}, +$S:297} +A.tW.prototype={ +QB(a){var s,r,q,p,o,n=B.b.gG(a).a,m=t.hY,l=A.a([],m),k=A.a([],t.lZ) +for(s=a.length,r=0;r") +return A.aw(new A.b2(b,new A.WE(new A.C(-1/0,s.b,1/0,s.d)),r),!0,r.h("j.E"))}, +$S:298} +A.WE.prototype={ +$1(a){var s=a.b.dd(this.a) +return!s.gS(s)}, +$S:299} +A.rj.prototype={ +aq(){return new A.I5(B.m)}} +A.w3.prototype={} +A.I5.prototype={ +gbz(a){var s,r,q,p=this,o=p.d +if(o===$){s=p.a.c +r=A.a([],t.d) +q=$.b7() +p.d!==$&&A.ap() +o=p.d=new A.w3(s,!1,!0,!0,!0,null,null,r,q)}return o}, +m(){this.gbz(this).m() +this.aW()}, +aQ(a){var s=this +s.bi(a) +if(a.c!==s.a.c)s.gbz(s).dy=s.a.c}, +N(a){var s=null,r=this.gbz(this) +return A.Bn(!1,!1,this.a.f,s,!0,!0,r,!1,s,s,s,s,s,!0)}} +A.Eh.prototype={ +cZ(a){A.kx(a.gbz(a),B.Fr)}} +A.ly.prototype={} +A.CM.prototype={ +cZ(a){var s=$.at.a1$.f.c,r=s.e +r.toString +return A.Bp(r).Dz(s,!0)}, +zw(a,b){return b?B.co:B.dx}} +A.lN.prototype={} +A.DC.prototype={ +cZ(a){var s=$.at.a1$.f.c,r=s.e +r.toString +return A.Bp(r).Dz(s,!1)}, +zw(a,b){return b?B.co:B.dx}} +A.AG.prototype={ +cZ(a){var s=$.at.a1$.f.c,r=s.e +r.toString +A.Bp(r).a0z(s,a.a)}} +A.I6.prototype={} +A.Kd.prototype={ +wT(a,b){var s +this.Mw(a,b) +s=this.nP$.i(0,b) +if(s!=null){s=s.a +if(!!s.fixed$length)A.a2(A.T("removeWhere")) +B.b.vV(s,new A.a3M(a),!0)}}} +A.MI.prototype={} +A.MJ.prototype={} +A.he.prototype={ +gbj(){var s,r=$.at.a1$.z.i(0,this) +if(r instanceof A.f_){s=r.ok +s.toString +if(A.m(this).c.b(s))return s}return null}} +A.bM.prototype={ +j(a){var s=this,r=s.a,q=r!=null?" "+r:"" +if(A.w(s)===B.M4)return"[GlobalKey#"+A.bs(s)+q+"]" +return"["+("#"+A.bs(s))+q+"]"}} +A.ii.prototype={ +k(a,b){if(b==null)return!1 +if(J.J(b)!==A.w(this))return!1 +return this.$ti.b(b)&&b.a===this.a}, +gu(a){return A.pH(this.a)}, +j(a){var s="GlobalObjectKey",r=B.d.a__(s,">")?B.d.am(s,0,-8):s +return"["+r+" "+("#"+A.bs(this.a))+"]"}} +A.l.prototype={ +bW(){var s=this.a +return s==null?"Widget":"Widget-"+s.j(0)}, +k(a,b){if(b==null)return!1 +return this.N2(0,b)}, +gu(a){return A.E.prototype.gu.call(this,this)}} +A.aV.prototype={ +bJ(a){return new A.Fi(this,B.Y)}} +A.aa.prototype={ +bJ(a){return A.ang(this)}} +A.a4o.prototype={ +D(){return"_StateLifecycle."+this.b}} +A.an.prototype={ +aM(){}, +aQ(a){}, +aA(a){a.$0() +this.c.ja()}, +d6(){}, +c8(){}, +m(){}, +b4(){}} +A.aK.prototype={} +A.e9.prototype={ +bJ(a){return new A.lA(this,B.Y,A.m(this).h("lA"))}} +A.aX.prototype={ +bJ(a){return A.akY(this)}} +A.ax.prototype={ +aN(a,b){}, +nG(a){}} +A.C6.prototype={ +bJ(a){return new A.C5(this,B.Y)}} +A.b5.prototype={ +bJ(a){return new A.uH(this,B.Y)}} +A.ew.prototype={ +bJ(a){return A.alx(this)}} +A.p0.prototype={ +D(){return"_ElementLifecycle."+this.b}} +A.Is.prototype={ +F9(a){a.aR(new A.a2t(this,a)) +a.oE()}, +Xd(){var s,r,q,p=this +p.a=!0 +r=p.b +q=A.aw(r,!0,A.m(r).c) +B.b.ei(q,A.a6j()) +s=q +r.L(0) +try{r=s +new A.co(r,A.b9(r).h("co<1>")).P(0,p.gXb())}finally{p.a=!1}}, +B(a,b){if(b.w===B.bA){b.d6() +b.aR(A.a6k())}this.b.B(0,b)}} +A.a2t.prototype={ +$1(a){this.a.F9(a)}, +$S:6} +A.OE.prototype={ +A5(a){var s=this +if(a.at){s.e=!0 +return}if(!s.d&&s.a!=null){s.d=!0 +s.a.$0()}s.c.push(a) +a.at=!0}, +IX(a){try{a.$0()}finally{}}, +qt(a,b){var s,r,q,p,o,n,m,l,k,j=this,i={},h=b==null +if(h&&j.c.length===0)return +try{j.d=!0 +if(!h){i.a=null +j.e=!1 +try{b.$0()}finally{}}h=j.c +B.b.ei(h,A.a6j()) +j.e=!1 +i.b=h.length +i.c=0 +for(o=0;o=l){m=j.e +m.toString}else m=!0 +if(m){if(!!h.immutable$list)A.a2(A.T("sort")) +o=l-1 +if(o-0<=32)A.Fb(h,0,o,A.a6j()) +else A.Fa(h,0,o,A.a6j()) +o=j.e=!1 +i.b=h.length +while(!0){m=i.c +if(!(m>0?h[m-1].as:o))break +i.c=m-1}o=m}}}finally{for(h=j.c,o=h.length,k=0;k#"+A.bs(this)+"(DEFUNCT)":s}, +ja(){var s=this +if(s.w!==B.bA)return +if(s.as)return +s.as=!0 +s.r.A5(s)}, +t0(a){var s +if(this.w===B.bA)s=!this.as&&!a +else s=!0 +if(s)return +try{this.hv()}finally{}}, +JD(){return this.t0(!1)}, +hv(){this.as=!1}, +$iao:1} +A.QL.prototype={ +$1(a){this.a.a=a}, +$S:6} +A.QM.prototype={ +$1(a){a.wt(this.a) +if(!(a instanceof A.c_))a.aR(this)}, +$S:6} +A.QI.prototype={ +$1(a){a.Fj(this.a)}, +$S:6} +A.QK.prototype={ +$1(a){a.nB()}, +$S:6} +A.QJ.prototype={ +$1(a){a.qr(this.a)}, +$S:6} +A.B7.prototype={ +aG(a){var s=this.d,r=new A.DW(s,A.au()) +r.aI() +r.Pr(s) +return r}} +A.qu.prototype={ +f7(a,b){this.AA(a,b) +this.v2()}, +v2(){this.JD()}, +hv(){var s,r,q,p,o,n,m=this,l=null +try{l=m.aS() +m.f.toString}catch(o){s=A.ah(o) +r=A.aJ(o) +n=A.a7P(A.a9j(A.bg("building "+m.j(0)),s,r,new A.Pq())) +l=n}finally{m.tY()}try{m.ay=m.dz(m.ay,l,m.d)}catch(o){q=A.ah(o) +p=A.aJ(o) +n=A.a7P(A.a9j(A.bg("building "+m.j(0)),q,p,new A.Pr())) +l=n +m.ay=m.dz(null,l,m.d)}}, +aR(a){var s=this.ay +if(s!=null)a.$1(s)}, +iZ(a){this.ay=null +this.kx(a)}} +A.Pq.prototype={ +$0(){var s=A.a([],t.E) +return s}, +$S:15} +A.Pr.prototype={ +$0(){var s=A.a([],t.E) +return s}, +$S:15} +A.Fi.prototype={ +aS(){var s=this.f +s.toString +return t.yB.a(s).N(this)}, +b7(a,b){this.p8(0,b) +this.t0(!0)}} +A.f_.prototype={ +aS(){return this.ok.N(this)}, +v2(){this.ok.aM() +this.ok.b4() +this.Mf()}, +hv(){var s=this +if(s.p1){s.ok.b4() +s.p1=!1}s.Mg()}, +b7(a,b){var s,r,q,p=this +p.p8(0,b) +s=p.ok +r=s.a +r.toString +q=p.f +q.toString +s.a=t.aw.a(q) +s.aQ(r) +p.t0(!0)}, +c8(){this.Mt() +this.ok.c8() +this.ja()}, +d6(){this.ok.d6() +this.Ay()}, +oE(){var s=this +s.tZ() +s.ok.m() +s.ok=s.ok.c=null}, +qL(a,b){return this.tX(a,b)}, +b4(){this.Mu() +this.p1=!0}} +A.tP.prototype={ +aS(){var s=this.f +s.toString +return t.kc.a(s).b}, +b7(a,b){var s=this,r=s.f +r.toString +t.kc.a(r) +s.p8(0,b) +s.zJ(r) +s.t0(!0)}, +zJ(a){this.lH(a)}} +A.lA.prototype={ +Br(a){this.aR(new A.Vv(a))}, +lH(a){var s=this.f +s.toString +this.Br(this.$ti.h("e9<1>").a(s))}} +A.Vv.prototype={ +$1(a){if(a instanceof A.c_)this.a.qp(a.ga2()) +else a.aR(this)}, +$S:6} +A.eq.prototype={ +wo(){var s=this,r=s.a,q=r==null?null:r.y +if(q==null)q=B.Em +r=s.f +r.toString +s.y=q.a2_(0,A.w(r),s)}, +Aa(a,b){this.W.l(0,a,b)}, +Kj(a,b){this.Aa(a,null)}, +J7(a,b){b.b4()}, +zJ(a){var s=this.f +s.toString +if(t.sg.a(s).bO(a))this.Ng(a)}, +lH(a){var s,r,q +for(s=this.W,s=new A.w7(s,s.uH()),r=A.m(s).c;s.t();){q=s.d +this.J7(a,q==null?r.a(q):q)}}} +A.c_.prototype={ +ga2(){var s=this.ay +s.toString +return s}, +RN(){var s=this.a +while(!0){if(!(s!=null&&!(s instanceof A.c_)))break +s=s.a}return t.bI.a(s)}, +RM(){var s,r={},q=r.a=this.a +r.b=null +while(!0){if(!(q!=null&&!(q instanceof A.c_)))break +if(q instanceof A.lA){r.b=q +break}s=q.a +r.a=s +q=s}return r.b}, +f7(a,b){var s,r=this +r.AA(a,b) +s=r.f +s.toString +r.ay=t.xL.a(s).aG(r) +r.qr(b) +r.tY()}, +b7(a,b){this.p8(0,b) +this.DQ()}, +hv(){this.DQ()}, +DQ(){var s=this,r=s.f +r.toString +t.xL.a(r).aN(s,s.ga2()) +s.tY()}, +a2R(a1,a2,a3){var s,r,q,p,o,n,m,l,k=this,j=null,i=new A.WM(a3),h=new A.WN(j),g=a2.length,f=g-1,e=a1.length-1,d=t.h,c=A.aU(g,$.aa_(),!1,d),b=j,a=0,a0=0 +while(!0){if(!(a0<=e&&a<=f))break +s=i.$1(a1[a0]) +r=a2[a] +if(s!=null){g=s.f +g.toString +g=!(A.w(g)===A.w(r)&&J.e(g.a,r.a))}else g=!0 +if(g)break +g=k.dz(s,r,h.$2(a,b)) +g.toString +c[a]=g;++a;++a0 +b=g}q=e +while(!0){p=a0<=q +if(!(p&&a<=f))break +s=i.$1(a1[q]) +r=a2[f] +if(s!=null){g=s.f +g.toString +g=!(A.w(g)===A.w(r)&&J.e(g.a,r.a))}else g=!0 +if(g)break;--q;--f}if(p){o=A.y(t.qI,d) +for(;a0<=q;){s=i.$1(a1[a0]) +if(s!=null){g=s.f.a +if(g!=null)o.l(0,g,s) +else{s.a=null +s.nB() +g=k.r.b +if(s.w===B.bA){s.d6() +s.aR(A.a6k())}g.b.B(0,s)}}++a0}p=!0}else o=j +for(;a<=f;b=g){r=a2[a] +if(p){n=r.a +if(n!=null){s=o.i(0,n) +if(s!=null){g=s.f +g.toString +if(A.w(g)===A.w(r)&&J.e(g.a,n))o.v(0,n) +else s=j}}else s=j}else s=j +g=k.dz(s,r,h.$2(a,b)) +g.toString +c[a]=g;++a}f=a2.length-1 +while(!0){if(!(a0<=e&&a<=f))break +g=k.dz(a1[a0],a2[a],h.$2(a,b)) +g.toString +c[a]=g;++a;++a0 +b=g}if(p&&o.a!==0)for(g=o.gaJ(o),g=new A.dy(J.am(g.a),g.b),d=A.m(g).z[1];g.t();){m=g.a +if(m==null)m=d.a(m) +if(!a3.q(0,m)){m.a=null +m.nB() +l=k.r.b +if(m.w===B.bA){m.d6() +m.aR(A.a6k())}l.b.B(0,m)}}return c}, +d6(){this.Ay()}, +oE(){var s=this,r=s.f +r.toString +t.xL.a(r) +s.tZ() +r.nG(s.ga2()) +s.ay.m() +s.ay=null}, +wt(a){var s,r=this,q=r.d +r.Ms(a) +s=r.CW +s.toString +s.jb(r.ga2(),q,r.d)}, +qr(a){var s,r,q=this +q.d=a +s=q.CW=q.RN() +if(s!=null)s.j5(q.ga2(),a) +r=q.RM() +if(r!=null){s=r.f +s.toString +t.yL.a(s).qp(q.ga2())}}, +nB(){var s=this,r=s.CW +if(r!=null){r.kk(s.ga2(),s.d) +s.CW=null}s.d=null}} +A.WM.prototype={ +$1(a){var s=this.a.q(0,a) +return s?null:a}, +$S:300} +A.WN.prototype={ +$2(a,b){return new A.nt(b,a,t.wx)}, +$S:301} +A.Xp.prototype={} +A.C5.prototype={ +iZ(a){this.kx(a)}, +j5(a,b){}, +jb(a,b,c){}, +kk(a,b){}} +A.uH.prototype={ +aR(a){var s=this.p1 +if(s!=null)a.$1(s)}, +iZ(a){this.p1=null +this.kx(a)}, +f7(a,b){var s,r,q=this +q.u6(a,b) +s=q.p1 +r=q.f +r.toString +q.p1=q.dz(s,t.Dp.a(r).c,null)}, +b7(a,b){var s,r,q=this +q.ml(0,b) +s=q.p1 +r=q.f +r.toString +q.p1=q.dz(s,t.Dp.a(r).c,null)}, +j5(a,b){var s=this.ay +s.toString +t.fB.a(s).saU(a)}, +jb(a,b,c){}, +kk(a,b){var s=this.ay +s.toString +t.fB.a(s).saU(null)}} +A.ev.prototype={ +ga2(){return t.gz.a(A.c_.prototype.ga2.call(this))}, +gGn(a){var s=this.p1 +s===$&&A.c() +return new A.b2(s,new A.UN(this),A.ac(s).h("b2<1>"))}, +j5(a,b){var s=this.ga2(),r=b.a +s.y8(0,a,r==null?null:r.ga2())}, +jb(a,b,c){var s=this.ga2(),r=c.a +s.rD(a,r==null?null:r.ga2())}, +kk(a,b){this.ga2().v(0,a)}, +aR(a){var s,r,q,p,o=this.p1 +o===$&&A.c() +s=o.length +r=this.p2 +q=0 +for(;q") +h.d=new A.aR(t.m.a(p),new A.fQ(new A.i8(new A.hk(n,1,B.ae)),o,m),m.h("aR"))}}if(s)s=!(isFinite(q.a)&&isFinite(q.b)) +else s=!0 +h.w=s}, +p0(a,b){var s,r,q,p=this +p.f=b +switch(b.a.a){case 1:s=p.e +s===$&&A.c() +s.saZ(0,new A.fE(b.gfo(b),new A.be(A.a([],t.A),t.Q),0)) +r=!1 +break +case 0:s=p.e +s===$&&A.c() +s.saZ(0,b.gfo(b)) +r=!0 +break +default:r=null}s=p.f +p.b=s.nv(s.gHV(),p.f.gt8()) +p.f.f.tO(r) +p.f.r.tN() +s=p.f +q=A.Vh(p.gQ5(),!1) +p.r=q +s.b.y7(0,q) +q=p.e +q===$&&A.c() +q.aX() +q=q.bY$ +q.b=!0 +q.a.push(p.gJd())}, +j(a){var s,r,q,p,o,n=this.f +n===$&&A.c() +s=n.d.b +r=n.e.b +n=n.f.a.c.j(0) +q=s.j(0) +p=r.j(0) +o=this.e +o===$&&A.c() +return"HeroFlight(for: "+n+", from: "+q+", to: "+p+" "+A.h(o.c)+")"}} +A.a2d.prototype={ +$2(a,b){var s,r=null,q=this.a,p=q.b +p===$&&A.c() +s=q.e +s===$&&A.c() +s=p.V(0,s.gn(s)) +s.toString +p=q.f +p===$&&A.c() +p=p.c +return A.acm(p.b-s.d,new A.hh(!0,r,A.abe(b,q.d),r),r,r,s.a,p.a-s.c,s.b,r)}, +$S:319} +A.a2e.prototype={ +$0(){var s,r=this.a +r.x=!1 +this.b.CW.H(0,this) +s=r.e +s===$&&A.c() +r.DP(s.gaP(s))}, +$S:0} +A.rp.prototype={ +qQ(){var s,r,q,p=$.fX() +A.Ba(this) +if(p.a.get(this).CW.a)return +p=this.b +p=p.gaJ(p) +s=A.m(p).h("b2") +r=A.aw(new A.b2(p,new A.SA(),s),!1,s.h("j.E")) +for(p=r.length,q=0;q"),a=t.sD;s.t();){a0=s.gC(s) +a1=a0.a +a2=a0.b +a3=k.i(0,a1) +a4=j.i(0,a1) +if(a3==null)a5=null +else{a0=o.k3 +a0.toString +a3.a.toString +a2.a.toString +a5=new A.a2c(b2,q,a0,b0,b1,a2,a3,p,r,b3,a4!=null)}if(a5!=null&&a5.gkd()){k.v(0,a1) +if(a4!=null){a0=a4.f +a0===$&&A.c() +a6=a0.a +if(a6===B.bi&&a5.a===B.bj){a0=a4.e +a0===$&&A.c() +a0.saZ(0,new A.fE(a5.gfo(a5),new A.be(A.a([],h),g),0)) +a0=a4.b +a0===$&&A.c() +a4.b=new A.ud(a0,a0.b,a0.a,a)}else{a6=a6===B.bj&&a5.a===B.bi +a7=a4.e +if(a6){a7===$&&A.c() +a0=a5.gfo(a5) +a6=a4.f +a6=a6.gfo(a6) +a6=a6.gn(a6) +a7.saZ(0,new A.aR(c.a(a0),new A.av(a6,1,d),b)) +a0=a4.f +a6=a0.f +a7=a5.r +if(a6!==a7){a6.lg(!0) +a7.tN() +a0=a4.f +a6=a4.b +a6===$&&A.c() +a4.b=a0.nv(a6.b,a5.gt8())}else{a6=a4.b +a6===$&&A.c() +a4.b=a0.nv(a6.b,a6.a)}}else{a6=a4.b +a6===$&&A.c() +a7===$&&A.c() +a4.b=a0.nv(a6.V(0,a7.gn(a7)),a5.gt8()) +a4.c=null +a0=a5.a +a6=a4.e +if(a0===B.bj)a6.saZ(0,new A.fE(a5.gfo(a5),new A.be(A.a([],h),g),0)) +else a6.saZ(0,a5.gfo(a5)) +a4.f.f.lg(!0) +a4.f.r.lg(!0) +a5.f.tO(a0===B.bi) +a5.r.tN() +a0=a4.r.f.gbj() +if(a0!=null)a0.Ds()}}a4.f=a5}else{a0=new A.iT(i,B.ce) +a6=A.a([],h) +a7=new A.be(a6,g) +a8=new A.tO(a7,new A.be(A.a([],f),e),0) +a8.a=B.F +a8.b=0 +a8.aX() +a7.b=!0 +a6.push(a0.gSp()) +a0.e=a8 +a0.p0(0,a5) +j.l(0,a1,a0)}}else if(a4!=null)a4.w=!0}for(s=k.gaJ(k),s=s.gX(s);s.t();)s.gC(s).Hw()}, +SV(a){var s=a.f +s===$&&A.c() +this.b.v(0,s.f.a.c)}, +Ra(a,b,c,d,e){var s,r,q=e.f +q.toString +t.tV.a(q) +s=A.dl(e,null) +r=A.dl(d,null) +if(s==null||r==null)return q.e +return A.mF(b,new A.Sy(s,c,r.f,s.f,b,q),null)}} +A.SA.prototype={ +$1(a){var s=a.f +s===$&&A.c() +if(s.y)if(s.a===B.bj){s=a.e +s===$&&A.c() +s=s.gaP(s)===B.F}else s=!1 +else s=!1 +return s}, +$S:322} +A.Sz.prototype={ +$1(a){var s=this +s.a.EL(s.b,s.c,s.d,s.e)}, +$S:2} +A.Sy.prototype={ +$2(a,b){var s=this,r=s.c,q=s.d,p=s.e +r=s.b===B.bi?new A.qV(r,q).V(0,p.gn(p)):new A.qV(q,r).V(0,p.gn(p)) +return A.nP(s.f.e,s.a.wY(r),null)}, +$S:323} +A.rs.prototype={ +N(a){var s,r,q,p,o,n,m,l,k,j,i,h,g=null,f=a.aj(t.I) +f.toString +s=f.w +r=A.a7X(a) +q=r.a +p=r.b +o=r.c +n=r.d +m=r.e +f=r.r +l=f==null?g:A.O(f,0,1) +if(l==null)l=1 +k=this.x +if(k==null){f=r.f +f.toString +k=f}if(l!==1)k=A.U(B.c.bd(255*((k.gn(k)>>>24&255)/255*l)),k.gn(k)>>>16&255,k.gn(k)>>>8&255,k.gn(k)&255) +f=this.c +j=A.bv(f.a) +i=A.a([],t.BV) +if(p!=null)i.push(new A.ju("FILL",p)) +if(o!=null)i.push(new A.ju("wght",o)) +if(n!=null)i.push(new A.ju("GRAD",n)) +if(m!=null)i.push(new A.ju("opsz",m)) +h=A.acF(g,g,B.Hx,g,g,!0,g,A.a_j(g,A.vc(g,g,k,g,g,g,g,g,"MaterialIcons",g,g,q,g,i,g,g,g,!1,g,g,g,g,g,r.w,g,g),j),B.bw,s,g,1,B.aK) +if(f.d)switch(s.a){case 0:f=new A.aS(new Float64Array(16)) +f.cP() +f.hE(0,-1,1,1) +h=A.a8M(B.T,h,f,!1) +break +case 1:break}return A.dC(g,new A.r6(!0,A.EV(A.OW(h,g,g),q,q),g),!1,g,!1,g,g,g,g,this.z,g,g,g,g,g,g,g,g,g,g)}} +A.hg.prototype={ +k(a,b){var s +if(b==null)return!1 +if(J.J(b)!==A.w(this))return!1 +if(b instanceof A.hg)if(b.a===this.a)s=b.d===this.d +else s=!1 +else s=!1 +return s}, +gu(a){return A.L(this.a,"MaterialIcons",null,this.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +j(a){return"IconData(U+"+B.d.lK(B.f.il(this.a,16).toUpperCase(),5,"0")+")"}} +A.li.prototype={ +bO(a){return!this.w.k(0,a.w)}} +A.T_.prototype={ +$1(a){return A.SZ(this.c,A.aby(a).bV(this.b),this.a)}, +$S:324} +A.cd.prototype={ +nu(a,b,c,d,e,f,g,h){var s,r=this,q=g==null?r.a:g,p=b==null?r.b:b,o=h==null?r.c:h,n=c==null?r.d:c,m=e==null?r.e:e,l=a==null?r.f:a +if(d==null){s=r.r +s=s==null?null:A.O(s,0,1)}else s=d +return new A.cd(q,p,o,n,m,l,s,f==null?r.w:f)}, +e2(a){return this.nu(a,null,null,null,null,null,null,null)}, +bV(a){var s=a.r +s=s==null?null:A.O(s,0,1) +return this.nu(a.f,a.b,a.d,s,a.e,a.w,a.a,a.c)}, +Y(a){return this}, +k(a,b){var s,r,q=this +if(b==null)return!1 +if(J.J(b)!==A.w(q))return!1 +if(b instanceof A.cd)if(b.a==q.a)if(b.b==q.b)if(b.c==q.c)if(b.d==q.d)if(b.e==q.e)if(J.e(b.f,q.f)){s=b.r +s=s==null?null:A.O(s,0,1) +r=q.r +s=s==(r==null?null:A.O(r,0,1))&&A.dh(b.w,q.w)}else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +return s}, +gu(a){var s,r=this,q=r.r +q=q==null?null:A.O(q,0,1) +s=r.w +s=s==null?null:A.cl(s) +return A.L(r.a,r.b,r.c,r.d,r.e,r.f,q,s,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.Ip.prototype={} +A.rw.prototype={ +aq(){return new A.w8(B.m)}} +A.w8.prototype={ +aM(){var s=this +s.bb() +$.at.bE$.push(s) +s.z=new A.AJ(s)}, +m(){var s,r=this +B.b.v($.at.bE$,r) +r.WX() +s=r.at +if(s!=null)s.m() +s=r.z +s===$&&A.c() +s.a=null +r.vX(null) +r.aW()}, +b4(){var s,r=this +r.Xm() +r.E8() +s=r.c +s.toString +if(A.adl(s))r.Uj() +else r.EO(!0) +r.cR()}, +aQ(a){var s=this +s.bi(a) +if(s.r)s.a.toString +if(!s.a.c.k(0,a.c))s.E8()}, +Xm(){var s=this.c +s.toString +s=A.dl(s,B.Nh) +s=s==null?null:s.z +if(s==null){s=$.Yk.xI$ +s===$&&A.c() +s=(s.a&2)!==0}this.w=s}, +E8(){var s,r,q=this,p=q.z +p===$&&A.c() +s=q.a.c +r=q.c +r.toString +q.XB(new A.ui(p,s,t.rZ).Y(A.a9s(r,null)))}, +Sc(a){var s=this,r=s.ax +if(r==null||a){s.as=s.Q=null +s.a.toString +r=s.ax=new A.ep(s.gT_(),null,null)}r.toString +return r}, +pn(){return this.Sc(!1)}, +T0(a,b){this.aA(new A.a2p(this,a,b))}, +vX(a){var s=this.e +$.bK.cx$.push(new A.a2q(s)) +this.e=a}, +XB(a){var s,r,q=this,p=q.d +if(p==null)s=null +else{s=p.a +if(s==null)s=p}r=a.a +if(s===(r==null?a:r))return +if(q.r){p.toString +p.H(0,q.pn())}q.a.toString +q.aA(new A.a2r(q)) +q.aA(new A.a2s(q)) +q.d=a +if(q.r)a.Z(0,q.pn())}, +Uj(){var s,r=this +if(r.r)return +s=r.d +s.toString +s.Z(0,r.pn()) +s=r.at +if(s!=null)s.m() +r.at=null +r.r=!0}, +EO(a){var s,r,q=this +if(!q.r)return +if(a)if(q.at==null){s=q.d +s=(s==null?null:s.a)!=null}else s=!1 +else s=!1 +if(s){s=q.d.a +if(s.w)A.a2(A.a5(u.V)) +r=new A.nq(s) +r.pa(s) +q.at=r}s=q.d +s.toString +s.H(0,q.pn()) +q.r=!1}, +WX(){return this.EO(!1)}, +N(a){var s,r,q,p,o,n,m=this,l=null +if(m.Q!=null)m.a.toString +s=m.e +r=s==null +q=r?l:s.a +p=r?l:s.c +o=m.a.w +s=r?l:s.b +if(s==null)s=1 +r=m.w +r===$&&A.c() +n=new A.DH(q,p,l,o,s,l,l,B.ds,l,l,B.T,B.bl,l,!1,r,!1,l) +n=A.dC(l,n,!1,l,!1,l,l,l,!0,"",l,l,l,l,l,l,l,l,l,l) +return n}} +A.a2p.prototype={ +$0(){var s,r=this.a +r.vX(this.b) +r.as=r.Q=r.f=null +s=r.x +r.x=s==null?0:s+1 +r.y=B.bM.m7(r.y,this.c)}, +$S:0} +A.a2q.prototype={ +$1(a){var s=this.a +if(s!=null)s.a.m() +return null}, +$S:2} +A.a2r.prototype={ +$0(){this.a.vX(null)}, +$S:0} +A.a2s.prototype={ +$0(){var s=this.a +s.x=s.f=null +s.y=!1}, +$S:0} +A.Mx.prototype={} +A.kR.prototype={ +cB(a){var s=A.jg(this.a,this.b,a) +s.toString +return s}} +A.i9.prototype={ +cB(a){var s=A.PQ(this.a,this.b,a) +s.toString +return s}} +A.qV.prototype={ +cB(a){var s=A.a7M(this.a,this.b,a) +s.toString +return s}} +A.jr.prototype={ +cB(a){var s=A.da(this.a,this.b,a) +s.toString +return s}} +A.kP.prototype={ +cB(a){return A.mQ(this.a,this.b,a)}} +A.ls.prototype={ +cB(b0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4=new A.cS(new Float64Array(3)),a5=new A.cS(new Float64Array(3)),a6=A.acv(),a7=A.acv(),a8=new A.cS(new Float64Array(3)),a9=new A.cS(new Float64Array(3)) +this.a.GY(a4,a6,a8) +this.b.GY(a5,a7,a9) +s=1-b0 +r=a4.is(s).T(0,a5.is(b0)) +q=a6.is(s).T(0,a7.is(b0)) +p=new Float64Array(4) +o=new A.jZ(p) +o.az(q) +o.a1A(0) +n=a8.is(s).T(0,a9.is(b0)) +s=new Float64Array(16) +q=new A.aS(s) +m=p[0] +l=p[1] +k=p[2] +j=p[3] +i=m+m +h=l+l +g=k+k +f=m*i +e=m*h +d=m*g +c=l*h +b=l*g +a=k*g +a0=j*i +a1=j*h +a2=j*g +a3=r.a +s[0]=1-(c+a) +s[1]=e+a2 +s[2]=d-a1 +s[3]=0 +s[4]=e-a2 +s[5]=1-(f+a) +s[6]=b+a0 +s[7]=0 +s[8]=d+a1 +s[9]=b-a0 +s[10]=1-(f+c) +s[11]=0 +s[12]=a3[0] +s[13]=a3[1] +s[14]=a3[2] +s[15]=1 +q.aO(0,n) +return q}} +A.ma.prototype={ +cB(a){var s=A.aH(this.a,this.b,a) +s.toString +return s}} +A.BS.prototype={} +A.nr.prototype={ +gjv(){var s,r=this,q=r.d +if(q===$){s=A.d9(null,r.a.d,null,null,r) +r.d!==$&&A.ap() +r.d=s +q=s}return q}, +gej(){var s,r=this,q=r.e +if(q===$){s=r.gjv() +q=r.e=A.eQ(r.a.c,s,null)}return q}, +aM(){var s,r=this +r.bb() +s=r.gjv() +s.aX() +s=s.bT$ +s.b=!0 +s.a.push(new A.Tf(r)) +r.C_()}, +aQ(a){var s,r=this +r.bi(a) +if(r.a.c!==a.c){r.gej().m() +s=r.gjv() +r.e=A.eQ(r.a.c,s,null)}r.gjv().e=r.a.d +if(r.C_()){r.lw(new A.Te(r)) +s=r.gjv() +s.sn(0,0) +s.c5(0)}}, +m(){this.gej().m() +this.gjv().m() +this.O6()}, +XD(a,b){var s +if(a==null)return +s=this.gej() +a.swP(a.V(0,s.gn(s))) +a.slf(0,b)}, +C_(){var s={} +s.a=!1 +this.lw(new A.Td(s,this)) +return s.a}} +A.Tf.prototype={ +$1(a){switch(a.a){case 3:this.a.a.toString +break +case 0:case 1:case 2:break}}, +$S:3} +A.Te.prototype={ +$3(a,b,c){this.a.XD(a,b) +return a}, +$S:123} +A.Td.prototype={ +$3(a,b,c){var s +if(b!=null){if(a==null)a=c.$1(b) +s=a.b +if(!J.e(b,s==null?a.a:s))this.a.a=!0 +else if(a.b==null)a.slf(0,a.a)}else a=null +return a}, +$S:123} +A.mG.prototype={ +aM(){this.MD() +var s=this.gjv() +s.aX() +s=s.bY$ +s.b=!0 +s.a.push(this.gSn())}, +So(){this.aA(new A.O1())}} +A.O1.prototype={ +$0(){}, +$S:0} +A.pM.prototype={ +aq(){return new A.Gg(null,null,B.m)}} +A.Gg.prototype={ +lw(a){var s,r,q=this,p=null,o=q.CW +q.a.toString +s=t.pe +q.CW=s.a(a.$3(o,p,new A.a02())) +o=q.cx +q.a.toString +r=t.uH +q.cx=r.a(a.$3(o,p,new A.a03())) +o=t.C0 +q.cy=o.a(a.$3(q.cy,q.a.y,new A.a04())) +q.db=o.a(a.$3(q.db,q.a.z,new A.a05())) +q.dx=t.vy.a(a.$3(q.dx,q.a.Q,new A.a06())) +o=q.dy +q.a.toString +q.dy=r.a(a.$3(o,p,new A.a07())) +o=q.fr +q.a.toString +q.fr=t.ha.a(a.$3(o,p,new A.a08())) +o=q.fx +q.a.toString +q.fx=s.a(a.$3(o,p,new A.a09()))}, +N(a){var s,r,q,p,o,n,m,l=this,k=null,j=l.gej(),i=l.CW +i=i==null?k:i.V(0,j.gn(j)) +s=l.cx +s=s==null?k:s.V(0,j.gn(j)) +r=l.cy +r=r==null?k:r.V(0,j.gn(j)) +q=l.db +q=q==null?k:q.V(0,j.gn(j)) +p=l.dx +p=p==null?k:p.V(0,j.gn(j)) +o=l.dy +o=o==null?k:o.V(0,j.gn(j)) +n=l.fr +n=n==null?k:n.V(0,j.gn(j)) +m=l.fx +m=m==null?k:m.V(0,j.gn(j)) +return A.Px(i,l.a.r,B.w,k,p,r,q,k,o,s,n,m,k)}} +A.a02.prototype={ +$1(a){return new A.jc(t.bX.a(a),null)}, +$S:109} +A.a03.prototype={ +$1(a){return new A.jr(t.F0.a(a),null)}, +$S:107} +A.a04.prototype={ +$1(a){return new A.i9(t.ew.a(a),null)}, +$S:129} +A.a05.prototype={ +$1(a){return new A.i9(t.ew.a(a),null)}, +$S:129} +A.a06.prototype={ +$1(a){return new A.kR(t.k.a(a),null)}, +$S:329} +A.a07.prototype={ +$1(a){return new A.jr(t.F0.a(a),null)}, +$S:107} +A.a08.prototype={ +$1(a){return new A.ls(t.rA.a(a),null)}, +$S:330} +A.a09.prototype={ +$1(a){return new A.jc(t.bX.a(a),null)}, +$S:109} +A.pN.prototype={ +aq(){return new A.Gh(null,null,B.m)}} +A.Gh.prototype={ +lw(a){this.CW=t.uh.a(a.$3(this.CW,this.a.w,new A.a0a()))}, +N(a){var s,r=this.CW +r.toString +s=this.gej() +s=r.V(0,s.gn(s)) +return A.qG(this.a.r,null,B.c3,!0,s,null,null,B.aK)}} +A.a0a.prototype={ +$1(a){return new A.ma(t.F1.a(a),null)}, +$S:331} +A.pP.prototype={ +aq(){return new A.Gi(null,null,B.m)}} +A.Gi.prototype={ +lw(a){var s=this,r=s.CW +s.a.toString +s.CW=t.iH.a(a.$3(r,B.ab,new A.a0b())) +s.cx=t.nr.a(a.$3(s.cx,s.a.z,new A.a0c())) +r=t.mo +s.cy=r.a(a.$3(s.cy,s.a.Q,new A.a0d())) +s.db=r.a(a.$3(s.db,s.a.at,new A.a0e()))}, +N(a){var s,r,q,p,o,n=this,m=n.a,l=m.w +m=m.x +s=n.CW +s.toString +r=n.gej() +r=s.V(0,r.gn(r)) +s=n.cx +s.toString +q=n.gej() +q=s.V(0,q.gn(q)) +s=n.a.Q +p=n.db +p.toString +o=n.gej() +o=p.V(0,o.gn(o)) +o.toString +return new A.Dr(l,m,r,q,s,o,n.a.r,null)}} +A.a0b.prototype={ +$1(a){return new A.kP(t.ak.a(a),null)}, +$S:332} +A.a0c.prototype={ +$1(a){return new A.av(A.Ng(a),null,t.a7)}, +$S:96} +A.a0d.prototype={ +$1(a){return new A.h6(t.iO.a(a),null)}, +$S:45} +A.a0e.prototype={ +$1(a){return new A.h6(t.iO.a(a),null)}, +$S:45} +A.pb.prototype={ +m(){var s=this,r=s.dH$ +if(r!=null)r.H(0,s.gn0()) +s.dH$=null +s.aW()}, +c8(){this.dV() +this.d4() +this.n1()}} +A.hi.prototype={ +bJ(a){return new A.rz(A.ij(t.h,t.X),this,B.Y,A.m(this).h("rz"))}} +A.rz.prototype={ +Kj(a,b){var s=this.W,r=this.$ti,q=r.h("br<1>?").a(s.i(0,a)),p=q==null +if(!p&&q.gS(q))return +if(b==null)s.l(0,a,A.cK(r.c)) +else{p=p?A.cK(r.c):q +p.B(0,r.c.a(b)) +s.l(0,a,p)}}, +J7(a,b){var s,r=this.$ti,q=r.h("br<1>?").a(this.W.i(0,b)) +if(q==null)return +if(!q.gS(q)){s=this.f +s.toString +s=r.h("hi<1>").a(s).Ko(a,q) +r=s}else r=!0 +if(r)b.b4()}} +A.hj.prototype={ +bO(a){return a.f!==this.f}, +bJ(a){var s=new A.pc(A.ij(t.h,t.X),this,B.Y,A.m(this).h("pc")) +this.f.Z(0,s.gvq()) +return s}} +A.pc.prototype={ +b7(a,b){var s,r,q=this,p=q.f +p.toString +s=q.$ti.h("hj<1>").a(p).f +r=b.f +if(s!==r){p=q.gvq() +s.H(0,p) +r.Z(0,p)}q.Nf(0,b)}, +aS(){var s,r=this +if(r.a1){s=r.f +s.toString +r.AC(r.$ti.h("hj<1>").a(s)) +r.a1=!1}return r.Ne()}, +TS(){this.a1=!0 +this.ja()}, +lH(a){this.AC(a) +this.a1=!1}, +oE(){var s=this,r=s.f +r.toString +s.$ti.h("hj<1>").a(r).f.H(0,s.gvq()) +s.tZ()}} +A.BU.prototype={} +A.pm.prototype={} +A.a5G.prototype={ +$1(a){return this.a.a=a}, +$S:55} +A.a5H.prototype={ +$1(a){return a.b}, +$S:333} +A.a5I.prototype={ +$1(a){var s,r,q,p +for(s=J.aC(a),r=this.a,q=this.b,p=0;pr?B.pg:B.pf +if(a5!==(q.a>q.b?B.pg:B.pf))return!0 +break +case 2:if(a3)return!0 +break +case 3:if(a2)return!0 +break +case 4:if(a1)return!0 +break +case 5:if(!a.k(0,a0))return!0 +break +case 6:if(!c.k(0,b))return!0 +break +case 7:if(!e.k(0,d))return!0 +break +case 8:if(!g.k(0,f))return!0 +break +case 9:break +case 10:if(h)return!0 +break +case 11:if(i)return!0 +break +case 12:if(j)return!0 +break +case 13:if(k)return!0 +break +case 14:if(l)return!0 +break +case 15:if(m)return!0 +break +case 16:if(!o.k(0,n))return!0 +break +case 17:if(p)return!0 +break}}return!1}} +A.UW.prototype={ +D(){return"NavigationMode."+this.b}} +A.wq.prototype={ +aq(){return new A.IW(B.m)}} +A.IW.prototype={ +aM(){this.bb() +$.at.bE$.push(this)}, +b4(){this.cR() +this.Xr() +this.n_()}, +aQ(a){var s,r=this +r.bi(a) +s=r.a +s.toString +if(r.e==null||a.c!==s.c)r.n_()}, +Xr(){var s,r=this +r.a.toString +s=r.c +s.toString +s=A.dl(s,null) +r.d=s +r.e=null}, +n_(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d=null,c=e.a.c,b=e.d,a=c.ghw(),a0=c.x +if(a0==null){a0=self.window.devicePixelRatio +if(a0===0)a0=1}a0=a.cO(0,a0) +a=c.x +if(a==null){a=self.window.devicePixelRatio +if(a===0)a=1}s=b==null +r=s?d:b.c +if(r==null)r=c.b.a.e +q=s?d:b.d +if(q==null)q=c.b.a.d +c.gjG() +p=c.x +if(p==null){p=self.window.devicePixelRatio +if(p===0)p=1}p=A.QD(B.dc,p) +c.gjG() +o=c.x +if(o==null){o=self.window.devicePixelRatio +if(o===0)o=1}o=A.QD(B.dc,o) +n=c.f +m=c.x +if(m==null){m=self.window.devicePixelRatio +if(m===0)m=1}m=A.QD(n,m) +c.gjG() +n=c.x +if(n==null){n=self.window.devicePixelRatio +if(n===0)n=1}n=A.QD(B.dc,n) +l=s?d:b.y +if(l==null)l=(c.b.a.a.a&1)!==0 +k=s?d:b.z +if(k==null)k=(c.b.a.a.a&2)!==0 +j=s?d:b.as +if(j==null)j=(c.b.a.a.a&4)!==0 +i=s?d:b.at +if(i==null)i=(c.b.a.a.a&8)!==0 +h=s?d:b.Q +if(h==null)h=(c.b.a.a.a&32)!==0 +g=s&&d +b=s?d:b.ax +if(b==null)b=B.h3 +c.gjG() +c.gjG() +f=new A.t6(a0,a,r,q,m,p,o,n,g===!0,l,k,h,j,i,b,new A.AD(d),B.Be) +if(!f.k(0,e.e))e.aA(new A.a38(e,f))}, +H5(){this.n_()}, +H7(){if(this.d==null)this.n_()}, +H6(){if(this.d==null)this.n_()}, +m(){B.b.v($.at.bE$,this) +this.aW()}, +N(a){var s=this.e +s.toString +return A.nP(this.a.e,s,null)}} +A.a38.prototype={ +$0(){this.a.e=this.b}, +$S:0} +A.Mz.prototype={} +A.Cy.prototype={ +N(a){var s,r,q=null +switch(A.kE().a){case 1:case 3:case 5:break +case 0:case 2:case 4:break}s=this.c +r=A.dC(q,A.tb(new A.ej(B.ie,s==null?q:new A.qt(s,q,q),q),B.bv,q,q,q),!1,q,!1,q,q,q,q,q,q,q,q,q,this.x,q,q,q,q,q) +return A.aiL(new A.r6(!0,new A.J3(r,new A.UA(this,a),q),q))}} +A.UA.prototype={ +$0(){A.Fp(B.Hl)}, +$S:0} +A.oS.prototype={ +f6(a){if(this.W==null)return!1 +return this.mk(a)}, +I3(a){}, +I4(a,b){var s=this.W +if(s!=null)s.$0()}, +re(a,b,c){}} +A.Gn.prototype={ +Gz(){var s=t.S,r=A.cK(s) +return new A.oS(B.ay,18,B.b3,A.y(s,t.o),r,null,null,A.a6P(),A.y(s,t.V))}, +Il(a){a.W=this.a}} +A.J3.prototype={ +N(a){return new A.k_(this.c,A.aL([B.Ml,new A.Gn(this.d)],t.n,t.ob),B.ap,!1,null)}} +A.CL.prototype={ +N(a){var s,r,q=this,p=a.aj(t.I) +p.toString +s=A.a([],t.nA) +r=q.c +if(r!=null)s.push(A.U1(r,B.eM)) +r=q.d +if(r!=null)s.push(A.U1(r,B.eN)) +r=q.e +if(r!=null)s.push(A.U1(r,B.eO)) +return new A.qA(new A.a4x(q.f,q.r,p.w),s,null)}} +A.xH.prototype={ +D(){return"_ToolbarSlot."+this.b}} +A.a4x.prototype={ +rS(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this +if(e.b.i(0,B.eM)!=null){s=a.a +r=a.b +q=e.dt(B.eM,new A.aI(0,s,r,r)).a +switch(e.f.a){case 0:p=s-q +break +case 1:p=0 +break +default:p=null}e.dM(B.eM,new A.q(p,0))}else q=0 +if(e.b.i(0,B.eO)!=null){o=e.dt(B.eO,A.a7p(a)) +switch(e.f.a){case 0:n=0 +break +case 1:n=a.a-o.a +break +default:n=null}m=o.a +e.dM(B.eO,new A.q(n,(a.b-o.b)/2))}else m=0 +if(e.b.i(0,B.eN)!=null){s=a.a +r=e.e +l=Math.max(s-q-m-r*2,0) +k=e.dt(B.eN,A.a7p(a).Zi(l)) +j=q+r +if(e.d){i=k.a +h=(s-i)/2 +g=s-m +if(h+i>g)h=g-i-r +else if(h")) +s=r.lF(r,new A.Xv(),new A.Xw()) +if(s==null)return!1 +return s.a===this}, +gIB(){var s,r=this.a +if(r==null)return!1 +r=r.e +r=new A.bR(r,A.ac(r).h("bR<1,d6?>")) +s=r.r5(r,new A.Xx(),new A.Xy()) +if(s==null)return!1 +return s.a===this}, +gri(){var s,r,q,p,o=this.a +if(o==null)return!1 +for(o=o.e,s=o.length,r=0;r=1)return!0}return!1}, +ga0U(){var s=this.a +if(s==null)return!1 +s=s.e +s=new A.bR(s,A.ac(s).h("bR<1,d6?>")) +s=s.r5(s,new A.Xt(this),new A.Xu()) +s=s==null?null:s.gkc() +return s===!0}} +A.Xs.prototype={ +$1(a){var s,r=this.a.a +if(r==null)s=null +else{r.a.toString +s=!0}if(s===!0){r=r.x.gdE() +if(r!=null)r.t5()}}, +$S:17} +A.Xr.prototype={ +$1(a){var s=this.a.a +if(s!=null){s=s.x.gdE() +if(s!=null)s.t5()}}, +$S:17} +A.Xv.prototype={ +$1(a){return a!=null&&a.gkc()}, +$S:27} +A.Xw.prototype={ +$0(){return null}, +$S:9} +A.Xx.prototype={ +$1(a){return a!=null&&a.gkc()}, +$S:27} +A.Xy.prototype={ +$0(){return null}, +$S:9} +A.Xt.prototype={ +$1(a){return a!=null&&A.adW(this.a).$1(a)}, +$S:27} +A.Xu.prototype={ +$0(){return null}, +$S:9} +A.fG.prototype={ +j(a){var s=this.a +s=s==null?"none":'"'+s+'"' +return"RouteSettings("+s+", "+A.h(this.b)+")"}} +A.lx.prototype={} +A.le.prototype={ +bO(a){return a.f!=this.f}} +A.Xq.prototype={} +A.FO.prototype={} +A.AB.prototype={} +A.tn.prototype={ +aq(){var s=null,r=A.a([],t.hi),q=$.b7(),p=t.a4 +return new A.hs(r,new A.Ig(q),A.jK(s,p),A.jK(s,p),A.abg(!0,"Navigator",!0,!0,s,s,!1),new A.ub(0,q,t.rj),A.kg(!1),A.az(t.S),s,A.y(t.wb,t.O),s,!0,s,s,s,B.m)}, +a1E(a,b){return this.Q.$2(a,b)}} +A.V4.prototype={ +$1(a){return a==null}, +$S:338} +A.dW.prototype={ +D(){return"_RouteLifecycle."+this.b}} +A.Jf.prototype={} +A.d6.prototype={ +gcD(){var s,r +if(this.c){s=t.kd.a(this.a.b) +s.gcD() +r=A.h(s.gcD()) +return"p+"+r}r=this.b +if(r!=null)return"r+"+r.gJY() +return null}, +a_S(a,b,c,d){var s,r,q,p=this,o=p.d,n=p.a +n.a=b +n.j6() +s=p.d +if(s===B.vm||s===B.vn){r=n.nE() +p.d=B.vo +r.a2X(new A.a40(p,b))}else{n.xi(c) +p.d=B.c9}if(a)n.nD(null) +s=o===B.NO||o===B.vn +q=b.r +if(s)q.dj(0,new A.wB(n,d)) +else q.dj(0,new A.pk(n,d))}, +a_R(a,b){var s,r=this +r.d=B.NK +s=r.a +if((s.d.a.a&30)!==0)return!0 +if(!s.jS(r.w)){r.d=B.c9 +return!1}r.w=null +return!0}, +m(){var s,r,q,p,o,n,m={} +this.d=B.NM +s=this.a +r=s.grN() +q=new A.a3Z() +p=new A.b2(r,q,A.ac(r).h("b2<1>")) +if(!p.gX(p).t())s.m() +else{m.a=p.gp(p) +for(s=B.b.gX(r),q=new A.vp(s,q);q.t();){r=s.gC(s) +o=A.b_("listener") +n=new A.a4_(m,this,r,o) +o.b=n +r.d.Z(0,n)}}}, +ga2Z(){var s=this.d.a +return s<=7&&s>=1}, +gkc(){var s=this.d.a +return s<=10&&s>=1}} +A.a40.prototype={ +$0(){var s=this.a +if(s.d===B.vo){s.d=B.c9 +this.b.v4()}}, +$S:0} +A.a3Z.prototype={ +$1(a){return a.d.a!=null}, +$S:339} +A.a4_.prototype={ +$0(){var s=this,r=s.a;--r.a +s.c.d.H(0,s.d.ap()) +if(r.a===0)s.b.a.m()}, +$S:0} +A.a41.prototype={ +$1(a){return a.a===this.a}, +$S:40} +A.kp.prototype={} +A.pk.prototype={ +kg(a){a.pJ(this.b,this.a,B.bi,!1)}} +A.pj.prototype={ +kg(a){var s=$.fX() +A.Ba(a) +if(!s.a.get(a).CW.a)a.pJ(this.a,this.b,B.bj,!1)}} +A.wA.prototype={ +kg(a){}} +A.wB.prototype={ +kg(a){var s=this.a,r=s.glC() +if(r)a.pJ(this.b,s,B.bi,!1)}} +A.hs.prototype={ +aM(){var s,r,q,p,o=this +o.bb() +for(s=o.a.x,r=0;!1;++r){q=s[r] +p=$.fX() +A.nf(q) +p.a.set(q,o)}o.Q=o.a.x +s=o.c.jm(t.hS) +if(s==null)s=null +else{s=s.f +s.toString}t.cn.a(s) +o.wn(s==null?null:s.f) +o.a.toString +B.e5.rm("selectSingleEntryHistory",t.H)}, +ih(a,b){var s,r,q,p,o,n,m=this +m.lR(m.as,"id") +s=m.f +m.lR(s,"history") +for(;r=m.e,r.length!==0;)r.pop().m() +m.d=new A.bM(null,t.r9) +B.b.I(r,s.JZ(null,m)) +m.a.toString +q=0 +for(;!1;++q){p=B.Bd[q] +r=m.c +r.toString +r=p.x3(r) +o=$.a74() +n=new A.d6(r,null,!0,B.hR,o,o,o) +m.e.push(n) +B.b.I(m.e,s.JZ(n,m))}if(s.y==null){s=m.a +r=m.e +o=s.f +B.b.I(r,J.yI(s.a1E(m,o),new A.V3(m),t.ee))}m.v4()}, +xl(a){var s,r=this +r.NC(a) +s=r.f +if(r.bc$!=null)s.b7(0,r.e) +else s.L(0)}, +gcD(){return this.a.y}, +b4(){var s,r,q,p,o=this +o.Ob() +s=o.c.aj(t.hS) +o.wn(s==null?null:s.f) +for(r=o.e,q=r.length,p=0;p0?s[r-1]:a0 +o=A.a([],t.hi) +$label0$1:for(s=a.w,n=a.r,m=a0,l=m,k=!1,j=!1;r>=0;){switch(q.d.a){case 1:i=a.iD(r-1,A.a9E()) +h=i>=0?a.e[i]:a0 +h=h==null?a0:h.a +g=q.a +g.a=a +g.j6() +q.d=B.NN +n.dj(0,new A.pk(g,h)) +continue $label0$1 +case 2:if(k||l==null){h=q.a +h.nC() +q.d=B.c9 +if(l==null)h.nD(a0) +continue $label0$1}break +case 3:case 4:case 6:h=p==null?a0:p.a +i=a.iD(r-1,A.a9E()) +g=i>=0?a.e[i]:a0 +g=g==null?a0:g.a +q.a_S(l==null,a,h,g) +if(q.d===B.c9)continue $label0$1 +break +case 5:if(!j&&m!=null){q.a.lb(m) +q.f=m}j=!0 +break +case 7:if(!j&&m!=null){q.a.lb(m) +q.f=m}k=!0 +j=!0 +break +case 8:i=a.iD(r,A.yx()) +h=i>=0?a.e[i]:a0 +if(!q.a_R(a,h==null?a0:h.a))continue $label0$1 +if(!j){if(m!=null){q.a.lb(m) +q.f=m}m=q.a}h=q.a +i=a.iD(r,A.yx()) +g=i>=0?a.e[i]:a0 +s.dj(0,new A.pj(h,g==null?a0:g.a)) +if(q.d===B.hS)continue $label0$1 +k=!0 +break +case 11:break +case 9:h=q.a +h=h.d.a +if((h.a&30)!==0)A.a2(A.a5("Future already completed")) +h.ju(a0) +q.w=null +q.d=B.NJ +continue $label0$1 +case 10:if(!j){if(m!=null)q.a.lb(m) +m=a0}i=a.iD(r,A.yx()) +h=i>=0?a.e[i]:a0 +h=h==null?a0:h.a +q.d=B.NL +if(q.x)s.dj(0,new A.wA(q.a,h)) +continue $label0$1 +case 12:if(!k&&l!=null)break +q.d=B.hS +continue $label0$1 +case 13:o.push(B.b.fc(a.e,r)) +q=l +break +case 14:case 0:break}--r +f=r>0?a.e[r-1]:a0 +l=q +q=p +p=f}a.RX() +a.RZ() +a.a.toString +s=a.e +s=new A.bR(s,A.ac(s).h("bR<1,d6?>")) +e=s.lF(s,new A.UY(),new A.UZ()) +d=e==null?a0:e.a.b.a +if(d!=null&&d!==a.at){A.adh(d,!1,a0) +a.at=d}for(s=o.length,c=0;c=0;){s=m.e[k] +r=s.d.a +if(!(r<=12&&r>=3)){--k +continue}q=m.Se(k+1,A.afJ()) +r=q==null +p=r?l:q.a +o=s.r +if(p!=o){if(!((r?l:q.a)==null&&s.f==o)){p=s.a +p.nD(r?l:q.a)}s.r=r?l:q.a}--k +n=m.iD(k,A.afJ()) +r=n>=0?m.e[n]:l +p=r==null +o=p?l:r.a +if(o!=s.e){o=s.a +o.xd(p?l:r.a) +s.e=p?l:r.a}}}, +CE(a,b){a=this.iD(a,b) +return a>=0?this.e[a]:null}, +iD(a,b){while(!0){if(!(a>=0&&!b.$1(this.e[a])))break;--a}return a}, +Se(a,b){var s +while(!0){s=this.e +if(!(a?") +q=r.a(this.a.r.$1(s)) +return q==null&&!b?r.a(this.a.w.$1(s)):q}, +w5(a,b,c){return this.pW(a,!1,b,c)}, +oi(a){var s=0,r=A.Y(t.y),q,p=this,o,n,m +var $async$oi=A.Z(function(b,c){if(b===1)return A.V(c,r) +while(true)$async$outer:switch(s){case 0:m=p.e +m=new A.bR(m,A.ac(m).h("bR<1,d6?>")) +o=m.lF(m,new A.V_(),new A.V0()) +if(o==null){q=!1 +s=1 +break}s=3 +return A.a1(o.a.ff(),$async$oi) +case 3:n=c +if(p.c==null){q=!0 +s=1 +break}m=p.e +m=new A.bR(m,A.ac(m).h("bR<1,d6?>")) +if(o!==m.lF(m,new A.V1(),new A.V2())){q=!0 +s=1 +break}switch(n.a){case 2:q=!1 +s=1 +break $async$outer +case 0:p.a1Q(a) +q=!0 +s=1 +break $async$outer +case 1:q=!0 +s=1 +break $async$outer}case 1:return A.W(q,r)}}) +return A.X($async$oi,r)}, +a1p(a){return this.oi(a,t.X)}, +J1(){return this.oi(null,t.X)}, +Jm(a){var s=this,r=B.b.a17(s.e,A.a9E()) +if(r.c){s.a.toString +if(null.$2(r.a,a)&&r.d===B.c9)r.d=B.hT}else{r.w=a +r.d=B.hT}if(r.d===B.hT)s.v5(!1) +s.Bx()}, +fa(){return this.Jm(null,t.X)}, +a1Q(a){return this.Jm(a,t.X)}, +HE(a){var s,r=this,q=B.b.a0D(r.e,A.adW(a)),p=r.e[q] +if(p.c&&p.d.a<8){s=r.CE(q-1,A.yx()) +s=s==null?null:s.a +r.w.dj(0,new A.pj(a,s))}p.d=B.hS +if(!r.ay)r.v5(!1)}, +sFB(a){this.ch=a +this.CW.sn(0,a>0)}, +ZM(){var s,r,q,p,o,n,m=this +m.sFB(m.ch+1) +if(m.ch===1){s=m.iD(m.e.length-1,A.yx()) +r=m.e[s].a +q=!r.gKv()&&s>0?m.CE(s-1,A.yx()).a:null +p=m.Q +p===$&&A.c() +o=p.length +n=0 +for(;n7){h=i.a +h.c.sn(0,b) +continue}if(i.c){l=l||r.length!==J.bh(p) +if(r.length!==0){g=m==null?b:m.gcD() +o.l(0,g,r) +n.v(0,g)}k=i.gcD()!=null +h=i.a +f=k?i.gcD():b +h.c.sn(0,f) +if(k){r=A.a([],s) +h=c.y +h.toString +p=J.bc(h,i.gcD()) +if(p==null)p=B.cz}else{r=B.cz +p=B.cz}m=i +continue}if(k){h=i.b +h=h==null?b:h.gIE() +k=h===!0}else k=!1 +h=i.a +f=k?i.gcD():b +h.c.sn(0,f) +if(k){h=i.b +f=h.b +h=f==null?h.b=h.qx():f +if(!l){f=J.aC(p) +e=f.gp(p) +d=r.length +l=e<=d||!J.e(f.i(p,d),h)}else l=!0 +B.b.B(r,h)}}l=l||r.length!==J.bh(p) +c.RJ(r,m,o,n) +if(l||n.gbv(n)){c.y=o +c.ao()}}, +RJ(a,b,c,d){var s +if(a.length!==0){s=b==null?null:b.gcD() +c.l(0,s,a) +d.v(0,s)}}, +L(a){if(this.y==null)return +this.y=null +this.ao()}, +JZ(a,b){var s,r,q,p,o,n=A.a([],t.hi) +if(this.y!=null)s=a!=null&&a.gcD()==null +else s=!0 +if(s)return n +s=this.y +s.toString +r=J.bc(s,a==null?null:a.gcD()) +if(r==null)return n +for(s=J.am(r);s.t();){q=A.aom(s.gC(s)) +p=q.x3(b) +o=$.a74() +n.push(new A.d6(p,q,!1,B.hR,o,o,o))}return n}, +qF(){return null}, +lx(a){a.toString +return J.aij(t.f.a(a),new A.a2h(),t.dR,t.lC)}, +Ij(a){this.y=a}, +lY(){return this.y}, +gle(a){return this.y!=null}} +A.a2h.prototype={ +$2(a,b){return new A.bb(A.ci(a),A.nH(t.j.a(b),!0,t.K),t.cj)}, +$S:343} +A.a3m.prototype={ +$2(a,b){if(!a.a)a.H(0,b)}, +$S:30} +A.wC.prototype={ +c8(){this.dV() +this.d4() +this.eN()}, +m(){var s=this,r=s.b_$ +if(r!=null)r.H(0,s.gem()) +s.b_$=null +s.aW()}} +A.wD.prototype={ +aQ(a){this.bi(a) +this.nH()}, +b4(){var s,r,q,p,o=this +o.cR() +s=o.bc$ +r=o.glU() +q=o.c +q.toString +q=A.o9(q) +o.f1$=q +p=o.kU(q,r) +if(r){o.ih(s,o.dG$) +o.dG$=!1}if(p)if(s!=null)s.m()}, +m(){var s,r=this +r.f0$.P(0,new A.a3m()) +s=r.bc$ +if(s!=null)s.m() +r.bc$=null +r.Oa()}} +A.CQ.prototype={ +j(a){var s=A.a([],t.s) +this.ca(s) +return"Notification("+B.b.bf(s,", ")+")"}, +ca(a){}} +A.cZ.prototype={ +bJ(a){return new A.wE(this,B.Y,this.$ti.h("wE<1>"))}} +A.wE.prototype={ +Jb(a){var s,r=this.f +r.toString +s=this.$ti +s.h("cZ<1>").a(r) +if(s.c.b(a))return r.d.$1(a) +return!1}, +lH(a){}} +A.er.prototype={} +A.ME.prototype={} +A.is.prototype={ +syR(a){var s +if(this.b===a)return +this.b=a +s=this.e +if(s!=null)s.C8()}, +sa1i(a){if(this.c)return +this.c=!0 +this.e.C8()}, +H(a,b){this.d.H(0,b)}, +ig(a){var s,r=this.e +r.toString +this.e=null +if(r.c==null)return +B.b.v(r.d,this) +s=$.bK +if(s.dx$===B.u1)s.cx$.push(new A.Vi(r)) +else r.Dq()}, +ja(){var s=this.f.gbj() +if(s!=null)s.Ds()}, +j(a){return"#"+A.bs(this)+"(opaque: "+this.b+"; maintainState: "+this.c+")"}, +$ia7:1} +A.Vi.prototype={ +$1(a){this.a.Dq()}, +$S:2} +A.iU.prototype={ +aq(){return new A.wF(B.m)}} +A.wF.prototype={ +gmO(){var s,r=this,q=r.f +if(q===$){s=r.uP(!1) +r.f!==$&&A.ap() +r.f=s +q=s}return q}, +uP(a){return this.QX(a)}, +QX(a){return A.a5J(function(){var s=a +var r=0,q=2,p +return function $async$uP(b,c){if(b===1){p=c +r=q}while(true)switch(r){case 0:r=1 +break +case 1:return A.a2D() +case 2:return A.a2E(p)}}},t.x)}, +aM(){var s,r=this +r.bb() +r.a.c.d.sn(0,r) +s=r.c.xN(t.xx) +s.toString +r.d=s}, +aQ(a){var s,r=this +r.bi(a) +if(a.d!==r.a.d){s=r.c.xN(t.xx) +s.toString +r.d=s}}, +m(){var s,r=this +r.a.c.d.sn(0,null) +s=r.a.c +if(s.r){s=s.d +s.a_$=$.b7() +s.W$=0}r.e=null +r.aW()}, +N(a){var s=this.a,r=s.e,q=this.d +q===$&&A.c() +return new A.oF(r,new A.Kv(q,this,s.c.a.$1(a),null),null)}, +Ds(){this.aA(new A.a3v())}} +A.a3v.prototype={ +$0(){}, +$S:0} +A.tx.prototype={ +aq(){return new A.nU(A.a([],t.tD),null,null,B.m)}} +A.nU.prototype={ +aM(){this.bb() +this.a0F(0,this.a.c)}, +vu(a,b){return this.d.length}, +y7(a,b){b.e=this +this.aA(new A.Vm(this,null,null,b))}, +a0F(a,b){var s,r=b.length +if(r===0)return +for(s=0;s")),s=new A.db(s,s.gp(s)),r=A.m(s).c,q=!0,p=0;s.t();){o=s.d +if(o==null)o=r.a(o) +if(q){++p +m.push(new A.iU(o,n,!0,o.f)) +q=!o.b||!1}else if(o.c)m.push(new A.iU(o,n,!1,o.f))}s=t.jA +return new A.xG(m.length-p,n.a.d,A.aw(new A.co(m,s),!1,s.h("bn.E")),null)}} +A.Vm.prototype={ +$0(){var s=this,r=s.a +B.b.lA(r.d,r.vu(s.b,s.c),s.d)}, +$S:0} +A.Vl.prototype={ +$0(){var s=this,r=s.a +B.b.Im(r.d,r.vu(s.b,s.c),s.d)}, +$S:0} +A.Vn.prototype={ +$0(){var s,r,q=this,p=q.a,o=p.d +B.b.L(o) +s=q.b +B.b.I(o,s) +r=q.c +r.JI(s) +B.b.Im(o,p.vu(q.d,q.e),r)}, +$S:0} +A.Vk.prototype={ +$0(){}, +$S:0} +A.Vj.prototype={ +$0(){}, +$S:0} +A.xG.prototype={ +bJ(a){return new A.LD(A.cK(t.h),this,B.Y)}, +aG(a){var s=a.aj(t.I) +s.toString +s=new A.x1(s.w,this.e,this.f,A.au(),0,null,null,A.au()) +s.aI() +s.I(0,null) +return s}, +aN(a,b){var s=this.e +if(b.ai!==s){b.ai=s +b.a7()}s=a.aj(t.I) +s.toString +b.sbR(s.w) +s=this.f +if(s!==b.aE){b.aE=s +b.aB() +b.b0()}}} +A.LD.prototype={ +ga2(){return t.xx.a(A.ev.prototype.ga2.call(this))}, +j5(a,b){var s,r +this.AF(a,b) +s=a.e +s.toString +t.eu.a(s) +r=this.f +r.toString +s.at=t.oJ.a(t.l3.a(r).c[b.b]).c}, +jb(a,b,c){this.AG(a,b,c)}} +A.pr.prototype={ +eg(a){if(!(a.e instanceof A.df))a.e=new A.df(null,null,B.h)}, +gkt(){return!0}, +bQ(){var s,r,q,p,o,n,m=this,l=new A.fU(m.uu().a()),k=t.k.a(A.z.prototype.ga5.call(m)),j=A.z9(new A.S(A.O(1/0,k.a,k.b),A.O(1/0,k.c,k.d))) +k=m.J +if(k==null)k=m.J=B.i2.Y(m.al) +for(s=t.B,r=t.uu;l.t();){q=l.gC(l) +p=q.e +p.toString +s.a(p) +if(!p.gye()){q.ck(j,!0) +o=m.k3 +o.toString +n=q.k3 +n.toString +p.a=k.jI(r.a(o.a4(0,n)))}else{o=m.k3 +o.toString +A.acD(q,p,o,k)}}}, +d9(a,b){var s,r,q=new A.fU(this.BF().a()),p=t.B,o=!1 +while(!0){if(!(!o&&q.t()))break +s=q.gC(q) +r=s.e +r.toString +o=a.qk(new A.a3Q(s),p.a(r).a,b)}return o}, +aC(a,b){var s,r,q,p,o,n +for(s=new A.fU(this.uu().a()),r=t.B,q=b.a,p=b.b;s.t();){o=s.gC(s) +n=o.e +n.toString +n=r.a(n).a +a.f9(o,new A.q(n.a+q,n.b+p))}}} +A.a3Q.prototype={ +$2(a,b){return this.a.bM(a,b)}, +$S:20} +A.pv.prototype={} +A.x1.prototype={ +eg(a){if(!(a.e instanceof A.pv))a.e=new A.pv(null,null,B.h)}, +ak(a){var s,r,q,p,o +this.P8(a) +s=this.U$ +for(r=t.eu;s!=null;){q=s.e +q.toString +r.a(q) +p=q.at +o=p==null?null:new A.fU(p.d.a.gmO().a()) +if(o!=null)for(;o.t();)o.gC(o).ak(a) +s=q.af$}}, +ag(a){var s,r,q,p +this.P9(0) +s=this.U$ +for(r=t.eu;s!=null;){q=s.e +q.toString +r.a(q) +p=q.at +if(p!=null)p.d.a.gmO().P(0,A.arQ()) +s=q.af$}}, +ic(){return this.aR(this.gza())}, +sbR(a){var s=this +if(s.al===a)return +s.al=a +s.J=null +s.a7()}, +a7(){this.AU()}, +gv3(){var s,r,q,p,o=this +if(o.ai===A.ar.prototype.gGm.call(o))return null +s=A.ar.prototype.ga_f.call(o,o) +for(r=o.ai,q=t.B;r>0;--r){p=s.e +p.toString +s=q.a(p).af$}return s}, +eX(a){var s,r,q,p,o=this.gv3() +for(s=t.B,r=null;o!=null;){q=o.e +q.toString +s.a(q) +p=o.kl(a) +if(p!=null){p+=q.a.b +r=r!=null?Math.min(r,p):p}o=q.af$}return r}, +cf(a){return new A.S(A.O(1/0,a.a,a.b),A.O(1/0,a.c,a.d))}, +uu(){var s=this +return A.a5J(function(){var r=0,q=1,p,o,n,m,l,k +return function $async$uu(a,b){if(a===1){p=b +r=q}while(true)switch(r){case 0:k=s.gv3() +o=t.eu +case 2:if(!(k!=null)){r=3 +break}r=4 +return k +case 4:n=k.e +n.toString +o.a(n) +m=n.at +l=m==null?null:new A.fU(m.d.a.gmO().a()) +r=l!=null?5:6 +break +case 5:case 7:if(!l.t()){r=8 +break}r=9 +return l.gC(l) +case 9:r=7 +break +case 8:case 6:k=n.af$ +r=2 +break +case 3:return A.a2D() +case 1:return A.a2E(p)}}},t.x)}, +BF(){var s=this +return A.a5J(function(){var r=0,q=1,p,o,n,m,l,k,j,i,h +return function $async$BF(a,b){if(a===1){p=b +r=q}while(true)switch(r){case 0:i=s.ai===A.ar.prototype.gGm.call(s)?null:s.bC$ +h=s.bk$-s.ai +o=t.eu +case 2:if(!(i!=null)){r=3 +break}n=i.e +n.toString +o.a(n) +m=n.at +if(m==null)l=null +else{m=m.d.a +k=m.r +if(k===$){j=m.uP(!0) +m.r!==$&&A.ap() +m.r=j +k=j}l=new A.fU(k.a())}r=l!=null?4:5 +break +case 4:case 6:if(!l.t()){r=7 +break}r=8 +return l.gC(l) +case 8:r=6 +break +case 7:case 5:r=9 +return i +case 9:--h +i=h<=0?null:n.b5$ +r=2 +break +case 3:return A.a2D() +case 1:return A.a2E(p)}}},t.x)}, +aC(a,b){var s,r,q=this,p=q.aL +if(q.aE!==B.w){s=q.cx +s===$&&A.c() +r=q.k3 +p.saY(0,a.ov(s,b,new A.C(0,0,0+r.a,0+r.b),A.pr.prototype.gkh.call(q),q.aE,p.a))}else{p.saY(0,null) +q.Oq(a,b)}}, +m(){this.aL.saY(0,null) +this.iy()}, +aR(a){var s,r,q,p=this.U$ +for(s=t.eu;p!=null;){a.$1(p) +r=p.e +r.toString +s.a(r) +q=r.at +if(q!=null)q.d.a.gmO().P(0,a) +p=r.af$}}, +fM(a){var s,r,q,p=this.gv3() +for(s=t.eu;p!=null;){a.$1(p) +r=p.e +r.toString +s.a(r) +q=r.at +if(q!=null)q.d.a.gmO().P(0,a) +p=r.af$}}, +jR(a){var s +switch(this.aE.a){case 0:return null +case 1:case 2:case 3:s=this.k3 +return new A.C(0,0,0+s.a,0+s.b)}}} +A.Kv.prototype={ +bO(a){return a.f!==this.f||a.r!==this.r}} +A.Jq.prototype={ +c8(){this.dV() +this.d4() +this.eN()}, +m(){var s=this,r=s.b_$ +if(r!=null)r.H(0,s.gem()) +s.b_$=null +s.aW()}} +A.ya.prototype={ +ak(a){var s,r,q +this.eD(a) +s=this.U$ +for(r=t.B;s!=null;){s.ak(a) +q=s.e +q.toString +s=r.a(q).af$}}, +ag(a){var s,r,q +this.dU(0) +s=this.U$ +for(r=t.B;s!=null;){s.ag(0) +q=s.e +q.toString +s=r.a(q).af$}}} +A.MK.prototype={} +A.rm.prototype={ +aq(){var s=t.y +return new A.w5(A.aL([!1,!0,!0,!0],s,s),null,null,B.m)}, +jc(a){return A.yz().$1(a)}} +A.w5.prototype={ +aM(){var s,r,q=this +q.bb() +s=q.a +r=s.f +q.d=A.adM(A.b8(s.e),r,q) +r=q.a +s=r.f +s=A.adM(A.b8(r.e),s,q) +q.e=s +r=q.d +r.toString +q.f=new A.wr(A.a([r,s],t.ro))}, +aQ(a){var s,r=this +r.bi(a) +if(!a.f.k(0,r.a.f)||A.b8(a.e)!==A.b8(r.a.e)){s=r.d +s.toString +s.sac(0,r.a.f) +s=r.d +s.toString +s.sGc(A.b8(r.a.e)) +s=r.e +s.toString +s.sac(0,r.a.f) +s=r.e +s.toString +s.sGc(A.b8(r.a.e))}}, +vO(a){var s,r,q,p,o,n,m,l,k,j=this +if(!j.a.jc(a))return!1 +s=a.a +r=s.e +if(A.b8(r)!==A.b8(j.a.e))return!1 +q=j.d +q.toString +p=s.c +p.toString +o=s.a +o.toString +q.e=-Math.min(p-o,q.d) +o=j.e +o.toString +s=s.b +s.toString +o.e=-Math.min(s-p,o.d) +if(a instanceof A.hv){s=a.e +if(s<0)n=q +else if(s>0)n=o +else n=null +m=n===q +q=j.c +q.cT(new A.ty(m,0)) +q=j.w +q.l(0,m,!0) +q.i(0,m).toString +n.d=0 +j.w.i(0,m).toString +q=a.f +if(q!==0){s=n.c +if(s!=null)s.aT(0) +n.c=null +l=A.O(Math.abs(q),100,1e4) +s=n.f +if(n.a===B.eB)r=0.3 +else{r=n.r +r===$&&A.c() +q=r.a +q=r.b.V(0,q.gn(q)) +r=q}s.a=r +r.toString +s.b=A.O(l*0.00006,r,0.5) +r=n.w +s=n.x +s===$&&A.c() +q=s.a +r.a=s.b.V(0,q.gn(q)) +r.b=Math.min(0.025+75e-8*l*l,1) +r=n.b +r===$&&A.c() +r.e=A.c4(0,B.c.bd(0.15+l*0.02)) +r.j_(0,0) +n.as=0.5 +n.a=B.Nd}else{q=a.d +if(q!=null){p=a.b.ga2() +p.toString +t.x.a(p) +o=p.k3 +o.toString +k=p.ko(q.d) +switch(A.b8(r).a){case 0:n.toString +r=o.b +n.Jr(0,Math.abs(s),o.a,A.O(k.b,0,r),r) +break +case 1:n.toString +r=o.a +n.Jr(0,Math.abs(s),o.b,A.O(k.a,0,r),r) +break}}}}else if(a instanceof A.k4||a instanceof A.eC)if(a.gHk()!=null){s=j.d +if(s.a===B.eC)s.jz(B.cm) +s=j.e +if(s.a===B.eC)s.jz(B.cm)}j.r=A.w(a) +return!1}, +m(){this.d.m() +this.e.m() +this.P5()}, +N(a){var s=this,r=null,q=s.a,p=s.d,o=s.e,n=q.e,m=s.f +return new A.cZ(s.gvN(),new A.fD(A.PJ(new A.fD(q.w,r),new A.Id(p,o,n,m),r,r),r),r,t.Bf)}} +A.p7.prototype={ +D(){return"_GlowState."+this.b}} +A.w4.prototype={ +sac(a,b){if(this.ax.k(0,b))return +this.ax=b +this.ao()}, +sGc(a){if(this.ay===a)return +this.ay=a +this.ao()}, +m(){var s=this,r=s.b +r===$&&A.c() +r.m() +r=s.y +r===$&&A.c() +r.w.cW$.v(0,r) +r.B_() +r=s.c +if(r!=null)r.aT(0) +s.dB()}, +Jr(a,b,c,d,e){var s,r,q,p=this,o=p.c +if(o!=null)o.aT(0) +p.at=p.at+b/200 +o=p.f +s=p.r +s===$&&A.c() +r=s.b +s=s.a +o.a=r.V(0,s.gn(s)) +o.b=Math.min(r.V(0,s.gn(s))+b/c*0.8,0.5) +q=Math.min(c,e*0.20096189432249995) +s=p.w +r=p.x +r===$&&A.c() +o=r.b +r=r.a +s.a=o.V(0,r.gn(r)) +s.b=Math.max(1-1/(0.7*Math.sqrt(p.at*q)),A.kC(o.V(0,r.gn(r)))) +r=d/e +p.Q=r +if(r!==p.as){o=p.y +o===$&&A.c() +if(!o.ga11())o.mh(0)}else{o=p.y +o===$&&A.c() +o.eC(0) +p.z=null}o=p.b +o===$&&A.c() +o.e=B.ju +if(p.a!==B.eC){o.j_(0,0) +p.a=B.eC}else{o=o.r +if(!(o!=null&&o.a!=null))p.ao()}p.c=A.c8(B.ju,new A.a2a(p))}, +us(a){var s=this +if(a!==B.J)return +switch(s.a.a){case 1:s.jz(B.cm) +break +case 3:s.a=B.eB +s.at=0 +break +case 2:case 0:break}}, +jz(a){var s,r,q=this,p=q.a +if(p===B.ve||p===B.eB)return +p=q.c +if(p!=null)p.aT(0) +q.c=null +p=q.f +s=q.r +s===$&&A.c() +r=s.a +p.a=s.b.V(0,r.gn(r)) +p.b=0 +p=q.w +r=q.x +r===$&&A.c() +s=r.a +p.a=r.b.V(0,s.gn(s)) +p.b=0 +p=q.b +p===$&&A.c() +p.e=a +p.j_(0,0) +q.a=B.ve}, +X1(a){var s,r=this,q=r.z +if(q!=null){q=q.a +s=r.Q +r.as=s-(s-r.as)*Math.pow(2,-(a.a-q)/$.agU().a) +r.ao()}if(A.yy(r.Q,r.as,0.001)){q=r.y +q===$&&A.c() +q.eC(0) +r.z=null}else r.z=a}, +aC(a,b){var s,r,q,p,o,n,m,l,k,j=this,i=j.r +i===$&&A.c() +s=i.a +if(J.e(i.b.V(0,s.gn(s)),0))return +s=b.a +r=b.b +q=s>r?r/s:1 +p=s*3/2 +o=Math.min(r,s*0.20096189432249995) +r=j.x +r===$&&A.c() +n=r.a +n=r.b.V(0,n.gn(n)) +r=j.as +m=$.ae().b9() +l=j.ax +k=i.a +m.sac(0,A.U(B.c.bd(255*i.b.V(0,k.gn(k))),l.gn(l)>>>16&255,l.gn(l)>>>8&255,l.gn(l)&255)) +a.bm(0) +a.ae(0,0,j.d+j.e) +a.cd(0,1,n*q) +a.jM(new A.C(0,0,0+s,0+o)) +a.e6(new A.q(s/2*(0.5+r),o-p),p,m) +a.b6(0)}, +j(a){return"_GlowController(color: "+this.ax.j(0)+", axis: "+this.ay.b+")"}} +A.a2a.prototype={ +$0(){return this.a.jz(B.bI)}, +$S:0} +A.Id.prototype={ +DJ(a,b,c,d,e){var s +if(c==null)return +switch(A.j4(d,e)){case B.u:c.aC(a,b) +break +case B.t:a.bm(0) +a.ae(0,0,b.b) +a.cd(0,1,-1) +c.aC(a,b) +a.b6(0) +break +case B.Z:a.bm(0) +a.fe(0,1.5707963267948966) +a.cd(0,1,-1) +c.aC(a,new A.S(b.b,b.a)) +a.b6(0) +break +case B.aa:a.bm(0) +s=b.a +a.ae(0,s,0) +a.fe(0,1.5707963267948966) +c.aC(a,new A.S(b.b,s)) +a.b6(0) +break}}, +aC(a,b){var s=this,r=s.d +s.DJ(a,b,s.b,r,B.jD) +s.DJ(a,b,s.c,r,B.jC)}, +iw(a){return a.b!=this.b||a.c!=this.c}, +j(a){return"_GlowingOverscrollIndicatorPainter("+A.h(this.b)+", "+A.h(this.c)+")"}} +A.Ll.prototype={ +D(){return"_StretchDirection."+this.b}} +A.uW.prototype={ +aq(){return new A.xC(null,null,B.m)}, +jc(a){return A.yz().$1(a)}} +A.xC.prototype={ +gjD(){var s,r,q,p,o,n,m=this,l=null,k=m.d +if(k===$){s=t.a7 +r=new A.av(0,0,s) +q=new A.xB(r,B.hY,B.bB,$.b7()) +p=A.d9(l,l,l,l,m) +p.aX() +o=p.bT$ +o.b=!0 +o.a.push(q.gur()) +q.a!==$&&A.dj() +q.a=p +n=A.eQ(B.iY,p,l) +n.a.Z(0,q.gdu()) +t.m.a(n) +q.b!==$&&A.dj() +q.b=new A.aR(n,r,s.h("aR")) +m.d!==$&&A.ap() +m.d=q +k=q}return k}, +vO(a){var s,r,q,p,o,n,m,l=this +if(!l.a.jc(a))return!1 +s=a.a +if(A.b8(s.e)!==A.b8(l.a.c))return!1 +if(a instanceof A.hv){l.f=a +J.J(l.e) +r=a.e +q=l.c +q.cT(new A.ty(r<0,0)) +l.w=!0 +r=l.r+=r +q=a.f +if(q!==0){s=l.gjD() +r=l.r +p=A.O(Math.abs(q),1,1e4) +q=s.c +o=s.b +o===$&&A.c() +n=o.a +q.a=o.b.V(0,n.gn(n)) +q.b=Math.min(0.016+1.01/p,1) +q=s.a +q===$&&A.c() +q.e=A.c4(0,B.c.bd(p*0.02)) +q.j_(0,0) +s.d=B.NQ +s.f=r>0?B.bB:B.vp}else if(a.d!=null){s=s.d +s.toString +m=A.O(Math.abs(r)/s,0,1) +l.gjD().a1U(0,m,l.r)}}else if(a instanceof A.k4||a instanceof A.eC){l.r=0 +s=l.gjD() +if(s.d===B.hZ)s.jz(B.fk)}l.e=a +return!1}, +S4(a){switch(this.a.c.a){case 0:return a===B.bB?B.i1:B.i0 +case 1:return a===B.bB?B.eP:B.i3 +case 2:return a===B.bB?B.i0:B.i1 +case 3:return a===B.bB?B.i3:B.eP}}, +m(){var s=this.gjD(),r=s.a +r===$&&A.c() +r.m() +s.dB() +this.Pe()}, +N(a){var s={},r=A.cL(a,B.Ng,t.w).w +s.a=null +return new A.cZ(this.gvN(),A.mF(this.gjD(),new A.a4r(s,this,r.a),null),null,t.Bf)}} +A.a4r.prototype={ +$2(a,b){var s,r,q,p,o,n,m=this,l=m.b,k=l.gjD().b +k===$&&A.c() +s=k.a +s=k.b.V(0,s.gn(s)) +switch(A.b8(l.a.c).a){case 0:r=1+s +m.a.a=m.c.a +q=1 +break +case 1:q=1+s +m.a.a=m.c.b +r=1 +break +default:r=1 +q=1}p=l.S4(l.gjD().f) +k=l.f +if(k==null)o=null +else{k=k.a.d +k.toString +o=k}if(o==null)o=m.a.a +k=A.t5(r,q,1) +l=l.a +n=A.a8M(p,l.f,k,!0) +return A.aaM(n,s!==0&&o!==m.a.a?l.e:B.w)}, +$S:345} +A.pt.prototype={ +D(){return"_StretchState."+this.b}} +A.xB.prototype={ +a1U(a,b,c){var s,r,q,p=this,o=c>0?B.bB:B.vp +if(p.f!==o&&p.d===B.i_)return +p.f=o +p.e=b +s=p.c +r=p.b +r===$&&A.c() +q=r.a +s.a=r.b.V(0,q.gn(q)) +q=p.e +s.b=0.016*q+0.016*(1-Math.exp(-q*8.237217661997105)) +q=p.a +q===$&&A.c() +q.e=B.fk +if(p.d!==B.hZ){q.j_(0,0) +p.d=B.hZ}else{s=q.r +if(!(s!=null&&s.a!=null))p.ao()}}, +us(a){var s=this +if(a!==B.J)return +switch(s.d.a){case 1:s.jz(B.fk) +break +case 3:s.d=B.hY +s.e=0 +break +case 2:case 0:break}}, +jz(a){var s,r,q=this,p=q.d +if(p===B.i_||p===B.hY)return +p=q.c +s=q.b +s===$&&A.c() +r=s.a +p.a=s.b.V(0,r.gn(r)) +p.b=0 +p=q.a +p===$&&A.c() +p.e=a +p.j_(0,0) +q.d=B.i_}, +j(a){return"_StretchController()"}} +A.ty.prototype={ +ca(a){this.Oe(a) +a.push("side: "+(this.a?"leading edge":"trailing edge"))}} +A.wH.prototype={ +ca(a){var s,r +this.u_(a) +s=this.d7$ +r=s===0?"local":"remote" +a.push("depth: "+s+" ("+r+")")}} +A.y7.prototype={ +c8(){this.dV() +this.d4() +this.eN()}, +m(){var s=this,r=s.b_$ +if(r!=null)r.H(0,s.gem()) +s.b_$=null +s.aW()}} +A.yc.prototype={ +c8(){this.dV() +this.d4() +this.eN()}, +m(){var s=this,r=s.b_$ +if(r!=null)r.H(0,s.gem()) +s.b_$=null +s.aW()}} +A.xx.prototype={ +k(a,b){if(b==null)return!1 +if(J.J(b)!==A.w(this))return!1 +return b instanceof A.xx&&A.dh(b.a,this.a)}, +gu(a){return A.cl(this.a)}, +j(a){return"StorageEntryIdentifier("+B.b.bf(this.a,":")+")"}} +A.Vo.prototype={ +Bl(a){var s=A.a([],t.D5) +if(A.acb(a,s))a.oJ(new A.Vp(s)) +return s}, +a25(a){var s +if(this.a==null)return null +s=this.Bl(a) +return s.length!==0?this.a.i(0,new A.xx(s)):null}} +A.Vp.prototype={ +$1(a){return A.acb(a,this.a)}, +$S:29} +A.nV.prototype={ +N(a){return this.c}} +A.lz.prototype={} +A.Ur.prototype={} +A.VM.prototype={} +A.Az.prototype={ +vA(a){return this.UD(a)}, +UD(a){var s=0,r=A.Y(t.H),q,p=this,o,n,m +var $async$vA=A.Z(function(b,c){if(b===1)return A.V(c,r) +while(true)switch(s){case 0:n=A.ku(a.b) +m=p.a +if(!m.a3(0,n)){s=1 +break}m=m.i(0,n) +m.toString +o=a.a +if(o==="Menu.selectedCallback"){m.ga3A().$0() +m.ga1G() +o=$.at.a1$.f.c.e +o.toString +A.aiB(o,m.ga1G(),t.c)}else if(o==="Menu.opened")m.ga3z(m).$0() +else if(o==="Menu.closed")m.ga3y(m).$0() +case 1:return A.W(q,r)}}) +return A.X($async$vA,r)}} +A.o0.prototype={ +bO(a){return this.f!=a.f}} +A.k3.prototype={ +aq(){return new A.KA(null,A.y(t.wb,t.O),null,!0,null,B.m)}} +A.KA.prototype={ +gcD(){return this.a.d}, +ih(a,b){}, +N(a){return A.a_G(this.bc$,this.a.c)}} +A.vn.prototype={ +bO(a){return a.f!=this.f}} +A.ue.prototype={ +aq(){return new A.x3(B.m)}} +A.x3.prototype={ +b4(){var s,r=this +r.cR() +s=r.c +s.toString +r.r=A.o9(s) +r.vx() +if(r.d==null){r.a.toString +r.d=!1}}, +aQ(a){this.bi(a) +this.vx()}, +gDi(){this.a.toString +return!1}, +vx(){var s,r=this +if(r.gDi()&&!r.w){r.w=!0;++$.k2.bU$ +s=$.fI.aL$ +s===$&&A.c() +s.ga2q().bw(new A.a3V(r),t.P)}}, +VW(){var s,r=this +r.e=!1 +r.f=null +s=$.fI.aL$ +s===$&&A.c() +s.H(0,r.gvY()) +r.vx()}, +m(){if(this.e){var s=$.fI.aL$ +s===$&&A.c() +s.H(0,this.gvY())}this.aW()}, +N(a){var s,r,q=this,p=q.d +p.toString +if(p&&q.gDi())return B.hx +p=q.r +if(p==null)p=q.f +s=q.a +r=s.d +return A.a_G(p,new A.k3(s.c,r,null))}} +A.a3V.prototype={ +$1(a){var s,r=this.a +r.w=!1 +if(r.c!=null){s=$.fI.aL$ +s===$&&A.c() +s.Z(0,r.gvY()) +r.aA(new A.a3U(r,a))}$.k2.FY()}, +$S:346} +A.a3U.prototype={ +$0(){var s=this.a +s.f=this.b +s.e=!0 +s.d=!1}, +$S:0} +A.dd.prototype={ +gle(a){return!0}, +m(){var s=this,r=s.c +if(r!=null){r=r.f0$.v(0,s) +r.toString +s.H(0,r) +s.c=s.b=null}s.dB() +s.a=!0}} +A.hB.prototype={ +xl(a){}, +lR(a,b){var s,r,q=this,p=q.bc$ +p=p==null?null:J.dq(p.giH(),b) +s=p===!0 +r=s?a.lx(J.bc(q.bc$.giH(),b)):a.qF() +if(a.b==null){a.b=b +a.c=q +p=new A.Xn(q,a) +a.Z(0,p) +q.f0$.l(0,a,p)}a.Ij(r) +if(!s&&a.gle(a)&&q.bc$!=null)q.wr(a)}, +nH(){var s,r,q=this +if(q.f1$!=null){s=q.bc$ +s=s==null?null:s.e +s=s==q.gcD()||q.glU()}else s=!0 +if(s)return +r=q.bc$ +if(q.kU(q.f1$,!1))if(r!=null)r.m()}, +glU(){var s,r,q=this +if(q.dG$)return!0 +if(q.gcD()==null)return!1 +s=q.c +s.toString +r=A.o9(s) +if(r!=q.f1$){if(r==null)s=null +else{s=r.c +s=s==null?null:s.d +s=s===!0}s=s===!0}else s=!1 +return s}, +kU(a,b){var s,r,q=this +if(q.gcD()==null||a==null)return q.Ex(null,b) +if(b||q.bc$==null){s=q.gcD() +s.toString +return q.Ex(a.YJ(s,q),b)}s=q.bc$ +s.toString +r=q.gcD() +r.toString +s.a2e(r) +r=q.bc$ +r.toString +a.hP(r) +return!1}, +Ex(a,b){var s,r=this,q=r.bc$ +if(a==q)return!1 +r.bc$=a +if(!b){if(a!=null){s=r.f0$ +new A.aT(s,A.m(s).h("aT<1>")).P(0,r.gXs())}r.xl(q)}return!0}, +wr(a){var s,r=a.gle(a),q=this.bc$ +if(r){if(q!=null){r=a.b +r.toString +s=a.lY() +if(!J.e(J.bc(q.giH(),r),s)||!J.dq(q.giH(),r)){J.fY(q.giH(),r,s) +q.kM()}}}else if(q!=null){r=a.b +r.toString +q.a2a(0,r,t.K)}}} +A.Xn.prototype={ +$0(){var s=this.a +if(s.bc$==null)return +s.wr(this.b)}, +$S:0} +A.a53.prototype={ +$2(a,b){if(!a.a)a.H(0,b)}, +$S:30} +A.ML.prototype={ +aQ(a){this.bi(a) +this.nH()}, +b4(){var s,r,q,p,o=this +o.cR() +s=o.bc$ +r=o.glU() +q=o.c +q.toString +q=A.o9(q) +o.f1$=q +p=o.kU(q,r) +if(r){o.ih(s,o.dG$) +o.dG$=!1}if(p)if(s!=null)s.m()}, +m(){var s,r=this +r.f0$.P(0,new A.a53()) +s=r.bc$ +if(s!=null)s.m() +r.bc$=null +r.aW()}} +A.bN.prototype={ +sn(a,b){var s=this.y +if(b==null?s!=null:b!==s){this.y=b +this.xn(s)}}, +Ij(a){this.y=a}} +A.fS.prototype={ +qF(){return this.cy}, +xn(a){this.ao()}, +lx(a){return A.m(this).h("fS.T").a(a)}, +lY(){var s=this.y +return s==null?A.m(this).h("bN.T").a(s):s}} +A.x2.prototype={ +lx(a){return this.Ot(a)}, +lY(){var s=this.Ou() +s.toString +return s}} +A.ub.prototype={} +A.ua.prototype={} +A.a54.prototype={ +$2(a,b){if(!a.a)a.H(0,b)}, +$S:30} +A.oa.prototype={} +A.Eo.prototype={ +aq(){return new A.ps(new A.Kx($.b7()),null,A.y(t.wb,t.O),null,!0,null,B.m,this.$ti.h("ps<1>"))}} +A.En.prototype={ +D(){return"RouteInformationReportingType."+this.b}} +A.ps.prototype={ +gcD(){return this.a.r}, +aM(){var s,r=this +r.bb() +s=r.a.c +if(s!=null)s.Z(0,r.gpw()) +r.a.f.XS(r.gvi()) +r.a.e.Z(0,r.gvm())}, +ih(a,b){var s,r,q=this,p=q.f +q.lR(p,"route") +s=p.y +r=s==null +if((r?A.m(p).h("bN.T").a(s):s)!=null){p=r?A.m(p).h("bN.T").a(s):s +p.toString +q.pO(p,new A.a48(q))}else{p=q.a.c +if(p!=null)q.pO(p.a,new A.a49(q))}}, +Wf(){var s=this +if(s.w||s.a.c==null)return +s.w=!0 +$.bK.cx$.push(s.gVZ())}, +W_(a){var s,r,q,p,o=this +o.w=!1 +s=o.f +r=s.y +q=r==null +if((q?A.m(s).h("bN.T").a(r):r)!=null){s=q?A.m(s).h("bN.T").a(r):r +s.toString +r=o.a.c +r.toString +q=o.e +q.toString +if(q!==B.Fe)p=q===B.hg&&r.b.a==s.a +else p=!0 +B.e5.rm("selectMultiEntryHistory",t.H) +q=s.a +q.toString +A.adh(q,p,s.b) +r.b=r.a=s}o.e=B.hg}, +W4(){this.a.e.ga3o() +this.a.toString +return null}, +pH(){var s=this +s.f.sn(0,s.W4()) +if(s.e==null)s.e=B.hg +s.Wf()}, +b4(){var s,r=this +r.r=!0 +r.Pa() +s=r.a.c +if(s!=null&&r.r)r.pO(s.a,new A.a47(r)) +r.r=!1 +r.pH()}, +aQ(a){var s,r,q,p=this +p.Pb(a) +s=p.a +r=a.c +q=s.c==r +if(q)s.f===a.f +p.d=new A.E() +if(!q){s=r==null +if(!s)r.H(0,p.gpw()) +q=p.a.c +if(q!=null)q.Z(0,p.gpw()) +s=s?null:r.a +r=p.a.c +if(s!=(r==null?null:r.a))p.D_()}s=a.f +if(p.a.f!==s){r=p.gvi() +s.a2b(r) +p.a.f.XS(r)}p.a.toString +s=p.gvm() +a.e.H(0,s) +p.a.e.Z(0,s) +p.pH()}, +m(){var s=this,r=s.a.c +if(r!=null)r.H(0,s.gpw()) +s.a.f.a2b(s.gvi()) +s.a.e.H(0,s.gvm()) +s.d=null +s.Pc()}, +pO(a,b){var s,r,q=this +q.r=!1 +q.d=new A.E() +s=q.a.d +s.toString +r=q.c +r.toString +s.a3D(a,r).bw(q.VD(q.d,b),t.H)}, +VD(a,b){return new A.a45(this,a,b)}, +D_(){var s=this +s.r=!0 +s.pO(s.a.c.a,new A.a42(s))}, +St(){var s=this +s.d=new A.E() +return s.a.e.a3F().bw(s.Ts(s.d),t.y)}, +Ts(a){return new A.a43(this,a)}, +Ed(){this.aA(new A.a46()) +this.pH() +return new A.c1(null,t.E8)}, +Tt(){this.aA(new A.a44()) +this.pH()}, +N(a){var s=this.bc$,r=this.a,q=r.c,p=r.f,o=r.d +r=r.e +return A.a_G(s,new A.KE(q,p,o,r,this,new A.jh(r.ga3m(),null),null))}} +A.a48.prototype={ +$0(){return this.a.a.e.ga39()}, +$S(){return this.a.$ti.h("ad<~>(1)()")}} +A.a49.prototype={ +$0(){return this.a.a.e.ga38()}, +$S(){return this.a.$ti.h("ad<~>(1)()")}} +A.a47.prototype={ +$0(){return this.a.a.e.gLn()}, +$S(){return this.a.$ti.h("ad<~>(1)()")}} +A.a45.prototype={ +$1(a){var s=0,r=A.Y(t.H),q,p=this,o,n +var $async$$1=A.Z(function(b,c){if(b===1)return A.V(c,r) +while(true)switch(s){case 0:o=p.a +n=p.b +if(o.d!=n){s=1 +break}s=3 +return A.a1(p.c.$0().$1(a),$async$$1) +case 3:if(o.d==n)o.Ed() +case 1:return A.W(q,r)}}) +return A.X($async$$1,r)}, +$S(){return this.a.$ti.h("ad<~>(1)")}} +A.a42.prototype={ +$0(){return this.a.a.e.gLn()}, +$S(){return this.a.$ti.h("ad<~>(1)()")}} +A.a43.prototype={ +$1(a){var s=this.a +if(this.b!=s.d)return new A.c1(!0,t.a9) +s.Ed() +return new A.c1(a,t.a9)}, +$S:348} +A.a46.prototype={ +$0(){}, +$S:0} +A.a44.prototype={ +$0(){}, +$S:0} +A.KE.prototype={ +bO(a){if(this.f==a.f)this.r===a.r +return!0}} +A.Kx.prototype={ +qF(){return null}, +xn(a){this.ao()}, +lx(a){var s +if(a==null)return null +t.DI.a(a) +s=J.bx(a) +return new A.oa(A.ci(s.gG(a)),s.gO(a))}, +lY(){var s,r=this,q=r.y,p=q==null +if((p?A.m(r).h("bN.T").a(q):q)==null)q=null +else{s=(p?A.m(r).h("bN.T").a(q):q).a +q=[s,(p?A.m(r).h("bN.T").a(q):q).b]}return q}} +A.py.prototype={ +aQ(a){this.bi(a) +this.nH()}, +b4(){var s,r,q,p,o=this +o.cR() +s=o.bc$ +r=o.glU() +q=o.c +q.toString +q=A.o9(q) +o.f1$=q +p=o.kU(q,r) +if(r){o.ih(s,o.dG$) +o.dG$=!1}if(p)if(s!=null)s.m()}, +m(){var s,r=this +r.f0$.P(0,new A.a54()) +s=r.bc$ +if(s!=null)s.m() +r.bc$=null +r.aW()}} +A.nT.prototype={ +grN(){return this.e}, +j6(){var s,r=this,q=A.Vh(r.gQ1(),!1) +r.ok=q +s=A.Vh(r.gQ3(),!0) +r.p2=s +B.b.I(r.e,A.a([q,s],t.tD)) +r.NN()}, +jS(a){var s,r=this +r.NI(a) +s=r.at.Q +s===$&&A.c() +if(s===B.F&&!r.Q)r.a.HE(r) +return!0}, +m(){B.b.L(this.e) +this.NM()}} +A.dE.prototype={ +gfo(a){return this.as}, +gA7(){return this.ax}, +TM(a){var s,r=this +switch(a.a){case 3:s=r.e +if(s.length!==0)B.b.gG(s).syR(!0) +s=r.z +if(s!=null){s.a.$0() +s.a=null}r.z=null +break +case 1:case 2:s=r.e +if(s.length!==0)B.b.gG(s).syR(!1) +if(r.z==null)r.z=$.bK.a2k(B.yB) +break +case 0:if(!r.ga0U()){r.a.HE(r) +r.Q=!0 +s=r.z +if(s!=null){s.a.$0() +s.a=null}r.z=null}break}}, +j6(){var s=this,r=A.dE.prototype.gqJ.call(s),q=s.b,p=s.a +p.toString +p=s.at=A.d9(r+"("+A.h(q.a)+")",B.bJ,B.bJ,null,p) +p.aX() +q=p.bT$ +q.b=!0 +q.a.push(s.gD1()) +s.as=p +s.N8() +r=s.as +if(r.gaP(r)===B.J&&s.e.length!==0)B.b.gG(s.e).syR(!0)}, +nE(){this.NK() +return this.at.c5(0)}, +nC(){this.NF() +var s=this.at +s.sn(0,s.b)}, +xi(a){var s,r +if(a instanceof A.dE){s=this.at +s.toString +r=a.at.x +r===$&&A.c() +s.sn(0,r)}this.NL(a)}, +jS(a){this.ch=a +this.at.ey(0) +this.N6(a) +return!0}, +lb(a){this.Fv(a) +this.NJ(a)}, +nD(a){this.Fv(a) +this.NG(a)}, +Fv(a){var s,r,q,p,o,n,m,l=this,k={},j=l.CW +l.CW=null +if(a instanceof A.dE)s=!0 +else s=!1 +if(s){r=l.ax.c +if(r!=null){s=r instanceof A.me?r.a:r +s.toString +q=a.as +q.toString +p=s.gn(s) +o=q.x +o===$&&A.c() +if(!J.e(p,o)){p=q.Q +p===$&&A.c() +p=p===B.J||p===B.F}else p=!0 +o=a.y.a +if(p)l.kS(q,o) +else{k.a=null +p=new A.a_B(l,q,a) +l.CW=new A.a_z(k,q,p) +q.aX() +n=q.bT$ +n.b=!0 +n.a.push(p) +m=A.a8L(s,q,new A.a_A(k,l,a)) +k.a=m +l.kS(m,o)}}else l.kS(a.as,a.y.a)}else l.Wz(B.cf) +if(j!=null)j.$0()}, +kS(a,b){this.ax.saZ(0,a) +if(b!=null)b.bw(new A.a_y(this,a),t.P)}, +Wz(a){return this.kS(a,null)}, +m(){var s=this,r=s.as +if(r!=null)r.cn(s.gD1()) +r=s.z +if(r!=null){r.a.$0() +r.a=null}s.z=null +r=s.at +if(r!=null)r.m() +s.y.cH(0,s.ch) +s.N7()}, +gqJ(){return"TransitionRoute"}, +j(a){return"TransitionRoute(animation: "+A.h(this.at)+")"}} +A.a_B.prototype={ +$1(a){var s,r +switch(a.a){case 3:case 0:s=this.a +s.kS(this.b,this.c.y.a) +r=s.CW +if(r!=null){r.$0() +s.CW=null}break +case 1:case 2:break}}, +$S:3} +A.a_z.prototype={ +$0(){this.b.cn(this.c) +var s=this.a.a +if(s!=null)s.m()}, +$S:0} +A.a_A.prototype={ +$0(){var s,r=this.b +r.kS(this.a.a.a,this.c.y.a) +s=r.CW +if(s!=null){s.$0() +r.CW=null}}, +$S:0} +A.a_y.prototype={ +$1(a){var s=this.a.ax,r=this.b +if(s.c==r){s.saZ(0,B.cf) +if(r instanceof A.me)r.m()}}, +$S:8} +A.Cd.prototype={ +gKv(){var s=this.k_$ +return s!=null&&s.length!==0}} +A.Hw.prototype={ +i5(a,b){A.UC(this.e,t.z).toString +return!1}, +cZ(a){return A.a8d(this.e).J1()}} +A.wu.prototype={ +bO(a){var s=this +return s.f!==a.f||s.r!==a.r||s.w!==a.w||s.x!==a.x}} +A.pi.prototype={ +aq(){return new A.mp(A.a7R(!0,B.Mm.j(0)+" Focus Scope",!1),A.a8s(),B.m,this.$ti.h("mp<1>"))}} +A.mp.prototype={ +aM(){var s,r,q=this +q.bb() +s=A.a([],t.ro) +r=q.a.c.go +if(r!=null)s.push(r) +r=q.a.c.id +if(r!=null)s.push(r) +q.e=new A.wr(s)}, +aQ(a){this.bi(a) +this.Fn()}, +b4(){this.cR() +this.d=null +this.Fn()}, +Fn(){var s,r,q=this.a.c +q.a.a.toString +s=this.f +s.dy=B.LQ +if(q.glC()){this.a.c.a.a.toString +r=!0}else r=!1 +if(r){r=q.a.x.gdE() +if(r!=null)r.oW(s)}}, +S1(){this.aA(new A.a39(this))}, +m(){this.f.m() +this.aW()}, +gEC(){var s=this.a.c.go +if((s==null?null:s.gaP(s))!==B.a6){s=this.a.c.a +s=s==null?null:s.CW.a +s=s===!0}else s=!0 +return s}, +N(a){var s,r,q=this,p=null,o=q.a.c,n=o.glC(),m=q.a.c +if(!m.gri()){m=m.k_$ +m=m!=null&&m.length!==0}else m=!0 +s=q.a.c +s=s.gri()||s.xK$>0 +r=q.a.c +return A.mF(o.c,new A.a3d(q),new A.wu(n,m,s,o,new A.tt(r.fy,new A.nV(new A.jh(new A.a3e(q),p),r.k4,p),p),p))}} +A.a39.prototype={ +$0(){this.a.d=null}, +$S:0} +A.a3d.prototype={ +$2(a,b){var s=this.a.a.c.c.a +b.toString +return new A.k3(b,s,null)}, +$S:349} +A.a3e.prototype={ +$1(a){var s,r=null,q=A.aL([B.uZ,new A.Hw(a,new A.be(A.a([],t.B8),t.dc))],t.n,t.nT),p=this.a,o=p.e +o===$&&A.c() +s=p.d +if(s==null)s=p.d=new A.fD(new A.jh(new A.a3b(p),r),p.a.c.k3) +return A.NU(q,new A.o0(p.r,B.ba,B.G7,A.abh(!1,new A.fD(A.mF(o,new A.a3c(p),s),r),r,r,p.f),r))}, +$S:350} +A.a3c.prototype={ +$2(a,b){var s,r,q,p,o=this.a,n=o.a.c,m=n.go +m.toString +s=n.id +s.toString +r=n.a +r=r==null?null:r.CW +if(r==null)r=A.kg(!1) +o=A.mF(r,new A.a3a(o),b) +A.al(a) +q=A.al(a).r +p=B.dU.i(0,n.a.CW.a?B.al:q) +if(p==null)p=B.iW +return p.Gj(n,a,m,s,o,n.$ti.c)}, +$S:112} +A.a3a.prototype={ +$2(a,b){var s=this.a,r=s.gEC() +s.f.sce(!r) +return new A.hh(r,null,b,null)}, +$S:351} +A.a3b.prototype={ +$1(a){var s=null,r=this.a.a.c +r.go.toString +r.id.toString +return A.dC(s,r.iX.$1(a),!1,s,!0,s,s,s,s,s,s,s,s,s,s,!0,s,s,s,s)}, +$S:25} +A.jO.prototype={ +aA(a){var s,r=this.k2 +if(r.gbj()!=null){r=r.gbj() +if(r.a.c.glC())if(!r.gEC()){r.a.c.a.a.toString +s=!0}else s=!1 +else s=!1 +if(s){s=r.a.c.a.x.gdE() +if(s!=null)s.oW(r.f)}r.aA(a)}else a.$0()}, +j6(){var s=this +s.O3() +s.go=A.DF(A.dE.prototype.gfo.call(s,s)) +s.id=A.DF(A.dE.prototype.gA7.call(s))}, +nE(){var s,r=this,q=r.k2 +if(q.gbj()!=null){r.a.a.toString +s=!0}else s=!1 +if(s){s=r.a.x.gdE() +if(s!=null)s.oW(q.gbj().f)}return r.O2()}, +nC(){var s,r=this,q=r.k2 +if(q.gbj()!=null){r.a.a.toString +s=!0}else s=!1 +if(s){s=r.a.x.gdE() +if(s!=null)s.oW(q.gbj().f)}r.O0()}, +srG(a){var s,r=this +if(r.fy===a)return +r.aA(new A.UD(r,a)) +s=r.go +s.toString +s.saZ(0,r.fy?B.ce:A.dE.prototype.gfo.call(r,r)) +s=r.id +s.toString +s.saZ(0,r.fy?B.cf:A.dE.prototype.gA7.call(r)) +r.nj()}, +ff(){var s=0,r=A.Y(t.ij),q,p=this,o,n,m,l +var $async$ff=A.Z(function(a,b){if(a===1)return A.V(b,r) +while(true)switch(s){case 0:p.k2.gbj() +o=A.aw(p.k1,!0,t.CQ),n=o.length,m=0 +case 3:if(!(m")),!1,r,!1,r,r,r,r,r,r,r,r,r,r,r,B.Ei,r,r,r):q}, +j(a){return"ModalRoute("+this.b.j(0)+", animation: "+A.h(this.as)+")"}} +A.UD.prototype={ +$0(){this.a.fy=this.b}, +$S:0} +A.UB.prototype={ +$0(){}, +$S:0} +A.ph.prototype={ +ff(){var s=0,r=A.Y(t.ij),q,p=this,o +var $async$ff=A.Z(function(a,b){if(a===1)return A.V(b,r) +while(true)switch(s){case 0:o=p.k_$ +if(o!=null&&o.length!==0){q=B.u0 +s=1 +break}q=p.NO() +s=1 +break +case 1:return A.W(q,r)}}) +return A.X($async$ff,r)}, +jS(a){var s,r,q=this,p=q.k_$ +if(p!=null&&p.length!==0){s=p.pop() +s.b=null +s.a3f() +r=s.c&&--q.xK$===0 +if(q.k_$.length===0||r)q.nj() +return!1}q.O1(a) +return!0}} +A.Et.prototype={ +N(a){var s,r,q,p=t.w,o=A.cL(a,B.b9,p).w.f,n=Math.max(o.a,0),m=this.d,l=m?o.b:0 +l=Math.max(l,0) +s=Math.max(o.c,0) +r=this.f +q=r?o.d:0 +return new A.hw(new A.bl(n,l,s,Math.max(q,0)),A.nP(this.x,A.cL(a,null,p).w.JL(r,!0,!0,m),null),null)}} +A.Ex.prototype={ +JU(){}, +Hf(a,b){if(b!=null)b.cT(new A.up(null,a,b,0))}, +Hg(a,b,c){b.cT(A.a8t(b,null,null,a,c))}, +qR(a,b,c){b.cT(new A.hv(null,c,0,a,b,0))}, +He(a,b){b.cT(new A.k4(null,a,b,0))}, +nb(){}, +m(){}, +j(a){return"#"+A.bs(this)}} +A.jx.prototype={ +nb(){this.a.fg(0)}, +ghH(){return!1}, +gfE(){return!1}, +gdP(){return 0}} +A.SD.prototype={ +ghH(){return!1}, +gfE(){return!1}, +gdP(){return 0}, +m(){this.b.$0() +this.p9()}} +A.Y0.prototype={ +PN(a,b){var s,r,q=this +if(b==null)return a +if(a===0){if(q.d!=null)if(q.r==null){s=q.e +s=b.a-s.a>5e4}else s=!1 +else s=!1 +if(s)q.r=0 +return 0}else{s=q.r +if(s==null)return a +else{s+=a +q.r=s +r=q.d +r.toString +if(Math.abs(s)>r){q.r=null +s=Math.abs(a) +if(s>24)return a +else return Math.min(r/3,s)*J.eK(a)}else return 0}}}, +b7(a,b){var s,r,q,p,o=this +o.x=b +s=b.c +s.toString +r=s===0 +if(!r)o.e=b.a +q=b.a +if(o.f)if(r)if(q!=null){r=o.e +r=q.a-r.a>2e4}else r=!0 +else r=!1 +else r=!1 +if(r)o.f=!1 +p=o.PN(s,q) +if(p===0)return +s=o.a +if(A.a63(s.w.a.c))p=-p +s.zI(p>0?B.hi:B.hj) +r=s.at +r.toString +s.u9(r-s.r.wK(s,p))}, +m(){this.x=null +this.b.$0()}, +j(a){return"#"+A.bs(this)}} +A.Qx.prototype={ +Hf(a,b){var s=t.o5.a(this.b.x) +if(b!=null)b.cT(new A.up(s,a,b,0))}, +Hg(a,b,c){b.cT(A.a8t(b,null,t.mF.a(this.b.x),a,c))}, +qR(a,b,c){b.cT(new A.hv(t.mF.a(this.b.x),c,0,a,b,0))}, +He(a,b){var s=this.b.x +b.cT(new A.k4(s instanceof A.em?s:null,a,b,0))}, +ghH(){var s=this.b +return(s==null?null:s.w)!==B.bu}, +gfE(){return!0}, +gdP(){return 0}, +m(){this.b=null +this.p9()}, +j(a){return"#"+A.bs(this)+"("+A.h(this.b)+")"}} +A.z2.prototype={ +JU(){var s=this.a,r=this.b +r===$&&A.c() +s.fg(r.gdP())}, +nb(){var s=this.a,r=this.b +r===$&&A.c() +s.fg(r.gdP())}, +wi(){var s=this.b +s===$&&A.c() +s=s.x +s===$&&A.c() +if(!(Math.abs(this.a.u9(s))<1e-10)){s=this.a +s.eS(new A.jx(s))}}, +w7(){this.a.fg(0)}, +qR(a,b,c){var s=this.b +s===$&&A.c() +b.cT(new A.hv(null,c,s.gdP(),a,b,0))}, +gfE(){return!0}, +gdP(){var s=this.b +s===$&&A.c() +return s.gdP()}, +m(){var s=this.b +s===$&&A.c() +s.m() +this.p9()}, +j(a){var s=A.bs(this),r=this.b +r===$&&A.c() +return"#"+s+"("+r.j(0)+")"}, +ghH(){return this.c}} +A.AT.prototype={ +wi(){var s=this.a,r=this.c +r===$&&A.c() +r=r.x +r===$&&A.c() +if(s.u9(r)!==0){s=this.a +s.eS(new A.jx(s))}}, +w7(){var s=this.a,r=this.c +r===$&&A.c() +s.fg(r.gdP())}, +qR(a,b,c){var s=this.c +s===$&&A.c() +b.cT(new A.hv(null,c,s.gdP(),a,b,0))}, +ghH(){return!0}, +gfE(){return!0}, +gdP(){var s=this.c +s===$&&A.c() +return s.gdP()}, +m(){var s=this.b +s===$&&A.c() +s.hT(0) +s=this.c +s===$&&A.c() +s.m() +this.p9()}, +j(a){var s=A.bs(this),r=this.c +r===$&&A.c() +return"#"+s+"("+r.j(0)+")"}} +A.ui.prototype={ +oA(a,b,c,d){var s,r=this +if(b.a==null){s=$.fv.fv$ +s===$&&A.c() +s=s.a.i(0,c)!=null||s.b.i(0,c)!=null}else s=!0 +if(s){r.b.oA(a,b,c,d) +return}s=r.a +if(s.gaF(s)==null)return +s=s.gaF(s) +s.toString +if(A.amL(s)){$.bK.tu(new A.XX(r,a,b,c,d)) +return}r.b.oA(a,b,c,d)}, +rr(a,b,c){return this.b.rr(0,b,c)}, +rs(a,b){return this.b.rs(a,b)}, +rt(a,b){return this.b.rt(a,b)}, +yy(a){return this.b.yy(a)}} +A.XX.prototype={ +$1(a){var s=this +A.f7(new A.XW(s.a,s.b,s.c,s.d,s.e))}, +$S:2} +A.XW.prototype={ +$0(){var s=this +return s.a.oA(s.b,s.c,s.d,s.e)}, +$S:0} +A.yO.prototype={ +D(){return"AndroidOverscrollIndicator."+this.b}} +A.Ey.prototype={ +jn(a){return A.kE()}, +Gi(a,b,c){var s=null +switch(this.jn(a)){case B.aW:case B.aJ:case B.aX:return A.amv(b,c.b,B.bJ,s,s,A.yz(),B.r,s,s,s,s,B.cm,s) +case B.ak:case B.aV:case B.al:return b}}, +Gh(a,b,c){switch(this.jn(a)){case B.al:case B.aW:case B.aJ:case B.aX:return b +case B.ak:switch(1){case 1:break}break +case B.aV:break}return A.abo(c.a,b,B.i)}, +Ku(a){switch(this.jn(a)){case B.al:return new A.XY() +case B.aJ:return new A.XZ() +case B.ak:case B.aV:case B.aW:case B.aX:return new A.Y_()}}, +KW(a){switch(this.jn(a)){case B.al:return B.vR +case B.aJ:return B.vS +case B.ak:case B.aV:case B.aW:case B.aX:return B.xl}}, +j(a){return"ScrollBehavior"}} +A.XY.prototype={ +$1(a){return A.akU(a.gc1(a))}, +$S:352} +A.XZ.prototype={ +$1(a){var s=a.gc1(a),r=t.pa +return new A.nL(A.aU(20,null,!1,r),s,A.aU(20,null,!1,r))}, +$S:353} +A.Y_.prototype={ +$1(a){return new A.fN(a.gc1(a),A.aU(20,null,!1,t.pa))}, +$S:79} +A.uj.prototype={ +bO(a){var s +if(A.w(this.f)===A.w(a.f))s=!1 +else s=!0 +return s}} +A.Ez.prototype={ +hQ(a,b,c){return this.Y8(a,b,c)}, +Y8(a,b,c){var s=0,r=A.Y(t.H),q=this,p,o,n +var $async$hQ=A.Z(function(d,e){if(d===1)return A.V(e,r) +while(true)switch(s){case 0:n=A.a([],t.iJ) +for(p=q.d,o=0;o#"+A.bs(this)+"("+B.b.bf(s,", ")+")"}} +A.YZ.prototype={ +j(a){var s=A.a([],t.s) +this.ca(s) +return"#"+A.bs(this)+"("+B.b.bf(s,", ")+")"}, +ca(a){var s,r,q +try{s=5 +if(s!=null)a.push("estimated child count: "+A.h(s))}catch(q){r=A.ah(q) +a.push("estimated child count: EXCEPTION ("+J.J(r).j(0)+")")}}} +A.x5.prototype={} +A.Z_.prototype={ +RQ(a){var s,r,q,p=null,o=this.r +if(!o.a3(0,a)){s=o.i(0,p) +s.toString +for(r=this.f,q=s;q<5;){s=r[q].a +if(s!=null)o.l(0,s,q) +if(J.e(s,a)){o.l(0,p,q+1) +return q}++q}o.l(0,p,q)}else return o.i(0,a) +return p}, +Gf(a,b){var s,r,q,p,o=null +if(b<0||b>=5)return o +s=this.f[b] +r=s.a +q=r!=null?new A.x5(r):o +s=new A.fD(s,o) +p=A.aeE(s,b) +s=p!=null?new A.BT(p,s,o):s +return new A.nD(new A.q1(new A.xk(s,o),o),q)}} +A.xk.prototype={ +aq(){return new A.xl(null,B.m)}} +A.xl.prototype={ +gte(){return this.r}, +a1c(a){return new A.a4h(this,a)}, +q8(a,b){var s,r=this +if(b){s=r.d;(s==null?r.d=A.az(t.yu):s).B(0,a)}else{s=r.d +if(s!=null)s.v(0,a)}s=r.d +s=s==null?null:s.a!==0 +s=s===!0 +if(r.r!==s){r.r=s +r.oG()}}, +b4(){var s,r,q,p=this +p.cR() +s=p.c +s.toString +r=A.a8u(s) +s=p.f +if(s!=r){if(s!=null){q=p.e +if(q!=null)new A.aT(q,A.m(q).h("aT<1>")).P(0,s.gzd(s))}p.f=r +if(r!=null){s=p.e +if(s!=null)new A.aT(s,A.m(s).h("aT<1>")).P(0,r.giM(r))}}}, +B(a,b){var s,r=this,q=r.a1c(b) +b.Z(0,q) +s=r.e;(s==null?r.e=A.y(t.yu,t.O):s).l(0,b,q) +r.f.B(0,b) +if(b.gn(b).c!==B.c1)r.q8(b,!0)}, +v(a,b){var s=this.e +if(s==null)return +s=s.v(0,b) +s.toString +b.H(0,s) +this.f.v(0,b) +this.q8(b,!1)}, +m(){var s,r,q=this,p=q.e +if(p!=null){for(p=A.ip(p,p.r);p.t();){s=p.d +q.f.v(0,s) +r=q.e.i(0,s) +r.toString +s.H(0,r)}q.e=null}q.d=null +q.aW()}, +N(a){var s=this +s.Au(a) +if(s.f==null)return s.a.c +return A.acO(s.a.c,s)}} +A.a4h.prototype={ +$0(){var s=this.b,r=this.a +if(s.gn(s).c!==B.c1)r.q8(s,!0) +else r.q8(s,!1)}, +$S:0} +A.MP.prototype={ +aM(){this.bb() +if(this.r)this.pj()}, +d6(){var s=this.hh$ +if(s!=null){s.ao() +s.dB() +this.hh$=null}this.mn()}} +A.iA.prototype={ +h9(){var s=this,r=null,q=s.gy0()?s.gex():r,p=s.gy0()?s.gew():r,o=s.gI8()?s.gc6():r,n=s.gIb()?s.goI():r,m=s.ghR(),l=s.gla(s) +return new A.Bg(q,p,o,n,m,l)}, +gyT(){var s=this +return s.gc6()s.gew()}, +gGa(){var s=this +return s.gc6()===s.gex()||s.gc6()===s.gew()}, +gjY(){var s=this +return s.goI()-A.O(s.gex()-s.gc6(),0,s.goI())-A.O(s.gc6()-s.gew(),0,s.goI())}} +A.Bg.prototype={ +gex(){var s=this.a +s.toString +return s}, +gew(){var s=this.b +s.toString +return s}, +gy0(){return this.a!=null&&this.b!=null}, +gc6(){var s=this.c +s.toString +return s}, +gI8(){return this.c!=null}, +goI(){var s=this.d +s.toString +return s}, +gIb(){return this.d!=null}, +j(a){var s=this +return"FixedScrollMetrics("+B.c.M(Math.max(s.gc6()-s.gex(),0),1)+"..["+B.c.M(s.gjY(),1)+"].."+B.c.M(Math.max(s.gew()-s.gc6(),0),1)+")"}, +ghR(){return this.e}, +gla(a){return this.f}} +A.HW.prototype={} +A.dT.prototype={} +A.a_V.prototype={ +Jb(a){if(t.bx.b(a))++a.d7$ +return!1}} +A.dB.prototype={ +ca(a){this.OM(a) +a.push(this.a.j(0))}} +A.up.prototype={ +ca(a){var s +this.mm(a) +s=this.d +if(s!=null)a.push(s.j(0))}} +A.eC.prototype={ +ca(a){var s +this.mm(a) +a.push("scrollDelta: "+A.h(this.e)) +s=this.d +if(s!=null)a.push(s.j(0))}, +gHk(){return this.d}} +A.hv.prototype={ +ca(a){var s,r=this +r.mm(a) +a.push("overscroll: "+B.c.M(r.e,1)) +a.push("velocity: "+B.c.M(r.f,1)) +s=r.d +if(s!=null)a.push(s.j(0))}} +A.k4.prototype={ +ca(a){var s +this.mm(a) +s=this.d +if(s!=null)a.push(s.j(0))}, +gHk(){return this.d}} +A.FZ.prototype={ +ca(a){this.mm(a) +a.push("direction: "+this.d.j(0))}} +A.xd.prototype={ +ca(a){var s,r +this.u_(a) +s=this.d7$ +r=s===0?"local":"remote" +a.push("depth: "+s+" ("+r+")")}} +A.xc.prototype={ +bO(a){return this.f!==a.f}} +A.kn.prototype={ +a1b(a,b){return this.d.$1(b)}} +A.ul.prototype={ +aq(){return new A.um(new A.rR(t.uk),B.m)}} +A.um.prototype={ +H(a,b){var s,r,q,p=this.d +p.toString +p=A.aob(p) +s=A.m(p).c +for(;p.t();){r=p.c +if(r==null)r=s.a(r) +if(J.e(r.d,b)){p=r.a +p.toString +A.m(r).h("lm.E").a(r);++p.a +s=r.b +s.c=r.c +r.c.b=s +q=--p.b +r.a=r.b=r.c=null +if(q===0)p.c=null +else if(r===p.c)p.c=s +return}}}, +DD(a){var s,r,q,p,o,n,m,l,k=this.d +if(k.b===0)return +p=A.aw(k,!0,t.cS) +for(k=p.length,o=0;oMath.max(Math.abs(s.a),Math.abs(s.b))}return s.JF(a,b,c)}, +na(a,b){var s=this.a +if(s==null)return 0 +return s.na(a,b)}, +ql(a,b,c,d){var s=this.a +if(s==null){s=b.c +s.toString +return s}return s.ql(a,b,c,d)}, +qE(a,b){var s=this.a +if(s==null)return null +return s.qE(a,b)}, +gmf(){var s=this.a +s=s==null?null:s.gmf() +return s==null?$.ags():s}, +ta(a){var s=this.a +s=s==null?null:s.ta(a) +if(s==null){s=a.gla(a) +s=new A.FI(1/a.gla(a),1/(0.05*s))}return s}, +gyt(){var s=this.a +s=s==null?null:s.gyt() +return s==null?18:s}, +grB(){var s=this.a +s=s==null?null:s.grB() +return s==null?50:s}, +goh(){var s=this.a +s=s==null?null:s.goh() +return s==null?8000:s}, +wS(a){var s=this.a +if(s==null)return 0 +return s.wS(a)}, +gxu(){var s=this.a +return s==null?null:s.gxu()}, +j(a){var s=this.a +if(s==null)return"ScrollPhysics" +return"ScrollPhysics -> "+s.j(0)}} +A.DG.prototype={ +qq(a){return new A.DG(this.nh(a))}, +ql(a,b,c,d){var s,r,q,p,o,n,m,l +if(d!==0){s=!1 +r=!1}else{s=!0 +r=!0}q=c.a +q.toString +p=b.a +p.toString +if(q===p){o=c.b +o.toString +n=b.b +n.toString +n=o===n +o=n}else o=!1 +if(o)s=!1 +o=c.c +o.toString +n=b.c +n.toString +if(o!==n){if(isFinite(q)){n=c.b +n.toString +if(isFinite(n))if(isFinite(p)){n=b.b +n.toString +n=isFinite(n)}else n=!1 +else n=!1}else n=!1 +if(n)r=!1 +s=!1}n=om}else m=!0 +if(m)r=!1 +if(s){if(n&&p>q)return p-(q-o) +q=c.b +q.toString +if(o>q){n=b.b +n.toString +n=n0&&b<0))n=p>0&&b>0 +else n=!0 +s=a.ax +if(n){s.toString +m=this.HU((o-Math.abs(b))/s)}else{s.toString +m=this.HU(o/s)}l=J.eK(b) +if(n&&this.b===B.u3)return l*Math.abs(b) +return l*A.aiP(o,Math.abs(b),m)}, +na(a,b){return 0}, +qE(a,b){var s,r,q,p,o,n,m,l=this.ta(a) +if(Math.abs(b)>=l.c||a.gyT()){switch(this.b.a){case 1:s=1400 +break +case 0:s=0 +break +default:s=null}r=this.gmf() +q=a.at +q.toString +p=a.z +p.toString +o=a.Q +o.toString +n=new A.Ox(p,o,r,l) +if(qo){n.f=new A.lU(o,A.Lh(r,q-o,b),B.b8) +n.r=-1/0}else{q=n.e=A.akJ(0.135,q,b,s) +m=q.gr2() +if(b>0&&m>o){p=q.K5(o) +n.r=p +n.f=new A.lU(o,A.Lh(r,o-o,Math.min(q.dr(0,p),5000)),B.b8)}else if(b<0&&mr)q=r +else q=o +r=a.z +r.toString +if(s0){r=a.at +r.toString +p=a.Q +p.toString +p=r>=p +r=p}else r=!1 +if(r)return o +if(b<0){r=a.at +r.toString +p=a.z +p.toString +p=r<=p +r=p}else r=!1 +if(r)return o +r=a.at +r.toString +r=new A.Pc(r,b,n) +p=$.a6Y() +s=p*0.35*Math.pow(s/2223.8657884799995,1/(p-1)) +r.e=s +r.f=b*s/p +return r}} +A.pL.prototype={ +qq(a){return new A.pL(this.nh(a))}, +iv(a){return!0}} +A.un.prototype={ +D(){return"ScrollPositionAlignmentPolicy."+this.b}} +A.k5.prototype={ +Ps(a,b,c,d,e){var s,r,q,p=this +if(d!=null)p.kV(d) +if(p.at==null){s=p.w +r=s.c +r.toString +r=A.acd(r) +if(r==null)q=null +else{s=s.c +s.toString +q=r.a25(s)}if(q!=null)p.at=q}}, +gex(){var s=this.z +s.toString +return s}, +gew(){var s=this.Q +s.toString +return s}, +gy0(){return this.z!=null&&this.Q!=null}, +gc6(){var s=this.at +s.toString +return s}, +gI8(){return this.at!=null}, +goI(){var s=this.ax +s.toString +return s}, +gIb(){return this.ax!=null}, +kV(a){var s=this,r=a.z +if(r!=null&&a.Q!=null){r.toString +s.z=r +r=a.Q +r.toString +s.Q=r}r=a.at +if(r!=null)s.at=r +r=a.ax +if(r!=null)s.ax=r +s.fr=a.fr +a.fr=null +if(A.w(a)!==A.w(s))s.fr.JU() +s.w.Ad(s.fr.ghH()) +s.dy.sn(0,s.fr.gfE())}, +gla(a){var s=this.w,r=s.c +r.toString +r=A.dl(r,B.eD) +r=r==null?null:r.b +if(r==null){s=s.c +s.toString +s=A.adB(s).x +if(s==null){s=self.window.devicePixelRatio +if(s===0)s=1}}else s=r +return s}, +Lo(a){var s,r,q,p=this,o=p.at +o.toString +if(a!==o){s=p.r.na(p,a) +o=p.at +o.toString +r=a-s +p.at=r +if(r!==o){p.ws() +p.Av() +r=p.at +r.toString +p.xm(r-o)}if(s!==0){o=p.fr +o.toString +r=p.h9() +q=$.at.a1$.z.i(0,p.w.z) +q.toString +o.qR(r,q,s) +return s}}return 0}, +Zs(a){var s=this.at +s.toString +this.at=s+a +this.ch=!0}, +HQ(a){var s=this,r=s.at +r.toString +s.as=a-r +s.at=a +s.ws() +s.Av() +$.bK.cx$.push(new A.Y4(s))}, +G7(a){if(this.ax!==a){this.ax=a +this.ch=!0}return!0}, +G4(a,b){var s,r,q,p=this +if(!A.yy(p.z,a,0.001)||!A.yy(p.Q,b,0.001)||p.ch||p.db!==A.b8(p.ghR())){p.z=a +p.Q=b +p.db=A.b8(p.ghR()) +s=p.ay?p.h9():null +p.ch=!1 +p.CW=!0 +if(p.ay){r=p.cx +r.toString +s.toString +r=!p.Zt(r,s)}else r=!1 +if(r)return!1 +p.ay=!0}if(p.CW){p.NS() +p.w.Li(p.r.iv(p)) +p.CW=!1}s=p.h9() +if(p.cx!=null){r=Math.max(s.gc6()-s.gex(),0) +q=p.cx +if(r===Math.max(q.gc6()-q.gex(),0))if(s.gjY()===p.cx.gjY()){r=Math.max(s.gew()-s.gc6(),0) +q=p.cx +r=r===Math.max(q.gew()-q.gc6(),0)&&s.e===p.cx.e}else r=!1 +else r=!1 +r=!r}else r=!0 +if(r){if(!p.cy){A.f7(p.gZN()) +p.cy=!0}p.cx=p.h9()}return!0}, +Zt(a,b){var s=this,r=s.r.ql(s.fr.gfE(),b,a,s.fr.gdP()),q=s.at +q.toString +if(r!==q){s.at=r +return!1}return!0}, +nb(){this.fr.nb() +this.ws()}, +ws(){var s,r,q,p,o,n=this,m=n.w +switch(m.a.c.a){case 0:s=B.d3 +r=B.d2 +break +case 1:s=B.d4 +r=B.d5 +break +case 2:s=B.d2 +r=B.d3 +break +case 3:s=B.d5 +r=B.d4 +break +default:s=null +r=null}q=A.az(t.nS) +p=n.at +p.toString +o=n.z +o.toString +if(p>o)q.B(0,r) +p=n.at +p.toString +o=n.Q +o.toString +if(pr)o=r +break +default:o=m}r=n.at +r.toString +if(o===r)return A.cJ(m,t.H) +if(e.a===B.r.a){n.ea(o) +return A.cJ(m,t.H)}return n.hQ(o,d,e)}, +ol(a,b,c,d){var s,r=this.z +r.toString +s=this.Q +s.toString +b=A.O(b,r,s) +return this.O5(0,b,c,d)}, +eS(a){var s,r,q=this,p=q.fr +if(p!=null){s=p.ghH() +r=q.fr.gfE() +if(r&&!a.gfE())q.xf() +q.fr.m()}else{r=!1 +s=!1}q.fr=a +if(s!==a.ghH())q.w.Ad(q.fr.ghH()) +q.dy.sn(0,q.fr.gfE()) +if(!r&&q.fr.gfE())q.xk()}, +xk(){var s=this.fr +s.toString +s.Hf(this.h9(),$.at.a1$.z.i(0,this.w.z))}, +xm(a){var s,r,q=this.fr +q.toString +s=this.h9() +r=$.at.a1$.z.i(0,this.w.z) +r.toString +q.Hg(s,r,a)}, +xf(){var s,r,q,p=this,o=p.fr +o.toString +s=p.h9() +r=p.w +q=$.at.a1$.z.i(0,r.z) +q.toString +o.He(s,q) +q=p.at +q.toString +r.f.sn(0,q) +q=$.fI.aL$ +q===$&&A.c() +q.a_j() +o=r.c +o.toString +o=A.acd(o) +if(o!=null){s=r.c +s.toString +r=p.at +r.toString +if(o.a==null)o.a=A.y(t.K,t.z) +s=o.Bl(s) +if(s.length!==0)o.a.l(0,new A.xx(s),r)}}, +ZO(){var s,r,q +this.cy=!1 +s=this.w.z +if($.at.a1$.z.i(0,s)!=null){r=this.h9() +q=$.at.a1$.z.i(0,s) +q.toString +s=$.at.a1$.z.i(0,s) +if(s!=null)s.cT(new A.lT(r,q,0))}}, +m(){var s=this,r=s.fr +if(r!=null)r.m() +s.fr=null +r=s.dy +r.a_$=$.b7() +r.W$=0 +s.dB()}, +ca(a){var s,r,q=this +q.O4(a) +s=q.z +s=s==null?null:B.c.M(s,1) +r=q.Q +r=r==null?null:B.c.M(r,1) +a.push("range: "+A.h(s)+".."+A.h(r)) +r=q.ax +a.push("viewport: "+A.h(r==null?null:B.c.M(r,1)))}} +A.Y4.prototype={ +$1(a){this.a.as=0}, +$S:2} +A.lT.prototype={ +ca(a){this.OL(a) +a.push(this.a.j(0))}} +A.xb.prototype={ +ca(a){var s,r +this.u_(a) +s=this.d7$ +r=s===0?"local":"remote" +a.push("depth: "+s+" ("+r+")")}} +A.KJ.prototype={} +A.uo.prototype={ +ghR(){return this.w.a.c}, +kV(a){var s,r=this +r.NR(a) +r.fr.a=r +r.k4=a.k4 +s=a.ok +if(s!=null){r.ok=s +s.a=r +a.ok=null}}, +eS(a){var s,r=this +r.k3=0 +r.NT(a) +s=r.ok +if(s!=null)s.m() +r.ok=null +if(!r.fr.gfE())r.zI(B.hh)}, +fg(a){var s,r,q,p=this,o=p.r.qE(p,a) +if(o!=null){s=p.fr +s=s==null?null:s.ghH() +s=new A.z2(s!==!1,p) +r=A.aaq(null,0,p.w) +r.aX() +q=r.bY$ +q.b=!0 +q.a.push(s.gwh()) +r.eC(0) +r.z=B.a9 +r.wc(o).a.a.io(s.gw6()) +s.b=r +p.eS(s)}else p.eS(new A.jx(p))}, +zI(a){var s,r,q,p=this +if(p.k4===a)return +p.k4=a +s=p.h9() +r=p.w.z +q=$.at.a1$.z.i(0,r) +q.toString +r=$.at.a1$.z.i(0,r) +if(r!=null)r.cT(new A.FZ(a,s,q,0))}, +hQ(a,b,c){var s,r,q,p=this,o=p.at +o.toString +if(A.yy(a,o,p.r.ta(p).a)){p.ea(a) +return A.cJ(null,t.H)}o=p.at +o.toString +s=new A.AT(p) +r=new A.bp(new A.ai($.ab,t.U),t.hb) +s.b=r +o=A.aaq("DrivenScrollActivity",o,p.w) +o.aX() +q=o.bY$ +q.b=!0 +q.a.push(s.gwh()) +o.z=B.a9 +o.js(a,b,c).a.a.io(s.gw6()) +s.c!==$&&A.dj() +s.c=o +p.eS(s) +return r.a}, +ea(a){var s,r,q=this +q.eS(new A.jx(q)) +s=q.at +s.toString +if(s!==a){q.HQ(a) +q.xk() +r=q.at +r.toString +q.xm(r-s) +q.xf()}q.fg(0)}, +yY(a){var s,r,q,p,o=this +if(a===0){o.fg(0) +return}s=o.at +s.toString +r=o.z +r.toString +r=Math.max(s+a,r) +q=o.Q +q.toString +p=Math.min(r,q) +if(p!==s){o.eS(new A.jx(o)) +o.zI(-a>0?B.hi:B.hj) +s=o.at +s.toString +o.dy.sn(0,!0) +o.HQ(p) +o.xk() +r=o.at +r.toString +o.xm(r-s) +o.xf() +o.fg(0)}}, +m(){var s=this.ok +if(s!=null)s.m() +this.ok=null +this.NV()}} +A.Ox.prototype={ +wb(a){var s,r=this,q=r.r +q===$&&A.c() +if(a>q){if(!isFinite(q))q=0 +r.w=q +q=r.f +q===$&&A.c() +s=q}else{r.w=0 +q=r.e +q===$&&A.c() +s=q}s.a=r.a +return s}, +cN(a,b){return this.wb(b).cN(0,b-this.w)}, +dr(a,b){return this.wb(b).dr(0,b-this.w)}, +j7(a){return this.wb(a).j7(a-this.w)}, +j(a){return"BouncingScrollSimulation(leadingExtent: "+A.h(this.b)+", trailingExtent: "+A.h(this.c)+")"}} +A.Pc.prototype={ +cN(a,b){var s,r=this.e +r===$&&A.c() +s=A.O(b/r,0,1) +r=this.f +r===$&&A.c() +return this.b+r*(1-Math.pow(1-s,$.a6Y()))}, +dr(a,b){var s=this.e +s===$&&A.c() +return this.c*Math.pow(1-A.O(b/s,0,1),$.a6Y()-1)}, +j7(a){var s=this.e +s===$&&A.c() +return a>=s}} +A.ED.prototype={ +D(){return"ScrollViewKeyboardDismissBehavior."+this.b}} +A.EC.prototype={ +Yr(a,b,c,d){return new A.vo(c,0,b,null,this.Q,this.ch,d,null)}, +N(a){var s,r,q,p,o,n,m,l,k,j=this,i=null,h=j.Yo(a),g=j.cx,f=A.dl(a,i) +if(f!=null){s=f.f +r=s.Zl(0,0) +q=s.Zm(0,0) +s=j.c===B.ba +g=s?q:r +h=A.nP(h,f.wY(s?r:q),i)}p=A.a([g!=null?new A.F4(g,h,i):h],t.nA) +s=j.c +o=A.arm(a,s,!1) +n=j.f +n=A.amb(a,s) +m=n?A.W7(a):j.e +l=new A.ur(o,m,j.r,new A.Y5(j,o,p),j.as,j.at,j.ay,i,j.ch,i) +k=n&&m!=null?new A.o0(i,i,B.Gf,l,i):l +if(j.ax===B.Ft)return new A.cZ(new A.Y6(a),k,i,t.DE) +else return k}} +A.Y5.prototype={ +$2(a,b){return this.a.Yr(a,b,this.b,this.c)}, +$S:357} +A.Y6.prototype={ +$1(a){var s=A.abi(this.a) +if(a.d!=null&&s.gj2())s.zA() +return!1}, +$S:358} +A.zd.prototype={} +A.Ca.prototype={ +Yo(a){return new A.F3(this.R8,null)}} +A.a4g.prototype={ +$2(a,b){if(!a.a)a.H(0,b)}, +$S:30} +A.ur.prototype={ +aq(){var s=null,r=t.F +return new A.us(new A.Ky($.b7()),new A.bM(s,r),new A.bM(s,t.lV),new A.bM(s,r),B.p0,s,A.y(t.wb,t.O),s,!0,s,s,s,B.m)}, +a2W(a,b){return this.f.$2(a,b)}} +A.Yc.prototype={ +$1(a){return null}, +$S:359} +A.xe.prototype={ +bO(a){return this.r!==a.r}} +A.us.prototype={ +gH0(){var s,r=this +switch(r.a.c.a){case 2:s=r.d.at +s.toString +return new A.q(0,s) +case 0:s=r.d.at +s.toString +return new A.q(0,-s) +case 3:s=r.d.at +s.toString +return new A.q(-s,0) +case 1:s=r.d.at +s.toString +return new A.q(s,0)}}, +gmB(){var s=this.a.d +if(s==null){s=this.w +s.toString}return s}, +gcD(){return this.a.z}, +Fs(){var s,r,q,p=this +p.a.toString +s=p.c +s.toString +s=A.a8r(s) +p.r=s +r=p.c +r.toString +r=s.KW(r) +p.e=r +s=p.a.e +if(s!=null)p.e=new A.pL(s.nh(r)) +q=p.d +if(q!=null){p.gmB().nA(0,q) +A.f7(q.gnI())}p.gmB() +s=p.e +s.toString +r=new A.uo(B.hh,s,p,!0,null,A.kg(!1),$.b7()) +r.Ps(p,null,!0,q,s) +if(r.at==null&&!0)r.at=0 +if(r.fr==null)r.eS(new A.jx(r)) +p.d=r +s=p.gmB() +r=p.d +r.toString +s.ak(r)}, +ih(a,b){var s,r,q,p=this.f +this.lR(p,"offset") +s=p.y +r=s==null +if((r?A.m(p).h("bN.T").a(s):s)!=null){q=this.d +q.toString +p=r?A.m(p).h("bN.T").a(s):s +p.toString +if(b)q.at=p +else q.ea(p)}}, +aM(){if(this.a.d==null)this.w=A.a8s() +this.bb()}, +b4(){var s=this,r=s.c +r.toString +r=A.dl(r,B.vj) +s.x=r==null?null:r.ay +s.Fs() +s.OO()}, +WG(a){var s,r,q,p,o=null,n=this.a.e +if(n==null)n=o +s=a.e +if(s==null)s=o +do{r=n==null +q=r?o:A.w(n) +p=s==null +if(q!=(p?o:A.w(s)))return!0 +n=r?o:n.a +s=p?o:s.a}while(n!=null||s!=null) +r=this.a.d +r=r==null?o:A.w(r) +q=a.d +return r!=(q==null?o:A.w(q))}, +aQ(a){var s,r,q=this +q.OP(a) +s=a.d +if(q.a.d!=s){if(s==null){s=q.w +s.toString +r=q.d +r.toString +s.nA(0,r) +q.w.m() +q.w=null}else{r=q.d +r.toString +s.nA(0,r) +if(q.a.d==null)q.w=A.a8s()}s=q.gmB() +r=q.d +r.toString +s.ak(r)}if(q.WG(a))q.Fs()}, +m(){var s,r=this,q=r.a.d +if(q!=null){s=r.d +s.toString +q.nA(0,s)}else{q=r.w +if(q!=null){s=r.d +s.toString +q.nA(0,s)}q=r.w +if(q!=null)q.m()}r.d.m() +r.f.m() +r.OQ()}, +Li(a){var s,r,q=this +if(a===q.ax)s=!a||A.b8(q.a.c)===q.ay +else s=!1 +if(s)return +if(!a){q.as=B.p0 +q.Em()}else{switch(A.b8(q.a.c).a){case 1:q.as=A.aL([B.hF,new A.ck(new A.Y8(q),new A.Y9(q),t.n_)],t.n,t.ob) +break +case 0:q.as=A.aL([B.hE,new A.ck(new A.Ya(q),new A.Yb(q),t.ta)],t.n,t.ob) +break}a=!0}q.ax=a +q.ay=A.b8(q.a.c) +s=q.z +if(s.gbj()!=null){s=s.gbj() +s.we(q.as) +if(!s.a.f){r=s.c.ga2() +r.toString +t.zx.a(r) +s.e.Yf(r)}}}, +Ad(a){var s,r=this +if(r.at===a)return +r.at=a +s=r.Q +if($.at.a1$.z.i(0,s)!=null){s=$.at.a1$.z.i(0,s).ga2() +s.toString +t.n3.a(s).sIi(r.at)}}, +SK(a){var s=this.d,r=s.fr.gdP(),q=new A.SD(this.gRk(),s) +s.eS(q) +s.k3=r +this.CW=q}, +Wi(a){var s,r,q=this.d,p=q.r,o=p.wS(q.k3) +p=p.gxu() +s=p==null?null:0 +r=new A.Y0(q,this.gRi(),o,p,a.a,o!==0,s,a.d,a) +q.eS(new A.Qx(r,q)) +this.ch=q.ok=r}, +Wj(a){var s=this.ch +if(s!=null)s.b7(0,a)}, +Wh(a){var s,r,q,p,o=this.ch +if(o!=null){s=a.b +s.toString +r=-s +if(A.a63(o.a.w.a.c))r=-r +o.x=a +if(o.f){s=J.eK(r) +q=o.c +p=Math.abs(r)>Math.abs(q)*0.5 +if(s===J.eK(q)&&p)r+=q}o.a.fg(r)}}, +Em(){if($.at.a1$.z.i(0,this.z)==null)return +var s=this.CW +if(s!=null)s.a.fg(0) +s=this.ch +if(s!=null)s.a.fg(0)}, +Rl(){this.CW=null}, +Rj(){this.ch=null}, +EV(a){var s,r=this.d,q=r.at +q.toString +s=r.z +s.toString +s=Math.max(q+a,s) +r=r.Q +r.toString +return Math.min(s,r)}, +DS(a){var s,r,q=A.b_("delta"),p=$.fI.ai$ +p===$&&A.c() +p=p.a +p=p.gaJ(p) +s=A.hq(p,A.m(p).h("j.E")) +this.r===$&&A.c() +p=A.cA([B.bP,B.cG],t.lT) +r=s.iN(0,p.giP(p))&&a.gc1(a)===B.bt +switch(A.b8(this.a.c).a){case 0:q.b=r?a.gjp().b:a.gjp().a +break +case 1:q.b=r?a.gjp().a:a.gjp().b +break}if(A.a63(this.a.c))q.b=q.ap()*-1 +return q.ap()}, +VL(a){var s,r,q,p,o=this +if(t.xi.b(a)&&o.d!=null){s=o.e +if(s!=null){r=o.d +r.toString +r=!s.iv(r) +s=r}else s=!1 +if(s)return +q=o.DS(a) +p=o.EV(q) +if(q!==0){s=o.d.at +s.toString +s=p!==s}else s=!1 +if(s)$.e3.R8$.JG(0,a,o.gTk())}else if(t.DR.b(a))o.d.yY(0)}, +Tl(a){var s,r=this,q=r.DS(a),p=r.EV(q) +if(q!==0){s=r.d.at +s.toString +s=p!==s}else s=!1 +if(s)r.d.yY(q)}, +Tx(a){var s,r +if(a.d7$===0){s=$.at.a1$.z.i(0,this.y) +r=s==null?null:s.ga2() +if(r!=null)r.b0()}return!1}, +N(a){var s,r,q,p,o,n,m,l,k=this,j=null,i=k.d +i.toString +s=k.as +r=k.a +s=A.Cc(B.bk,new A.k_(A.dC(j,new A.hh(k.at,!1,r.a2W(a,i),k.Q),!1,j,!0,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),s,B.ap,!1,k.z),j,j,j,k.gVK(),j) +r=k.a +r.toString +q=k.d +q.toString +k.e.toString +p=k.gmB() +o=k.a.as +n=new A.EE(r.c,p,o) +p=k.r +p===$&&A.c() +m=p.Gi(a,p.Gh(a,new A.cZ(k.gTw(),new A.KK(q,!0,r.x,new A.xe(k,i,s,j),k.y),j,t.iY),n),n) +l=A.a8u(a) +if(l!=null){i=k.d +i.toString +m=new A.xg(k,i,m,l,j)}return m}} +A.Y8.prototype={ +$0(){this.a.r===$&&A.c() +return A.adA(null,B.eh)}, +$S:73} +A.Y9.prototype={ +$1(a){var s,r,q=this.a +a.ax=q.gCR() +a.ay=q.gEo() +a.ch=q.gEp() +a.CW=q.gEn() +a.cx=q.gEl() +s=q.e +a.cy=s==null?null:s.gyt() +s=q.e +a.db=s==null?null:s.grB() +s=q.e +a.dx=s==null?null:s.goh() +s=q.r +s===$&&A.c() +r=q.c +r.toString +a.dy=s.Ku(r) +a.at=q.a.y +a.b=q.x +a.c=B.eh}, +$S:128} +A.Ya.prototype={ +$0(){this.a.r===$&&A.c() +return A.a7W(null,B.eh)}, +$S:122} +A.Yb.prototype={ +$1(a){var s,r,q=this.a +a.ax=q.gCR() +a.ay=q.gEo() +a.ch=q.gEp() +a.CW=q.gEn() +a.cx=q.gEl() +s=q.e +a.cy=s==null?null:s.gyt() +s=q.e +a.db=s==null?null:s.grB() +s=q.e +a.dx=s==null?null:s.goh() +s=q.r +s===$&&A.c() +r=q.c +r.toString +a.dy=s.Ku(r) +a.at=q.a.y +a.b=q.x +a.c=B.eh}, +$S:108} +A.xg.prototype={ +aq(){return new A.KL(B.m)}} +A.KL.prototype={ +aM(){var s,r,q,p +this.bb() +s=this.a +r=s.c +s=s.d +q=t.yu +p=t.i +q=new A.xf(r,new A.QC(r,30),s,A.y(q,p),A.y(q,p),A.a([],t.E1),A.az(q),B.FD,$.b7()) +s.Z(0,q.gEh()) +this.d=q}, +aQ(a){var s,r +this.bi(a) +s=this.a.d +if(a.d!==s){r=this.d +r===$&&A.c() +r.sbp(0,s)}}, +m(){var s=this.d +s===$&&A.c() +s.k1.L(0) +s.k2.L(0) +s.fr=!1 +s.dy.e=!1 +s.MW() +this.aW()}, +N(a){var s=this.a,r=s.f,q=this.d +q===$&&A.c() +return new A.uz(r,s.e,q,null)}} +A.xf.prototype={ +sbp(a,b){var s,r=this.id +if(b===r)return +s=this.gEh() +r.H(0,s) +this.id=b +b.Z(0,s)}, +Wd(){if(this.fr)return +this.fr=!0 +$.bK.cx$.push(new A.a4d(this))}, +xe(){var s=this,r=s.b,q=A.nG(r,A.ac(r).c) +r=s.k1 +r.zg(r,new A.a4e(q)) +r=s.k2 +r.zg(r,new A.a4f(q)) +s.MU()}, +xY(a){var s,r,q,p,o,n=this +if(n.fy==null&&n.fx==null)n.go=n.CL(a.b) +s=A.Nm(n.dx) +r=a.b +q=-s.a +p=-s.b +if(a.a===B.cZ){r=n.fy=n.D7(r) +a=new A.lV(new A.q(r.a+q,r.b+p),B.cZ)}else{r=n.fx=n.D7(r) +a=new A.lV(new A.q(r.a+q,r.b+p),B.u5)}o=n.N1(a) +if(o===B.hm){n.dy.e=!1 +return o}if(n.go){r=n.dy +r.LC(A.amx(a.b,0,0)) +if(r.e)return B.hm}return o}, +D7(a){var s,r,q,p,o=this.dx,n=o.c.ga2() +n.toString +t.x.a(n) +s=n.ko(a) +if(!this.go){r=s.b +if(r<0||s.a<0)return A.cf(n.bs(0,null),B.h) +q=n.k3 +if(r>q.b||s.a>q.a)return B.Ea}p=A.Nm(o) +o=p.a +r=p.b +return A.cf(n.bs(0,null),new A.q(s.a+o,s.b+r))}, +wm(a,b){var s,r,q,p=this,o=p.dx,n=A.Nm(o) +o=o.c.ga2() +o.toString +t.x.a(o) +s=o.bs(0,null) +r=p.d +if(r!==-1)q=p.fx==null||b +else q=!1 +if(q){r=J.j9(p.b[r]).a +r.toString +p.fx=A.cf(s,A.cf(J.a7e(p.b[p.d],o),r.a.T(0,new A.q(0,-r.b/2))).T(0,n))}r=p.c +if(r!==-1)q=!0 +else q=!1 +if(q){r=J.j9(p.b[r]).b +r.toString +p.fy=A.cf(s,A.cf(J.a7e(p.b[p.c],o),r.a.T(0,new A.q(0,-r.b/2))).T(0,n))}}, +Fk(){return this.wm(!0,!0)}, +Dj(a){var s,r,q,p,o,n,m,l,k=this,j=k.b +if(a){s=j[k.c] +r=s.gn(s).b +q=s.gn(s).b.b}else{s=j[k.d] +r=s.gn(s).a +j=s.gn(s).a +q=j==null?null:j.b}if(q==null||r==null)return +j=k.dx +p=j.c.ga2() +p.toString +t.x.a(p) +o=A.cf(s.bs(0,p),r.a) +p=p.k3 +n=p.a +p=p.b +switch(j.a.c.a){case 0:m=o.b +l=m-q +if(m>=p&&l<=0)return +if(m>p){j=k.id +n=j.at +n.toString +j.ea(n+p-m) +return}if(l<0){j=k.id +p=j.at +p.toString +j.ea(p+0-l)}return +case 1:r=o.a +if(r>=n&&r<=0)return +if(r>n){j=k.id +p=j.at +p.toString +j.ea(p+r-n) +return}if(r<0){j=k.id +p=j.at +p.toString +j.ea(p+r-0)}return +case 2:m=o.b +l=m-q +if(m>=p&&l<=0)return +if(m>p){j=k.id +n=j.at +n.toString +j.ea(n+m-p) +return}if(l<0){j=k.id +p=j.at +p.toString +j.ea(p+l-0)}return +case 3:r=o.a +if(r>=n&&r<=0)return +if(r>n){j=k.id +p=j.at +p.toString +j.ea(p+n-r) +return}if(r<0){j=k.id +p=j.at +p.toString +j.ea(p+0-r)}return}}, +CL(a){var s,r=this.dx.c.ga2() +r.toString +t.x.a(r) +s=r.ko(a) +r=r.k3 +return new A.C(0,0,0+r.a,0+r.b).q(0,s)}, +e5(a,b){var s,r,q=this +switch(b.a.a){case 0:s=q.dx.d.at +s.toString +q.k1.l(0,a,s) +q.qW(a) +break +case 1:s=q.dx.d.at +s.toString +q.k2.l(0,a,s) +q.qW(a) +break +case 5:case 6:q.qW(a) +s=q.dx +r=s.d.at +r.toString +q.k1.l(0,a,r) +s=s.d.at +s.toString +q.k2.l(0,a,s) +break +case 2:q.k2.v(0,a) +q.k1.v(0,a) +break +case 3:case 4:s=q.dx +r=s.d.at +r.toString +q.k2.l(0,a,r) +s=s.d.at +s.toString +q.k1.l(0,a,s) +break}return q.MV(a,b)}, +qW(a){var s,r,q,p,o,n,m=this,l=m.dx,k=l.d.at +k.toString +s=m.k1.i(0,a) +r=m.fx +if(r!=null)q=s==null||Math.abs(k-s)>1e-10 +else q=!1 +if(q){p=A.Nm(l) +q=p.a +o=p.b +a.ld(new A.lV(new A.q(r.a+-q,r.b+-o),B.u5))}n=m.k2.i(0,a) +r=m.fy +if(r!=null)k=n==null||Math.abs(k-n)>1e-10 +else k=!1 +if(k){p=A.Nm(l) +l=p.a +k=p.b +a.ld(new A.lV(new A.q(r.a+-l,r.b+-k),B.cZ))}}} +A.a4d.prototype={ +$1(a){var s=this.a +if(!s.fr)return +s.fr=!1 +s.q9()}, +$S:2} +A.a4e.prototype={ +$2(a,b){return!this.a.q(0,a)}, +$S:104} +A.a4f.prototype={ +$2(a,b){return!this.a.q(0,a)}, +$S:104} +A.KK.prototype={ +aG(a){var s=this.e,r=new A.Kp(s,!0,this.r,null,A.au()) +r.aI() +r.saU(null) +s.Z(0,r.gIY()) +return r}, +aN(a,b){b.sY5(!0) +b.sbp(0,this.e) +b.sLe(this.r)}} +A.Kp.prototype={ +sbp(a,b){var s,r=this,q=r.A +if(b===q)return +s=r.gIY() +q.H(0,s) +r.A=b +b.Z(0,s) +r.b0()}, +sY5(a){return}, +sLe(a){if(a===this.au)return +this.au=a +this.b0()}, +e4(a){var s,r,q=this +q.fZ(a) +a.a=!0 +if(q.A.ay){a.b2(B.FZ,!0) +s=q.A +r=s.at +r.toString +a.bL=r +a.d=!0 +r=s.Q +r.toString +a.W=r +s=s.z +s.toString +a.a_=s +a.sL9(q.au)}}, +nc(a,b,c){var s,r,q,p,o,n,m,l=this +if(c.length!==0){s=B.b.gG(c).dx +s=!(s!=null&&s.q(0,B.uj))}else s=!0 +if(s){l.bG=null +l.AW(a,b,c) +return}s=l.bG +if(s==null)s=l.bG=A.EN(null,l.gme()) +s.syd(a.at||a.as) +s.sar(0,a.w) +s=l.bG +s.toString +r=t.R +q=A.a([s],r) +p=A.a([],r) +for(s=c.length,o=null,n=0;n#"+A.bs(r)+"("+B.b.bf(q,", ")+")"}, +gu(a){return A.L(this.a,this.b,null,this.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.J(b)!==A.w(r))return!1 +if(b instanceof A.EE)if(b.a===r.a)if(b.b===r.b)s=b.d===r.d +else s=!1 +else s=!1 +else s=!1 +return s}} +A.Y7.prototype={ +$2(a,b){if(b!=null)this.a.push(a+b.j(0))}, +$S:363} +A.QC.prototype={ +vH(a,b){switch(b.a){case 0:return a.a +case 1:return a.b}}, +WI(a,b){switch(b.a){case 0:return a.a +case 1:return a.b}}, +LC(a){var s=this,r=s.a.gH0() +s.d=a.ae(0,r.a,r.b) +if(s.e)return +s.kQ()}, +kQ(){var s=0,r=A.Y(t.H),q,p=this,o,n,m,l,k,j,i,h,g,f,e,d,c +var $async$kQ=A.Z(function(a,b){if(a===1)return A.V(b,r) +while(true)switch(s){case 0:d=p.a +c=d.c.ga2() +c.toString +t.x.a(c) +o=c.bs(0,null) +c=c.k3 +n=A.es(o,new A.C(0,0,0+c.a,0+c.b)) +c=p.e=!0 +m=d.gH0() +o=n.a +l=n.b +k=p.vH(new A.q(o+m.a,l+m.b),A.b8(d.a.c)) +j=k+p.WI(new A.S(n.c-o,n.d-l),A.b8(d.a.c)) +l=p.d +l===$&&A.c() +i=p.vH(new A.q(l.a,l.b),A.b8(d.a.c)) +l=p.d +h=p.vH(new A.q(l.c,l.d),A.b8(d.a.c)) +switch(d.a.c.a){case 0:case 3:if(h>j){o=d.d +l=o.at +l.toString +o=o.z +o.toString +o=l>o}else o=!1 +if(o){g=Math.min(h-j,20) +o=d.d +l=o.z +l.toString +o=o.at +o.toString +f=Math.max(l,o-g)}else{if(io}else o=!1 +if(o){g=Math.min(k-i,20) +o=d.d +l=o.z +l.toString +o=o.at +o.toString +f=Math.max(l,o-g)}else{if(h>j){o=d.d +l=o.at +l.toString +o=o.Q +o.toString +o=l>>24&255)/255*q.gn(q))),r.gn(r)>>>16&255,r.gn(r)>>>8&255,r.gn(r)&255)) +return s}, +DL(a){var s,r,q,p=this +if(a){s=$.ae().b9() +r=p.c +q=p.r +s.sac(0,A.U(B.c.bd(255*((r.gn(r)>>>24&255)/255*q.gn(q))),r.gn(r)>>>16&255,r.gn(r)>>>8&255,r.gn(r)&255)) +s.sco(0,B.R) +s.shK(1) +return s}s=$.ae().b9() +r=p.b +q=p.r +s.sac(0,A.U(B.c.bd(255*((r.gn(r)>>>24&255)/255*q.gn(q))),r.gn(r)>>>16&255,r.gn(r)>>>8&255,r.gn(r)&255)) +return s}, +Vf(){return this.DL(!1)}, +Vc(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d=null +e.gpU() +switch(e.gpU().a){case 0:s=e.f +r=e.cy +r===$&&A.c() +q=new A.S(s,r) +s+=2*e.x +r=e.db.d +r.toString +p=e.dx +p=p===B.t||p===B.u +o=e.Q +n=new A.S(s,r-(p?o.gb3(o)+o.gb8(o):o.gcj())) +r=e.x +m=r+e.Q.a +o=e.cx +o===$&&A.c() +r=m-r +l=e.gpz() +k=new A.q(r,l) +j=k.T(0,new A.q(s,0)) +i=e.db.d +i.toString +p=e.dx +p=p===B.t||p===B.u +h=e.Q +p=p?h.gb3(h)+h.gb8(h):h.gcj() +g=new A.q(r+s,l+(i-p)) +f=o +break +case 1:s=e.f +r=e.cy +r===$&&A.c() +q=new A.S(s,r) +r=e.x +p=e.db.d +p.toString +o=e.dx +o=o===B.t||o===B.u +l=e.Q +o=o?l.gb3(l)+l.gb8(l):l.gcj() +n=new A.S(s+2*r,p-o) +o=e.f +p=e.x +m=b.a-o-p-e.Q.c +o=e.cx +o===$&&A.c() +p=m-p +r=e.gpz() +k=new A.q(p,r) +s=e.db.d +s.toString +l=e.dx +l=l===B.t||l===B.u +i=e.Q +g=new A.q(p,r+(s-(l?i.gb3(i)+i.gb8(i):i.gcj()))) +j=k +f=o +break +case 2:s=e.cy +s===$&&A.c() +q=new A.S(s,e.f) +s=e.db.d +s.toString +r=e.dx +r=r===B.t||r===B.u +p=e.Q +r=r?p.gb3(p)+p.gb8(p):p.gcj() +p=e.f +o=e.x +p+=2*o +n=new A.S(s-r,p) +r=e.cx +r===$&&A.c() +f=o+e.Q.b +o=e.gpz() +s=f-e.x +k=new A.q(o,s) +j=k.T(0,new A.q(0,p)) +l=e.db.d +l.toString +i=e.dx +i=i===B.t||i===B.u +h=e.Q +g=new A.q(o+(l-(i?h.gb3(h)+h.gb8(h):h.gcj())),s+p) +m=r +break +case 3:s=e.cy +s===$&&A.c() +q=new A.S(s,e.f) +s=e.db.d +s.toString +r=e.dx +r=r===B.t||r===B.u +p=e.Q +r=r?p.gb3(p)+p.gb8(p):p.gcj() +p=e.f +o=e.x +n=new A.S(s-r,p+2*o) +r=e.cx +r===$&&A.c() +f=b.b-p-o-e.Q.d +o=e.gpz() +p=f-e.x +k=new A.q(o,p) +s=e.db.d +s.toString +l=e.dx +l=l===B.t||l===B.u +i=e.Q +g=new A.q(o+(s-(l?i.gb3(i)+i.gb8(i):i.gcj())),p) +j=k +m=r +break +default:g=d +j=g +k=j +n=k +q=n +f=q +m=f}s=k.a +r=k.b +e.ch=new A.C(s,r,s+n.a,r+n.b) +e.CW=new A.C(m,f,m+q.a,f+q.b) +s=e.r +if(s.gn(s)!==0){s=e.ch +s.toString +a.bK(s,e.Vf()) +a.hX(j,g,e.DL(!0)) +s=e.y +if(s!=null){r=e.CW +r.toString +a.cg(A.Wh(r,s),e.gDK()) +return}s=e.CW +s.toString +a.bK(s,e.gDK()) +return}}, +aC(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=g.dx +if(f!=null){s=g.db +if(s!=null){r=s.b +r.toString +s=s.a +s.toString +s=r<=s}else s=!0}else s=!0 +if(s)return +s=g.db.d +s.toString +f=f===B.t||f===B.u +r=g.Q +f=f?r.gb3(r)+r.gb8(r):r.gcj() +if(s-f-2*g.w<=0)return +f=g.db +s=f.b +s.toString +if(s==1/0||s==-1/0)return +f=f.gjY() +s=g.dx +s=s===B.t||s===B.u +r=g.Q +s=s?r.gb3(r)+r.gb8(r):r.gcj() +r=g.db +q=r.b +q.toString +p=r.a +p.toString +r=r.d +r.toString +o=g.dx +o=o===B.t||o===B.u +n=g.Q +o=o?n.gb3(n)+n.gb8(n):n.gcj() +m=A.O((f-s)/(q-p+r-o),0,1) +o=g.db.d +o.toString +f=g.dx +f=f===B.t||f===B.u +s=g.Q +f=f?s.gb3(s)+s.gb8(s):s.gcj() +f=Math.min(o-f-2*g.w,g.at) +o=g.db.d +o.toString +s=g.dx +s=s===B.t||s===B.u +r=g.Q +s=s?r.gb3(r)+r.gb8(r):r.gcj() +l=Math.max(f,(o-s-2*g.w)*m) +s=g.db.gjY() +o=g.db.d +o.toString +f=g.as +r=g.dx +r=r===B.t||r===B.u +q=g.Q +r=r?q.gb3(q)+q.gb8(q):q.gcj() +k=Math.min(f,o-r-2*g.w) +f=g.dx +f=f===B.u||f===B.Z +r=g.db +if((f?Math.max(r.gew()-r.gc6(),0):Math.max(r.gc6()-r.gex(),0))>0){f=g.dx +f=f===B.u||f===B.Z +r=g.db +r=(f?Math.max(r.gc6()-r.gex(),0):Math.max(r.gew()-r.gc6(),0))>0 +f=r}else f=!1 +j=f?k:k*(1-A.O(1-s/o,0,0.2)/0.2) +f=g.db.d +f.toString +s=g.dx +s=s===B.t||s===B.u +r=g.Q +s=s?r.gb3(r)+r.gb8(r):r.gcj() +s=A.O(l,j,f-s-2*g.w) +g.cy=s +f=g.db +r=f.b +r.toString +q=f.a +q.toString +i=r-q +if(i>0){r=f.c +r.toString +h=A.O((r-q)/i,0,1)}else h=0 +r=g.dx +q=r===B.u +p=q||r===B.Z?1-h:h +f=f.d +f.toString +r=r===B.t||q +q=g.Q +r=r?q.gb3(q)+q.gb8(q):q.gcj() +g.cx=p*(f-r-2*g.w-s)+g.gUh() +return g.Vc(a,b)}, +A_(a){var s,r,q,p,o=this,n=o.db,m=n.b +m.toString +s=n.a +s.toString +n=n.d +n.toString +r=o.dx +r=r===B.t||r===B.u +q=o.Q +r=r?q.gb3(q)+q.gb8(q):q.gcj() +q=o.w +p=o.cy +p===$&&A.c() +return(m-s)*a/(n-r-2*q-p)}, +nZ(a){var s,r,q=this +if(q.CW==null)return null +if(!q.ay){s=q.r +if(s.gn(s)!==0){s=q.db +r=s.a +r.toString +s=s.b +s.toString +s=r===s}else s=!0}else s=!0 +if(s)return!1 +return q.ch.q(0,a)}, +Ie(a,b,c){var s,r,q,p=this,o=p.ch +if(o==null)return!1 +if(p.ay)return!1 +s=p.db +r=s.a +r.toString +s=s.b +s.toString +if(r===s)return!1 +q=o.jX(A.k0(p.CW.gav(),24)) +s=p.r +if(s.gn(s)===0){if(c&&b===B.bt)return q.q(0,a) +return!1}switch(b.a){case 0:case 4:return q.q(0,a) +case 1:case 2:case 3:case 5:return o.q(0,a)}}, +a0v(a,b){return this.Ie(a,b,!1)}, +If(a,b){var s,r,q=this +if(q.CW==null)return!1 +if(q.ay)return!1 +s=q.r +if(s.gn(s)===0)return!1 +s=q.db +r=s.a +r.toString +s=s.b +s.toString +if(r===s)return!1 +switch(b.a){case 0:case 4:s=q.CW +return s.jX(A.k0(s.gav(),24)).q(0,a) +case 1:case 2:case 3:case 5:return q.CW.q(0,a)}}, +iw(a){var s,r=this +if(r.a.k(0,a.a))if(r.b.k(0,a.b))if(r.c.k(0,a.c))if(r.e==a.e)if(r.f===a.f)if(r.r===a.r)if(r.w===a.w)if(r.x===a.x)if(J.e(r.y,a.y))if(r.Q.k(0,a.Q))if(r.as===a.as)if(r.at===a.at)s=r.ay!==a.ay +else s=!0 +else s=!0 +else s=!0 +else s=!0 +else s=!0 +else s=!0 +else s=!0 +else s=!0 +else s=!0 +else s=!0 +else s=!0 +else s=!0 +return s}, +tI(a){return!1}, +goU(){return null}, +j(a){return"#"+A.bs(this)}} +A.Yg.prototype={ +$1(a){var s,r +if(a!=null){s=a.b +s.toString +r=a.a +r.toString +r=s>r +s=r}else s=!1 +return s}, +$S:364} +A.o3.prototype={ +aq(){return A.amw(t.Az)}, +jc(a){return this.cy.$1(a)}} +A.hA.prototype={ +gjB(){var s=this.a.d +return s}, +gkr(){var s=this.a.e +return s===!0}, +gEE(){if(this.gkr())this.a.toString +return!1}, +gjV(){this.a.toString +return!0}, +aM(){var s,r,q,p,o=this,n=null +o.bb() +s=A.d9(n,o.a.ch,n,n,o) +s.aX() +r=s.bT$ +r.b=!0 +r.a.push(o.gXH()) +o.x=s +s=o.y=A.eQ(B.an,s,n) +r=o.a +q=r.x +if(q==null)q=6 +p=r.w +r=r.dx +r=new A.uu(B.f5,B.H,B.H,n,q,s,0,0,p,n,B.aS,18,18,r,$.b7()) +s.a.Z(0,r.gdu()) +o.at!==$&&A.dj() +o.at=r}, +b4(){this.cR()}, +XI(a){if(a!==B.F)if(this.gjB()!=null)this.gjV()}, +oH(){var s,r=this,q=r.at +q===$&&A.c() +r.a.toString +q.sac(0,B.f5) +r.a.toString +q.sa2J(null) +if(r.gEE()){r.a.toString +s=B.xq}else s=B.H +q.sKd(s) +if(r.gEE()){r.a.toString +s=B.yp}else s=B.H +q.sKc(s) +s=r.c.aj(t.I) +s.toString +q.sbR(s.w) +s=r.a.x +q.szq(s==null?6:s) +q.sox(r.a.w) +r.a.toString +s=r.c +s.toString +s=A.cL(s,B.b9,t.w).w +q.sc2(0,s.f) +q.stv(r.a.dx) +r.a.toString +q.syn(0) +r.a.toString +q.sc_(0,null) +r.a.toString +q.sx4(0) +r.a.toString +q.syu(0,18) +r.a.toString +q.sJ4(18) +q.sIh(!r.gjV())}, +aQ(a){var s,r=this +r.bi(a) +s=r.a.e +if(s!=a.e){s=s===!0 +if(s){s=r.w +if(s!=null)s.aT(0) +s=r.x +s===$&&A.c() +s.z=B.a9 +s.js(1,B.ae,null)}else{s=r.x +s===$&&A.c() +s.ey(0)}}}, +Xu(a){var s,r,q,p,o,n=this,m=B.b.gc7(n.r.d),l=A.b_("primaryDeltaFromDragStart"),k=A.b_("primaryDeltaFromLastDragUpdate") +switch(m.w.a.c.a){case 0:s=a.b +l.b=n.d.b-s +k.b=n.e.b-s +break +case 1:s=a.a +l.b=s-n.d.a +k.b=s-n.e.a +break +case 2:s=a.b +l.b=s-n.d.b +k.b=s-n.e.b +break +case 3:s=a.a +l.b=n.d.a-s +k.b=n.e.a-s +break}s=n.at +s===$&&A.c() +r=l.ap() +q=n.f +q.toString +p=s.A_(r+q) +if(l.ap()>0){r=m.at +r.toString +r=pr}else r=!1 +else r=!0 +if(r){r=m.at +r.toString +p=r+s.A_(k.ap())}s=m.at +s.toString +if(p!==s){o=p-m.r.na(m,p) +s=n.c +s.toString +s=A.a8r(s) +r=n.c +r.toString +switch(s.jn(r)){case B.aV:case B.aW:case B.aJ:case B.aX:s=m.z +s.toString +r=m.Q +r.toString +o=A.O(o,s,r) +break +case B.al:case B.ak:break}m.ea(o)}}, +pI(){var s,r=this +if(!r.gkr()){s=r.w +if(s!=null)s.aT(0) +r.w=A.c8(r.a.CW,new A.Wz(r))}}, +jo(){var s=this.r.d +if(s.length!==0)return A.b8(B.b.gc7(s).ghR()) +return null}, +rf(){if(this.jo()==null)return +var s=this.w +if(s!=null)s.aT(0)}, +rh(a){var s,r,q,p,o,n,m=this +m.r=m.gjB() +if(m.jo()==null)return +s=m.w +if(s!=null)s.aT(0) +s=m.x +s===$&&A.c() +s.c5(0) +m.e=m.d=a +s=m.at +s===$&&A.c() +r=s.db +q=r.b +q.toString +p=r.a +p.toString +o=q-p +if(o>0){q=r.c +q.toString +n=A.O(q/o,0,1)}else n=0 +r=r.d +r.toString +q=s.dx +q=q===B.t||q===B.u +p=s.Q +q=q?p.gb3(p)+p.gb8(p):p.gcj() +p=s.w +s=s.cy +s===$&&A.c() +m.f=n*(r-q-2*p-s) +m.as=!0}, +a0h(a){var s,r=this +if(J.e(r.e,a))return +s=B.b.gc7(r.r.d) +if(!s.r.iv(s))return +if(r.jo()==null)return +r.Xu(a) +r.e=a}, +rg(a,b){var s=this +s.as=!1 +if(s.jo()==null)return +s.pI() +s.r=s.f=s.e=s.d=null}, +TR(a){var s,r,q,p,o,n=this,m=n.gjB() +n.r=m +s=B.b.gc7(m.d) +if(!s.r.iv(s))return +m=s.w +switch(m.a.c.a){case 0:case 2:r=n.at +r===$&&A.c() +r=r.cx +r===$&&A.c() +q=a.c.b>r?B.t:B.u +break +case 3:case 1:r=n.at +r===$&&A.c() +r=r.cx +r===$&&A.c() +q=a.c.a>r?B.aa:B.Z +break +default:q=null}m=$.at.a1$.z.i(0,m.z) +m.toString +p=A.hC(m) +p.toString +o=A.acM(p,new A.eB(q,B.hk)) +m=B.b.gc7(n.r.d) +r=B.b.gc7(n.r.d).at +r.toString +m.ol(0,r+o,B.jn,B.ay)}, +wa(a){var s,r,q=this.gjB() +if(q==null)return!0 +s=q.d +r=s.length +if(r>1)return!1 +return r===0||A.b8(B.b.gc7(s).ghR())===a}, +Wn(a){var s,r,q=this,p=q.a +p.toString +s=a.a +if(!p.jc(A.a8t(a.b,a.d7$,null,s,null)))return!1 +if(q.gkr()){p=q.x +p===$&&A.c() +r=p.Q +r===$&&A.c() +if(r!==B.ag&&r!==B.J)p.c5(0)}p=s.e +if(q.wa(A.b8(p))){r=q.at +r===$&&A.c() +r.dw(0,s,p)}return!1}, +Wp(a){var s,r,q,p=this +if(!p.a.jc(a))return!1 +s=a.a +r=s.b +r.toString +q=s.a +q.toString +if(r<=q){r=p.x +r===$&&A.c() +q=r.Q +q===$&&A.c() +if(q!==B.F&&q!==B.a6)r.ey(0) +r=s.e +if(p.wa(A.b8(r))){q=p.at +q===$&&A.c() +q.dw(0,s,r)}return!1}if(a instanceof A.eC||a instanceof A.hv){r=p.x +r===$&&A.c() +q=r.Q +q===$&&A.c() +if(q!==B.ag&&q!==B.J)r.c5(0) +r=p.w +if(r!=null)r.aT(0) +r=s.e +if(p.wa(A.b8(r))){q=p.at +q===$&&A.c() +q.dw(0,s,r)}}else if(a instanceof A.k4)if(p.d==null)p.pI() +return!1}, +gS2(){var s=this,r=A.y(t.n,t.ob) +if(s.gjB()==null||!s.gjV())return r +r.l(0,B.Mn,new A.ck(new A.Wv(s),new A.Ww(s),t.Fz)) +r.l(0,B.Mo,new A.ck(new A.Wx(s),new A.Wy(s),t.e_)) +return r}, +IC(a,b,c){var s,r=this.z +if($.at.a1$.z.i(0,r)==null)return!1 +s=A.a9d(r,a) +r=this.at +r===$&&A.c() +return r.Ie(s,b,!0)}, +xR(a){var s,r=this +if(r.IC(a.gbp(a),a.gc1(a),!0)){r.Q=!0 +s=r.x +s===$&&A.c() +s.c5(0) +s=r.w +if(s!=null)s.aT(0)}else if(r.Q){r.Q=!1 +r.pI()}}, +xS(a){this.Q=!1 +this.pI()}, +Eq(a){var s=A.b8(B.b.gc7(this.r.d).ghR())===B.aZ?a.gjp().a:a.gjp().b +return A.a63(B.b.gc7(this.r.d).w.a.c)?s*-1:s}, +Er(a){var s,r=B.b.gc7(this.r.d).at +r.toString +s=B.b.gc7(this.r.d).z +s.toString +s=Math.max(r+a,s) +r=B.b.gc7(this.r.d).Q +r.toString +return Math.min(s,r)}, +Wl(a){var s,r,q,p=this +p.r=p.gjB() +s=p.Eq(a) +r=p.Er(s) +if(s!==0){q=B.b.gc7(p.r.d).at +q.toString +q=r!==q}else q=!1 +if(q)B.b.gc7(p.r.d).yY(s)}, +Wr(a){var s,r,q,p,o=this +o.r=o.gjB() +s=o.at +s===$&&A.c() +s=s.nZ(a.gd_()) +if(s===!0){s=o.r +if(s!=null)if(s.d.length!==0)s=!0 +else s=!1 +else s=!1}else s=!1 +if(s){r=B.b.gc7(o.r.d) +if(t.xi.b(a)){if(!r.r.iv(r))return +q=o.Eq(a) +p=o.Er(q) +if(q!==0){s=r.at +s.toString +s=p!==s}else s=!1 +if(s)$.e3.R8$.JG(0,a,o.gWk())}else if(t.DR.b(a)){s=r.at +s.toString +r.ea(s)}}}, +m(){var s=this,r=s.x +r===$&&A.c() +r.m() +r=s.w +if(r!=null)r.aT(0) +r=s.at +r===$&&A.c() +r.r.a.H(0,r.gdu()) +r.dB() +s.Of()}, +N(a){var s,r,q=this,p=null +q.oH() +s=q.gS2() +r=q.at +r===$&&A.c() +return new A.cZ(q.gWm(),new A.cZ(q.gWo(),new A.fD(A.Cc(B.bk,new A.k_(A.tb(A.PJ(new A.fD(q.a.c,p),r,q.z,p),B.cg,p,new A.WA(q),new A.WB(q)),s,p,!1,p),p,p,p,q.gWq(),p),p),p,t.Bf),p,t.iY)}} +A.Wz.prototype={ +$0(){var s=this.a,r=s.x +r===$&&A.c() +r.ey(0) +s.w=null}, +$S:0} +A.Wv.prototype={ +$0(){var s=this.a,r=s.a.cx,q=t.S,p=A.cK(q),o=A.afE() +return new A.hV(s.z,r,null,B.b3,A.y(q,t.o),p,s,null,o,A.y(q,t.V))}, +$S:365} +A.Ww.prototype={ +$1(a){var s=this.a +a.p2=s.gI5() +a.p3=new A.Ws(s) +a.p4=new A.Wt(s) +a.RG=new A.Wu(s)}, +$S:366} +A.Ws.prototype={ +$1(a){return this.a.rh(a.b)}, +$S:367} +A.Wt.prototype={ +$1(a){return this.a.a0h(a.b)}, +$S:368} +A.Wu.prototype={ +$1(a){return this.a.rg(a.b,a.c)}, +$S:369} +A.Wx.prototype={ +$0(){var s=this.a,r=t.S,q=A.cK(r) +return new A.hW(s.z,B.ay,18,B.b3,A.y(r,t.o),q,s,null,A.a6P(),A.y(r,t.V))}, +$S:370} +A.Wy.prototype={ +$1(a){a.W=this.a.gTQ()}, +$S:371} +A.WA.prototype={ +$1(a){var s +switch(a.gc1(a).a){case 1:case 4:s=this.a +if(s.gjV())s.xS(a) +break +case 2:case 3:case 5:case 0:break}}, +$S:46} +A.WB.prototype={ +$1(a){var s +switch(a.gc1(a).a){case 1:case 4:s=this.a +if(s.gjV())s.xR(a) +break +case 2:case 3:case 5:case 0:break}}, +$S:372} +A.hV.prototype={ +f6(a){if(!this.vt(this.cu,a.gbp(a),a.gc1(a)))return!1 +return this.MP(a)}, +vt(a,b,c){var s +if($.at.a1$.z.i(0,a)==null)return!1 +s=$.at.a1$.z.i(0,a).f +s.toString +s=t.sK.a(s).f +s.toString +return t.o1.a(s).If(A.a9d(a,b),c)}} +A.hW.prototype={ +f6(a){if(!this.vt(this.fz,a.gbp(a),a.gc1(a)))return!1 +return this.O_(a)}, +vt(a,b,c){var s,r +if($.at.a1$.z.i(0,a)==null)return!1 +s=$.at.a1$.z.i(0,a).f +s.toString +s=t.sK.a(s).f +s.toString +t.o1.a(s) +r=A.a9d(a,b) +return s.a0v(r,c)&&!s.If(r,c)}} +A.po.prototype={ +c8(){this.dV() +this.d4() +this.eN()}, +m(){var s=this,r=s.b_$ +if(r!=null)r.H(0,s.gem()) +s.b_$=null +s.aW()}} +A.nR.prototype={ +B(a,b){this.Q.B(0,b) +this.Ej()}, +v(a,b){var s,r,q=this +if(q.Q.v(0,b))return +s=B.b.ka(q.b,b) +B.b.fc(q.b,s) +r=q.c +if(s<=r)q.c=r-1 +r=q.d +if(s<=r)q.d=r-1 +b.H(0,q.gvo()) +q.Ej()}, +Ej(){if(!this.y){this.y=!0 +$.bK.cx$.push(new A.UR(this))}}, +RW(){var s,r,q,p,o,n,m,l,k=this,j=k.Q,i=A.aw(j,!0,A.m(j).c) +B.b.ei(i,k.guE()) +s=k.b +k.b=A.a([],t.E1) +r=k.d +q=k.c +j=k.gvo() +p=0 +o=0 +while(!0){n=i.length +if(!(pMath.min(n,l))k.qW(m) +m.Z(0,j) +B.b.B(k.b,m);++p}}k.c=q +k.d=r +k.Q=A.az(t.yu)}, +xe(){this.q9()}, +q9(){var s=this,r=s.KX() +if(!s.at.k(0,r)){s.at=r +s.ao()}s.Xi()}, +gYV(){return this.guE()}, +QC(a,b){var s=A.es(a.bs(0,null),new A.C(0,0,0+a.geh(a).a,0+a.geh(a).b)),r=A.es(b.bs(0,null),new A.C(0,0,0+b.geh(b).a,0+b.geh(b).b)),q=A.alz(s,r) +if(q!==0)return q +return A.aly(s,r)}, +TA(){if(this.x)return +this.q9()}, +KX(){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null,f=h.c +if(f===-1||h.d===-1||h.b.length===0)return new A.k6(g,g,B.c1,h.b.length!==0) +if(!h.as){f=h.Bk(h.d,f) +h.d=f +h.c=h.Bk(h.c,f)}s=J.j9(h.b[h.d]) +f=h.c +r=h.d +q=f>=r +while(!0){if(!(r!==h.c&&s.a==null))break +r+=q?1:-1 +s=J.j9(h.b[r])}f=s.a +if(f!=null){p=h.b[r] +o=h.a.ga2() +o.toString +n=A.cf(p.bs(0,t.x.a(o)),f.a) +m=isFinite(n.a)&&isFinite(n.b)?new A.lW(n,f.b,f.c):g}else m=g +l=J.j9(h.b[h.c]) +k=h.c +while(!0){if(!(k!==h.d&&l.b==null))break +k+=q?-1:1 +l=J.j9(h.b[k])}f=l.b +if(f!=null){p=h.b[k] +o=h.a.ga2() +o.toString +j=A.cf(p.bs(0,t.x.a(o)),f.a) +i=isFinite(j.a)&&isFinite(j.b)?new A.lW(j,f.b,f.c):g}else i=g +return new A.k6(m,i,!s.k(0,l)?B.hn:s.c,!0)}, +Bk(a,b){var s=b>a +while(!0){if(!(a!==b&&J.j9(this.b[a]).c!==B.hn))break +a+=s?1:-1}return a}, +hx(a,b){return}, +Xi(){var s,r=this,q=null,p=r.e,o=r.r,n=r.d +if(n===-1||r.c===-1){n=r.f +if(n!=null){n.hx(q,q) +r.f=null}n=r.w +if(n!=null){n.hx(q,q) +r.w=null}return}if(!J.e(r.b[n],r.f)){n=r.f +if(n!=null)n.hx(q,q)}if(!J.e(r.b[r.c],r.w)){n=r.w +if(n!=null)n.hx(q,q)}n=r.b +s=r.d +n=r.f=n[s] +if(s===r.c){r.w=n +n.hx(p,o) +return}n.hx(p,q) +n=r.b[r.c] +r.w=n +n.hx(q,o)}, +a04(a){var s,r,q,p=this +for(s=p.b,r=s.length,q=0;q")).P(0,new A.UT(o)) +o.d=o.c=s}return B.af}}return B.c0}, +a_r(a){var s,r,q,p=this +for(s=p.b,r=s.length,q=0;q0&&r===B.aI))break;--s +r=p.e5(p.b[s],a)}if(a.gfD())p.c=s +else p.d=s +return r}, +a_t(a){var s,r,q,p=this +if(p.d===-1)switch(a.gHa(a)){case B.ef:case B.d0:p.d=p.c=p.b.length +break +case B.eg:case B.d_:p.d=p.c=0 +break}s=a.gfD()?p.c:p.d +r=p.e5(p.b[s],a) +switch(a.gHa(a)){case B.ef:if(r===B.aI)if(s>0){--s +r=p.e5(p.b[s],a.Ze(B.d0))}break +case B.eg:if(r===B.aH){q=p.b +if(s=0&&n==null))break +r=o.b=q.e5(s[p],a) +switch(r.a){case 2:case 3:case 4:n=r +break +case 0:if(m===!1){++p +n=B.af}else if(p===q.b.length-1)n=r +else{++p +m=!0}break +case 1:if(m===!0){--p +n=B.af}else if(p===0)n=r +else{--p +m=!1}break}}if(b)q.c=p +else q.d=p +n.toString +return n}, +YW(a,b){return this.gYV().$2(a,b)}} +A.UR.prototype={ +$1(a){var s=this.a +if(!s.y)return +s.y=!1 +if(s.Q.a!==0)s.RW() +s.xe()}, +$S:2} +A.US.prototype={ +$1(a){return a!==this.a.b[this.b]}, +$S:374} +A.UT.prototype={ +$1(a){return this.a.e5(a,B.xm)}, +$S:35} +A.J8.prototype={} +A.uz.prototype={ +aq(){return new A.KR(A.az(t.O),null,!1,B.m)}} +A.KR.prototype={ +aM(){var s,r,q,p=this +p.bb() +s=p.a +r=s.e +q=p.c +q.toString +r.a=q +p.soy(s.c)}, +aQ(a){var s,r,q,p,o,n=this +n.bi(a) +s=a.e +if(s!==n.a.e){s.a=null +r=n.d +r.P(0,s.gJK(s)) +q=n.a.e +p=n.c +p.toString +q.a=p +r.P(0,q.gqf(q)) +s=s.at +q=n.a.e.at +if(!s.k(0,q))for(s=A.dV(r,r.r),r=A.m(s).c;s.t();){o=s.d;(o==null?r.a(o):o).$0()}}s=n.a +n.soy(s.c)}, +b4(){this.cR() +this.a.toString}, +Z(a,b){this.a.e.Z(0,b) +this.d.B(0,b)}, +H(a,b){this.a.e.H(0,b) +this.d.v(0,b)}, +hx(a,b){this.a.e.hx(a,b)}, +ld(a){return this.a.e.ld(a)}, +gn(a){var s=this.a +return s.e.at}, +bs(a,b){return this.c.ga2().bs(0,b)}, +geh(a){var s=this.c.ga2() +s.toString +s=t.x.a(s).k3 +s.toString +return s}, +m(){var s=this.a.e +s.a=null +this.d.P(0,s.gJK(s)) +this.Pd()}, +N(a){var s=this.a,r=s.e +return A.acO(s.d,r)}, +$ia7:1} +A.uB.prototype={ +bO(a){return a.f!=this.f}} +A.EI.prototype={$ia7:1} +A.MO.prototype={} +A.yb.prototype={ +m(){this.Es() +this.aW()}} +A.uF.prototype={ +aq(){return new A.KY(B.m)}} +A.KY.prototype={ +N(a){var s=this.a.c,r=this.d +return new A.KZ(r===$?this.d=A.y(t.K,t.X):r,s,null)}} +A.KZ.prototype={ +bO(a){return this.x!==a.x}, +Ko(a,b){var s,r,q,p +for(s=b.gX(b),r=this.x,q=a.x;s.t();){p=s.gC(s) +if(!J.e(r.i(0,p),q.i(0,p)))return!0}return!1}} +A.af.prototype={$im1:1} +A.mj.prototype={} +A.ol.prototype={ +siu(a){var s=this +if(!A.a6G(s.b,a)){s.b=a +s.c=null +s.ao()}}, +gD6(){var s=this.c +return s==null?this.c=A.an1(this.b):s}, +RL(a,b){var s,r,q,p,o,n,m,l,k=this.gD6().i(0,a.c.goe()),j=this.gD6().i(0,null),i=A.a([],t.kv) +if(k!=null)B.b.I(i,k) +if(j!=null)B.b.I(i,j) +for(s=i.length,r=a instanceof A.hz,q=b.d,p=0;p").ab(h.h("dG<1,2>")).h("iW<1,2>"),h=A.aw(new A.iW(i,h),!0,h.h("j.E")),g=h.length,f=t.ub,e=a1.p1,d=0;d").ab(g.h("dG<1,2>")).h("iW<1,2>")).P(0,p) +if(!a2.a&&a1.R8){a0=i.IR() +k=a0==null?-1:a0 +j=k+1 +J.fY(s,j,i.i(0,j)) +p.$1(j)}}finally{a1.p4=null +a1.ga2()}}, +Zu(a,b){this.r.qt(this,new A.Z0(this,b,a))}, +dz(a,b,c){var s,r,q,p,o=null +if(a==null)s=o +else{s=a.ga2() +s=s==null?o:s.e}r=t.ub +r.a(s) +q=this.Mv(a,b,c) +if(q==null)p=o +else{p=q.ga2() +p=p==null?o:p.e}r.a(p) +if(s!=p&&s!=null&&p!=null)p.a=s.a +return q}, +iZ(a){this.p2.v(0,a.d) +this.kx(a)}, +JJ(a){var s,r=this +r.ga2() +s=a.e +s.toString +s=t.D.a(s).b +s.toString +r.r.qt(r,new A.Z4(r,s))}, +a_5(a,b,c,d,e){var s=this.f +s.toString +t.v0.a(s) +d.toString +s=A.an8(b,c,d,e,5) +return s}, +xh(){var s=this.p2 +s.a_g() +s.IR() +s=this.f +s.toString +t.v0.a(s)}, +xc(a){var s=a.e +s.toString +t.D.a(s).b=this.p4}, +j5(a,b){this.ga2().tV(0,t.x.a(a),this.p3)}, +jb(a,b,c){this.ga2().rD(t.x.a(a),this.p3)}, +kk(a,b){this.ga2().v(0,t.x.a(a))}, +aR(a){var s=this.p2,r=s.$ti +r=r.h("@<1>").ab(r.z[1]).h("mt<1,2>") +r=A.bt(new A.mt(s,r),r.h("j.E"),t.h) +B.b.P(A.aw(r,!0,A.m(r).h("j.E")),a)}} +A.Z3.prototype={ +$1(a){var s,r,q,p,o=this,n=o.b +n.p4=a +q=n.p2 +if(q.i(0,a)!=null&&!J.e(q.i(0,a),o.c.i(0,a))){q.l(0,a,n.dz(q.i(0,a),null,a)) +o.a.a=!0}s=n.dz(o.c.i(0,a),o.d.d.Gf(n,a),a) +if(s!=null){p=o.a +p.a=p.a||!J.e(q.i(0,a),s) +q.l(0,a,s) +q=s.ga2().e +q.toString +r=t.D.a(q) +if(a===0)r.a=0 +else{q=o.e +if(q.a3(0,a))r.a=q.i(0,a)}if(!r.c)n.p3=t.av.a(s.ga2())}else{o.a.a=!0 +q.v(0,a)}}, +$S:32} +A.Z1.prototype={ +$0(){return null}, +$S:9} +A.Z2.prototype={ +$0(){return this.a.p2.i(0,this.b)}, +$S:378} +A.Z0.prototype={ +$0(){var s,r,q,p=this,o=p.a +o.p3=p.b==null?null:t.av.a(o.p2.i(0,p.c-1).ga2()) +s=null +try{q=o.f +q.toString +r=t.v0.a(q) +q=o.p4=p.c +s=o.dz(o.p2.i(0,q),r.d.Gf(o,q),q)}finally{o.p4=null}q=p.c +o=o.p2 +if(s!=null)o.l(0,q,s) +else o.v(0,q)}, +$S:0} +A.Z4.prototype={ +$0(){var s,r,q,p=this +try{r=p.a +q=r.p4=p.b +s=r.dz(r.p2.i(0,q),null,q)}finally{p.a.p4=null}p.a.p2.v(0,p.b)}, +$S:0} +A.rJ.prototype={ +qp(a){var s,r,q=a.e +q.toString +t.fl.a(q) +s=this.f +if(q.nQ$!==s){q.nQ$=s +r=a.c +if(r instanceof A.z&&!s)r.a7()}}} +A.F6.prototype={ +D(){return"SnapshotMode."+this.b}} +A.uR.prototype={ +sqn(a){return}} +A.F8.prototype={ +aG(a){var s=new A.pq(A.cL(a,B.eD,t.w).w.b,this.w,this.e,this.f,!0,null,A.au()) +s.aI() +s.saU(null) +return s}, +aN(a,b){t.Ex.a(b) +b.sZ6(0,this.e) +b.sa1u(0,this.f) +b.sla(0,A.cL(a,B.eD,t.w).w.b) +b.srQ(this.w) +b.sYh(!0)}} +A.pq.prototype={ +sla(a,b){var s,r=this +if(b===r.A)return +r.A=b +s=r.cY +if(s==null)return +else{s.m() +r.cY=null +r.aB()}}, +srQ(a){var s,r=this,q=r.a6 +if(a===q)return +s=r.geb() +q.H(0,s) +r.a6=a +if(A.w(q)!==A.w(r.a6)||r.a6.iw(q))r.aB() +if(r.b!=null)r.a6.Z(0,s)}, +sZ6(a,b){var s,r=this,q=r.au +if(b===q)return +s=r.gpN() +q.H(0,s) +r.au=b +if(r.b!=null)b.Z(0,s)}, +sa1u(a,b){if(b===this.bG)return +this.bG=b +this.aB()}, +sYh(a){return}, +ak(a){var s=this +s.au.Z(0,s.gpN()) +s.a6.Z(0,s.geb()) +s.mo(a)}, +ag(a){var s,r=this +r.fA=!1 +r.au.H(0,r.gpN()) +r.a6.H(0,r.geb()) +s=r.cY +if(s!=null)s.m() +r.hk=r.cY=null +r.kC(0)}, +m(){var s,r=this +r.au.H(0,r.gpN()) +r.a6.H(0,r.geb()) +s=r.cY +if(s!=null)s.m() +r.hk=r.cY=null +r.iy()}, +V1(){var s,r=this +r.fA=!1 +s=r.cY +if(s!=null)s.m() +r.hk=r.cY=null +r.aB()}, +aC(a,b){var s,r=this,q=r.k3 +if(q.gS(q)){q=r.cY +if(q!=null)q.m() +r.hk=r.cY=null +return}q=r.cY +if(q!=null)q.m() +r.hk=r.cY=null +q=r.a6 +s=r.k3 +s.toString +q.rO(a,b,s,A.fC.prototype.gkh.call(r)) +return}} +A.F7.prototype={} +A.Ho.prototype={ +H(a,b){}, +$ia7:1} +A.Fr.prototype={ +aG(a){var s=new A.Ef(new A.r9(new WeakMap()),A.az(t.eI),A.y(t.X,t.en),B.bk,null,A.au()) +s.aI() +s.saU(null) +return s}, +aN(a,b){}} +A.Ef.prototype={ +bM(a,b){var s,r,q=this +if(!q.k3.q(0,b))return!1 +s=q.d9(a,b)||q.A===B.ap +if(s){r=new A.mT(b,q) +q.cI.l(0,r,a) +a.B(0,r)}return s}, +i4(a,b){var s,r,q,p,o,n,m,l,k=this +if(!t.Y.b(a)||a.gcG(a)!==1)return +s=k.es +if(s.a===0)return +A.Ba(b) +r=k.cI.a.get(b) +if(r==null)return +q=k.Sd(s,r.a) +p=t.eI +o=A.YL(q,q.gpL(),A.m(q).c,p).Qy() +n=A.az(p) +for(q=o.gX(o),p=k.cA;q.t();){m=q.gC(q) +m.gL2(m) +m=p.i(0,m.gL2(m)) +m.toString +n.I(0,m)}l=s.jU(n) +for(s=l.gX(l);s.t();)s.gC(s).ga3C().$1(a) +for(s=A.dV(n,n.r),q=A.m(s).c;s.t();){p=s.d;(p==null?q.a(p):p).ga3B().$1(a)}}, +Sd(a,b){var s,r,q,p,o=A.az(t.kZ) +for(s=b.length,r=this.es,q=0;q0){f=Math.sqrt(g+1) +s=a1.a +s[3]=f*0.5 +f=0.5/f +s[0]=(i[5]-i[7])*f +s[1]=(i[6]-i[2])*f +s[2]=(i[1]-i[3])*f}else{if(s)","~(b1)","~(E?)","aM(@)","aM()","~(u,@)","~(aE)","~(nW,q)","D(cu)","~(c3?)","B()","D(o)","aM(~)","D(hd)","~(hb)","D(h4,q)","D(ir)","~(D)","D(E?)","~(@)","l(ao)","o(cu,cu)","D(d6?)","~(z)","D(b1)","~(dd,~())","@()","~(o)","u()","~(~())","~(d1)","D(dB)","bd?(b4?)","ad<~>()","~(lx)","D(d6)","D(fo)","D(u)","D(eq)","o(z,z)","h6(@)","~(jX)","aM(E,cP)","br<0^>()","hH(br)","D()","~(jW)","~(iv)","o()","aM(D)","@(@)","ad<@>(hr)","o(bP,bP)","D(bP)","Q(Q)","D(lT)","~(E,cP)","D(@)","~(E?,E?)","~(ov)","bd?(b4?)","u(ln)","hg(ao)","l(ao)?(mD?)","b()","D(e5)","dU(fH)","B(fT)","fO()","~(B)","~(kb)","D(h4)","ad()","~({curve:eP,descendant:z?,duration:aQ,rect:C?})","fN(aE)","o(cF,cF)","u(o)","ad<~>(hr)","~(ep)","lj()","~(bb)","ad()","~(fm,D)","ad()","el()","~(cn)","kt(ao,ca,l?)","@(u)","ks(ao,ca,l?)","~(dz)","hO?(o)","av(@)","e5()","o(o)","~(lb)","~(Q)","~(ow)","b(b)","A(A)","D(d1,Q)","ay()","C()","jr(@)","~(fl)","jc(@)","bd?(b4?)","jE(cu,fA)","l(ao,l?)","~(hL,u,o)","~(u,u)","E?(E?)","iP()","o(@,@)","o(E?)","S(G,aI)","ad(c3?)","B()","fl()","av<@>?(av<@>?,@,av<@>(@))","u(u)","~(ha)","~(@,@)","~(em)","~(fO)","i9(@)","b([b?])","cQ?()","cQ()","ne(u)","ad<~>(~)","~(ir)","u(u,A)","~(K)","u(cz)","p6()","~(tL)","D(D)","D(hy)","cE?(hy)","u(Q)","~(pu)","ay<~(aE),aS?>()","~(~(aE),aS?)","~(oR)","mc({from:Q?})","ad<~>([b?])","nO(C?,C?)","l(ao,~())","hL(@,@)","lo<0^>(fG,l(ao))","~(o,o,o)","~(dB)","Q()","Q(iQ)","o5?(zh,u,u)","0^?(0^?(b4?))","0^?(bd<0^>?(b4?))","~(u,u?)","bd?(b4?)","o(o,o)","bd?(b4?)","~(u,o?)","bd?(b4?)","bd?(b4?)","cv?(br)","cv?(b4?)","A?(br)","A?(b4?)","iM?(b4?)","lq?(b4?)","aQ?(b4?)","D?(b4?)","dZ?(b4?)","nw?(b4?)","D(A?)","ad()","~(u,o)","bD?(br)","~([E?])","C()?(G)","D(ao)","~([aD?])","~(jt)","~(m8,@)","ai<@>(@)","~(o,@)","aM(@,cP)","D(jz?)","A(kl)","D(er)","B()","aM(~())","m0(@)","bb(bb)","@(@,u)","it?(cQ)","o(jR)","i1(ao,l?)","mW(cp)","D(br)","Q(br)","mb(@)","f0()","bb>(E,hK<@>)","D(bb>)","~(dt)","ad(hL{allowUpscaling:D,cacheHeight:o?,cacheWidth:o?})","ad(jy{allowUpscaling:D,cacheHeight:o?,cacheWidth:o?})","ad(jy{getTargetSize:anr(o,o)?})","bU(bU,bw)","bw(bw)","u(bw)","ad<~>(b,b)","pf()","~(fm?,D)","ad<~>(E,cP?)","S(b)","aM(Of)","D(eL)","~(B,b)","~(E,cP?)?(ep)","~(e0)","~(S)","D(o,D)","Q(@)","~(a8v)","u(Q,Q,u)","S()","Q?()","cv(iq)","~(iq,aS)","D(iq)","~(u?)","~(B{isMergeUp:D})","~(nb?,oz?)","aM(mf)","~(u,b)","qi(B)","~(iV)","D(iV)","D(oo{crossAxisPosition!Q,mainAxisPosition!Q})","~(u)","~(jI,o)","D(G)","fk(q)","D(cm)","~(fq)","~(o,p4)","~(o,c0,c3?)","~(hx)","bP(iY)","ad(b)","js(hx)","o(bP)","bP(o)","~(lX)","c3(c3?)","eL(ay)","iD()","ad(u?)","nI(cp)","ad<~>(c3?,~(c3?))","ad>(@)","~(fA)","np(cp)","dt(jk)","oA(cp)","ox(cp)","nE(cp)","B()","B(B)","Q(bH)","B<@>(u)","D(uY,dt)","oh(cp)","~(bf)","c7<@>?(fG)","c7<@>(fG)","D(nB)","~(hF)","fk()","ad<~>(@)","ns(cp)","D(rL)","~(p2)","D(p_)","pn()","D(kf)","br(cF)","ml()","B(ao)","C(cF)","o(hR,hR)","B(cF,j)","D(cF)","b1?(b1)","E?(o,b1?)","ea()","~(ea)","fg()","~(fg)","e8()","~(e8)","~(j)","~(B,b)","D(o,o)","~(o,D(hd))","fw()","~(fw)","fj()","~(fj)","~(ix)","~(iz)","~(f_,E)","lM(ao,l?)","~(iT)","l(ao,ca,nm,ao,ao)","D(iT)","lt(ao,l?)","li(ao)","aM(E?)","~(b,b)","~(b?)","ad(u,ay)","kR(@)","ls(@)","ma(@)","kP(@)","ad<@>(pm)","ay(B<@>)","ay(ay)","aM(ay)","aM(u)","D(c7<@>?)","D(is)","o(kr,kr)","o(jS,jS)","d6(c7<@>)","bb>(@,@)","E()","n_(ao,l?)","aM(cn?)","~(dd)","c1(D)","k3(ao,l?)","i1(ao)","hh(ao,l?)","lg(aE)","nL(aE)","D(A)","ot()","~(S?)","l(ao,iL)","D(eC)","aM(B<~>)","~(ib)","u?(u)","aM(B,b)","~(u,E?)","D(iA?)","hV()","~(hV)","~(nK)","~(rX)","~(nJ)","hW()","~(hW)","~(iw)","o(d1,d1)","D(d1)","~(m1,aD)","B()","~(G)","b1?()","u(u,u)","b?(b)","u(E?)","D(E?,E?)","o(bX<@>,bX<@>)","B()","B(u,B)","S?(S?,S?,Q)","Q?(bH?,bH?,Q)","A?(A?,A?,Q)","~(bu{forceReport:D})","fJ?(u)","Q(Q,Q,Q)","D?(D?,D?,Q)","cC?(cC?,cC?,Q)","bU?(bU?,bU?,Q)","k?(k?,k?,Q)","o(Lv<@>,Lv<@>)","D({priority!o,scheduler!de})","u(c3)","oT(c3)","B(u)","o(b1,b1)","cd(cd?,cd?,Q)","B>(hs,u)","o(l,o)","~(u?{wrapWidth:o?})","tT()"],interceptorsByTag:null,leafTags:null,arrayRti:Symbol("$ti"),rttc:{"2;cacheSize,maxTextLength":(a,b)=>c=>c instanceof A.mq&&a.b(c.a)&&b.b(c.b),"2;key,value":(a,b)=>c=>c instanceof A.wO&&a.b(c.a)&&b.b(c.b),"3;breaks,graphemes,words":(a,b,c)=>d=>d instanceof A.wP&&a.b(d.a)&&b.b(d.b)&&c.b(d.c),"3;large,medium,small":(a,b,c)=>d=>d instanceof A.wQ&&a.b(d.a)&&b.b(d.b)&&c.b(d.c)}} +A.aoE(v.typeUniverse,JSON.parse('{"Dv":"jG","hM":"jG","hm":"jG","asj":"b","asX":"b","asW":"b","asl":"je","ask":"N","ath":"N","atD":"N","atd":"a8","asm":"a9","atf":"a9","at5":"aZ","asR":"aZ","au2":"dQ","aso":"h5","atL":"h5","at6":"lf","asy":"bz","asA":"fd","asC":"dP","asD":"dJ","asz":"dJ","asB":"dJ","ql":{"e0":[]},"dM":{"dD":["1"]},"dc":{"cN":[]},"mW":{"eA":[]},"np":{"eA":[]},"ns":{"eA":[]},"nE":{"eA":[]},"nI":{"eA":[]},"oh":{"eA":[]},"ox":{"eA":[]},"oA":{"eA":[]},"js":{"U4":[]},"DK":{"dt":[]},"zs":{"bS":[]},"zT":{"bS":[]},"zR":{"bS":[]},"zY":{"bS":[]},"zV":{"bS":[]},"zS":{"bS":[]},"zX":{"bS":[]},"zv":{"bS":[]},"zu":{"bS":[]},"zt":{"bS":[]},"zz":{"bS":[]},"zB":{"bS":[]},"zG":{"bS":[]},"zF":{"bS":[]},"zx":{"bS":[]},"zA":{"bS":[]},"zw":{"bS":[]},"zD":{"bS":[]},"zH":{"bS":[]},"zy":{"bS":[]},"zC":{"bS":[]},"zE":{"bS":[]},"zU":{"bS":[]},"EX":{"bm":[]},"rY":{"dM":["b"],"dD":["b"]},"td":{"j":["ft"],"j.E":"ft"},"BR":{"cX":[]},"pO":{"rk":[]},"zq":{"dM":["b"],"dD":["b"],"e0":[]},"n3":{"e6":[]},"Ek":{"e6":[]},"A1":{"e6":[],"Ph":[]},"A3":{"e6":[],"Pj":[]},"A2":{"e6":[],"Pi":[]},"CX":{"e6":[],"Vg":[]},"vi":{"e6":[],"FM":[]},"CW":{"e6":[],"FM":[],"Vf":[]},"Dt":{"e6":[]},"zM":{"dM":["b"],"dD":["b"]},"mX":{"dM":["b"],"dD":["b"]},"zI":{"jl":[],"dM":["b"],"dD":["b"]},"mY":{"dM":["b"],"dD":["b"]},"qn":{"dM":["b"],"dD":["b"]},"jl":{"dM":["b"],"dD":["b"]},"zJ":{"jl":[],"dM":["b"],"dD":["b"]},"zK":{"jl":[],"dM":["b"],"dD":["b"]},"zL":{"U4":[]},"zi":{"bm":[]},"BP":{"abt":[]},"BN":{"cX":[]},"BM":{"cX":[]},"d5":{"j":["1"],"j.E":"1"},"iR":{"j":["1"],"j.E":"1"},"tE":{"dc":[],"cN":[],"Pj":[]},"Dn":{"dc":[],"cN":[],"Pi":[]},"tD":{"dc":[],"cN":[],"Ph":[]},"tF":{"dc":[],"cN":[],"Vf":[]},"tG":{"dc":[],"cN":[],"Vg":[]},"Dq":{"cN":[]},"qS":{"c6":[]},"tz":{"c6":[]},"Df":{"c6":[]},"Dj":{"c6":[]},"Dh":{"c6":[]},"Dg":{"c6":[]},"Di":{"c6":[]},"D3":{"c6":[]},"D2":{"c6":[]},"D1":{"c6":[]},"D7":{"c6":[]},"D9":{"c6":[]},"Dd":{"c6":[]},"Dc":{"c6":[]},"D5":{"c6":[]},"D8":{"c6":[]},"D4":{"c6":[]},"Db":{"c6":[]},"De":{"c6":[]},"D6":{"c6":[]},"Da":{"c6":[]},"tH":{"dc":[],"cN":[]},"Dp":{"cN":[]},"tI":{"dc":[],"cN":[],"FM":[]},"BJ":{"e0":[]},"BI":{"e0":[]},"uJ":{"rk":[]},"EQ":{"a8v":[]},"hX":{"R":["1"],"B":["1"],"P":["1"],"j":["1"]},"Ix":{"hX":["o"],"R":["o"],"B":["o"],"P":["o"],"j":["o"]},"FR":{"hX":["o"],"R":["o"],"B":["o"],"P":["o"],"j":["o"],"j.E":"o","R.E":"o","hX.E":"o"},"zp":{"os":[]},"El":{"os":[]},"AV":{"fq":[]},"B0":{"l7":[]},"B4":{"l7":[]},"rE":{"D":[],"bA":[]},"rG":{"aM":[],"bA":[]},"jG":{"b":[]},"v":{"B":["1"],"b":[],"P":["1"],"j":["1"],"aO":["1"],"j.E":"1"},"Ty":{"v":["1"],"B":["1"],"b":[],"P":["1"],"j":["1"],"aO":["1"],"j.E":"1"},"jC":{"Q":[],"bH":[],"bX":["bH"]},"nA":{"Q":[],"o":[],"bH":[],"bX":["bH"],"bA":[]},"rH":{"Q":[],"bH":[],"bX":["bH"],"bA":[]},"io":{"u":[],"bX":["u"],"aO":["@"],"bA":[]},"fP":{"j":["2"]},"kT":{"fP":["1","2"],"j":["2"],"j.E":"2"},"vY":{"kT":["1","2"],"fP":["1","2"],"P":["2"],"j":["2"],"j.E":"2"},"vF":{"R":["2"],"B":["2"],"fP":["1","2"],"P":["2"],"j":["2"]},"bR":{"vF":["1","2"],"R":["2"],"B":["2"],"fP":["1","2"],"P":["2"],"j":["2"],"j.E":"2","R.E":"2"},"i6":{"br":["2"],"fP":["1","2"],"P":["2"],"j":["2"],"j.E":"2"},"kU":{"aq":["3","4"],"ay":["3","4"],"aq.V":"4","aq.K":"3"},"i5":{"fP":["1","2"],"P":["2"],"j":["2"],"j.E":"2"},"ho":{"bm":[]},"jn":{"R":["o"],"B":["o"],"P":["o"],"j":["o"],"j.E":"o","R.E":"o"},"P":{"j":["1"]},"bn":{"P":["1"],"j":["1"]},"fL":{"bn":["1"],"P":["1"],"j":["1"],"j.E":"1","bn.E":"1"},"dN":{"j":["2"],"j.E":"2"},"l0":{"dN":["1","2"],"P":["2"],"j":["2"],"j.E":"2"},"aA":{"bn":["2"],"P":["2"],"j":["2"],"j.E":"2","bn.E":"2"},"b2":{"j":["1"],"j.E":"1"},"ie":{"j":["2"],"j.E":"2"},"m9":{"j":["1"],"j.E":"1"},"qX":{"m9":["1"],"P":["1"],"j":["1"],"j.E":"1"},"iB":{"j":["1"],"j.E":"1"},"nc":{"iB":["1"],"P":["1"],"j":["1"],"j.E":"1"},"uM":{"j":["1"],"j.E":"1"},"ic":{"P":["1"],"j":["1"],"j.E":"1"},"ih":{"j":["1"],"j.E":"1"},"qW":{"ih":["1"],"P":["1"],"j":["1"],"j.E":"1"},"dm":{"j":["1"],"j.E":"1"},"oM":{"R":["1"],"B":["1"],"P":["1"],"j":["1"]},"co":{"bn":["1"],"P":["1"],"j":["1"],"j.E":"1","bn.E":"1"},"m7":{"m8":[]},"mq":{"lP":[]},"wO":{"lP":[]},"wP":{"lP":[]},"wQ":{"lP":[]},"kW":{"mg":["1","2"],"ay":["1","2"]},"n2":{"ay":["1","2"]},"aW":{"n2":["1","2"],"ay":["1","2"]},"vL":{"j":["1"],"j.E":"1"},"bq":{"n2":["1","2"],"ay":["1","2"]},"tp":{"iH":[],"bm":[]},"BY":{"bm":[]},"FU":{"bm":[]},"CS":{"cX":[]},"xw":{"cP":[]},"jm":{"la":[]},"A6":{"la":[]},"A7":{"la":[]},"Fs":{"la":[]},"Fj":{"la":[]},"mS":{"la":[]},"Hh":{"bm":[]},"Es":{"bm":[]},"e4":{"aq":["1","2"],"ay":["1","2"],"aq.V":"2","aq.K":"1"},"aT":{"P":["1"],"j":["1"],"j.E":"1"},"wL":{"lP":[]},"wM":{"lP":[]},"wN":{"lP":[]},"wl":{"a8n":[],"t1":[]},"uX":{"t1":[]},"Lm":{"j":["t1"],"j.E":"t1"},"te":{"b":[],"zh":[],"bA":[]},"ti":{"b":[]},"tf":{"b":[],"c3":[],"bA":[]},"nS":{"aY":["1"],"b":[],"aO":["1"]},"jP":{"R":["Q"],"aY":["Q"],"B":["Q"],"b":[],"P":["Q"],"aO":["Q"],"j":["Q"]},"ex":{"R":["o"],"aY":["o"],"B":["o"],"b":[],"P":["o"],"aO":["o"],"j":["o"]},"tg":{"jP":[],"R":["Q"],"Ru":[],"aY":["Q"],"B":["Q"],"b":[],"P":["Q"],"aO":["Q"],"j":["Q"],"bA":[],"j.E":"Q","R.E":"Q"},"CG":{"jP":[],"R":["Q"],"Rv":[],"aY":["Q"],"B":["Q"],"b":[],"P":["Q"],"aO":["Q"],"j":["Q"],"bA":[],"j.E":"Q","R.E":"Q"},"CH":{"ex":[],"R":["o"],"Tl":[],"aY":["o"],"B":["o"],"b":[],"P":["o"],"aO":["o"],"j":["o"],"bA":[],"j.E":"o","R.E":"o"},"th":{"ex":[],"R":["o"],"Tm":[],"aY":["o"],"B":["o"],"b":[],"P":["o"],"aO":["o"],"j":["o"],"bA":[],"j.E":"o","R.E":"o"},"CI":{"ex":[],"R":["o"],"Tn":[],"aY":["o"],"B":["o"],"b":[],"P":["o"],"aO":["o"],"j":["o"],"bA":[],"j.E":"o","R.E":"o"},"CJ":{"ex":[],"R":["o"],"a_E":[],"aY":["o"],"B":["o"],"b":[],"P":["o"],"aO":["o"],"j":["o"],"bA":[],"j.E":"o","R.E":"o"},"CK":{"ex":[],"R":["o"],"oK":[],"aY":["o"],"B":["o"],"b":[],"P":["o"],"aO":["o"],"j":["o"],"bA":[],"j.E":"o","R.E":"o"},"tj":{"ex":[],"R":["o"],"a_F":[],"aY":["o"],"B":["o"],"b":[],"P":["o"],"aO":["o"],"j":["o"],"bA":[],"j.E":"o","R.E":"o"},"lw":{"ex":[],"R":["o"],"hL":[],"aY":["o"],"B":["o"],"b":[],"P":["o"],"aO":["o"],"j":["o"],"bA":[],"j.E":"o","R.E":"o"},"M8":{"eb":[]},"HM":{"bm":[]},"xJ":{"iH":[],"bm":[]},"ai":{"ad":["1"]},"LH":{"adn":[]},"xD":{"j":["1"],"j.E":"1"},"yV":{"bm":[]},"iO":{"ki":["1"],"iD":["1"]},"vy":{"vB":["1"]},"bp":{"GP":["1"]},"oU":{"xz":["1"]},"ki":{"iD":["1"]},"xA":{"iD":["1"]},"mn":{"aq":["1","2"],"ay":["1","2"],"aq.V":"2","aq.K":"1"},"p9":{"mn":["1","2"],"aq":["1","2"],"ay":["1","2"],"aq.V":"2","aq.K":"1"},"mo":{"P":["1"],"j":["1"],"j.E":"1"},"wg":{"e4":["1","2"],"aq":["1","2"],"ay":["1","2"],"aq.V":"2","aq.K":"1"},"hQ":{"mr":["1"],"hD":["1"],"br":["1"],"P":["1"],"j":["1"],"j.E":"1"},"ec":{"mr":["1"],"hD":["1"],"alc":["1"],"br":["1"],"P":["1"],"j":["1"],"j.E":"1"},"rR":{"j":["1"],"j.E":"1"},"R":{"B":["1"],"P":["1"],"j":["1"]},"aq":{"ay":["1","2"]},"wk":{"P":["2"],"j":["2"],"j.E":"2"},"rZ":{"ay":["1","2"]},"mg":{"ay":["1","2"]},"vT":{"vU":["1"],"a7L":["1"]},"mm":{"vU":["1"]},"l_":{"P":["1"],"j":["1"],"j.E":"1"},"rS":{"bn":["1"],"P":["1"],"j":["1"],"j.E":"1","bn.E":"1"},"hD":{"br":["1"],"P":["1"],"j":["1"]},"mr":{"hD":["1"],"br":["1"],"P":["1"],"j":["1"]},"cr":{"mr":["1"],"hD":["1"],"br":["1"],"P":["1"],"j":["1"],"j.E":"1"},"uS":{"aq":["1","2"],"ay":["1","2"],"aq.V":"2","aq.K":"1"},"iW":{"P":["1"],"j":["1"],"j.E":"1"},"mt":{"P":["2"],"j":["2"],"j.E":"2"},"xr":{"P":["bb<1,2>"],"j":["bb<1,2>"],"j.E":"bb<1,2>"},"iX":{"hU":["1","2","1"],"hU.T":"1"},"xv":{"hU":["1","dG<1,2>","2"],"hU.T":"2"},"ms":{"hU":["1","dG<1,2>","bb<1,2>"],"hU.T":"bb<1,2>"},"or":{"hD":["1"],"br":["1"],"P":["1"],"j":["1"],"j.E":"1"},"IA":{"aq":["u","@"],"ay":["u","@"],"aq.V":"@","aq.K":"u"},"IB":{"bn":["u"],"P":["u"],"j":["u"],"j.E":"u","bn.E":"u"},"rI":{"bm":[]},"BZ":{"bm":[]},"el":{"bX":["el"]},"Q":{"bH":[],"bX":["bH"]},"aQ":{"bX":["aQ"]},"o":{"bH":[],"bX":["bH"]},"B":{"P":["1"],"j":["1"]},"bH":{"bX":["bH"]},"a8n":{"t1":[]},"br":{"P":["1"],"j":["1"]},"u":{"bX":["u"]},"kN":{"bm":[]},"iH":{"bm":[]},"fb":{"bm":[]},"tS":{"bm":[]},"ry":{"bm":[]},"CO":{"bm":[]},"FW":{"bm":[]},"oL":{"bm":[]},"fK":{"bm":[]},"Ab":{"bm":[]},"D_":{"bm":[]},"uU":{"bm":[]},"HN":{"cX":[]},"jv":{"cX":[]},"Lp":{"cP":[]},"xP":{"FX":[]},"L3":{"FX":[]},"Hj":{"FX":[]},"bz":{"b":[]},"en":{"b":[]},"eo":{"b":[]},"et":{"b":[]},"aZ":{"b":[]},"ey":{"b":[]},"eD":{"b":[]},"eE":{"b":[]},"eF":{"b":[]},"dP":{"b":[]},"eH":{"b":[]},"dQ":{"b":[]},"eI":{"b":[]},"a9":{"aZ":[],"b":[]},"yL":{"b":[]},"yN":{"aZ":[],"b":[]},"yS":{"aZ":[],"b":[]},"q5":{"b":[]},"h5":{"aZ":[],"b":[]},"Ag":{"b":[]},"n4":{"b":[]},"dJ":{"b":[]},"fd":{"b":[]},"Ah":{"b":[]},"Ai":{"b":[]},"Aq":{"b":[]},"AM":{"b":[]},"qP":{"R":["fB"],"B":["fB"],"aY":["fB"],"b":[],"P":["fB"],"j":["fB"],"aO":["fB"],"j.E":"fB","R.E":"fB"},"qQ":{"b":[],"fB":["bH"]},"AO":{"R":["u"],"B":["u"],"aY":["u"],"b":[],"P":["u"],"j":["u"],"aO":["u"],"j.E":"u","R.E":"u"},"AQ":{"b":[]},"a8":{"aZ":[],"b":[]},"N":{"b":[]},"Bd":{"R":["en"],"B":["en"],"aY":["en"],"b":[],"P":["en"],"j":["en"],"aO":["en"],"j.E":"en","R.E":"en"},"Be":{"b":[]},"Bt":{"aZ":[],"b":[]},"BH":{"b":[]},"lf":{"R":["aZ"],"B":["aZ"],"aY":["aZ"],"b":[],"P":["aZ"],"j":["aZ"],"aO":["aZ"],"j.E":"aZ","R.E":"aZ"},"Cg":{"b":[]},"Cr":{"b":[]},"Cv":{"b":[],"aq":["u","@"],"ay":["u","@"],"aq.V":"@","aq.K":"u"},"Cw":{"b":[],"aq":["u","@"],"ay":["u","@"],"aq.V":"@","aq.K":"u"},"Cx":{"R":["et"],"B":["et"],"aY":["et"],"b":[],"P":["et"],"j":["et"],"aO":["et"],"j.E":"et","R.E":"et"},"to":{"R":["aZ"],"B":["aZ"],"aY":["aZ"],"b":[],"P":["aZ"],"j":["aZ"],"aO":["aZ"],"j.E":"aZ","R.E":"aZ"},"Dx":{"R":["ey"],"B":["ey"],"aY":["ey"],"b":[],"P":["ey"],"j":["ey"],"aO":["ey"],"j.E":"ey","R.E":"ey"},"Eq":{"b":[],"aq":["u","@"],"ay":["u","@"],"aq.V":"@","aq.K":"u"},"EH":{"aZ":[],"b":[]},"Fc":{"R":["eD"],"B":["eD"],"aY":["eD"],"b":[],"P":["eD"],"j":["eD"],"aO":["eD"],"j.E":"eD","R.E":"eD"},"Fe":{"R":["eE"],"B":["eE"],"aY":["eE"],"b":[],"P":["eE"],"j":["eE"],"aO":["eE"],"j.E":"eE","R.E":"eE"},"Fk":{"b":[],"aq":["u","u"],"ay":["u","u"],"aq.V":"u","aq.K":"u"},"FA":{"R":["dQ"],"B":["dQ"],"aY":["dQ"],"b":[],"P":["dQ"],"j":["dQ"],"aO":["dQ"],"j.E":"dQ","R.E":"dQ"},"FB":{"R":["eH"],"B":["eH"],"aY":["eH"],"b":[],"P":["eH"],"j":["eH"],"aO":["eH"],"j.E":"eH","R.E":"eH"},"FG":{"b":[]},"FK":{"R":["eI"],"B":["eI"],"aY":["eI"],"b":[],"P":["eI"],"j":["eI"],"aO":["eI"],"j.E":"eI","R.E":"eI"},"FL":{"b":[]},"FY":{"b":[]},"G0":{"b":[]},"H9":{"R":["bz"],"B":["bz"],"aY":["bz"],"b":[],"P":["bz"],"j":["bz"],"aO":["bz"],"j.E":"bz","R.E":"bz"},"vR":{"b":[],"fB":["bH"]},"I9":{"R":["eo?"],"B":["eo?"],"aY":["eo?"],"b":[],"P":["eo?"],"j":["eo?"],"aO":["eo?"],"j.E":"eo?","R.E":"eo?"},"wv":{"R":["aZ"],"B":["aZ"],"aY":["aZ"],"b":[],"P":["aZ"],"j":["aZ"],"aO":["aZ"],"j.E":"aZ","R.E":"aZ"},"Le":{"R":["eF"],"B":["eF"],"aY":["eF"],"b":[],"P":["eF"],"j":["eF"],"aO":["eF"],"j.E":"eF","R.E":"eF"},"Lq":{"R":["dP"],"B":["dP"],"aY":["dP"],"b":[],"P":["dP"],"j":["dP"],"aO":["dP"],"j.E":"dP","R.E":"dP"},"CR":{"cX":[]},"fr":{"b":[]},"fu":{"b":[]},"fM":{"b":[]},"C8":{"R":["fr"],"B":["fr"],"b":[],"P":["fr"],"j":["fr"],"j.E":"fr","R.E":"fr"},"CT":{"R":["fu"],"B":["fu"],"b":[],"P":["fu"],"j":["fu"],"j.E":"fu","R.E":"fu"},"Dy":{"b":[]},"Fl":{"R":["u"],"B":["u"],"b":[],"P":["u"],"j":["u"],"j.E":"u","R.E":"u"},"FN":{"R":["fM"],"B":["fM"],"b":[],"P":["fM"],"j":["fM"],"j.E":"fM","R.E":"fM"},"Tn":{"B":["o"],"P":["o"],"j":["o"]},"hL":{"B":["o"],"P":["o"],"j":["o"]},"a_F":{"B":["o"],"P":["o"],"j":["o"]},"Tl":{"B":["o"],"P":["o"],"j":["o"]},"a_E":{"B":["o"],"P":["o"],"j":["o"]},"Tm":{"B":["o"],"P":["o"],"j":["o"]},"oK":{"B":["o"],"P":["o"],"j":["o"]},"Ru":{"B":["Q"],"P":["Q"],"j":["Q"]},"Rv":{"B":["Q"],"P":["Q"],"j":["Q"]},"EU":{"l7":[]},"yW":{"b":[]},"yX":{"b":[],"aq":["u","@"],"ay":["u","@"],"aq.V":"@","aq.K":"u"},"yY":{"b":[]},"je":{"b":[]},"CU":{"b":[]},"q2":{"aa":[],"l":[]},"Gv":{"an":["q2"]},"Ic":{"a7":[]},"rr":{"aa":[],"l":[]},"CE":{"aV":[],"l":[]},"Ih":{"an":["rr"]},"ca":{"a7":[]},"mH":{"ca":["Q"],"a7":[]},"Ge":{"ca":["Q"],"a7":[]},"Gf":{"ca":["Q"],"a7":[]},"tO":{"ca":["Q"],"a7":[]},"fE":{"ca":["Q"],"a7":[]},"qy":{"ca":["Q"],"a7":[]},"me":{"ca":["Q"],"a7":[]},"n1":{"ca":["1"],"a7":[]},"pU":{"ca":["1"],"a7":[]},"wf":{"eP":[]},"hk":{"eP":[]},"FF":{"eP":[]},"dK":{"eP":[]},"FE":{"eP":[]},"nh":{"eP":[]},"Hl":{"eP":[]},"av":{"ak":["1"],"ak.T":"1","av.T":"1"},"h6":{"av":["A?"],"ak":["A?"],"ak.T":"A?","av.T":"A?"},"aR":{"ca":["1"],"a7":[]},"fQ":{"ak":["1"],"ak.T":"1"},"ud":{"av":["1"],"ak":["1"],"ak.T":"1","av.T":"1"},"tX":{"av":["C?"],"ak":["C?"],"ak.T":"C?","av.T":"C?"},"jA":{"av":["o"],"ak":["o"],"ak.T":"o","av.T":"o"},"i8":{"ak":["Q"],"ak.T":"Q"},"vl":{"ak":["1"],"ak.T":"1"},"eO":{"A":[]},"Aj":{"cd":[]},"Hd":{"e7":["PC"],"e7.T":"PC"},"Ax":{"PC":[]},"oX":{"aa":[],"l":[]},"Ak":{"aV":[],"l":[]},"oY":{"an":["oX<1>"]},"fR":{"fe":[]},"n5":{"aa":[],"l":[]},"vP":{"hA":["n5"],"an":["n5"]},"wa":{"aX":[],"aK":[],"l":[]},"An":{"aV":[],"l":[]},"kj":{"eR":["B"],"dv":[]},"ne":{"kj":[],"eR":["B"],"dv":[]},"B6":{"kj":[],"eR":["B"],"dv":[]},"B5":{"kj":[],"eR":["B"],"dv":[]},"ig":{"kN":[],"bm":[]},"HY":{"dv":[]},"ei":{"a7":[]},"wr":{"a7":[]},"oN":{"a7":[]},"eR":{"dv":[]},"qL":{"dv":[]},"AE":{"dv":[]},"dS":{"dL":[],"dS.T":"1"},"Ce":{"dL":[]},"vm":{"dL":[]},"rP":{"eV":[]},"be":{"j":["1"],"j.E":"1"},"ro":{"j":["1"],"j.E":"1"},"c1":{"ad":["1"]},"nl":{"ag":[]},"rh":{"bu":[]},"cE":{"aE":[]},"iw":{"aE":[]},"jW":{"aE":[]},"jX":{"aE":[]},"iv":{"aE":[]},"dz":{"aE":[]},"ix":{"aE":[]},"G9":{"aE":[]},"LX":{"aE":[]},"lD":{"aE":[]},"LT":{"lD":[],"aE":[]},"lI":{"aE":[]},"M3":{"lI":[],"aE":[]},"LZ":{"iw":[],"aE":[]},"LW":{"jW":[],"aE":[]},"LY":{"jX":[],"aE":[]},"LV":{"iv":[],"aE":[]},"lF":{"aE":[]},"M_":{"lF":[],"aE":[]},"lL":{"aE":[]},"M7":{"lL":[],"aE":[]},"lJ":{"dz":[],"aE":[]},"M5":{"lJ":[],"dz":[],"aE":[]},"lK":{"dz":[],"aE":[]},"M6":{"lK":[],"dz":[],"aE":[]},"DA":{"dz":[],"aE":[]},"M4":{"dz":[],"aE":[]},"M1":{"ix":[],"aE":[]},"lH":{"aE":[]},"M2":{"lH":[],"aE":[]},"lG":{"aE":[]},"M0":{"lG":[],"aE":[]},"lE":{"aE":[]},"LU":{"lE":[],"aE":[]},"fj":{"cj":[],"cz":[]},"wp":{"pw":[]},"pl":{"pw":[]},"e8":{"cj":[],"cz":[]},"fO":{"cj":[],"cz":[]},"fl":{"cj":[],"cz":[]},"fw":{"cj":[],"cz":[]},"qR":{"cj":[],"cz":[]},"fg":{"cj":[],"cz":[]},"cj":{"cz":[]},"tu":{"cj":[],"cz":[]},"o_":{"cj":[],"cz":[]},"ea":{"cj":[],"cz":[]},"z3":{"cj":[],"cz":[]},"lg":{"fN":[]},"nL":{"fN":[]},"Ga":{"aV":[],"l":[]},"oQ":{"aV":[],"l":[]},"z1":{"aV":[],"l":[]},"z0":{"aV":[],"l":[]},"AS":{"aV":[],"l":[]},"AR":{"aV":[],"l":[]},"AZ":{"aV":[],"l":[]},"AY":{"aV":[],"l":[]},"aiz":{"aX":[],"aK":[],"l":[]},"t2":{"aa":[],"l":[]},"wm":{"an":["t2"]},"pZ":{"aa":[],"l":[]},"K4":{"S":[]},"vx":{"an":["pZ"]},"Gp":{"b5":[],"ax":[],"l":[]},"Kf":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"nO":{"av":["C?"],"ak":["C?"],"ak.T":"C?","av.T":"C?"},"t4":{"av":["q"],"ak":["q"],"ak.T":"q","av.T":"q"},"alm":{"aX":[],"aK":[],"l":[]},"q7":{"aa":[],"l":[]},"GB":{"an":["q7"]},"GA":{"a7":[]},"tU":{"aa":[],"l":[]},"Kc":{"an":["tU"]},"Iw":{"b5":[],"ax":[],"l":[]},"Kl":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"IK":{"bd":["bD?"]},"qd":{"aa":[],"l":[]},"vD":{"an":["qd"]},"J4":{"cv":[],"bd":["cv"]},"Iv":{"b5":[],"ax":[],"l":[]},"Kk":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"qk":{"aV":[],"l":[]},"nN":{"jo":["o"],"A":[],"jo.T":"o"},"rg":{"aX":[],"aK":[],"l":[]},"Bj":{"aV":[],"l":[]},"HI":{"cv":[],"bd":["cv"]},"GM":{"b5":[],"ax":[],"l":[]},"Kg":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"vw":{"ca":["1"],"a7":[]},"xj":{"aa":[],"l":[]},"BQ":{"aV":[],"l":[]},"KQ":{"an":["xj"]},"In":{"aa":[],"l":[]},"Ik":{"bd":["A?"]},"Il":{"bd":["A?"]},"Im":{"b4":[]},"HT":{"b4":[]},"HU":{"b4":[]},"Jp":{"b4":[]},"rt":{"aX":[],"aK":[],"l":[]},"jz":{"jB":[],"im":[]},"rA":{"jB":[],"im":[]},"rB":{"jB":[],"im":[]},"jB":{"im":[]},"wI":{"aX":[],"aK":[],"l":[]},"wd":{"aa":[],"l":[]},"nu":{"aV":[],"l":[]},"wc":{"an":["wd"],"a8W":[]},"BV":{"aV":[],"l":[]},"nM":{"aa":[],"l":[]},"wU":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"m0":{"av":["bw?"],"ak":["bw?"],"ak.T":"bw?","av.T":"bw?"},"wn":{"aa":[],"l":[]},"IV":{"an":["nM"]},"It":{"b5":[],"ax":[],"l":[]},"IS":{"an":["wn"]},"xm":{"aV":[],"l":[]},"KX":{"a7":[]},"IT":{"e7":["ln"],"e7.T":"ln"},"Ay":{"ln":[]},"Cm":{"cv":[],"bd":["cv"]},"HL":{"cv":[],"bd":["cv"]},"we":{"bd":["1?"]},"bB":{"bd":["1"]},"cM":{"bd":["1"]},"Cn":{"a7":[]},"IM":{"bd":["bD?"]},"lo":{"Ck":["1"],"jO":["1"],"dE":["1"],"c7":["1"]},"ks":{"aa":[],"l":[]},"kt":{"aa":[],"l":[]},"Mp":{"aV":[],"l":[]},"Mn":{"an":["ks"]},"Mo":{"an":["kt"]},"G8":{"it":[]},"Al":{"it":[]},"y_":{"a7":[]},"y0":{"a7":[]},"uh":{"aa":[],"l":[]},"x6":{"aX":[],"aK":[],"l":[]},"w_":{"aa":[],"l":[]},"uf":{"aa":[],"l":[]},"od":{"an":["uf"]},"aor":{"aa":[],"l":[]},"x8":{"aX":[],"aK":[],"l":[]},"Ev":{"an":["uh"]},"KI":{"a7":[]},"vA":{"aI":[]},"Gy":{"aV":[],"l":[]},"w0":{"an":["w_"]},"Hv":{"bf":["h8"],"bf.T":"h8"},"pg":{"aa":[],"l":[]},"EF":{"aV":[],"l":[]},"IU":{"hA":["pg"],"an":["pg"]},"amM":{"aX":[],"aK":[],"l":[]},"IL":{"bd":["bD?"]},"an9":{"aa":[],"l":[]},"wb":{"aX":[],"aK":[],"l":[]},"mb":{"av":["f0"],"ak":["f0"],"ak.T":"f0","av.T":"f0"},"pQ":{"aa":[],"l":[]},"FD":{"aV":[],"l":[]},"Gj":{"an":["pQ"]},"vg":{"aa":[],"l":[]},"md":{"an":["vg"]},"LJ":{"aV":[],"l":[]},"anH":{"aX":[],"aK":[],"l":[]},"d8":{"dZ":[]},"eh":{"dZ":[]},"ws":{"dZ":[]},"tA":{"de":[]},"Ls":{"a7":[]},"cC":{"bw":[]},"f2":{"bw":[]},"z8":{"bw":[]},"dk":{"bw":[]},"ds":{"bw":[]},"eM":{"fe":[]},"i4":{"ka":[]},"cV":{"cC":[],"bw":[]},"jo":{"A":[]},"bl":{"bU":[]},"e2":{"bU":[]},"ko":{"bU":[]},"yU":{"fn":["h2"]},"mM":{"fn":["h2"],"fn.T":"h2"},"cw":{"cC":[],"bw":[]},"dF":{"cC":[],"bw":[]},"dO":{"cC":[],"bw":[]},"dH":{"cC":[],"bw":[]},"dI":{"cC":[],"bw":[]},"vb":{"fo":[],"iq":[],"ag":[]},"o8":{"de":[],"ag":[]},"Gx":{"a7":[]},"h4":{"fk":[]},"G":{"z":[],"K":[],"ag":[]},"mT":{"hf":["G"]},"e_":{"cg":[]},"qv":{"e_":[],"du":["1"],"cg":[]},"eX":{"e_":[],"du":["G"],"cg":[]},"DS":{"d0":["G","eX"],"G":[],"ar":["G","eX"],"z":[],"K":[],"ag":[],"ar.1":"eX","d0.1":"eX","ar.0":"G"},"Ap":{"a7":[]},"DT":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"DW":{"G":[],"z":[],"K":[],"ag":[]},"hc":{"e_":[],"du":["G"],"cg":[]},"DY":{"d0":["G","hc"],"G":[],"ar":["G","hc"],"z":[],"K":[],"ag":[],"ar.1":"hc","d0.1":"hc","ar.0":"G"},"E_":{"G":[],"z":[],"K":[],"ag":[]},"rN":{"K":[]},"ek":{"K":[]},"qs":{"ek":[],"K":[]},"vk":{"ht":[],"ek":[],"K":[]},"CY":{"ht":[],"ek":[],"K":[]},"Du":{"K":[]},"ht":{"ek":[],"K":[]},"qr":{"ek":[],"K":[]},"qq":{"ek":[],"K":[]},"pX":{"ek":[],"K":[]},"CB":{"a7":[]},"z":{"K":[],"ag":[]},"du":{"cg":[]},"KD":{"dU":[]},"w9":{"dU":[]},"mu":{"dU":[]},"hJ":{"e_":[],"du":["G"],"cg":[]},"iV":{"d1":[],"a7":[]},"u3":{"d0":["G","hJ"],"G":[],"ar":["G","hJ"],"z":[],"K":[],"ag":[],"ar.1":"hJ","d0.1":"hJ","ar.0":"G"},"m_":{"a7":[]},"tZ":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"iz":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"Ea":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"u4":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"DR":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"E1":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"DN":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"qz":{"a7":[]},"pp":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"DQ":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"DP":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"wX":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"E6":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"E7":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"DV":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"Eg":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"DZ":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"E8":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"E3":{"G":[],"aG":["G"],"z":[],"iq":[],"K":[],"ag":[]},"Eb":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"u2":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"E4":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"u5":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"DO":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"E2":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"DX":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"E0":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"u0":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"d1":{"a7":[]},"Ec":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"E5":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"DM":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"E9":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"DU":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"oo":{"fk":[]},"iC":{"kc":[],"du":["cm"],"cg":[]},"cm":{"z":[],"K":[],"ag":[]},"F2":{"hf":["cm"]},"uO":{"cg":[]},"kc":{"cg":[]},"Ed":{"o6":[],"cm":[],"ar":["G","hE"],"z":[],"K":[],"ag":[],"ar.1":"hE","ar.0":"G"},"hn":{"cg":[]},"hE":{"du":["G"],"hn":[],"cg":[]},"o6":{"cm":[],"ar":["G","hE"],"z":[],"K":[],"ag":[]},"u6":{"cm":[],"aG":["cm"],"z":[],"K":[],"ag":[]},"Ee":{"cm":[],"aG":["cm"],"z":[],"K":[],"ag":[]},"df":{"e_":[],"du":["G"],"cg":[]},"u7":{"d0":["G","df"],"G":[],"ar":["G","df"],"z":[],"K":[],"ag":[],"ar.1":"df","d0.1":"df","ar.0":"G"},"jc":{"av":["dZ?"],"ak":["dZ?"],"ak.T":"dZ?","av.T":"dZ?"},"u8":{"aG":["G"],"z":[],"K":[],"ag":[]},"o7":{"hS":["1"],"G":[],"ar":["cm","1"],"a8o":[],"z":[],"K":[],"ag":[]},"u9":{"hS":["iC"],"G":[],"ar":["cm","iC"],"a8o":[],"z":[],"K":[],"ag":[],"ar.1":"iC","hS.0":"iC","ar.0":"cm"},"iL":{"a7":[]},"mc":{"ad":["~"]},"vd":{"cX":[]},"bP":{"K":[]},"iN":{"bX":["iN"]},"fT":{"bX":["fT"]},"iY":{"bX":["iY"]},"oj":{"bX":["oj"]},"KT":{"dv":[]},"uD":{"a7":[]},"tv":{"bX":["oj"]},"oT":{"Of":[]},"ok":{"de":[]},"lk":{"jD":[]},"jF":{"jD":[]},"rM":{"jD":[]},"tK":{"cX":[]},"t9":{"cX":[]},"hH":{"cv":[]},"Hq":{"cv":[]},"Lt":{"ta":[]},"hz":{"fA":[]},"o2":{"fA":[]},"uc":{"a7":[]},"Jw":{"v8":[]},"i1":{"aa":[],"l":[]},"vt":{"aX":[],"aK":[],"l":[]},"a8N":{"aD":[]},"ajP":{"aD":[]},"ajO":{"aD":[]},"mE":{"aD":[]},"mU":{"aD":[]},"h8":{"aD":[]},"lO":{"aD":[]},"kX":{"bf":["1"]},"kS":{"bf":["1"],"bf.T":"1"},"vu":{"an":["i1"]},"G5":{"bf":["a8N"],"bf.T":"a8N"},"AK":{"bf":["aD"],"bf.T":"aD"},"AI":{"bf":["h8"]},"DE":{"bf":["lO"],"bf.T":"lO"},"wG":{"y9":["1"],"kX":["1"],"Jr":["1"],"bf":["1"],"bf.T":"1"},"pW":{"b5":[],"ax":[],"l":[]},"vq":{"aa":[],"l":[]},"xS":{"an":["vq"],"hP":[]},"q1":{"aa":[],"l":[]},"vz":{"an":["q1"]},"C_":{"a7":[]},"Jh":{"aV":[],"l":[]},"eS":{"aX":[],"aK":[],"l":[]},"n_":{"b5":[],"ax":[],"l":[]},"rO":{"e9":["eX"],"aK":[],"l":[],"e9.T":"eX"},"lM":{"e9":["df"],"aK":[],"l":[],"e9.T":"df"},"ajD":{"aX":[],"aK":[],"l":[]},"hh":{"b5":[],"ax":[],"l":[]},"Ma":{"eq":[],"b1":[],"ao":[]},"Mb":{"aX":[],"aK":[],"l":[]},"qB":{"b5":[],"ax":[],"l":[]},"A0":{"b5":[],"ax":[],"l":[]},"Dr":{"b5":[],"ax":[],"l":[]},"Ds":{"b5":[],"ax":[],"l":[]},"oH":{"b5":[],"ax":[],"l":[]},"Bu":{"b5":[],"ax":[],"l":[]},"hw":{"b5":[],"ax":[],"l":[]},"jb":{"b5":[],"ax":[],"l":[]},"zn":{"b5":[],"ax":[],"l":[]},"qC":{"b5":[],"ax":[],"l":[]},"qA":{"ew":[],"ax":[],"l":[]},"om":{"b5":[],"ax":[],"l":[]},"ej":{"b5":[],"ax":[],"l":[]},"C9":{"b5":[],"ax":[],"l":[]},"tt":{"b5":[],"ax":[],"l":[]},"Jn":{"c_":[],"b1":[],"ao":[]},"F4":{"b5":[],"ax":[],"l":[]},"Fg":{"ew":[],"ax":[],"l":[]},"DB":{"aV":[],"l":[]},"Bi":{"ew":[],"ax":[],"l":[]},"Ep":{"ew":[],"ax":[],"l":[]},"A9":{"ew":[],"ax":[],"l":[]},"Ej":{"ew":[],"ax":[],"l":[]},"DH":{"ax":[],"l":[]},"Cb":{"b5":[],"ax":[],"l":[]},"CA":{"b5":[],"ax":[],"l":[]},"fD":{"b5":[],"ax":[],"l":[]},"yK":{"b5":[],"ax":[],"l":[]},"EK":{"b5":[],"ax":[],"l":[]},"Cu":{"b5":[],"ax":[],"l":[]},"z5":{"b5":[],"ax":[],"l":[]},"r6":{"b5":[],"ax":[],"l":[]},"BT":{"b5":[],"ax":[],"l":[]},"nD":{"aV":[],"l":[]},"jh":{"aV":[],"l":[]},"qt":{"b5":[],"ax":[],"l":[]},"wR":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"vr":{"de":[],"ag":[]},"lQ":{"ax":[],"l":[]},"k1":{"c_":[],"b1":[],"ao":[]},"G6":{"de":[],"ag":[]},"As":{"b5":[],"ax":[],"l":[]},"Ac":{"aV":[],"l":[]},"Hm":{"a7":[]},"n6":{"aX":[],"aK":[],"l":[]},"Ji":{"aV":[],"l":[]},"AA":{"aV":[],"l":[]},"na":{"aa":[],"l":[]},"vW":{"an":["na"]},"cu":{"a7":[]},"l9":{"cu":[],"a7":[]},"ri":{"a7":[]},"l8":{"aa":[],"l":[]},"w2":{"hj":["cu"],"aX":[],"aK":[],"l":[],"hj.T":"cu"},"p1":{"an":["l8"]},"Bo":{"aa":[],"l":[]},"I4":{"an":["l8"]},"rj":{"aa":[],"l":[]},"a8p":{"aD":[]},"ly":{"aD":[]},"lN":{"aD":[]},"a7D":{"aD":[]},"w3":{"cu":[],"a7":[]},"I5":{"an":["rj"]},"Eh":{"bf":["a8p"],"bf.T":"a8p"},"CM":{"bf":["ly"],"bf.T":"ly"},"DC":{"bf":["lN"],"bf.T":"lN"},"AG":{"bf":["a7D"],"bf.T":"a7D"},"he":{"dL":[]},"bM":{"he":["1"],"dL":[]},"aa":{"l":[]},"b1":{"ao":[]},"f_":{"b1":[],"ao":[]},"eq":{"b1":[],"ao":[]},"ii":{"he":["1"],"dL":[]},"aV":{"l":[]},"aK":{"l":[]},"e9":{"aK":[],"l":[]},"aX":{"aK":[],"l":[]},"ax":{"l":[]},"C6":{"ax":[],"l":[]},"b5":{"ax":[],"l":[]},"ew":{"ax":[],"l":[]},"B7":{"ax":[],"l":[]},"qu":{"b1":[],"ao":[]},"Fi":{"b1":[],"ao":[]},"tP":{"b1":[],"ao":[]},"lA":{"b1":[],"ao":[]},"c_":{"b1":[],"ao":[]},"C5":{"c_":[],"b1":[],"ao":[]},"uH":{"c_":[],"b1":[],"ao":[]},"ev":{"c_":[],"b1":[],"ao":[]},"Jg":{"b1":[],"ao":[]},"Jj":{"l":[]},"k_":{"aa":[],"l":[]},"o1":{"an":["k_"]},"ck":{"lc":["1"]},"By":{"aV":[],"l":[]},"Ib":{"b5":[],"ax":[],"l":[]},"ld":{"aa":[],"l":[]},"p8":{"an":["ld"]},"rp":{"lx":[]},"rs":{"aV":[],"l":[]},"li":{"aX":[],"aK":[],"l":[]},"rw":{"aa":[],"l":[]},"w8":{"an":["rw"],"hP":[]},"kR":{"av":["aI"],"ak":["aI"],"ak.T":"aI","av.T":"aI"},"i9":{"av":["fe"],"ak":["fe"],"ak.T":"fe","av.T":"fe"},"jr":{"av":["bU"],"ak":["bU"],"ak.T":"bU","av.T":"bU"},"kP":{"av":["cc?"],"ak":["cc?"],"ak.T":"cc?","av.T":"cc?"},"ls":{"av":["aS"],"ak":["aS"],"ak.T":"aS","av.T":"aS"},"ma":{"av":["k"],"ak":["k"],"ak.T":"k","av.T":"k"},"pM":{"aa":[],"l":[]},"pN":{"aa":[],"l":[]},"pP":{"aa":[],"l":[]},"qV":{"av":["bl"],"ak":["bl"],"ak.T":"bl","av.T":"bl"},"BS":{"aa":[],"l":[]},"nr":{"an":["1"]},"mG":{"an":["1"]},"Gg":{"an":["pM"]},"Gh":{"an":["pN"]},"Gi":{"an":["pP"]},"hi":{"aX":[],"aK":[],"l":[]},"rz":{"eq":[],"b1":[],"ao":[]},"hj":{"aX":[],"aK":[],"l":[]},"pc":{"eq":[],"b1":[],"ao":[]},"BU":{"aX":[],"aK":[],"l":[]},"wj":{"aX":[],"aK":[],"l":[]},"rW":{"aa":[],"l":[]},"Mm":{"e7":["vs"],"e7.T":"vs"},"AC":{"vs":[]},"IP":{"an":["rW"]},"abQ":{"aX":[],"aK":[],"l":[]},"lt":{"hi":["dg"],"aX":[],"aK":[],"l":[],"hi.T":"dg"},"wq":{"aa":[],"l":[]},"IW":{"an":["wq"],"hP":[]},"oS":{"cj":[],"cz":[]},"Cy":{"aV":[],"l":[]},"Gn":{"lc":["oS"]},"J3":{"aV":[],"l":[]},"CL":{"aV":[],"l":[]},"a8f":{"fG":[]},"le":{"aX":[],"aK":[],"l":[]},"tn":{"aa":[],"l":[]},"hs":{"an":["tn"]},"Jf":{"c7":["~"]},"pk":{"kp":[]},"pj":{"kp":[]},"wA":{"kp":[]},"wB":{"kp":[]},"Ig":{"dd":["ay>?"],"a7":[]},"cZ":{"aK":[],"l":[]},"wE":{"b1":[],"ao":[]},"is":{"a7":[]},"iU":{"aa":[],"l":[]},"wF":{"an":["iU"]},"tx":{"aa":[],"l":[]},"nU":{"an":["tx"]},"x1":{"G":[],"ar":["G","df"],"z":[],"K":[],"ag":[],"ar.1":"df","ar.0":"G"},"xG":{"ew":[],"ax":[],"l":[]},"LD":{"c_":[],"b1":[],"ao":[]},"pv":{"df":[],"e_":[],"du":["G"],"cg":[]},"Kv":{"aX":[],"aK":[],"l":[]},"rm":{"aa":[],"l":[]},"uW":{"aa":[],"l":[]},"w5":{"an":["rm"]},"w4":{"a7":[]},"Id":{"a7":[]},"xC":{"an":["uW"]},"xB":{"a7":[]},"ty":{"dT":[]},"acc":{"dS":["1"],"dL":[]},"nV":{"aV":[],"l":[]},"lz":{"jO":["1"],"dE":["1"],"c7":["1"]},"o0":{"aX":[],"aK":[],"l":[]},"k3":{"aa":[],"l":[]},"vn":{"aX":[],"aK":[],"l":[]},"ue":{"aa":[],"l":[]},"dd":{"a7":[]},"KA":{"an":["k3"]},"x3":{"an":["ue"]},"bN":{"dd":["1"],"a7":[]},"fS":{"dd":["1"],"a7":[]},"x2":{"fS":["1"],"dd":["1"],"a7":[]},"ub":{"fS":["1"],"dd":["1"],"a7":[],"fS.T":"1","bN.T":"1"},"ua":{"fS":["D"],"dd":["D"],"a7":[],"fS.T":"D","bN.T":"D"},"Eo":{"aa":[],"l":[]},"asr":{"au8":["ad"]},"ps":{"an":["Eo<1>"]},"KE":{"aX":[],"aK":[],"l":[]},"Kx":{"dd":["oa?"],"a7":[],"bN.T":"oa?"},"wu":{"aX":[],"aK":[],"l":[]},"pi":{"aa":[],"l":[]},"mp":{"an":["pi<1>"]},"nT":{"c7":["1"]},"dE":{"c7":["1"]},"Hw":{"bf":["h8"],"bf.T":"h8"},"jO":{"dE":["1"],"c7":["1"]},"Et":{"aV":[],"l":[]},"ui":{"fn":["1"],"fn.T":"1"},"uj":{"aX":[],"aK":[],"l":[]},"Ez":{"a7":[]},"xk":{"aa":[],"l":[]},"x5":{"dS":["dL"],"dL":[],"dS.T":"dL"},"xl":{"an":["xk"]},"Bg":{"iA":[]},"dB":{"er":[],"dT":[]},"eC":{"dB":[],"er":[],"dT":[]},"up":{"dB":[],"er":[],"dT":[]},"hv":{"dB":[],"er":[],"dT":[]},"k4":{"dB":[],"er":[],"dT":[]},"FZ":{"dB":[],"er":[],"dT":[]},"xc":{"aX":[],"aK":[],"l":[]},"kn":{"lm":["kn"],"lm.E":"kn"},"ul":{"aa":[],"l":[]},"um":{"an":["ul"]},"GT":{"eC":[],"dB":[],"er":[],"dT":[]},"k5":{"iL":[],"a7":[],"iA":[]},"lT":{"dT":[]},"uo":{"k5":[],"iL":[],"a7":[],"iA":[]},"EC":{"aV":[],"l":[]},"zd":{"aV":[],"l":[]},"Ca":{"aV":[],"l":[]},"ur":{"aa":[],"l":[]},"xe":{"aX":[],"aK":[],"l":[]},"xg":{"aa":[],"l":[]},"us":{"an":["ur"]},"KL":{"an":["xg"]},"xf":{"a7":[]},"KK":{"b5":[],"ax":[],"l":[]},"Kp":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"Ky":{"dd":["Q?"],"a7":[],"bN.T":"Q?"},"eB":{"aD":[]},"of":{"bf":["eB"],"bf.T":"eB"},"o3":{"aa":[],"l":[]},"hV":{"e8":[],"cj":[],"cz":[]},"hW":{"ea":[],"cj":[],"cz":[]},"uu":{"a7":[]},"hA":{"an":["1"]},"nR":{"a7":[]},"uz":{"aa":[],"l":[]},"uB":{"aX":[],"aK":[],"l":[]},"KR":{"d1":[],"an":["uz"],"a7":[]},"EI":{"a7":[]},"uF":{"aa":[],"l":[]},"KY":{"an":["uF"]},"KZ":{"hi":["E"],"aX":[],"aK":[],"l":[],"hi.T":"E"},"af":{"m1":[]},"m2":{"aa":[],"l":[]},"uG":{"aa":[],"l":[]},"ol":{"a7":[]},"xo":{"an":["m2"]},"ET":{"a7":[]},"xn":{"an":["uG"]},"L1":{"aX":[],"aK":[],"l":[]},"F5":{"ax":[],"l":[]},"oq":{"ax":[],"l":[]},"F3":{"oq":[],"ax":[],"l":[]},"op":{"c_":[],"b1":[],"ao":[]},"rJ":{"e9":["hn"],"aK":[],"l":[],"e9.T":"hn"},"uR":{"a7":[]},"F8":{"b5":[],"ax":[],"l":[]},"pq":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"F7":{"a7":[]},"Ho":{"a7":[]},"acE":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"Fr":{"b5":[],"ax":[],"l":[]},"Ef":{"G":[],"aG":["G"],"z":[],"K":[],"ag":[]},"n7":{"aX":[],"aK":[],"l":[]},"ajF":{"aX":[],"aK":[],"l":[]},"Jk":{"aV":[],"l":[]},"v1":{"aV":[],"l":[]},"AL":{"aD":[]},"AH":{"aD":[]},"qH":{"aD":[]},"qJ":{"aD":[]},"qI":{"aD":[]},"AF":{"aD":[]},"l2":{"aD":[]},"l4":{"aD":[]},"rd":{"aD":[]},"r7":{"aD":[]},"r8":{"aD":[]},"fh":{"aD":[]},"l5":{"aD":[]},"l6":{"aD":[]},"rb":{"aD":[]},"rc":{"aD":[]},"l3":{"aD":[]},"uq":{"aD":[]},"EG":{"aD":[]},"qw":{"aD":[]},"Dl":{"aD":[]},"DL":{"aD":[]},"FS":{"aD":[]},"FP":{"aD":[]},"oF":{"aa":[],"l":[]},"vX":{"aX":[],"aK":[],"l":[]},"LF":{"an":["oF"]},"FH":{"aV":[],"l":[]},"pR":{"aa":[],"l":[]},"vv":{"an":["pR"]},"F0":{"aa":[],"l":[]},"Ew":{"aa":[],"l":[]},"Em":{"aa":[],"l":[]},"Bb":{"b5":[],"ax":[],"l":[]},"At":{"aa":[],"l":[]},"rU":{"aa":[],"l":[]},"yP":{"aa":[],"l":[]},"xR":{"aX":[],"aK":[],"l":[]},"G1":{"aV":[],"l":[]},"vo":{"ew":[],"ax":[],"l":[]},"Mh":{"c_":[],"b1":[],"ao":[]},"fB":{"auj":["1"]},"ajq":{"aX":[],"aK":[],"l":[]},"all":{"aa":[],"l":[]},"akd":{"aa":[],"l":[]},"ake":{"an":["akd"]},"aou":{"aX":[],"aK":[],"l":[]},"alR":{"fo":[]}}')) +A.aoD(v.typeUniverse,JSON.parse('{"mf":1,"eU":1,"h1":1,"db":1,"dy":2,"vp":1,"B9":2,"Fq":1,"EZ":1,"F_":1,"AX":1,"Br":1,"rf":1,"FV":1,"oM":1,"y5":2,"rQ":1,"nS":1,"fU":1,"Gs":1,"vN":1,"GF":1,"xA":1,"Hr":1,"oZ":1,"wJ":1,"vS":1,"Lk":1,"w7":1,"kk":1,"km":1,"wh":1,"IQ":2,"Md":2,"rZ":2,"HF":1,"IN":1,"Me":1,"Lg":2,"Lf":2,"xs":2,"xt":1,"xu":1,"xO":2,"yd":1,"A8":2,"Ad":2,"bX":1,"r9":1,"ce":1,"Bh":1,"pV":1,"n1":1,"vI":1,"vJ":1,"vK":1,"tC":1,"y2":1,"vO":1,"oN":1,"qL":1,"tJ":2,"Cl":1,"wo":1,"qv":1,"vM":1,"C3":1,"du":1,"fC":1,"u_":1,"qz":1,"pp":1,"wX":1,"o7":1,"mN":1,"AJ":1,"nr":1,"mG":1,"pb":1,"a8f":1,"FO":1,"AB":1,"acc":1,"lz":1,"dd":1,"hB":1,"bN":1,"x2":1,"py":1,"nT":1,"Cd":1,"ph":1,"po":1,"m3":1,"dR":1}')) +var u={q:"\x10@\x100@@\xa0\x80 0P`pPP\xb1\x10@\x100@@\xa0\x80 0P`pPP\xb0\x11@\x100@@\xa0\x80 0P`pPP\xb0\x10@\x100@@\xa0\x80 1P`pPP\xb0\x10A\x101AA\xa1\x81 1QaqQQ\xb0\x10@\x100@@\xa0\x80 1Q`pPP\xb0\x10@\x100@@\xa0\x80 1QapQP\xb0\x10@\x100@@\xa0\x80 1PaqQQ\xb0\x10\xe0\x100@@\xa0\x80 1P`pPP\xb0\xb1\xb1\xb1\xb1\x91\xb1\xc1\x81\xb1\xb1\xb1\xb1\xb1\xb1\xb1\xb1\x10@\x100@@\xd0\x80 1P`pPP\xb0\x11A\x111AA\xa1\x81!1QaqQQ\xb1\x10@\x100@@\x90\x80 1P`pPP\xb0",S:" 0\x10000\xa0\x80\x10@P`p`p\xb1 0\x10000\xa0\x80\x10@P`p`p\xb0 0\x10000\xa0\x80\x11@P`p`p\xb0 1\x10011\xa0\x80\x10@P`p`p\xb0 1\x10111\xa1\x81\x10AQaqaq\xb0 1\x10011\xa0\x80\x10@Qapaq\xb0 1\x10011\xa0\x80\x10@Paq`p\xb0 1\x10011\xa0\x80\x10@P`q`p\xb0 \x91\x100\x811\xa0\x80\x10@P`p`p\xb0 1\x10011\xa0\x81\x10@P`p`p\xb0 1\x100111\x80\x10@P`p`p\xb0!1\x11111\xa1\x81\x11AQaqaq\xb1",r:'"recorder" must not already be associated with another Canvas.',T:"% of the way to being a CircleBorder that is ",K:"00000008A0009!B000a!C000b000cD000d!E000e000vA000w!F000x!G000y!H000z!I0010!J0011!K0012!I0013!H0014!L0015!M0016!I0017!J0018!N0019!O001a!N001b!P001c001lQ001m001nN001o001qI001r!G001s002iI002j!L002k!J002l!M002m003eI003f!L003g!B003h!R003i!I003j003oA003p!D003q004fA004g!S004h!L004i!K004j004lJ004m004qI004r!H004s!I004t!B004u004vI004w!K004x!J004y004zI0050!T00510056I0057!H0058005aI005b!L005c00jrI00js!T00jt00jvI00jw!T00jx00keI00kf!T00kg00lbI00lc00niA00nj!S00nk00nvA00nw00o2S00o300ofA00og00otI00ou!N00ov00w2I00w300w9A00wa013cI013d!N013e!B013h013iI013j!J013l014tA014u!B014v!A014w!I014x014yA014z!I01500151A0152!G0153!A015c0162U0167016aU016b016wI016x016zK01700171N01720173I0174017eA017f!G017g!A017i017jG017k018qI018r019bA019c019lQ019m!K019n019oQ019p019rI019s!A019t01cjI01ck!G01cl!I01cm01csA01ct01cuI01cv01d0A01d101d2I01d301d4A01d5!I01d601d9A01da01dbI01dc01dlQ01dm01e8I01e9!A01ea01f3I01f401fuA01fx01idI01ie01ioA01ip!I01j401jdQ01je01kaI01kb01kjA01kk01knI01ko!N01kp!G01kq!I01kt!A01ku01kvJ01kw01lhI01li01llA01lm!I01ln01lvA01lw!I01lx01lzA01m0!I01m101m5A01m801ncI01nd01nfA01ni01qfI01qr01r5A01r6!I01r701s3A01s401tlI01tm01toA01tp!I01tq01u7A01u8!I01u901ufA01ug01upI01uq01urA01us01utB01uu01v3Q01v401vkI01vl01vnA01vp01x5I01x8!A01x9!I01xa01xgA01xj01xkA01xn01xpA01xq!I01xz!A01y401y9I01ya01ybA01ye01ynQ01yo01ypI01yq01yrK01ys01ywI01yx!K01yy!I01yz!J01z001z1I01z2!A01z501z7A01z9020pI020s!A020u020yA02130214A02170219A021d!A021l021qI021y0227Q02280229A022a022cI022d!A022e!I022p022rA022t0249I024c!A024d!I024e024lA024n024pA024r024tA024w025dI025e025fA025i025rQ025s!I025t!J0261!I02620267A0269026bA026d027tI027w!A027x!I027y0284A02870288A028b028dA028l028nA028s028xI028y028zA0292029bQ029c029jI029u!A029v02bdI02bi02bmA02bq02bsA02bu02bxA02c0!I02c7!A02cm02cvQ02cw02d4I02d5!J02d6!I02dc02dgA02dh02f1I02f202f8A02fa02fcA02fe02fhA02fp02fqA02fs02g1I02g202g3A02g602gfQ02gn!T02go02gwI02gx02gzA02h0!T02h102ihI02ik!A02il!I02im02isA02iu02iwA02iy02j1A02j902jaA02ji02jlI02jm02jnA02jq02jzQ02k102k2I02kg02kjA02kk02m2I02m302m4A02m5!I02m602mcA02me02mgA02mi02mlA02mm02muI02mv!A02mw02n5I02n602n7A02na02njQ02nk02nsI02nt!K02nu02nzI02o102o3A02o502pyI02q2!A02q702qcA02qe!A02qg02qnA02qu02r3Q02r602r7A02r802t6I02tb!J02tc02trI02ts02u1Q02u202u3B02v502x9I02xc02xlQ02xo02yoI02yp02ysT02yt!I02yu02yvT02yw!S02yx02yyT02yz!B02z0!S02z102z5G02z6!S02z7!I02z8!G02z902zbI02zc02zdA02ze02zjI02zk02ztQ02zu0303I0304!B0305!A0306!I0307!A0308!I0309!A030a!L030b!R030c!L030d!R030e030fA030g031oI031t0326A0327!B0328032cA032d!B032e032fA032g032kI032l032vA032x033wA033y033zB03400345I0346!A0347034fI034g034hT034i!B034j!T034k034oI034p034qS035s037jI037k037tQ037u037vB037w039rI039s03a1Q03a203cvI03cw03fjV03fk03hjW03hk03jzX03k003tmI03tp03trA03ts!I03tt!B03tu03y5I03y8!B03y904fzI04g0!B04g104gqI04gr!L04gs!R04gw04iyI04iz04j1B04j204k1I04k204k4A04kg04kxI04ky04l0A04l104l2B04lc04ltI04lu04lvA04m804moI04mq04mrA04n404pfI04pg04phB04pi!Y04pj!I04pk!B04pl!I04pm!B04pn!J04po04ppI04ps04q1Q04q804qpI04qq04qrG04qs04qtB04qu!T04qv!I04qw04qxG04qy!I04qz04r1A04r2!S04r404rdQ04rk04ucI04ud04ueA04uf04vcI04vd!A04ve04ymI04yo04yzA04z404zfA04zk!I04zo04zpG04zq04zzQ0500053dI053k053tQ053u055iI055j055nA055q058cI058f!A058g058pQ058w0595Q059c059pI059s05a8A05c005c4A05c505dfI05dg05dwA05dx05e3I05e805ehQ05ei05ejB05ek!I05el05eoB05ep05eyI05ez05f7A05f805fgI05fk05fmA05fn05ggI05gh05gtA05gu05gvI05gw05h5Q05h605idI05ie05irA05j005k3I05k405knA05kr05kvB05kw05l5Q05l905lbI05lc05llQ05lm05mlI05mm05mnB05mo05onI05ow05oyA05oz!I05p005pkA05pl05poI05pp!A05pq05pvI05pw!A05px05pyI05pz05q1A05q205vjI05vk05x5A05x705xbA05xc06bgI06bh!T06bi!I06bk06bqB06br!S06bs06buB06bv!Z06bw!A06bx!a06by06bzA06c0!B06c1!S06c206c3B06c4!b06c506c7I06c806c9H06ca!L06cb06cdH06ce!L06cf!H06cg06cjI06ck06cmc06cn!B06co06cpD06cq06cuA06cv!S06cw06d3K06d4!I06d506d6H06d7!I06d806d9Y06da06dfI06dg!N06dh!L06di!R06dj06dlY06dm06dxI06dy!B06dz!I06e006e3B06e4!I06e506e7B06e8!d06e906ecI06ee06enA06eo06f0I06f1!L06f2!R06f306fgI06fh!L06fi!R06fk06fwI06g006g6J06g7!K06g806glJ06gm!K06gn06gqJ06gr!K06gs06gtJ06gu!K06gv06hbJ06hc06i8A06io06iqI06ir!K06is06iwI06ix!K06iy06j9I06ja!J06jb06q9I06qa06qbJ06qc06weI06wf!c06wg06x3I06x4!L06x5!R06x6!L06x7!R06x806xlI06xm06xne06xo06y0I06y1!L06y2!R06y3073jI073k073ne073o07i7I07i807ibe07ic07irI07is07ite07iu07ivI07iw!e07ix!I07iy07j0e07j1!f07j207j3e07j407jsI07jt07jve07jw07l3I07l4!e07l507lqI07lr!e07ls07ngI07nh07nse07nt07nwI07nx!e07ny!I07nz07o1e07o2!I07o307o4e07o507o7I07o807o9e07oa07obI07oc!e07od07oeI07of07ohe07oi07opI07oq!e07or07owI07ox07p1e07p2!I07p307p4e07p5!f07p6!e07p707p8I07p907pge07ph07pjI07pk07ple07pm07ppf07pq07ruI07rv07s0H07s1!I07s207s3G07s4!e07s507s7I07s8!L07s9!R07sa!L07sb!R07sc!L07sd!R07se!L07sf!R07sg!L07sh!R07si!L07sj!R07sk!L07sl!R07sm07usI07ut!L07uu!R07uv07vpI07vq!L07vr!R07vs!L07vt!R07vu!L07vv!R07vw!L07vx!R07vy!L07vz!R07w00876I0877!L0878!R0879!L087a!R087b!L087c!R087d!L087e!R087f!L087g!R087h!L087i!R087j!L087k!R087l!L087m!R087n!L087o!R087p!L087q!R087r!L087s!R087t089jI089k!L089l!R089m!L089n!R089o08ajI08ak!L08al!R08am08viI08vj08vlA08vm08vnI08vt!G08vu08vwB08vx!I08vy!G08vz!B08w008z3I08z4!B08zj!A08zk0926I09280933A0934093hH093i093pB093q!I093r!B093s!L093t!B093u093vI093w093xH093y093zI09400941H0942!L0943!R0944!L0945!R0946!L0947!R0948!L0949!R094a094dB094e!G094f!I094g094hB094i!I094j094kB094l094pI094q094rb094s094uB094v!I094w094xB094y!L094z0956B0957!I0958!B0959!I095a095bB095c095eI096o097de097f099ve09a809g5e09gw09h7e09hc!B09hd09heR09hf09hge09hh!Y09hi09hje09hk!L09hl!R09hm!L09hn!R09ho!L09hp!R09hq!L09hr!R09hs!L09ht!R09hu09hve09hw!L09hx!R09hy!L09hz!R09i0!L09i1!R09i2!L09i3!R09i4!Y09i5!L09i609i7R09i809ihe09ii09inA09io09ise09it!A09iu09iye09iz09j0Y09j109j3e09j5!Y09j6!e09j7!Y09j8!e09j9!Y09ja!e09jb!Y09jc!e09jd!Y09je09k2e09k3!Y09k409kye09kz!Y09l0!e09l1!Y09l2!e09l3!Y09l409l9e09la!Y09lb09lge09lh09liY09ll09lmA09ln09lqY09lr!e09ls09ltY09lu!e09lv!Y09lw!e09lx!Y09ly!e09lz!Y09m0!e09m1!Y09m209mqe09mr!Y09ms09nme09nn!Y09no!e09np!Y09nq!e09nr!Y09ns09nxe09ny!Y09nz09o4e09o509o6Y09o709oae09ob09oeY09of!e09ol09pre09pt09see09sg09ure09v409vjY09vk09wee09wg09xje09xk09xrI09xs0fcve0fcw0fenI0feo0vmce0vmd!Y0vme0wi4e0wi80wjqe0wk00wl9I0wla0wlbB0wlc0wssI0wst!B0wsu!G0wsv!B0wsw0wtbI0wtc0wtlQ0wtm0wviI0wvj0wvmA0wvn!I0wvo0wvxA0wvy0wwtI0wwu0wwvA0www0wz3I0wz40wz5A0wz6!I0wz70wzbB0wzk0x6pI0x6q!A0x6r0x6tI0x6u!A0x6v0x6yI0x6z!A0x700x7mI0x7n0x7rA0x7s0x7vI0x7w!A0x800x87I0x88!K0x890x9vI0x9w0x9xT0x9y0x9zG0xa80xa9A0xaa0xbnI0xbo0xc5A0xce0xcfB0xcg0xcpQ0xcw0xddA0xde0xdnI0xdo!T0xdp0xdqI0xdr!A0xds0xe1Q0xe20xetI0xeu0xf1A0xf20xf3B0xf40xfqI0xfr0xg3A0xgf!I0xgg0xh8V0xhc0xhfA0xhg0xiqI0xir0xj4A0xj50xjaI0xjb0xjdB0xje0xjjI0xjk0xjtQ0xjy0xkfI0xkg0xkpQ0xkq0xm0I0xm10xmeA0xmo0xmqI0xmr!A0xms0xmzI0xn00xn1A0xn40xndQ0xng!I0xnh0xnjB0xnk0xreI0xrf0xrjA0xrk0xrlB0xrm0xroI0xrp0xrqA0xs10xyaI0xyb0xyiA0xyj!B0xyk0xylA0xyo0xyxQ0xz4!g0xz50xzvh0xzw!g0xzx0y0nh0y0o!g0y0p0y1fh0y1g!g0y1h0y27h0y28!g0y290y2zh0y30!g0y310y3rh0y3s!g0y3t0y4jh0y4k!g0y4l0y5bh0y5c!g0y5d0y63h0y64!g0y650y6vh0y6w!g0y6x0y7nh0y7o!g0y7p0y8fh0y8g!g0y8h0y97h0y98!g0y990y9zh0ya0!g0ya10yarh0yas!g0yat0ybjh0ybk!g0ybl0ycbh0ycc!g0ycd0yd3h0yd4!g0yd50ydvh0ydw!g0ydx0yenh0yeo!g0yep0yffh0yfg!g0yfh0yg7h0yg8!g0yg90ygzh0yh0!g0yh10yhrh0yhs!g0yht0yijh0yik!g0yil0yjbh0yjc!g0yjd0yk3h0yk4!g0yk50ykvh0ykw!g0ykx0ylnh0ylo!g0ylp0ymfh0ymg!g0ymh0yn7h0yn8!g0yn90ynzh0yo0!g0yo10yorh0yos!g0yot0ypjh0ypk!g0ypl0yqbh0yqc!g0yqd0yr3h0yr4!g0yr50yrvh0yrw!g0yrx0ysnh0yso!g0ysp0ytfh0ytg!g0yth0yu7h0yu8!g0yu90yuzh0yv0!g0yv10yvrh0yvs!g0yvt0ywjh0ywk!g0ywl0yxbh0yxc!g0yxd0yy3h0yy4!g0yy50yyvh0yyw!g0yyx0yznh0yzo!g0yzp0z0fh0z0g!g0z0h0z17h0z18!g0z190z1zh0z20!g0z210z2rh0z2s!g0z2t0z3jh0z3k!g0z3l0z4bh0z4c!g0z4d0z53h0z54!g0z550z5vh0z5w!g0z5x0z6nh0z6o!g0z6p0z7fh0z7g!g0z7h0z87h0z88!g0z890z8zh0z90!g0z910z9rh0z9s!g0z9t0zajh0zak!g0zal0zbbh0zbc!g0zbd0zc3h0zc4!g0zc50zcvh0zcw!g0zcx0zdnh0zdo!g0zdp0zefh0zeg!g0zeh0zf7h0zf8!g0zf90zfzh0zg0!g0zg10zgrh0zgs!g0zgt0zhjh0zhk!g0zhl0zibh0zic!g0zid0zj3h0zj4!g0zj50zjvh0zjw!g0zjx0zknh0zko!g0zkp0zlfh0zlg!g0zlh0zm7h0zm8!g0zm90zmzh0zn0!g0zn10znrh0zns!g0znt0zojh0zok!g0zol0zpbh0zpc!g0zpd0zq3h0zq4!g0zq50zqvh0zqw!g0zqx0zrnh0zro!g0zrp0zsfh0zsg!g0zsh0zt7h0zt8!g0zt90ztzh0zu0!g0zu10zurh0zus!g0zut0zvjh0zvk!g0zvl0zwbh0zwc!g0zwd0zx3h0zx4!g0zx50zxvh0zxw!g0zxx0zynh0zyo!g0zyp0zzfh0zzg!g0zzh1007h1008!g1009100zh1010!g1011101rh101s!g101t102jh102k!g102l103bh103c!g103d1043h1044!g1045104vh104w!g104x105nh105o!g105p106fh106g!g106h1077h1078!g1079107zh1080!g1081108rh108s!g108t109jh109k!g109l10abh10ac!g10ad10b3h10b4!g10b510bvh10bw!g10bx10cnh10co!g10cp10dfh10dg!g10dh10e7h10e8!g10e910ezh10f0!g10f110frh10fs!g10ft10gjh10gk!g10gl10hbh10hc!g10hd10i3h10i4!g10i510ivh10iw!g10ix10jnh10jo!g10jp10kfh10kg!g10kh10l7h10l8!g10l910lzh10m0!g10m110mrh10ms!g10mt10njh10nk!g10nl10obh10oc!g10od10p3h10p4!g10p510pvh10pw!g10px10qnh10qo!g10qp10rfh10rg!g10rh10s7h10s8!g10s910szh10t0!g10t110trh10ts!g10tt10ujh10uk!g10ul10vbh10vc!g10vd10w3h10w4!g10w510wvh10ww!g10wx10xnh10xo!g10xp10yfh10yg!g10yh10z7h10z8!g10z910zzh1100!g1101110rh110s!g110t111jh111k!g111l112bh112c!g112d1133h1134!g1135113vh113w!g113x114nh114o!g114p115fh115g!g115h1167h1168!g1169116zh1170!g1171117rh117s!g117t118jh118k!g118l119bh119c!g119d11a3h11a4!g11a511avh11aw!g11ax11bnh11bo!g11bp11cfh11cg!g11ch11d7h11d8!g11d911dzh11e0!g11e111erh11es!g11et11fjh11fk!g11fl11gbh11gc!g11gd11h3h11h4!g11h511hvh11hw!g11hx11inh11io!g11ip11jfh11jg!g11jh11k7h11k8!g11k911kzh11l0!g11l111lrh11ls!g11lt11mjh11mk!g11ml11nbh11nc!g11nd11o3h11o4!g11o511ovh11ow!g11ox11pnh11po!g11pp11qfh11qg!g11qh11r7h11r8!g11r911rzh11s0!g11s111srh11ss!g11st11tjh11tk!g11tl11ubh11uc!g11ud11v3h11v4!g11v511vvh11vw!g11vx11wnh11wo!g11wp11xfh11xg!g11xh11y7h11y8!g11y911yzh11z0!g11z111zrh11zs!g11zt120jh120k!g120l121bh121c!g121d1223h1224!g1225122vh122w!g122x123nh123o!g123p124fh124g!g124h1257h1258!g1259125zh1260!g1261126rh126s!g126t127jh127k!g127l128bh128c!g128d1293h1294!g1295129vh129w!g129x12anh12ao!g12ap12bfh12bg!g12bh12c7h12c8!g12c912czh12d0!g12d112drh12ds!g12dt12ejh12ek!g12el12fbh12fc!g12fd12g3h12g4!g12g512gvh12gw!g12gx12hnh12ho!g12hp12ifh12ig!g12ih12j7h12j8!g12j912jzh12k0!g12k112krh12ks!g12kt12ljh12lk!g12ll12mbh12mc!g12md12n3h12n4!g12n512nvh12nw!g12nx12onh12oo!g12op12pfh12pg!g12ph12q7h12q8!g12q912qzh12r0!g12r112rrh12rs!g12rt12sjh12sk!g12sl12tbh12tc!g12td12u3h12u4!g12u512uvh12uw!g12ux12vnh12vo!g12vp12wfh12wg!g12wh12x7h12x8!g12x912xzh12y0!g12y112yrh12ys!g12yt12zjh12zk!g12zl130bh130c!g130d1313h1314!g1315131vh131w!g131x132nh132o!g132p133fh133g!g133h1347h1348!g1349134zh1350!g1351135rh135s!g135t136jh136k!g136l137bh137c!g137d1383h1384!g1385138vh138w!g138x139nh139o!g139p13afh13ag!g13ah13b7h13b8!g13b913bzh13c0!g13c113crh13cs!g13ct13djh13dk!g13dl13ebh13ec!g13ed13f3h13f4!g13f513fvh13fw!g13fx13gnh13go!g13gp13hfh13hg!g13hh13i7h13i8!g13i913izh13j0!g13j113jrh13js!g13jt13kjh13kk!g13kl13lbh13lc!g13ld13m3h13m4!g13m513mvh13mw!g13mx13nnh13no!g13np13ofh13og!g13oh13p7h13p8!g13p913pzh13q0!g13q113qrh13qs!g13qt13rjh13rk!g13rl13sbh13sc!g13sd13t3h13t4!g13t513tvh13tw!g13tx13unh13uo!g13up13vfh13vg!g13vh13w7h13w8!g13w913wzh13x0!g13x113xrh13xs!g13xt13yjh13yk!g13yl13zbh13zc!g13zd1403h1404!g1405140vh140w!g140x141nh141o!g141p142fh142g!g142h1437h1438!g1439143zh1440!g1441144rh144s!g144t145jh145k!g145l146bh146c!g146d1473h1474!g1475147vh147w!g147x148nh148o!g148p149fh149g!g149h14a7h14a8!g14a914azh14b0!g14b114brh14bs!g14bt14cjh14ck!g14cl14dbh14dc!g14dd14e3h14e4!g14e514evh14ew!g14ex14fnh14fo!g14fp14gfh14gg!g14gh14h7h14h8!g14h914hzh14i0!g14i114irh14is!g14it14jjh14jk!g14jl14kbh14kc!g14kd14l3h14l4!g14l514lvh14lw!g14lx14mnh14mo!g14mp14nfh14ng!g14nh14o7h14o8!g14o914ozh14p0!g14p114prh14ps!g14pt14qjh14qk!g14ql14rbh14rc!g14rd14s3h14s4!g14s514svh14sw!g14sx14tnh14to!g14tp14ufh14ug!g14uh14v7h14v8!g14v914vzh14w0!g14w114wrh14ws!g14wt14xjh14xk!g14xl14ybh14yc!g14yd14z3h14z4!g14z514zvh14zw!g14zx150nh150o!g150p151fh151g!g151h1527h1528!g1529152zh1530!g1531153rh153s!g153t154jh154k!g154l155bh155c!g155d1563h1564!g1565156vh156w!g156x157nh157o!g157p158fh158g!g158h1597h1598!g1599159zh15a0!g15a115arh15as!g15at15bjh15bk!g15bl15cbh15cc!g15cd15d3h15d4!g15d515dvh15dw!g15dx15enh15eo!g15ep15ffh15fg!g15fh15g7h15g8!g15g915gzh15h0!g15h115hrh15hs!g15ht15ijh15ik!g15il15jbh15jc!g15jd15k3h15k4!g15k515kvh15kw!g15kx15lnh15lo!g15lp15mfh15mg!g15mh15n7h15n8!g15n915nzh15o0!g15o115orh15os!g15ot15pjh15pk!g15pl15qbh15qc!g15qd15r3h15r4!g15r515rvh15rw!g15rx15snh15so!g15sp15tfh15tg!g15th15u7h15u8!g15u915uzh15v0!g15v115vrh15vs!g15vt15wjh15wk!g15wl15xbh15xc!g15xd15y3h15y4!g15y515yvh15yw!g15yx15znh15zo!g15zp160fh160g!g160h1617h1618!g1619161zh1620!g1621162rh162s!g162t163jh163k!g163l164bh164c!g164d1653h1654!g1655165vh165w!g165x166nh166o!g166p167fh167g!g167h1687h1688!g1689168zh1690!g1691169rh169s!g169t16ajh16ak!g16al16bbh16bc!g16bd16c3h16c4!g16c516cvh16cw!g16cx16dnh16do!g16dp16efh16eg!g16eh16f7h16f8!g16f916fzh16g0!g16g116grh16gs!g16gt16hjh16hk!g16hl16ibh16ic!g16id16j3h16j4!g16j516jvh16jw!g16jx16knh16ko!g16kp16lfh16ls16meW16mj16nvX16o01d6nI1d6o1dkve1dkw1dljI1dlp!U1dlq!A1dlr1dm0U1dm1!I1dm21dmeU1dmg1dmkU1dmm!U1dmo1dmpU1dmr1dmsU1dmu1dn3U1dn41e0tI1e0u!R1e0v!L1e1c1e63I1e64!K1e65!I1e681e6nA1e6o!N1e6p1e6qR1e6r1e6sN1e6t1e6uG1e6v!L1e6w!R1e6x!c1e741e7jA1e7k1e7oe1e7p!L1e7q!R1e7r!L1e7s!R1e7t!L1e7u!R1e7v!L1e7w!R1e7x!L1e7y!R1e7z!L1e80!R1e81!L1e82!R1e83!L1e84!R1e851e86e1e87!L1e88!R1e891e8fe1e8g!R1e8h!e1e8i!R1e8k1e8lY1e8m1e8nG1e8o!e1e8p!L1e8q!R1e8r!L1e8s!R1e8t!L1e8u!R1e8v1e92e1e94!e1e95!J1e96!K1e97!e1e9c1ed8I1edb!d1edd!G1ede1edfe1edg!J1edh!K1edi1edje1edk!L1edl!R1edm1edne1edo!R1edp!e1edq!R1edr1ee1e1ee21ee3Y1ee41ee6e1ee7!G1ee81eeye1eez!L1ef0!e1ef1!R1ef21efue1efv!L1efw!e1efx!R1efy!e1efz!L1eg01eg1R1eg2!L1eg31eg4R1eg5!Y1eg6!e1eg71eggY1egh1ehpe1ehq1ehrY1ehs1eime1eiq1eive1eiy1ej3e1ej61ejbe1eje1ejge1ejk!K1ejl!J1ejm1ejoe1ejp1ejqJ1ejs1ejyI1ek91ekbA1ekc!i1ekd1ereI1erk1ermB1err1eykI1eyl!A1f281f4gI1f4w!A1f4x1f91I1f921f96A1f9c1fa5I1fa7!B1fa81fbjI1fbk!B1fbl1fh9I1fhc1fhlQ1fhs1g7pI1g7r!B1g7s1gd7I1gdb!B1gdc1gjkI1gjl1gjnA1gjp1gjqA1gjw1gjzA1gk01gl1I1gl41gl6A1glb!A1glc1glkI1gls1glzB1gm01gpwI1gpx1gpyA1gq31gq7I1gq81gqdB1gqe!c1gqo1gs5I1gs91gsfB1gsg1h5vI1h5w1h5zA1h681h6hQ1heo1hgpI1hgr1hgsA1hgt!B1hgw1hl1I1hl21hlcA1hld1hpyI1hq81hqaA1hqb1hrrI1hrs1hs6A1hs71hs8B1hs91ht1I1ht21htbQ1htr1htuA1htv1hv3I1hv41hveA1hvf1hvhI1hvi1hvlB1hvx1hwoI1hww1hx5Q1hxc1hxeA1hxf1hyeI1hyf1hysA1hyu1hz3Q1hz41hz7B1hz8!I1hz91hzaA1hzb1i0iI1i0j!A1i0k!I1i0l!T1i0m!I1i0w1i0yA1i0z1i2aI1i2b1i2oA1i2p1i2sI1i2t1i2uB1i2v!I1i2w!B1i2x1i30A1i31!I1i321i33A1i341i3dQ1i3e!I1i3f!T1i3g!I1i3h1i3jB1i3l1i5nI1i5o1i5zA1i601i61B1i62!I1i631i64B1i65!I1i66!A1i801i94I1i95!B1i9c1iamI1ian1iayA1ib41ibdQ1ibk1ibnA1ibp1id5I1id71id8A1id9!I1ida1idgA1idj1idkA1idn1idpA1ids!I1idz!A1ie51ie9I1iea1iebA1iee1iekA1ieo1iesA1iio1ik4I1ik51ikmA1ikn1ikqI1ikr1ikuB1ikv!I1ikw1il5Q1il61il7B1il9!I1ila!A1ilb1injI1ink1io3A1io41io7I1iog1iopQ1itc1iumI1iun1iutA1iuw1iv4A1iv5!T1iv61iv7B1iv81iv9G1iva1ivcI1ivd1ivrB1ivs1ivvI1ivw1ivxA1iww1iy7I1iy81iyoA1iyp1iyqB1iyr1iysI1iz41izdQ1izk1izwT1j0g1j1mI1j1n1j1zA1j20!I1j281j2hQ1j401j57I1j5c1j5lQ1j5m1j5nI1j5o1j5qB1j5r1jcbI1jcc1jcqA1jcr1jhbI1jhc1jhlQ1jhm1jjjI1jjk1jjpA1jjr1jjsA1jjv1jjyA1jjz!I1jk0!A1jk1!I1jk21jk3A1jk41jk6B1jkg1jkpQ1jmo1jo0I1jo11jo7A1joa1jogA1joh!I1joi!T1joj!I1jok!A1jpc!I1jpd1jpmA1jpn1jqqI1jqr1jqxA1jqy!I1jqz1jr2A1jr3!T1jr4!I1jr51jr8B1jr9!T1jra!I1jrb!A1jrk!I1jrl1jrvA1jrw1jt5I1jt61jtlA1jtm1jtoB1jtp!I1jtq1jtsT1jtt1jtuB1juo1k4uI1k4v1k52A1k541k5bA1k5c!I1k5d1k5hB1k5s1k61Q1k621k6kI1k6o!T1k6p!G1k6q1k7jI1k7m1k87A1k891k8mA1kao1kc0I1kc11kc6A1kca!A1kcc1kcdA1kcf1kclA1kcm!I1kcn!A1kcw1kd5Q1kdc1kehI1kei1kemA1keo1kepA1ker1kevA1kew!I1kf41kfdQ1ko01koiI1koj1komA1kon1kv0I1kv11kv4K1kv51kvlI1kvz!B1kw01lriI1lrk1lroB1ls01oifI1oig1oiiL1oij1oilR1oim1ojlI1ojm!R1ojn1ojpI1ojq!L1ojr!R1ojs!L1ojt!R1oju1oqgI1oqh!L1oqi1oqjR1oqk1oviI1ovk1ovqS1ovr!L1ovs!R1s001sctI1scu!L1scv!R1scw1zkuI1zkw1zl5Q1zla1zlbB1zo01zotI1zow1zp0A1zp1!B1zpc1zqnI1zqo1zquA1zqv1zqxB1zqy1zr7I1zr8!B1zr9!I1zrk1zrtQ1zrv20euI20ev20ewB20ex20juI20jz!A20k0!I20k120ljA20lr20luA20lv20m7I20o020o3Y20o4!S20og20ohA20ow25fbe25fk260ve260w26dxI26f426fce2dc02djye2dlc2dleY2dlw2dlzY2dm82dx7e2fpc2ftoI2ftp2ftqA2ftr!B2fts2ftvA2jnk2jxgI2jxh2jxlA2jxm2jxoI2jxp2jyaA2jyb2jycI2jyd2jyjA2jyk2jzdI2jze2jzhA2jzi2k3lI2k3m2k3oA2k3p2l6zI2l722l8fQ2l8g2lmnI2lmo2lo6A2lo72loaI2lob2lpoA2lpp2lpwI2lpx!A2lpy2lqbI2lqc!A2lqd2lqeI2lqf2lqiB2lqj!I2lqz2lr3A2lr52lrjA2mtc2mtiA2mtk2mu0A2mu32mu9A2mub2mucA2mue2muiA2n0g2n1oI2n1s2n1yA2n1z2n25I2n282n2hQ2n2m2ne3I2ne42ne7A2ne82nehQ2nen!J2oe82ojzI2ok02ok6A2olc2on7I2on82oneA2onf!I2onk2ontQ2ony2onzL2p9t2pbfI2pbg!K2pbh2pbjI2pbk!K2pbl2prlI2pz42q67e2q682q6kI2q6l2q6ne2q6o2q98I2q992q9be2q9c2qb0I2qb12qcle2qcm2qdbj2qdc2qo4e2qo5!f2qo62qore2qos2qotI2qou2qpge2qph2qpiI2qpj2qpne2qpo!I2qpp2qpte2qpu2qpwf2qpx2qpye2qpz!f2qq02qq1e2qq22qq4f2qq52qree2qrf2qrjk2qrk2qtde2qte2qtff2qtg2qthe2qti2qtsf2qtt2qude2que2quwf2qux2quze2qv0!f2qv12qv4e2qv52qv7f2qv8!e2qv92qvbf2qvc2qvie2qvj!f2qvk!e2qvl!f2qvm2qvze2qw0!I2qw1!e2qw2!I2qw3!e2qw4!I2qw52qw9e2qwa!f2qwb2qwee2qwf!I2qwg!e2qwh2qwiI2qwj2qyne2qyo2qyuI2qyv2qzae2qzb2qzoI2qzp2r01e2r022r0pI2r0q2r1ve2r1w2r1xf2r1y2r21e2r22!f2r232r2ne2r2o!f2r2p2r2se2r2t2r2uf2r2v2r4je2r4k2r4rI2r4s2r5fe2r5g2r5lI2r5m2r7oe2r7p2r7rf2r7s2r7ue2r7v2r7zf2r802r91I2r922r94H2r952r97Y2r982r9bI2r9c2raae2rab!f2rac2rare2ras2rauf2rav2rb3e2rb4!f2rb52rbfe2rbg!f2rbh2rcve2rcw2rg3I2rg42rgfe2rgg2risI2rit2rjze2rk02rkbI2rkc2rkfe2rkg2rlzI2rm02rm7e2rm82rmhI2rmi2rmne2rmo2rnrI2rns2rnze2ro02rotI2rou2rr3e2rr42rrfI2rrg!f2rrh2rrie2rrj!f2rrk2rrre2rrs2rrzf2rs02rs5e2rs6!f2rs72rsfe2rsg2rspf2rsq2rsre2rss2rsuf2rsv2ruee2ruf!f2rug2rw4e2rw52rw6f2rw7!e2rw82rw9f2rwa!e2rwb!f2rwc2rwse2rwt2rwvf2rww!e2rwx2rx9f2rxa2ry7e2ry82s0jI2s0k2s5be2s5c2sayI2sc02sc9Q2scg2t4te2t4w47p9e47pc5m9pejny9!Ajnz4jo1rAjo5cjobzAl2ionvnhI",I:'E533333333333333333333333333DDDDDDD4333333333333333333334C43333CD53333333333333333333333UEDTE4\x933343333\x933333333333333333333333333D433333333333333333CDDEDDD43333333S5333333333333333333333C333333D533333333333333333333333SUDDDDT5\x9933CD4E333333333333333333333333UEDDDDE433333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333TUUS5CT\x94\x95E3333333333333333333333333333333333333333333333333333333333333333333333SUDD3DUU43533333333333333333C3333333333333w733337333333s3333333w7333333333w33333333333333333333CDDTETE43333ED4S5SE3333C33333D33333333333334E433C3333333C33333333333333333333333333333CETUTDT533333CDDDDDDDDDD3333333343333333D$433333333333333333333333SUDTEE433C34333333333333333333333333333333333333333333333333333333333333333333333333333333TUDDDD3333333333CT5333333333333333333333333333DCEUU3U3U5333343333S5CDDD3CDD333333333333333333333333333333333333333333333333333333333333333333333s73333s33333333333""""""""333333339433333333333333CDDDDDDDDDDDDDDDD3333333CDDDDDDDDDDD\x94DDDDDDDDDDDDDDDDDDDDDDDD33333333DDDDDDDD3333333373s333333333333333333333333333333CDTDDDCTE43C4CD3C333333333333333D3C33333\xee\xee\xed\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xed\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xed\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee333333\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb33\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc<3sww73333swwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww7333swwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww7333333w7333333333333333733333333333333333333333333333sww733333s7333333s3wwwww333333333wwwwwwwwwwwwwwwwwwwwwwwwwwwwgffffffffffffvww7wwwwwwswwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww733333333333333333333333swwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww7333333333333333333333333333333333333333333333333333333333swwwww7333333333333333333333333333333333333333333wwwwwwwwwwwwwwwwwwwww7swwwwwss33373733s33333w33333CT333333333333333EDTETD433333333#\x14"333333333333"""233333373ED4U5UE9333C33333D33333333333333www3333333s73333333333EEDDDCC3DDDDUUUDDDDD3T5333333333333333333333333333CCU3333333333333333333333333333334EDDD33SDD4D5U4333333333C43333333333CDDD9DDD3DCD433333333C433333333333333C433333333333334443SEUCUSE4333D33333C43333333533333CU33333333333333333333333333334EDDDD3CDDDDDDDDDDDDDDDDDDDDDDDDDDD33DDDDDDDDDDDDDDDDDDDDDDDDD33334333333C33333333333DD4DDDDDDD433333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CSUUUUUUUUUUUUUUUUUUUUUUUUUUU333CD43333333333333333333333333333333333333333433333U3333333333333333333333333UUUUUUTEDDDDD3333C3333333333333333373333333333s333333333333swwwww33w733wwwwwww73333s33333333337swwwwsw73333wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwDD4D33CDDDDDCDDDDDDDDDDDDDDDDD43EDDDTUEUCDDD33333D33333333333333DDCDDDDCDCDD333333333DT33333333333333D5333333333333333333333333333CSUE4333333333333CDDDDDDDD4333333DT33333333333333333333333CUDDUDU3SUSU43333433333333333333333333ET533E3333SDD3U3U4333D43333C43333333333333s733333s33333333333CTE333333333333333333UUUUDDDDUD3333"""""(\x02"""""""""3333333333333333333DDDD333333333333333333333333CDDDD3333C3333T333333333333333333333334343C33333333333SET334333333333DDDDDDDDDDDDDDDDDDDDDD4DDDDDDDD4CDDDC4DD43333333333333333333333333333333333333333333333333C33333333333333333333333333333333333333333333333333333333333333333333333333333333DDD433333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333334333333333333333333333333333333DD3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333DD433333333333333333333333333333DDD43333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333DDDDDDD533333333333333333333333DDDTTU5D4DD333C433333D333333333333333333333DDD733333s373ss33w7733333ww733333333333ss33333333333333333333333333333ww3333333333333333333333333333wwww33333www33333333333333333333wwww333333333333333wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww333333wwwwwwwwwwwwwwwwwwwwwww7wwwwwswwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww73333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333C4""333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333DD3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333DDD4333333333333333333333333333333333333333333333333333333DDD4333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333UEDDDTEE43333333333333333333333333333333333333333333333333333CEUDDDE33333333333333333333333333333333333333333333333333CD3DDEDD3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333EDDDCDDT43333333333333333333333333333333333333333CDDDDDDDDDD4EDDDETD3333333333333333333333333333333333333333333333333333333333333DDD3CC4DDD\x94433333333333333333333333333333333SUUC4UT4333333333333333333333333333333333333333333333333333#"""""""B333DDDDDDD433333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CED3SDD$"""BDDD4CDDD333333333333333DD33333333333333333333333333333333333333333DEDDDUE333333333333333333333333333CCD3D33CD533333333333333333333333333CESEU3333333333333333333DDDD433333CU33333333333333333333333333334DC44333333333333333333333333333CD4DDDDD33333333333333333333DDD\x95DD333343333DDDUD43333333333333333333\x93\x99\x99IDDDDDDE43333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CDDDDDDDDDDDDDDDDDDDDDD4CDDDDDDDDDDD33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CD3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333433333333333333333333333333333333333333333333333333333333333333333333333333DD4333333333333333333333333333333333333333333333333333333333333333333""""""33D4D33CD43333333333333333333CD3343333333333333333333333333333333333333333333333333333333333333333333333333333333333D33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CT53333DY333333333333333333333333UDD43UT43333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333D3333333333333333333333333333333333333333D43333333333333333333333333333333333CDDDDD333333333333333333333333CD4333333333333333333333333333333333333333333333333333333333333SUDDDDUDT43333333333343333333333333333333333333333333333333333TEDDTTEETD333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CUDD3UUDE43333333333333D3333333333333333343333333333SE43CD33333333DD33333C33TEDCSUUU433333333S533333CDDDDDU333333\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa:3\x99\x99\x9933333DDDDD4233333333333333333UTEUS433333333CDCDDDDDDEDDD33433C3E433#"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""BDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD$"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""BDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD$"""""""""""""""2333373r33333333\x93933CDDD4333333333333333CDUUDU53SEUUUD43\xa3\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xba\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xcb\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\f',w:"Error handler must accept one Object or one Object and a StackTrace as arguments, and return a value of the returned future's type",V:"Stream has been disposed.\nAn ImageStream is considered disposed once at least one listener has been added and subsequently all listeners have been removed and no handles are outstanding from the keepAlive method.\nTo resolve this error, maintain at least one listener on the stream, or create an ImageStreamCompleterHandle from the keepAlive method, or create a new stream for the image.",p:"SystemChrome.setApplicationSwitcherDescription",E:'There are several ways to avoid this problem. The simplest is to use a Builder to get a context that is "under" the Scaffold. For an example of this, please see the documentation for Scaffold.of():\n https://api.flutter.dev/flutter/material/Scaffold/of.html',u:"There was a problem trying to load FontManifest.json",y:"gl_Position = ((u_ctransform * position) * u_scale) + u_shift;",N:"\u1ac4\u2bb8\u411f\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u3f4f\u0814\u32b6\u32b6\u32b6\u32b6\u1f81\u32b6\u32b6\u32b6\u1bbb\u2f6f\u3cc2\u051e\u32b6\u11d3\u079b\u2c12\u3967\u1b18\u18aa\u392b\u414f\u07f1\u2eb5\u1880\u1123\u047a\u1909\u08c6\u1909\u11af\u2f32\u1a19\u04d1\u19c3\u2e6b\u209a\u1298\u1259\u0667\u108e\u1160\u3c49\u116f\u1b03\u12a3\u1f7c\u121b\u2023\u1840\u34b0\u088a\u3c13\u04b6\u32b6\u41af\u41cf\u41ef\u4217\u32b6\u32b6\u32b6\u32b6\u32b6\u3927\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u18d8\u1201\u2e2e\u15be\u0553\u32b6\u3be9\u32b6\u416f\u32b6\u32b6\u32b6\u1a68\u10e5\u2a59\u2c0e\u205e\u2ef3\u1019\u04e9\u1a84\u32b6\u32b6\u3d0f\u32b6\u32b6\u32b6\u3f4f\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u104e\u076a\u32b6\u07bb\u15dc\u32b6\u10ba\u32b6\u32b6\u32b6\u32b6\u32b6\u1a3f\u32b6\u0cf2\u1606\u32b6\u32b6\u32b6\u0877\u32b6\u32b6\u073d\u2139\u0dcb\u0bcb\u09b3\u0bcb\u0fd9\u20f7\u03e3\u32b6\u32b6\u32b6\u32b6\u32b6\u0733\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u041d\u0864\u32b6\u32b6\u32b6\u32b6\u32b6\u3915\u32b6\u3477\u32b6\u3193\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u20be\u32b6\u36b1\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u2120\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u2f80\u36ac\u369a\u32b6\u32b6\u32b6\u32b6\u1b8c\u32b6\u1584\u1947\u1ae4\u3c82\u1986\u03b8\u043a\u1b52\u2e77\u19d9\u32b6\u32b6\u32b6\u3cdf\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u093a\u0973\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u3498\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u0834\u32b6\u32b6\u2bb8\u32b6\u32b6\u36ac\u35a6\u32b9\u33d6\u32b6\u32b6\u32b6\u35e5\u24ee\u3847\x00\u0567\u3a12\u2826\u01d4\u2fb3\u29f7\u36f2\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u2bc7\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u1e54\u32b6\u1394\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u2412\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u30b3\u2c62\u3271\u32b6\u32b6\u32b6\u12e3\u32b6\u32b6\u1bf2\u1d44\u2526\u32b6\u2656\u32b6\u32b6\u32b6\u0bcb\u1645\u0a85\u0ddf\u2168\u22af\u09c3\u09c5\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u3f2f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6"} +var t=(function rtii(){var s=A.a_ +return{tH:s("aiz"),nT:s("bf"),bX:s("dZ"),bJ:s("ca"),m:s("ca"),tO:s("pW"),mH:s("q_"),hK:s("kN"),g3:s("Of"),hw:s("eL"),j1:s("yZ"),ql:s("jf"),ak:s("cc"),k:s("aI"),r:s("e_"),l2:s("zh"),B6:s("c3"),ei:s("kS"),wV:s("kS"),sk:s("zl"),CG:s("bR?,c7<@>>"),ig:s("ei"),kh:s("ql"),mD:s("kV"),C:s("mX"),cl:s("zP"),Ar:s("zQ"),lk:s("mY"),mn:s("qn"),bW:s("jk"),m2:s("asu"),dv:s("qo"),ww:s("qp"),sU:s("jn"),gP:s("e0"),iO:s("A"),o6:s("kW"),CA:s("aW"),hD:s("aW"),hq:s("aW"),CI:s("n3"),gz:s("ar>"),h4:s("Ae"),om:s("Af"),gq:s("ajq"),zD:s("i8"),sK:s("qB"),zN:s("asF"),ew:s("fe"),q4:s("ajD"),mA:s("n6"),py:s("ajF"),ux:s("n7"),I:s("eS"),sQ:s("asP"),gs:s("AN"),o5:s("ha"),mF:s("hb"),ya:s("aQ"),F0:s("bU"),he:s("P<@>"),h:s("b1"),m1:s("r1"),yb:s("B1"),pO:s("B2"),vK:s("r2"),yt:s("bm"),A2:s("cX"),yC:s("ie"),uc:s("hc"),Ct:s("rg"),D4:s("Ru"),cE:s("Rv"),b:s("cu"),j5:s("l9"),eT:s("rk"),BO:s("la"),e9:s("ad"),DT:s("ad(u,ay)"),CQ:s("ad()"),o0:s("ad<@>"),pz:s("ad<~>"),sW:s("bq"),xM:s("bq"),bl:s("bq"),Fi:s("bq"),o:s("Bx"),oi:s("cj"),da:s("ck"),p1:s("ck"),ta:s("ck"),on:s("ck"),uX:s("ck"),g0:s("ck"),n_:s("ck"),Fz:s("ck"),e_:s("ck"),ob:s("lc"),uY:s("he>"),yh:s("ii"),l9:s("ii>"),uQ:s("at3"),b4:s("ro<~(jt)>"),f7:s("BF>"),tV:s("ld"),hS:s("le"),Cq:s("hf"),ln:s("fk"),kZ:s("ag"),ac:s("BK"),fF:s("abt"),wq:s("rt"),EC:s("li"),tg:s("ep"),gG:s("jy"),wx:s("nt"),tx:s("eq"),sg:s("aX"),EE:s("Tl"),fO:s("Tm"),kT:s("Tn"),xD:s("jA"),c:s("aD"),nv:s("jB"),zQ:s("nw"),n0:s("j"),k0:s("v"),qS:s("v"),ja:s("v"),xq:s("v"),C3:s("v

"),i7:s("v"),Fs:s("v"),Cy:s("v"),wU:s("v"),bk:s("v"),wd:s("v"),E:s("v"),AG:s("v"),uK:s("v"),pX:s("v"),d:s("v"),BV:s("v"),tZ:s("v>"),yJ:s("v"),lB:s("v>"),EI:s("v>"),iJ:s("v>"),ia:s("v"),f1:s("v>"),fE:s("v"),wQ:s("v"),pW:s("v"),nO:s("v"),lF:s("v"),J:s("v"),DG:s("v"),zj:s("v"),a5:s("v"),sN:s("v"),fd:s("v"),mp:s("v"),DA:s("v"),gw:s("v"),DF:s("v>"),zd:s("v>"),ro:s("v"),as:s("v"),wv:s("v>"),cs:s("v>"),vp:s("v>"),l6:s("v"),hZ:s("v"),oE:s("v"),yx:s("v"),Ao:s("v"),G:s("v"),kQ:s("v"),tD:s("v"),qT:s("v"),D5:s("v>"),gO:s("v"),rK:s("v"),dB:s("v"),pi:s("v"),kS:s("v"),g:s("v"),aE:s("v"),uR:s("v"),v:s("v"),c0:s("v"),f8:s("v"),ex:s("v"),By:s("v"),jT:s("v"),oy:s("v"),xK:s("v"),cZ:s("v"),iu:s("v"),E1:s("v"),xm:s("v"),R:s("v"),fr:s("v"),b3:s("v"),tU:s("v"),ie:s("v"),j8:s("v"),h_:s("v"),s:s("v"),ve:s("v"),s5:s("v"),D1:s("v"),ur:s("v"),px:s("v"),oO:s("v>>"),oC:s("v"),nA:s("v"),kf:s("v"),kv:s("v"),e6:s("v"),iV:s("v"),gE:s("v"),yj:s("v"),ge:s("v"),xU:s("v"),sE:s("v"),hL:s("v"),w_:s("v"),fi:s("v"),lZ:s("v
"),hY:s("v"),hi:s("v"),ea:s("v"),sb:s("v"),sO:s("v"),pc:s("v"),pw:s("v"),Dr:s("v"),sj:s("v"),zp:s("v"),zz:s("v<@>"),t:s("v"),wf:s("v"),L:s("v"),zr:s("v"),AQ:s("v"),ny:s("v?>"),aZ:s("v"),bY:s("v"),vS:s("v"),Z:s("v"),F8:s("v()>"),e8:s("v()>"),AV:s("v"),zu:s("v<~(lb)?>"),u:s("v<~()>"),B8:s("v<~(bf)>"),A:s("v<~(h_)>"),u3:s("v<~(aQ)>"),kC:s("v<~(B)>"),CP:s("aO<@>"),Be:s("rG"),ud:s("hm"),Eh:s("aY<@>"),e:s("b"),vk:s("b(o)"),eA:s("e4"),fl:s("hn"),qI:s("dL"),vQ:s("nC"),FE:s("ll"),rG:s("bM"),r9:s("bM"),lV:s("bM"),F:s("bM>"),Cf:s("bM"),vt:s("e6"),Dk:s("C4"),jf:s("ba"),uk:s("rR"),v_:s("B"),os:s("B"),fx:s("B"),rh:s("B"),lC:s("B"),rF:s("B"),Cm:s("B"),d1:s("B"),E4:s("B"),l0:s("B"),j:s("B<@>"),DI:s("B"),yF:s("a7"),oa:s("jL"),lT:s("f"),tS:s("abQ"),nz:s("bb"),ou:s("bb"),wF:s("bb>"),cj:s("bb>"),eU:s("ay"),yz:s("ay"),a:s("ay"),Fu:s("ay"),Co:s("ay"),f:s("ay<@,@>"),mE:s("ay"),p6:s("ay<~(aE),aS?>"),ku:s("dN"),nf:s("aA"),wg:s("aA"),sC:s("aA"),dM:s("aA"),rg:s("alm"),z4:s("ln"),BD:s("bZ"),kq:s("cM"),sL:s("cM"),c1:s("lq"),rA:s("aS"),w:s("lt"),fw:s("hr"),BK:s("eu"),oR:s("cv"),Df:s("ta"),mC:s("iq"),DU:s("eX"),tk:s("ew"),Eg:s("jP"),Ag:s("ex"),iT:s("lw"),iK:s("hs"),dm:s("cZ"),am:s("cZ"),iY:s("cZ"),Bf:s("cZ"),DE:s("cZ"),Ez:s("ir"),P:s("aM"),K:s("E"),fR:s("be"),tY:s("be<~()>"),dc:s("be<~(bf)>"),Q:s("be<~(h_)>"),uu:s("q"),cY:s("ht"),u7:s("is"),bm:s("nU"),sV:s("nV"),kd:s("a8f"),CR:s("e9"),yL:s("e9"),f6:s("dc"),kF:s("tH"),nx:s("cN"),F3:s("i"),EQ:s("nY"),cP:s("lC"),zC:s("ati"),lv:s("atj"),ye:s("lD"),AJ:s("lE"),V:s("fx"),Y:s("iv"),cL:s("aE"),d0:s("atk"),hV:s("iw"),f2:s("lF"),zv:s("lG"),EL:s("ix"),eB:s("lH"),yg:s("lI"),xi:s("lJ"),DR:s("lK"),zs:s("dz"),Cs:s("lL"),qb:s("o0"),kc:s("aK"),Az:s("o3"),op:s("lP"),ep:s("+()"),zR:s("fB"),ez:s("a8n"),CE:s("tZ"),vg:s("a8o"),x:s("G"),n3:s("u2"),aP:s("z"),go:s("lQ"),xL:s("ax"),fB:s("aG"),zx:s("iz"),q0:s("cm"),h7:s("o6"),eI:s("acE"),e1:s("u9"),rj:s("ub"),wb:s("dd"),hp:s("cn"),sD:s("ud"),jA:s("co"),FF:s("co"),zB:s("fF"),ij:s("ob"),x8:s("c7<@>(ao,E?)"),yv:s("lR"),tT:s("amH"),Ew:s("amH"),yp:s("od"),uq:s("of"),rZ:s("ui"),Ei:s("uj"),Ec:s("um"),o1:s("uu"),p2:s("amM"),dd:s("atx"),k2:s("aty"),yu:s("d1"),ib:s("lV"),AP:s("uB"),nS:s("c0"),oX:s("fH"),ju:s("bP"),gI:s("cp"),xJ:s("lX"),jx:s("k9"),en:s("br"),Fy:s("bw"),qm:s("m_"),me:s("m1"),qZ:s("atE"),Dp:s("b5"),DB:s("S"),C7:s("uM"),p:s("kb"),zO:s("op"),D:s("hE"),v0:s("oq"),qg:s("kc"),B:s("df"),AH:s("cP"),jw:s("f_"),aw:s("aa"),yB:s("aV"),N:s("u"),lS:s("anj"),l:s("uZ"),q:s("m5"),q9:s("ot"),of:s("m8"),rT:s("c1

"),yK:s("c1"),lU:s("c1>"),zU:s("c1"),mq:s("c1"),a9:s("c1"),m6:s("c1"),E8:s("c1<~>"),Ft:s("hH"),g9:s("hI"),E7:s("v3"),dY:s("Fx"),lO:s("hJ"),F1:s("k"),oz:s("f0"),zE:s("mb"),Cn:s("hK>"),og:s("hK<@>"),hz:s("adn"),cF:s("anH"),C4:s("bA"),a7:s("av"),n:s("eb"),bs:s("iH"),ys:s("a_E"),Dd:s("oK"),gJ:s("a_F"),uo:s("hL"),zX:s("iJ"),M:s("bQ"),qF:s("hM"),jg:s("vn"),y3:s("iK"),eP:s("FX"),s1:s("dS"),ki:s("fN"),Dg:s("vo"),bx:s("dT"),vW:s("iM"),vY:s("b2"),nn:s("dm"),jp:s("dm"),dw:s("dm"),pE:s("dm<~(E,cP?)>"),oj:s("oO"),cm:s("l"),nR:s("hP"),cC:s("vs"),im:s("vt"),q8:s("bp

"),yl:s("bp"),wY:s("bp"),BB:s("bp"),Fj:s("bp"),hb:s("bp<~>"),tI:s("oU"),DW:s("ml"),lM:s("vE"),uJ:s("Hu"),sM:s("d5"),ef:s("iR"),rJ:s("vX"),CC:s("w2"),hF:s("p2"),b1:s("p4"),hv:s("ai

"),zc:s("ai"),aO:s("ai"),hR:s("ai<@>"),h1:s("ai"),sB:s("ai"),jr:s("ai"),U:s("ai<~>"),eK:s("p6"),oc:s("iT"),BJ:s("p8"),uS:s("kl"),BT:s("p9"),by:s("wa"),CX:s("wb"),dK:s("dU"),sq:s("pe"),cS:s("kn"),s8:s("pf"),gF:s("wj"),qn:s("bB"),mz:s("bB"),jj:s("bB"),aq:s("bB"),T:s("bB"),EB:s("bB"),BU:s("wu"),eg:s("J6"),a4:s("kp"),oJ:s("iU"),AD:s("wI"),BL:s("Jt"),lm:s("pn"),n7:s("hR"),dP:s("cF"),oZ:s("wR"),xT:s("wU"),Ex:s("pq"),xx:s("x1"),ee:s("d6"),Cu:s("x6"),wo:s("x8"),dT:s("xc"),E_:s("xe"),mt:s("xy"),tM:s("mu"),Aj:s("pu"),l3:s("xG"),eu:s("pv"),fc:s("aou"),fD:s("cr"),kI:s("cr"),xu:s("cr"),ls:s("cr"),sl:s("xR"),Dm:s("Ml"),y:s("D"),i:s("Q"),z:s("@"),in:s("@(E)"),nW:s("@(E,cP)"),S:s("o"),g5:s("0&*"),tw:s("E*"),pe:s("jc?"),jz:s("i2?"),Cx:s("dk?"),qy:s("ds?"),iH:s("kP?"),Fn:s("bD?"),vy:s("kR?"),yD:s("c3?"),yQ:s("mX?"),hg:s("jl?"),xS:s("Ph?"),bN:s("qq?"),cB:s("Pi?"),bG:s("qr?"),CW:s("Pj?"),iM:s("qs?"),_:s("A?"),mo:s("h6?"),ow:s("ek?"),C0:s("i9?"),n2:s("eS?"),DS:s("bU?"),uH:s("jr?"),fa:s("b1?"),qa:s("asV?"),k_:s("cu?"),eZ:s("ad?"),fS:s("BC?"),cn:s("le?"),oq:s("fl?"),Ak:s("cd?"),z6:s("jz?"),qC:s("b?"),st:s("dL?"),jS:s("B<@>?"),s6:s("f?"),yA:s("e8?"),nV:s("ay?"),yq:s("ay<@,@>?"),ym:s("ay?"),rY:s("aS?"),ha:s("ls?"),EA:s("cv?"),X:s("E?"),CT:s("q?"),cV:s("Vf?"),qJ:s("ht?"),i6:s("Vg?"),yX:s("cC?"),rR:s("fw?"),ot:s("lA?"),rk:s("tD?"),f0:s("tE?"),BM:s("tF?"),Fl:s("tG?"),gx:s("cN?"),aR:s("tI?"),W:s("nY?"),av:s("G?"),B2:s("z?"),bI:s("c_?"),jv:s("k1?"),jH:s("iz?"),uT:s("cm?"),Dw:s("eA?"),aa:s("bP?"),nU:s("uD?"),uD:s("bw?"),AE:s("m0?"),xB:s("S?"),ub:s("hE?"),Ci:s("f_?"),dR:s("u?"),wE:s("uZ?"),f3:s("ea?"),w8:s("k?"),uh:s("ma?"),Al:s("FM?"),nr:s("av?"),Fx:s("hL?"),AC:s("iK?"),iC:s("fO?"),pa:s("wK?"),dC:s("Lv<@>?"),k7:s("D?"),u6:s("Q?"),lo:s("o?"),xR:s("~()?"),fY:s("bH"),H:s("~"),O:s("~()"),qP:s("~(aQ)"),tP:s("~(jt)"),wX:s("~(B)"),eC:s("~(E)"),sp:s("~(E,cP)"),yd:s("~(aE)"),vc:s("~(fA)"),mP:s("~(E?)")}})();(function constants(){var s=hunkHelpers.makeConstList +B.zE=J.nx.prototype +B.b=J.v.prototype +B.bM=J.rE.prototype +B.f=J.nA.prototype +B.c=J.jC.prototype +B.d=J.io.prototype +B.zK=J.hm.prototype +B.zL=J.b.prototype +B.pa=A.te.prototype +B.e2=A.tf.prototype +B.cO=A.tg.prototype +B.cP=A.th.prototype +B.Q=A.lw.prototype +B.tK=J.Dv.prototype +B.hG=J.hM.prototype +B.NT=new A.NS(0,"unknown") +B.i0=new A.eh(0,1) +B.i1=new A.eh(0,-1) +B.NU=new A.eh(1,0) +B.i2=new A.eh(-1,-1) +B.T=new A.d8(0,0) +B.vq=new A.d8(0,1) +B.vr=new A.d8(0,-1) +B.eP=new A.d8(1,0) +B.i3=new A.d8(-1,0) +B.vs=new A.pL(null) +B.i4=new A.yO(0,"stretch") +B.i5=new A.yO(1,"glow") +B.vt=new A.yQ(0,"normal") +B.vu=new A.yQ(1,"preserve") +B.F=new A.h_(0,"dismissed") +B.ag=new A.h_(1,"forward") +B.a6=new A.h_(2,"reverse") +B.J=new A.h_(3,"completed") +B.vv=new A.mI(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.i6=new A.q_(0,"exit") +B.i7=new A.q_(1,"cancel") +B.vw=new A.mJ(0,"resumed") +B.vx=new A.mJ(1,"inactive") +B.vy=new A.mJ(2,"paused") +B.vz=new A.mJ(3,"detached") +B.eQ=new A.q0(0,"polite") +B.eR=new A.q0(1,"assertive") +B.u=new A.mO(0,"up") +B.aa=new A.mO(1,"right") +B.t=new A.mO(2,"down") +B.Z=new A.mO(3,"left") +B.aZ=new A.z_(0,"horizontal") +B.ba=new A.z_(1,"vertical") +B.vB=new A.z1(null) +B.vC=new A.z0(B.vB,null,null,null) +B.vD=new A.q4(null,null,null,null,null,null,null,null) +B.a_=new A.Ze() +B.i8=new A.jf("flutter/accessibility",B.a_,t.ql) +B.bb=new A.Tu() +B.vE=new A.jf("flutter/keyevent",B.bb,t.ql) +B.f2=new A.Zo() +B.vF=new A.jf("flutter/lifecycle",B.f2,A.a_("jf")) +B.vG=new A.jf("flutter/system",B.bb,t.ql) +B.du=new A.nj(2,"previous") +B.vH=new A.kO(null,B.du,0,0) +B.vI=new A.mP(13,"modulate") +B.vJ=new A.mP(20,"hardLight") +B.vK=new A.mP(26,"saturation") +B.eS=new A.mP(3,"srcOver") +B.i9=new A.Ow(0,"normal") +B.D=new A.aF(0,0) +B.ab=new A.cc(B.D,B.D,B.D,B.D) +B.cX=new A.aF(4,4) +B.ia=new A.cc(B.cX,B.cX,B.cX,B.cX) +B.l=new A.A(4278190080) +B.bC=new A.z7(0,"none") +B.v=new A.bD(B.l,0,B.bC,-1) +B.ac=new A.z7(1,"solid") +B.vO=new A.mR(null,null,null,null,null,null,null) +B.vP=new A.q8(null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.vQ=new A.q9(null,null,null,null,null,null,null,null,null,null,null,null,null) +B.Fm=new A.EA(0,"normal") +B.hf=new A.DG(null) +B.vR=new A.qa(B.Fm,B.hf) +B.u3=new A.EA(1,"fast") +B.vS=new A.qa(B.u3,B.hf) +B.ib=new A.aI(40,40,40,40) +B.ic=new A.aI(56,56,56,56) +B.id=new A.aI(96,96,96,96) +B.ie=new A.aI(1/0,1/0,1/0,1/0) +B.vU=new A.aI(0,1/0,48,48) +B.vT=new A.aI(0,1/0,56,56) +B.cb=new A.aI(0,1/0,0,1/0) +B.vV=new A.aI(48,1/0,48,1/0) +B.vW=new A.za(2,"cover") +B.ig=new A.za(6,"scaleDown") +B.ih=new A.zb(0,"tight") +B.ii=new A.zb(5,"strut") +B.bD=new A.ze(0,"rectangle") +B.b_=new A.ze(1,"circle") +B.di=new A.Oz(0,"tight") +B.W=new A.zf(0,"dark") +B.U=new A.zf(1,"light") +B.ax=new A.qb(0,"blink") +B.B=new A.qb(1,"webkit") +B.aP=new A.qb(2,"firefox") +B.vX=new A.qc(null,null,null,null,null,null,null,null,null) +B.vY=new A.OG(0,"normal") +B.vZ=new A.NT() +B.tZ=new A.cw(B.ab,B.v) +B.w0=new A.Ok() +B.NV=new A.Oq() +B.w1=new A.Op() +B.NW=new A.OD() +B.w2=new A.P2() +B.w3=new A.zR() +B.w4=new A.zT() +B.O8=new A.Yi(4,"keyboard") +B.il=new A.qw() +B.ik=new A.qw() +B.w5=new A.PP() +B.w6=new A.Ax() +B.w7=new A.Ay() +B.NX=new A.AB() +B.w8=new A.AC() +B.io=new A.qH() +B.ip=new A.qH() +B.iq=new A.qI() +B.ir=new A.qI() +B.is=new A.qJ() +B.it=new A.qJ() +B.o=new A.AL() +B.wa=new A.Qp() +B.wb=new A.QN() +B.wc=new A.ic(A.a_("ic")) +B.iu=new A.AX() +B.wd=new A.B_() +B.X=new A.B_() +B.we=new A.Rh() +B.iv=new A.r7() +B.iw=new A.r7() +B.wf=new A.r8() +B.wg=new A.r8() +B.ix=new A.l2() +B.iy=new A.l2() +B.eU=new A.l2() +B.eV=new A.l2() +B.iz=new A.l3() +B.iA=new A.l3() +B.eW=new A.l3() +B.eX=new A.l3() +B.iB=new A.fh() +B.iC=new A.fh() +B.wj=new A.fh() +B.wk=new A.fh() +B.cc=new A.fh() +B.cd=new A.fh() +B.wh=new A.fh() +B.wi=new A.fh() +B.wl=new A.rb() +B.wm=new A.rb() +B.wn=new A.rc() +B.wo=new A.rc() +B.wp=new A.l4() +B.wq=new A.l4() +B.iD=new A.l4() +B.iE=new A.l4() +B.wr=new A.rd() +B.ws=new A.rd() +B.iF=new A.l5() +B.iG=new A.l5() +B.eY=new A.l5() +B.eZ=new A.l5() +B.iJ=new A.l6() +B.iK=new A.l6() +B.iH=new A.l6() +B.iI=new A.l6() +B.f_=new A.Bk() +B.NY=new A.BA() +B.wt=new A.Sp() +B.f0=new A.Su() +B.zg=new A.Ry(1,"auto") +B.wu=new A.BW() +B.K=new A.Tt() +B.ad=new A.Tv() +B.iL=function getTagFallback(o) { + var s = Object.prototype.toString.call(o); + return s.substring(8, s.length - 1); +} +B.wv=function() { + var toStringFunction = Object.prototype.toString; + function getTag(o) { + var s = toStringFunction.call(o); + return s.substring(8, s.length - 1); + } + function getUnknownTag(object, tag) { + if (/^HTML[A-Z].*Element$/.test(tag)) { + var name = toStringFunction.call(object); + if (name == "[object Object]") return null; + return "HTMLElement"; + } + } + function getUnknownTagGenericBrowser(object, tag) { + if (self.HTMLElement && object instanceof HTMLElement) return "HTMLElement"; + return getUnknownTag(object, tag); + } + function prototypeForTag(tag) { + if (typeof window == "undefined") return null; + if (typeof window[tag] == "undefined") return null; + var constructor = window[tag]; + if (typeof constructor != "function") return null; + return constructor.prototype; + } + function discriminator(tag) { return null; } + var isBrowser = typeof navigator == "object"; + return { + getTag: getTag, + getUnknownTag: isBrowser ? getUnknownTagGenericBrowser : getUnknownTag, + prototypeForTag: prototypeForTag, + discriminator: discriminator }; +} +B.wA=function(getTagFallback) { + return function(hooks) { + if (typeof navigator != "object") return hooks; + var ua = navigator.userAgent; + if (ua.indexOf("DumpRenderTree") >= 0) return hooks; + if (ua.indexOf("Chrome") >= 0) { + function confirm(p) { + return typeof window == "object" && window[p] && window[p].name == p; + } + if (confirm("Window") && confirm("HTMLElement")) return hooks; + } + hooks.getTag = getTagFallback; + }; +} +B.ww=function(hooks) { + if (typeof dartExperimentalFixupGetTag != "function") return hooks; + hooks.getTag = dartExperimentalFixupGetTag(hooks.getTag); +} +B.wx=function(hooks) { + var getTag = hooks.getTag; + var prototypeForTag = hooks.prototypeForTag; + function getTagFixed(o) { + var tag = getTag(o); + if (tag == "Document") { + if (!!o.xmlVersion) return "!Document"; + return "!HTMLDocument"; + } + return tag; + } + function prototypeForTagFixed(tag) { + if (tag == "Document") return null; + return prototypeForTag(tag); + } + hooks.getTag = getTagFixed; + hooks.prototypeForTag = prototypeForTagFixed; +} +B.wz=function(hooks) { + var userAgent = typeof navigator == "object" ? navigator.userAgent : ""; + if (userAgent.indexOf("Firefox") == -1) return hooks; + var getTag = hooks.getTag; + var quickMap = { + "BeforeUnloadEvent": "Event", + "DataTransfer": "Clipboard", + "GeoGeolocation": "Geolocation", + "Location": "!Location", + "WorkerMessageEvent": "MessageEvent", + "XMLDocument": "!Document"}; + function getTagFirefox(o) { + var tag = getTag(o); + return quickMap[tag] || tag; + } + hooks.getTag = getTagFirefox; +} +B.wy=function(hooks) { + var userAgent = typeof navigator == "object" ? navigator.userAgent : ""; + if (userAgent.indexOf("Trident/") == -1) return hooks; + var getTag = hooks.getTag; + var quickMap = { + "BeforeUnloadEvent": "Event", + "DataTransfer": "Clipboard", + "HTMLDDElement": "HTMLElement", + "HTMLDTElement": "HTMLElement", + "HTMLPhraseElement": "HTMLElement", + "Position": "Geoposition" + }; + function getTagIE(o) { + var tag = getTag(o); + var newTag = quickMap[tag]; + if (newTag) return newTag; + if (tag == "Object") { + if (window.DataView && (o instanceof window.DataView)) return "DataView"; + } + return tag; + } + function prototypeForTagIE(tag) { + var constructor = window[tag]; + if (constructor == null) return null; + return constructor.prototype; + } + hooks.getTag = getTagIE; + hooks.prototypeForTag = prototypeForTagIE; +} +B.iM=function(hooks) { return hooks; } + +B.bc=new A.TC() +B.wB=new A.Ul() +B.wC=new A.CD() +B.wE=new A.V5() +B.wF=new A.V6() +B.iN=new A.V8() +B.wG=new A.Vd() +B.iO=new A.E() +B.wH=new A.D_() +B.ak=new A.cQ(0,"android") +B.al=new A.cQ(2,"iOS") +B.aJ=new A.cQ(4,"macOS") +B.iW=new A.G8() +B.im=new A.Al() +B.dU=new A.bq([B.ak,B.iW,B.al,B.im,B.aJ,B.im],A.a_("bq")) +B.wI=new A.D0() +B.wJ=new A.Df() +B.iP=new A.tz() +B.iQ=new A.Dl() +B.wK=new A.VD() +B.NZ=new A.W0() +B.wM=new A.W5() +B.iR=new A.DL() +B.wO=new A.Ey() +B.wP=new A.uq() +B.wQ=new A.uq() +B.wR=new A.Yh() +B.iS=new A.EG() +B.wS=new A.YI() +B.a=new A.YJ() +B.b0=new A.Zd() +B.bE=new A.Zh() +B.wT=new A.a__() +B.wU=new A.a_2() +B.wV=new A.a_3() +B.wW=new A.a_4() +B.wX=new A.a_8() +B.wY=new A.a_a() +B.wZ=new A.a_b() +B.x_=new A.a_c() +B.Ec=new A.q(0.056,0.024) +B.E7=new A.q(0.108,0.3085) +B.Ee=new A.q(0.198,0.541) +B.E9=new A.q(0.3655,1) +B.Eb=new A.q(0.5465,0.989) +B.iT=new A.FE() +B.x0=new A.FF() +B.x1=new A.FP() +B.iU=new A.FS() +B.x2=new A.a_M() +B.N=new A.a_O() +B.bF=new A.a_S() +B.A=new A.C(0,0,0,0) +B.dc=new A.G4(0,0,0,0) +B.Be=A.a(s([]),A.a_("v")) +B.iV=new A.G3() +B.ce=new A.Ge() +B.cf=new A.Gf() +B.x3=new A.a17() +B.x4=new A.Hd() +B.i=new A.A(4294967295) +B.dr=new A.eO(B.l,"label",null,B.l,B.i,B.l,B.i,B.l,B.i,B.l,B.i,0) +B.cj=new A.A(4288256409) +B.dn=new A.A(4285887861) +B.dq=new A.eO(B.cj,"inactiveGray",null,B.cj,B.dn,B.cj,B.dn,B.cj,B.dn,B.cj,B.dn,0) +B.O_=new A.a1m() +B.f6=new A.A(4278221567) +B.j4=new A.A(4278879487) +B.j3=new A.A(4278206685) +B.j8=new A.A(4282424575) +B.yy=new A.eO(B.f6,"systemBlue",null,B.f6,B.j4,B.j3,B.j8,B.f6,B.j4,B.j3,B.j8,0) +B.xG=new A.A(4280032286) +B.xK=new A.A(4280558630) +B.jo=new A.eO(B.i,"systemBackground",null,B.i,B.l,B.i,B.l,B.i,B.xG,B.i,B.xK,0) +B.ci=new A.A(4042914297) +B.dl=new A.A(4028439837) +B.yz=new A.eO(B.ci,null,null,B.ci,B.dl,B.ci,B.dl,B.ci,B.dl,B.ci,B.dl,0) +B.iX=new A.a1n() +B.iY=new A.Hl() +B.x5=new A.a1o() +B.x6=new A.a1s() +B.O0=new A.Ho() +B.cg=new A.Hq() +B.f3=new A.a1C() +B.c2=new A.hH("click") +B.bv=new A.hH("basic") +B.iZ=new A.HL() +B.x7=new A.a2A() +B.x8=new A.a2B() +B.ae=new A.wf() +B.x9=new A.IT() +B.aQ=new A.a3n() +B.j_=new A.a3S() +B.a7=new A.a3W() +B.xa=new A.a4c() +B.xb=new A.Lp() +B.xc=new A.Lz() +B.xd=new A.Mm() +B.j0=new A.OH(0,"pixel") +B.xh=new A.qg(null,null,null,null,null,null,null) +B.xi=new A.qh(null,null,null,null,null,null,null,null,null) +B.xj=new A.qj(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.bd=new A.cV(0,B.v) +B.xl=new A.zZ(B.hf) +B.FB=new A.uA(2,"clear") +B.xm=new A.qp(B.FB) +B.xn=new A.A_(0,"difference") +B.bG=new A.A_(1,"intersect") +B.w=new A.mZ(0,"none") +B.aR=new A.mZ(1,"hardEdge") +B.f4=new A.mZ(2,"antiAlias") +B.bH=new A.mZ(3,"antiAliasWithSaveLayer") +B.fe=new A.A(4291869951) +B.xO=new A.A(4281867890) +B.xU=new A.A(4283381643) +B.je=new A.A(4293582335) +B.y8=new A.A(4291609308) +B.xN=new A.A(4281544001) +B.xS=new A.A(4283057240) +B.jd=new A.A(4293451512) +B.yg=new A.A(4293900488) +B.xR=new A.A(4282983730) +B.xX=new A.A(4284693320) +B.jg=new A.A(4294957284) +B.yh=new A.A(4294097077) +B.xV=new A.A(4284486672) +B.y1=new A.A(4287372568) +B.jf=new A.A(4294565596) +B.dm=new A.A(4280032031) +B.fg=new A.A(4293321189) +B.fa=new A.A(4282991951) +B.jb=new A.A(4291478736) +B.y2=new A.A(4287860633) +B.j7=new A.A(4281413683) +B.fc=new A.A(4284960932) +B.xo=new A.n0(B.W,B.fe,B.xO,B.xU,B.je,B.y8,B.xN,B.xS,B.jd,B.yg,B.xR,B.xX,B.jg,B.yh,B.xV,B.y1,B.jf,B.dm,B.fg,B.dm,B.fg,B.fa,B.jb,B.y2,B.fa,B.l,B.l,B.fg,B.j7,B.fc,B.fe,null,null) +B.xI=new A.A(4280352861) +B.xW=new A.A(4284636017) +B.xH=new A.A(4280097067) +B.y_=new A.A(4286403168) +B.xM=new A.A(4281405725) +B.y5=new A.A(4289930782) +B.xP=new A.A(4282453515) +B.jh=new A.A(4294966270) +B.yd=new A.A(4293386476) +B.xZ=new A.A(4286149758) +B.yj=new A.A(4294242292) +B.xp=new A.n0(B.U,B.fc,B.i,B.je,B.xI,B.xW,B.i,B.jd,B.xH,B.y_,B.i,B.jg,B.xM,B.y5,B.i,B.jf,B.xP,B.jh,B.dm,B.jh,B.dm,B.yd,B.fa,B.xZ,B.jb,B.l,B.l,B.j7,B.yj,B.fe,B.fc,null,null) +B.H=new A.A(0) +B.j1=new A.A(1087163596) +B.xq=new A.A(134217728) +B.xr=new A.A(1627389952) +B.xs=new A.A(1660944383) +B.j2=new A.A(16777215) +B.f5=new A.A(1723645116) +B.xt=new A.A(1724434632) +B.xu=new A.A(2155905152) +B.y=new A.A(2315255808) +B.xv=new A.A(2583691263) +B.z=new A.A(3019898879) +B.x=new A.A(3707764736) +B.xx=new A.A(4039164096) +B.xD=new A.A(4278239141) +B.f7=new A.A(4279858898) +B.f8=new A.A(4280191205) +B.xJ=new A.A(4280361249) +B.j5=new A.A(4280391411) +B.j6=new A.A(4281348144) +B.f9=new A.A(4282532418) +B.fb=new A.A(4284572001) +B.j9=new A.A(4284809178) +B.fd=new A.A(4287679225) +B.y3=new A.A(4288585374) +B.ja=new A.A(4290502395) +B.ff=new A.A(4292030255) +B.y9=new A.A(4292927712) +B.jc=new A.A(4293128957) +B.ck=new A.A(4294309365) +B.yk=new A.A(4294638330) +B.yl=new A.A(4294901760) +B.yp=new A.A(436207616) +B.yq=new A.A(520093696) +B.yr=new A.A(536870911) +B.ji=new A.kY(0,"start") +B.yt=new A.kY(1,"end") +B.fh=new A.kY(2,"center") +B.jj=new A.kY(3,"stretch") +B.jk=new A.kY(4,"baseline") +B.jl=new A.dK(0.18,1,0.04,1) +B.yu=new A.dK(0.05,0,0.133333,0.06) +B.b1=new A.dK(0.25,0.1,0.25,1) +B.dp=new A.dK(0.42,0,1,1) +B.yv=new A.dK(0.67,0.03,0.65,0.09) +B.yw=new A.dK(0.075,0.82,0.165,1) +B.yx=new A.dK(0.208333,0.82,0.25,1) +B.an=new A.dK(0.4,0,0.2,1) +B.jm=new A.dK(0.35,0.91,0.33,0.97) +B.jn=new A.dK(0.42,0,0.58,1) +B.ch=new A.A(1493172224) +B.dk=new A.A(2164260863) +B.yA=new A.eO(B.ch,null,null,B.ch,B.dk,B.ch,B.dk,B.ch,B.dk,B.ch,B.dk,0) +B.be=new A.qx(B.iX,null,null,null,null,null,null,null) +B.yB=new A.PM(1,"latency") +B.yC=new A.qD(null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.yD=new A.qE(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.jp=new A.kZ(0,"uninitialized") +B.yE=new A.kZ(1,"initializingServices") +B.jq=new A.kZ(2,"initializedServices") +B.yF=new A.kZ(3,"initializingUi") +B.yG=new A.kZ(4,"initialized") +B.yH=new A.PO(1,"traversalOrder") +B.fi=new A.Aw(0,"background") +B.jr=new A.Aw(1,"foreground") +B.NH=new A.Ji(null) +B.js=new A.n6(null,null,B.NH,null) +B.Jw=new A.k(!0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.c3=new A.v9(0,"clip") +B.aK=new A.FC(0,"parent") +B.NI=new A.Jk(null) +B.yI=new A.n7(B.Jw,null,!0,B.c3,null,B.aK,null,B.NI,null) +B.ah=new A.qK(3,"info") +B.yJ=new A.qK(5,"hint") +B.yK=new A.qK(6,"summary") +B.O1=new A.ia(1,"sparse") +B.yL=new A.ia(10,"shallow") +B.yM=new A.ia(11,"truncateChildren") +B.yN=new A.ia(5,"error") +B.fj=new A.ia(7,"flat") +B.jt=new A.ia(8,"singleLine") +B.b2=new A.ia(9,"errorProperty") +B.yO=new A.qM(null,null,null,null,null,null,null,null,null,null) +B.yP=new A.qN(null,null,null,null,null) +B.bf=new A.Qy(1,"start") +B.yQ=new A.AS(null) +B.yR=new A.qT(null,null,null,null,null,null,null,null) +B.yS=new A.qU(null,null,null) +B.r=new A.aQ(0) +B.ay=new A.aQ(1e5) +B.cl=new A.aQ(1e6) +B.yT=new A.aQ(12e5) +B.yU=new A.aQ(15e4) +B.yV=new A.aQ(15e5) +B.yW=new A.aQ(16667) +B.ju=new A.aQ(167e3) +B.O=new A.aQ(2e5) +B.bI=new A.aQ(2e6) +B.yX=new A.aQ(225e3) +B.yY=new A.aQ(25e4) +B.bJ=new A.aQ(3e5) +B.yZ=new A.aQ(3e6) +B.jv=new A.aQ(375e3) +B.z_=new A.aQ(4e4) +B.fk=new A.aQ(4e5) +B.z0=new A.aQ(5e4) +B.jw=new A.aQ(5e5) +B.cm=new A.aQ(6e5) +B.fl=new A.aQ(75e3) +B.z1=new A.aQ(-38e3) +B.aS=new A.bl(0,0,0,0) +B.z2=new A.bl(16,0,16,0) +B.z3=new A.bl(16,12,16,12) +B.z4=new A.bl(16,4,16,4) +B.z5=new A.bl(32,32,32,32) +B.z6=new A.bl(8,4,8,4) +B.bg=new A.bl(8,8,8,8) +B.z7=new A.qY(null) +B.z8=new A.qZ(0,"noOpinion") +B.z9=new A.qZ(1,"enabled") +B.fm=new A.qZ(2,"disabled") +B.za=new A.AZ(null) +B.O2=new A.nd(0) +B.zb=new A.ra(null,null,null,null,null,null,null,null,null,null,null) +B.zc=new A.re(null) +B.bK=new A.ng(0,"none") +B.ds=new A.ng(1,"low") +B.fn=new A.ng(2,"medium") +B.fo=new A.ng(3,"high") +B.L=new A.S(0,0) +B.zd=new A.Bf(B.L,B.L) +B.ze=new A.Rt(0,"tight") +B.zf=new A.ni(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.fp=new A.jt(0,"touch") +B.dt=new A.jt(1,"traditional") +B.O3=new A.RJ(0,"automatic") +B.jy=new A.jv("Invalid method call",null,null) +B.zl=new A.jv("Expected envelope, got nothing",null,null) +B.ao=new A.jv("Message corrupted",null,null) +B.zm=new A.jv("Invalid envelope",null,null) +B.jz=new A.nj(0,"ltr") +B.jA=new A.nj(1,"rtl") +B.fr=new A.nj(3,"sandwich") +B.bh=new A.Bz(0,"accepted") +B.a0=new A.Bz(1,"rejected") +B.jB=new A.lb(0,"pointerEvents") +B.bL=new A.lb(1,"browserGestures") +B.b3=new A.rl(0,"ready") +B.dv=new A.rl(1,"possible") +B.zn=new A.rl(2,"defunct") +B.jC=new A.BE(0,"forward") +B.jD=new A.BE(1,"reverse") +B.bi=new A.nm(0,"push") +B.bj=new A.nm(1,"pop") +B.bk=new A.rq(0,"deferToChild") +B.ap=new A.rq(1,"opaque") +B.dw=new A.rq(2,"translucent") +B.zo=new A.rr(null) +B.zp=new A.lh(null) +B.zq=new A.hg(57490,!0) +B.jE=new A.hg(58332,!1) +B.zs=new A.hg(983126,!1) +B.zt=new A.hg(983200,!1) +B.zv=new A.cd(null,null,null,null,null,B.x,null,null) +B.zw=new A.cd(null,null,null,null,null,B.l,null,null) +B.zu=new A.cd(24,0,400,0,48,B.l,1,null) +B.jF=new A.cd(null,null,null,null,null,B.i,null,null) +B.zr=new A.hg(58727,!1) +B.zx=new A.rs(B.zr,null,null,null) +B.fs=new A.no(0,"repeat") +B.jG=new A.no(1,"repeatX") +B.jH=new A.no(2,"repeatY") +B.bl=new A.no(3,"noRepeat") +B.zF=new A.hk(0,0.1,B.ae) +B.zG=new A.hk(0.125,0.25,B.ae) +B.zH=new A.hk(0.6,1,B.ae) +B.jI=new A.hk(0.5,1,B.b1) +B.zI=new A.hk(0.2075,0.4175,B.ae) +B.zJ=new A.hk(0.0825,0.2075,B.ae) +B.jJ=new A.rC(0,"grapheme") +B.jK=new A.rC(1,"word") +B.zM=new A.TD(null) +B.zN=new A.TE(null) +B.zO=new A.C0(0,"rawKeyData") +B.zP=new A.C0(1,"keyDataThenRawKeyData") +B.az=new A.rK(0,"down") +B.zQ=new A.e5(B.r,B.az,0,0,null,!1) +B.co=new A.jE(0,"handled") +B.cp=new A.jE(1,"ignored") +B.dx=new A.jE(2,"skipRemainingHandlers") +B.aq=new A.rK(1,"up") +B.zR=new A.rK(2,"repeat") +B.dP=new A.f(4294967562) +B.zS=new A.nC(B.dP,0,"numLock") +B.dQ=new A.f(4294967564) +B.zT=new A.nC(B.dQ,1,"scrollLock") +B.cC=new A.f(4294967556) +B.zU=new A.nC(B.cC,2,"capsLock") +B.bN=new A.ll(0,"any") +B.aT=new A.ll(3,"all") +B.bm=new A.jI(0,"opportunity") +B.n=new A.jI(1,"prohibited") +B.b4=new A.jI(2,"mandatory") +B.b5=new A.jI(3,"endOfText") +B.ft=new A.ba(0,"CM") +B.dA=new A.ba(1,"BA") +B.bn=new A.ba(10,"PO") +B.cq=new A.ba(11,"OP") +B.cr=new A.ba(12,"CP") +B.dB=new A.ba(13,"IS") +B.cs=new A.ba(14,"HY") +B.fu=new A.ba(15,"SY") +B.b6=new A.ba(16,"NU") +B.fv=new A.ba(17,"CL") +B.fw=new A.ba(18,"GL") +B.jL=new A.ba(19,"BB") +B.ct=new A.ba(2,"LF") +B.ar=new A.ba(20,"HL") +B.dC=new A.ba(21,"JL") +B.cu=new A.ba(22,"JV") +B.cv=new A.ba(23,"JT") +B.fx=new A.ba(24,"NS") +B.fy=new A.ba(25,"ZW") +B.fz=new A.ba(26,"ZWJ") +B.fA=new A.ba(27,"B2") +B.jM=new A.ba(28,"IN") +B.fB=new A.ba(29,"WJ") +B.dD=new A.ba(3,"BK") +B.fC=new A.ba(30,"ID") +B.dE=new A.ba(31,"EB") +B.cw=new A.ba(32,"H2") +B.cx=new A.ba(33,"H3") +B.fD=new A.ba(34,"CB") +B.dF=new A.ba(35,"RI") +B.dG=new A.ba(36,"EM") +B.dH=new A.ba(4,"CR") +B.bO=new A.ba(5,"SP") +B.jN=new A.ba(6,"EX") +B.fE=new A.ba(7,"QU") +B.as=new A.ba(8,"AL") +B.dI=new A.ba(9,"PR") +B.zV=new A.rT(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.zW=A.a(s([0,1]),t.zp) +B.B1=A.a(s([137,80,78,71,13,10,26,10]),t.Z) +B.zy=new A.il(B.B1,"image/png") +B.Ai=A.a(s([71,73,70,56,55,97]),t.Z) +B.zC=new A.il(B.Ai,"image/gif") +B.Aj=A.a(s([71,73,70,56,57,97]),t.Z) +B.zD=new A.il(B.Aj,"image/gif") +B.zX=A.a(s([255,216,255]),t.Z) +B.zz=new A.il(B.zX,"image/jpeg") +B.Az=A.a(s([82,73,70,70,null,null,null,null,87,69,66,80]),t.Z) +B.zB=new A.il(B.Az,"image/webp") +B.Au=A.a(s([66,77]),t.Z) +B.zA=new A.il(B.Au,"image/bmp") +B.Ak=A.a(s([B.zy,B.zC,B.zD,B.zz,B.zB,B.zA]),A.a_("v")) +B.Al=A.a(s([4,9,14,19]),t.t) +B.fF=A.a(s([0,0,65498,45055,65535,34815,65534,18431]),t.t) +B.xe=new A.mV(0,"auto") +B.xf=new A.mV(1,"full") +B.xg=new A.mV(2,"chromium") +B.Av=A.a(s([B.xe,B.xf,B.xg]),A.a_("v")) +B.jO=A.a(s([B.ft,B.dA,B.ct,B.dD,B.dH,B.bO,B.jN,B.fE,B.as,B.dI,B.bn,B.cq,B.cr,B.dB,B.cs,B.fu,B.b6,B.fv,B.fw,B.jL,B.ar,B.dC,B.cu,B.cv,B.fx,B.fy,B.fz,B.fA,B.jM,B.fB,B.fC,B.dE,B.cw,B.cx,B.fD,B.dF,B.dG]),A.a_("v")) +B.Aw=A.a(s([B.eQ,B.eR]),A.a_("v")) +B.jP=A.a(s([0,4,12,1,5,13,3,7,15]),t.t) +B.Ax=A.a(s(["pointerdown","pointermove","pointerleave","pointerup","pointercancel","touchstart","touchend","touchmove","touchcancel","mousedown","mousemove","mouseleave","mouseup","keyup","keydown"]),t.s) +B.AE=A.a(s([0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0]),t.zp) +B.BH=new A.jL("en","US") +B.jQ=A.a(s([B.BH]),t.as) +B.dJ=A.a(s([0,0,24576,1023,65534,34815,65534,18431]),t.t) +B.jR=A.a(s([0,0,26624,1023,65534,2047,65534,2047]),t.t) +B.N3=new A.iS(0,0) +B.N8=new A.iS(1,0.05) +B.N7=new A.iS(3,0.08) +B.N4=new A.iS(6,0.11) +B.N5=new A.iS(8,0.12) +B.N6=new A.iS(12,0.14) +B.jS=A.a(s([B.N3,B.N8,B.N7,B.N4,B.N5,B.N6]),A.a_("v")) +B.AR=A.a(s([0,0,32722,12287,65534,34815,65534,18431]),t.t) +B.fq=new A.eT(0) +B.zh=new A.eT(1) +B.zi=new A.eT(2) +B.j=new A.eT(3) +B.I=new A.eT(4) +B.zj=new A.eT(5) +B.cn=new A.eT(6) +B.zk=new A.eT(7) +B.jx=new A.eT(8) +B.jU=A.a(s([B.fq,B.zh,B.zi,B.j,B.I,B.zj,B.cn,B.zk,B.jx]),A.a_("v")) +B.am=new A.v2(0,"upstream") +B.G=new A.v2(1,"downstream") +B.AZ=A.a(s([B.am,B.G]),A.a_("v")) +B.S=new A.kd(0,"rtl") +B.q=new A.kd(1,"ltr") +B.jV=A.a(s([B.S,B.q]),A.a_("v")) +B.v6=new A.oV(0,"topLeft") +B.v9=new A.oV(3,"bottomRight") +B.MY=new A.iQ(B.v6,B.v9) +B.N0=new A.iQ(B.v9,B.v6) +B.v7=new A.oV(1,"topRight") +B.v8=new A.oV(2,"bottomLeft") +B.MZ=new A.iQ(B.v7,B.v8) +B.N_=new A.iQ(B.v8,B.v7) +B.B_=A.a(s([B.MY,B.N0,B.MZ,B.N_]),A.a_("v")) +B.w_=new A.mE() +B.hk=new A.EB(1,"page") +B.hl=new A.eB(B.t,B.hk) +B.B0=A.a(s([B.w_,B.hl]),A.a_("v")) +B.jW=A.a(s([0,0,65490,12287,65535,34815,65534,18431]),t.t) +B.jX=A.a(s([0,0,32776,33792,1,10240,0,0]),t.t) +B.B2=A.a(s(["click","scroll"]),t.s) +B.B4=A.a(s([0,0,32754,11263,65534,34815,65534,18431]),t.t) +B.jZ=A.a(s([]),A.a_("v")) +B.O4=A.a(s([]),t.as) +B.Bc=A.a(s([]),t.yx) +B.cz=A.a(s([]),t.G) +B.k0=A.a(s([]),t.tD) +B.B6=A.a(s([]),t.qT) +B.Bd=A.a(s([]),A.a_("v>")) +B.Bf=A.a(s([]),t.E1) +B.fG=A.a(s([]),t.R) +B.cy=A.a(s([]),t.s) +B.a1=A.a(s([]),t.ve) +B.Bb=A.a(s([]),t.px) +B.O5=A.a(s([]),t.nA) +B.dK=A.a(s([]),t.t) +B.jY=A.a(s([]),t.zz) +B.B5=A.a(s([]),A.a_("v")) +B.hz=new A.iE(0,"left") +B.uN=new A.iE(1,"right") +B.uO=new A.iE(2,"center") +B.hA=new A.iE(3,"justify") +B.bw=new A.iE(4,"start") +B.uP=new A.iE(5,"end") +B.Bo=A.a(s([B.hz,B.uN,B.uO,B.hA,B.bw,B.uP]),A.a_("v")) +B.dL=A.a(s([0,0,65490,45055,65535,34815,65534,18431]),t.t) +B.cK=new A.eu(0,"controlModifier") +B.cL=new A.eu(1,"shiftModifier") +B.cM=new A.eu(2,"altModifier") +B.cN=new A.eu(3,"metaModifier") +B.p6=new A.eu(4,"capsLockModifier") +B.p7=new A.eu(5,"numLockModifier") +B.p8=new A.eu(6,"scrollLockModifier") +B.p9=new A.eu(7,"functionModifier") +B.DX=new A.eu(8,"symbolModifier") +B.k1=A.a(s([B.cK,B.cL,B.cM,B.cN,B.p6,B.p7,B.p8,B.p9,B.DX]),A.a_("v")) +B.aV=new A.cQ(1,"fuchsia") +B.aW=new A.cQ(3,"linux") +B.aX=new A.cQ(5,"windows") +B.By=A.a(s([B.ak,B.aV,B.al,B.aW,B.aJ,B.aX]),t.ur) +B.fH=A.a(s([!0,!1]),t.sj) +B.hI=new A.cq(0,"DoubleQuote") +B.c6=new A.cq(1,"SingleQuote") +B.a8=new A.cq(2,"HebrewLetter") +B.ex=new A.cq(3,"CR") +B.ey=new A.cq(4,"LF") +B.hM=new A.cq(5,"Newline") +B.df=new A.cq(6,"Extend") +B.MP=new A.cq(7,"RegionalIndicator") +B.dg=new A.cq(8,"Format") +B.dh=new A.cq(9,"Katakana") +B.aw=new A.cq(10,"ALetter") +B.hJ=new A.cq(11,"MidLetter") +B.hK=new A.cq(12,"MidNum") +B.dd=new A.cq(13,"MidNumLet") +B.aY=new A.cq(14,"Numeric") +B.ew=new A.cq(15,"ExtendNumLet") +B.de=new A.cq(16,"ZWJ") +B.hL=new A.cq(17,"WSegSpace") +B.v5=new A.cq(18,"Unknown") +B.BB=A.a(s([B.hI,B.c6,B.a8,B.ex,B.ey,B.hM,B.df,B.MP,B.dg,B.dh,B.aw,B.hJ,B.hK,B.dd,B.aY,B.ew,B.de,B.hL,B.v5]),A.a_("v")) +B.hU=new A.x4(0,"named") +B.NP=new A.x4(1,"anonymous") +B.BC=A.a(s([B.hU,B.NP]),A.a_("v")) +B.BG=A.a(s([-1,0,0,1,0,0,-1,0,1,0,0,0,-1,1,0,1,1,1,1,0]),t.zp) +B.at=new A.f(4294967304) +B.cB=new A.f(4294967323) +B.ai=new A.f(4294967423) +B.fK=new A.f(4294967558) +B.cF=new A.f(8589934848) +B.dR=new A.f(8589934849) +B.bP=new A.f(8589934850) +B.cG=new A.f(8589934851) +B.cH=new A.f(8589934852) +B.dS=new A.f(8589934853) +B.cI=new A.f(8589934854) +B.dT=new A.f(8589934855) +B.h=new A.q(0,0) +B.by=new A.f1(B.h) +B.Db=new A.nJ(B.h,B.by) +B.Dc=new A.Ub("longPress") +B.Dd=new A.nK(B.h) +B.oV=new A.Ci(0,"start") +B.De=new A.Ci(5,"spaceEvenly") +B.oW=new A.Cj(0,"min") +B.oX=new A.Cj(1,"max") +B.pi=new A.i(16) +B.pj=new A.i(17) +B.cR=new A.i(18) +B.pk=new A.i(19) +B.pl=new A.i(20) +B.pm=new A.i(21) +B.pn=new A.i(22) +B.po=new A.i(23) +B.pp=new A.i(24) +B.ta=new A.i(65666) +B.tb=new A.i(65667) +B.tc=new A.i(65717) +B.pq=new A.i(392961) +B.pr=new A.i(392962) +B.ps=new A.i(392963) +B.pt=new A.i(392964) +B.pu=new A.i(392965) +B.pv=new A.i(392966) +B.pw=new A.i(392967) +B.px=new A.i(392968) +B.py=new A.i(392969) +B.pz=new A.i(392970) +B.pA=new A.i(392971) +B.pB=new A.i(392972) +B.pC=new A.i(392973) +B.pD=new A.i(392974) +B.pE=new A.i(392975) +B.pF=new A.i(392976) +B.pG=new A.i(392977) +B.pH=new A.i(392978) +B.pI=new A.i(392979) +B.pJ=new A.i(392980) +B.pK=new A.i(392981) +B.pL=new A.i(392982) +B.pM=new A.i(392983) +B.pN=new A.i(392984) +B.pO=new A.i(392985) +B.pP=new A.i(392986) +B.pQ=new A.i(392987) +B.pR=new A.i(392988) +B.pS=new A.i(392989) +B.pT=new A.i(392990) +B.pU=new A.i(392991) +B.En=new A.i(458752) +B.Eo=new A.i(458753) +B.Ep=new A.i(458754) +B.Eq=new A.i(458755) +B.pV=new A.i(458756) +B.pW=new A.i(458757) +B.pX=new A.i(458758) +B.pY=new A.i(458759) +B.pZ=new A.i(458760) +B.q_=new A.i(458761) +B.q0=new A.i(458762) +B.q1=new A.i(458763) +B.q2=new A.i(458764) +B.q3=new A.i(458765) +B.q4=new A.i(458766) +B.q5=new A.i(458767) +B.q6=new A.i(458768) +B.q7=new A.i(458769) +B.q8=new A.i(458770) +B.q9=new A.i(458771) +B.qa=new A.i(458772) +B.qb=new A.i(458773) +B.qc=new A.i(458774) +B.qd=new A.i(458775) +B.qe=new A.i(458776) +B.qf=new A.i(458777) +B.qg=new A.i(458778) +B.qh=new A.i(458779) +B.qi=new A.i(458780) +B.qj=new A.i(458781) +B.qk=new A.i(458782) +B.ql=new A.i(458783) +B.qm=new A.i(458784) +B.qn=new A.i(458785) +B.qo=new A.i(458786) +B.qp=new A.i(458787) +B.qq=new A.i(458788) +B.qr=new A.i(458789) +B.qs=new A.i(458790) +B.qt=new A.i(458791) +B.qu=new A.i(458792) +B.h6=new A.i(458793) +B.qv=new A.i(458794) +B.qw=new A.i(458795) +B.qx=new A.i(458796) +B.qy=new A.i(458797) +B.qz=new A.i(458798) +B.qA=new A.i(458799) +B.qB=new A.i(458800) +B.qC=new A.i(458801) +B.qD=new A.i(458803) +B.qE=new A.i(458804) +B.qF=new A.i(458805) +B.qG=new A.i(458806) +B.qH=new A.i(458807) +B.qI=new A.i(458808) +B.br=new A.i(458809) +B.qJ=new A.i(458810) +B.qK=new A.i(458811) +B.qL=new A.i(458812) +B.qM=new A.i(458813) +B.qN=new A.i(458814) +B.qO=new A.i(458815) +B.qP=new A.i(458816) +B.qQ=new A.i(458817) +B.qR=new A.i(458818) +B.qS=new A.i(458819) +B.qT=new A.i(458820) +B.qU=new A.i(458821) +B.qV=new A.i(458822) +B.e6=new A.i(458823) +B.qW=new A.i(458824) +B.qX=new A.i(458825) +B.qY=new A.i(458826) +B.qZ=new A.i(458827) +B.r_=new A.i(458828) +B.r0=new A.i(458829) +B.r1=new A.i(458830) +B.r2=new A.i(458831) +B.r3=new A.i(458832) +B.r4=new A.i(458833) +B.r5=new A.i(458834) +B.e7=new A.i(458835) +B.r6=new A.i(458836) +B.r7=new A.i(458837) +B.r8=new A.i(458838) +B.r9=new A.i(458839) +B.ra=new A.i(458840) +B.rb=new A.i(458841) +B.rc=new A.i(458842) +B.rd=new A.i(458843) +B.re=new A.i(458844) +B.rf=new A.i(458845) +B.rg=new A.i(458846) +B.rh=new A.i(458847) +B.ri=new A.i(458848) +B.rj=new A.i(458849) +B.rk=new A.i(458850) +B.rl=new A.i(458851) +B.rm=new A.i(458852) +B.rn=new A.i(458853) +B.ro=new A.i(458854) +B.rp=new A.i(458855) +B.rq=new A.i(458856) +B.rr=new A.i(458857) +B.rs=new A.i(458858) +B.rt=new A.i(458859) +B.ru=new A.i(458860) +B.rv=new A.i(458861) +B.rw=new A.i(458862) +B.rx=new A.i(458863) +B.ry=new A.i(458864) +B.rz=new A.i(458865) +B.rA=new A.i(458866) +B.rB=new A.i(458867) +B.rC=new A.i(458868) +B.rD=new A.i(458869) +B.rE=new A.i(458871) +B.rF=new A.i(458873) +B.rG=new A.i(458874) +B.rH=new A.i(458875) +B.rI=new A.i(458876) +B.rJ=new A.i(458877) +B.rK=new A.i(458878) +B.rL=new A.i(458879) +B.rM=new A.i(458880) +B.rN=new A.i(458881) +B.rO=new A.i(458885) +B.rP=new A.i(458887) +B.rQ=new A.i(458888) +B.rR=new A.i(458889) +B.rS=new A.i(458890) +B.rT=new A.i(458891) +B.rU=new A.i(458896) +B.rV=new A.i(458897) +B.rW=new A.i(458898) +B.rX=new A.i(458899) +B.rY=new A.i(458900) +B.rZ=new A.i(458907) +B.t_=new A.i(458915) +B.t0=new A.i(458934) +B.t1=new A.i(458935) +B.t2=new A.i(458939) +B.t3=new A.i(458960) +B.t4=new A.i(458961) +B.t5=new A.i(458962) +B.t6=new A.i(458963) +B.t7=new A.i(458964) +B.Er=new A.i(458967) +B.t8=new A.i(458968) +B.t9=new A.i(458969) +B.bR=new A.i(458976) +B.bS=new A.i(458977) +B.bT=new A.i(458978) +B.bU=new A.i(458979) +B.cS=new A.i(458980) +B.cT=new A.i(458981) +B.bV=new A.i(458982) +B.cU=new A.i(458983) +B.Es=new A.i(786528) +B.Et=new A.i(786529) +B.td=new A.i(786543) +B.te=new A.i(786544) +B.Eu=new A.i(786546) +B.Ev=new A.i(786547) +B.Ew=new A.i(786548) +B.Ex=new A.i(786549) +B.Ey=new A.i(786553) +B.Ez=new A.i(786554) +B.EA=new A.i(786563) +B.EB=new A.i(786572) +B.EC=new A.i(786573) +B.ED=new A.i(786580) +B.EE=new A.i(786588) +B.EF=new A.i(786589) +B.tf=new A.i(786608) +B.tg=new A.i(786609) +B.th=new A.i(786610) +B.ti=new A.i(786611) +B.tj=new A.i(786612) +B.tk=new A.i(786613) +B.tl=new A.i(786614) +B.tm=new A.i(786615) +B.tn=new A.i(786616) +B.to=new A.i(786637) +B.EG=new A.i(786639) +B.EH=new A.i(786661) +B.tp=new A.i(786819) +B.EI=new A.i(786820) +B.EJ=new A.i(786822) +B.tq=new A.i(786826) +B.EK=new A.i(786829) +B.EL=new A.i(786830) +B.tr=new A.i(786834) +B.ts=new A.i(786836) +B.EM=new A.i(786838) +B.EN=new A.i(786844) +B.EO=new A.i(786846) +B.tt=new A.i(786847) +B.tu=new A.i(786850) +B.EP=new A.i(786855) +B.EQ=new A.i(786859) +B.ER=new A.i(786862) +B.tv=new A.i(786865) +B.ES=new A.i(786871) +B.tw=new A.i(786891) +B.ET=new A.i(786945) +B.EU=new A.i(786947) +B.EV=new A.i(786951) +B.EW=new A.i(786952) +B.tx=new A.i(786977) +B.ty=new A.i(786979) +B.tz=new A.i(786980) +B.tA=new A.i(786981) +B.tB=new A.i(786982) +B.tC=new A.i(786983) +B.tD=new A.i(786986) +B.EX=new A.i(786989) +B.EY=new A.i(786990) +B.tE=new A.i(786994) +B.EZ=new A.i(787065) +B.tF=new A.i(787081) +B.tG=new A.i(787083) +B.tH=new A.i(787084) +B.tI=new A.i(787101) +B.tJ=new A.i(787103) +B.Dh=new A.bq([16,B.pi,17,B.pj,18,B.cR,19,B.pk,20,B.pl,21,B.pm,22,B.pn,23,B.po,24,B.pp,65666,B.ta,65667,B.tb,65717,B.tc,392961,B.pq,392962,B.pr,392963,B.ps,392964,B.pt,392965,B.pu,392966,B.pv,392967,B.pw,392968,B.px,392969,B.py,392970,B.pz,392971,B.pA,392972,B.pB,392973,B.pC,392974,B.pD,392975,B.pE,392976,B.pF,392977,B.pG,392978,B.pH,392979,B.pI,392980,B.pJ,392981,B.pK,392982,B.pL,392983,B.pM,392984,B.pN,392985,B.pO,392986,B.pP,392987,B.pQ,392988,B.pR,392989,B.pS,392990,B.pT,392991,B.pU,458752,B.En,458753,B.Eo,458754,B.Ep,458755,B.Eq,458756,B.pV,458757,B.pW,458758,B.pX,458759,B.pY,458760,B.pZ,458761,B.q_,458762,B.q0,458763,B.q1,458764,B.q2,458765,B.q3,458766,B.q4,458767,B.q5,458768,B.q6,458769,B.q7,458770,B.q8,458771,B.q9,458772,B.qa,458773,B.qb,458774,B.qc,458775,B.qd,458776,B.qe,458777,B.qf,458778,B.qg,458779,B.qh,458780,B.qi,458781,B.qj,458782,B.qk,458783,B.ql,458784,B.qm,458785,B.qn,458786,B.qo,458787,B.qp,458788,B.qq,458789,B.qr,458790,B.qs,458791,B.qt,458792,B.qu,458793,B.h6,458794,B.qv,458795,B.qw,458796,B.qx,458797,B.qy,458798,B.qz,458799,B.qA,458800,B.qB,458801,B.qC,458803,B.qD,458804,B.qE,458805,B.qF,458806,B.qG,458807,B.qH,458808,B.qI,458809,B.br,458810,B.qJ,458811,B.qK,458812,B.qL,458813,B.qM,458814,B.qN,458815,B.qO,458816,B.qP,458817,B.qQ,458818,B.qR,458819,B.qS,458820,B.qT,458821,B.qU,458822,B.qV,458823,B.e6,458824,B.qW,458825,B.qX,458826,B.qY,458827,B.qZ,458828,B.r_,458829,B.r0,458830,B.r1,458831,B.r2,458832,B.r3,458833,B.r4,458834,B.r5,458835,B.e7,458836,B.r6,458837,B.r7,458838,B.r8,458839,B.r9,458840,B.ra,458841,B.rb,458842,B.rc,458843,B.rd,458844,B.re,458845,B.rf,458846,B.rg,458847,B.rh,458848,B.ri,458849,B.rj,458850,B.rk,458851,B.rl,458852,B.rm,458853,B.rn,458854,B.ro,458855,B.rp,458856,B.rq,458857,B.rr,458858,B.rs,458859,B.rt,458860,B.ru,458861,B.rv,458862,B.rw,458863,B.rx,458864,B.ry,458865,B.rz,458866,B.rA,458867,B.rB,458868,B.rC,458869,B.rD,458871,B.rE,458873,B.rF,458874,B.rG,458875,B.rH,458876,B.rI,458877,B.rJ,458878,B.rK,458879,B.rL,458880,B.rM,458881,B.rN,458885,B.rO,458887,B.rP,458888,B.rQ,458889,B.rR,458890,B.rS,458891,B.rT,458896,B.rU,458897,B.rV,458898,B.rW,458899,B.rX,458900,B.rY,458907,B.rZ,458915,B.t_,458934,B.t0,458935,B.t1,458939,B.t2,458960,B.t3,458961,B.t4,458962,B.t5,458963,B.t6,458964,B.t7,458967,B.Er,458968,B.t8,458969,B.t9,458976,B.bR,458977,B.bS,458978,B.bT,458979,B.bU,458980,B.cS,458981,B.cT,458982,B.bV,458983,B.cU,786528,B.Es,786529,B.Et,786543,B.td,786544,B.te,786546,B.Eu,786547,B.Ev,786548,B.Ew,786549,B.Ex,786553,B.Ey,786554,B.Ez,786563,B.EA,786572,B.EB,786573,B.EC,786580,B.ED,786588,B.EE,786589,B.EF,786608,B.tf,786609,B.tg,786610,B.th,786611,B.ti,786612,B.tj,786613,B.tk,786614,B.tl,786615,B.tm,786616,B.tn,786637,B.to,786639,B.EG,786661,B.EH,786819,B.tp,786820,B.EI,786822,B.EJ,786826,B.tq,786829,B.EK,786830,B.EL,786834,B.tr,786836,B.ts,786838,B.EM,786844,B.EN,786846,B.EO,786847,B.tt,786850,B.tu,786855,B.EP,786859,B.EQ,786862,B.ER,786865,B.tv,786871,B.ES,786891,B.tw,786945,B.ET,786947,B.EU,786951,B.EV,786952,B.EW,786977,B.tx,786979,B.ty,786980,B.tz,786981,B.tA,786982,B.tB,786983,B.tC,786986,B.tD,786989,B.EX,786990,B.EY,786994,B.tE,787065,B.EZ,787081,B.tF,787083,B.tG,787084,B.tH,787101,B.tI,787103,B.tJ],A.a_("bq")) +B.Dj=new A.bq([0,"FontWeight.w100",1,"FontWeight.w200",2,"FontWeight.w300",3,"FontWeight.w400",4,"FontWeight.w500",5,"FontWeight.w600",6,"FontWeight.w700",7,"FontWeight.w800",8,"FontWeight.w900"],A.a_("bq")) +B.AG=A.a(s(["BU","DD","FX","TP","YD","ZR"]),t.s) +B.aU=new A.aW(6,{BU:"MM",DD:"DE",FX:"FR",TP:"TL",YD:"YE",ZR:"CD"},B.AG,t.hD) +B.AH=A.a(s(["alias","allScroll","basic","cell","click","contextMenu","copy","forbidden","grab","grabbing","help","move","none","noDrop","precise","progress","text","resizeColumn","resizeDown","resizeDownLeft","resizeDownRight","resizeLeft","resizeLeftRight","resizeRight","resizeRow","resizeUp","resizeUpDown","resizeUpLeft","resizeUpRight","resizeUpLeftDownRight","resizeUpRightDownLeft","verticalText","wait","zoomIn","zoomOut"]),t.s) +B.Do=new A.aW(35,{alias:"alias",allScroll:"all-scroll",basic:"default",cell:"cell",click:"pointer",contextMenu:"context-menu",copy:"copy",forbidden:"not-allowed",grab:"grab",grabbing:"grabbing",help:"help",move:"move",none:"none",noDrop:"no-drop",precise:"crosshair",progress:"progress",text:"text",resizeColumn:"col-resize",resizeDown:"s-resize",resizeDownLeft:"sw-resize",resizeDownRight:"se-resize",resizeLeft:"w-resize",resizeLeftRight:"ew-resize",resizeRight:"e-resize",resizeRow:"row-resize",resizeUp:"n-resize",resizeUpDown:"ns-resize",resizeUpLeft:"nw-resize",resizeUpRight:"ne-resize",resizeUpLeftDownRight:"nwse-resize",resizeUpRightDownLeft:"nesw-resize",verticalText:"vertical-text",wait:"wait",zoomIn:"zoom-in",zoomOut:"zoom-out"},B.AH,t.hD) +B.BA=A.a(s(["type"]),t.s) +B.Dq=new A.aW(1,{type:"line"},B.BA,t.hD) +B.jT=A.a(s(["AVRInput","AVRPower","Accel","Accept","Again","AllCandidates","Alphanumeric","AltGraph","AppSwitch","ArrowDown","ArrowLeft","ArrowRight","ArrowUp","Attn","AudioBalanceLeft","AudioBalanceRight","AudioBassBoostDown","AudioBassBoostToggle","AudioBassBoostUp","AudioFaderFront","AudioFaderRear","AudioSurroundModeNext","AudioTrebleDown","AudioTrebleUp","AudioVolumeDown","AudioVolumeMute","AudioVolumeUp","Backspace","BrightnessDown","BrightnessUp","BrowserBack","BrowserFavorites","BrowserForward","BrowserHome","BrowserRefresh","BrowserSearch","BrowserStop","Call","Camera","CameraFocus","Cancel","CapsLock","ChannelDown","ChannelUp","Clear","Close","ClosedCaptionToggle","CodeInput","ColorF0Red","ColorF1Green","ColorF2Yellow","ColorF3Blue","ColorF4Grey","ColorF5Brown","Compose","ContextMenu","Convert","Copy","CrSel","Cut","DVR","Delete","Dimmer","DisplaySwap","Eisu","Eject","End","EndCall","Enter","EraseEof","Esc","Escape","ExSel","Execute","Exit","F1","F10","F11","F12","F13","F14","F15","F16","F17","F18","F19","F2","F20","F21","F22","F23","F24","F3","F4","F5","F6","F7","F8","F9","FavoriteClear0","FavoriteClear1","FavoriteClear2","FavoriteClear3","FavoriteRecall0","FavoriteRecall1","FavoriteRecall2","FavoriteRecall3","FavoriteStore0","FavoriteStore1","FavoriteStore2","FavoriteStore3","FinalMode","Find","Fn","FnLock","GoBack","GoHome","GroupFirst","GroupLast","GroupNext","GroupPrevious","Guide","GuideNextDay","GuidePreviousDay","HangulMode","HanjaMode","Hankaku","HeadsetHook","Help","Hibernate","Hiragana","HiraganaKatakana","Home","Hyper","Info","Insert","InstantReplay","JunjaMode","KanaMode","KanjiMode","Katakana","Key11","Key12","LastNumberRedial","LaunchApplication1","LaunchApplication2","LaunchAssistant","LaunchCalendar","LaunchContacts","LaunchControlPanel","LaunchMail","LaunchMediaPlayer","LaunchMusicPlayer","LaunchPhone","LaunchScreenSaver","LaunchSpreadsheet","LaunchWebBrowser","LaunchWebCam","LaunchWordProcessor","Link","ListProgram","LiveContent","Lock","LogOff","MailForward","MailReply","MailSend","MannerMode","MediaApps","MediaAudioTrack","MediaClose","MediaFastForward","MediaLast","MediaPause","MediaPlay","MediaPlayPause","MediaRecord","MediaRewind","MediaSkip","MediaSkipBackward","MediaSkipForward","MediaStepBackward","MediaStepForward","MediaStop","MediaTopMenu","MediaTrackNext","MediaTrackPrevious","MicrophoneToggle","MicrophoneVolumeDown","MicrophoneVolumeMute","MicrophoneVolumeUp","ModeChange","NavigateIn","NavigateNext","NavigateOut","NavigatePrevious","New","NextCandidate","NextFavoriteChannel","NextUserProfile","NonConvert","Notification","NumLock","OnDemand","Open","PageDown","PageUp","Pairing","Paste","Pause","PinPDown","PinPMove","PinPToggle","PinPUp","Play","PlaySpeedDown","PlaySpeedReset","PlaySpeedUp","Power","PowerOff","PreviousCandidate","Print","PrintScreen","Process","Props","RandomToggle","RcLowBattery","RecordSpeedNext","Redo","RfBypass","Romaji","STBInput","STBPower","Save","ScanChannelsToggle","ScreenModeNext","ScrollLock","Select","Settings","ShiftLevel5","SingleCandidate","Soft1","Soft2","Soft3","Soft4","Soft5","Soft6","Soft7","Soft8","SpeechCorrectionList","SpeechInputToggle","SpellCheck","SplitScreenToggle","Standby","Subtitle","Super","Symbol","SymbolLock","TV","TV3DMode","TVAntennaCable","TVAudioDescription","TVAudioDescriptionMixDown","TVAudioDescriptionMixUp","TVContentsMenu","TVDataService","TVInput","TVInputComponent1","TVInputComponent2","TVInputComposite1","TVInputComposite2","TVInputHDMI1","TVInputHDMI2","TVInputHDMI3","TVInputHDMI4","TVInputVGA1","TVMediaContext","TVNetwork","TVNumberEntry","TVPower","TVRadioService","TVSatellite","TVSatelliteBS","TVSatelliteCS","TVSatelliteToggle","TVTerrestrialAnalog","TVTerrestrialDigital","TVTimer","Tab","Teletext","Undo","Unidentified","VideoModeNext","VoiceDial","WakeUp","Wink","Zenkaku","ZenkakuHankaku","ZoomIn","ZoomOut","ZoomToggle"]),t.s) +B.mv=new A.f(4294970632) +B.mw=new A.f(4294970633) +B.kb=new A.f(4294967553) +B.kq=new A.f(4294968577) +B.kr=new A.f(4294968578) +B.kP=new A.f(4294969089) +B.kQ=new A.f(4294969090) +B.dO=new A.f(4294967555) +B.nZ=new A.f(4294971393) +B.aA=new A.f(4294968065) +B.au=new A.f(4294968066) +B.av=new A.f(4294968067) +B.aB=new A.f(4294968068) +B.ks=new A.f(4294968579) +B.mo=new A.f(4294970625) +B.mp=new A.f(4294970626) +B.mq=new A.f(4294970627) +B.nQ=new A.f(4294970882) +B.mr=new A.f(4294970628) +B.ms=new A.f(4294970629) +B.mt=new A.f(4294970630) +B.mu=new A.f(4294970631) +B.nR=new A.f(4294970884) +B.nS=new A.f(4294970885) +B.m_=new A.f(4294969871) +B.m1=new A.f(4294969873) +B.m0=new A.f(4294969872) +B.kE=new A.f(4294968833) +B.kF=new A.f(4294968834) +B.mh=new A.f(4294970369) +B.mi=new A.f(4294970370) +B.mj=new A.f(4294970371) +B.mk=new A.f(4294970372) +B.ml=new A.f(4294970373) +B.mm=new A.f(4294970374) +B.mn=new A.f(4294970375) +B.o_=new A.f(4294971394) +B.kG=new A.f(4294968835) +B.o0=new A.f(4294971395) +B.kt=new A.f(4294968580) +B.mx=new A.f(4294970634) +B.my=new A.f(4294970635) +B.fL=new A.f(4294968321) +B.lN=new A.f(4294969857) +B.mF=new A.f(4294970642) +B.kR=new A.f(4294969091) +B.mz=new A.f(4294970636) +B.mA=new A.f(4294970637) +B.mB=new A.f(4294970638) +B.mC=new A.f(4294970639) +B.mD=new A.f(4294970640) +B.mE=new A.f(4294970641) +B.kS=new A.f(4294969092) +B.ku=new A.f(4294968581) +B.kT=new A.f(4294969093) +B.ki=new A.f(4294968322) +B.kj=new A.f(4294968323) +B.kk=new A.f(4294968324) +B.nD=new A.f(4294970703) +B.mG=new A.f(4294970643) +B.mH=new A.f(4294970644) +B.l7=new A.f(4294969108) +B.kH=new A.f(4294968836) +B.bo=new A.f(4294968069) +B.o1=new A.f(4294971396) +B.dN=new A.f(4294967309) +B.kl=new A.f(4294968325) +B.km=new A.f(4294968326) +B.kv=new A.f(4294968582) +B.mI=new A.f(4294970645) +B.lh=new A.f(4294969345) +B.lq=new A.f(4294969354) +B.lr=new A.f(4294969355) +B.ls=new A.f(4294969356) +B.lt=new A.f(4294969357) +B.lu=new A.f(4294969358) +B.lv=new A.f(4294969359) +B.lw=new A.f(4294969360) +B.lx=new A.f(4294969361) +B.ly=new A.f(4294969362) +B.lz=new A.f(4294969363) +B.li=new A.f(4294969346) +B.lA=new A.f(4294969364) +B.lB=new A.f(4294969365) +B.lC=new A.f(4294969366) +B.lD=new A.f(4294969367) +B.lE=new A.f(4294969368) +B.lj=new A.f(4294969347) +B.lk=new A.f(4294969348) +B.ll=new A.f(4294969349) +B.lm=new A.f(4294969350) +B.ln=new A.f(4294969351) +B.lo=new A.f(4294969352) +B.lp=new A.f(4294969353) +B.mJ=new A.f(4294970646) +B.mK=new A.f(4294970647) +B.mL=new A.f(4294970648) +B.mM=new A.f(4294970649) +B.mN=new A.f(4294970650) +B.mO=new A.f(4294970651) +B.mP=new A.f(4294970652) +B.mQ=new A.f(4294970653) +B.mR=new A.f(4294970654) +B.mS=new A.f(4294970655) +B.mT=new A.f(4294970656) +B.mU=new A.f(4294970657) +B.kU=new A.f(4294969094) +B.kw=new A.f(4294968583) +B.kc=new A.f(4294967559) +B.o2=new A.f(4294971397) +B.o3=new A.f(4294971398) +B.kV=new A.f(4294969095) +B.kW=new A.f(4294969096) +B.kX=new A.f(4294969097) +B.kY=new A.f(4294969098) +B.mV=new A.f(4294970658) +B.mW=new A.f(4294970659) +B.mX=new A.f(4294970660) +B.l4=new A.f(4294969105) +B.l5=new A.f(4294969106) +B.l8=new A.f(4294969109) +B.o4=new A.f(4294971399) +B.kx=new A.f(4294968584) +B.kM=new A.f(4294968841) +B.l9=new A.f(4294969110) +B.la=new A.f(4294969111) +B.bp=new A.f(4294968070) +B.kd=new A.f(4294967560) +B.mY=new A.f(4294970661) +B.fM=new A.f(4294968327) +B.mZ=new A.f(4294970662) +B.l6=new A.f(4294969107) +B.lb=new A.f(4294969112) +B.lc=new A.f(4294969113) +B.ld=new A.f(4294969114) +B.oA=new A.f(4294971905) +B.oB=new A.f(4294971906) +B.o5=new A.f(4294971400) +B.m7=new A.f(4294970118) +B.m2=new A.f(4294970113) +B.mf=new A.f(4294970126) +B.m3=new A.f(4294970114) +B.md=new A.f(4294970124) +B.mg=new A.f(4294970127) +B.m4=new A.f(4294970115) +B.m5=new A.f(4294970116) +B.m6=new A.f(4294970117) +B.me=new A.f(4294970125) +B.m8=new A.f(4294970119) +B.m9=new A.f(4294970120) +B.ma=new A.f(4294970121) +B.mb=new A.f(4294970122) +B.mc=new A.f(4294970123) +B.n_=new A.f(4294970663) +B.n0=new A.f(4294970664) +B.n1=new A.f(4294970665) +B.n2=new A.f(4294970666) +B.kI=new A.f(4294968837) +B.lO=new A.f(4294969858) +B.lP=new A.f(4294969859) +B.lQ=new A.f(4294969860) +B.o7=new A.f(4294971402) +B.n3=new A.f(4294970667) +B.nE=new A.f(4294970704) +B.nP=new A.f(4294970715) +B.n4=new A.f(4294970668) +B.n5=new A.f(4294970669) +B.n6=new A.f(4294970670) +B.n7=new A.f(4294970671) +B.lR=new A.f(4294969861) +B.n8=new A.f(4294970672) +B.n9=new A.f(4294970673) +B.na=new A.f(4294970674) +B.nF=new A.f(4294970705) +B.nG=new A.f(4294970706) +B.nH=new A.f(4294970707) +B.nI=new A.f(4294970708) +B.lS=new A.f(4294969863) +B.nJ=new A.f(4294970709) +B.lT=new A.f(4294969864) +B.lU=new A.f(4294969865) +B.nT=new A.f(4294970886) +B.nU=new A.f(4294970887) +B.nW=new A.f(4294970889) +B.nV=new A.f(4294970888) +B.kZ=new A.f(4294969099) +B.nK=new A.f(4294970710) +B.nL=new A.f(4294970711) +B.nM=new A.f(4294970712) +B.nN=new A.f(4294970713) +B.lV=new A.f(4294969866) +B.l_=new A.f(4294969100) +B.nb=new A.f(4294970675) +B.nc=new A.f(4294970676) +B.l0=new A.f(4294969101) +B.o6=new A.f(4294971401) +B.nd=new A.f(4294970677) +B.lW=new A.f(4294969867) +B.cD=new A.f(4294968071) +B.cE=new A.f(4294968072) +B.nO=new A.f(4294970714) +B.kn=new A.f(4294968328) +B.ky=new A.f(4294968585) +B.ne=new A.f(4294970678) +B.nf=new A.f(4294970679) +B.ng=new A.f(4294970680) +B.nh=new A.f(4294970681) +B.kz=new A.f(4294968586) +B.ni=new A.f(4294970682) +B.nj=new A.f(4294970683) +B.nk=new A.f(4294970684) +B.kJ=new A.f(4294968838) +B.kK=new A.f(4294968839) +B.l1=new A.f(4294969102) +B.lX=new A.f(4294969868) +B.kL=new A.f(4294968840) +B.l2=new A.f(4294969103) +B.kA=new A.f(4294968587) +B.nl=new A.f(4294970685) +B.nm=new A.f(4294970686) +B.nn=new A.f(4294970687) +B.ko=new A.f(4294968329) +B.no=new A.f(4294970688) +B.le=new A.f(4294969115) +B.nt=new A.f(4294970693) +B.nu=new A.f(4294970694) +B.lY=new A.f(4294969869) +B.np=new A.f(4294970689) +B.nq=new A.f(4294970690) +B.kB=new A.f(4294968588) +B.nr=new A.f(4294970691) +B.kh=new A.f(4294967569) +B.l3=new A.f(4294969104) +B.lF=new A.f(4294969601) +B.lG=new A.f(4294969602) +B.lH=new A.f(4294969603) +B.lI=new A.f(4294969604) +B.lJ=new A.f(4294969605) +B.lK=new A.f(4294969606) +B.lL=new A.f(4294969607) +B.lM=new A.f(4294969608) +B.nX=new A.f(4294971137) +B.nY=new A.f(4294971138) +B.lZ=new A.f(4294969870) +B.ns=new A.f(4294970692) +B.kN=new A.f(4294968842) +B.nv=new A.f(4294970695) +B.ke=new A.f(4294967566) +B.kf=new A.f(4294967567) +B.kg=new A.f(4294967568) +B.nx=new A.f(4294970697) +B.o9=new A.f(4294971649) +B.oa=new A.f(4294971650) +B.ob=new A.f(4294971651) +B.oc=new A.f(4294971652) +B.od=new A.f(4294971653) +B.oe=new A.f(4294971654) +B.of=new A.f(4294971655) +B.ny=new A.f(4294970698) +B.og=new A.f(4294971656) +B.oh=new A.f(4294971657) +B.oi=new A.f(4294971658) +B.oj=new A.f(4294971659) +B.ok=new A.f(4294971660) +B.ol=new A.f(4294971661) +B.om=new A.f(4294971662) +B.on=new A.f(4294971663) +B.oo=new A.f(4294971664) +B.op=new A.f(4294971665) +B.oq=new A.f(4294971666) +B.or=new A.f(4294971667) +B.nz=new A.f(4294970699) +B.os=new A.f(4294971668) +B.ot=new A.f(4294971669) +B.ou=new A.f(4294971670) +B.ov=new A.f(4294971671) +B.ow=new A.f(4294971672) +B.ox=new A.f(4294971673) +B.oy=new A.f(4294971674) +B.oz=new A.f(4294971675) +B.dM=new A.f(4294967305) +B.nw=new A.f(4294970696) +B.kp=new A.f(4294968330) +B.ka=new A.f(4294967297) +B.nA=new A.f(4294970700) +B.o8=new A.f(4294971403) +B.kO=new A.f(4294968843) +B.nB=new A.f(4294970701) +B.lf=new A.f(4294969116) +B.lg=new A.f(4294969117) +B.kC=new A.f(4294968589) +B.kD=new A.f(4294968590) +B.nC=new A.f(4294970702) +B.Ds=new A.aW(301,{AVRInput:B.mv,AVRPower:B.mw,Accel:B.kb,Accept:B.kq,Again:B.kr,AllCandidates:B.kP,Alphanumeric:B.kQ,AltGraph:B.dO,AppSwitch:B.nZ,ArrowDown:B.aA,ArrowLeft:B.au,ArrowRight:B.av,ArrowUp:B.aB,Attn:B.ks,AudioBalanceLeft:B.mo,AudioBalanceRight:B.mp,AudioBassBoostDown:B.mq,AudioBassBoostToggle:B.nQ,AudioBassBoostUp:B.mr,AudioFaderFront:B.ms,AudioFaderRear:B.mt,AudioSurroundModeNext:B.mu,AudioTrebleDown:B.nR,AudioTrebleUp:B.nS,AudioVolumeDown:B.m_,AudioVolumeMute:B.m1,AudioVolumeUp:B.m0,Backspace:B.at,BrightnessDown:B.kE,BrightnessUp:B.kF,BrowserBack:B.mh,BrowserFavorites:B.mi,BrowserForward:B.mj,BrowserHome:B.mk,BrowserRefresh:B.ml,BrowserSearch:B.mm,BrowserStop:B.mn,Call:B.o_,Camera:B.kG,CameraFocus:B.o0,Cancel:B.kt,CapsLock:B.cC,ChannelDown:B.mx,ChannelUp:B.my,Clear:B.fL,Close:B.lN,ClosedCaptionToggle:B.mF,CodeInput:B.kR,ColorF0Red:B.mz,ColorF1Green:B.mA,ColorF2Yellow:B.mB,ColorF3Blue:B.mC,ColorF4Grey:B.mD,ColorF5Brown:B.mE,Compose:B.kS,ContextMenu:B.ku,Convert:B.kT,Copy:B.ki,CrSel:B.kj,Cut:B.kk,DVR:B.nD,Delete:B.ai,Dimmer:B.mG,DisplaySwap:B.mH,Eisu:B.l7,Eject:B.kH,End:B.bo,EndCall:B.o1,Enter:B.dN,EraseEof:B.kl,Esc:B.cB,Escape:B.cB,ExSel:B.km,Execute:B.kv,Exit:B.mI,F1:B.lh,F10:B.lq,F11:B.lr,F12:B.ls,F13:B.lt,F14:B.lu,F15:B.lv,F16:B.lw,F17:B.lx,F18:B.ly,F19:B.lz,F2:B.li,F20:B.lA,F21:B.lB,F22:B.lC,F23:B.lD,F24:B.lE,F3:B.lj,F4:B.lk,F5:B.ll,F6:B.lm,F7:B.ln,F8:B.lo,F9:B.lp,FavoriteClear0:B.mJ,FavoriteClear1:B.mK,FavoriteClear2:B.mL,FavoriteClear3:B.mM,FavoriteRecall0:B.mN,FavoriteRecall1:B.mO,FavoriteRecall2:B.mP,FavoriteRecall3:B.mQ,FavoriteStore0:B.mR,FavoriteStore1:B.mS,FavoriteStore2:B.mT,FavoriteStore3:B.mU,FinalMode:B.kU,Find:B.kw,Fn:B.fK,FnLock:B.kc,GoBack:B.o2,GoHome:B.o3,GroupFirst:B.kV,GroupLast:B.kW,GroupNext:B.kX,GroupPrevious:B.kY,Guide:B.mV,GuideNextDay:B.mW,GuidePreviousDay:B.mX,HangulMode:B.l4,HanjaMode:B.l5,Hankaku:B.l8,HeadsetHook:B.o4,Help:B.kx,Hibernate:B.kM,Hiragana:B.l9,HiraganaKatakana:B.la,Home:B.bp,Hyper:B.kd,Info:B.mY,Insert:B.fM,InstantReplay:B.mZ,JunjaMode:B.l6,KanaMode:B.lb,KanjiMode:B.lc,Katakana:B.ld,Key11:B.oA,Key12:B.oB,LastNumberRedial:B.o5,LaunchApplication1:B.m7,LaunchApplication2:B.m2,LaunchAssistant:B.mf,LaunchCalendar:B.m3,LaunchContacts:B.md,LaunchControlPanel:B.mg,LaunchMail:B.m4,LaunchMediaPlayer:B.m5,LaunchMusicPlayer:B.m6,LaunchPhone:B.me,LaunchScreenSaver:B.m8,LaunchSpreadsheet:B.m9,LaunchWebBrowser:B.ma,LaunchWebCam:B.mb,LaunchWordProcessor:B.mc,Link:B.n_,ListProgram:B.n0,LiveContent:B.n1,Lock:B.n2,LogOff:B.kI,MailForward:B.lO,MailReply:B.lP,MailSend:B.lQ,MannerMode:B.o7,MediaApps:B.n3,MediaAudioTrack:B.nE,MediaClose:B.nP,MediaFastForward:B.n4,MediaLast:B.n5,MediaPause:B.n6,MediaPlay:B.n7,MediaPlayPause:B.lR,MediaRecord:B.n8,MediaRewind:B.n9,MediaSkip:B.na,MediaSkipBackward:B.nF,MediaSkipForward:B.nG,MediaStepBackward:B.nH,MediaStepForward:B.nI,MediaStop:B.lS,MediaTopMenu:B.nJ,MediaTrackNext:B.lT,MediaTrackPrevious:B.lU,MicrophoneToggle:B.nT,MicrophoneVolumeDown:B.nU,MicrophoneVolumeMute:B.nW,MicrophoneVolumeUp:B.nV,ModeChange:B.kZ,NavigateIn:B.nK,NavigateNext:B.nL,NavigateOut:B.nM,NavigatePrevious:B.nN,New:B.lV,NextCandidate:B.l_,NextFavoriteChannel:B.nb,NextUserProfile:B.nc,NonConvert:B.l0,Notification:B.o6,NumLock:B.dP,OnDemand:B.nd,Open:B.lW,PageDown:B.cD,PageUp:B.cE,Pairing:B.nO,Paste:B.kn,Pause:B.ky,PinPDown:B.ne,PinPMove:B.nf,PinPToggle:B.ng,PinPUp:B.nh,Play:B.kz,PlaySpeedDown:B.ni,PlaySpeedReset:B.nj,PlaySpeedUp:B.nk,Power:B.kJ,PowerOff:B.kK,PreviousCandidate:B.l1,Print:B.lX,PrintScreen:B.kL,Process:B.l2,Props:B.kA,RandomToggle:B.nl,RcLowBattery:B.nm,RecordSpeedNext:B.nn,Redo:B.ko,RfBypass:B.no,Romaji:B.le,STBInput:B.nt,STBPower:B.nu,Save:B.lY,ScanChannelsToggle:B.np,ScreenModeNext:B.nq,ScrollLock:B.dQ,Select:B.kB,Settings:B.nr,ShiftLevel5:B.kh,SingleCandidate:B.l3,Soft1:B.lF,Soft2:B.lG,Soft3:B.lH,Soft4:B.lI,Soft5:B.lJ,Soft6:B.lK,Soft7:B.lL,Soft8:B.lM,SpeechCorrectionList:B.nX,SpeechInputToggle:B.nY,SpellCheck:B.lZ,SplitScreenToggle:B.ns,Standby:B.kN,Subtitle:B.nv,Super:B.ke,Symbol:B.kf,SymbolLock:B.kg,TV:B.nx,TV3DMode:B.o9,TVAntennaCable:B.oa,TVAudioDescription:B.ob,TVAudioDescriptionMixDown:B.oc,TVAudioDescriptionMixUp:B.od,TVContentsMenu:B.oe,TVDataService:B.of,TVInput:B.ny,TVInputComponent1:B.og,TVInputComponent2:B.oh,TVInputComposite1:B.oi,TVInputComposite2:B.oj,TVInputHDMI1:B.ok,TVInputHDMI2:B.ol,TVInputHDMI3:B.om,TVInputHDMI4:B.on,TVInputVGA1:B.oo,TVMediaContext:B.op,TVNetwork:B.oq,TVNumberEntry:B.or,TVPower:B.nz,TVRadioService:B.os,TVSatellite:B.ot,TVSatelliteBS:B.ou,TVSatelliteCS:B.ov,TVSatelliteToggle:B.ow,TVTerrestrialAnalog:B.ox,TVTerrestrialDigital:B.oy,TVTimer:B.oz,Tab:B.dM,Teletext:B.nw,Undo:B.kp,Unidentified:B.ka,VideoModeNext:B.nA,VoiceDial:B.o8,WakeUp:B.kO,Wink:B.nB,Zenkaku:B.lf,ZenkakuHankaku:B.lg,ZoomIn:B.kC,ZoomOut:B.kD,ZoomToggle:B.nC},B.jT,A.a_("aW")) +B.Dt=new A.aW(301,{AVRInput:4294970632,AVRPower:4294970633,Accel:4294967553,Accept:4294968577,Again:4294968578,AllCandidates:4294969089,Alphanumeric:4294969090,AltGraph:4294967555,AppSwitch:4294971393,ArrowDown:4294968065,ArrowLeft:4294968066,ArrowRight:4294968067,ArrowUp:4294968068,Attn:4294968579,AudioBalanceLeft:4294970625,AudioBalanceRight:4294970626,AudioBassBoostDown:4294970627,AudioBassBoostToggle:4294970882,AudioBassBoostUp:4294970628,AudioFaderFront:4294970629,AudioFaderRear:4294970630,AudioSurroundModeNext:4294970631,AudioTrebleDown:4294970884,AudioTrebleUp:4294970885,AudioVolumeDown:4294969871,AudioVolumeMute:4294969873,AudioVolumeUp:4294969872,Backspace:4294967304,BrightnessDown:4294968833,BrightnessUp:4294968834,BrowserBack:4294970369,BrowserFavorites:4294970370,BrowserForward:4294970371,BrowserHome:4294970372,BrowserRefresh:4294970373,BrowserSearch:4294970374,BrowserStop:4294970375,Call:4294971394,Camera:4294968835,CameraFocus:4294971395,Cancel:4294968580,CapsLock:4294967556,ChannelDown:4294970634,ChannelUp:4294970635,Clear:4294968321,Close:4294969857,ClosedCaptionToggle:4294970642,CodeInput:4294969091,ColorF0Red:4294970636,ColorF1Green:4294970637,ColorF2Yellow:4294970638,ColorF3Blue:4294970639,ColorF4Grey:4294970640,ColorF5Brown:4294970641,Compose:4294969092,ContextMenu:4294968581,Convert:4294969093,Copy:4294968322,CrSel:4294968323,Cut:4294968324,DVR:4294970703,Delete:4294967423,Dimmer:4294970643,DisplaySwap:4294970644,Eisu:4294969108,Eject:4294968836,End:4294968069,EndCall:4294971396,Enter:4294967309,EraseEof:4294968325,Esc:4294967323,Escape:4294967323,ExSel:4294968326,Execute:4294968582,Exit:4294970645,F1:4294969345,F10:4294969354,F11:4294969355,F12:4294969356,F13:4294969357,F14:4294969358,F15:4294969359,F16:4294969360,F17:4294969361,F18:4294969362,F19:4294969363,F2:4294969346,F20:4294969364,F21:4294969365,F22:4294969366,F23:4294969367,F24:4294969368,F3:4294969347,F4:4294969348,F5:4294969349,F6:4294969350,F7:4294969351,F8:4294969352,F9:4294969353,FavoriteClear0:4294970646,FavoriteClear1:4294970647,FavoriteClear2:4294970648,FavoriteClear3:4294970649,FavoriteRecall0:4294970650,FavoriteRecall1:4294970651,FavoriteRecall2:4294970652,FavoriteRecall3:4294970653,FavoriteStore0:4294970654,FavoriteStore1:4294970655,FavoriteStore2:4294970656,FavoriteStore3:4294970657,FinalMode:4294969094,Find:4294968583,Fn:4294967558,FnLock:4294967559,GoBack:4294971397,GoHome:4294971398,GroupFirst:4294969095,GroupLast:4294969096,GroupNext:4294969097,GroupPrevious:4294969098,Guide:4294970658,GuideNextDay:4294970659,GuidePreviousDay:4294970660,HangulMode:4294969105,HanjaMode:4294969106,Hankaku:4294969109,HeadsetHook:4294971399,Help:4294968584,Hibernate:4294968841,Hiragana:4294969110,HiraganaKatakana:4294969111,Home:4294968070,Hyper:4294967560,Info:4294970661,Insert:4294968327,InstantReplay:4294970662,JunjaMode:4294969107,KanaMode:4294969112,KanjiMode:4294969113,Katakana:4294969114,Key11:4294971905,Key12:4294971906,LastNumberRedial:4294971400,LaunchApplication1:4294970118,LaunchApplication2:4294970113,LaunchAssistant:4294970126,LaunchCalendar:4294970114,LaunchContacts:4294970124,LaunchControlPanel:4294970127,LaunchMail:4294970115,LaunchMediaPlayer:4294970116,LaunchMusicPlayer:4294970117,LaunchPhone:4294970125,LaunchScreenSaver:4294970119,LaunchSpreadsheet:4294970120,LaunchWebBrowser:4294970121,LaunchWebCam:4294970122,LaunchWordProcessor:4294970123,Link:4294970663,ListProgram:4294970664,LiveContent:4294970665,Lock:4294970666,LogOff:4294968837,MailForward:4294969858,MailReply:4294969859,MailSend:4294969860,MannerMode:4294971402,MediaApps:4294970667,MediaAudioTrack:4294970704,MediaClose:4294970715,MediaFastForward:4294970668,MediaLast:4294970669,MediaPause:4294970670,MediaPlay:4294970671,MediaPlayPause:4294969861,MediaRecord:4294970672,MediaRewind:4294970673,MediaSkip:4294970674,MediaSkipBackward:4294970705,MediaSkipForward:4294970706,MediaStepBackward:4294970707,MediaStepForward:4294970708,MediaStop:4294969863,MediaTopMenu:4294970709,MediaTrackNext:4294969864,MediaTrackPrevious:4294969865,MicrophoneToggle:4294970886,MicrophoneVolumeDown:4294970887,MicrophoneVolumeMute:4294970889,MicrophoneVolumeUp:4294970888,ModeChange:4294969099,NavigateIn:4294970710,NavigateNext:4294970711,NavigateOut:4294970712,NavigatePrevious:4294970713,New:4294969866,NextCandidate:4294969100,NextFavoriteChannel:4294970675,NextUserProfile:4294970676,NonConvert:4294969101,Notification:4294971401,NumLock:4294967562,OnDemand:4294970677,Open:4294969867,PageDown:4294968071,PageUp:4294968072,Pairing:4294970714,Paste:4294968328,Pause:4294968585,PinPDown:4294970678,PinPMove:4294970679,PinPToggle:4294970680,PinPUp:4294970681,Play:4294968586,PlaySpeedDown:4294970682,PlaySpeedReset:4294970683,PlaySpeedUp:4294970684,Power:4294968838,PowerOff:4294968839,PreviousCandidate:4294969102,Print:4294969868,PrintScreen:4294968840,Process:4294969103,Props:4294968587,RandomToggle:4294970685,RcLowBattery:4294970686,RecordSpeedNext:4294970687,Redo:4294968329,RfBypass:4294970688,Romaji:4294969115,STBInput:4294970693,STBPower:4294970694,Save:4294969869,ScanChannelsToggle:4294970689,ScreenModeNext:4294970690,ScrollLock:4294967564,Select:4294968588,Settings:4294970691,ShiftLevel5:4294967569,SingleCandidate:4294969104,Soft1:4294969601,Soft2:4294969602,Soft3:4294969603,Soft4:4294969604,Soft5:4294969605,Soft6:4294969606,Soft7:4294969607,Soft8:4294969608,SpeechCorrectionList:4294971137,SpeechInputToggle:4294971138,SpellCheck:4294969870,SplitScreenToggle:4294970692,Standby:4294968842,Subtitle:4294970695,Super:4294967566,Symbol:4294967567,SymbolLock:4294967568,TV:4294970697,TV3DMode:4294971649,TVAntennaCable:4294971650,TVAudioDescription:4294971651,TVAudioDescriptionMixDown:4294971652,TVAudioDescriptionMixUp:4294971653,TVContentsMenu:4294971654,TVDataService:4294971655,TVInput:4294970698,TVInputComponent1:4294971656,TVInputComponent2:4294971657,TVInputComposite1:4294971658,TVInputComposite2:4294971659,TVInputHDMI1:4294971660,TVInputHDMI2:4294971661,TVInputHDMI3:4294971662,TVInputHDMI4:4294971663,TVInputVGA1:4294971664,TVMediaContext:4294971665,TVNetwork:4294971666,TVNumberEntry:4294971667,TVPower:4294970699,TVRadioService:4294971668,TVSatellite:4294971669,TVSatelliteBS:4294971670,TVSatelliteCS:4294971671,TVSatelliteToggle:4294971672,TVTerrestrialAnalog:4294971673,TVTerrestrialDigital:4294971674,TVTimer:4294971675,Tab:4294967305,Teletext:4294970696,Undo:4294968330,Unidentified:4294967297,VideoModeNext:4294970700,VoiceDial:4294971403,WakeUp:4294968843,Wink:4294970701,Zenkaku:4294969116,ZenkakuHankaku:4294969117,ZoomIn:4294968589,ZoomOut:4294968590,ZoomToggle:4294970702},B.jT,t.hq) +B.AS=A.a(s(["Abort","Again","AltLeft","AltRight","ArrowDown","ArrowLeft","ArrowRight","ArrowUp","AudioVolumeDown","AudioVolumeMute","AudioVolumeUp","Backquote","Backslash","Backspace","BracketLeft","BracketRight","BrightnessDown","BrightnessUp","BrowserBack","BrowserFavorites","BrowserForward","BrowserHome","BrowserRefresh","BrowserSearch","BrowserStop","CapsLock","Comma","ContextMenu","ControlLeft","ControlRight","Convert","Copy","Cut","Delete","Digit0","Digit1","Digit2","Digit3","Digit4","Digit5","Digit6","Digit7","Digit8","Digit9","DisplayToggleIntExt","Eject","End","Enter","Equal","Esc","Escape","F1","F10","F11","F12","F13","F14","F15","F16","F17","F18","F19","F2","F20","F21","F22","F23","F24","F3","F4","F5","F6","F7","F8","F9","Find","Fn","FnLock","GameButton1","GameButton10","GameButton11","GameButton12","GameButton13","GameButton14","GameButton15","GameButton16","GameButton2","GameButton3","GameButton4","GameButton5","GameButton6","GameButton7","GameButton8","GameButton9","GameButtonA","GameButtonB","GameButtonC","GameButtonLeft1","GameButtonLeft2","GameButtonMode","GameButtonRight1","GameButtonRight2","GameButtonSelect","GameButtonStart","GameButtonThumbLeft","GameButtonThumbRight","GameButtonX","GameButtonY","GameButtonZ","Help","Home","Hyper","Insert","IntlBackslash","IntlRo","IntlYen","KanaMode","KeyA","KeyB","KeyC","KeyD","KeyE","KeyF","KeyG","KeyH","KeyI","KeyJ","KeyK","KeyL","KeyM","KeyN","KeyO","KeyP","KeyQ","KeyR","KeyS","KeyT","KeyU","KeyV","KeyW","KeyX","KeyY","KeyZ","KeyboardLayoutSelect","Lang1","Lang2","Lang3","Lang4","Lang5","LaunchApp1","LaunchApp2","LaunchAssistant","LaunchControlPanel","LaunchMail","LaunchScreenSaver","MailForward","MailReply","MailSend","MediaFastForward","MediaPause","MediaPlay","MediaPlayPause","MediaRecord","MediaRewind","MediaSelect","MediaStop","MediaTrackNext","MediaTrackPrevious","MetaLeft","MetaRight","MicrophoneMuteToggle","Minus","NonConvert","NumLock","Numpad0","Numpad1","Numpad2","Numpad3","Numpad4","Numpad5","Numpad6","Numpad7","Numpad8","Numpad9","NumpadAdd","NumpadBackspace","NumpadClear","NumpadClearEntry","NumpadComma","NumpadDecimal","NumpadDivide","NumpadEnter","NumpadEqual","NumpadMemoryAdd","NumpadMemoryClear","NumpadMemoryRecall","NumpadMemoryStore","NumpadMemorySubtract","NumpadMultiply","NumpadParenLeft","NumpadParenRight","NumpadSubtract","Open","PageDown","PageUp","Paste","Pause","Period","Power","PrintScreen","PrivacyScreenToggle","Props","Quote","Resume","ScrollLock","Select","SelectTask","Semicolon","ShiftLeft","ShiftRight","ShowAllWindows","Slash","Sleep","Space","Super","Suspend","Tab","Turbo","Undo","WakeUp","ZoomToggle"]),t.s) +B.Du=new A.aW(231,{Abort:458907,Again:458873,AltLeft:458978,AltRight:458982,ArrowDown:458833,ArrowLeft:458832,ArrowRight:458831,ArrowUp:458834,AudioVolumeDown:458881,AudioVolumeMute:458879,AudioVolumeUp:458880,Backquote:458805,Backslash:458801,Backspace:458794,BracketLeft:458799,BracketRight:458800,BrightnessDown:786544,BrightnessUp:786543,BrowserBack:786980,BrowserFavorites:786986,BrowserForward:786981,BrowserHome:786979,BrowserRefresh:786983,BrowserSearch:786977,BrowserStop:786982,CapsLock:458809,Comma:458806,ContextMenu:458853,ControlLeft:458976,ControlRight:458980,Convert:458890,Copy:458876,Cut:458875,Delete:458828,Digit0:458791,Digit1:458782,Digit2:458783,Digit3:458784,Digit4:458785,Digit5:458786,Digit6:458787,Digit7:458788,Digit8:458789,Digit9:458790,DisplayToggleIntExt:65717,Eject:786616,End:458829,Enter:458792,Equal:458798,Esc:458793,Escape:458793,F1:458810,F10:458819,F11:458820,F12:458821,F13:458856,F14:458857,F15:458858,F16:458859,F17:458860,F18:458861,F19:458862,F2:458811,F20:458863,F21:458864,F22:458865,F23:458866,F24:458867,F3:458812,F4:458813,F5:458814,F6:458815,F7:458816,F8:458817,F9:458818,Find:458878,Fn:18,FnLock:19,GameButton1:392961,GameButton10:392970,GameButton11:392971,GameButton12:392972,GameButton13:392973,GameButton14:392974,GameButton15:392975,GameButton16:392976,GameButton2:392962,GameButton3:392963,GameButton4:392964,GameButton5:392965,GameButton6:392966,GameButton7:392967,GameButton8:392968,GameButton9:392969,GameButtonA:392977,GameButtonB:392978,GameButtonC:392979,GameButtonLeft1:392980,GameButtonLeft2:392981,GameButtonMode:392982,GameButtonRight1:392983,GameButtonRight2:392984,GameButtonSelect:392985,GameButtonStart:392986,GameButtonThumbLeft:392987,GameButtonThumbRight:392988,GameButtonX:392989,GameButtonY:392990,GameButtonZ:392991,Help:458869,Home:458826,Hyper:16,Insert:458825,IntlBackslash:458852,IntlRo:458887,IntlYen:458889,KanaMode:458888,KeyA:458756,KeyB:458757,KeyC:458758,KeyD:458759,KeyE:458760,KeyF:458761,KeyG:458762,KeyH:458763,KeyI:458764,KeyJ:458765,KeyK:458766,KeyL:458767,KeyM:458768,KeyN:458769,KeyO:458770,KeyP:458771,KeyQ:458772,KeyR:458773,KeyS:458774,KeyT:458775,KeyU:458776,KeyV:458777,KeyW:458778,KeyX:458779,KeyY:458780,KeyZ:458781,KeyboardLayoutSelect:787101,Lang1:458896,Lang2:458897,Lang3:458898,Lang4:458899,Lang5:458900,LaunchApp1:786836,LaunchApp2:786834,LaunchAssistant:786891,LaunchControlPanel:786847,LaunchMail:786826,LaunchScreenSaver:786865,MailForward:787083,MailReply:787081,MailSend:787084,MediaFastForward:786611,MediaPause:786609,MediaPlay:786608,MediaPlayPause:786637,MediaRecord:786610,MediaRewind:786612,MediaSelect:786819,MediaStop:786615,MediaTrackNext:786613,MediaTrackPrevious:786614,MetaLeft:458979,MetaRight:458983,MicrophoneMuteToggle:24,Minus:458797,NonConvert:458891,NumLock:458835,Numpad0:458850,Numpad1:458841,Numpad2:458842,Numpad3:458843,Numpad4:458844,Numpad5:458845,Numpad6:458846,Numpad7:458847,Numpad8:458848,Numpad9:458849,NumpadAdd:458839,NumpadBackspace:458939,NumpadClear:458968,NumpadClearEntry:458969,NumpadComma:458885,NumpadDecimal:458851,NumpadDivide:458836,NumpadEnter:458840,NumpadEqual:458855,NumpadMemoryAdd:458963,NumpadMemoryClear:458962,NumpadMemoryRecall:458961,NumpadMemoryStore:458960,NumpadMemorySubtract:458964,NumpadMultiply:458837,NumpadParenLeft:458934,NumpadParenRight:458935,NumpadSubtract:458838,Open:458868,PageDown:458830,PageUp:458827,Paste:458877,Pause:458824,Period:458807,Power:458854,PrintScreen:458822,PrivacyScreenToggle:23,Props:458915,Quote:458804,Resume:21,ScrollLock:458823,Select:458871,SelectTask:786850,Semicolon:458803,ShiftLeft:458977,ShiftRight:458981,ShowAllWindows:787103,Slash:458808,Sleep:65666,Space:458796,Super:17,Suspend:20,Tab:458795,Turbo:22,Undo:458874,WakeUp:65667,ZoomToggle:786994},B.AS,t.hq) +B.k8=new A.f(32) +B.er=new A.af(B.k8,!1,!1,!1,!1) +B.ei=new A.af(B.dN,!1,!1,!1,!1) +B.fN=new A.f(8589935117) +B.GD=new A.af(B.fN,!1,!1,!1,!1) +B.Gi=new A.af(B.cB,!1,!1,!1,!1) +B.Gj=new A.af(B.dM,!1,!1,!1,!1) +B.Gk=new A.af(B.dM,!1,!0,!1,!1) +B.el=new A.af(B.aB,!1,!1,!1,!1) +B.em=new A.af(B.aA,!1,!1,!1,!1) +B.ep=new A.af(B.au,!1,!1,!1,!1) +B.eq=new A.af(B.av,!1,!1,!1,!1) +B.d6=new A.af(B.cE,!1,!1,!1,!1) +B.d7=new A.af(B.cD,!1,!1,!1,!1) +B.wN=new A.lO() +B.ij=new A.mU() +B.w9=new A.h8() +B.wD=new A.ly() +B.wL=new A.lN() +B.ee=new A.EB(0,"line") +B.Fp=new A.eB(B.u,B.ee) +B.Fn=new A.eB(B.t,B.ee) +B.Fo=new A.eB(B.Z,B.ee) +B.Fq=new A.eB(B.aa,B.ee) +B.u4=new A.eB(B.u,B.hk) +B.Dw=new A.bq([B.er,B.wN,B.ei,B.ij,B.GD,B.ij,B.Gi,B.w9,B.Gj,B.wD,B.Gk,B.wL,B.el,B.Fp,B.em,B.Fn,B.ep,B.Fo,B.eq,B.Fq,B.d6,B.u4,B.d7,B.hl],t.xM) +B.C0=new A.f(33) +B.C1=new A.f(34) +B.C2=new A.f(35) +B.C3=new A.f(36) +B.C4=new A.f(37) +B.C5=new A.f(38) +B.C6=new A.f(39) +B.C7=new A.f(40) +B.C8=new A.f(41) +B.k9=new A.f(42) +B.oC=new A.f(43) +B.C9=new A.f(44) +B.oD=new A.f(45) +B.oE=new A.f(46) +B.oF=new A.f(47) +B.oG=new A.f(48) +B.oH=new A.f(49) +B.oI=new A.f(50) +B.oJ=new A.f(51) +B.oK=new A.f(52) +B.oL=new A.f(53) +B.oM=new A.f(54) +B.oN=new A.f(55) +B.oO=new A.f(56) +B.oP=new A.f(57) +B.Ca=new A.f(58) +B.Cb=new A.f(59) +B.Cc=new A.f(60) +B.Cd=new A.f(61) +B.Ce=new A.f(62) +B.Cf=new A.f(63) +B.Cg=new A.f(64) +B.D5=new A.f(91) +B.D6=new A.f(92) +B.D7=new A.f(93) +B.D8=new A.f(94) +B.D9=new A.f(95) +B.Da=new A.f(96) +B.fZ=new A.f(97) +B.oU=new A.f(98) +B.h_=new A.f(99) +B.BI=new A.f(100) +B.k3=new A.f(101) +B.k4=new A.f(102) +B.BJ=new A.f(103) +B.BK=new A.f(104) +B.BL=new A.f(105) +B.BM=new A.f(106) +B.BN=new A.f(107) +B.BO=new A.f(108) +B.BP=new A.f(109) +B.k5=new A.f(110) +B.BQ=new A.f(111) +B.k6=new A.f(112) +B.BR=new A.f(113) +B.BS=new A.f(114) +B.BT=new A.f(115) +B.k7=new A.f(116) +B.BU=new A.f(117) +B.fI=new A.f(118) +B.BV=new A.f(119) +B.fJ=new A.f(120) +B.BW=new A.f(121) +B.cA=new A.f(122) +B.BX=new A.f(123) +B.BY=new A.f(124) +B.BZ=new A.f(125) +B.C_=new A.f(126) +B.Ch=new A.f(8589934592) +B.Ci=new A.f(8589934593) +B.Cj=new A.f(8589934594) +B.Ck=new A.f(8589934595) +B.Cl=new A.f(8589934608) +B.Cm=new A.f(8589934609) +B.Cn=new A.f(8589934610) +B.Co=new A.f(8589934611) +B.Cp=new A.f(8589934612) +B.Cq=new A.f(8589934624) +B.Cr=new A.f(8589934625) +B.Cs=new A.f(8589934626) +B.Ct=new A.f(8589935088) +B.Cu=new A.f(8589935090) +B.Cv=new A.f(8589935092) +B.Cw=new A.f(8589935094) +B.Cx=new A.f(8589935144) +B.Cy=new A.f(8589935145) +B.oQ=new A.f(8589935146) +B.oR=new A.f(8589935147) +B.Cz=new A.f(8589935148) +B.oS=new A.f(8589935149) +B.fO=new A.f(8589935150) +B.oT=new A.f(8589935151) +B.fP=new A.f(8589935152) +B.fQ=new A.f(8589935153) +B.fR=new A.f(8589935154) +B.fS=new A.f(8589935155) +B.fT=new A.f(8589935156) +B.fU=new A.f(8589935157) +B.fV=new A.f(8589935158) +B.fW=new A.f(8589935159) +B.fX=new A.f(8589935160) +B.fY=new A.f(8589935161) +B.CA=new A.f(8589935165) +B.CB=new A.f(8589935361) +B.CC=new A.f(8589935362) +B.CD=new A.f(8589935363) +B.CE=new A.f(8589935364) +B.CF=new A.f(8589935365) +B.CG=new A.f(8589935366) +B.CH=new A.f(8589935367) +B.CI=new A.f(8589935368) +B.CJ=new A.f(8589935369) +B.CK=new A.f(8589935370) +B.CL=new A.f(8589935371) +B.CM=new A.f(8589935372) +B.CN=new A.f(8589935373) +B.CO=new A.f(8589935374) +B.CP=new A.f(8589935375) +B.CQ=new A.f(8589935376) +B.CR=new A.f(8589935377) +B.CS=new A.f(8589935378) +B.CT=new A.f(8589935379) +B.CU=new A.f(8589935380) +B.CV=new A.f(8589935381) +B.CW=new A.f(8589935382) +B.CX=new A.f(8589935383) +B.CY=new A.f(8589935384) +B.CZ=new A.f(8589935385) +B.D_=new A.f(8589935386) +B.D0=new A.f(8589935387) +B.D1=new A.f(8589935388) +B.D2=new A.f(8589935389) +B.D3=new A.f(8589935390) +B.D4=new A.f(8589935391) +B.Dy=new A.bq([32,B.k8,33,B.C0,34,B.C1,35,B.C2,36,B.C3,37,B.C4,38,B.C5,39,B.C6,40,B.C7,41,B.C8,42,B.k9,43,B.oC,44,B.C9,45,B.oD,46,B.oE,47,B.oF,48,B.oG,49,B.oH,50,B.oI,51,B.oJ,52,B.oK,53,B.oL,54,B.oM,55,B.oN,56,B.oO,57,B.oP,58,B.Ca,59,B.Cb,60,B.Cc,61,B.Cd,62,B.Ce,63,B.Cf,64,B.Cg,91,B.D5,92,B.D6,93,B.D7,94,B.D8,95,B.D9,96,B.Da,97,B.fZ,98,B.oU,99,B.h_,100,B.BI,101,B.k3,102,B.k4,103,B.BJ,104,B.BK,105,B.BL,106,B.BM,107,B.BN,108,B.BO,109,B.BP,110,B.k5,111,B.BQ,112,B.k6,113,B.BR,114,B.BS,115,B.BT,116,B.k7,117,B.BU,118,B.fI,119,B.BV,120,B.fJ,121,B.BW,122,B.cA,123,B.BX,124,B.BY,125,B.BZ,126,B.C_,4294967297,B.ka,4294967304,B.at,4294967305,B.dM,4294967309,B.dN,4294967323,B.cB,4294967423,B.ai,4294967553,B.kb,4294967555,B.dO,4294967556,B.cC,4294967558,B.fK,4294967559,B.kc,4294967560,B.kd,4294967562,B.dP,4294967564,B.dQ,4294967566,B.ke,4294967567,B.kf,4294967568,B.kg,4294967569,B.kh,4294968065,B.aA,4294968066,B.au,4294968067,B.av,4294968068,B.aB,4294968069,B.bo,4294968070,B.bp,4294968071,B.cD,4294968072,B.cE,4294968321,B.fL,4294968322,B.ki,4294968323,B.kj,4294968324,B.kk,4294968325,B.kl,4294968326,B.km,4294968327,B.fM,4294968328,B.kn,4294968329,B.ko,4294968330,B.kp,4294968577,B.kq,4294968578,B.kr,4294968579,B.ks,4294968580,B.kt,4294968581,B.ku,4294968582,B.kv,4294968583,B.kw,4294968584,B.kx,4294968585,B.ky,4294968586,B.kz,4294968587,B.kA,4294968588,B.kB,4294968589,B.kC,4294968590,B.kD,4294968833,B.kE,4294968834,B.kF,4294968835,B.kG,4294968836,B.kH,4294968837,B.kI,4294968838,B.kJ,4294968839,B.kK,4294968840,B.kL,4294968841,B.kM,4294968842,B.kN,4294968843,B.kO,4294969089,B.kP,4294969090,B.kQ,4294969091,B.kR,4294969092,B.kS,4294969093,B.kT,4294969094,B.kU,4294969095,B.kV,4294969096,B.kW,4294969097,B.kX,4294969098,B.kY,4294969099,B.kZ,4294969100,B.l_,4294969101,B.l0,4294969102,B.l1,4294969103,B.l2,4294969104,B.l3,4294969105,B.l4,4294969106,B.l5,4294969107,B.l6,4294969108,B.l7,4294969109,B.l8,4294969110,B.l9,4294969111,B.la,4294969112,B.lb,4294969113,B.lc,4294969114,B.ld,4294969115,B.le,4294969116,B.lf,4294969117,B.lg,4294969345,B.lh,4294969346,B.li,4294969347,B.lj,4294969348,B.lk,4294969349,B.ll,4294969350,B.lm,4294969351,B.ln,4294969352,B.lo,4294969353,B.lp,4294969354,B.lq,4294969355,B.lr,4294969356,B.ls,4294969357,B.lt,4294969358,B.lu,4294969359,B.lv,4294969360,B.lw,4294969361,B.lx,4294969362,B.ly,4294969363,B.lz,4294969364,B.lA,4294969365,B.lB,4294969366,B.lC,4294969367,B.lD,4294969368,B.lE,4294969601,B.lF,4294969602,B.lG,4294969603,B.lH,4294969604,B.lI,4294969605,B.lJ,4294969606,B.lK,4294969607,B.lL,4294969608,B.lM,4294969857,B.lN,4294969858,B.lO,4294969859,B.lP,4294969860,B.lQ,4294969861,B.lR,4294969863,B.lS,4294969864,B.lT,4294969865,B.lU,4294969866,B.lV,4294969867,B.lW,4294969868,B.lX,4294969869,B.lY,4294969870,B.lZ,4294969871,B.m_,4294969872,B.m0,4294969873,B.m1,4294970113,B.m2,4294970114,B.m3,4294970115,B.m4,4294970116,B.m5,4294970117,B.m6,4294970118,B.m7,4294970119,B.m8,4294970120,B.m9,4294970121,B.ma,4294970122,B.mb,4294970123,B.mc,4294970124,B.md,4294970125,B.me,4294970126,B.mf,4294970127,B.mg,4294970369,B.mh,4294970370,B.mi,4294970371,B.mj,4294970372,B.mk,4294970373,B.ml,4294970374,B.mm,4294970375,B.mn,4294970625,B.mo,4294970626,B.mp,4294970627,B.mq,4294970628,B.mr,4294970629,B.ms,4294970630,B.mt,4294970631,B.mu,4294970632,B.mv,4294970633,B.mw,4294970634,B.mx,4294970635,B.my,4294970636,B.mz,4294970637,B.mA,4294970638,B.mB,4294970639,B.mC,4294970640,B.mD,4294970641,B.mE,4294970642,B.mF,4294970643,B.mG,4294970644,B.mH,4294970645,B.mI,4294970646,B.mJ,4294970647,B.mK,4294970648,B.mL,4294970649,B.mM,4294970650,B.mN,4294970651,B.mO,4294970652,B.mP,4294970653,B.mQ,4294970654,B.mR,4294970655,B.mS,4294970656,B.mT,4294970657,B.mU,4294970658,B.mV,4294970659,B.mW,4294970660,B.mX,4294970661,B.mY,4294970662,B.mZ,4294970663,B.n_,4294970664,B.n0,4294970665,B.n1,4294970666,B.n2,4294970667,B.n3,4294970668,B.n4,4294970669,B.n5,4294970670,B.n6,4294970671,B.n7,4294970672,B.n8,4294970673,B.n9,4294970674,B.na,4294970675,B.nb,4294970676,B.nc,4294970677,B.nd,4294970678,B.ne,4294970679,B.nf,4294970680,B.ng,4294970681,B.nh,4294970682,B.ni,4294970683,B.nj,4294970684,B.nk,4294970685,B.nl,4294970686,B.nm,4294970687,B.nn,4294970688,B.no,4294970689,B.np,4294970690,B.nq,4294970691,B.nr,4294970692,B.ns,4294970693,B.nt,4294970694,B.nu,4294970695,B.nv,4294970696,B.nw,4294970697,B.nx,4294970698,B.ny,4294970699,B.nz,4294970700,B.nA,4294970701,B.nB,4294970702,B.nC,4294970703,B.nD,4294970704,B.nE,4294970705,B.nF,4294970706,B.nG,4294970707,B.nH,4294970708,B.nI,4294970709,B.nJ,4294970710,B.nK,4294970711,B.nL,4294970712,B.nM,4294970713,B.nN,4294970714,B.nO,4294970715,B.nP,4294970882,B.nQ,4294970884,B.nR,4294970885,B.nS,4294970886,B.nT,4294970887,B.nU,4294970888,B.nV,4294970889,B.nW,4294971137,B.nX,4294971138,B.nY,4294971393,B.nZ,4294971394,B.o_,4294971395,B.o0,4294971396,B.o1,4294971397,B.o2,4294971398,B.o3,4294971399,B.o4,4294971400,B.o5,4294971401,B.o6,4294971402,B.o7,4294971403,B.o8,4294971649,B.o9,4294971650,B.oa,4294971651,B.ob,4294971652,B.oc,4294971653,B.od,4294971654,B.oe,4294971655,B.of,4294971656,B.og,4294971657,B.oh,4294971658,B.oi,4294971659,B.oj,4294971660,B.ok,4294971661,B.ol,4294971662,B.om,4294971663,B.on,4294971664,B.oo,4294971665,B.op,4294971666,B.oq,4294971667,B.or,4294971668,B.os,4294971669,B.ot,4294971670,B.ou,4294971671,B.ov,4294971672,B.ow,4294971673,B.ox,4294971674,B.oy,4294971675,B.oz,4294971905,B.oA,4294971906,B.oB,8589934592,B.Ch,8589934593,B.Ci,8589934594,B.Cj,8589934595,B.Ck,8589934608,B.Cl,8589934609,B.Cm,8589934610,B.Cn,8589934611,B.Co,8589934612,B.Cp,8589934624,B.Cq,8589934625,B.Cr,8589934626,B.Cs,8589934848,B.cF,8589934849,B.dR,8589934850,B.bP,8589934851,B.cG,8589934852,B.cH,8589934853,B.dS,8589934854,B.cI,8589934855,B.dT,8589935088,B.Ct,8589935090,B.Cu,8589935092,B.Cv,8589935094,B.Cw,8589935117,B.fN,8589935144,B.Cx,8589935145,B.Cy,8589935146,B.oQ,8589935147,B.oR,8589935148,B.Cz,8589935149,B.oS,8589935150,B.fO,8589935151,B.oT,8589935152,B.fP,8589935153,B.fQ,8589935154,B.fR,8589935155,B.fS,8589935156,B.fT,8589935157,B.fU,8589935158,B.fV,8589935159,B.fW,8589935160,B.fX,8589935161,B.fY,8589935165,B.CA,8589935361,B.CB,8589935362,B.CC,8589935363,B.CD,8589935364,B.CE,8589935365,B.CF,8589935366,B.CG,8589935367,B.CH,8589935368,B.CI,8589935369,B.CJ,8589935370,B.CK,8589935371,B.CL,8589935372,B.CM,8589935373,B.CN,8589935374,B.CO,8589935375,B.CP,8589935376,B.CQ,8589935377,B.CR,8589935378,B.CS,8589935379,B.CT,8589935380,B.CU,8589935381,B.CV,8589935382,B.CW,8589935383,B.CX,8589935384,B.CY,8589935385,B.CZ,8589935386,B.D_,8589935387,B.D0,8589935388,B.D1,8589935389,B.D2,8589935390,B.D3,8589935391,B.D4],A.a_("bq")) +B.aD=new A.jN(0,"canvas") +B.DP=new A.jN(1,"card") +B.DQ=new A.jN(2,"circle") +B.h2=new A.jN(3,"button") +B.cJ=new A.jN(4,"transparency") +B.ec=new A.aF(2,2) +B.eT=new A.cc(B.ec,B.ec,B.ec,B.ec) +B.Dz=new A.bq([B.aD,null,B.DP,B.eT,B.DQ,null,B.h2,B.eT,B.cJ,null],A.a_("bq")) +B.p1=new A.aW(0,{},B.cz,A.a_("aW")) +B.B7=A.a(s([]),t.g) +B.DC=new A.aW(0,{},B.B7,A.a_("aW")) +B.B8=A.a(s([]),A.a_("v")) +B.dV=new A.aW(0,{},B.B8,A.a_("aW")) +B.DB=new A.aW(0,{},B.cy,A.a_("aW")) +B.oZ=new A.aW(0,{},B.cy,A.a_("aW>")) +B.p_=new A.aW(0,{},B.cy,A.a_("aW")) +B.B9=A.a(s([]),A.a_("v")) +B.oY=new A.aW(0,{},B.B9,A.a_("aW")) +B.k_=A.a(s([]),A.a_("v")) +B.DA=new A.aW(0,{},B.k_,A.a_("aW")) +B.p0=new A.aW(0,{},B.k_,A.a_("aW>")) +B.hu=new A.af(B.aA,!1,!1,!0,!1) +B.hr=new A.af(B.au,!1,!1,!0,!1) +B.hs=new A.af(B.av,!1,!1,!0,!1) +B.ht=new A.af(B.aB,!1,!1,!0,!1) +B.uz=new A.af(B.aA,!1,!1,!1,!0) +B.uw=new A.af(B.au,!1,!1,!1,!0) +B.ux=new A.af(B.av,!1,!1,!1,!0) +B.uy=new A.af(B.aB,!1,!1,!1,!0) +B.hq=new A.af(B.cE,!1,!0,!1,!1) +B.hv=new A.af(B.cD,!1,!0,!1,!1) +B.eo=new A.af(B.bo,!1,!0,!1,!1) +B.en=new A.af(B.bp,!1,!0,!1,!1) +B.us=new A.af(B.au,!0,!1,!1,!1) +B.ut=new A.af(B.av,!0,!1,!1,!1) +B.uu=new A.af(B.au,!0,!0,!1,!1) +B.uv=new A.af(B.av,!0,!0,!1,!1) +B.ek=new A.af(B.bo,!1,!1,!1,!1) +B.ej=new A.af(B.bp,!1,!1,!1,!1) +B.uB=new A.af(B.bo,!0,!1,!1,!1) +B.uA=new A.af(B.bp,!0,!1,!1,!1) +B.DF=new A.bq([B.hu,B.o,B.hr,B.o,B.hs,B.o,B.ht,B.o,B.uz,B.o,B.uw,B.o,B.ux,B.o,B.uy,B.o,B.hq,B.o,B.hv,B.o,B.eo,B.o,B.en,B.o,B.em,B.o,B.ep,B.o,B.eq,B.o,B.el,B.o,B.us,B.o,B.ut,B.o,B.uu,B.o,B.uv,B.o,B.d6,B.o,B.d7,B.o,B.ek,B.o,B.ej,B.o,B.uB,B.o,B.uA,B.o,B.er,B.o,B.ei,B.o],t.xM) +B.Bw=A.a(s(["in","iw","ji","jw","mo","aam","adp","aue","ayx","bgm","bjd","ccq","cjr","cka","cmk","coy","cqu","drh","drw","gav","gfx","ggn","gti","guv","hrr","ibi","ilw","jeg","kgc","kgh","koj","krm","ktr","kvs","kwq","kxe","kzj","kzt","lii","lmm","meg","mst","mwj","myt","nad","ncp","nnx","nts","oun","pcr","pmc","pmu","ppa","ppr","pry","puz","sca","skk","tdu","thc","thx","tie","tkk","tlw","tmp","tne","tnf","tsf","uok","xba","xia","xkh","xsj","ybd","yma","ymt","yos","yuu"]),t.s) +B.aC=new A.aW(78,{in:"id",iw:"he",ji:"yi",jw:"jv",mo:"ro",aam:"aas",adp:"dz",aue:"ktz",ayx:"nun",bgm:"bcg",bjd:"drl",ccq:"rki",cjr:"mom",cka:"cmr",cmk:"xch",coy:"pij",cqu:"quh",drh:"khk",drw:"prs",gav:"dev",gfx:"vaj",ggn:"gvr",gti:"nyc",guv:"duz",hrr:"jal",ibi:"opa",ilw:"gal",jeg:"oyb",kgc:"tdf",kgh:"kml",koj:"kwv",krm:"bmf",ktr:"dtp",kvs:"gdj",kwq:"yam",kxe:"tvd",kzj:"dtp",kzt:"dtp",lii:"raq",lmm:"rmx",meg:"cir",mst:"mry",mwj:"vaj",myt:"mry",nad:"xny",ncp:"kdz",nnx:"ngv",nts:"pij",oun:"vaj",pcr:"adx",pmc:"huw",pmu:"phr",ppa:"bfy",ppr:"lcq",pry:"prt",puz:"pub",sca:"hle",skk:"oyb",tdu:"dtp",thc:"tpo",thx:"oyb",tie:"ras",tkk:"twm",tlw:"weo",tmp:"tyj",tne:"kak",tnf:"prs",tsf:"taj",uok:"ema",xba:"cax",xia:"acn",xkh:"waw",xsj:"suj",ybd:"rki",yma:"lrr",ymt:"mtm",yos:"zom",yuu:"yug"},B.Bw,t.hD) +B.Bx=A.a(s(["Abort","Again","AltLeft","AltRight","ArrowDown","ArrowLeft","ArrowRight","ArrowUp","AudioVolumeDown","AudioVolumeMute","AudioVolumeUp","Backquote","Backslash","Backspace","BracketLeft","BracketRight","BrightnessDown","BrightnessUp","BrowserBack","BrowserFavorites","BrowserForward","BrowserHome","BrowserRefresh","BrowserSearch","BrowserStop","CapsLock","Comma","ContextMenu","ControlLeft","ControlRight","Convert","Copy","Cut","Delete","Digit0","Digit1","Digit2","Digit3","Digit4","Digit5","Digit6","Digit7","Digit8","Digit9","DisplayToggleIntExt","Eject","End","Enter","Equal","Escape","Esc","F1","F10","F11","F12","F13","F14","F15","F16","F17","F18","F19","F2","F20","F21","F22","F23","F24","F3","F4","F5","F6","F7","F8","F9","Find","Fn","FnLock","GameButton1","GameButton10","GameButton11","GameButton12","GameButton13","GameButton14","GameButton15","GameButton16","GameButton2","GameButton3","GameButton4","GameButton5","GameButton6","GameButton7","GameButton8","GameButton9","GameButtonA","GameButtonB","GameButtonC","GameButtonLeft1","GameButtonLeft2","GameButtonMode","GameButtonRight1","GameButtonRight2","GameButtonSelect","GameButtonStart","GameButtonThumbLeft","GameButtonThumbRight","GameButtonX","GameButtonY","GameButtonZ","Help","Home","Hyper","Insert","IntlBackslash","IntlRo","IntlYen","KanaMode","KeyA","KeyB","KeyC","KeyD","KeyE","KeyF","KeyG","KeyH","KeyI","KeyJ","KeyK","KeyL","KeyM","KeyN","KeyO","KeyP","KeyQ","KeyR","KeyS","KeyT","KeyU","KeyV","KeyW","KeyX","KeyY","KeyZ","KeyboardLayoutSelect","Lang1","Lang2","Lang3","Lang4","Lang5","LaunchApp1","LaunchApp2","LaunchAssistant","LaunchControlPanel","LaunchMail","LaunchScreenSaver","MailForward","MailReply","MailSend","MediaFastForward","MediaPause","MediaPlay","MediaPlayPause","MediaRecord","MediaRewind","MediaSelect","MediaStop","MediaTrackNext","MediaTrackPrevious","MetaLeft","MetaRight","MicrophoneMuteToggle","Minus","NonConvert","NumLock","Numpad0","Numpad1","Numpad2","Numpad3","Numpad4","Numpad5","Numpad6","Numpad7","Numpad8","Numpad9","NumpadAdd","NumpadBackspace","NumpadClear","NumpadClearEntry","NumpadComma","NumpadDecimal","NumpadDivide","NumpadEnter","NumpadEqual","NumpadMemoryAdd","NumpadMemoryClear","NumpadMemoryRecall","NumpadMemoryStore","NumpadMemorySubtract","NumpadMultiply","NumpadParenLeft","NumpadParenRight","NumpadSubtract","Open","PageDown","PageUp","Paste","Pause","Period","Power","PrintScreen","PrivacyScreenToggle","Props","Quote","Resume","ScrollLock","Select","SelectTask","Semicolon","ShiftLeft","ShiftRight","ShowAllWindows","Slash","Sleep","Space","Super","Suspend","Tab","Turbo","Undo","WakeUp","ZoomToggle"]),t.s) +B.p2=new A.aW(231,{Abort:B.rZ,Again:B.rF,AltLeft:B.bT,AltRight:B.bV,ArrowDown:B.r4,ArrowLeft:B.r3,ArrowRight:B.r2,ArrowUp:B.r5,AudioVolumeDown:B.rN,AudioVolumeMute:B.rL,AudioVolumeUp:B.rM,Backquote:B.qF,Backslash:B.qC,Backspace:B.qv,BracketLeft:B.qA,BracketRight:B.qB,BrightnessDown:B.te,BrightnessUp:B.td,BrowserBack:B.tz,BrowserFavorites:B.tD,BrowserForward:B.tA,BrowserHome:B.ty,BrowserRefresh:B.tC,BrowserSearch:B.tx,BrowserStop:B.tB,CapsLock:B.br,Comma:B.qG,ContextMenu:B.rn,ControlLeft:B.bR,ControlRight:B.cS,Convert:B.rS,Copy:B.rI,Cut:B.rH,Delete:B.r_,Digit0:B.qt,Digit1:B.qk,Digit2:B.ql,Digit3:B.qm,Digit4:B.qn,Digit5:B.qo,Digit6:B.qp,Digit7:B.qq,Digit8:B.qr,Digit9:B.qs,DisplayToggleIntExt:B.tc,Eject:B.tn,End:B.r0,Enter:B.qu,Equal:B.qz,Escape:B.h6,Esc:B.h6,F1:B.qJ,F10:B.qS,F11:B.qT,F12:B.qU,F13:B.rq,F14:B.rr,F15:B.rs,F16:B.rt,F17:B.ru,F18:B.rv,F19:B.rw,F2:B.qK,F20:B.rx,F21:B.ry,F22:B.rz,F23:B.rA,F24:B.rB,F3:B.qL,F4:B.qM,F5:B.qN,F6:B.qO,F7:B.qP,F8:B.qQ,F9:B.qR,Find:B.rK,Fn:B.cR,FnLock:B.pk,GameButton1:B.pq,GameButton10:B.pz,GameButton11:B.pA,GameButton12:B.pB,GameButton13:B.pC,GameButton14:B.pD,GameButton15:B.pE,GameButton16:B.pF,GameButton2:B.pr,GameButton3:B.ps,GameButton4:B.pt,GameButton5:B.pu,GameButton6:B.pv,GameButton7:B.pw,GameButton8:B.px,GameButton9:B.py,GameButtonA:B.pG,GameButtonB:B.pH,GameButtonC:B.pI,GameButtonLeft1:B.pJ,GameButtonLeft2:B.pK,GameButtonMode:B.pL,GameButtonRight1:B.pM,GameButtonRight2:B.pN,GameButtonSelect:B.pO,GameButtonStart:B.pP,GameButtonThumbLeft:B.pQ,GameButtonThumbRight:B.pR,GameButtonX:B.pS,GameButtonY:B.pT,GameButtonZ:B.pU,Help:B.rD,Home:B.qY,Hyper:B.pi,Insert:B.qX,IntlBackslash:B.rm,IntlRo:B.rP,IntlYen:B.rR,KanaMode:B.rQ,KeyA:B.pV,KeyB:B.pW,KeyC:B.pX,KeyD:B.pY,KeyE:B.pZ,KeyF:B.q_,KeyG:B.q0,KeyH:B.q1,KeyI:B.q2,KeyJ:B.q3,KeyK:B.q4,KeyL:B.q5,KeyM:B.q6,KeyN:B.q7,KeyO:B.q8,KeyP:B.q9,KeyQ:B.qa,KeyR:B.qb,KeyS:B.qc,KeyT:B.qd,KeyU:B.qe,KeyV:B.qf,KeyW:B.qg,KeyX:B.qh,KeyY:B.qi,KeyZ:B.qj,KeyboardLayoutSelect:B.tI,Lang1:B.rU,Lang2:B.rV,Lang3:B.rW,Lang4:B.rX,Lang5:B.rY,LaunchApp1:B.ts,LaunchApp2:B.tr,LaunchAssistant:B.tw,LaunchControlPanel:B.tt,LaunchMail:B.tq,LaunchScreenSaver:B.tv,MailForward:B.tG,MailReply:B.tF,MailSend:B.tH,MediaFastForward:B.ti,MediaPause:B.tg,MediaPlay:B.tf,MediaPlayPause:B.to,MediaRecord:B.th,MediaRewind:B.tj,MediaSelect:B.tp,MediaStop:B.tm,MediaTrackNext:B.tk,MediaTrackPrevious:B.tl,MetaLeft:B.bU,MetaRight:B.cU,MicrophoneMuteToggle:B.pp,Minus:B.qy,NonConvert:B.rT,NumLock:B.e7,Numpad0:B.rk,Numpad1:B.rb,Numpad2:B.rc,Numpad3:B.rd,Numpad4:B.re,Numpad5:B.rf,Numpad6:B.rg,Numpad7:B.rh,Numpad8:B.ri,Numpad9:B.rj,NumpadAdd:B.r9,NumpadBackspace:B.t2,NumpadClear:B.t8,NumpadClearEntry:B.t9,NumpadComma:B.rO,NumpadDecimal:B.rl,NumpadDivide:B.r6,NumpadEnter:B.ra,NumpadEqual:B.rp,NumpadMemoryAdd:B.t6,NumpadMemoryClear:B.t5,NumpadMemoryRecall:B.t4,NumpadMemoryStore:B.t3,NumpadMemorySubtract:B.t7,NumpadMultiply:B.r7,NumpadParenLeft:B.t0,NumpadParenRight:B.t1,NumpadSubtract:B.r8,Open:B.rC,PageDown:B.r1,PageUp:B.qZ,Paste:B.rJ,Pause:B.qW,Period:B.qH,Power:B.ro,PrintScreen:B.qV,PrivacyScreenToggle:B.po,Props:B.t_,Quote:B.qE,Resume:B.pm,ScrollLock:B.e6,Select:B.rE,SelectTask:B.tu,Semicolon:B.qD,ShiftLeft:B.bS,ShiftRight:B.cT,ShowAllWindows:B.tJ,Slash:B.qI,Sleep:B.ta,Space:B.qx,Super:B.pj,Suspend:B.pl,Tab:B.qw,Turbo:B.pn,Undo:B.rG,WakeUp:B.tb,ZoomToggle:B.tE},B.Bx,A.a_("aW")) +B.Bz=A.a(s(["KeyA","KeyB","KeyC","KeyD","KeyE","KeyF","KeyG","KeyH","KeyI","KeyJ","KeyK","KeyL","KeyM","KeyN","KeyO","KeyP","KeyQ","KeyR","KeyS","KeyT","KeyU","KeyV","KeyW","KeyX","KeyY","KeyZ","Digit1","Digit2","Digit3","Digit4","Digit5","Digit6","Digit7","Digit8","Digit9","Digit0","Minus","Equal","BracketLeft","BracketRight","Backslash","Semicolon","Quote","Backquote","Comma","Period","Slash"]),t.s) +B.h0=new A.aW(47,{KeyA:"a",KeyB:"b",KeyC:"c",KeyD:"d",KeyE:"e",KeyF:"f",KeyG:"g",KeyH:"h",KeyI:"i",KeyJ:"j",KeyK:"k",KeyL:"l",KeyM:"m",KeyN:"n",KeyO:"o",KeyP:"p",KeyQ:"q",KeyR:"r",KeyS:"s",KeyT:"t",KeyU:"u",KeyV:"v",KeyW:"w",KeyX:"x",KeyY:"y",KeyZ:"z",Digit1:"1",Digit2:"2",Digit3:"3",Digit4:"4",Digit5:"5",Digit6:"6",Digit7:"7",Digit8:"8",Digit9:"9",Digit0:"0",Minus:"-",Equal:"=",BracketLeft:"[",BracketRight:"]",Backslash:"\\",Semicolon:";",Quote:"'",Backquote:"`",Comma:",",Period:".",Slash:"/"},B.Bz,t.hD) +B.k2=A.a(s(["*","+","-",".","/","0","1","2","3","4","5","6","7","8","9","Alt","AltGraph","ArrowDown","ArrowLeft","ArrowRight","ArrowUp","Clear","Control","Delete","End","Enter","Home","Insert","Meta","PageDown","PageUp","Shift"]),t.s) +B.Aa=A.a(s([42,null,null,8589935146]),t.Z) +B.Ab=A.a(s([43,null,null,8589935147]),t.Z) +B.Ac=A.a(s([45,null,null,8589935149]),t.Z) +B.Ad=A.a(s([46,null,null,8589935150]),t.Z) +B.Af=A.a(s([47,null,null,8589935151]),t.Z) +B.Ag=A.a(s([48,null,null,8589935152]),t.Z) +B.Ah=A.a(s([49,null,null,8589935153]),t.Z) +B.Am=A.a(s([50,null,null,8589935154]),t.Z) +B.An=A.a(s([51,null,null,8589935155]),t.Z) +B.Ao=A.a(s([52,null,null,8589935156]),t.Z) +B.Ap=A.a(s([53,null,null,8589935157]),t.Z) +B.Aq=A.a(s([54,null,null,8589935158]),t.Z) +B.Ar=A.a(s([55,null,null,8589935159]),t.Z) +B.As=A.a(s([56,null,null,8589935160]),t.Z) +B.At=A.a(s([57,null,null,8589935161]),t.Z) +B.AA=A.a(s([8589934852,8589934852,8589934853,null]),t.Z) +B.A_=A.a(s([4294967555,null,4294967555,null]),t.Z) +B.A0=A.a(s([4294968065,null,null,8589935154]),t.Z) +B.A1=A.a(s([4294968066,null,null,8589935156]),t.Z) +B.A2=A.a(s([4294968067,null,null,8589935158]),t.Z) +B.A3=A.a(s([4294968068,null,null,8589935160]),t.Z) +B.A8=A.a(s([4294968321,null,null,8589935157]),t.Z) +B.AB=A.a(s([8589934848,8589934848,8589934849,null]),t.Z) +B.zZ=A.a(s([4294967423,null,null,8589935150]),t.Z) +B.A4=A.a(s([4294968069,null,null,8589935153]),t.Z) +B.zY=A.a(s([4294967309,null,null,8589935117]),t.Z) +B.A5=A.a(s([4294968070,null,null,8589935159]),t.Z) +B.A9=A.a(s([4294968327,null,null,8589935152]),t.Z) +B.AC=A.a(s([8589934854,8589934854,8589934855,null]),t.Z) +B.A6=A.a(s([4294968071,null,null,8589935155]),t.Z) +B.A7=A.a(s([4294968072,null,null,8589935161]),t.Z) +B.AD=A.a(s([8589934850,8589934850,8589934851,null]),t.Z) +B.p3=new A.aW(32,{"*":B.Aa,"+":B.Ab,"-":B.Ac,".":B.Ad,"/":B.Af,"0":B.Ag,"1":B.Ah,"2":B.Am,"3":B.An,"4":B.Ao,"5":B.Ap,"6":B.Aq,"7":B.Ar,"8":B.As,"9":B.At,Alt:B.AA,AltGraph:B.A_,ArrowDown:B.A0,ArrowLeft:B.A1,ArrowRight:B.A2,ArrowUp:B.A3,Clear:B.A8,Control:B.AB,Delete:B.zZ,End:B.A4,Enter:B.zY,Home:B.A5,Insert:B.A9,Meta:B.AC,PageDown:B.A6,PageUp:B.A7,Shift:B.AD},B.k2,A.a_("aW>")) +B.Bq=A.a(s([B.k9,null,null,B.oQ]),t.L) +B.Br=A.a(s([B.oC,null,null,B.oR]),t.L) +B.Bs=A.a(s([B.oD,null,null,B.oS]),t.L) +B.Bt=A.a(s([B.oE,null,null,B.fO]),t.L) +B.Bu=A.a(s([B.oF,null,null,B.oT]),t.L) +B.AI=A.a(s([B.oG,null,null,B.fP]),t.L) +B.AJ=A.a(s([B.oH,null,null,B.fQ]),t.L) +B.AK=A.a(s([B.oI,null,null,B.fR]),t.L) +B.AL=A.a(s([B.oJ,null,null,B.fS]),t.L) +B.AM=A.a(s([B.oK,null,null,B.fT]),t.L) +B.AN=A.a(s([B.oL,null,null,B.fU]),t.L) +B.AO=A.a(s([B.oM,null,null,B.fV]),t.L) +B.AP=A.a(s([B.oN,null,null,B.fW]),t.L) +B.BD=A.a(s([B.oO,null,null,B.fX]),t.L) +B.BE=A.a(s([B.oP,null,null,B.fY]),t.L) +B.Bj=A.a(s([B.cH,B.cH,B.dS,null]),t.L) +B.BF=A.a(s([B.dO,null,B.dO,null]),t.L) +B.AT=A.a(s([B.aA,null,null,B.fR]),t.L) +B.AU=A.a(s([B.au,null,null,B.fT]),t.L) +B.AV=A.a(s([B.av,null,null,B.fV]),t.L) +B.B3=A.a(s([B.aB,null,null,B.fX]),t.L) +B.Bg=A.a(s([B.fL,null,null,B.fU]),t.L) +B.Bk=A.a(s([B.cF,B.cF,B.dR,null]),t.L) +B.AF=A.a(s([B.ai,null,null,B.fO]),t.L) +B.AW=A.a(s([B.bo,null,null,B.fQ]),t.L) +B.Bv=A.a(s([B.dN,null,null,B.fN]),t.L) +B.AX=A.a(s([B.bp,null,null,B.fW]),t.L) +B.Bh=A.a(s([B.fM,null,null,B.fP]),t.L) +B.Bl=A.a(s([B.cI,B.cI,B.dT,null]),t.L) +B.AY=A.a(s([B.cD,null,null,B.fS]),t.L) +B.Bi=A.a(s([B.cE,null,null,B.fY]),t.L) +B.Bm=A.a(s([B.bP,B.bP,B.cG,null]),t.L) +B.DJ=new A.aW(32,{"*":B.Bq,"+":B.Br,"-":B.Bs,".":B.Bt,"/":B.Bu,"0":B.AI,"1":B.AJ,"2":B.AK,"3":B.AL,"4":B.AM,"5":B.AN,"6":B.AO,"7":B.AP,"8":B.BD,"9":B.BE,Alt:B.Bj,AltGraph:B.BF,ArrowDown:B.AT,ArrowLeft:B.AU,ArrowRight:B.AV,ArrowUp:B.B3,Clear:B.Bg,Control:B.Bk,Delete:B.AF,End:B.AW,Enter:B.Bv,Home:B.AX,Insert:B.Bh,Meta:B.Bl,PageDown:B.AY,PageUp:B.Bi,Shift:B.Bm},B.k2,A.a_("aW>")) +B.DK=new A.t3(null,null,null,null,null,null,null,null) +B.ya=new A.A(4292933626) +B.y4=new A.A(4289915890) +B.y0=new A.A(4286635754) +B.xT=new A.A(4283289825) +B.xL=new A.A(4280731354) +B.xC=new A.A(4278238420) +B.xB=new A.A(4278234305) +B.xA=new A.A(4278228903) +B.xz=new A.A(4278223759) +B.xy=new A.A(4278214756) +B.Dl=new A.bq([50,B.ya,100,B.y4,200,B.y0,300,B.xT,400,B.xL,500,B.xC,600,B.xB,700,B.xA,800,B.xz,900,B.xy],t.bl) +B.DL=new A.nN(B.Dl,4278238420) +B.xY=new A.A(4284790262) +B.xQ=new A.A(4282557941) +B.xF=new A.A(4279592384) +B.xE=new A.A(4279060385) +B.Dm=new A.bq([50,B.jc,100,B.ja,200,B.fd,300,B.xY,400,B.xQ,500,B.j5,600,B.f8,700,B.f7,800,B.xF,900,B.xE],t.bl) +B.dW=new A.nN(B.Dm,4280391411) +B.yn=new A.A(4294962158) +B.ym=new A.A(4294954450) +B.yf=new A.A(4293892762) +B.yc=new A.A(4293227379) +B.ye=new A.A(4293874512) +B.yi=new A.A(4294198070) +B.yb=new A.A(4293212469) +B.y7=new A.A(4291176488) +B.y6=new A.A(4290190364) +B.Dn=new A.bq([50,B.yn,100,B.ym,200,B.yf,300,B.yc,400,B.ye,500,B.yi,600,B.yb,700,B.ff,800,B.y7,900,B.y6],t.bl) +B.h1=new A.nN(B.Dn,4294198070) +B.dX=new A.cM(0,t.sL) +B.dY=new A.cM(24,t.sL) +B.b7=new A.cM(B.H,A.a_("cM")) +B.DM=new A.cM(B.H,A.a_("cM")) +B.GF=new A.S(40,40) +B.dZ=new A.cM(B.GF,t.kq) +B.uM=new A.dO(B.v) +B.e_=new A.cM(B.uM,A.a_("cM")) +B.e0=new A.cM(B.bg,A.a_("cM")) +B.GG=new A.S(1/0,1/0) +B.e1=new A.cM(B.GG,t.kq) +B.V=new A.bZ(0,"hovered") +B.a2=new A.bZ(1,"focused") +B.P=new A.bZ(2,"pressed") +B.p4=new A.bZ(3,"dragged") +B.a3=new A.bZ(4,"selected") +B.p5=new A.bZ(5,"scrolledUnder") +B.M=new A.bZ(6,"disabled") +B.DN=new A.lq(0,"padded") +B.DO=new A.lq(1,"shrinkWrap") +B.vA=new A.mM("assets/images/avatar.png",null,null) +B.xk=new A.qk(null,null,B.vA,50,null) +B.DR=new A.nM(B.xk,B.aD,8,B.H,null,null,null,B.bd,B.w,B.O,null) +B.DS=new A.Cs(null) +B.DT=new A.t7(null) +B.DU=new A.nQ(null) +B.DV=new A.eW("popRoute",null) +B.dj=new A.Zi() +B.DW=new A.t8("flutter/service_worker",B.dj) +B.DY=new A.lu(0,"clipRect") +B.DZ=new A.lu(1,"clipRRect") +B.E_=new A.lu(2,"clipPath") +B.E0=new A.lu(3,"transform") +B.E1=new A.lu(4,"opacity") +B.E2=new A.CE(null) +B.E3=new A.tk(null,null,null,null,null,null,null,null,null,null) +B.E4=new A.tl(null,null,null,null,null,null,null,null,null,null) +B.h3=new A.UW(0,"traditional") +B.E5=new A.tm(null,null,null,null,null,null,null,null,null,null,null,null,null) +B.pb=new A.eY(B.h,B.h) +B.h4=new A.q(0,1) +B.E6=new A.q(0,-1) +B.e3=new A.q(1,0) +B.O6=new A.q(0,-0.005) +B.E8=new A.q(-0.3333333333333333,0) +B.Ea=new A.q(1/0,1/0) +B.Ed=new A.q(-1,0) +B.a4=new A.hu(0,"iOs") +B.e4=new A.hu(1,"android") +B.pc=new A.hu(2,"linux") +B.pd=new A.hu(3,"windows") +B.aE=new A.hu(4,"macOs") +B.Ef=new A.hu(5,"unknown") +B.f1=new A.Tw() +B.Eg=new A.jQ("flutter/textinput",B.f1) +B.pe=new A.jQ("flutter/menu",B.dj) +B.bq=new A.jQ("flutter/platform",B.f1) +B.h5=new A.jQ("flutter/restoration",B.dj) +B.Eh=new A.jQ("flutter/mousecursor",B.dj) +B.e5=new A.jQ("flutter/navigation",B.f1) +B.Ei=new A.tv(0,null) +B.pf=new A.CZ(0,"portrait") +B.pg=new A.CZ(1,"landscape") +B.Ej=new A.tw(null) +B.aj=new A.Dk(0,"fill") +B.R=new A.Dk(1,"stroke") +B.Ek=new A.jT(1/0) +B.aF=new A.Dm(0,"nonZero") +B.cQ=new A.Dm(1,"evenOdd") +B.aG=new A.lB(0,"created") +B.a5=new A.lB(1,"active") +B.bQ=new A.lB(2,"pendingRetention") +B.El=new A.lB(3,"pendingUpdate") +B.ph=new A.lB(4,"released") +B.Em=new A.tJ(null) +B.h7=new A.jV(0,"baseline") +B.h8=new A.jV(1,"aboveBaseline") +B.h9=new A.jV(2,"belowBaseline") +B.ha=new A.jV(3,"top") +B.e8=new A.jV(4,"bottom") +B.hb=new A.jV(5,"middle") +B.F_=new A.lC(B.L,B.e8,null,null) +B.hc=new A.iu(0,"cancel") +B.hd=new A.iu(1,"add") +B.F0=new A.iu(2,"remove") +B.bs=new A.iu(3,"hover") +B.tL=new A.iu(4,"down") +B.cV=new A.iu(5,"move") +B.he=new A.iu(6,"up") +B.cW=new A.fx(0,"touch") +B.bt=new A.fx(1,"mouse") +B.tM=new A.fx(2,"stylus") +B.bu=new A.fx(4,"trackpad") +B.tN=new A.fx(5,"unknown") +B.O7=new A.VW(0,"ignore") +B.bW=new A.nZ(0,"none") +B.F2=new A.nZ(1,"scroll") +B.F3=new A.nZ(3,"scale") +B.F4=new A.nZ(4,"unknown") +B.F5=new A.tM(null,null,null,null,null,null,null,null,null,null) +B.F6=new A.tN(null,null,null,null,null) +B.F7=new A.tQ(null,null,null,null,null,null) +B.F8=new A.aF(8,8) +B.F9=new A.aF(1.5,1.5) +B.tO=new A.mq(1e5,10) +B.tP=new A.mq(1e4,100) +B.tQ=new A.mq(20,5e4) +B.ed=new A.C(-1e9,-1e9,1e9,1e9) +B.cY=new A.u1(0,"identical") +B.Fa=new A.u1(2,"paint") +B.bX=new A.u1(3,"layout") +B.tR=new A.fF(0,"incrementable") +B.tS=new A.fF(1,"scrollable") +B.tT=new A.fF(2,"labelAndValue") +B.tU=new A.fF(3,"tappable") +B.tV=new A.fF(4,"textField") +B.tW=new A.fF(5,"checkable") +B.tX=new A.fF(6,"image") +B.tY=new A.fF(7,"liveRegion") +B.Fd=new A.cw(B.eT,B.v) +B.e9=new A.aF(12,12) +B.vL=new A.cc(B.e9,B.e9,B.e9,B.e9) +B.Fb=new A.cw(B.vL,B.v) +B.ea=new A.aF(16,16) +B.vM=new A.cc(B.ea,B.ea,B.ea,B.ea) +B.u_=new A.cw(B.vM,B.v) +B.eb=new A.aF(28,28) +B.vN=new A.cc(B.eb,B.eb,B.eb,B.eb) +B.Fc=new A.cw(B.vN,B.v) +B.hg=new A.En(0,"none") +B.Fe=new A.En(1,"neglect") +B.u0=new A.ob(0,"pop") +B.Ff=new A.ob(1,"doNotPop") +B.Fg=new A.ob(2,"bubble") +B.Fh=new A.fG(null,null) +B.Fi=new A.ug(null,null) +B.bY=new A.lS(0,"idle") +B.Fj=new A.lS(1,"transientCallbacks") +B.Fk=new A.lS(2,"midFrameMicrotasks") +B.u1=new A.lS(3,"persistentCallbacks") +B.Fl=new A.lS(4,"postFrameCallbacks") +B.u2=new A.XV(0,"englishLike") +B.hh=new A.uk(0,"idle") +B.hi=new A.uk(1,"forward") +B.hj=new A.uk(2,"reverse") +B.Fr=new A.un(0,"explicit") +B.bZ=new A.un(1,"keepVisibleAtEnd") +B.c_=new A.un(2,"keepVisibleAtStart") +B.Fs=new A.ED(0,"manual") +B.Ft=new A.ED(1,"onDrag") +B.Fu=new A.ut(0,"left") +B.Fv=new A.ut(1,"right") +B.Fw=new A.ut(3,"bottom") +B.Fx=new A.uv(null,null,null,null,null,null,null,null,null,null,null,null,null) +B.Fy=new A.uw(null,null,null,null,null,null,null,null,null,null,null) +B.Fz=new A.ux(null,null,null,null,null,null,null,null,null) +B.FA=new A.uy(null,null) +B.u5=new A.uA(0,"startEdgeUpdate") +B.cZ=new A.uA(1,"endEdgeUpdate") +B.ef=new A.oi(0,"previousLine") +B.eg=new A.oi(1,"nextLine") +B.d_=new A.oi(2,"forward") +B.d0=new A.oi(3,"backward") +B.c1=new A.uC(2,"none") +B.FD=new A.k6(null,null,B.c1,!1) +B.FC=new A.k6(null,null,B.c1,!0) +B.aH=new A.k7(0,"next") +B.aI=new A.k7(1,"previous") +B.af=new A.k7(2,"end") +B.hm=new A.k7(3,"pending") +B.c0=new A.k7(4,"none") +B.hn=new A.uC(0,"uncollapsed") +B.FE=new A.uC(1,"collapsed") +B.d1=new A.c0(1) +B.FF=new A.c0(1024) +B.FG=new A.c0(1048576) +B.u6=new A.c0(128) +B.d2=new A.c0(16) +B.FH=new A.c0(16384) +B.u7=new A.c0(2) +B.FI=new A.c0(2048) +B.FJ=new A.c0(2097152) +B.FK=new A.c0(256) +B.FL=new A.c0(262144) +B.d3=new A.c0(32) +B.FM=new A.c0(32768) +B.d4=new A.c0(4) +B.FN=new A.c0(4096) +B.FO=new A.c0(512) +B.FP=new A.c0(524288) +B.u8=new A.c0(64) +B.FQ=new A.c0(65536) +B.d5=new A.c0(8) +B.FR=new A.c0(8192) +B.u9=new A.bO(1) +B.FS=new A.bO(1024) +B.FT=new A.bO(1048576) +B.ua=new A.bO(128) +B.FU=new A.bO(131072) +B.FV=new A.bO(16) +B.ub=new A.bO(16384) +B.FW=new A.bO(16777216) +B.FX=new A.bO(2) +B.uc=new A.bO(2048) +B.ud=new A.bO(2097152) +B.FY=new A.bO(256) +B.FZ=new A.bO(262144) +B.ue=new A.bO(32) +B.G_=new A.bO(32768) +B.G0=new A.bO(33554432) +B.G1=new A.bO(4) +B.uf=new A.bO(4096) +B.G2=new A.bO(4194304) +B.ug=new A.bO(512) +B.G3=new A.bO(524288) +B.uh=new A.bO(64) +B.G4=new A.bO(65536) +B.ui=new A.bO(8) +B.ho=new A.bO(8192) +B.G5=new A.bO(8388608) +B.uj=new A.lX("RenderViewport.twoPane") +B.G6=new A.lX("RenderViewport.excludeFromScrolling") +B.Dp=new A.bq([B.ak,null,B.al,null,B.aV,null],A.a_("bq")) +B.G7=new A.cr(B.Dp,t.xu) +B.F1=new A.fx(3,"invertedStylus") +B.DH=new A.bq([B.cW,null,B.tM,null,B.F1,null,B.bu,null,B.tN,null],A.a_("bq")) +B.eh=new A.cr(B.DH,A.a_("cr")) +B.DI=new A.bq([B.V,null],t.sW) +B.G8=new A.cr(B.DI,t.fD) +B.Ae=A.a(s(["click","keyup","keydown","mouseup","mousedown","pointerdown","pointerup"]),t.s) +B.Dg=new A.aW(7,{click:null,keyup:null,keydown:null,mouseup:null,mousedown:null,pointerdown:null,pointerup:null},B.Ae,t.CA) +B.G9=new A.cr(B.Dg,t.kI) +B.Df=new A.bq([32,null,8203,null],t.Fi) +B.Ga=new A.cr(B.Df,t.ls) +B.Bn=A.a(s(["click","touchstart","touchend","pointerdown","pointermove","pointerup"]),t.s) +B.DE=new A.aW(6,{click:null,touchstart:null,touchend:null,pointerdown:null,pointermove:null,pointerup:null},B.Bn,t.CA) +B.Gb=new A.cr(B.DE,t.kI) +B.Dk=new A.bq([B.a2,null],t.sW) +B.Gc=new A.cr(B.Dk,t.fD) +B.Bp=A.a(s(["canvaskit.js"]),t.s) +B.DG=new A.aW(1,{"canvaskit.js":null},B.Bp,t.CA) +B.Gd=new A.cr(B.DG,t.kI) +B.Dx=new A.bq([10,null,11,null,12,null,13,null,133,null,8232,null,8233,null],t.Fi) +B.Ge=new A.cr(B.Dx,t.ls) +B.Ba=A.a(s([]),t.ur) +B.DD=new A.aW(0,{},B.Ba,A.a_("aW")) +B.Gf=new A.cr(B.DD,t.xu) +B.Dv=new A.bq([B.P,null],t.sW) +B.Gg=new A.cr(B.Dv,t.fD) +B.AQ=A.a(s(["serif","sans-serif","monospace","cursive","fantasy","system-ui","math","emoji","fangsong"]),t.s) +B.Dr=new A.aW(9,{serif:null,"sans-serif":null,monospace:null,cursive:null,fantasy:null,"system-ui":null,math:null,emoji:null,fangsong:null},B.AQ,t.CA) +B.Gh=new A.cr(B.Dr,t.kI) +B.Di=new A.bq([B.aE,null,B.pc,null,B.pd,null],A.a_("bq")) +B.hp=new A.cr(B.Di,A.a_("cr")) +B.un=new A.af(B.aA,!1,!0,!1,!1) +B.uk=new A.af(B.au,!1,!0,!1,!1) +B.ul=new A.af(B.av,!1,!0,!1,!1) +B.um=new A.af(B.aB,!1,!0,!1,!1) +B.Gq=new A.af(B.aA,!1,!0,!1,!0) +B.Gn=new A.af(B.au,!1,!0,!1,!0) +B.Go=new A.af(B.av,!1,!0,!1,!0) +B.Gp=new A.af(B.aB,!1,!0,!1,!0) +B.Gm=new A.af(B.aA,!0,!0,!1,!1) +B.Gl=new A.af(B.aB,!0,!0,!1,!1) +B.Gs=new A.af(B.bo,!0,!0,!1,!1) +B.Gr=new A.af(B.bp,!0,!0,!1,!1) +B.ur=new A.af(B.aA,!1,!0,!0,!1) +B.uo=new A.af(B.au,!1,!0,!0,!1) +B.up=new A.af(B.av,!1,!0,!0,!1) +B.uq=new A.af(B.aB,!1,!0,!0,!1) +B.uF=new A.af(B.fZ,!1,!1,!1,!0) +B.uH=new A.af(B.h_,!1,!1,!1,!0) +B.uI=new A.af(B.fI,!1,!1,!1,!0) +B.uG=new A.af(B.fJ,!1,!1,!1,!0) +B.Gt=new A.af(B.cA,!1,!1,!1,!0) +B.Gu=new A.af(B.cA,!1,!0,!1,!0) +B.hw=new A.af(B.fZ,!0,!1,!1,!1) +B.Gx=new A.af(B.oU,!0,!1,!1,!1) +B.uD=new A.af(B.h_,!0,!1,!1,!1) +B.Gv=new A.af(B.k3,!0,!1,!1,!1) +B.Gw=new A.af(B.k4,!0,!1,!1,!1) +B.Gy=new A.af(B.k5,!0,!1,!1,!1) +B.Gz=new A.af(B.k6,!0,!1,!1,!1) +B.GC=new A.af(B.k7,!0,!1,!1,!1) +B.uE=new A.af(B.fI,!0,!1,!1,!1) +B.uC=new A.af(B.fJ,!0,!1,!1,!1) +B.GA=new A.af(B.cA,!0,!1,!1,!1) +B.GB=new A.af(B.cA,!0,!0,!1,!1) +B.GE=new A.S(1e5,1e5) +B.hx=new A.om(0,0,null,null) +B.hy=new A.om(null,32,null,null) +B.GH=new A.uN(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.uJ=new A.F1(0,0,0,0,0,0,!1,!1,null,0) +B.O9=new A.uP(3,"hide") +B.GI=new A.uP(5,"timeout") +B.GJ=new A.uQ(null,null,null,null,null,null,null,null,null,null,null,null,null) +B.uK=new A.F6(0,"permissive") +B.Oa=new A.F6(1,"normal") +B.GK=new A.uT(0,"criticallyDamped") +B.GL=new A.uT(1,"underDamped") +B.GM=new A.uT(2,"overDamped") +B.uL=new A.Fh(0,"loose") +B.GN=new A.Fh(2,"passthrough") +B.GO=new A.fJ("...",-1,"","","",-1,-1,"","...") +B.GP=new A.fJ("",-1,"","","",-1,-1,"","asynchronous suspension") +B.d8=new A.Zq(0,"butt") +B.d9=new A.Zr(0,"miter") +B.GQ=new A.bF(0) +B.H0=new A.bF(0) +B.GZ=new A.bF(0) +B.GX=new A.bF(0) +B.GY=new A.bF(0) +B.GW=new A.bF(0) +B.H_=new A.bF(0) +B.GV=new A.bF(0) +B.GS=new A.bF(0) +B.GU=new A.bF(0) +B.GR=new A.bF(0) +B.GT=new A.bF(0) +B.H1=new A.bF(1) +B.H2=new A.bF(10) +B.H3=new A.bF(11) +B.H4=new A.bF(12) +B.H5=new A.bF(13) +B.H6=new A.bF(14) +B.H7=new A.bF(15) +B.H8=new A.bF(16) +B.H9=new A.bF(2) +B.Ha=new A.bF(3) +B.Hb=new A.bF(4) +B.Hc=new A.bF(5) +B.Hd=new A.bF(6) +B.He=new A.bF(7) +B.Hf=new A.bF(8) +B.Hg=new A.bF(9) +B.Hh=new A.v_(null,null,null,null,null,null,null,null) +B.Hi=new A.m7("call") +B.Hj=new A.hH("text") +B.Hk=new A.Fo(0,"click") +B.Hl=new A.Fo(1,"alert") +B.Hm=new A.hI(B.l,null,B.U,null,null,B.W,B.U,null) +B.Hn=new A.hI(B.l,null,B.U,null,null,B.U,B.W,null) +B.Ho=new A.v0(null,null,null,null,null,null,null,null,null,null,null,null) +B.Hp=new A.ZK("tap") +B.k=new A.v3(0,"alphabetic") +B.Hq=new A.v4(null) +B.hB=new A.oy(3,"none") +B.uQ=new A.v5(B.hB) +B.uR=new A.oy(0,"words") +B.uS=new A.oy(1,"sentences") +B.uT=new A.oy(2,"characters") +B.e=new A.v6(0) +B.Ht=new A.oB(0,"character") +B.Hu=new A.oB(1,"word") +B.Hv=new A.oB(2,"line") +B.Hw=new A.oB(3,"document") +B.uU=new A.Fw(0,"proportional") +B.p=new A.Fw(1,"even") +B.da=new A.v9(2,"ellipsis") +B.Hx=new A.v9(3,"visible") +B.Hy=new A.bo(0,B.G) +B.Hz=new A.cD(-1,-1) +B.uV=new A.Fz(0,"left") +B.uW=new A.Fz(1,"right") +B.HA=new A.va(null,null,null) +B.xw=new A.A(3506372608) +B.Hs=new A.v6(1) +B.yo=new A.A(4294967040) +B.Hr=new A.ZO(1,"double") +B.I9=new A.k(!0,B.xw,null,"monospace",null,null,48,B.jx,null,null,null,null,null,null,null,null,null,B.Hs,B.yo,B.Hr,null,"fallback style; consider putting your text in a Material",null,null,null,null) +B.Kp=new A.k(!0,null,null,null,null,null,null,B.cn,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.I0=new A.k(!0,B.y,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackRedwoodCity displayLarge",null,null,null,null) +B.Iy=new A.k(!0,B.y,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackRedwoodCity displayMedium",null,null,null,null) +B.I1=new A.k(!0,B.y,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackRedwoodCity displaySmall",null,null,null,null) +B.HY=new A.k(!0,B.y,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackRedwoodCity headlineLarge",null,null,null,null) +B.Jk=new A.k(!0,B.y,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackRedwoodCity headlineMedium",null,null,null,null) +B.JH=new A.k(!0,B.x,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackRedwoodCity headlineSmall",null,null,null,null) +B.KL=new A.k(!0,B.x,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackRedwoodCity titleLarge",null,null,null,null) +B.KG=new A.k(!0,B.x,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackRedwoodCity titleMedium",null,null,null,null) +B.Lc=new A.k(!0,B.l,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackRedwoodCity titleSmall",null,null,null,null) +B.L5=new A.k(!0,B.x,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackRedwoodCity bodyLarge",null,null,null,null) +B.JG=new A.k(!0,B.x,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackRedwoodCity bodyMedium",null,null,null,null) +B.KF=new A.k(!0,B.y,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackRedwoodCity bodySmall",null,null,null,null) +B.JM=new A.k(!0,B.x,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackRedwoodCity labelLarge",null,null,null,null) +B.Jn=new A.k(!0,B.l,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackRedwoodCity labelMedium",null,null,null,null) +B.KX=new A.k(!0,B.l,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackRedwoodCity labelSmall",null,null,null,null) +B.Ls=new A.cR(B.I0,B.Iy,B.I1,B.HY,B.Jk,B.JH,B.KL,B.KG,B.Lc,B.L5,B.JG,B.KF,B.JM,B.Jn,B.KX) +B.E=new A.v3(1,"ideographic") +B.JK=new A.k(!1,null,null,null,null,null,112,B.fq,null,null,null,B.E,null,null,null,null,null,null,null,null,null,"dense displayLarge 2014",null,null,null,null) +B.Ih=new A.k(!1,null,null,null,null,null,56,B.j,null,null,null,B.E,null,null,null,null,null,null,null,null,null,"dense displayMedium 2014",null,null,null,null) +B.Kf=new A.k(!1,null,null,null,null,null,45,B.j,null,null,null,B.E,null,null,null,null,null,null,null,null,null,"dense displaySmall 2014",null,null,null,null) +B.Id=new A.k(!1,null,null,null,null,null,40,B.j,null,null,null,B.E,null,null,null,null,null,null,null,null,null,"dense headlineLarge 2014",null,null,null,null) +B.KA=new A.k(!1,null,null,null,null,null,34,B.j,null,null,null,B.E,null,null,null,null,null,null,null,null,null,"dense headlineMedium 2014",null,null,null,null) +B.Ip=new A.k(!1,null,null,null,null,null,24,B.j,null,null,null,B.E,null,null,null,null,null,null,null,null,null,"dense headlineSmall 2014",null,null,null,null) +B.L4=new A.k(!1,null,null,null,null,null,21,B.I,null,null,null,B.E,null,null,null,null,null,null,null,null,null,"dense titleLarge 2014",null,null,null,null) +B.HT=new A.k(!1,null,null,null,null,null,17,B.j,null,null,null,B.E,null,null,null,null,null,null,null,null,null,"dense titleMedium 2014",null,null,null,null) +B.HV=new A.k(!1,null,null,null,null,null,15,B.I,null,null,null,B.E,null,null,null,null,null,null,null,null,null,"dense titleSmall 2014",null,null,null,null) +B.Jh=new A.k(!1,null,null,null,null,null,15,B.I,null,null,null,B.E,null,null,null,null,null,null,null,null,null,"dense bodyLarge 2014",null,null,null,null) +B.J_=new A.k(!1,null,null,null,null,null,15,B.j,null,null,null,B.E,null,null,null,null,null,null,null,null,null,"dense bodyMedium 2014",null,null,null,null) +B.IE=new A.k(!1,null,null,null,null,null,13,B.j,null,null,null,B.E,null,null,null,null,null,null,null,null,null,"dense bodySmall 2014",null,null,null,null) +B.IL=new A.k(!1,null,null,null,null,null,15,B.I,null,null,null,B.E,null,null,null,null,null,null,null,null,null,"dense labelLarge 2014",null,null,null,null) +B.JY=new A.k(!1,null,null,null,null,null,12,B.j,null,null,null,B.E,null,null,null,null,null,null,null,null,null,"dense labelMedium 2014",null,null,null,null) +B.HJ=new A.k(!1,null,null,null,null,null,11,B.j,null,null,null,B.E,null,null,null,null,null,null,null,null,null,"dense labelSmall 2014",null,null,null,null) +B.Lt=new A.cR(B.JK,B.Ih,B.Kf,B.Id,B.KA,B.Ip,B.L4,B.HT,B.HV,B.Jh,B.J_,B.IE,B.IL,B.JY,B.HJ) +B.HO=new A.k(!0,B.y,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackMountainView displayLarge",null,null,null,null) +B.Il=new A.k(!0,B.y,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackMountainView displayMedium",null,null,null,null) +B.IQ=new A.k(!0,B.y,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackMountainView displaySmall",null,null,null,null) +B.KT=new A.k(!0,B.y,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackMountainView headlineLarge",null,null,null,null) +B.La=new A.k(!0,B.y,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackMountainView headlineMedium",null,null,null,null) +B.L7=new A.k(!0,B.x,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackMountainView headlineSmall",null,null,null,null) +B.IH=new A.k(!0,B.x,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackMountainView titleLarge",null,null,null,null) +B.KM=new A.k(!0,B.x,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackMountainView titleMedium",null,null,null,null) +B.Iu=new A.k(!0,B.l,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackMountainView titleSmall",null,null,null,null) +B.ID=new A.k(!0,B.x,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackMountainView bodyLarge",null,null,null,null) +B.Ia=new A.k(!0,B.x,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackMountainView bodyMedium",null,null,null,null) +B.IP=new A.k(!0,B.y,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackMountainView bodySmall",null,null,null,null) +B.Lj=new A.k(!0,B.x,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackMountainView labelLarge",null,null,null,null) +B.Ke=new A.k(!0,B.l,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackMountainView labelMedium",null,null,null,null) +B.JQ=new A.k(!0,B.l,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackMountainView labelSmall",null,null,null,null) +B.Lu=new A.cR(B.HO,B.Il,B.IQ,B.KT,B.La,B.L7,B.IH,B.KM,B.Iu,B.ID,B.Ia,B.IP,B.Lj,B.Ke,B.JQ) +B.HK=new A.k(!0,B.z,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteRedwoodCity displayLarge",null,null,null,null) +B.IK=new A.k(!0,B.z,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteRedwoodCity displayMedium",null,null,null,null) +B.HL=new A.k(!0,B.z,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteRedwoodCity displaySmall",null,null,null,null) +B.I_=new A.k(!0,B.z,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteRedwoodCity headlineLarge",null,null,null,null) +B.I4=new A.k(!0,B.z,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteRedwoodCity headlineMedium",null,null,null,null) +B.KD=new A.k(!0,B.i,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteRedwoodCity headlineSmall",null,null,null,null) +B.IX=new A.k(!0,B.i,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteRedwoodCity titleLarge",null,null,null,null) +B.J7=new A.k(!0,B.i,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteRedwoodCity titleMedium",null,null,null,null) +B.Jx=new A.k(!0,B.i,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteRedwoodCity titleSmall",null,null,null,null) +B.K5=new A.k(!0,B.i,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteRedwoodCity bodyLarge",null,null,null,null) +B.Je=new A.k(!0,B.i,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteRedwoodCity bodyMedium",null,null,null,null) +B.KI=new A.k(!0,B.z,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteRedwoodCity bodySmall",null,null,null,null) +B.KB=new A.k(!0,B.i,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteRedwoodCity labelLarge",null,null,null,null) +B.IZ=new A.k(!0,B.i,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteRedwoodCity labelMedium",null,null,null,null) +B.K7=new A.k(!0,B.i,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteRedwoodCity labelSmall",null,null,null,null) +B.Lv=new A.cR(B.HK,B.IK,B.HL,B.I_,B.I4,B.KD,B.IX,B.J7,B.Jx,B.K5,B.Je,B.KI,B.KB,B.IZ,B.K7) +B.C=A.a(s(["Ubuntu","Cantarell","DejaVu Sans","Liberation Sans","Arial"]),t.s) +B.JO=new A.k(!0,B.y,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackHelsinki displayLarge",null,null,null,null) +B.Kd=new A.k(!0,B.y,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackHelsinki displayMedium",null,null,null,null) +B.JB=new A.k(!0,B.y,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackHelsinki displaySmall",null,null,null,null) +B.Io=new A.k(!0,B.y,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackHelsinki headlineLarge",null,null,null,null) +B.IY=new A.k(!0,B.y,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackHelsinki headlineMedium",null,null,null,null) +B.J8=new A.k(!0,B.x,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackHelsinki headlineSmall",null,null,null,null) +B.Kw=new A.k(!0,B.x,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackHelsinki titleLarge",null,null,null,null) +B.Ir=new A.k(!0,B.x,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackHelsinki titleMedium",null,null,null,null) +B.HH=new A.k(!0,B.l,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackHelsinki titleSmall",null,null,null,null) +B.L0=new A.k(!0,B.x,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackHelsinki bodyLarge",null,null,null,null) +B.HB=new A.k(!0,B.x,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackHelsinki bodyMedium",null,null,null,null) +B.K2=new A.k(!0,B.y,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackHelsinki bodySmall",null,null,null,null) +B.IF=new A.k(!0,B.x,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackHelsinki labelLarge",null,null,null,null) +B.JS=new A.k(!0,B.l,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackHelsinki labelMedium",null,null,null,null) +B.Le=new A.k(!0,B.l,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackHelsinki labelSmall",null,null,null,null) +B.Lw=new A.cR(B.JO,B.Kd,B.JB,B.Io,B.IY,B.J8,B.Kw,B.Ir,B.HH,B.L0,B.HB,B.K2,B.IF,B.JS,B.Le) +B.I6=new A.k(!1,null,null,null,null,null,112,B.fq,null,null,null,B.k,null,null,null,null,null,null,null,null,null,"englishLike displayLarge 2014",null,null,null,null) +B.Ld=new A.k(!1,null,null,null,null,null,56,B.j,null,null,null,B.k,null,null,null,null,null,null,null,null,null,"englishLike displayMedium 2014",null,null,null,null) +B.JA=new A.k(!1,null,null,null,null,null,45,B.j,null,null,null,B.k,null,null,null,null,null,null,null,null,null,"englishLike displaySmall 2014",null,null,null,null) +B.Kq=new A.k(!1,null,null,null,null,null,40,B.j,null,null,null,B.k,null,null,null,null,null,null,null,null,null,"englishLike headlineLarge 2014",null,null,null,null) +B.K6=new A.k(!1,null,null,null,null,null,34,B.j,null,null,null,B.k,null,null,null,null,null,null,null,null,null,"englishLike headlineMedium 2014",null,null,null,null) +B.HP=new A.k(!1,null,null,null,null,null,24,B.j,null,null,null,B.k,null,null,null,null,null,null,null,null,null,"englishLike headlineSmall 2014",null,null,null,null) +B.IS=new A.k(!1,null,null,null,null,null,20,B.I,null,null,null,B.k,null,null,null,null,null,null,null,null,null,"englishLike titleLarge 2014",null,null,null,null) +B.Ib=new A.k(!1,null,null,null,null,null,16,B.j,null,null,null,B.k,null,null,null,null,null,null,null,null,null,"englishLike titleMedium 2014",null,null,null,null) +B.Kb=new A.k(!1,null,null,null,null,null,14,B.I,null,0.1,null,B.k,null,null,null,null,null,null,null,null,null,"englishLike titleSmall 2014",null,null,null,null) +B.JP=new A.k(!1,null,null,null,null,null,14,B.I,null,null,null,B.k,null,null,null,null,null,null,null,null,null,"englishLike bodyLarge 2014",null,null,null,null) +B.JU=new A.k(!1,null,null,null,null,null,14,B.j,null,null,null,B.k,null,null,null,null,null,null,null,null,null,"englishLike bodyMedium 2014",null,null,null,null) +B.Ji=new A.k(!1,null,null,null,null,null,12,B.j,null,null,null,B.k,null,null,null,null,null,null,null,null,null,"englishLike bodySmall 2014",null,null,null,null) +B.Jl=new A.k(!1,null,null,null,null,null,14,B.I,null,null,null,B.k,null,null,null,null,null,null,null,null,null,"englishLike labelLarge 2014",null,null,null,null) +B.J2=new A.k(!1,null,null,null,null,null,12,B.j,null,null,null,B.k,null,null,null,null,null,null,null,null,null,"englishLike labelMedium 2014",null,null,null,null) +B.Kn=new A.k(!1,null,null,null,null,null,10,B.j,null,1.5,null,B.k,null,null,null,null,null,null,null,null,null,"englishLike labelSmall 2014",null,null,null,null) +B.Lx=new A.cR(B.I6,B.Ld,B.JA,B.Kq,B.K6,B.HP,B.IS,B.Ib,B.Kb,B.JP,B.JU,B.Ji,B.Jl,B.J2,B.Kn) +B.L8=new A.k(!1,null,null,null,null,null,57,B.j,null,-0.25,null,B.k,1.12,B.p,null,null,null,null,null,null,null,"tall displayLarge 2021",null,null,null,null) +B.K_=new A.k(!1,null,null,null,null,null,45,B.j,null,0,null,B.k,1.16,B.p,null,null,null,null,null,null,null,"tall displayMedium 2021",null,null,null,null) +B.Jf=new A.k(!1,null,null,null,null,null,36,B.j,null,0,null,B.k,1.22,B.p,null,null,null,null,null,null,null,"tall displaySmall 2021",null,null,null,null) +B.Lr=new A.k(!1,null,null,null,null,null,32,B.j,null,0,null,B.k,1.25,B.p,null,null,null,null,null,null,null,"tall headlineLarge 2021",null,null,null,null) +B.Lk=new A.k(!1,null,null,null,null,null,28,B.j,null,0,null,B.k,1.29,B.p,null,null,null,null,null,null,null,"tall headlineMedium 2021",null,null,null,null) +B.Ko=new A.k(!1,null,null,null,null,null,24,B.j,null,0,null,B.k,1.33,B.p,null,null,null,null,null,null,null,"tall headlineSmall 2021",null,null,null,null) +B.HF=new A.k(!1,null,null,null,null,null,22,B.j,null,0,null,B.k,1.27,B.p,null,null,null,null,null,null,null,"tall titleLarge 2021",null,null,null,null) +B.L9=new A.k(!1,null,null,null,null,null,16,B.I,null,0.15,null,B.k,1.5,B.p,null,null,null,null,null,null,null,"tall titleMedium 2021",null,null,null,null) +B.Iq=new A.k(!1,null,null,null,null,null,14,B.I,null,0.1,null,B.k,1.43,B.p,null,null,null,null,null,null,null,"tall titleSmall 2021",null,null,null,null) +B.HC=new A.k(!1,null,null,null,null,null,16,B.j,null,0.5,null,B.k,1.5,B.p,null,null,null,null,null,null,null,"tall bodyLarge 2021",null,null,null,null) +B.K4=new A.k(!1,null,null,null,null,null,14,B.j,null,0.25,null,B.k,1.43,B.p,null,null,null,null,null,null,null,"tall bodyMedium 2021",null,null,null,null) +B.JJ=new A.k(!1,null,null,null,null,null,12,B.j,null,0.4,null,B.k,1.33,B.p,null,null,null,null,null,null,null,"tall bodySmall 2021",null,null,null,null) +B.Km=new A.k(!1,null,null,null,null,null,14,B.I,null,0.1,null,B.k,1.43,B.p,null,null,null,null,null,null,null,"tall labelLarge 2021",null,null,null,null) +B.K3=new A.k(!1,null,null,null,null,null,12,B.I,null,0.5,null,B.k,1.33,B.p,null,null,null,null,null,null,null,"tall labelMedium 2021",null,null,null,null) +B.It=new A.k(!1,null,null,null,null,null,11,B.I,null,0.5,null,B.k,1.45,B.p,null,null,null,null,null,null,null,"tall labelSmall 2021",null,null,null,null) +B.Ly=new A.cR(B.L8,B.K_,B.Jf,B.Lr,B.Lk,B.Ko,B.HF,B.L9,B.Iq,B.HC,B.K4,B.JJ,B.Km,B.K3,B.It) +B.Kg=new A.k(!0,B.z,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteRedmond displayLarge",null,null,null,null) +B.Jo=new A.k(!0,B.z,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteRedmond displayMedium",null,null,null,null) +B.IW=new A.k(!0,B.z,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteRedmond displaySmall",null,null,null,null) +B.L6=new A.k(!0,B.z,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteRedmond headlineLarge",null,null,null,null) +B.Ic=new A.k(!0,B.z,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteRedmond headlineMedium",null,null,null,null) +B.HU=new A.k(!0,B.i,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteRedmond headlineSmall",null,null,null,null) +B.J5=new A.k(!0,B.i,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteRedmond titleLarge",null,null,null,null) +B.JL=new A.k(!0,B.i,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteRedmond titleMedium",null,null,null,null) +B.Jc=new A.k(!0,B.i,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteRedmond titleSmall",null,null,null,null) +B.Js=new A.k(!0,B.i,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteRedmond bodyLarge",null,null,null,null) +B.Ky=new A.k(!0,B.i,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteRedmond bodyMedium",null,null,null,null) +B.HW=new A.k(!0,B.z,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteRedmond bodySmall",null,null,null,null) +B.K1=new A.k(!0,B.i,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteRedmond labelLarge",null,null,null,null) +B.Jg=new A.k(!0,B.i,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteRedmond labelMedium",null,null,null,null) +B.KP=new A.k(!0,B.i,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteRedmond labelSmall",null,null,null,null) +B.Lz=new A.cR(B.Kg,B.Jo,B.IW,B.L6,B.Ic,B.HU,B.J5,B.JL,B.Jc,B.Js,B.Ky,B.HW,B.K1,B.Jg,B.KP) +B.IV=new A.k(!1,null,null,null,null,null,112,B.j,null,null,null,B.k,null,null,null,null,null,null,null,null,null,"tall displayLarge 2014",null,null,null,null) +B.Ii=new A.k(!1,null,null,null,null,null,56,B.j,null,null,null,B.k,null,null,null,null,null,null,null,null,null,"tall displayMedium 2014",null,null,null,null) +B.Lm=new A.k(!1,null,null,null,null,null,45,B.j,null,null,null,B.k,null,null,null,null,null,null,null,null,null,"tall displaySmall 2014",null,null,null,null) +B.Ki=new A.k(!1,null,null,null,null,null,40,B.j,null,null,null,B.k,null,null,null,null,null,null,null,null,null,"tall headlineLarge 2014",null,null,null,null) +B.IG=new A.k(!1,null,null,null,null,null,34,B.j,null,null,null,B.k,null,null,null,null,null,null,null,null,null,"tall headlineMedium 2014",null,null,null,null) +B.IB=new A.k(!1,null,null,null,null,null,24,B.j,null,null,null,B.k,null,null,null,null,null,null,null,null,null,"tall headlineSmall 2014",null,null,null,null) +B.Li=new A.k(!1,null,null,null,null,null,21,B.cn,null,null,null,B.k,null,null,null,null,null,null,null,null,null,"tall titleLarge 2014",null,null,null,null) +B.IN=new A.k(!1,null,null,null,null,null,17,B.j,null,null,null,B.k,null,null,null,null,null,null,null,null,null,"tall titleMedium 2014",null,null,null,null) +B.Ln=new A.k(!1,null,null,null,null,null,15,B.I,null,null,null,B.k,null,null,null,null,null,null,null,null,null,"tall titleSmall 2014",null,null,null,null) +B.Lb=new A.k(!1,null,null,null,null,null,15,B.cn,null,null,null,B.k,null,null,null,null,null,null,null,null,null,"tall bodyLarge 2014",null,null,null,null) +B.J4=new A.k(!1,null,null,null,null,null,15,B.j,null,null,null,B.k,null,null,null,null,null,null,null,null,null,"tall bodyMedium 2014",null,null,null,null) +B.Kk=new A.k(!1,null,null,null,null,null,13,B.j,null,null,null,B.k,null,null,null,null,null,null,null,null,null,"tall bodySmall 2014",null,null,null,null) +B.JX=new A.k(!1,null,null,null,null,null,15,B.cn,null,null,null,B.k,null,null,null,null,null,null,null,null,null,"tall labelLarge 2014",null,null,null,null) +B.Kr=new A.k(!1,null,null,null,null,null,12,B.j,null,null,null,B.k,null,null,null,null,null,null,null,null,null,"tall labelMedium 2014",null,null,null,null) +B.JV=new A.k(!1,null,null,null,null,null,11,B.j,null,null,null,B.k,null,null,null,null,null,null,null,null,null,"tall labelSmall 2014",null,null,null,null) +B.LA=new A.cR(B.IV,B.Ii,B.Lm,B.Ki,B.IG,B.IB,B.Li,B.IN,B.Ln,B.Lb,B.J4,B.Kk,B.JX,B.Kr,B.JV) +B.JF=new A.k(!0,B.z,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteCupertino displayLarge",null,null,null,null) +B.Kx=new A.k(!0,B.z,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteCupertino displayMedium",null,null,null,null) +B.J6=new A.k(!0,B.z,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteCupertino displaySmall",null,null,null,null) +B.Jr=new A.k(!0,B.z,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteCupertino headlineLarge",null,null,null,null) +B.Ix=new A.k(!0,B.z,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteCupertino headlineMedium",null,null,null,null) +B.Jq=new A.k(!0,B.i,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteCupertino headlineSmall",null,null,null,null) +B.II=new A.k(!0,B.i,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteCupertino titleLarge",null,null,null,null) +B.Kh=new A.k(!0,B.i,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteCupertino titleMedium",null,null,null,null) +B.IU=new A.k(!0,B.i,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteCupertino titleSmall",null,null,null,null) +B.J9=new A.k(!0,B.i,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteCupertino bodyLarge",null,null,null,null) +B.Jp=new A.k(!0,B.i,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteCupertino bodyMedium",null,null,null,null) +B.I3=new A.k(!0,B.z,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteCupertino bodySmall",null,null,null,null) +B.Ku=new A.k(!0,B.i,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteCupertino labelLarge",null,null,null,null) +B.Ju=new A.k(!0,B.i,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteCupertino labelMedium",null,null,null,null) +B.Kc=new A.k(!0,B.i,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteCupertino labelSmall",null,null,null,null) +B.LB=new A.cR(B.JF,B.Kx,B.J6,B.Jr,B.Ix,B.Jq,B.II,B.Kh,B.IU,B.J9,B.Jp,B.I3,B.Ku,B.Ju,B.Kc) +B.KY=new A.k(!1,null,null,null,null,null,57,B.j,null,-0.25,null,B.E,1.12,B.p,null,null,null,null,null,null,null,"dense displayLarge 2021",null,null,null,null) +B.KZ=new A.k(!1,null,null,null,null,null,45,B.j,null,0,null,B.E,1.16,B.p,null,null,null,null,null,null,null,"dense displayMedium 2021",null,null,null,null) +B.KU=new A.k(!1,null,null,null,null,null,36,B.j,null,0,null,B.E,1.22,B.p,null,null,null,null,null,null,null,"dense displaySmall 2021",null,null,null,null) +B.Kz=new A.k(!1,null,null,null,null,null,32,B.j,null,0,null,B.E,1.25,B.p,null,null,null,null,null,null,null,"dense headlineLarge 2021",null,null,null,null) +B.I5=new A.k(!1,null,null,null,null,null,28,B.j,null,0,null,B.E,1.29,B.p,null,null,null,null,null,null,null,"dense headlineMedium 2021",null,null,null,null) +B.JI=new A.k(!1,null,null,null,null,null,24,B.j,null,0,null,B.E,1.33,B.p,null,null,null,null,null,null,null,"dense headlineSmall 2021",null,null,null,null) +B.HX=new A.k(!1,null,null,null,null,null,22,B.j,null,0,null,B.E,1.27,B.p,null,null,null,null,null,null,null,"dense titleLarge 2021",null,null,null,null) +B.I2=new A.k(!1,null,null,null,null,null,16,B.I,null,0.15,null,B.E,1.5,B.p,null,null,null,null,null,null,null,"dense titleMedium 2021",null,null,null,null) +B.IT=new A.k(!1,null,null,null,null,null,14,B.I,null,0.1,null,B.E,1.43,B.p,null,null,null,null,null,null,null,"dense titleSmall 2021",null,null,null,null) +B.Lq=new A.k(!1,null,null,null,null,null,16,B.j,null,0.5,null,B.E,1.5,B.p,null,null,null,null,null,null,null,"dense bodyLarge 2021",null,null,null,null) +B.KN=new A.k(!1,null,null,null,null,null,14,B.j,null,0.25,null,B.E,1.43,B.p,null,null,null,null,null,null,null,"dense bodyMedium 2021",null,null,null,null) +B.IA=new A.k(!1,null,null,null,null,null,12,B.j,null,0.4,null,B.E,1.33,B.p,null,null,null,null,null,null,null,"dense bodySmall 2021",null,null,null,null) +B.Ka=new A.k(!1,null,null,null,null,null,14,B.I,null,0.1,null,B.E,1.43,B.p,null,null,null,null,null,null,null,"dense labelLarge 2021",null,null,null,null) +B.Ie=new A.k(!1,null,null,null,null,null,12,B.I,null,0.5,null,B.E,1.33,B.p,null,null,null,null,null,null,null,"dense labelMedium 2021",null,null,null,null) +B.Lh=new A.k(!1,null,null,null,null,null,11,B.I,null,0.5,null,B.E,1.45,B.p,null,null,null,null,null,null,null,"dense labelSmall 2021",null,null,null,null) +B.LC=new A.cR(B.KY,B.KZ,B.KU,B.Kz,B.I5,B.JI,B.HX,B.I2,B.IT,B.Lq,B.KN,B.IA,B.Ka,B.Ie,B.Lh) +B.Ig=new A.k(!1,null,null,null,null,null,57,B.j,null,-0.25,null,B.k,1.12,B.p,null,null,null,null,null,null,null,"englishLike displayLarge 2021",null,null,null,null) +B.IO=new A.k(!1,null,null,null,null,null,45,B.j,null,0,null,B.k,1.16,B.p,null,null,null,null,null,null,null,"englishLike displayMedium 2021",null,null,null,null) +B.L_=new A.k(!1,null,null,null,null,null,36,B.j,null,0,null,B.k,1.22,B.p,null,null,null,null,null,null,null,"englishLike displaySmall 2021",null,null,null,null) +B.J0=new A.k(!1,null,null,null,null,null,32,B.j,null,0,null,B.k,1.25,B.p,null,null,null,null,null,null,null,"englishLike headlineLarge 2021",null,null,null,null) +B.Jb=new A.k(!1,null,null,null,null,null,28,B.j,null,0,null,B.k,1.29,B.p,null,null,null,null,null,null,null,"englishLike headlineMedium 2021",null,null,null,null) +B.KC=new A.k(!1,null,null,null,null,null,24,B.j,null,0,null,B.k,1.33,B.p,null,null,null,null,null,null,null,"englishLike headlineSmall 2021",null,null,null,null) +B.Kt=new A.k(!1,null,null,null,null,null,22,B.j,null,0,null,B.k,1.27,B.p,null,null,null,null,null,null,null,"englishLike titleLarge 2021",null,null,null,null) +B.HQ=new A.k(!1,null,null,null,null,null,16,B.I,null,0.15,null,B.k,1.5,B.p,null,null,null,null,null,null,null,"englishLike titleMedium 2021",null,null,null,null) +B.Ik=new A.k(!1,null,null,null,null,null,14,B.I,null,0.1,null,B.k,1.43,B.p,null,null,null,null,null,null,null,"englishLike titleSmall 2021",null,null,null,null) +B.HG=new A.k(!1,null,null,null,null,null,16,B.j,null,0.5,null,B.k,1.5,B.p,null,null,null,null,null,null,null,"englishLike bodyLarge 2021",null,null,null,null) +B.HD=new A.k(!1,null,null,null,null,null,14,B.j,null,0.25,null,B.k,1.43,B.p,null,null,null,null,null,null,null,"englishLike bodyMedium 2021",null,null,null,null) +B.K8=new A.k(!1,null,null,null,null,null,12,B.j,null,0.4,null,B.k,1.33,B.p,null,null,null,null,null,null,null,"englishLike bodySmall 2021",null,null,null,null) +B.IJ=new A.k(!1,null,null,null,null,null,14,B.I,null,0.1,null,B.k,1.43,B.p,null,null,null,null,null,null,null,"englishLike labelLarge 2021",null,null,null,null) +B.KQ=new A.k(!1,null,null,null,null,null,12,B.I,null,0.5,null,B.k,1.33,B.p,null,null,null,null,null,null,null,"englishLike labelMedium 2021",null,null,null,null) +B.J3=new A.k(!1,null,null,null,null,null,11,B.I,null,0.5,null,B.k,1.45,B.p,null,null,null,null,null,null,null,"englishLike labelSmall 2021",null,null,null,null) +B.LD=new A.cR(B.Ig,B.IO,B.L_,B.J0,B.Jb,B.KC,B.Kt,B.HQ,B.Ik,B.HG,B.HD,B.K8,B.IJ,B.KQ,B.J3) +B.JC=new A.k(!0,B.y,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackRedmond displayLarge",null,null,null,null) +B.IR=new A.k(!0,B.y,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackRedmond displayMedium",null,null,null,null) +B.L1=new A.k(!0,B.y,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackRedmond displaySmall",null,null,null,null) +B.I7=new A.k(!0,B.y,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackRedmond headlineLarge",null,null,null,null) +B.KJ=new A.k(!0,B.y,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackRedmond headlineMedium",null,null,null,null) +B.HM=new A.k(!0,B.x,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackRedmond headlineSmall",null,null,null,null) +B.Jd=new A.k(!0,B.x,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackRedmond titleLarge",null,null,null,null) +B.Jt=new A.k(!0,B.x,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackRedmond titleMedium",null,null,null,null) +B.HE=new A.k(!0,B.l,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackRedmond titleSmall",null,null,null,null) +B.Kl=new A.k(!0,B.x,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackRedmond bodyLarge",null,null,null,null) +B.I8=new A.k(!0,B.x,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackRedmond bodyMedium",null,null,null,null) +B.Lf=new A.k(!0,B.y,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackRedmond bodySmall",null,null,null,null) +B.Jv=new A.k(!0,B.x,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackRedmond labelLarge",null,null,null,null) +B.HZ=new A.k(!0,B.l,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackRedmond labelMedium",null,null,null,null) +B.If=new A.k(!0,B.l,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackRedmond labelSmall",null,null,null,null) +B.LE=new A.cR(B.JC,B.IR,B.L1,B.I7,B.KJ,B.HM,B.Jd,B.Jt,B.HE,B.Kl,B.I8,B.Lf,B.Jv,B.HZ,B.If) +B.Jm=new A.k(!0,B.z,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteHelsinki displayLarge",null,null,null,null) +B.Jy=new A.k(!0,B.z,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteHelsinki displayMedium",null,null,null,null) +B.KR=new A.k(!0,B.z,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteHelsinki displaySmall",null,null,null,null) +B.Ks=new A.k(!0,B.z,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteHelsinki headlineLarge",null,null,null,null) +B.Lg=new A.k(!0,B.z,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteHelsinki headlineMedium",null,null,null,null) +B.JE=new A.k(!0,B.i,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteHelsinki headlineSmall",null,null,null,null) +B.Iv=new A.k(!0,B.i,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteHelsinki titleLarge",null,null,null,null) +B.Lo=new A.k(!0,B.i,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteHelsinki titleMedium",null,null,null,null) +B.Im=new A.k(!0,B.i,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteHelsinki titleSmall",null,null,null,null) +B.HI=new A.k(!0,B.i,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteHelsinki bodyLarge",null,null,null,null) +B.Ja=new A.k(!0,B.i,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteHelsinki bodyMedium",null,null,null,null) +B.IM=new A.k(!0,B.z,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteHelsinki bodySmall",null,null,null,null) +B.HR=new A.k(!0,B.i,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteHelsinki labelLarge",null,null,null,null) +B.JD=new A.k(!0,B.i,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteHelsinki labelMedium",null,null,null,null) +B.HS=new A.k(!0,B.i,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteHelsinki labelSmall",null,null,null,null) +B.LF=new A.cR(B.Jm,B.Jy,B.KR,B.Ks,B.Lg,B.JE,B.Iv,B.Lo,B.Im,B.HI,B.Ja,B.IM,B.HR,B.JD,B.HS) +B.Jj=new A.k(!0,B.y,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackCupertino displayLarge",null,null,null,null) +B.Kv=new A.k(!0,B.y,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackCupertino displayMedium",null,null,null,null) +B.K0=new A.k(!0,B.y,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackCupertino displaySmall",null,null,null,null) +B.K9=new A.k(!0,B.y,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackCupertino headlineLarge",null,null,null,null) +B.HN=new A.k(!0,B.y,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackCupertino headlineMedium",null,null,null,null) +B.JR=new A.k(!0,B.x,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackCupertino headlineSmall",null,null,null,null) +B.IC=new A.k(!0,B.x,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackCupertino titleLarge",null,null,null,null) +B.JW=new A.k(!0,B.x,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackCupertino titleMedium",null,null,null,null) +B.Ij=new A.k(!0,B.l,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackCupertino titleSmall",null,null,null,null) +B.KW=new A.k(!0,B.x,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackCupertino bodyLarge",null,null,null,null) +B.KH=new A.k(!0,B.x,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackCupertino bodyMedium",null,null,null,null) +B.JN=new A.k(!0,B.y,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackCupertino bodySmall",null,null,null,null) +B.Iz=new A.k(!0,B.x,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackCupertino labelLarge",null,null,null,null) +B.Is=new A.k(!0,B.l,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackCupertino labelMedium",null,null,null,null) +B.KE=new A.k(!0,B.l,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"blackCupertino labelSmall",null,null,null,null) +B.LG=new A.cR(B.Jj,B.Kv,B.K0,B.K9,B.HN,B.JR,B.IC,B.JW,B.Ij,B.KW,B.KH,B.JN,B.Iz,B.Is,B.KE) +B.JZ=new A.k(!0,B.z,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteMountainView displayLarge",null,null,null,null) +B.Ll=new A.k(!0,B.z,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteMountainView displayMedium",null,null,null,null) +B.L2=new A.k(!0,B.z,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteMountainView displaySmall",null,null,null,null) +B.Iw=new A.k(!0,B.z,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteMountainView headlineLarge",null,null,null,null) +B.KV=new A.k(!0,B.z,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteMountainView headlineMedium",null,null,null,null) +B.JT=new A.k(!0,B.i,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteMountainView headlineSmall",null,null,null,null) +B.Lp=new A.k(!0,B.i,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteMountainView titleLarge",null,null,null,null) +B.J1=new A.k(!0,B.i,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteMountainView titleMedium",null,null,null,null) +B.Jz=new A.k(!0,B.i,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteMountainView titleSmall",null,null,null,null) +B.KO=new A.k(!0,B.i,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteMountainView bodyLarge",null,null,null,null) +B.In=new A.k(!0,B.i,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteMountainView bodyMedium",null,null,null,null) +B.L3=new A.k(!0,B.z,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteMountainView bodySmall",null,null,null,null) +B.KS=new A.k(!0,B.i,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteMountainView labelLarge",null,null,null,null) +B.KK=new A.k(!0,B.i,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteMountainView labelMedium",null,null,null,null) +B.Kj=new A.k(!0,B.i,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.e,null,null,null,"whiteMountainView labelSmall",null,null,null,null) +B.LH=new A.cR(B.JZ,B.Ll,B.L2,B.Iw,B.KV,B.JT,B.Lp,B.J1,B.Jz,B.KO,B.In,B.L3,B.KS,B.KK,B.Kj) +B.LI=new A.FC(1,"longestLine") +B.LJ=new A.v1("Avatar Glow by @apgapg",null,null,null,null) +B.Ob=new A.a_n(0,"system") +B.LK=new A.vd(null) +B.bx=new A.oG(0,"clamp") +B.es=new A.oG(1,"repeated") +B.et=new A.oG(2,"mirror") +B.eu=new A.oG(3,"decal") +B.LL=new A.ve(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.LM=new A.vf(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.b8=new A.FI(0.001,0.001) +B.LN=new A.vh(null,null,null,null,null,null,null,null,null) +B.hC=new A.FJ(1,"longPress") +B.LO=new A.FJ(2,"tap") +B.uX=new A.vj(0,"identity") +B.uY=new A.vj(1,"transform2d") +B.ev=new A.vj(2,"complex") +B.aL=new A.kf(0,"up") +B.aM=new A.kf(1,"right") +B.aN=new A.kf(2,"down") +B.aO=new A.kf(3,"left") +B.LP=new A.FQ(0,"closedLoop") +B.LQ=new A.FQ(1,"leaveFlutterView") +B.LR=A.b6("mE") +B.LS=A.b6("mU") +B.LT=A.b6("zh") +B.LU=A.b6("c3") +B.LV=A.b6("a7D") +B.uZ=A.b6("h8") +B.LW=A.b6("ajP") +B.LX=A.b6("fg") +B.LY=A.b6("Ru") +B.LZ=A.b6("Rv") +B.M_=A.b6("fj") +B.M0=A.b6("Tl") +B.M1=A.b6("Tm") +B.M2=A.b6("Tn") +B.M3=A.b6("ata") +B.M4=A.b6("bM>") +B.M5=A.b6("fq") +B.v_=A.b6("e8") +B.v0=A.b6("abQ") +B.db=A.b6("ln") +B.M6=A.b6("ly") +B.M7=A.b6("E") +B.hD=A.b6("fw") +B.M8=A.b6("hx") +B.M9=A.b6("lN") +B.Ma=A.b6("lO") +B.Mb=A.b6("a8p") +B.v1=A.b6("eB") +B.Mc=A.b6("m_") +B.Md=A.b6("m2") +B.Me=A.b6("u") +B.v2=A.b6("ea") +B.Mf=A.b6("a_E") +B.Mg=A.b6("oK") +B.Mh=A.b6("a_F") +B.Mi=A.b6("hL") +B.Mj=A.b6("a8N") +B.hE=A.b6("fl") +B.Mk=A.b6("vs") +B.Ml=A.b6("oS") +B.Mm=A.b6("mp<@>") +B.Mn=A.b6("hV") +B.Mo=A.b6("hW") +B.hF=A.b6("fO") +B.Mp=A.b6("ajO") +B.Mq=new A.FT(0,"scope") +B.v3=new A.FT(1,"previouslyFocusedChild") +B.Mr=new A.bQ(11264,55297,B.q,t.M) +B.Ms=new A.bQ(1425,1775,B.S,t.M) +B.Mt=new A.bQ(1786,2303,B.S,t.M) +B.Mu=new A.bQ(192,214,B.q,t.M) +B.Mv=new A.bQ(216,246,B.q,t.M) +B.Mw=new A.bQ(2304,8191,B.q,t.M) +B.Mx=new A.bQ(248,696,B.q,t.M) +B.My=new A.bQ(55298,55299,B.S,t.M) +B.Mz=new A.bQ(55300,55353,B.q,t.M) +B.MA=new A.bQ(55354,55355,B.S,t.M) +B.MB=new A.bQ(55356,56319,B.q,t.M) +B.MC=new A.bQ(63744,64284,B.q,t.M) +B.MD=new A.bQ(64285,65023,B.S,t.M) +B.ME=new A.bQ(65024,65135,B.q,t.M) +B.MF=new A.bQ(65136,65276,B.S,t.M) +B.MG=new A.bQ(65277,65535,B.q,t.M) +B.MH=new A.bQ(65,90,B.q,t.M) +B.MI=new A.bQ(768,1424,B.q,t.M) +B.MJ=new A.bQ(8206,8206,B.q,t.M) +B.MK=new A.bQ(8207,8207,B.S,t.M) +B.ML=new A.bQ(97,122,B.q,t.M) +B.c4=new A.a_P(!1) +B.v4=new A.mi(B.h,0,B.r,B.h) +B.MM=new A.a_U(0,"triangles") +B.MN=new A.G_(0,"up") +B.hH=new A.G_(1,"down") +B.c5=new A.iM(0,0) +B.MO=new A.iM(-2,-2) +B.a9=new A.oR(0,"forward") +B.hN=new A.oR(1,"reverse") +B.MQ=new A.vG(0,"checkbox") +B.MR=new A.vG(1,"radio") +B.MS=new A.vG(2,"toggle") +B.MT=new A.vH(0,"inside") +B.MU=new A.vH(1,"higher") +B.MV=new A.vH(2,"lower") +B.ys=new A.A(67108864) +B.Ay=A.a(s([B.ys,B.H]),t.bk) +B.MW=new A.fR(B.Ay) +B.MX=new A.fR(null) +B.bz=new A.vV(0,"ready") +B.N1=new A.vV(1,"possible") +B.ez=new A.vV(2,"accepted") +B.Y=new A.p0(0,"initial") +B.bA=new A.p0(1,"active") +B.N2=new A.p0(2,"inactive") +B.va=new A.p0(3,"defunct") +B.vb=new A.vZ(0) +B.N9=new A.HV(1,0,"forward") +B.Na=new A.HV(-1,1,"backward") +B.Nb=new A.w1(1,"small") +B.Nc=new A.w1(2,"large") +B.hO=new A.w1(3,"extended") +B.hP=new A.p3(0,"ready") +B.eA=new A.p3(1,"possible") +B.vc=new A.p3(2,"accepted") +B.vd=new A.p3(3,"started") +B.eB=new A.p7(0,"idle") +B.Nd=new A.p7(1,"absorb") +B.eC=new A.p7(2,"pull") +B.ve=new A.p7(3,"recede") +B.c7=new A.kl(0,"pressed") +B.c8=new A.kl(1,"hover") +B.vf=new A.kl(2,"focus") +B.Ne=new A.a2o(0,"standard") +B.Nf=new A.pd(null,2) +B.Ng=new A.dg(0,"size") +B.vg=new A.dg(10,"accessibleNavigation") +B.Nh=new A.dg(11,"invertColors") +B.vh=new A.dg(12,"highContrast") +B.Ni=new A.dg(14,"boldText") +B.vi=new A.dg(15,"navigationMode") +B.vj=new A.dg(16,"gestureSettings") +B.eD=new A.dg(2,"devicePixelRatio") +B.Nj=new A.dg(3,"textScaleFactor") +B.vk=new A.dg(4,"platformBrightness") +B.b9=new A.dg(5,"padding") +B.hQ=new A.dg(6,"viewInsets") +B.Nk=new A.dg(8,"viewPadding") +B.vl=new A.ko(1/0,1/0,1/0,1/0,1/0,1/0) +B.Nl=new A.c2(B.cK,B.bN) +B.dy=new A.ll(1,"left") +B.Nm=new A.c2(B.cK,B.dy) +B.dz=new A.ll(2,"right") +B.Nn=new A.c2(B.cK,B.dz) +B.No=new A.c2(B.cK,B.aT) +B.Np=new A.c2(B.cL,B.bN) +B.Nq=new A.c2(B.cL,B.dy) +B.Nr=new A.c2(B.cL,B.dz) +B.Ns=new A.c2(B.cL,B.aT) +B.Nt=new A.c2(B.cM,B.bN) +B.Nu=new A.c2(B.cM,B.dy) +B.Nv=new A.c2(B.cM,B.dz) +B.Nw=new A.c2(B.cM,B.aT) +B.Nx=new A.c2(B.cN,B.bN) +B.Ny=new A.c2(B.cN,B.dy) +B.Nz=new A.c2(B.cN,B.dz) +B.NA=new A.c2(B.cN,B.aT) +B.NB=new A.c2(B.p6,B.aT) +B.NC=new A.c2(B.p7,B.aT) +B.ND=new A.c2(B.p8,B.aT) +B.NE=new A.c2(B.p9,B.aT) +B.NF=new A.Jh(null) +B.NG=new A.Jj(null) +B.hR=new A.dW(1,"add") +B.NJ=new A.dW(10,"remove") +B.NK=new A.dW(11,"popping") +B.NL=new A.dW(12,"removing") +B.hS=new A.dW(13,"dispose") +B.NM=new A.dW(14,"disposed") +B.NN=new A.dW(2,"adding") +B.vm=new A.dW(3,"push") +B.vn=new A.dW(4,"pushReplace") +B.vo=new A.dW(5,"pushing") +B.NO=new A.dW(6,"replace") +B.c9=new A.dW(7,"idle") +B.hT=new A.dW(8,"pop") +B.eE=new A.ed(0,"body") +B.eF=new A.ed(1,"appBar") +B.hV=new A.ed(10,"endDrawer") +B.eG=new A.ed(11,"statusBar") +B.eH=new A.ed(2,"bodyScrim") +B.eI=new A.ed(3,"bottomSheet") +B.ca=new A.ed(4,"snackBar") +B.eJ=new A.ed(5,"materialBanner") +B.hW=new A.ed(6,"persistentFooter") +B.eK=new A.ed(7,"bottomNavigationBar") +B.eL=new A.ed(8,"floatingActionButton") +B.hX=new A.ed(9,"drawer") +B.m=new A.a4o(0,"created") +B.bB=new A.Ll(0,"trailing") +B.vp=new A.Ll(1,"leading") +B.hY=new A.pt(0,"idle") +B.NQ=new A.pt(1,"absorb") +B.hZ=new A.pt(2,"pull") +B.i_=new A.pt(3,"recede") +B.eM=new A.xH(0,"leading") +B.eN=new A.xH(1,"middle") +B.eO=new A.xH(2,"trailing") +B.NR=new A.LQ(0,"minimize") +B.NS=new A.LQ(1,"maximize")})();(function staticFields(){$.dn=null +$.b3=A.b_("canvasKit") +$.aeF=B.yZ +$.b0=A.b_("_instance") +$.aiY=A.y(t.N,A.a_("ad")) +$.uL=A.a([],A.a_("v>")) +$.uK=A.a([],A.a_("v")) +$.ad4=!1 +$.ade=!1 +$.add=null +$.cs=null +$.afj=0 +$.ee=null +$.a99=!1 +$.i_=A.a([],t.tZ) +$.adf=0 +$.a5d=0 +$.j3=A.a([],A.a_("v")) +$.a6I=A.a([],t.rK) +$.Nv=null +$.akT=A.b_("_instance") +$.Zu=null +$.ady=null +$.adz=null +$.a9I=A.a([],t.g) +$.hY=A.a([],t.u) +$.yh=B.jp +$.Ni=null +$.TK=null +$.a8b=null +$.afW=null +$.acj=null +$.ael=null +$.adT=0 +$.a9a=A.a([],t.yJ) +$.a9m=-1 +$.a95=-1 +$.a94=-1 +$.a9h=-1 +$.aeQ=-1 +$.a8l=null +$.So=A.b_("_programCache") +$.tr=null +$.Nf=null +$.cW=null +$.uE=null +$.aeG=null +$.ad9=A.y(A.a_("v7"),A.a_("Fu")) +$.a5F=null +$.aeJ=-1 +$.aeI=-1 +$.aeK="" +$.aeH="" +$.aeL=-1 +$.yt=A.y(t.N,t.e) +$.aew=null +$.ky=!1 +$.yg=null +$.a2F=null +$.mz=A.a([],t.G) +$.aco=null +$.Wb=0 +$.DD=A.apX() +$.aaw=null +$.aav=null +$.afA=null +$.af0=null +$.afS=null +$.a6g=null +$.a6y=null +$.a9x=null +$.a3N=A.a([],A.a_("v?>")) +$.pC=null +$.yj=null +$.yk=null +$.a9g=!1 +$.ab=B.a7 +$.aex=A.y(t.N,t.DT) +$.a8J=A.a([],A.a_("v")) +$.akG=A.aqo() +$.a7Q=0 +$.Bl=A.a([],A.a_("v")) +$.abM=null +$.Nk=0 +$.a5l=null +$.a97=!1 +$.e3=null +$.iG=A.a([],A.a_("v")) +$.anG=A.az(A.a_("md")) +$.fv=null +$.k2=null +$.bK=null +$.Yk=null +$.aaS=0 +$.aaQ=A.y(t.S,t.zN) +$.aaR=A.y(t.zN,t.S) +$.Yy=0 +$.fI=null +$.ou=null +$.a8E=null +$.at=null +$.abX=null +$.abV=null +$.abW=null})();(function lazyInitializers(){var s=hunkHelpers.lazyFinal,r=hunkHelpers.lazy +s($,"auH","by",()=>A.ar2(A.a4(A.ab7(self.window),"vendor"),B.d.a2C(A.ak5(A.ab7(self.window))))) +s($,"avq","cH",()=>A.ar4()) +s($,"asp","a9S",()=>A.CF(8)) +s($,"aul","agX",()=>A.adx(0,0,1)) +s($,"auL","NJ",()=>A.acW(A.a7r(A.a3()))) +s($,"avA","ahI",()=>A.a([A.a4(A.jj(A.a3()),"Thin"),A.a4(A.jj(A.a3()),"ExtraLight"),A.a4(A.jj(A.a3()),"Light"),A.a4(A.jj(A.a3()),"Normal"),A.a4(A.jj(A.a3()),"Medium"),A.a4(A.jj(A.a3()),"SemiBold"),A.a4(A.jj(A.a3()),"Bold"),A.a4(A.jj(A.a3()),"ExtraBold"),A.a4(A.jj(A.a3()),"ExtraBlack")],t.J)) +s($,"avJ","ahQ",()=>A.a([A.a4(A.aaK(A.a3()),"RTL"),A.a4(A.aaK(A.a3()),"LTR")],t.J)) +s($,"avG","ahN",()=>A.a([A.a4(A.qf(A.a3()),"Left"),A.a4(A.qf(A.a3()),"Right"),A.a4(A.qf(A.a3()),"Center"),A.a4(A.qf(A.a3()),"Justify"),A.a4(A.qf(A.a3()),"Start"),A.a4(A.qf(A.a3()),"End")],t.J)) +s($,"avK","ahR",()=>A.a([A.a4(A.OO(A.a3()),"All"),A.a4(A.OO(A.a3()),"DisableFirstAscent"),A.a4(A.OO(A.a3()),"DisableLastDescent"),A.a4(A.OO(A.a3()),"DisableAll")],t.J)) +s($,"avC","ahJ",()=>A.a([A.a4(A.qe(A.a3()),"Tight"),A.a4(A.qe(A.a3()),"Max"),A.a4(A.qe(A.a3()),"IncludeLineSpacingMiddle"),A.a4(A.qe(A.a3()),"IncludeLineSpacingTop"),A.a4(A.qe(A.a3()),"IncludeLineSpacingBottom"),A.a4(A.qe(A.a3()),"Strut")],t.J)) +s($,"avD","ahK",()=>A.a([A.a4(A.aaI(A.a3()),"Tight"),A.a4(A.aaI(A.a3()),"Max")],t.J)) +s($,"avy","aa8",()=>A.a([A.a4(A.a7r(A.a3()),"Difference"),A.acW(A.a7r(A.a3()))],t.J)) +s($,"avz","NM",()=>A.a([A.a4(A.aaG(A.a3()),"Winding"),A.a4(A.aaG(A.a3()),"EvenOdd")],t.J)) +s($,"avx","ahH",()=>A.a([A.a4(A.ON(A.a3()),"Normal"),A.a4(A.ON(A.a3()),"Solid"),A.a4(A.ON(A.a3()),"Outer"),A.a4(A.ON(A.a3()),"Inner")],t.J)) +s($,"avE","ahL",()=>A.a([A.a4(A.a7s(A.a3()),"Butt"),A.a4(A.a7s(A.a3()),"Round"),A.a4(A.a7s(A.a3()),"Square")],t.J)) +s($,"avB","aa9",()=>A.a([A.a4(A.aaH(A.a3()),"Fill"),A.a4(A.aaH(A.a3()),"Stroke")],t.J)) +s($,"avw","a7a",()=>A.a([A.a4(A.bL(A.a3()),"Clear"),A.a4(A.bL(A.a3()),"Src"),A.a4(A.bL(A.a3()),"Dst"),A.a4(A.bL(A.a3()),"SrcOver"),A.a4(A.bL(A.a3()),"DstOver"),A.a4(A.bL(A.a3()),"SrcIn"),A.a4(A.bL(A.a3()),"DstIn"),A.a4(A.bL(A.a3()),"SrcOut"),A.a4(A.bL(A.a3()),"DstOut"),A.a4(A.bL(A.a3()),"SrcATop"),A.a4(A.bL(A.a3()),"DstATop"),A.a4(A.bL(A.a3()),"Xor"),A.a4(A.bL(A.a3()),"Plus"),A.a4(A.bL(A.a3()),"Modulate"),A.a4(A.bL(A.a3()),"Screen"),A.a4(A.bL(A.a3()),"Overlay"),A.a4(A.bL(A.a3()),"Darken"),A.a4(A.bL(A.a3()),"Lighten"),A.a4(A.bL(A.a3()),"ColorDodge"),A.a4(A.bL(A.a3()),"ColorBurn"),A.a4(A.bL(A.a3()),"HardLight"),A.a4(A.bL(A.a3()),"SoftLight"),A.a4(A.bL(A.a3()),"Difference"),A.a4(A.bL(A.a3()),"Exclusion"),A.a4(A.bL(A.a3()),"Multiply"),A.a4(A.bL(A.a3()),"Hue"),A.a4(A.bL(A.a3()),"Saturation"),A.a4(A.bL(A.a3()),"Color"),A.a4(A.bL(A.a3()),"Luminosity")],t.J)) +s($,"avF","ahM",()=>A.a([A.a4(A.a7t(A.a3()),"Miter"),A.a4(A.a7t(A.a3()),"Round"),A.a4(A.a7t(A.a3()),"Bevel")],t.J)) +s($,"avL","a7b",()=>A.a([A.a4(A.OP(A.a3()),"Clamp"),A.a4(A.OP(A.a3()),"Repeat"),A.a4(A.OP(A.a3()),"Mirror"),A.a4(A.OP(A.a3()),"Decal")],t.J)) +s($,"auX","ahl",()=>{var q=A.CF(2) +q[0]=0 +q[1]=1 +return q}) +s($,"avv","NL",()=>A.arM(4)) +s($,"avI","ahP",()=>A.a([A.a4(A.zj(A.a3()),"Solid"),A.a4(A.zj(A.a3()),"Double"),A.a4(A.zj(A.a3()),"Dotted"),A.a4(A.zj(A.a3()),"Dashed"),A.a4(A.zj(A.a3()),"Wavy")],t.J)) +s($,"avH","ahO",()=>A.a([A.a4(A.aaJ(A.a3()),"Alphabetic"),A.a4(A.aaJ(A.a3()),"Ideographic")],t.J)) +s($,"asx","ag9",()=>A.amq()) +r($,"asw","ag8",()=>$.ag9()) +r($,"avV","a7c",()=>self.window.FinalizationRegistry!=null) +r($,"at7","a70",()=>{var q=t.S,p=t.t +return new A.BL(A.akn(),A.y(q,A.a_("asS")),A.y(q,A.a_("au1")),A.y(q,A.a_("hF")),A.az(q),A.a([],p),A.a([],p),$.bC().ghw(),A.y(q,A.a_("br")))}) +s($,"aw_","mB",()=>{var q=A.a([A.F("Noto Sans","https://fonts.gstatic.com/s/notosans/v27/o-0IIpQlx3QUlC5A4PNb4j5Ba_2c7A.ttf","w|2m;4g|k7;oq|5;p0|6;p8|;pa|j;pv|1q;s0|8v;1s0|3j;59s|g;5mo|8;5ow|12;5q0|1;5q8|6x;5x7|7u;654|5;65c|11;66g|5;66o|7;66x|;66z|;671|;673|u;680|1g;69i|e;69y|d;6ae|5;6al|i;6b6|2;6ba|8;6bk|2s;6ee|b;6es|q;6fk|c;6g0|v;6i8|;6io|2n;6mc|;6mh|;6qa|;6qd|;7gs|;8rk|v;928|36;wu8|2n;wzk|5b;x4y|8;x6d|a;x80|9;xcw|v;xf2|;xtc|1n;1dkw|6;1e68|;1e74|f;1edb|;1ekc|1;")],t.Ao) +if(A.a69().gKs())q.push(A.F("Noto Color Emoji","https://fonts.gstatic.com/s/notocoloremoji/v24/Yq6P-KqIXTD0t4D9z1ESnKM3-HpFab5s79iz64w.ttf","w|;z|;16|;1c|9;4p|;4u|;6bx|;6d8|;6dl|;6hv|;6jm|;6k9|;6ms|5;6nd|1;6xm|1;6y0|;72n|;73d|a;73s|2;79e|;7fu|1;7g6|;7gg|;7i3|3;7i8|4;7im|;7ip|;7is|1;7iw|;7j1|;7j4|;7j6|1;7ja|;7je|;7ji|1;7js|2;7k0|;7k2|;7k8|b;7kv|1;7kz|;7l1|1;7l4|;7ln|;7lq|1;7ma|5;7mh|;7mj|1;7mo|1;7mv|;7my|1;7n4|1;7nh|1;7no|1;7ns|;7ny|1;7o1|;7o3|1;7op|1;7ow|5;7p3|3;7p9|;7pe|;7ph|;7pk|5;7pr|;7pu|;7pw|;7py|;7q5|;7q9|;7qg|;7qr|1;7r8|;7rb|;7rg|;7ri|;7rn|2;7rr|;7s3|1;7th|2;7tt|;7u8|;7un|;850|1;8hx|2;8ij|1;8k0|;8k5|;9io|;9j1|;9zr|;9zt|;2pz8|;2q4v|;2q9c|1;2q9q|1;2qa6|;2qa9|9;2qcm|p;2qdd|1;2qe2|;2qen|;2qeq|8;2qfk|1;2qkg|x;2qlg|33;2qom|1;2qop|2;2qou|2a;2qr7|2;2qrb|7a;2qyn|1q;2r0p|5;2r0w|n;2r1r|1;2r1v|7;2r2f|;2r2i|3;2r2o|;2r2t|1;2r38|1;2r3c|;2r3l|1;2r3w|;2r42|2;2r4h|2;2r4s|2;2r4x|;2r4z|;2r54|;2r5b|;2r5f|;2r5m|2d;2r9c|1x;2rbf|7;2rbp|2;2rbw|9;2rc9|;2rcb|1;2rcg|;2rcj|9;2rj4|b;2rjk|;2rrg|1a;2rss|9;2rt3|54;2s1c|c;2s1s|8;2s28|19;2s3j|6;2s3y|d;2s4g|8;2s4w|8;jnzk|9;jo0x|p;jo1r|;mbqd|9;mcdo|;mcdq|9;")) +if(!A.a69().gKs())q.push(A.F("Noto Emoji","https://fonts.gstatic.com/s/notoemoji/v34/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob-r0jwvS-FGJCMY.ttf","w|;z|;16|;1c|9;4p|;4u|;6bx|;6d8|;6dl|;6hv|;6jm|;6k9|;6ms|5;6nd|1;6xm|1;6y0|;72n|;73d|a;73s|2;79e|;7fu|1;7g6|;7gg|;7i3|3;7i8|4;7im|;7ip|;7is|1;7iw|;7j1|;7j4|;7j6|1;7ja|;7je|;7ji|1;7js|2;7k0|;7k2|;7k8|b;7kv|1;7kz|;7l1|1;7l4|;7ln|;7lq|1;7ma|5;7mh|;7mj|1;7mo|1;7mv|;7my|1;7n4|1;7nh|1;7no|1;7ns|;7ny|1;7o1|;7o3|1;7op|1;7ow|5;7p3|3;7p9|;7pe|;7ph|;7pk|5;7pr|;7pu|;7pw|;7py|;7q5|;7q9|;7qg|;7qr|1;7r8|;7rb|;7rg|;7ri|;7rn|2;7rr|;7s3|1;7th|2;7tt|;7u8|;7un|;850|1;8hx|2;8ij|1;8k0|;8k5|;9io|;9j1|;9zr|;9zt|;1e6m|1;2pz8|;2q4v|;2q9c|1;2q9q|1;2qa6|;2qa9|9;2qcm|p;2qdd|1;2qe2|;2qen|;2qeq|8;2qfk|1;2qkg|x;2qlg|33;2qom|1;2qop|2;2qou|2a;2qr7|2;2qrb|7a;2qyn|1q;2r0p|5;2r0w|n;2r1r|1;2r1v|7;2r2f|;2r2i|3;2r2o|;2r2t|1;2r38|1;2r3c|;2r3l|1;2r3w|;2r42|2;2r4h|2;2r4s|2;2r4x|;2r4z|;2r54|;2r5b|;2r5f|;2r5m|2d;2r9c|1x;2rbf|7;2rbp|2;2rbw|9;2rc9|;2rcb|1;2rcg|;2rcj|9;2rj4|b;2rjk|;2rrg|1a;2rss|9;2rt3|54;2s1c|c;2s1s|8;2s28|19;2s3j|6;2s3y|d;2s4g|8;2s4w|8;jnzk|9;jo0x|p;jo1r|;mbqd|9;mcdo|;mcdq|9;")) +q.push(A.F("Noto Sans Symbols","https://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ8gavVFRkzrbQ.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6hp|3;6hu|2;6jm|;6lc|z;6md|3;6mi|1;6mo|9;6qa|;6ww|f;6xd|4;6xj|;6xo|3;6xu|1;6y1|1;6y4|9;70c|;70g|k;712|4;71r|;726|f;72o|b;736|6;76o|4f;7gs|;7ii|3;7ir|;7j8|b;7js|3;7jx|m;7l5|l;7m8|d;7mq|7;7n1|f;7ny|;7oi|t;7q5|4;7sm|t;84h|1;2q68|c;2q6o|2k;2q9c|w;2qaj|h;2r0m|3;2r0v|;2r68|;2rcw|37;")) +q.push(A.F("Noto Sans Symbols 2","https://fonts.gstatic.com/s/notosanssymbols2/v17/I_uyMoGduATTei9eI8daxVHDyfisHr71ypPqfX71-AI.ttf","w|2n;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6hu|1;6jm|;6nj|;6p2|a;6pf|;6qa|;6qg|1;6u1|;6v8|2;6xi|;6xk|;6xm|1;6xw|4;6y3|;70b|;70d|2;710|;72m|1;73d|1;73h|2;73l|1h;75s|a;7fk|2x;7im|4;7is|f;7jk|7;7jw|;7kk|k;7lr|g;7mm|3;7my|2;7nh|g;7nz|i;7pc|4;7pi|3;7pn|h;7qa|5;7qh|y;7rh|;7rj|4;7rq|v;7tg|;7tk|n;7u9|d;7wg|73;875|;88v|;8a3|;8hs|d;8ia|t;8jx|12;8l2|v;8lz|2u;8ov|;fcw|1r;1ek9|2;1etc|26;1evk|c;1ew0|;1exc|19;1f4w|r;1heo|u;2k80|j;2k8w|2e;2kbk|o;2pz4|17;2q0g|2r;2q3k|e;2q41|e;2q4h|e;2q4x|10;2qkt|2;2ql1|;2ql8|;2qld|b;2qly|;2qns|;2qnx|;2qoj|c;2qp3|;2qp8|2;2qpu|;2qpw|;2qpy|;2qq2|4;2qqc|c;2qr1|;2qr5|2;2qr9|2;2qrs|;2qs5|;2qsf|;2qsm|;2qtb|;2qtd|1;2qti|3;2qto|2;2qtv|;2qui|;2qv1|;2qw3|;2qwg|;2qwj|;2qwp|;2qwr|;2qwv|;2qx4|3;2qxm|;2qxr|;2qxw|2;2qy2|3;2qyf|;2qyh|2;2qyl|1;2qyr|;2qyv|3;2qz1|;2qz6|1;2r0e|7;2r0q|;2r0w|15;2r23|p;2r2v|c;2r39|2d;2r80|1b;2r9j|;2r9p|;2r9t|;2r9w|;2ra0|;2ral|;2raq|;2rax|1;2rb0|;2rba|5;2rbh|2;2rbn|4;2rc0|a;2rcg|3;2rcn|5;2rgg|2g;2rj4|b;2rk0|b;2rkg|1j;2rm8|9;2rmo|13;2ro0|t;2row|1;2rsr|;2rt2|;2ry8|2b;2s0w|d;2s1c|4;2s1k|2;2s1s|6;2s28|o;2s34|6;2s3k|2;2s40|6;2s5c|42;2s9g|1i;2sc0|9;")) +q.push(A.F("Noto Sans Adlam","https://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufnv0TGnBZLwhuvk.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;17j|;18g|;60w|5;61q|;642|1;6c3|2;6c8|6;6cg|2;6cm|;6cw|;6d5|1;6dg|;6dr|;6gc|;6jm|;6qa|;7gs|;948|1;94x|;2olc|23;2onk|9;2ony|1;")) +q.push(A.F("Noto Sans Anatolian Hieroglyphs","https://fonts.gstatic.com/s/notosansanatolianhieroglyphs/v14/ijw9s4roRME5LLRxjsRb8A0gKPSWq4BbDmHHu6j2pEtUJzZWXybIymc5QYo.ttf","w|;4g|;6bv|;1s00|g6;")) +q.push(A.F("Noto Sans Arabic","https://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyGyvu3CBFQLaig.ttf","w|1;18|2;1c|a;4g|;4r|;57|;nj|;16o|s;17i|69;1g0|1b;1pc|k;1py|8;1qr|18;6bv|6;6dr|;7gs|;94x|;1dn4|35;1dqr|a4;1e1c|1r;1e36|1h;1e5s|d;1e9c|4;1e9i|3q;")) +q.push(A.F("Noto Sans Armenian","https://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxb60iYy6zF3Eg.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;10x|11;121|1d;13h|2;60w|5;61q|;642|1;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6ck|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;1dlf|4;")) +q.push(A.F("Noto Sans Avestan","https://fonts.gstatic.com/s/notosansavestan/v20/bWti7ejKfBziStx7lIzKOLQZKhIJkyu9SASLji8U.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6bw|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;94g|1;1gqo|1h;1gs9|6;")) +q.push(A.F("Noto Sans Balinese","https://fonts.gstatic.com/s/notosansbalinese/v23/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov7fdhE5Vd222PPY.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;5c0|23;5e8|18;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;")) +q.push(A.F("Noto Sans Bamum","https://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEddO-_gLykxEkxA.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;www|2f;1z40|fs;")) +q.push(A.F("Noto Sans Bassa Vah","https://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4MaAc6p34gH-GD7.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;1zo0|t;1zow|5;")) +q.push(A.F("Noto Sans Batak","https://fonts.gstatic.com/s/notosansbatak/v16/gok2H6TwAEdtF9N8-mdTCQvT-Zdgo4_PHuk74A.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;5hc|1f;5j0|3;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;")) +q.push(A.F("Noto Sans Bengali","https://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolLudCk8izI0lc.ttf","w|2m;4g|3;4l|;4n|4;4t|3;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jg|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1u9|1;1us|1;1vk|3;1vp|7;1vz|1;1w3|l;1wq|6;1wy|;1x2|3;1x8|8;1xj|1;1xn|3;1xz|;1y4|1;1y7|4;1ye|o;5ow|;5oy|;5p1|1;5p4|;5pd|;5pm|;5pp|;5pu|;5px|2;60w|5;61q|;642|1;6bv|2;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6gp|;6jm|;6qa|;7gs|;xdd|;")) +q.push(A.F("Noto Sans Bhaiksuki","https://fonts.gstatic.com/s/notosansbhaiksuki/v15/UcC63EosKniBH4iELXATsSBWdvUHXxhj8rLUdU4wh9U.ttf","w|;4g|;6bv|;7gs|;1k3k|8;1k3u|18;1k54|d;1k5s|s;")) +q.push(A.F("Noto Sans Brahmi","https://fonts.gstatic.com/s/notosansbrahmi/v15/vEFK2-VODB8RrNDvZSUmQQIIByV18tK1W77HtMo.ttf","w|;4g|;6bv|2;7gs|;1hq8|25;1hsi|t;1htr|;")) +q.push(A.F("Noto Sans Buginese","https://fonts.gstatic.com/s/notosansbuginese/v17/esDM30ldNv-KYGGJpKGk18phe_7Da6_gtfuEXLmNtw.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;54w|r;55q|1;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;xjj|;")) +q.push(A.F("Noto Sans Buhid","https://fonts.gstatic.com/s/notosansbuhid/v17/Dxxy8jiXMW75w3OmoDXVWJD7YwzAe6tgnaFoGA.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;4l1|1;4lc|j;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;")) +q.push(A.F("Noto Sans Canadian Aboriginal","https://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLn_yAsg0q0uhQ.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;3y8|hr;4vk|1x;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;1ju8|f;")) +q.push(A.F("Noto Sans Carian","https://fonts.gstatic.com/s/notosanscarian/v15/LDIpaoiONgYwA9Yc6f0gUILeMIOgs7ob9yGLmfI.ttf","w|;4g|;1f34|1c;")) +q.push(A.F("Noto Sans Caucasian Albanian","https://fonts.gstatic.com/s/notosanscaucasianalbanian/v16/nKKA-HM_FYFRJvXzVXaANsU0VzsAc46QGOkWytlTs-TXrYDmoVmRSZo.ttf","w|;4g|;lg|;mp|;7gs|;1e74|f;1flc|1f;1fn3|;")) +q.push(A.F("Noto Sans Chakma","https://fonts.gstatic.com/s/notosanschakma/v17/Y4GQYbJ8VTEp4t3MKJSMjg5OIzhi4JjTQhYBeYo.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1ye|9;37k|9;60w|5;61q|;642|1;6bw|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;1hxc|1g;1hyu|h;")) +q.push(A.F("Noto Sans Cham","https://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcERwcv7GykboaLg.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6bw|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;xkw|1i;xmo|d;xn4|9;xng|3;")) +q.push(A.F("Noto Sans Cherokee","https://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5PDkm5rAffjl0.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;mb|1;me|2;mo|1;3vk|2d;3y0|5;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;xv4|27;")) +q.push(A.F("Noto Sans Coptic","https://fonts.gstatic.com/s/notosanscoptic/v17/iJWfBWmUZi_OHPqn4wq6kgqumOEd78u_VG0xR4Y.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jd|;jq|1;jt|;k8|5;lc|8;lm|2;lt|1;mb|;me|2;n3|;ny|;o1|;ok|1;rm|d;16t|;5vx|;60w|5;61q|;642|1;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6dv|;6dy|;6e0|1;6gc|;6jm|;6qa|;7gs|;8sg|37;8vt|6;93r|;94j|1;1e78|2;1f4w|r;")) +q.push(A.F("Noto Sans Cuneiform","https://fonts.gstatic.com/s/notosanscuneiform/v15/bMrrmTWK7YY-MF22aHGGd7H8PhJtvBDWgb9JlRQueeQ.ttf","w|;4g|;1kw0|pl;1log|32;1lrk|4;1ls0|5f;")) +q.push(A.F("Noto Sans Cypriot","https://fonts.gstatic.com/s/notosanscypriot/v15/8AtzGta9PYqQDjyp79a6f8Cj-3a3cxIsK5MPpahF.ttf","w|;4g|;1g5c|5;1g5k|;1g5m|17;1g6v|1;1g70|;1g73|;")) +q.push(A.F("Noto Sans Deseret","https://fonts.gstatic.com/s/notosansdeseret/v15/MwQsbgPp1eKH6QsAVuFb9AZM6MMr2Vq9ZnJSZtQG.ttf","w|;4g|;1fcw|27;")) +q.push(A.F("Noto Sans Devanagari","https://fonts.gstatic.com/s/notosansdevanagari/v24/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlXQly-AzoFoW4Ow.ttf","w|2m;4g|3;4l|;4n|4;4t|3;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jg|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1s0|3j;5ow|12;5q0|1;60w|5;61q|;642|1;6bv|2;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6gp|;6i8|;6jm|;6qa|;7gs|;x80|9;xcw|v;")) +q.push(A.F("Noto Sans Duployan","https://fonts.gstatic.com/s/notosansduployan/v16/gokzH7nwAEdtF9N8-mdTDx_X9JM5wsvrFsIn6WYDvA.ttf","w|;4g|;6bw|1;7gs|;2fpc|2y;2fsg|c;2fsw|8;2ftc|9;2fto|7;")) +q.push(A.F("Noto Sans Egyptian Hieroglyphs","https://fonts.gstatic.com/s/notosansegyptianhieroglyphs/v26/vEF42-tODB8RrNDvZSUmRhcQHzx1s7y_F9-j3qSzEcbEYindSVK8xRg7iw.ttf","w|;4g|;6bw|1;7gs|;1o1s|tq;")) +q.push(A.F("Noto Sans Elbasan","https://fonts.gstatic.com/s/notosanselbasan/v15/-F6rfiZqLzI2JPCgQBnw400qp1trvHdlre4dFcFh.ttf","w|;4g|;53|;lh|;pd|g;pv|6;re|;rg|;ri|;7gs|;1fk0|13;")) +q.push(A.F("Noto Sans Elymaic","https://fonts.gstatic.com/s/notosanselymaic/v15/UqyKK9YTJW5liNMhTMqe9vUFP65ZD4AjWOT0zi2V.ttf","w|;4g|;1hpc|m;")) +q.push(A.F("Noto Sans Georgian","https://fonts.gstatic.com/s/notosansgeorgian/v41/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzFj-f5WK0OQV.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;13d|;3a8|11;3bb|;3bh|;3bk|1b;5n4|16;5od|2;60w|5;61q|;642|1;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6gu|;6jm|;6qa|;8w0|11;8x3|;8x9|;")) +q.push(A.F("Noto Sans Glagolitic","https://fonts.gstatic.com/s/notosansglagolitic/v15/1q2ZY4-BBFBst88SU_tOj4J-4yuNF_HI4ERK4Amu7nM1.ttf","w|;4g|;lf|;lh|;w4|;w7|;8ow|1a;8q8|1a;wvj|;2mtc|6;2mtk|g;2mu3|6;2mub|1;2mue|4;")) +q.push(A.F("Noto Sans Gothic","https://fonts.gstatic.com/s/notosansgothic/v15/TuGKUUVzXI5FBtUq5a8bj6wRbzxTFMX40kFQRx0.ttf","w|;4g|;lg|1;lk|;mp|;1f74|q;")) +q.push(A.F("Noto Sans Grantha","https://fonts.gstatic.com/s/notosansgrantha/v17/3y976akwcCjmsU8NDyrKo3IQfQ4o-r8cFeulHc6N.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1u9|1;1us|1;2ay|;2b9|;2cm|c;5ow|;5oy|1;5pu|2;5q0|1;60w|5;61q|;642|1;6bw|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6i8|;6jm|;6qa|;7gs|;1ibk|3;1ibp|7;1ibz|1;1ic3|l;1icq|6;1icy|1;1id1|4;1id7|9;1idj|1;1idn|2;1ids|;1idz|;1ie5|6;1iee|6;1ieo|4;")) +q.push(A.F("Noto Sans Gujarati","https://fonts.gstatic.com/s/notosansgujarati/v22/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ypFwPM_OdiEH0s.ttf","w|2m;4g|3;4l|;4n|4;4t|3;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1u9|1;1us|1;22p|2;22t|8;233|2;237|l;23u|6;242|1;245|4;24c|9;24n|2;24r|2;24w|;25c|3;25i|b;261|6;60w|5;61q|;642|1;6bv|2;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6gp|;6jm|;6qa|;7gs|;x80|9;")) +q.push(A.F("Noto Sans Gunjala Gondi","https://fonts.gstatic.com/s/notosansgunjalagondi/v15/bWto7e7KfBziStx7lIzKPrcSMwcEnCv6DW7n5hcVXYMTK4q1.ttf","w|1;11|;13|8;1m|;1o|3;4g|;5z|;6v|;6bw|1;6c8|1;6cc|1;6cm|;6qa|;7gs|;1kdc|5;1kdj|1;1kdm|10;1keo|1;1ker|5;1kf4|9;")) +q.push(A.F("Noto Sans Gurmukhi","https://fonts.gstatic.com/s/notosansgurmukhi/v25/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1OenbxZ_trdp7h.ttf","w|2m;4g|3;4l|;4n|4;4t|3;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1u9|1;1us|1;1z5|2;1z9|5;1zj|1;1zn|l;20a|6;20i|1;20l|1;20o|1;20s|;20u|4;213|1;217|2;21d|;21l|3;21q|;21y|g;60w|5;61q|;642|1;6bv|2;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6gp|;6jm|;6qa|;7gs|;7jg|;x80|9;")) +q.push(A.F("Noto Sans HK","https://fonts.gstatic.com/s/notosanshk/v21/nKKQ-GM_FYFRJvXzVXaAPe9hMnB3Eu7mOQ.otf","w|2m;4g|2r;7k|3;7u|1;88|3;8z|1;93|1;98|3;9e|1;a0|5;b6|;bk|1;bz|1;ct|f;e0|1;gh|;gx|;jf|;jr|;jt|2;k9|;kq|1;lc|1;lg|;lj|;lo|;pd|g;pv|6;q9|o;sh|;sw|1r;up|;5z2|1;61s|2h;6bm|1;6c0|6;6c8|2;6cc|2;6cg|2;6cl|2;6cw|;6cy|1;6d1|;6d5|3;6de|;6dj|2;6dt|;6es|;6g9|;6gb|1;6hp|1;6io|;6ir|;6it|;6ix|1;6j3|;6j7|;6ja|;6jl|1;6jq|1;6jv|;6jy|;6k5|;6kb|;6lc|b;6ls|b;6mo|9;6ns|1;6o4|2;6ob|1;6og|;6oi|;6ok|;6p2|3;6ph|;6ps|;6pu|1;6px|6;6q7|;6q9|2;6qd|;6qi|;6ql|3;6qr|;6qt|9;6r8|3;6rh|;6rn|;6rp|;6rs|;6rw|;6s2|;6sg|2;6sk|3;6sq|1;6su|1;6sy|1;6t2|1;6te|5;6tm|1;6tx|4;6u8|;6ud|;6v3|;6vu|1;6wf|;6x1|2;6xe|;6xk|;6y1|1;71s|1;726|e;72m|;72y|1;74z|;76o|97;7g1|2;7g6|1;7gc|1;7gg|1;7gm|6;7gu|5;7he|4;7hr|;7i8|3;7id|1;7ih|;7im|1;7iu|1;7j0|3;7jj|;7k0|2;7kw|f;7le|b;7mo|;7nh|1;7pe|;7pv|;7q2|;7r1|;7r3|1;7rq|;7sm|t;7tt|;850|1;88v|;8ai|1;8hx|2;8ii|;8lx|;94q|1;96o|p;97f|2g;9a8|5x;9gw|b;9hc|1r;9j5|2d;9ll|2u;9ol|16;9pt|1e;9r9|15;9sg|17;9ts|z;9v4|1a;9wg|7f;a3x|5u;ab9|;abk|;abu|;abw|;ack|;acz|;ad6|;ad9|1;adv|;ady|;aed|;aen|;af0|;af5|;afc|;afz|;ag4|;ag6|;agr|;ah2|;aim|;aj5|;aj7|;ajd|;ajl|;ajx|;ak0|;ak2|;ak7|1;akk|;al3|1;ald|;alh|;alp|;am7|;am9|;amd|;amf|;ami|;amm|;amq|;amu|;amz|;an1|;anl|2;anv|;any|;ao9|;aoo|;aoq|;aoz|;ap1|;ap9|;aph|;apl|;apq|;apz|2;aq6|;aqn|;aqp|;are|;arl|;asa|;asl|;asq|;ass|;asw|1;at1|;at5|;at8|;atd|;atf|2;atj|1;atv|1;aty|;au5|;au9|1;aud|1;aut|;av5|;av7|;avc|;ave|;avh|;avw|;aw2|1;aw5|;awc|1;awg|;awi|1;awq|;aww|;awz|;axu|;ay7|;azb|;azk|;b09|;b0e|;b12|;b1u|;b20|;b23|;b2n|;b2x|;b34|;b3h|;b3q|;b3s|;b4z|;b5h|;b6o|;b7n|;b7w|;b81|;b84|;b96|;b9k|;b9w|;baf|;baq|;bb3|;bbh|;bc3|;bco|;bcw|;bd5|1;bde|;bdl|;bdn|;bdt|;bdw|;beg|;bfg|;bfm|;bfp|;bfw|;bg8|;bgb|;bge|;bgh|;bgj|;bgm|;bh3|1;bhl|1;bhw|;bij|;biq|;biv|;bj0|;bj2|;bja|1;bkn|;bl7|;blp|;bmm|;bmo|;bn4|;bn6|;bn9|;bnf|;bny|;bo9|;boi|;bor|;bp5|;bpe|;bq0|;bq8|;bqp|1;bqz|1;br4|;brp|1;brt|;bs1|;bss|;bsu|;bsy|;bt0|;btj|;btp|;bu4|;bua|2;bv1|;bv5|;bv9|;bvc|;bx0|;byj|;c0b|;c0d|;c0h|;c0m|;c0s|;c17|;c1b|;c2a|1;c2l|;c36|;c3f|;c3q|;c3w|;c3y|;c41|;c4f|;c4i|;c4p|1;c4v|;c51|;c59|;c5h|;c5k|;c5m|;c5r|;c5t|;c6d|;c6l|;c6s|;c73|;c7a|1;c7d|;c7g|1;c7n|;c7v|;c87|1;c8b|;c8j|1;c8n|;c8s|1;c92|;cao|;car|;caw|;cb9|;cc4|;cdk|2;cdp|;cdt|;ce0|;ce7|;cea|;cef|;cei|;cek|;ceo|1;ceu|1;cey|1;cf2|;cf5|1;cfb|;cfd|;cff|1;cfk|;cfn|1;cfu|;cfw|;cfz|1;cg4|;cg6|1;cge|;cib|;cig|1;cir|;cjg|;ck3|;clc|;clk|;clz|;cm4|;cmd|;cml|;cmx|1;cn8|;cnd|;cnx|;cop|;cp1|;cpf|;cpj|;cpu|;cpx|;cq2|;cq7|;cq9|;crs|;cs4|;csb|;csf|;cso|;ct4|;ctb|;cu0|;cu2|;cua|2;cuh|;cum|;cvl|1;cx3|;cx8|;cxa|;cxo|;cxr|;cxt|;cy8|;cz6|;czo|;czu|;czz|;d0b|;d0t|;d0v|;d15|;d1t|;d2b|;d34|;d40|;d4a|;d4m|;d4q|;d58|;d5g|;d5u|;d6d|;d6h|;d6k|;d84|;d8b|1;d8q|;d9n|;dbi|;dcn|;dcq|;ddm|;ddt|;deh|;den|;df1|;df4|;df6|;dfl|1;dg3|;dgl|;dgt|;diy|;djj|;djl|;djz|1;dk2|;dkg|;dkn|;dkt|;dkw|;dkz|;dl1|;dla|;dlp|2;dlt|;dlw|;dm1|3;dmc|;dmr|1;dmx|;dmz|;dna|;dnf|;dnh|;dnr|;dny|;do3|;do6|;dob|;dod|;dof|;doj|;dox|1;dp1|;dp4|;dp8|;dpd|1;dpm|;dpp|;dpz|1;dqd|;dra|;drn|;dsq|;dt5|1;dtv|;dty|;du7|;dud|;duf|;dwb|;dx6|;dxc|;dy9|;dym|;dyz|;dzj|1;e0l|;e0n|;e1f|;e1k|;e2e|;e2s|;e32|1;e4c|;e54|;e5i|;e6t|;e7h|;e7o|;e80|;e8b|;e9j|;eal|;eb5|;ecb|;ect|1;eds|;ee5|;eel|;eer|;eey|;efa|;efl|;efy|;eg5|;ega|;egd|;egf|1;egl|;egs|;egu|;eh1|;ehd|;ehf|;ehx|;ei2|;eia|;eix|;ejl|;ejr|;elb|;elh|;elj|;emn|;en1|;en8|;enp|;eqe|;eqs|;er8|;erc|;es1|;esk|;etb|;ets|;eu1|;eu8|;euk|;euv|;ewf|1;ewi|;ewr|;ewu|;exa|;exc|;exf|;exi|1;exp|;eyl|1;eyo|;f0k|;f0n|;f0u|;f1u|;f23|;f26|;f28|;f2f|;f2v|;f2z|;f3h|;f3r|;f3v|;f3x|;f41|;f45|;f50|;f5a|;f5c|;f5j|;f65|;f6p|1;f71|;f7r|;f7t|;f80|;f90|;fau|1;fbd|;fbl|;fbw|;feo|1;fer|1;fev|a;ff8|2;ffc|2;ffg|;ffi|1;ffl|1;ffo|;ffq|;ffs|;ffu|9;fg6|3;fgb|2;fgf|;fgi|1;fgl|;fgn|2;fgr|;fgt|2;fgy|1;fh2|;fh4|7;fhl|1;fhv|;fi0|;fi6|b;fij|3;fip|4;fiw|3;fj2|8;fjc|;fjf|3;fjn|;fjq|1;fjt|3;fjz|5;fk6|5;fkd|1;fkk|6;fks|3;fkx|;fkz|2;fl4|3;fla|;flc|8;fln|;flp|;flr|6;fm0|3;fm5|8;fmf|3;fml|;fmq|;fmw|1;fn0|1;fn3|1;fn6|2;fna|9;fnl|2;fnp|4;fnv|p;fon|;fop|3;fou|2;foy|p;fpp|;fpr|3;fpw|4;fq2|4;fqa|;fqg|;fqj|;fqm|2;fqq|5;fqx|2;fr1|;fr3|6;frb|a;frn|1;frq|b;fs4|1;fsc|;fse|c;fst|1;fsw|;fsz|;ft1|4;ft7|4;ftd|b;ftq|5;ftx|c;fub|2;fuf|;fuj|1;fuo|1;fur|;fut|a;fv5|;fv7|;fv9|3;fve|c;fvs|8;fw2|5;fwa|;fwd|;fwg|3;fwl|;fwn|1;fwr|3;fww|2;fx0|2;fx4|6;fxe|1;fxi|;fxo|c;fy2|5;fy9|1;fyc|7;fyl|4;fyr|4;fyx|2;fz1|;fz3|2;fz7|7;fzg|5;fzn|3;fzs|1;fzv|j;g0g|5;g0n|1;g0q|;g0s|;g0v|3;g10|2;g15|2;g19|1;g1c|5;g1j|6;g1r|2;g1v|6;g23|2;g29|1;g2c|3;g2h|a;g2t|;g2v|7;g35|;g38|5;g3g|;g3k|;g3m|;g3q|4;g3x|;g3z|;g41|7;g4a|;g4c|;g4e|;g4g|;g4i|;g4k|1;g4n|1;g4q|2;g4u|;g4w|9;g58|2;g5f|h;g5z|1;g63|7;g6c|;g6l|;g6o|1;g6r|3;g6w|2;g70|2;g74|3;g79|7;g7i|;g7k|3;g7q|1;g7w|5;g84|6;g8e|;g8g|8;g8q|2;g8x|;g8z|1;g92|1;g95|6;g9e|;g9g|3;g9l|9;ga0|7;gaa|3;gaf|6;gan|5;gav|6;gb3|2;gb7|1;gba|5;gbj|2;gbn|1;gbq|;gbs|6;gc5|;gc9|;gcb|1;gce|;gcg|3;gcl|;gcn|;gcp|;gcs|1;gcw|3;gd1|4;gd7|;gd9|7;gdi|;gdl|;gdn|;gdr|2;gdv|2;gdz|5;ge6|1;ge9|;ged|1;geg|3;gel|5;get|2;gex|1;gf0|1;gf3|5;gfb|;gfe|;gfg|1;gfj|5;gfr|2;gfv|a;gg7|3;ggc|2;ggh|3;ggn|;ggq|;ggs|5;ggz|1;gh2|1;gh5|;gh8|9;ghj|2;ghn|4;ghu|;ghw|;gi2|;gi6|1;gia|2;gie|4;gik|4;giq|;gis|a;gj4|;gj6|;gj8|;gja|;gjd|;gjf|;gjl|2;gjp|;gjs|5;gk0|2;gk4|;gk6|5;gkf|7;gko|b;gl1|3;gl7|1;gla|;gld|;glf|1;gli|e;gly|;gm0|9;gmb|m;gmz|8;gn9|3;gne|5;gno|;go0|d;gof|9;goq|8;gp0|4;gp7|d;gpm|;gpo|;gpq|;gps|k;gqe|j;gqz|5;gra|;gre|;gri|;grk|b;grx|2;gs1|2;gs7|1;gsa|3;gsf|;gsh|j;gt3|1;gt6|;gta|;gtf|;gth|3;gtm|f;gu3|1;gu6|3;gub|8;gul|6;gut|2;gv0|3;gv5|5;gvd|2;gvl|2;gvp|2;gvt|;gvv|9;gw6|f;gwo|2;gws|1;gwv|;gwx|d;gxc|5;gxl|3;gxr|w;gyp|9;gz0|;gz2|4;gz9|2;gzd|9;gzo|2;gzs|1;gzw|b;h0b|8;h0l|;h0n|;h0p|1;h0s|4;h0y|9;h19|6;h1h|1;h1k|2;h1o|4;h1u|2;h1z|3;h25|1;h28|6;h2g|c;h2u|6;h32|9;h3d|7;h3m|1;h3p|;h3r|3;h3w|3;h41|;h44|4;h4a|5;h4h|6;h4p|;h4s|7;h51|1;h54|5;h5d|;h5f|1;h5i|1;h5m|1;h5p|5;h5w|1;h5z|;h62|1;h65|4;h6f|;h6h|2;h6l|;h6n|5;h6v|6;h76|4;h7c|;h7e|6;h7m|1;h7s|2;h7w|4;h82|2;h8b|;h8d|6;h8l|2;h8p|9;h90|;h93|;h97|;h9b|;h9d|1;h9g|;h9i|5;h9p|;h9r|8;ha2|6;haa|1;hag|;hai|3;han|1;har|2;hav|e;hbb|;hbe|;hbi|;hbn|3;hbs|7;hc1|3;hc6|2;hcb|1;hce|2;hci|;hck|1;hcn|;hcs|b;hd5|;hd8|i;hds|e;he8|;hea|;hec|;heg|1;hej|3;heo|a;hf0|f;hfh|;hfj|1;hfo|;hfr|8;hg1|4;hg7|8;hgi|3;hgo|1;hgr|2;hgv|;hgx|5;hh5|a;hhh|6;hhq|6;hhy|;hi0|2;hi4|5;hib|;hid|7;him|3;hir|;hit|1;hiy|5;hj5|1;hj9|4;hjf|;hji|8;hjs|8;hk2|2;hk7|2;hkb|1;hkf|1;hki|2;hkp|6;hky|5;hl6|;hl8|3;hld|1;hlg|3;hll|1;hlo|1;hlr|1;hlu|;hlw|1;hlz|;hm1|6;hm9|1;hmc|;hmf|1;hmk|;hmm|;hmo|;hms|1;hmv|3;hn2|3;hn7|2;hnb|1;hne|;hng|;hnk|2;hnp|;hnr|;hnt|5;ho0|9;hob|a;hop|1;hot|3;hoy|2;hp2|4;hp9|b;hpo|;hpq|j;hqb|h;hqu|;hqw|6;hr4|1;hr7|3;hrc|r;hs9|4;hsf|;hsh|2;hsl|7;hsu|3;hsz|2;ht3|;ht5|5;htf|;hth|4;hto|2;hts|a;hu4|1;hu8|u;hv4|1;hvb|8;hvl|3;hvq|;hvs|;hvu|2;hvy|9;hw9|9;hwk|3;hwp|3;hwu|m;hxi|9;hxt|;hxv|;hxx|h;hyg|6;hyo|;hyq|9;hz1|2;hz5|2;hz9|;hzb|2;hzf|2;hzj|2;hzn|4;hzt|2;hzx|4;i03|5;i0a|6;i0i|;i0k|;i0o|;i0s|5;i0z|5;i16|7;i1f|5;i1m|3;i1r|;i1u|4;i20|1;i23|3;i28|8;i2i|3;i2n|6;i2v|2;i2z|1;i32|2;i36|1;i39|a;i3m|6;i3u|;i3w|2;i40|;i43|6;i4f|8;i4q|4;i4w|9;i57|;i5a|e;i5q|5;i5x|1;i60|;i62|;i67|;i69|;i6b|2;i6f|f;i6y|;i70|;i72|2;i76|3;i7c|;i7e|;i7g|;i7k|1;i7n|;i7r|5;i7y|3;i84|d;i8j|3;i8o|1;i8s|2;i8w|;i8y|3;i93|3;i98|3;i9d|;i9f|1;i9k|4;i9q|;i9v|;i9x|1;ia0|5;ia7|6;iah|1;iak|l;ib7|;ib9|3;ibe|;ibl|1;ibq|6;iby|d;ice|1;icl|;ico|2;ics|5;id0|5;id7|2;idb|2;idi|1;idn|7;idw|7;ie5|3;iea|7;iek|;iem|c;if0|7;if9|7;ifi|;ifk|2;ifp|2;ift|;ifv|;ify|;ig2|1;ig5|;ig7|2;igb|1;igf|3;igk|;ign|b;ih0|7;ih9|1;ihe|3;ihj|;ihl|1;iho|6;ihw|;ihz|b;iic|6;iik|1;iio|3;iiu|1;iix|;iiz|;ij1|;ij3|;ij5|1;ij8|4;ijf|;ijh|5;ijp|3;ijv|;ijy|;ik0|5;ik7|;ik9|;ikd|2;iki|2;ikm|;ikp|3;iku|;ikx|1;il0|7;il9|;ilb|6;ilk|1;iln|;ilp|1;ilv|1;ily|2;im5|1;im8|5;img|;imi|5;imr|2;imv|2;imz|8;ina|a;inm|4;ins|8;io2|2;io6|7;iof|;ioi|;iol|2;iop|3;iow|;ioy|6;ip6|4;ipc|9;ipp|1;ipt|1;ipw|a;iq8|j;iqt|4;ir0|;ir2|1;ir5|3;ira|6;iri|1;irl|1;iro|1;irr|1;iru|5;is2|3;is7|1;isa|1;isd|;isf|;isi|7;ist|1;isw|1;isz|;it1|3;it6|2;itc|;itf|3;itk|9;itw|;ity|3;iu4|2;iu9|4;iuf|;iuh|4;iun|5;iuu|3;iuz|8;iv9|7;ivk|2;ivq|3;ivv|1;ivy|3;iw4|b;iwh|1;iwl|2;iwp|c;ix5|;ix8|1;ixb|3;ixg|5;ixn|;ixp|4;ixv|2;iy0|;iy2|1;iy5|2;iy9|;iyb|2;iyf|1;iyi|1;iyl|;iyn|1;iyx|e;izd|5;izk|f;j01|4;j07|;j09|;j0b|;j0g|7;j0p|4;j0w|;j0y|3;j14|3;j19|2;j1e|e;j1u|;j1x|;j1z|;j26|3;j2b|7;j2k|2;j2o|;j2q|;j2s|3;j2y|6;j36|2;j3a|2;j3k|h;j43|c;j4h|;j4j|2;j4n|d;j52|3;j5c|h;j5v|d;j6a|4;j6g|5;j6n|1;j6q|1;j6v|2;j6z|1;j72|2;j76|;j78|;j7a|1;j7f|;j7h|5;j7o|c;j82|4;j88|g;j8q|2;j8u|9;j95|1;j98|2;j9c|3;j9j|;j9l|5;j9s|6;ja0|5;ja7|;ja9|1;jac|;jaf|j;jb0|;jb2|5;jb9|8;jbj|1;jbn|;jbq|;jbs|;jbu|;jby|2;jc2|9;jcd|1;jcg|2;jcl|c;jcz|1;jd3|3;jd8|2;jdc|2;jdg|2;jdl|2;jdr|6;jdz|;je1|5;je8|;jea|2;jee|1;jeh|1;jel|6;jeu|8;jf4|4;jfc|4;jfi|;jfk|6;jfs|;jfx|7;jg6|1;jg9|h;jgs|;jgu|a;jh9|;jhg|;jhi|;jhk|9;jhv|3;ji0|1;ji3|4;ji9|r;jj3|;jj9|;jjf|o;jk7|2;jkb|6;jkj|3;jko|;jl4|7;jld|d;jls|h;jmc|6;jml|;jms|1;jmv|2;jmz|7;jn9|8;jnj|6;jnr|b;jo4|;jo6|3;job|a;jon|a;jp5|;jp9|1;jpc|j;jpx|m;jql|9;jqw|1;jqz|1;jr2|;jra|1;jrd|7;jrm|6;jru|2;jry|a;jsa|6;jsi|9;jst|4;jsz|;jt7|;jt9|1;jtc|4;jtk|9;jtx|4;ju3|i;jun|;juq|;jut|;juv|6;jv3|4;jv9|5;jvg|4;jvm|4;jvt|;jvv|9;jw6|;jwb|a;jwn|;jwp|2;jwt|3;jwy|2;jx2|5;jx9|;jxc|d;jxr|5;jxz|1;jy2|7;jyb|1;jye|1;jyh|1;jyk|5;jyr|6;jyz|b;jzd|7;jzm|7;jzv|;jzx|2;k01|;k03|;k05|1;k08|2;k0d|;k0f|;k0h|;k0j|7;k0s|3;k0y|6;k16|3;k1b|;k1e|a;k1r|a;k23|1;k28|2;k2c|3;k2h|;k2j|7;k2s|1;k2v|1;k2y|2;k32|2;k36|1;k39|4;k3f|4;k3l|5;k3v|9;k46|1;k4a|1;k4d|6;k4l|1;k4o|1;k4s|9;k56|3;k5b|1;k5e|j;k60|;k64|c;k6j|;k6l|9;k6x|1;k75|4;k7b|6;k7j|;k7l|2;k7r|;k7t|f;k8a|2;k8e|6;k8m|8;k8w|;k90|a;k9c|2;k9g|6;k9p|;k9r|3;k9w|;ka0|3;ka5|e;kal|3;kas|;kau|9;kb6|;kba|;kbc|6;kbk|;kbn|1;kbq|3;kbv|3;kc0|4;kc6|3;kcc|;kce|7;kco|8;kcy|7;kd7|;kd9|6;kdh|3;kdm|4;kdt|;kdv|3;ke0|7;kec|5;kej|6;ker|;ket|2;kex|1;kf0|6;kfb|;kfe|l;kg1|6;kg9|;kgb|a;kgn|3;kgs|1;kgv|1;kh0|;kh8|;kha|d;khr|7;ki0|c;kie|9;kiq|5;kix|h;kjg|;kji|6;kjx|;kk0|;kk2|2;kk6|2;kka|8;kkl|1;kko|3;kkt|2;kkx|d;klc|h;klv|3;km5|;kmd|;kmj|;kml|2;kmp|1;kms|5;kmz|h;knj|5;knq|2;knv|2;knz|5;ko6|g;kop|;kot|;kox|;koz|b;kpc|8;kpm|;kpo|5;kpv|1;kpy|6;kq6|f;kqo|l;krb|4;krp|;kru|;krw|;krz|1;ks2|7;ksb|b;kso|4;ksu|1;ksx|16;ku8|;kua|1;kud|1;kui|;kul|1;kuo|1;kur|9;kv2|p;kvt|;kvv|9;kw6|;kw9|8;kwj|3;kwp|;kwx|1;kx0|5;kx7|3;kxd|3;kxi|n;ky7|;ky9|;kyb|e;kyr|;kyt|4;kyz|2;kz6|3;kzc|9;kzn|6;kzv|g;l0d|e;l0t|;l0v|;l0x|;l10|;l12|;l16|;l1a|7;l1j|;l1l|1;l1o|b;l21|f;l2j|4;l2p|a;l31|1;l36|1;l39|8;l3j|2;l3n|1;l3s|9;l45|;l47|1;l4a|2;l4e|3;l4j|;l4m|;l4o|4;l4w|;l4y|3;l54|3;l5b|4;l5i|4;l5p|1;l5s|1;l5v|;l5x|;l60|;l64|1;l67|;l69|e;l6p|2;l6t|9;l74|2;l78|3;l7d|;l7f|1;l7i|9;l7u|;l7x|;l7z|;l82|;l84|;l86|5;l8e|6;l8m|;l8o|2;l8s|3;l8x|;l90|5;l97|;l9a|2;l9e|5;l9m|1;l9p|3;l9u|1;l9x|2;la2|;la4|1;la7|2;lab|a;lan|1;laq|2;lau|2;lay|2;lb2|;lb4|4;lba|2;lbe|2;lbj|1;lbm|1;lbr|f;lc8|1;lcb|2;lcf|2;lcj|3;lco|5;lcv|2;lcz|5;ld6|2;lda|d;ldp|6;ldy|;le1|7;lea|;lec|1;lef|a;let|6;lf1|9;lfc|3;lfh|j;lg2|4;lg8|5;lgf|;lgi|;lgq|a;lh2|h;lhl|e;li1|a;lid|;lif|c;lit|;lix|;lj3|j;ljq|5;ljx|3;lk2|;lk4|u;lla|;llj|5;llq|c;lm4|6;lmc|10;lne|;lno|1;lnu|2;lny|1;lo1|4;lo7|9;loi|;lok|9;lov|n;lpk|f;lq1|5;lq8|;lqa|3;lqi|;lqn|;lqt|;lqw|5;lr3|n;lrs|9;ls3|4;ls9|2;lsd|s;lt7|;lta|1;ltd|3;lti|3;lto|;lty|;lu0|1;lu3|;lu5|3;lua|2;lue|h;luy|1;lv2|14;lw8|5;lwi|;lwo|1;lwr|4;lwx|1;lx0|r;lxu|8;ly4|;ly6|9;lyh|o;lz7|1;lzi|a;lzu|a;m06|1;m09|7;m0i|2;m0m|c;m10|a;m1c|;m1e|5;m1p|p;m2g|c;m2u|9;m37|2;m3c|c;m3q|3;m3v|7;m44|;m46|2;m4a|2;m4e|3;m4j|4;m4p|6;m4x|;m50|g;m5i|6;m5r|6;m5z|5;m66|8;m6g|5;m6o|2;m6s|4;m6y|i;m7i|3;m7o|6;m7w|3;m81|5;m89|2;m8e|1;m8h|5;m8o|2;m8v|2;m8z|4;m95|;m97|6;m9f|2;m9j|7;m9s|;m9w|4;ma2|g;mak|6;mas|;mb3|2;mb7|d;mbm|;mbo|2;mbt|5;mc0|;mc3|;mc7|;mc9|a;mcl|1;mco|1;mcr|1;mcu|8;md6|1;mda|;mdc|7;mdl|b;mdy|4;me4|g;mem|;meo|8;mey|4;mf4|2;mf8|6;mfg|;mfi|4;mfo|;mfq|f;mg7|3;mgc|1;mgf|6;mgn|3;mgs|f;mha|4;mhg|2;mhk|5;mhr|3;mhw|4;mi3|3;mi8|2;mic|2;mig|1;mij|8;mit|2;mix|1;mj0|4;mj7|4;mjd|2;mjh|2;mjm|c;mk0|;mk5|1;mk8|3;mkd|5;mkk|;mkm|6;mkv|1;mky|1;ml1|e;mli|1;mll|1;mlo|;mlq|2;mlu|2;mly|3;mm3|7;mmc|5;mmj|d;mmy|1;mn1|2;mn5|9;mng|4;mnm|;mno|1;mnu|;mnx|;mnz|7;mo9|5;mog|2;mok|;mom|4;mos|;mov|5;mp2|;mp4|3;mpf|1;mpi|c;mpw|;mpz|1;mq2|2;mq7|4;mqe|3;mqj|3;mqq|1;mqt|9;mr4|c;mri|7;mrs|2;mrw|6;ms7|4;msd|5;msl|7;msu|a;mt6|i;mtq|1;mtu|6;mu4|6;muc|9;muq|a;mv2|2;mv6|e;mvm|c;mw0|b;mwd|2;mwj|q;mxd|1;mxg|3;mxl|d;my0|i;myk|;myn|o;mzd|c;mzr|f;n09|1;n0c|7;n0l|8;n0w|;n0y|;n10|1;n13|a;n1f|8;n1p|;n1r|3;n1w|7;n25|6;n2d|1;n2g|;n2i|2;n2n|1;n2r|m;n3g|;n3i|;n3k|2;n3o|4;n3v|;n3x|3;n42|3;n47|1;n4b|f;n4s|3;n4x|1;n51|1;n54|d;n5j|4;n5p|3;n5u|;n5y|2;n62|5;n69|;n6b|2;n6h|4;n6n|1;n6q|5;n6y|6;n76|;n7a|4;n7h|3;n7n|1;n7q|1;n7u|8;n84|1;n88|2;n8d|1;n8i|3;n8n|;n8q|1;n8w|6;n94|d;n9j|1;n9m|8;n9w|1;n9z|d;nae|1;nal|;nan|k;nbb|6;nbj|2;nbn|3;nbt|g;ncc|1;ncf|6;nco|;ncq|3;ncw|;ncy|1;nd2|3;nd8|8;ndi|4;ndo|;ndr|3;ndw|3;ne1|1;ne4|a;neg|7;nep|1;nes|;neu|5;nf2|2;nf6|1;nf9|1;nfd|5;nfl|;nfo|2;nfu|1;nfx|3;ng4|1;ng7|1;nga|1;ngd|2;ngi|4;ngo|2;ngs|2;ngy|2;nh2|;nh5|6;nhd|;nhf|4;nhl|1;nho|9;nhz|5;ni6|;ni9|;nib|2;nif|5;nim|5;nit|;nix|2;nj1|3;nj6|7;njf|;njh|;njj|;njl|d;nk0|;nk3|4;nka|5;nki|;nkk|2;nko|4;nku|5;nl1|a;nle|;nlj|e;nlz|2;nm3|4;nm9|;nmb|;nmd|;nmf|c;nmt|;nmv|1;nmy|3;nn3|8;nnd|6;nnm|3;nnr|;nnt|7;no3|2;no7|7;nog|;noi|1;nol|4;nos|8;np3|7;npe|1;nph|1;npk|1;npo|8;nq0|;nq4|7;nqd|g;nqv|2;nr0|1;nr6|3;nrb|7;nrk|4;nrw|2;ns0|;ns2|;ns4|2;ns8|9;nsp|3;nsu|3;nsz|6;nt8|3;ntd|;ntf|7;ntq|7;ntz|6;nu7|5;nue|;nug|4;num|;nup|;nur|2;nuv|e;nvb|1;nve|1;nvh|8;nvr|3;nvw|9;nw7|;nw9|6;nwh|1;nwk|2;nwp|;nws|;nwu|;nww|4;nx3|;nx5|;nx7|3;nxd|;nxf|c;nxt|5;ny0|a;nyc|8;nyn|m;nzb|4;nzh|;nzk|4;nzt|1;nzw|7;o06|2;o0a|1;o0d|g;o0v|3;o10|a;o1c|4;o1i|5;o1p|4;o1w|2;o20|a;o2c|2;o2g|;o2k|4;o2q|2;o2u|1;o2x|5;o35|;o38|;o3a|2;o3e|1;o3k|;o3m|4;o3s|;o3u|4;o40|5;o47|5;o4e|2;o4i|;o4m|;o4o|;o4q|8;o53|;o55|7;o5f|b;o5w|;o5y|2;o62|2;o67|3;o6d|;o6f|2;o6j|3;o6o|2;o6s|2;o6w|3;o71|4;o77|9;o7j|a;o7y|2;o82|1;o88|4;o8e|a;o8q|2;o8u|7;o93|4;o9b|;o9d|;o9f|;o9k|5;o9r|1;o9u|5;oa1|2;oa5|2;oae|1;oah|8;oas|2;oaw|4;ob2|6;obc|3;obh|3;obm|j;oc8|1;ocb|;ocg|;oci|g;od0|2;od4|;odc|7;odl|;odo|c;oe3|;oea|;oec|1;oef|1;oei|8;oes|9;of4|4;ofg|3;ofl|1;ofo|1;ofr|2;ofy|;og0|1;og4|3;og9|3;oge|2;ogk|1;ogo|k;ohc|4;ohj|c;ohx|2;oi1|9;oid|;oih|;oij|8;oit|8;oj4|;oj7|;oj9|;ojb|2;ojf|5;ojm|3;ojr|3;ojw|1;ok0|1;ok3|1;ok6|1;ok9|4;okf|1;okj|4;okp|7;oky|3;ol4|9;olf|3;olk|2;olo|2;olt|1;olw|4;om4|;om6|1;om9|2;omd|3;omk|;omm|1;omp|4;omw|7;on6|1;on9|;onb|7;onk|7;ont|1;onw|4;oo2|;oo6|2;ooa|;ooc|d;oor|3;oow|y;opx|;oq0|1;oq3|1;oq6|5;oqd|1;oqg|f;oqy|;or1|9;orc|;ore|5;orl|2;orq|5;orx|6;os9|4;osf|2;osj|3;oso|1;osr|4;osx|6;ot8|8;oti|f;otz|b;ouc|3;ouh|7;ouq|2;ouv|a;ov7|7;ovg|;ovi|9;ovt|5;ow3|;ow7|g;owq|b;ox3|;ox5|2;ox9|s;oy4|;oy8|c;oym|5;oyt|;oyv|9;oz6|g;ozq|2;ozu|5;p01|b;p0f|;p0k|;p0s|;p16|;p1j|;p1r|;p27|;p3a|;p4m|4;p4t|4;p4z|2;p53|e;p5k|;p5n|6;p5v|;p5x|9;p68|3;p6d|a;p6r|;p6t|a;p75|6;p7e|4;p7k|9;p7w|n;p8l|;p8n|;p8p|9;p90|1;p93|;p97|8;p9h|g;p9z|h;paj|7;pas|5;paz|6;pb8|2;pbc|2;pbg|;pbi|3;pbn|4;pbt|;pbv|4;pc3|;pc6|2;pca|;pcf|3;pck|;pcm|;pco|;pcq|4;pcx|3;pd2|1;pd8|;pdb|4;pdh|4;pdp|3;pdu|;pdw|3;pe1|3;pe7|1;pea|1;ped|1;peg|5;pen|;pep|2;pet|;pev|;pex|2;pf1|2;pf5|1;pf8|4;pfe|;pfg|1;pfm|8;pfw|5;pg4|a;pgg|1;pgj|3;pgp|;pgs|1;pgv|7;ph4|6;phc|3;phh|5;pho|;phq|;phu|;phw|7;pi5|2;pi9|4;pif|;pih|4;pin|3;pis|;piv|;pix|1;pj1|1;pj6|2;pja|2;pje|c;pjt|3;pjy|;pk0|2;pk4|3;pk9|;pkb|9;pkm|4;pks|1;pkv|1;pky|2;pl2|7;plb|;plf|;plh|;plj|9;plu|1;plx|7;pm6|;pm8|7;pmh|h;pn0|1;pn3|3;pn9|;pnb|4;pnh|d;pnw|3;po2|2;po6|6;poe|4;pok|1;pon|6;pow|2;pp0|2;pp4|;pp6|8;pph|1;ppk|5;ppr|;ppu|8;pq4|4;pqa|;pqc|1;pqf|;pqh|;pqj|;pqm|e;pr2|1;pr5|5;prc|1;prf|4;prl|1;pro|c;ps3|2;ps7|;psa|1;psd|7;pso|3;pst|k;ptf|d;ptu|2;pu2|;pu7|a;puj|1;pum|a;puy|v;pvv|2;pw6|8;pwg|;pwi|;pwk|9;pwv|;pwx|c;pxb|6;pxj|d;pxy|1;pya|1;pye|;pyn|;pyr|5;pyy|5;pz5|;pz7|;pz9|p;q00|;q02|a;q0e|2;q0p|;q0t|i;q1d|;q1f|6;q1n|a;q1z|f;q2g|7;q2p|;q2r|4;q2x|b;q3a|;q3c|;q3f|1;q3k|1;q3n|1;q3q|;q3t|;q3v|l;q4i|c;q4w|p;q5n|f;q65|3;q6a|;q6c|;q6e|;q6g|;q6l|7;q6u|e;q7b|b;q7o|;q7q|;q7s|a;q84|3;q89|b;q8m|1;q8q|1;q8u|;q8x|1;q90|1;q93|5;q9a|6;q9i|a;q9u|o;qak|5;qar|e;qb7|1;qbc|;qbf|;qbh|1;qbk|e;qc1|a;qcd|k;qcz|;qd1|7;qda|;qdc|h;qdv|h;qee|4;qen|2;qer|7;qf1|c;qff|;qfh|5;qfp|5;qfw|a;qg8|a;qgk|;qgm|c;qh0|3;qh5|4;qhb|2;qhf|1;qhi|6;qhq|c;qi4|3;qi9|5;qig|4;qim|2;qiq|1;qit|3;qiz|3;qj4|;qj6|4;qjd|;qjf|1;qji|1;qjl|4;qjr|d;qk7|;qk9|3;qke|;qkl|2;qkq|4;qkw|a;ql8|2;qlc|5;qlj|3;qlp|;qlr|q;qmj|1;qmo|1;qmr|1;qmu|9;qn6|2;qna|;qnc|5;qnj|;qnp|6;qny|;qo0|e;qoh|2;qol|;qoo|4;qou|;qow|a;qp8|2;qpc|5;qpj|1;qpm|2;qpq|5;qpy|;qq4|11;qr7|8;qrh|;qrl|8;qrv|2;qrz|5;qs6|2;qsa|5;qsi|3;qsp|t;qtk|4;qtq|;qtt|3;qty|i;qui|5;quq|5;qux|3;qv2|8;qvc|5;qvj|2;qvn|6;qvv|2;qvz|k;qwl|4;qwr|b;qx4|;qx6|5;qxe|1;qxh|2;qxl|2;qxp|1;qxs|5;qxz|4;qy5|5;qyc|3;qyh|;qyk|8;qyv|2;qyz|8;qz9|d;qzo|;qzr|1;qzu|2;qzy|;r01|1;r04|6;r0c|6;r0l|;r0n|;r0p|7;r0y|;r10|b;r1d|;r1i|2;r1n|1;r1q|k;r2d|2;r2h|3;r2m|;r2o|a;r32|1;r35|6;r3d|a;r3p|3;r3v|3;r41|3;r46|1;r49|;r4b|2;r4f|5;r4m|g;r55|6;r5d|3;r5i|1;r5l|3;r5q|5;r5x|6;r67|;r69|;r6b|5;r6j|4;r6p|6;r6x|1;r70|3;r76|;r7a|1;r7d|1;r7g|5;r7q|;r82|4;r89|4;r8f|a;r8r|2;r8w|4;r92|2;r96|2;r9a|2;r9e|2;r9j|1;r9m|;r9o|;r9q|5;r9x|3;ra3|4;raa|1;rad|;raf|;rah|4;rao|1;ras|;rau|;raw|9;rb8|2;rbc|2;rbg|6;rbo|5;rbv|;rby|;rc0|3;rc6|3;rcb|3;rcg|7;rcp|3;rcu|1;rcx|6;rd7|2;rdb|7;rdk|2;rdo|;rdq|;rds|1;rdv|9;re7|1;rea|;rec|;ree|;reg|8;req|7;rez|2;rf3|;rf5|h;rfo|;rfq|2;rfu|1;rfx|f;rge|4;rgk|4;rgq|m;rhe|6;rhm|7;rhv|;rhx|2;ri1|a;rid|l;rj0|4;rj6|1;rj9|8;rjj|1;rjo|;rjr|4;rjx|9;rk8|;rka|2;rke|2;rki|4;rko|4;rku|2;rlq|;rmq|;rp3|;rp5|;rp7|4;rpd|2;rph|c;rpw|3;rq2|;rq4|1;rq7|;rq9|1;rqc|2;rqg|5;rqn|4;rqt|6;rr1|;rr4|2;rr8|2;rrd|1;rrg|1;rrj|6;rrr|e;rs7|6;rsf|1;rsi|j;rt3|1;rt6|;rt8|1;rtb|;rtd|6;rtl|l;ru8|5;ruf|7;ruo|;ruq|b;rv3|a;rvf|2;rxg|;rxi|3;rxn|5;rxu|2;rxy|5;ry5|;ry8|2;ryc|1;ryh|1;ryk|a;ryx|;ryz|1;rz3|2;rz7|;rz9|a;rzm|5;rzt|1;rzw|;rzy|5;s05|3;s0b|6;s0j|a;s0v|5;s12|6;s1a|6;s1m|;s1o|b;s21|1;s25|u;s31|1;s34|1;s37|3;s3c|2;s3g|6;s3o|c;s43|4;s49|h;s4s|1;s4v|;s4x|7;s56|2;s5a|;s5c|2;s5g|a;s5s|8;s62|;s65|4;s6b|a;s6o|;s6q|;s6u|;s6x|1;s70|1;s74|;s76|1;s7d|6;s7l|3;s7r|1;s7u|8;s84|5;s8b|4;s8h|1;s8k|8;s8u|5;s91|6;s99|1;s9c|g;s9v|3;sa1|1;sa4|4;saa|7;saj|1;sam|d;sb1|n;sbq|1;sby|;scz|;sd7|1;sdb|1;sdf|;sdh|3;sdp|f;se6|1;se9|1;sec|2;seh|e;sey|;sf4|6;sfc|;sfe|1;sfh|1;sfk|;sfo|i;sg8|;sgb|2;sgf|3;sgk|3;sgp|b;sh9|2;shd|7;sho|3;sht|1;shw|;shy|1;si1|d;sig|1;sij|3;sio|4;siv|2;siz|5;sj6|m;sju|1;sjx|;sjz|2;sk4|1;sk7|2;skb|;ske|5;skl|3;skq|;sku|8;sl4|;sl7|;sl9|2;sld|;slf|2;slj|1;slm|1;slq|;slw|9;sm7|6;smg|5;smn|6;smx|g;snf|;snh|5;sno|;snq|e;so6|g;soo|3;sou|3;soz|g;sph|5;spo|;spq|7;spz|3;sq4|;sq6|2;sqa|8;sqk|;sqo|7;sqx|a;sra|;srd|a;srp|;srr|g;ss9|5;ssg|7;ssp|;ssr|6;ssz|7;st8|1;stb|;ste|c;stt|;stv|7;su5|d;suk|e;sv0|;sv2|;sv5|;sv7|5;sve|1;svh|1;svk|a;svw|5;sw4|2;sw8|g;swq|1;swt|a;sx7|5;sxe|;sxi|p;sy9|;syb|a;syo|c;sz2|;sz5|6;szd|3;szi|n;t07|2;t0b|;t0d|4;t0j|h;t12|e;t1i|3;t1n|5;t1u|4;t20|3;t25|k;t2r|3;t2w|1;t30|;t34|i;t3o|8;t3y|g;t4g|1;t4j|b;t4w|a;t58|6;t5g|m;t64|9;t6f|1;t6j|;t6l|;t6n|1;t6q|2;t6u|2;t6y|q;t7q|2;t7w|;t7y|;t80|1;t83|e;t8j|1;t8m|j;t97|;t99|;t9c|;t9g|f;t9x|b;taa|b;tan|3;tas|1;tav|1;taz|;tb1|1;tb4|;tb6|3;tbb|i;tbv|8;tc5|;tcv|;tcy|;tdt|;tdv|;tek|;tfa|;tgt|;thj|;tiv|1;tiy|3;tj3|1;tj6|1;tj9|1;tjc|1;tjf|9;tjq|3;tjv|1;tjy|g;tkg|2;tkl|2;tkp|7;tkz|;tl1|8;tlc|6;tlm|2;tlq|7;tm0|;tmc|;tng|2;tnk|4;tns|;tnu|;tnw|7;to8|5;tof|6;toq|7;toz|1;tp2|;tp4|;tp7|4;tpd|3;tpl|4;tpr|9;tq3|3;tq8|1;tqb|8;tql|2;tqp|8;tqz|1;tr2|;tr5|4;trb|3;trg|;tri|;trk|1;trn|1;trq|;trs|1;trv|2;trz|f;tsi|d;tsx|2;tt1|;tt4|2;ttb|3;ttg|7;ttp|;ttr|1;ttu|7;tu3|;tu5|6;tue|;tug|1;tuj|h;tv2|4;tv8|2;tvc|2;tvh|7;tvq|5;tw1|1;tw5|3;twa|8;twm|;two|2;tws|2;tww|4;tx2|2;tx6|b;txj|4;txp|2;txw|;txz|f;tyg|;tyi|4;typ|3;tyu|5;tz1|c;tzf|5;tzm|7;tzw|5;u03|;u05|1;u0d|1;u0g|3;u0l|1;u0o|3;u0t|b;u16|;u18|c;u1n|6;u1v|1;u1y|3;u23|;u25|3;u2a|3;u2f|2;u2j|;u2p|;u2r|g;u3a|3;u3f|5;u3m|a;u3z|6;u5k|1;u5o|3;u5t|3;u5y|e;u6e|6;u6m|;u6z|1;u72|5;u79|2;u7d|4;u7j|;u7l|1;u7o|2;u7t|1;u7w|2;u80|;u82|1;u85|;u87|3;u8c|;u8e|;u8g|c;u8u|1;u8x|;u90|1;u93|c;u9h|;u9j|c;u9x|;u9z|7;ua8|9;uaj|4;uap|2;uc6|3;ucb|3;uch|;ucj|5;ucq|b;ud4|5;udd|4;udj|;udl|;udn|i;ue7|8;ueh|1;uek|2;ueo|1;ues|b;uf5|6;ufd|8;ufo|2;uft|e;ug9|9;ugk|i;uh4|2;uh8|4;uhe|a;uhq|2;uhu|a;uj3|;ujs|;ujv|;ujx|;ujz|5;uk6|c;ukm|1;ukq|;ukt|;ukv|9;ul8|;ulb|4;uli|1;uln|4;ult|3;uly|1;um1|6;um9|5;umg|a;ums|6;un2|2;un6|3;unb|4;unh|2;unl|4;unr|;unt|3;uny|8;uo8|;uoa|8;uok|2;uoo|3;uov|2;up0|;up2|3;up8|;upb|2;upg|3;upm|9;upx|3;uq3|;uq5|6;uqd|;uqf|;uqi|1;uql|5;uqs|2;uqw|;uqy|1;ur1|3;ur9|1;urc|1;urh|;urj|2;urn|1;urq|4;urz|;us3|4;us9|5;usg|2;usk|9;usw|1;ut0|;ut3|1;ut9|;utb|;ute|;uth|9;uts|;utu|3;utz|;uu3|2;uu7|2;uub|3;uug|1;uuj|2;uun|;uup|6;uux|8;uv8|c;uvm|7;uvx|3;uw2|1;uw6|2;uwd|1;uwh|4;uwn|5;uzp|2;uzt|1;uzx|;v01|6;v09|4;v0f|1;v0i|7;v0s|;v0w|;v0y|;v10|5;v17|;v19|6;v1h|1;v1k|1;v1p|4;v1v|1;v1y|3;v23|;v25|8;v2h|3;v2m|6;v2u|b;v3b|e;v3r|2;v3v|h;v4g|;v4i|2;v4m|n;v5b|;v5d|k;v5z|o;v6p|5;v6w|1;v6z|5;v76|l;v7t|c;v87|8;vat|;vax|4;vb3|f;vbk|i;vc4|d;vck|3;vcr|9;vd2|2;vd8|5;vdf|3;vdk|;vdm|6;vdu|;vdw|4;ve3|;ve5|l;veu|4;vf2|2;vf6|1;vf9|7;vfi|;vfk|;vfm|n;vgb|;vgd|1;vgg|g;vgy|l;vhl|3;vhq|4;vhw|7;vi6|1;vil|1;vio|2;vis|5;vj0|;vj3|1;vj6|;vj8|f;vk7|4;vkg|;1d6o|8;1d6z|2;1d79|;1d7b|;1d7e|;1d7m|;1d7x|;1d84|;1d87|;1d8a|;1d8j|;1d8n|1;1d8q|;1d8y|;1d9a|;1d9e|;1d9h|;1d9j|;1d9p|;1d9u|;1d9y|;1da0|1;1da3|;1da6|;1da8|;1dae|;1dai|;1dam|;1dat|;1db0|1;1db3|;1dbp|;1dbv|;1dbx|1;1dc5|1;1dc8|;1dcg|;1dco|1;1dcs|2;1dcw|;1dcy|2;1dd3|;1dd5|;1ddg|1;1ddm|;1ddp|;1ddr|;1ddu|;1ddx|3;1de2|;1de4|1;1df7|2;1dfe|;1dft|;1dfv|;1dgd|1;1dkw|4;1e6o|9;1e7k|y;1e8k|i;1e94|3;1edd|4e;1eht|t;1eiq|5;1eiy|5;1ej6|5;1eje|2;1ejk|6;1ejs|6;2q68|c;2q6o|2k;2q9c|1o;2qdc|2;2qds|17;2qf4|8;2qfk|1;2t5t|;2t6m|;2t6u|;2t72|;2t7s|;2t8m|1;2t8q|;2t90|;2tai|3;2tap|;2tbi|;2tcc|;2tce|;2tco|;2tgk|;2tgp|;2tgr|;2thd|;2thw|;2tiq|;2tj8|;2tjg|;2tjo|;2tkp|;2tln|;2tmc|1;2tnd|;2tni|;2tnk|;2to7|;2tof|1;2tph|;2tqi|;2tr9|;2ts1|;2ts5|2;2ttq|2;2tuo|;2tuv|;2tv9|;2tvt|;2tvv|;2tx1|;2tx8|;2txv|1;2ty7|;2u05|;2u13|;2u1a|;2u1d|1;2u1v|;2u3b|;2u4c|;2u4e|;2u6f|;2u8e|;2u91|;2u9f|;2u9v|;2ua2|;2ua8|;2uad|;2uan|1;2uaz|;2uc1|;2uc5|;2uc9|1;2uco|;2ucw|;2udy|;2ueu|;2uj2|;2uk1|;2um1|;2ur0|;2usz|;2uvp|;2uxi|;2uxv|;2uz8|;2v09|;2v3b|;2v4h|;2v68|;2v73|;2v7u|;2v90|;2v9e|;2v9p|;2vbh|;2vf3|;2vfj|;2vfs|1;2vgf|;2vgm|;2vgr|;2vhe|;2vhn|;2vi3|;2vi7|;2vij|;2vil|;2vj4|;2vjo|;2vju|1;2vk1|2;2vkj|;2vl1|;2vlj|1;2vlo|;2vm5|;2vme|;2vmk|;2vn9|;2vnc|;2vnz|;2vo3|3;2vod|;2vot|;2vpb|;2vpx|;2vqg|;2vqp|1;2vra|3;2vrg|2;2vsf|;2vsh|;2vsk|;2vss|;2vsu|1;2vti|;2vto|;2vtz|;2vua|;2vuw|;2vwk|;2vwp|1;2vwt|4;2vx2|;2vx9|;2vyk|;2vzh|;2vzn|;2vzp|6;2w0c|;2w0m|;2w0o|;2w0t|;2w0y|;2w16|2;2w1i|;2w2f|1;2w2l|;2w3c|3;2w4d|;2w4m|;2w4t|1;2w4w|1;2w57|;2w5o|;2w6c|;2w7h|;2w7k|;2w8d|;2w8k|2;2w8s|;2w9r|;2wa2|3;2wb8|;2wbh|1;2wcv|;2wd8|;2wdr|;2wdx|3;2we3|;2weg|;2weu|;2wf1|;2wfo|;2wfz|2;2wg7|2;2wgf|;2wgj|;2wh0|;2whg|2;2wj3|;2wjf|;2wjh|;2wjp|;2wjs|;2wjz|;2wlc|;2wlj|;2wnt|;2wqk|;2wr3|;2wsc|;2wtk|1;2wts|;2wv7|;2wvy|;2ww2|3;2wxi|;2wxm|;2wz9|1;2wzy|;2x08|;2x0c|;2x1h|1;2x2l|;2x32|;2x3n|;2x3q|;2x44|;2x4v|;2x5e|;2x5g|1;2x6y|;2x7b|;2x86|;2x9k|;2xa5|;2xdj|;2xdu|;2xee|;2xhm|;2xhv|;2xi1|;2xj2|;2xk1|;2xle|;2xmg|;2xmi|;2xmo|2;2xn7|;2xn9|;2xnj|;2xnq|2;2xoa|2;2xoe|;2xot|;2xow|;2xpi|;2xq2|2;2xqv|;2xrg|5;2xrn|1;2xt7|;2xtc|5;2xtv|;2xtz|;2xuh|3;2xun|;2xv3|;2xv9|1;2xvc|4;2xwg|;2xwo|2;2xwt|;2xx5|2;2xxc|;2xxh|;2xxu|;2xy6|;2xy9|3;2xyv|;2xyz|;2xz7|2;2xzy|4;2y0u|1;2y1d|;2y1i|3;2y2i|;2y2r|2;2y34|2;2y39|;2y3g|;2y3m|;2y3r|;2y4b|;2y4k|;2y54|;2y5m|;2y64|;2y68|;2y6b|;2y6g|;2y6u|;2y8r|;2y9f|;2yb1|;2yb8|;2ybp|;2ybv|;2ycj|;2yis|;2ym9|1;2yp6|;2yr4|;2ysi|;2ysl|;2yss|;2yx2|;2yxf|;2yxq|;2yz4|;2z06|;2z0a|;2z0q|;2z0x|;2z1n|;2z21|;2z30|;2z37|;2z3r|;2z3x|;2z61|;2z6s|;2z6w|;2z7s|;2z85|;2z9r|;2z9x|;2zca|;2zdq|;2zdt|;2zfs|;2zid|;2zih|;2zjy|;2zkq|;2zlz|;2zng|;2zoq|;2zq3|;2zqr|;2zqy|;2zs1|;2zsx|;2zsz|;2zuw|;2zy4|;302p|;302t|;3071|;307k|;307r|;308q|;30bp|;30c1|;30cr|;30cx|;30ds|;30e4|;30e9|;30eh|;30ek|;30fh|;30gj|;30gr|;30hc|;30ic|;30jx|;30kv|;30la|;30nv|1;30ob|;30q0|;30qi|;30ra|;30rc|;30tw|2;30uq|;30us|;30uz|;30v3|;30ve|;30xh|;30xt|;30ye|;30z8|1;30zx|;311f|;313z|1;314h|;3165|;316p|;3187|;319i|;31a1|;31an|;31bb|;31bf|;31c0|;31cj|;31ie|;31lb|;31lh|;31ly|;31m0|;31n2|;31nm|;31of|;31oj|;31pm|;31sa|;31se|;31uu|1;31vc|;31vw|;31w1|;31w5|;31wi|;31xk|;31y3|;31y9|;31yh|;31yq|;31yv|;31z6|;31za|;31zd|;3213|1;321e|;322s|;3230|;323r|;324t|;3251|;325c|;325f|1;325z|;327i|;328d|;329i|;329u|;32bc|;32bv|;32cz|;32en|;32ic|;32ks|;32lf|;32nn|;32o4|;32ob|;32p2|;32pp|1;32q6|;32rb|;32rg|;32sa|;32tf|;32v1|;32wt|;32wy|;32xw|1;32yb|;32yw|1;32zu|;3307|2;330v|;331h|;331r|;331t|3;332u|;3332|;3336|;3341|;3349|1;3357|2;336a|;336o|1;337k|;337u|;338f|;33ck|;33d8|;33dq|;33dy|;33ec|1;33eh|1;33em|;33eo|;33gf|;33gw|;33hr|;33hu|;33l1|;33mh|;33n4|;33o1|;33oa|;33on|;33px|;33q1|;33q4|;33qz|;33rh|2;33sj|;33sw|;33tj|;33tm|;33uk|;33uo|;33vd|;33vj|;33w7|;33wu|;33xa|;33xi|;33xp|;33y2|;33z3|;33zi|;3403|;340m|;340w|;3419|;341b|;341r|;342u|;343l|;344i|;3458|;345e|;345x|2;348q|;34jm|;34pz|;34rf|;34ry|;34sa|;34t6|;34uy|;352b|;353t|2;354l|;354n|;3553|2;356k|3;358g|;3597|;35a6|;35an|;35bq|7;35cz|;35dk|;35dy|;35e9|;35f0|5;35fd|;35hk|3;35ix|;35j3|;35jr|;35kn|5;35md|;35mp|;35my|;35nl|;35of|3;35ov|;35pw|;35pz|;35q8|;35qd|;35rf|5;35sh|;35tl|4;35uf|;35vp|;35vv|2;35w1|;35xl|;35y9|;35yk|;35z8|;35zj|;35zt|;360v|1;3610|;361a|;361h|2;361o|;361r|;361t|;362f|;362i|;363n|2;363w|;3645|;364t|;365e|;3664|;366z|;368b|;368m|;368p|;369i|2;369w|;36ab|;36ad|;36at|;36bj|;36bl|;36bt|1;36cu|;36d6|;36dp|;36e2|;36es|;36fc|;36g2|3;36h8|;36hi|;36ho|;36il|;36ip|;36jt|1;36k2|;36k8|;36kk|;36lx|1;36my|1;36nn|;36o7|1;36pl|;36po|;36q6|;36qb|;36qe|;36rp|;36sh|;36uw|;36x4|;36zc|;36zu|;371h|;371w|;372v|;374k|;375y|;376t|;3773|;379r|;37c0|;37de|;37dv|;37gi|;37jd|;37jk|3;37jv|;37jz|2;37kc|;37km|1;37kp|;37lb|;37lf|1;37lq|5;37mq|1;37n8|2;37nf|;37nj|;37nm|;37ns|7;37o4|;37ok|;37on|;37op|;37or|2;37p3|4;37ph|;37ps|;37q2|;37q6|1;37qb|;37qd|;37qk|1;37qu|3;37qz|;37ri|;37rm|1;37rp|;37s1|9;37su|;37sy|;37t1|;37t6|;37ta|3;37tp|;37tx|2;37u9|;37uf|3;37v0|;37v7|3;37vo|3;37w1|2;37wa|2;37wg|;37wn|;37wq|;37wx|;37xb|;37xe|;37xl|;37yn|;381a|;3851|;385l|;389q|1;38ax|;38bd|;38cm|;38cz|;38hk|;38iy|1;38l7|;38ls|;38o5|;38o7|;38r2|;38t8|;38ua|;38ue|;38uv|;38uy|;38vd|;38vs|;38w2|;38z0|;3902|;3925|;3963|;396w|;398d|1;39al|;39b7|;39ba|1;39cw|1;39e8|;39g9|;39hj|;39i0|;39ji|;39jl|;39jn|;39qx|;39r9|;39rj|1;39s6|;39t8|;39ta|;39ui|;39yp|;39yt|;39z3|;39zv|3;3a02|;3a05|1;3a0x|;3a10|;3a1b|;3a2h|;3a39|;3a3f|;3a3k|;3a4l|;3a5x|;3a6p|;3a83|;3a8l|;3aar|;3aba|;3abq|;3acd|;3acl|;3ad9|;3aeq|;3ah3|;3ahr|2;3al3|;3al9|;3alu|;3ao8|;3aou|;3aox|;3apv|;3arq|;3as6|;3auk|;3avg|;3az8|;3b11|;3b18|;3b1q|1;3b2v|;3b3d|;3b78|;3b7t|;3b8z|1;3b9i|;3bac|;3bag|;3bb5|;3bba|;3bc1|;3bd6|;3bdx|;3bf5|;3bfo|;3bgg|1;3bi6|;3bj4|;3bjk|;3bk3|;3bmh|;3bnd|;3bpq|;3brd|;3bsx|2;3bty|;3buk|;3bvb|1;3bx6|;3byj|;3c2p|1;3c4h|;3c4p|;3c5k|;3c6c|;3c77|;3c7r|;3c84|1;3caq|;3cbl|;3cd5|3;3cfh|1;3cfm|;3cgt|;3ck8|;3ckh|;3ckq|1;3cnk|;3cqd|;3cqz|1;3cr5|;3cu6|;3cvp|;3cvs|;3cw2|;3cwg|2;3cy2|;3cyx|;3czo|;3czs|1;3czx|;3d08|;3d3m|;3d6a|;3d7k|;3d7x|;3d8f|;3daq|;3dba|;3df3|;3df5|;3df9|;3dga|;3dgo|;3dh8|;3dhy|;3dj5|;3dll|;3dmb|1;3dn0|;3dp8|;3dqe|;3dr2|;3dri|;3ds8|;3dsa|;3dsj|;3dtz|;3dvy|;3dw1|;3dwm|;3dx5|;3dxt|;3e08|;3e0l|;3e2a|;3e2i|;3e3x|1;3e44|;3e4i|;3e4x|1;3e9x|;3ea2|;3eab|;3ead|;3ear|;3eaw|;3ec0|3;3ecb|;3ed1|;3ede|;3edy|1;3ee5|;3eer|;3ef4|;3egn|;3eht|;3eio|1;3eiu|;3eke|4;3elg|;3elz|1;3em5|;3em8|;3emb|;3emp|;3eoy|8;3eq9|;3er8|;3esg|7;3esu|;3eu4|;3eui|1;3euo|;3ev4|;3ev9|;3evb|;3evm|;3ewy|3;3ey6|;3eya|;3eyf|;3eys|;3eyw|;3eyz|;3ezd|;3f0w|7;3f3a|;3f5f|1;3f6n|;3f6p|;3f7i|;3f8e|1;3f9q|;3fbf|;3fbm|1;3fd4|;3fe5|2;3ff1|;3ff6|;3fg0|;3fg8|;3fgp|;3fgs|1;3fhi|1;3fj8|1;3fjp|;3fm5|;3fob|;3fqf|;3fr4|;3fr9|;3frf|;3fsi|;3fsm|;3fty|;3fwy|;3fyy|;3g1r|;3g2q|;3g40|;3g5g|;3g5i|;3gc4|;3gdf|;3gf4|;3gf8|;3gfx|1;3gg7|;3ggc|;3ghe|;3ghl|;3gid|2;3gk4|;3gnj|;3gol|1;3gox|;3gpq|;3gqs|1;3gss|;3gwo|;3gxc|;3gyl|;3gz6|;3gzs|;3h2c|;3h47|;3h4q|;3h5s|;3h7h|;3h8d|;3h8q|;3h8u|;3ha6|;3har|;3hax|;3hbt|;3hc4|;3hdp|1;3hf8|;3hfq|;3hfv|;3hg8|;3hh4|2;3hhk|;3hid|;3hm7|;3hmc|;3hn6|;3hpo|;3hrl|;3hs5|;3hv3|;3hw3|1;3hwm|;3hwz|;3hxg|;3hxr|;3hy0|;3hz1|;3hzw|;3i31|;3i33|;3i9a|;3id3|;3iex|;3if6|;3ifd|;3ify|;3ig3|1;3ih4|;3iir|;3ij4|;3ikd|1;3ilk|1;3ilw|;3ini|;3iof|;3iot|;3ipb|;3iq1|;3ir3|;3irg|;3itj|;3iu0|;3iu2|;3ivq|;3iws|;3ixn|;3iz1|;3izm|;3j0m|;3j14|;3j1r|;3j22|;3j39|;3j3h|;3j3x|;3j4a|;3j82|;3jag|;3jak|;3jar|;3jb6|;3jep|;3jgc|1;3jho|;3jl4|;3jlg|;3jls|;3jm3|;3jmt|;3jnf|;3jqi|1;3jqq|;3jr0|;3jrs|;3js6|;3jtb|;3jtf|;3k04|;3k17|;3k7h|;3k8j|;3k94|1;3k9i|;3k9w|;3ka0|;3ka4|1;3kam|;3kax|;3kbs|;3kbu|1;3kc8|;3kcc|;3kcg|;3kd8|;3kda|;3kdd|;3kdf|1;3kdj|1;3ke1|3;3ken|;3keu|;3kf9|;3kfd|;3kfm|;3kfq|;3kg4|7;3kgp|1;3kht|2;3kii|2;3kjk|;3kjq|;3kjv|1;3kjy|;3kke|5;3kkl|;3kkq|;3kl8|;3klo|;3klv|;3km9|1;3kmj|2;3kmn|;3kna|;3kng|;3kni|;3knk|;3ko3|3;3koc|;3kpb|;3kpl|;3kpo|1;3kqh|;3kqq|;3kqt|;3kr8|;3krb|;3krd|1;3krr|5;3ks5|;3ksf|;3ksj|;3ksp|;3kt8|1;3ktf|;3kti|;3ktn|;3kts|;3ku1|;3ku3|;3ky2|;3ky5|;3kya|;3l10|;3l3t|;3l4p|;3l73|;3l86|;3l89|;3l9h|1;3lav|;3lbg|;3lbm|1;3lcp|;3ld3|;3lj9|;3lo9|;3loo|;3lor|;3loz|;3lpr|2;3lq8|;3lr8|1;3lrg|1;3lsd|;3lsg|;3lto|;3lu5|;3luj|;3lum|;3lv4|;3lwc|;3lwo|;3lxx|;3lyj|;3me5|;3me8|;3mer|;3mf3|;3mfc|;3mj4|;3mjd|1;3mjp|;3mjr|;3mou|;3mpc|;3mpk|;3mqf|;3mqx|;3mr8|;3mv3|;3mzk|;3n02|;3n4k|;3n68|;3n87|;3nac|;3nbl|;3nca|;3nch|;3ncq|;3ncz|;3nd1|;3ne7|;3net|;3nev|2;3nfh|;3nfu|;3nh9|;3nib|;3nih|;3nl4|;3nm5|;3nr9|;3nri|;3nx1|;3o1f|;3o31|;3o72|;3o7u|;3o8s|;3o9k|;3o9n|;3oc6|;3ocm|;3odp|;3ofc|;3oh8|;3ohc|;3ohv|;3ojc|;3okj|;3okw|;3oon|;3opq|;3or8|;3ouf|;3ovt|;3owx|;3ox9|;3oxf|;3oxk|;3oxq|;3oxz|;3oyr|;3oz7|1;3p00|;3p1u|1;3p2j|;3p2s|1;3p3z|;3p4l|;3p5s|;3p6b|;3p8z|;3p9b|;3p9u|;3p9w|;3p9y|;3pa2|;3pa5|;3pb3|;3pbz|;3pe9|;3pgp|;3pil|;3pkk|;3pln|;3pvq|;3pvv|;3pxd|;3pyq|;3pze|;3pzv|;3q21|;3ri7|;3z9g|;465h|;4663|;4668|;467s|;468k|;4692|;46a5|;46aj|;46fo|;46gi|;46gs|;46hg|;4an2|;4ay4|;")) +q.push(A.F("Noto Sans Hanunoo","https://fonts.gstatic.com/s/notosanshanunoo/v17/f0Xs0fCv8dxkDWlZSoXOj6CphMloFsEsEpgL_ix2.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;4kg|m;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;")) +q.push(A.F("Noto Sans Hatran","https://fonts.gstatic.com/s/notosanshatran/v15/A2BBn4Ne0RgnVF3Lnko-0sOBIfL_mM83r1nwzDs.ttf","w|;4g|;6bw|;1gbk|i;1gc4|1;1gcb|4;")) +q.push(A.F("Noto Sans Hebrew","https://fonts.gstatic.com/s/notosanshebrew/v42/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4qtoiJltutR2g.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;nj|;13l|1i;15c|q;168|4;60w|5;61q|;642|1;6bw|4;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6ga|;6gc|;6jm|;6qa|;7gs|;1dlp|p;1dmg|4;1dmm|;1dmo|1;1dmr|1;1dmu|9;")) +q.push(A.F("Noto Sans Imperial Aramaic","https://fonts.gstatic.com/s/notosansimperialaramaic/v15/a8IMNpjwKmHXpgXbMIsbTc_kvks91LlLetBr5itQrtdml3YfPNno.ttf","w|;4g|;1g74|l;1g7r|8;")) +q.push(A.F("Noto Sans Indic Siyaq Numbers","https://fonts.gstatic.com/s/notosansindicsiyaqnumbers/v15/6xK5dTJFKcWIu4bpRBjRZRpsIYHabOeZ8UZLubTzpXNHKx2WPOpVd5Iu.ttf","w|;4g|;17r|;19c|9;1dc|9;2p9t|1v;")) +q.push(A.F("Noto Sans Inscriptional Pahlavi","https://fonts.gstatic.com/s/notosansinscriptionalpahlavi/v15/ll8UK3GaVDuxR-TEqFPIbsR79Xxz9WEKbwsjpz7VklYlC7FCVtqVOAYK0QA.ttf","w|;4g|;1gtc|i;1gu0|7;")) +q.push(A.F("Noto Sans Inscriptional Parthian","https://fonts.gstatic.com/s/notosansinscriptionalparthian/v15/k3k7o-IMPvpLmixcA63oYi-yStDkgXuXncL7dzfW3P4TAJ2yklBJ2jNkLlLr.ttf","w|;4g|;1gsg|l;1gt4|7;")) +q.push(A.F("Noto Sans JP","https://fonts.gstatic.com/s/notosansjp/v42/-F62fjtqLzI2JPCgQBnw7HFowAIO2lZ9hg.otf","w|2m;4g|2r;7k|3;7u|1;88|3;8z|1;93|1;98|3;9e|1;a0|5;b6|;bk|1;bz|1;ct|f;e0|1;gh|;gx|;jf|;jr|;jt|2;k9|;kq|1;lc|1;lg|;lj|;lo|;pd|g;pv|6;q9|o;sh|;sw|1r;up|;5z2|1;61s|2h;6bm|1;6c0|6;6c8|2;6cc|2;6cg|2;6cl|2;6cw|;6cy|1;6d1|;6d5|3;6de|;6dj|2;6dt|;6es|;6g9|;6gb|1;6hp|1;6io|;6ir|;6it|;6ix|1;6j3|;6j7|;6ja|;6jl|1;6jq|1;6jv|;6jy|;6k5|;6kb|;6lc|b;6ls|b;6mo|9;6ns|1;6o4|2;6ob|1;6og|;6oi|;6ok|;6p2|3;6ph|;6ps|;6pu|1;6px|6;6q7|;6q9|2;6qd|;6qi|;6ql|3;6qr|;6qt|9;6r8|3;6rh|;6rn|;6rp|;6rs|;6rw|;6s2|;6sg|2;6sk|3;6sq|1;6su|1;6sy|1;6t2|1;6te|5;6tm|1;6tx|4;6u8|;6ud|;6v3|;6vu|1;6wf|;6x1|2;6xe|;6xk|;6y1|1;71s|1;726|e;72m|;72y|1;74z|;76o|97;7g1|2;7g6|1;7gc|1;7gg|1;7gm|6;7gu|5;7he|4;7hr|;7i8|3;7id|1;7ih|;7im|1;7iu|1;7j0|3;7jj|;7k0|2;7kw|f;7le|b;7mo|;7nh|1;7pe|;7pv|;7q2|;7r1|;7r3|1;7rq|;7sm|t;7tt|;850|1;88v|;8ai|1;8hx|2;8ii|;8lx|;94q|1;96o|p;97f|2g;9a8|5x;9gw|b;9hc|1r;9j5|2d;9ll|2u;9ol|16;9pt|1e;9r9|15;9sg|17;9ts|z;9v4|1a;9wg|7f;a3x|5u;a9u|;a9x|1;aav|;ab0|;ab2|;aco|;acq|;adk|;adu|;aet|;af0|;af5|;afb|;afv|;ahr|;aim|;ajh|1;ajn|;ajy|;ali|;alk|;amd|;amy|;an2|;ano|;ao5|;aok|;aq2|;as1|;as6|;as9|;atr|;axt|1;ay3|1;ayd|;az1|;b0h|;b1e|;b1k|;b1w|;b25|;b28|;b3j|;b3q|;b40|;b4s|;b4x|;b6p|;b71|;b96|;b9z|;ba2|;bcf|;bdw|;beg|;bj0|;bji|;bjn|;bk5|;blw|;bm3|;bme|1;bmy|;bn7|;bny|;boa|;boc|;boi|;bp1|;bql|;bqv|;brb|1;brh|;bs4|;bsm|;bsz|;bt9|;bu8|;bub|;bv3|;bvq|;c03|;c0i|;c29|;c2m|;c35|;c3y|;c4k|;c62|;c74|;c7g|;c7o|;c91|;can|1;cbk|;cbq|;cbs|;ccj|;ccq|;cd0|;cey|;cif|;cj6|;cj9|;cjb|;cku|;ckx|;cll|;clz|;cm4|;cop|;cpk|;cr7|;cub|;cud|;cw8|;cwf|;cwz|;cz8|;czj|;d0m|;d0u|;d0z|;d1j|;d1q|;d44|;d5f|;d6u|;d7a|;d7h|;d8i|;d9n|;dab|;df2|;df4|;dfs|;dfw|;dg7|;dgc|;dgi|;dhv|;di3|;diu|;diy|;djl|;dkj|;dku|;dlg|;dmw|;dn1|;dnp|;doj|;dq2|;dr1|;drs|;dry|;dt1|;dt6|;du7|1;dvl|;dwl|;dy9|;dym|1;e18|;e1r|;e3o|;e7a|;e7x|;e8m|;e8u|;e9w|;ea6|;ed1|;ek0|;elj|;em2|;emc|;end|;erg|;euw|;euz|;ewu|;eyq|;eyy|;ez6|;ezs|;f13|;f1c|;f20|;f5w|;f69|;f6p|;f7r|;fav|;feo|5;fev|b;ff8|5;ffi|1;ffl|;ffn|1;ffq|;ffs|a;fg5|4;fgb|1;fgf|6;fgn|1;fgr|;fgt|2;fgx|;fh1|a;fhe|1;fhk|1;fht|;fhv|2;fi1|;fi6|2;fia|;fid|1;fig|6;fip|1;fis|5;fiz|7;fj8|2;fjc|;fjf|5;fjn|;fjq|;fjt|3;fk0|4;fk6|2;fka|1;fkd|3;fkk|7;fkt|8;fl4|;fl7|;fl9|6;flh|2;fln|8;fm0|a;fmd|2;fmh|1;fmk|1;fmz|;fn2|3;fn7|b;fnk|;fnm|1;fnq|3;fnv|l;foj|1;fop|1;fos|;fou|3;foz|;fp1|a;fpd|5;fpk|c;fpy|5;fq5|4;fqj|;fql|2;fqq|;fqt|2;fqx|;fqz|b;frc|c;frr|1;fru|3;frz|7;fse|5;fsl|1;fso|;fsq|;fss|6;ft0|3;ft5|b;fti|9;ftt|d;fu8|;fua|1;fud|1;fuh|;fuj|;fuo|3;fut|5;fv0|;fv2|5;fv9|2;fvd|1;fvg|;fvj|1;fvm|1;fvp|2;fvu|;fvw|1;fw0|2;fw4|4;fwd|;fwg|1;fwj|3;fwo|;fwq|;fwt|9;fx4|4;fxa|5;fxm|;fxo|1;fxr|6;fxz|;fy1|2;fy5|1;fy8|;fya|3;fyf|;fyh|1;fyk|5;fyr|3;fyw|2;fz0|3;fz5|8;fzh|9;fzt|2;fzy|;g00|4;g06|3;g0b|3;g0g|;g0i|;g0k|b;g0x|;g0z|;g13|1;g16|;g18|1;g1b|;g1d|4;g1j|5;g1r|h;g2a|3;g2f|1;g2i|;g2k|;g2n|1;g2q|;g2s|a;g35|;g37|6;g3f|1;g3i|;g3k|;g3m|4;g3t|a;g45|4;g4d|;g4g|6;g4o|5;g4w|8;g56|;g58|3;g5e|4;g5k|5;g5r|;g5t|5;g60|;g63|7;g6d|2;g6h|1;g6k|2;g6o|a;g71|1;g74|8;g7e|1;g7i|;g7l|7;g7x|;g82|;g84|7;g8e|;g8g|3;g8l|7;g8z|2;g93|;g95|4;g9b|;g9g|4;g9m|7;g9v|3;ga1|1;ga4|;ga6|7;gaf|2;gal|;gan|1;gaq|3;gav|3;gb0|1;gb5|7;gbe|2;gbj|1;gbn|4;gbt|4;gbz|2;gc4|a;gcg|1;gcj|7;gcs|1;gcv|3;gd0|5;gd7|f;gdo|;gds|b;ge6|5;ged|3;gei|3;gen|2;ger|;get|c;gf7|2;gfb|6;gfj|4;gfp|;gfs|b;gg5|8;ggh|3;ggn|5;ggu|;ggw|1;ggz|4;gh5|;gh8|9;ghj|4;ghp|2;ghu|2;ghz|2;gi6|;gib|1;gie|;gig|2;gil|;gin|2;gis|2;giw|3;gj1|3;gj6|6;gje|1;gjh|;gjk|5;gjs|7;gk2|5;gk9|2;gkd|r;gl6|;gld|3;glk|b;gm2|1;gm5|4;gmc|;gme|9;gmp|;gmr|3;gmw|1;gmz|5;gn6|2;gna|4;gng|3;gnl|;gnp|;gny|1;go2|;go4|;go6|8;gog|1;goj|4;gor|2;gov|2;goz|3;gp4|a;gph|1;gpo|;gpr|3;gpw|b;gq9|2;gqf|d;gqu|4;gr1|1;grc|;grk|2;grp|1;grs|2;grw|3;gs1|2;gs6|;gsa|;gsc|5;gsk|5;gss|4;gt0|2;gtj|;gtm|1;gtq|1;gtt|2;gtx|1;gu0|1;gu3|3;gu8|1;guc|3;guh|1;guk|1;gun|2;gur|;guu|2;guy|4;gv4|1;gv7|1;gva|;gvv|9;gw6|5;gwe|1;gwh|3;gwn|3;gws|3;gwz|1;gx3|7;gxc|;gxe|;gxi|;gxr|;gxt|;gxv|4;gy1|;gy3|1;gy6|;gy9|3;gyf|1;gyi|5;gyq|2;gyx|;gz0|;gz2|;gz5|;gza|3;gzh|2;gzp|5;gzx|5;h04|;h06|3;h0b|;h0g|;h0o|1;h0s|;h0v|a;h17|2;h1b|5;h1i|1;h1l|;h1n|5;h1v|1;h23|;h26|;h28|4;h2e|;h2g|5;h2n|;h2p|1;h2s|2;h2w|;h2y|;h34|;h38|4;h3e|2;h3j|;h3o|1;h3t|1;h3x|3;h42|;h45|4;h4b|3;h4h|3;h4m|1;h4s|;h4u|;h4w|3;h51|;h54|9;h5f|;h5j|a;h5v|5;h63|;h65|1;h68|3;h6e|1;h6h|1;h6l|;h6n|5;h6v|6;h73|;h75|2;h79|1;h7c|;h7e|3;h7j|b;h7w|4;h83|1;h87|1;h8b|;h8d|3;h8i|;h8l|2;h8q|;h8s|6;h95|;h9b|;h9d|1;h9g|7;h9p|4;h9v|2;h9z|;ha1|3;ha6|1;ha9|2;hag|1;haj|1;har|2;hav|;hax|1;hb0|8;hbb|3;hbg|;hbi|;hbk|;hbn|;hbs|;hbx|;hc0|;hc3|;hc6|2;hcb|1;hce|1;hci|5;hcs|5;hcz|1;hd2|1;hd5|;hd9|;hdc|;hdg|c;hdu|4;he0|5;hed|;heh|;hej|;hel|4;hes|;heu|1;hey|;hf1|;hf3|3;hf8|1;hfd|1;hfh|;hfj|2;hft|4;hfz|3;hg4|1;hg7|3;hge|1;hgh|1;hgk|;hgn|2;hgr|;hgt|;hgw|;hgy|;hh1|;hh4|1;hh8|;hha|3;hhf|;hhh|;hhj|6;hhr|1;hhv|1;hhy|2;hi4|6;hie|;hig|3;him|;hip|2;hiw|4;hj2|;hj5|4;hjb|1;hje|;hjg|2;hjk|a;hjw|6;hk4|1;hk9|;hkb|1;hke|6;hkn|;hkp|4;hky|;hl1|1;hl5|4;hlb|1;hle|4;hlk|5;hlr|;hlt|4;hlz|c;hmd|4;hml|2;hmr|1;hmu|3;hn2|7;hnb|4;hnh|6;hnp|;hnr|8;ho2|4;ho8|1;hob|2;hoh|3;hoq|4;hoy|1;hp1|2;hp5|;hp7|;hp9|;hpb|;hpf|2;hpj|1;hpo|4;hpu|1;hpz|;hq1|3;hq6|;hq9|;hqb|1;hqe|;hqg|3;hql|;hqo|4;hqx|1;hr0|3;hr7|5;hre|2;hri|1;hrl|1;hro|;hrq|2;hrv|;hrz|2;hs3|1;hs9|;hsc|2;hsh|2;hsn|1;hsq|2;hsu|2;hsz|2;ht3|3;ht9|;htb|1;hth|1;hto|;hts|1;htw|5;hu4|;hu8|;hud|;hui|;hum|;huq|1;hut|2;huy|;hv0|1;hvb|;hve|1;hvi|1;hvo|;hvv|;hw0|;hw2|1;hw6|;hw9|3;hwe|2;hwi|;hwn|;hws|;hwx|2;hx1|;hx4|;hx6|5;hxd|1;hxg|;hxi|;hxk|1;hxn|1;hxr|1;hxy|1;hy2|;hy4|;hy8|1;hyb|;hyd|1;hyh|1;hym|;hyo|;hyt|1;hyy|1;hz1|;hz4|1;hzc|1;hzf|1;hzq|1;hzt|;hzv|;hzx|;i01|1;i05|;i0a|;i0c|1;i0g|;i0i|;i0k|;i0m|;i0o|;i0u|;i0w|1;i0z|;i11|;i17|1;i1c|2;i1g|4;i1m|5;i1v|3;i20|1;i23|;i26|3;i2b|;i2d|1;i2g|;i2i|;i2k|l;i37|a;i3j|;i3m|4;i3s|1;i3w|e;i4c|;i4f|8;i4p|;i4s|4;i4y|2;i52|5;i59|5;i5g|5;i5n|1;i5q|3;i5v|3;i60|;i62|;i65|2;i69|e;i6p|3;i6u|1;i6x|1;i72|2;i76|2;i7a|;i7c|6;i7k|2;i7p|1;i7s|9;i85|1;i88|;i8a|1;i8d|4;i8j|;i8l|;i8p|3;i8u|7;i93|2;i98|5;i9g|2;i9l|4;i9z|1;ia2|;ia4|;ia7|3;iac|;ial|;ian|4;iau|7;ib5|7;ibe|2;ibi|;ibp|;ibr|;ibt|;ibv|;ic0|;ic2|;ic7|;ic9|;icd|;icg|1;icm|;ico|2;ict|5;id0|2;id6|1;id9|;idd|;idi|1;idn|;idp|1;ids|2;idw|7;ie5|;ie7|1;iea|2;iee|1;ieh|;iej|;iep|;ies|;iex|;if1|;if3|;if6|1;ifa|2;ife|2;ifi|;ifk|3;ifp|;ift|;ifw|;ifz|3;ig4|;ig9|1;igc|1;igf|1;igj|;igm|;igp|1;igu|1;igx|3;ih3|1;ih6|2;ihc|;ihe|3;ihj|;ihl|;ihn|;ihp|;ihr|1;ihu|;ihw|;ihz|;ii3|1;ii6|;ii8|;iia|;iic|;iif|3;iik|1;iir|;iiv|;iix|;iiz|3;ij4|3;ija|3;ijf|;ijh|1;ijk|9;ijv|;ijy|;ik1|4;ik7|2;ikb|;ikd|3;iki|1;ikm|1;ikr|2;ikx|1;il0|2;il4|3;il9|;ilb|1;ilh|;ilk|;iln|;ilp|3;ilu|1;ilx|3;im5|1;im8|;imb|2;imf|;imh|;imj|1;imm|;imo|1;ims|4;imz|1;in2|1;in5|3;inc|;ine|4;ink|;inm|f;io3|1;io7|;ioa|1;ioe|1;iol|2;iop|1;ios|;iow|;ioy|;ip0|4;ip6|3;ipd|;ipf|;iph|4;ipp|2;ipt|2;ipy|;iq0|4;iq6|8;iqh|a;iqt|;iqw|1;iqz|1;ir4|1;ir7|1;ira|e;irq|b;is3|6;isb|4;ish|8;isr|6;it0|4;it6|7;itg|1;itj|1;itm|;ito|2;its|1;itv|1;ity|3;iu3|2;iu8|7;iuh|4;iun|6;iuv|3;iv0|9;ivb|6;ivj|4;ivq|3;ivw|2;iw0|2;iw4|;iw7|a;iwj|2;iwn|2;iws|1;iwz|2;ix3|2;ix7|2;ixc|4;ixi|3;ixo|2;ixs|2;ixw|;iy0|b;iyd|1;iyg|;iyi|3;iyn|;iyv|;iyy|;iz1|3;iz6|b;izj|3;izo|7;izx|;izz|;j01|;j03|;j05|;j0a|;j0g|3;j0m|7;j0w|2;j10|3;j15|1;j19|;j1b|6;j1j|6;j1r|2;j1x|;j1z|;j26|1;j29|5;j2g|6;j2p|7;j2y|1;j31|3;j36|8;j3k|8;j3v|3;j42|;j44|7;j4e|1;j4h|;j4j|2;j4o|b;j51|;j53|1;j5a|;j5c|d;j5s|3;j5y|4;j64|b;j6h|3;j6m|4;j6v|1;j6y|2;j74|1;j78|3;j7d|1;j7g|3;j7l|1;j7o|a;j83|;j85|;j88|2;j8d|3;j8i|3;j8n|1;j8r|1;j8u|a;j97|9;j9j|;j9m|1;j9p|1;j9s|4;j9y|4;ja4|1;ja7|1;jac|1;jaf|7;jaq|;jau|;jaw|2;jb0|;jb2|;jb4|3;jba|a;jbp|;jbw|3;jc1|2;jc5|4;jcc|1;jcf|;jci|;jck|4;jcq|;jcs|5;jcz|1;jd3|3;jd8|2;jdc|6;jdm|9;jdy|1;je1|2;je6|6;jee|;jeg|1;jej|;jel|7;jeu|3;jez|3;jf4|6;jfc|;jfe|2;jfi|;jfk|1;jfn|1;jfs|;jfx|2;jg1|;jg3|;jg6|;jg9|7;jgi|3;jgp|1;jgt|c;jh7|1;jha|;jhi|;jhk|;jhn|1;jht|;jhv|;jhx|2;ji1|6;jia|;jic|6;jik|h;jj4|1;jje|;jjg|3;jjl|6;jjw|3;jk1|3;jk7|6;jkg|1;jkj|;jkm|;jko|1;jkr|;jkv|;jl3|4;jl9|;jlb|;jle|;jlh|1;jll|6;jlt|3;jly|;jm1|7;jma|3;jmf|2;jmj|1;jmt|4;jmz|3;jn5|1;jn8|4;jne|3;jnj|1;jnm|2;jnr|3;jnw|;jny|2;jo2|;jo4|2;jo8|3;joe|h;joy|;jp0|1;jp7|;jp9|1;jpc|1;jpf|3;jpk|1;jpq|8;jq2|2;jq8|1;jqb|;jqd|;jqh|5;jqq|8;jra|;jrd|1;jrh|;jrj|1;jrm|2;jrq|2;jrw|;jry|;js0|;js2|;js4|2;js8|2;jsc|1;jsf|1;jsk|2;jsq|;jst|2;jsy|;jt7|;jta|1;jtd|3;jtk|;jtm|3;jtr|2;jtv|;jtz|;ju1|;ju5|;ju7|;jub|1;jue|;jug|3;jul|;jur|;jut|;juv|1;jv3|4;jv9|;jvc|3;jvh|2;jvl|;jvn|3;jvs|1;jvv|3;jw0|;jw2|1;jw9|;jwb|4;jwh|1;jwk|1;jwn|;jwp|5;jww|2;jx0|1;jx3|1;jx6|;jxc|7;jxl|1;jxo|1;jxr|3;jxw|3;jy2|1;jy5|4;jyc|1;jyg|2;jyn|;jyr|1;jyu|;jyw|1;jyz|4;jz6|2;jza|;jzd|3;jzi|1;jzl|1;jzo|b;k03|2;k07|2;k0d|5;k0k|5;k0t|3;k0y|1;k12|1;k17|1;k1c|;k1e|;k1g|1;k1j|1;k1m|;k1p|;k1t|4;k1z|3;k24|;k26|;k28|2;k2d|;k2f|2;k2j|2;k2n|2;k2r|4;k2z|5;k36|3;k3b|2;k3g|3;k3l|5;k3s|1;k3v|1;k3y|2;k42|;k44|;k46|3;k4b|;k4f|4;k4l|4;k4s|1;k4w|2;k50|1;k55|3;k5a|2;k5e|2;k5i|4;k5o|3;k5t|5;k64|l;k6r|4;k6x|3;k73|7;k7c|4;k7i|1;k7l|1;k7r|p;k8j|9;k8u|3;k8z|1;k93|2;k97|3;k9c|2;k9i|7;k9r|1;k9u|;k9w|;k9y|;ka3|;ka5|1;ka9|4;kag|1;kaj|1;kam|6;kau|3;kb0|;kb2|1;kb8|;kba|;kbd|4;kbj|1;kbq|;kbs|1;kbv|1;kby|;kc0|;kc2|3;kc7|a;kcj|;kcl|;kcn|2;kcr|5;kcy|5;kd5|;kd7|5;kde|;kdh|3;kdm|4;kdt|;kdv|5;ke2|;ke5|2;ke9|;keb|;ked|4;kek|5;ker|3;kex|;kf0|a;kfe|;kfg|b;kfv|1;kfy|3;kg4|1;kg7|;kg9|;kgb|1;kge|5;kgl|8;kgw|2;kh0|;kh2|;kh5|;khb|a;khn|3;khs|6;ki0|2;ki6|6;kif|7;kip|1;kis|;kiu|1;kix|;kj0|;kj2|9;kjd|3;kji|1;kjl|4;kk0|;kk3|1;kk6|3;kkd|2;kkh|1;kkn|6;kkv|5;kl4|1;kl7|b;klk|2;klo|2;kls|5;klz|2;km3|2;km7|;kmb|;kmf|;kmj|;kmm|4;kms|3;kmx|3;kn2|1;kn5|5;knc|;knh|3;knn|1;knq|7;knz|4;ko5|6;kod|9;kop|3;koz|3;kp4|5;kpb|b;kpo|1;kpr|2;kpv|2;kpz|1;kq2|8;kqd|2;kqh|4;kqo|1;kqr|g;kra|1;krd|3;krl|2;krp|1;krs|;kru|;ks0|1;ks3|3;ks8|1;ksb|;ksd|;ksf|;ksi|;ksl|1;ksp|1;ksu|;ksz|2;kt3|;kt5|5;ktc|6;ktk|d;ktz|b;kue|;kui|;kul|1;kup|1;kus|2;kuw|;kuz|1;kv4|1;kv9|3;kvf|;kvh|5;kvo|;kvr|1;kvu|2;kvy|3;kw3|;kw5|;kw7|1;kwa|7;kwj|;kwm|3;kwt|1;kwy|1;kx1|;kx3|4;kx9|2;kxd|5;kxl|;kxn|;kxp|6;kxx|;ky2|2;ky7|;ky9|4;kyf|;kyh|2;kyl|7;kyw|3;kz2|;kz4|;kz6|9;kzh|2;kzo|7;kzy|;l00|2;l04|2;l08|1;l0b|;l0f|;l0h|1;l0k|;l0m|1;l0q|1;l0x|2;l14|;l16|;l1a|3;l1f|1;l1i|1;l1l|;l1n|;l1p|1;l1s|1;l1w|;l1z|;l23|8;l2d|;l2i|2;l2m|3;l2r|1;l2w|;l2z|;l31|2;l35|2;l3a|;l3c|1;l3g|;l3k|1;l3n|3;l3u|5;l42|;l44|;l47|1;l4a|;l4c|;l4g|3;l4o|;l4q|3;l4y|5;l55|2;l5b|3;l5i|1;l5n|;l5p|4;l5v|1;l5z|1;l63|1;l67|;l6a|;l6d|6;l6l|2;l6r|;l6u|1;l6x|1;l70|2;l74|;l76|2;l7a|;l7c|1;l7f|;l7h|;l7j|8;l7t|3;l7y|2;l82|3;l87|4;l8d|9;l8p|2;l8t|;l91|3;l97|;l9a|2;l9e|2;l9k|d;l9z|9;lab|6;laj|4;laq|2;lau|2;lay|1;lb3|;lb5|;lb7|;lba|1;lbf|1;lbi|1;lbl|;lbn|;lbr|;lbt|;lbz|;lc2|;lc4|1;lc8|2;lcd|7;lcn|;lcp|;lcr|;lcv|;lcz|1;ld2|2;ld8|;lda|;ldf|5;ldm|1;ldq|4;le2|1;le5|3;lea|;lec|1;lef|;leh|7;leq|;lev|1;ley|1;lf1|;lf3|1;lf6|2;lfa|;lfc|3;lfh|1;lfl|8;lfw|1;lg0|;lg2|a;lgf|;lgh|1;lgq|4;lgw|4;lh4|7;lhd|1;lhg|2;lhl|1;lho|1;lhr|8;li1|4;li8|3;lid|;lif|d;liz|;lj4|1;lj8|;ljb|;lje|2;lji|1;ljl|2;ljr|;ljt|2;ljy|1;lk4|7;lke|1;lkh|5;lko|1;lkr|4;lkx|;ll0|1;llj|5;llq|3;llv|4;lm1|1;lm4|;lm6|2;lmc|;lmf|2;lmk|;lmo|2;lmt|;lmv|3;ln0|2;ln5|8;lnf|1;lnu|2;lny|1;lo2|;lo4|1;lo7|2;loc|1;lof|1;loi|;lok|4;loq|2;lou|4;lp1|1;lp4|3;lp9|5;lpg|2;lpk|4;lpq|e;lq8|;lqc|1;lqf|4;lqr|;lqt|;lqv|;lqx|2;lr1|a;lrd|;lrf|4;lrm|;lro|;lrq|;lrs|4;lry|;ls2|3;ls8|7;lsh|3;lsm|2;lsr|4;lsy|1;lt3|1;lt7|;lta|1;lte|1;lti|;ltn|;ltp|3;ltu|;lu1|;lu4|1;lu7|1;lub|;lue|;lug|1;luk|1;lun|1;luq|;lut|;luv|;luy|1;lv1|2;lv5|3;lva|1;lve|3;lvj|6;lvr|8;lw1|;lw3|2;lw9|2;lwd|1;lwm|;lwr|4;lwy|;lx0|;lx3|2;lx7|;lx9|2;lxd|1;lxg|;lxi|;lxk|2;lxo|1;lxr|2;lxv|3;ly0|;ly2|1;ly8|;lya|1;lyd|1;lyh|4;lyn|4;lyt|1;lyw|;lyz|1;lz2|1;lz5|;lz9|;lzj|;lzl|3;lzr|b;m04|;m06|;m08|;m0c|4;m0k|;m0o|;m0q|;m0s|2;m0w|4;m12|2;m17|3;m1c|4;m1i|2;m1m|;m1p|;m1r|2;m1v|5;m22|;m26|3;m2b|;m2d|2;m2h|;m2k|;m2m|;m2o|3;m2t|5;m38|1;m3c|;m3e|1;m3i|3;m3o|;m3s|1;m3v|1;m3y|3;m43|;m45|1;m49|1;m4c|2;m4g|1;m4l|2;m4p|2;m4t|;m4v|;m4x|;m51|;m53|1;m56|1;m59|3;m5f|;m5i|2;m5o|;m5r|1;m5u|;m5w|;m5z|;m61|1;m64|;m66|;m6b|1;m6f|5;m6m|;m6p|;m6s|1;m6w|;m71|1;m77|2;m7d|;m7f|1;m7i|2;m7p|1;m7s|;m7w|2;m81|;m85|1;m89|1;m8e|;m8i|;m8k|5;m8r|;m8v|;m90|;m97|6;m9f|1;m9j|4;ma0|;ma2|1;ma7|;ma9|;mab|3;mag|1;mak|1;man|;mas|;mb0|;mb5|;mbd|1;mbh|;mbn|6;mbv|1;mbz|;mc4|;mc9|1;mcc|;mce|;mcg|1;mcm|;mcr|;mct|4;md2|;md4|;md8|;mdd|;mdh|2;mdl|3;mdq|;mds|3;mdx|2;me1|1;me4|;me6|;me8|;mea|;mec|5;mek|;mem|;mex|;mf1|;mf4|;mf8|1;mfb|1;mfe|;mfg|;mfj|;mfm|;mfo|2;mft|2;mfz|1;mg2|;mg8|;mgc|;mge|5;mgp|1;mgu|3;mgz|1;mh4|1;mh7|1;mha|;mhc|;mhe|5;mhl|1;mho|;mhr|1;mhx|2;mi4|2;mic|1;mig|1;mij|1;mim|2;miu|3;mj1|;mj4|;mj7|;mj9|;mjb|;mje|1;mjh|;mjj|;mjo|;mjs|;mju|3;mjz|1;mk2|;mk4|2;mk8|b;mkl|3;mkr|1;mku|2;mky|1;ml1|e;mlj|2;mln|;mlq|1;mlt|1;mlw|;mlz|2;mm3|7;mmc|;mmf|;mmh|;mml|1;mmq|1;mmu|;mmz|;mn4|;mn6|;mnb|1;mng|6;mno|;mnq|;mnt|;mny|;mo0|4;mo6|1;mo9|;moc|;moe|;mog|;moi|;mol|4;mor|;mov|3;mp1|;mp5|;mp8|1;mpf|1;mpj|7;mpu|;mpw|1;mpz|;mq2|1;mq5|;mqa|1;mqe|3;mqj|4;mqq|;mqs|1;mqv|5;mr2|1;mr5|6;mrd|2;mrh|2;mrn|2;mrx|3;ms2|;ms6|2;msd|3;msj|;msm|6;msu|4;mt1|;mt3|5;mtc|1;mtf|4;mtl|2;mtq|;mts|;mtv|5;mu4|;mu6|2;mua|;mud|1;mug|3;mul|;muq|1;mut|;muv|;mux|4;mv3|1;mv6|;mv9|1;mvc|7;mvm|1;mvq|;mvt|;mvx|1;mw0|1;mw3|4;mw9|1;mwd|1;mwh|;mwk|1;mwn|4;mwt|4;mwz|4;mx5|1;mxd|;mxf|;mxm|1;mxt|1;mxw|2;my0|e;myh|1;myn|2;myr|1;myu|1;myz|;mz1|;mz5|2;mz9|;mzb|;mzd|7;mzm|2;mzq|5;mzx|6;n06|;n0e|;n0g|1;n0j|;n0l|4;n0r|;n0v|3;n13|3;n18|;n1a|5;n1h|6;n1q|4;n1x|;n21|2;n25|;n27|;n2g|2;n2k|;n2n|1;n2r|1;n2u|;n2w|;n2y|2;n32|2;n36|2;n3a|5;n3i|4;n3o|;n3q|2;n3u|2;n3z|;n41|;n43|3;n4c|2;n4h|2;n4l|3;n4q|;n4s|;n4u|e;n5b|4;n5i|a;n5v|1;n5y|c;n6c|;n6f|;n6h|9;n6s|3;n6x|4;n73|g;n7l|1;n7p|2;n7t|3;n7y|7;n89|1;n8c|1;n8i|3;n8r|;n8w|5;n93|3;n98|b;n9m|;n9o|3;n9u|3;n9z|2;na3|9;naf|;nah|;nak|;nam|6;nax|1;nb0|;nb2|6;nbb|6;nbj|;nbm|1;nbp|1;nbs|1;nbv|e;ncd|;ncg|;nci|3;nco|4;ncw|c;nda|;nde|;ndh|1;ndk|1;ndo|;ndr|;ndt|1;ndw|1;ndz|3;ne4|6;nec|;nee|;neg|;nei|4;neo|8;nez|3;nf4|;nf7|;nf9|1;nfd|f;nfu|;nfx|3;ng4|;ng6|4;ngd|;ngf|;ngh|2;ngl|1;ngo|6;ngy|;nh0|;nh2|1;nh5|;nh7|1;nha|3;nhf|5;nhm|2;nhq|;nhs|2;nhw|;nhy|;ni0|1;ni3|1;ni6|;ni8|1;nic|;nie|6;nim|;niq|;nis|1;niv|;nix|3;nj2|2;nj6|;nj8|2;njc|1;njh|2;njo|6;njw|2;nk0|;nk2|;nk5|2;nka|;nkd|2;nki|;nkm|2;nkq|2;nku|a;nl6|2;nlc|;nle|2;nll|1;nlo|4;nlw|;nm3|3;nm9|;nmc|2;nmi|;nmm|2;nmq|;nms|1;nmv|;nmx|1;nn0|5;nn7|;nn9|2;nnd|;nnf|4;nnn|;nnr|;nnt|;nnx|;no1|1;no5|;no7|;no9|3;noe|2;noi|5;nop|1;nos|5;noz|1;np4|;np7|1;npe|;nph|1;npl|;npo|2;npt|1;npw|1;nq1|;nq5|;nq8|3;nqd|2;nqk|2;nqo|;nqq|;nqs|1;nqv|;nqy|;nr3|;nr7|2;nrb|1;nrg|;nri|1;nrl|1;nrw|2;ns0|1;ns3|1;ns8|;nsa|2;nse|1;nsi|;nsk|;nsq|;nss|;nsu|;nsx|;nt2|1;nt6|;nt8|3;ntd|;ntf|2;ntj|1;ntm|;ntp|2;ntt|;ntv|1;ntz|3;nu4|1;nu7|4;nud|;nui|5;nup|;nut|7;nv2|;nv4|6;nve|1;nvj|2;nvo|;nvq|2;nvu|;nvw|;nvz|;nw2|2;nw6|1;nw9|2;nwd|4;nwm|1;nws|;nwu|;nww|2;nx5|3;nxa|2;nxh|9;nxs|1;nxw|1;ny2|8;nyc|7;nyn|2;nyr|5;nyy|6;nz6|;nz9|;nzb|2;nzf|;nzh|;nzm|;nzr|;nzt|3;nzy|3;o04|1;o0a|5;o0h|;o0j|3;o0o|;o0r|2;o0x|;o12|5;o1a|3;o1f|1;o1k|3;o1p|5;o1w|;o1z|6;o27|;o29|1;o2c|2;o2g|;o2i|;o2l|a;o2x|4;o34|1;o3c|;o3f|1;o3k|;o3m|1;o3p|;o3r|7;o41|;o44|1;o47|5;o4e|3;o4n|;o4r|;o4t|5;o50|1;o53|9;o5e|7;o5o|4;o5x|2;o61|;o64|1;o67|4;o6d|;o6f|;o6h|2;o6l|;o6o|;o6s|2;o6w|2;o71|9;o7c|;o7e|1;o7k|8;o7y|2;o83|;o89|1;o8c|;o8e|2;o8j|;o8l|1;o8p|6;o8z|c;o9d|2;o9h|;o9l|4;o9r|4;o9x|8;oa7|2;oac|;oae|;oag|3;oal|2;oaq|;oas|;oau|2;oay|1;ob3|;ob5|1;ob8|;obc|1;obf|;obi|2;obn|;obp|c;oc3|3;oc9|;ocb|;ocd|;ocf|2;ocl|4;ocr|b;od9|;odc|;odg|3;odl|1;odo|9;odz|;oe1|1;oe7|;oec|;oee|1;oeh|;oej|;oel|5;oes|d;of9|;ofe|;ofg|1;ofj|3;ofo|2;ofs|;ofu|3;og0|2;og4|8;ogf|;ogk|;ogm|1;ogp|2;ogt|;ogw|;oh0|2;oh4|2;oh9|;ohc|;ohe|8;oho|;ohq|;ohs|4;ohy|1;oi1|;oi3|4;oi9|3;oif|;oih|;oij|;oim|3;oir|;oit|3;oiy|2;oj3|;oj5|;oj7|1;oja|4;ojh|3;ojm|1;ojp|1;oju|;ojw|1;ojz|i;okj|2;okn|;okp|;oks|4;oky|1;ol1|;ol5|;ol7|3;old|2;oli|1;oll|;oln|;olp|;olr|1;olu|;olw|1;olz|1;om3|;om6|4;omc|4;omj|;oml|1;omo|3;omu|1;omx|7;on6|;on8|1;onb|3;onh|2;onm|8;onw|4;oo2|;oo6|1;oo9|;oob|;oof|;ooi|;ook|2;ooo|3;oou|;oow|;ooy|9;op9|;opb|f;ops|3;opy|;oq2|9;oqd|;oqh|1;oqk|c;oqz|6;or7|;or9|2;ord|5;orl|2;orp|3;oru|;ory|;os0|3;os5|1;os8|3;osd|;osf|;osh|2;osl|1;oso|1;osr|2;osv|;osx|;osz|;ot2|1;ot5|7;ote|1;oti|1;otm|h;ou5|3;oua|5;oui|8;out|5;ov0|2;ov4|6;ovc|5;ovj|;ovl|1;ovo|2;ovt|2;ow0|1;ow4|1;ow8|3;owg|2;owl|;own|;owr|8;ox2|2;ox7|4;oxd|2;oxh|2;oxl|2;oxp|2;oxt|;oxv|5;oy2|1;oy5|1;oy8|;oya|;oyc|2;oyg|2;oyl|2;oyp|1;oyt|2;oyx|2;oz1|3;oz7|;oz9|;ozc|1;ozf|4;ozl|2;ozq|4;ozw|a;p08|;p0a|5;p4m|;p4o|;p4q|5;p4z|2;p53|;p58|9;p5k|;p5n|2;p5r|2;p5v|8;p65|1;p68|2;p6d|;p6f|2;p6l|3;p6q|1;p6t|3;p6y|7;p78|;p7a|1;p7e|;p7g|2;p7l|3;p7q|;p7s|2;p7x|2;p82|;p84|;p86|;p88|1;p8c|1;p8f|2;p8j|;p8l|1;p8o|;p8q|;p8s|;p8u|1;p8y|;p90|1;p97|;p9b|2;p9f|;p9h|1;p9k|1;p9n|1;p9q|2;p9u|1;pa1|f;pai|f;pb0|5;pb8|;pba|;pbc|;pbg|;pbi|;pbk|;pbn|4;pbt|7;pc3|1;pc6|;pca|;pci|;pcm|;pco|;pcq|;pcu|4;pd0|;pd2|;pd4|;pd9|;pdb|8;pdl|;pdn|;pdp|4;pdw|5;pe3|1;pe6|;peb|;pee|;peg|6;pep|1;pes|3;pex|4;pf3|;pf5|1;pf8|;pfc|2;pfn|3;pfs|;pfu|;pfw|3;pg2|;pg4|7;pgd|1;pgg|1;pgk|2;pgt|h;phd|2;phh|6;php|;phy|2;pi2|2;pi6|;pi8|;pib|1;pif|;pih|;pij|1;pin|2;pir|;pit|;pix|1;pj0|2;pj5|;pj9|2;pje|2;pji|;pjk|5;pjr|;pjz|2;pk5|4;pkb|;pkd|4;pkj|1;pkn|3;pkv|7;pl4|;pl6|1;pla|2;plf|;plh|1;plk|;plm|4;pls|;plu|2;pm0|1;pm6|;pm8|;pma|3;pmg|;pmi|1;pml|6;pmt|1;pmw|3;pn1|2;pn5|;pn7|;pn9|6;pnh|4;pnn|2;pnr|1;pnu|3;pnz|7;po8|d;pon|9;poy|2;pp2|9;ppd|1;ppk|4;ppq|;ppu|8;pq4|;pq8|;pqb|4;pqh|;pqj|;pqm|1;pqp|;pqu|4;pr0|1;pr3|1;pr6|2;pra|2;pre|1;prh|2;prl|1;pro|;prq|3;prv|;prx|4;ps3|1;ps7|;ps9|2;psd|1;psh|3;psm|;pso|3;pst|;psv|2;psz|h;ptj|8;ptx|1;pu8|5;puf|;puh|3;pum|a;puy|1;pv1|;pv3|;pv5|;pv7|1;pva|1;pvd|2;pvh|1;pvk|c;pvy|;pw6|2;pwb|4;pwh|2;pwo|;pwr|f;px8|1;pxc|;pxe|5;pxl|1;pxp|b;py2|;pya|1;pyo|;pyr|;pyt|;pyv|1;pyz|2;pz3|1;pz6|;pz8|3;pzd|1;pzh|1;pzm|4;pzs|8;q02|;q06|7;q0h|;q0l|;q0t|4;q11|;q13|;q15|1;q18|;q1a|3;q1f|1;q1i|;q1k|;q1o|1;q1r|2;q1x|;q20|3;q27|3;q2c|;q2e|3;q2j|2;q2p|;q2r|1;q2u|1;q2y|5;q35|;q37|;q39|;q3b|;q3d|;q3k|;q3m|;q3t|1;q3w|;q3z|;q41|;q45|;q48|1;q4c|1;q4l|5;q4t|2;q4x|1;q52|6;q5b|8;q5l|8;q5v|7;q64|1;q69|1;q6c|1;q6j|;q6o|;q6q|3;q6v|;q6x|;q70|;q72|1;q75|;q7a|;q7c|2;q7h|;q7j|;q7l|1;q7o|;q7s|a;q84|;q86|b;q8j|;q8m|;q8p|1;q8s|;q93|;q96|;q98|;q9a|4;q9g|;q9j|;q9m|3;q9r|1;q9u|1;q9y|1;qa4|;qa6|;qa8|1;qab|2;qaf|1;qai|2;qam|1;qap|6;qay|3;qb3|;qb6|4;qbh|4;qbn|;qbq|;qbs|3;qby|5;qc5|5;qcc|8;qco|3;qct|;qcv|;qd3|;qd5|2;qd9|4;qdg|8;qdr|2;qdv|1;qdz|2;qe3|2;qe7|1;qea|;qec|c;qes|;qeu|4;qf0|3;qf5|1;qfb|;qfd|2;qfh|3;qfp|;qfs|2;qfw|1;qfz|2;qg4|2;qg8|2;qgd|;qgj|1;qgm|1;qgp|3;qgu|2;qgy|;qh0|3;qh6|1;qh9|1;qhc|3;qhi|5;qhq|;qht|1;qhw|;qhz|;qi1|;qi5|;qi7|1;qie|;qig|2;qik|1;qin|3;qiu|;qj1|1;qj4|;qj6|i;qjr|;qjt|;qjv|1;qjz|;qk1|;qk5|2;qk9|2;qkd|;qkn|6;qkx|;qkz|;ql1|1;ql4|;ql6|;ql8|1;qld|;qlf|1;qli|5;qlp|;qlr|2;qlv|6;qm7|2;qmb|4;qmh|;qmj|;qml|1;qmp|1;qms|1;qmv|;qmx|3;qn2|2;qn7|4;qnd|;qng|3;qns|6;qo0|;qo2|9;qod|7;qoo|2;qos|;qou|1;qox|2;qp1|;qp4|1;qpa|1;qpd|1;qpg|;qpj|;qpl|7;qpv|;qpx|;qq1|;qq3|3;qq9|;qqb|;qqd|;qqf|2;qql|;qqn|2;qqr|3;qqw|;qqy|;qr2|1;qr5|1;qr8|;qra|;qrc|;qrf|1;qrj|;qrm|7;qrv|3;qs0|;qs3|;qs5|;qs7|2;qse|2;qsi|1;qsn|;qsr|4;qsx|;qsz|;qt1|;qt6|1;qt9|4;qtg|;qti|5;qtq|;qts|;qtu|;qtx|1;qu1|1;qu4|;qu7|1;qua|4;qui|3;qun|;qup|2;qut|6;qv2|1;qv5|;qv7|;qv9|2;qvd|2;qvh|9;qvs|4;qvy|1;qw1|2;qw7|1;qwd|1;qwg|2;qwl|1;qwp|3;qww|6;qx4|6;qxd|2;qxh|f;qy0|1;qy3|;qy6|4;qyd|;qyf|;qyh|;qyj|;qyl|5;qyw|;qyz|;qz1|;qz6|;qza|6;qzi|2;qzm|;qzo|;qzs|;qzu|1;qzy|;r00|1;r04|1;r07|;r0a|;r0c|a;r0q|5;r0x|4;r14|1;r17|6;r1j|1;r1r|6;r1z|2;r24|2;r29|1;r2c|;r2e|1;r2i|;r2k|4;r2q|1;r2t|1;r2w|2;r30|2;r34|;r39|3;r3e|1;r3k|2;r3p|6;r3y|;r40|6;r49|;r4c|1;r4f|;r4i|;r4m|1;r4q|2;r4u|6;r52|;r56|1;r59|3;r5e|3;r5j|;r5m|7;r5v|;r5y|5;r65|;r67|1;r6b|5;r6i|2;r6n|2;r6t|2;r6x|1;r70|;r73|1;r76|5;r7e|;r7g|1;r7j|2;r82|;r84|4;r8a|;r8c|1;r8j|;r8l|2;r8p|;r8r|;r8t|;r8x|;r8z|1;r92|;r94|1;r99|;r9b|6;r9j|1;r9m|;r9o|;r9q|a;ra3|;ra5|9;rai|3;ran|;rap|;rar|4;ray|4;rb4|1;rb7|;rb9|4;rbh|1;rbk|8;rbv|3;rc0|3;rc5|2;rc9|;rcb|3;rcg|3;rcl|2;rcp|3;rcu|2;rcy|5;rd5|;rd7|2;rdb|4;rdh|5;rdq|3;rdv|7;re4|4;rea|1;ree|1;reh|;rej|1;rem|1;req|2;reu|7;rf3|8;rfe|8;rfo|;rfq|1;rfv|3;rg0|1;rg3|5;rga|;rgc|;rge|4;rgk|3;rgq|7;rh0|;rh2|1;rh5|8;rhi|;rhk|;rhn|2;rhs|;rhv|;rhz|;ri1|;ri4|;ri6|;ri9|5;rig|1;rik|3;rip|3;riu|;riw|4;rj2|1;rj7|;rja|;rjd|;rjf|2;rjj|3;rjo|;rjq|3;rjw|5;rk3|2;rka|6;rki|4;rkp|1;rks|4;rp3|3;rp9|2;rpd|;rph|7;rpq|3;rpv|2;rpz|4;rq5|;rq9|3;rqe|;rqg|5;rqr|;rqt|1;rqw|4;rr2|;rr6|;rr9|2;rrd|5;rrk|;rrm|2;rrs|1;rrv|7;rs4|;rs7|9;rsi|2;rsm|7;rsv|c;rt9|2;rtd|2;rth|1;rtl|5;rts|4;rty|;ru0|;ru2|;ru4|1;ru7|3;ruc|1;ruf|1;rui|5;rup|;rur|2;ruv|4;rv1|3;rv6|2;rva|1;rvf|2;rxg|3;rxl|;rxn|3;rxs|1;rxv|1;rxy|1;ry7|;ry9|1;ryc|1;ryg|;ryi|;ryl|;ryo|1;ryt|;ryx|;rz2|2;rz7|;rza|;rzc|;rzf|1;rzj|;rzm|1;rzp|;rzr|;rzt|3;rzy|;s00|;s02|;s05|3;s0a|2;s0e|1;s0h|;s0k|3;s0p|2;s0t|;s0v|;s0x|;s0z|2;s13|1;s16|2;s1b|6;s1o|1;s1r|;s1t|;s1w|2;s20|4;s27|2;s2c|;s2e|;s2l|6;s2u|1;s2y|;s34|1;s37|6;s3h|;s3k|2;s3o|;s3r|9;s44|1;s49|;s4b|9;s4p|;s4s|1;s4v|3;s50|3;s55|3;s5d|4;s5j|;s5l|2;s5p|;s5s|5;s60|3;s65|1;s69|1;s6f|;s6h|8;s6r|;s6t|1;s6y|1;s72|;s74|1;s77|5;s7e|3;s7j|;s7l|1;s7o|;s7v|1;s7z|;s82|1;s88|;s8b|;s8d|1;s8g|1;s8n|7;s8w|;s8y|1;s91|;s93|3;s98|;s9b|1;s9e|7;s9n|6;s9v|;s9x|a;sab|8;sam|9;sax|1;sb0|3;sb5|4;sbb|1;sbg|3;sbl|5;sd7|d;sdp|5;sdw|4;se2|2;se6|4;sec|2;seg|;sei|1;sel|1;seo|5;sey|;sf4|;sf6|4;sfc|3;sfh|4;sfo|7;sfx|1;sg0|6;sg8|;sgb|6;sgj|8;sgt|6;sh3|3;sh8|3;shd|8;sho|;shq|1;sht|4;shz|;si1|d;sig|1;sij|3;sio|3;sit|4;sj0|4;sj6|;sj8|6;sjg|1;sjj|6;sjr|5;sjy|3;sk5|;sk7|2;skb|;skg|3;skl|1;sko|;skq|;skv|7;sl4|;sl9|1;sld|;slf|2;slj|3;slo|;slq|;slu|;slx|;slz|2;sm3|4;sm9|1;smc|1;smg|;smj|;sml|;smn|1;smq|;sms|3;sn1|3;sn6|;sn8|2;snc|;snh|;snk|;snm|;sno|6;snw|;sny|;so0|;so2|1;so5|;so7|;so9|;sod|5;sok|;som|1;sop|1;sos|1;soz|;sp2|9;spe|2;spi|5;spt|4;spz|;sq1|1;sq4|1;sqa|3;sqf|4;sqp|2;sqt|2;sqx|2;sr1|1;sr4|5;srb|1;srg|;sri|;srl|1;sro|;srq|;srs|;sru|c;ss8|;ssa|3;ssf|a;ssr|6;ssz|1;st2|9;std|;stf|4;stl|1;sto|5;stx|2;su1|;su3|2;su7|2;suc|3;suh|1;suk|2;suo|8;sv0|2;sv7|3;svc|1;svg|;svi|2;svn|7;svw|;svy|2;sw2|9;swd|4;swm|8;sww|2;sx0|5;sxa|3;sxh|4;sxn|5;sxv|;sxx|;sy0|2;sy5|1;sy9|2;syd|7;syn|1;sys|1;syv|1;syz|;sz1|;sz3|;sz6|1;sza|7;szj|4;szp|3;szv|5;t02|1;t05|;t07|2;t0c|1;t0f|2;t0j|2;t0n|3;t0s|2;t0w|;t0y|1;t13|5;t1b|1;t1e|;t1g|;t1i|;t1k|;t1p|;t1r|2;t1w|1;t20|2;t24|g;t2m|1;t2q|5;t2y|1;t38|;t3b|4;t3h|;t3k|2;t3o|4;t3u|2;t3y|;t40|;t44|1;t47|;t49|8;t4j|3;t4q|;t4s|6;t54|;t56|3;t5b|;t5e|;t5g|4;t5m|1;t5q|;t5t|;t5v|1;t5y|3;t63|3;t68|;t6c|2;t6h|2;t6p|;t6r|a;t74|1;t77|;t7a|3;t7g|3;t7l|1;t7o|4;t81|;t85|;t87|4;t8d|;t8h|3;t8n|2;t8t|3;t8z|7;t9b|;t9d|;t9n|;t9q|1;t9t|5;ta0|;ta2|1;ta5|;ta7|;ta9|;tab|2;tag|;tai|;tak|;tap|2;tat|;tax|3;tb2|5;tbc|;tbe|1;tbh|5;tbp|;tbr|;tbw|3;tc1|;tc3|2;tiv|2;tj2|2;tj6|2;tja|9;tjl|3;tjq|;tjs|1;tjx|c;tkb|2;tkh|1;tkk|;tkm|;tkp|6;tkz|;tl2|7;tlc|6;tlk|2;tlo|6;tlw|2;tm0|;tng|2;tnl|1;tno|2;tns|;tnu|;tnw|;tny|1;to1|3;to7|6;tof|3;tok|;tor|2;tov|1;toy|;tp0|;tp2|2;tp7|4;tpd|5;tpm|;tpo|;tpq|;tps|;tpu|6;tq2|5;tq9|5;tqg|3;tql|2;tqp|;tqs|9;tr3|1;tr7|7;tri|6;trq|7;ts0|1;ts4|3;ts9|5;tsh|1;tsl|1;tso|7;tsy|1;tt4|3;ttb|3;tti|1;ttl|2;tts|;ttu|8;tu5|2;tu9|;tub|1;tue|;tuh|5;tup|3;tuv|1;tuy|;tv4|3;tva|;tvc|1;tvf|;tvh|1;tvl|3;tvq|4;tvx|2;tw1|1;tw5|7;twe|;twg|4;twm|5;twt|1;twx|;twz|1;tx2|7;txb|2;txg|2;txl|;txn|;txp|;txr|1;txx|5;ty4|;ty6|2;tya|1;tye|;tyg|;tyj|3;typ|5;tyw|2;tz0|;tz2|1;tz5|;tz7|b;tzk|1;tzn|1;tzr|2;tzv|3;u00|1;u04|;u06|;u0d|2;u0h|7;u0q|1;u0v|;u0x|7;u16|;u18|8;u1i|4;u1o|;u1q|;u1s|1;u1v|3;u23|5;u2a|3;u2f|2;u2j|3;u2s|;u2u|1;u2y|5;u35|a;u3i|;u3m|1;u3p|2;u3u|2;u3z|2;u43|2;u5k|;u5m|1;u5p|4;u5w|;u5y|2;u62|2;u67|;u6a|6;u6j|1;u6m|;u6z|1;u72|5;u79|2;u7d|2;u7h|7;u7q|;u7w|2;u82|1;u85|;u87|3;u8c|;u8g|8;u8q|8;u90|;u92|2;u97|1;u9a|;u9d|4;u9l|5;u9s|2;u9x|4;ua3|3;ua8|2;uac|1;uaf|2;uaj|1;uam|2;uar|;uc6|3;ucb|;ucd|2;ucj|;ucl|1;uco|;ucs|2;ucw|5;ud5|1;ud8|1;udb|;udd|;udf|3;udk|1;uds|5;ue0|7;ue9|1;uef|;uei|4;ueo|2;ues|1;uew|1;uez|4;uf5|4;ufc|;ufe|2;ufi|5;ufq|;uft|1;ufy|;ug0|;ug2|2;ug7|1;ugb|;ugd|1;ugg|1;ugj|;ugl|3;ugu|;ugw|5;uh3|;uh6|4;uhd|1;uhg|4;uhm|1;uhp|;uhr|;uhu|;uhw|1;ui1|3;ujs|;uju|;ujw|4;uk2|;uk4|5;ukb|6;ukj|1;ukm|;uko|;uku|b;ul7|1;ula|2;ule|5;ull|6;ult|4;ulz|;um1|2;um5|;um7|7;umg|1;umj|3;umo|;umq|;umu|;umw|5;un3|1;un6|1;un9|a;unl|4;unr|;unt|4;uo1|4;uo8|;uob|4;uoh|;uok|4;uoq|1;uou|;uox|;uoz|;up1|1;up4|;up6|5;upe|7;upr|1;upv|4;uq1|2;uq5|7;uqe|1;uqi|;uql|3;uqu|8;ur4|2;ur8|;urb|2;urf|1;uri|3;urq|4;ury|4;us4|;us6|2;usb|;usd|;usf|;ush|4;usn|1;usq|1;usu|5;ut1|;ut3|3;ut9|;utb|1;ute|;utg|;uti|;utk|5;utr|7;uu0|6;uu9|9;uul|5;uut|2;uux|2;uv1|1;uv5|;uv7|7;uvi|2;uvm|2;uvq|2;uvu|7;uw3|;uw5|;uw7|4;uwd|1;uwg|;uwi|;uwl|3;uwq|2;uzp|2;uzt|;uzv|1;v00|;v02|2;v06|1;v09|;v0i|1;v0m|3;v0r|;v0u|;v0x|1;v11|;v13|1;v17|4;v1f|;v1i|;v1k|;v1m|2;v1r|1;v1u|2;v22|5;v29|7;v2i|;v2o|4;v2x|;v30|9;v3d|3;v3j|1;v3m|1;v3q|1;v3u|2;v3y|;v43|1;v46|1;v49|1;v4d|2;v4i|1;v4l|5;v4x|;v50|;v55|3;v5a|1;v5d|1;v5g|1;v5k|5;v5r|5;v5y|1;v61|1;v67|;v6b|4;v6h|1;v6m|2;v6r|;v6t|2;v6x|;v6z|;v71|3;v76|2;v7c|2;v7h|1;v7m|;v7r|;v7u|;v7x|1;v80|2;v85|1;v89|6;vat|;vaw|5;vb3|6;vbb|1;vbf|1;vbi|1;vbl|2;vbp|3;vbv|;vbx|2;vc4|2;vc8|2;vcc|4;vcj|2;vco|7;vcz|1;vd2|;vd4|;vd7|7;vdg|1;vdk|1;vdn|5;vdw|1;vdz|1;ve4|6;vec|5;vej|4;veq|1;vev|2;vf2|9;vfd|2;vfj|3;vfq|;vfu|2;vfz|;vg1|1;vg4|;vg7|;vg9|6;vgh|;vgj|4;vgq|1;vgu|2;vgy|6;vh6|;vh9|6;vhi|4;vho|7;vhx|2;vi2|;vi5|;vi7|;vil|;vin|3;vis|3;vix|;vj0|7;vj9|;vjo|;vjw|6;vk4|;vk6|;vkc|;1d6o|2h;1d97|47;1ddg|n;1de6|2n;1dkw|4;1e6o|9;1e7k|y;1e8k|i;1e94|3;1edd|4e;1eht|t;1eiq|5;1eiy|5;1ej6|5;1eje|2;1ejk|6;1ejs|6;2q68|c;2q6o|2k;2q9c|1o;2qdc|2;2qds|17;2qf4|8;2qfk|1;2t57|;2t8p|1;2t9e|;2t9g|;2t9s|;2tbp|;2teg|;2tgi|;2tjn|;2trf|;2ttd|;2ttt|;2tx5|;2tze|;2u4p|;2u67|;2u9d|;2uae|;2uc1|;2uco|;2ui4|;2ukv|;2uo8|;2upz|;2ure|;2uux|;2uxa|;2v0c|;2v0k|;2v19|;2v6s|;2v9v|;2vbx|;2vfj|;2vg7|;2vr9|;2vrs|;2vvl|;2vz8|;2vzh|;2w0l|;2w67|;2wox|;2wql|;2wr9|;2ws4|;2wsb|;2wuv|;2wv8|;2wvx|;2wwr|;2wxi|;2wxw|;2x1g|;2x65|1;2xg7|;2xjb|;2xmc|;2xom|;2xqa|;2y0t|;2y83|;2yai|;2yqe|;2ywd|;2yx1|;2yxu|;2yyg|;2yz6|;2yzg|;2yzl|;2z07|;2z1c|;2z3n|1;2za6|;2zcm|;2zga|;2zqz|;2zvc|;302m|;306l|;30nd|;30tv|;313v|;3163|;31cf|;31ko|;31om|;31ov|1;31ra|;31ul|;31us|;3275|;329u|;32ln|;32ye|;32yr|1;3305|;33aq|;33d8|;33dc|;33de|1;33dh|;33dm|;33dr|;33dw|;33em|;33gq|1;33gx|;33hh|;33l0|;33oa|;33pw|;33r8|;33ug|2;33uv|;340c|;340s|;341r|;342r|1;346f|;346p|;3473|;3484|;348t|;34pk|;3533|;354u|;356m|;356o|;3572|;358g|;35cj|;35dl|1;35oe|;35u3|;35w6|;35z7|;364m|;3666|;36cu|;36ik|;36j4|;36zt|;3739|;37ch|;37h2|;37jd|;37t9|;380m|;381b|;385y|;38d0|;38jo|;38jy|;38l3|;38mi|;38nf|;38xe|;38zu|;3905|;395u|;399l|;39al|;39b9|;39cu|;39e4|;39ri|;39u6|;39w9|;39xq|;3a1z|;3a7z|;3aep|;3ag9|;3agk|;3alw|;3av8|;3avg|;3avo|;3b2v|;3b37|1;3b3l|;3b8y|;3bd7|;3bdw|;3bmp|;3bqm|;3brq|;3bs2|;3bs5|;3buq|;3bvc|;3bvs|;3bxf|;3bz0|;3c2c|;3c2o|;3c3f|;3c3w|;3c47|;3c68|;3ca5|;3ciq|;3ckq|;3ckw|;3cli|;3cr0|;3cw2|;3ddq|;3df4|;3di5|;3dul|;3duy|;3dxt|;3dyn|;3dzt|;3e1p|;3e3i|;3e54|;3e6k|;3e7r|;3e9r|;3ei1|;3ek3|;3ela|;3en1|;3eww|;3exx|;3f6c|;3f92|2;3fg4|;3fgt|;3fi1|;3g0q|1;3g1q|;3g28|;3g3t|;3ggk|1;3ghd|;3gjo|;3gk3|;3gni|;3go3|;3gpe|;3gz6|;3h51|;3h6c|;3hc4|;3hkj|;3hku|;3hl3|;3hoc|;3hrs|;3hwz|;3hy8|;3i1c|;3i5r|;3id3|;3iiy|;3ikb|;3iwn|;3iwy|;3j03|;3j65|;3j7w|;3j9x|;3jdo|;3jhn|;3jk8|1;3jrr|;3jsq|;3k92|;3k95|;3ka3|;3kav|1;3kca|1;3kf2|;3kfd|;3kg3|;3khd|;3kih|;3kjx|;3kkd|;3kkk|;3kqp|;3krz|;3kyl|;3l00|;3l2p|;3l6j|;3l73|;3l7b|;3l7j|;3l86|;3lah|;3ld7|;3ldi|;3lf6|;3lko|;3m3k|;3m41|;3mhc|;3mq7|;3mv3|;3my8|;3mzd|;3n0w|;3n68|;3nba|;3nn6|;3o7f|;3obf|;3od1|;3oe5|;3oeh|;3oga|;3ohw|;3oij|;3oix|;3opa|;3opj|;3ore|;3orz|;3oua|;3oxl|;3p1s|;3p9u|;3pfw|;3pkn|;3pwx|;3pxe|;3py2|;3q2a|;3qp2|;3tc6|;3tch|;3tcj|;3tcq|;3tcs|;3td1|;3tdi|1;3tdo|;3tdu|;3te1|;3te3|;3te6|;3tec|;3tf0|;3tf3|;3tfh|;3tft|;3tfz|;3tg2|;3tg8|;3tgw|;3thp|;3thz|;3ti2|;3z9g|;41vc|;42g9|;42qy|;464k|;464v|;4651|;4654|;4656|;465e|;465k|;465o|;465v|;4667|;466e|;466q|;4676|;467h|;467n|;467r|;4684|;468p|1;4692|;4698|;469e|;469i|;46ab|;46aj|1;46ap|;46at|;46ay|;46b1|;46bg|;46bn|;46bv|;46bz|;46ca|;46cg|1;46dh|;46dj|;46ek|;46fp|;46hc|;46hq|1;46ic|;4an2|;4ay4|;")) +q.push(A.F("Noto Sans Javanese","https://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxJnkFFliZYWj4O8.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;xhc|25;xjj|a;xjy|1;")) +q.push(A.F("Noto Sans KR","https://fonts.gstatic.com/s/notosanskr/v27/PbykFmXiEBPT4ITbgNA5Cgm20HTs4JMMuA.otf","w|2m;4g|2r;7k|3;7u|1;88|3;8z|1;93|1;98|3;9e|1;a0|5;b6|;bk|1;bz|1;ct|f;e0|1;gh|;gx|;jf|;jr|;jt|2;k9|;kq|1;lc|1;lg|;lj|;lo|;pd|g;pv|6;q9|o;sh|;sw|1r;up|;3cw|73;5z2|1;61s|2h;6bm|1;6c0|6;6c8|2;6cc|2;6cg|2;6cl|2;6cw|;6cy|1;6d1|;6d5|3;6de|;6dj|2;6dt|;6es|;6g9|;6gb|1;6hp|1;6io|;6ir|;6it|;6ix|1;6j3|;6j7|;6ja|;6jl|1;6jq|1;6jv|;6jy|;6k5|;6kb|;6lc|b;6ls|b;6mo|9;6ns|1;6o4|2;6ob|1;6og|;6oi|;6ok|;6p2|3;6ph|;6ps|;6pu|1;6px|6;6q7|;6q9|2;6qd|;6qi|;6ql|3;6qr|;6qt|9;6r8|3;6rh|;6rn|;6rp|;6rs|;6rw|;6s2|;6sg|2;6sk|3;6sq|1;6su|1;6sy|1;6t2|1;6te|5;6tm|1;6tx|4;6u8|;6ud|;6v3|;6vu|1;6wf|;6x1|2;6xe|;6xk|;6y1|1;71s|1;726|e;72m|;72y|1;74z|;76o|97;7g1|2;7g6|1;7gc|1;7gg|1;7gm|6;7gu|5;7he|4;7hr|;7i8|3;7id|1;7ih|;7im|1;7iu|1;7j0|3;7jj|;7k0|2;7kw|f;7le|b;7mo|;7nh|1;7pe|;7pv|;7q2|;7r1|;7r3|1;7rq|;7sm|t;7tt|;850|1;88v|;8ai|1;8hx|2;8ii|;8lx|;94q|1;96o|p;97f|2g;9a8|5x;9gw|b;9hc|1r;9j5|2d;9ll|2u;9ol|16;9pt|2l;9sg|17;9ts|z;9v4|1a;9wg|7f;a3x|5u;ae2|;afr|;ahh|;aht|;aim|;anz|;ar3|;atf|2;aue|;aw3|;awf|;awq|;b0c|;b2k|;b2w|;b5v|;b7e|;b8n|;b99|;bc0|;bc5|;bcz|;bdc|;bdx|;bee|;bi1|;bl0|;bmk|;bna|;bnn|;boj|;bqx|;bub|;bv8|;bvo|;bvx|;bzx|1;c1o|;c2f|;c4f|;c70|;c76|;cec|;cfh|;cfx|;cg4|;cof|;cok|;cpu|;crt|;csp|;cvr|;cz0|;d3t|;ddn|;ddz|;dev|;dey|;dhs|;dn6|;dte|;dug|;dyv|;dz2|;dzo|;dzs|;dzx|;e25|;e3w|;e4d|;e5b|;ear|;ebn|;ec6|;ecm|;eg5|;eji|;ejp|;ekr|;emq|;enh|;erc|;esf|;eso|;et7|;evn|;ewh|;f6n|1;f8b|;feo|1;fer|;fev|4;ff1|1;ff5|;ff8|2;ffc|1;ffi|1;ffo|;ffq|;ffs|;ffv|2;fg0|2;fg6|;fg8|1;fgb|;fgf|;fgi|1;fgl|;fgr|;fgt|2;fh2|5;fh9|2;fhj|;fhn|2;fht|;fhv|;fhy|1;fi2|2;fi6|;fi8|;fia|;fid|1;fig|1;fij|1;fim|4;fis|1;fiw|1;fiz|1;fj2|4;fj8|2;fjc|;fjf|3;fjk|;fjn|1;fjq|;fjt|2;fk0|1;fk4|;fk6|1;fka|1;fkd|;fkk|5;fkt|2;fkx|;fkz|2;fla|;flc|;fle|1;flh|2;fln|;flp|;flr|2;fm1|2;fm5|4;fmi|;fml|;fn3|1;fn8|;fna|;fnc|;fne|;fng|2;fnm|1;fnq|3;fnv|;fnx|4;fo3|4;fo9|6;fop|1;fov|1;foz|1;fp2|;fp4|9;fpf|1;fpi|;fpk|3;fpp|5;fpw|;fpy|2;fq2|3;fqm|1;fqq|;fqt|1;fqx|;fqz|;fr3|;fr5|4;frd|1;frg|8;frr|4;frx|4;fs3|;fse|3;fsj|3;fso|;fsq|;fsu|;fsw|;fsy|;ft1|2;ft5|;ft7|;ft9|;ftb|;ftd|3;fti|;ftk|2;fto|;ftq|1;ftt|d;fu8|;fuj|;fur|1;fuv|3;fv2|1;fv7|;fv9|1;fvc|2;fvg|;fvk|;fvm|;fvp|1;fvu|;fw0|;fw2|;fw4|2;fw8|;fwg|;fwj|;fwl|;fwr|;fwt|;fwx|1;fx0|;fx2|;fx4|3;fx9|1;fxe|;fxo|2;fxu|3;fxz|;fy5|2;fya|;fyc|1;fyh|1;fyn|;fyp|;fys|2;fyy|1;fz2|;fz6|;fz9|2;fzd|;fzg|2;fzp|;fzt|;fzv|;fzy|6;g06|1;g09|;g0b|1;g0g|;g0i|3;g0n|1;g0q|2;g0v|;g0x|1;g10|1;g13|;g16|1;g1d|2;g1h|;g1j|5;g1r|2;g1v|6;g23|3;g28|;g2a|;g2c|3;g2i|;g2k|;g2q|;g2t|;g2v|7;g35|;g39|3;g3g|;g3k|;g3m|;g3q|;g3t|1;g3w|1;g3z|;g41|2;g45|4;g4e|;g4g|;g4i|3;g4q|2;g4w|2;g52|1;g59|1;g5g|2;g5l|4;g5u|;g5w|;g5y|;g63|3;g68|1;g6h|;g6l|;g6o|1;g6r|3;g6w|2;g71|;g74|3;g7a|2;g7e|;g7i|;g7l|;g7n|;g7q|1;g7x|;g84|3;g89|1;g8e|;g8g|3;g8m|5;g8z|1;g92|1;g95|4;g9g|3;g9m|1;g9p|2;g9t|;ga1|1;ga7|;gaa|;gac|1;gaf|;gai|;gal|;gan|;gaq|1;gav|2;gb1|;gb5|2;gbb|1;gbf|;gbj|1;gbn|1;gbr|;gbt|5;gc9|;gce|;gch|;gcj|;gcl|;gcn|;gcp|;gcs|1;gcy|;gd1|1;gd4|1;gd7|;gd9|7;gdi|;gdp|;gdu|1;gdx|;ge0|3;ge6|5;ged|;geg|;gei|;gek|1;gen|1;get|2;gex|1;gf4|1;gf7|;gfb|;gfe|;gfj|;gfl|;gfq|;gfs|3;gfx|4;gg3|2;gg7|3;ggd|;ggh|3;ggn|;ggq|;ggs|;ggu|;ggw|1;gh0|;gh2|;gh4|1;gh8|;gha|7;ghj|4;ghp|2;ghu|;ghw|;gi6|;gib|;gie|;gig|;gii|;gil|;gin|1;git|1;giy|;gj1|1;gj6|1;gja|;gjd|;gjf|;gjm|1;gjp|;gjs|5;gk4|;gk6|1;gk9|;gkb|;gkf|;gkh|5;gko|g;gld|;glf|1;glk|9;gm3|;gm5|;gm7|1;gme|;gmh|;gmj|1;gmm|;gmp|;gmr|;gmu|;gmw|1;gmz|3;gn4|;gn6|;gna|;gnc|;gne|;gni|;gnl|;gnx|;gnz|;go2|;go4|;go6|;go8|;goa|1;gog|1;goj|;gol|1;gor|2;gov|1;gp0|;gp2|1;gp7|5;gpi|;gps|;gpu|;gpw|1;gq0|;gq3|1;gq7|;gqa|1;gqg|;gqj|2;gqn|5;gqu|3;grl|;grp|1;grs|1;grx|1;gs1|1;gsa|;gsd|;gsf|;gsk|;gsm|1;gsp|;gsu|2;gt0|;gt8|;gtn|;gtq|1;gtt|;gtv|;gtx|;gu1|;gu4|;gu6|;gu8|;gua|;guc|;gue|;gui|;gun|;gur|;guu|1;gv0|;gv2|;gv7|;gvv|6;gw3|1;gw6|1;gw9|2;gwh|;gwj|1;gwo|2;gws|3;gwz|1;gx3|5;gxa|;gxc|;gxv|;gxx|;gxz|;gy1|;gy9|;gyc|;gyi|2;gyn|1;gyq|2;gzb|;gzh|2;gzo|;gzq|;gzs|1;gzw|4;h02|;h04|;h06|1;h0p|;h0s|;h0v|;h0y|;h10|;h12|3;h17|;h1b|;h1d|1;h1l|;h1n|;h1p|2;h1v|;h2c|1;h2g|5;h2n|;h2q|;h2s|;h2u|;h2w|;h2y|;h34|;h38|;h3a|1;h3j|;h3t|1;h45|;h47|;h4c|;h4e|;h4j|1;h4m|;h4s|;h4w|3;h54|2;h59|;h5d|;h5j|;h5m|1;h5q|2;h5v|;h5y|1;h63|;h65|1;h68|;h6b|;h6f|;h6h|1;h6l|;h6n|;h6p|3;h6v|4;h71|;h76|1;h7a|;h7c|;h7g|;h7j|;h7p|;h7s|2;h7w|2;h80|;h8b|;h8e|;h8g|2;h8n|;h8q|;h8s|5;h9d|;h9g|;h9i|4;h9q|3;h9v|;h9x|;h9z|1;ha3|1;haa|;hag|;haj|1;har|;hat|;hb2|;hb4|;hb6|2;hbs|;hbx|;hc3|;hc6|3;hcb|;hce|1;hch|1;hcs|;hcv|1;hd0|;hd5|;hd9|1;hdc|;hdf|1;hdi|1;hdl|4;hds|;hdu|4;he0|3;hef|;heh|;hel|1;heo|1;her|1;heu|1;hey|;hf1|;hf3|2;hf8|1;hfe|;hfk|;hft|4;hfz|3;hg4|;hg7|3;hge|;hgh|1;hgk|;hgp|;hh1|;hh5|;hh8|2;hhc|1;hhf|;hhh|;hhl|1;hho|1;hhs|;hhv|;hi4|3;hi9|;hib|;hig|1;hij|;him|;hio|1;hir|;hiy|1;hj2|;hj5|;hj7|;hj9|;hjb|;hji|;hjl|;hjn|2;hjs|2;hjw|3;hk1|;hk4|;hkb|1;hke|2;hki|;hkp|2;hkt|;hky|;hl2|;hl4|;hl6|;hlb|1;hlg|2;hll|3;hlu|;hlw|1;hlz|;hm1|6;hm9|1;hmf|1;hml|1;hms|;hmv|2;hn0|;hn2|3;hn7|2;hnb|1;hne|;hng|;hnk|;hnm|;hnr|;hnt|5;ho2|2;ho6|;ho8|;hod|;hoi|2;hoq|;hos|1;hox|2;hp2|1;hp5|;hp9|;hpf|2;hpj|1;hpo|;hpr|;hpu|;hpx|1;hq0|1;hq3|;hq6|1;hq9|;hqb|;hqe|;hqg|3;hql|;hqo|4;hqx|1;hr0|2;hr6|4;hrc|;hre|2;hri|;hrk|;hrm|;hrr|5;hrz|;hs1|;hs3|;hs9|1;hsd|;hsh|;hsj|;hso|1;hsr|1;hsv|1;hsz|;ht1|;ht3|;ht5|;ht7|;ht9|;hth|1;hto|;htr|2;hty|1;hu1|;hu3|1;hu8|1;hui|;huo|;huq|1;huu|1;hux|1;hv1|;hv6|;hvb|;hvj|;hvo|;hvx|;hw0|;hw2|1;hw5|;hwa|1;hwe|1;hwi|;hwk|;hwn|;hwq|;hwz|;hx1|;hx6|5;hxd|1;hxg|;hxk|1;hxn|1;hxx|2;hy1|2;hy5|;hy8|6;hyh|;hyj|;hyl|2;hyu|;hyy|1;hz1|;hz4|;hz9|;hzc|1;hzf|1;hzq|;hzt|;hzv|;i05|;i08|;i0a|;i0d|;i0g|;i0i|;i0k|;i0u|2;i0z|;i11|;i18|;i1c|1;i1g|4;i1m|3;i1r|;i1t|;i1v|3;i21|;i23|;i28|1;i2d|1;i2g|;i2i|;i2k|;i2n|3;i2t|;i2v|5;i33|;i37|;i39|8;i3j|;i3m|4;i3w|;i3y|;i40|;i43|3;i48|1;i4f|1;i4i|5;i4s|;i4w|;i4y|2;i52|2;i57|;i5a|1;i5d|1;i5g|5;i5n|5;i5x|1;i60|2;i67|;i69|;i6c|b;i6p|;i6s|;i6u|;i6x|;i73|1;i76|2;i7c|;i7f|;i7l|;i7s|9;i85|3;i8b|;i8d|1;i8g|1;i8l|;i8r|;i8w|;i8y|;i90|1;i94|;i98|;i9b|;i9d|;i9f|;i9l|1;ia0|;ia2|;ia4|;ia7|3;iac|;ial|;iap|;iar|;iat|8;ib5|;ib7|;ib9|;ibb|1;ibe|;ibi|;ibk|;ibv|;ic2|;ic9|;icg|;ico|1;ict|;icv|2;id0|;id2|;id7|;id9|;idi|1;idp|1;ids|1;idw|5;ie3|;ie7|;iea|;iec|;iee|1;ieh|;ies|;if1|;if5|1;if8|;iff|1;ifi|;ifk|;ifn|1;ig9|;igc|;igf|;igh|;igx|1;ih0|;ih2|1;ih7|;ihe|;ihg|1;ihl|;ihp|;ihs|;ihu|;ihz|;ii2|1;ii6|;ii8|;iif|1;iii|;iik|2;iix|;iiz|;ij1|;ij5|2;ija|;ije|1;ijh|1;ijk|2;ijp|3;ijv|;ijy|;ik1|4;ik7|2;ikb|;ikd|1;iki|1;ikm|;ikp|;iks|;ikx|;il1|1;il5|2;il9|;ilc|;ilh|;ilk|;iln|;ilp|;ilv|;ily|2;im5|;im7|1;imb|2;imf|;imk|;imm|;ims|1;imw|;in2|1;in5|2;inc|;ine|2;ink|4;inq|a;io3|1;io7|;ioa|1;iof|;iol|2;ioq|;ios|;iow|;ip1|3;ip7|;ip9|;ipf|;iph|3;ipp|1;ipt|1;iq0|3;iq7|2;iqb|;iqd|1;iqh|2;iql|6;iqt|;iqv|2;ir0|;ir5|;ir7|1;ira|1;ire|1;iri|1;irl|;irn|1;irr|1;iru|1;irz|;is1|4;is7|1;isb|;isf|;isi|;isl|2;isp|;ist|;isx|;it0|1;it3|;it6|;it8|;ita|;itc|;iti|;itk|;itm|;ito|;itq|;its|1;itv|1;ity|3;iu3|;iu5|;iu9|1;iuc|3;iuh|4;iuo|1;iur|;iuv|;iux|;iv0|;iv3|3;iv9|;ivb|5;ivk|2;ivr|2;ivw|;ivy|;iw0|1;iw3|;iw7|3;iwc|3;iwj|;iwl|;iwn|;iwp|;iws|1;iwz|2;ix4|1;ix8|2;ixc|;ixe|1;ixh|4;ixo|5;ixw|;iy0|;iy3|;iy5|2;iy9|;iyd|;iyg|;iyj|2;iyn|;iyy|;iz1|;iz3|;iz6|;iz8|3;izd|;izf|2;izk|1;izp|5;izz|1;j03|;j0h|2;j0m|2;j0q|1;j0t|;j0w|;j0y|;j11|;j15|1;j19|;j1b|1;j1e|3;j1k|5;j1r|1;j1x|;j29|;j2b|3;j2h|4;j2n|;j2q|;j2s|3;j2y|1;j33|1;j36|2;j3b|;j3e|;j3k|6;j3s|;j3v|3;j44|3;j49|;j4b|;j4f|;j4h|;j4j|;j4l|;j4n|b;j5c|4;j5i|6;j5s|1;j5v|;j5y|;j60|1;j65|2;j6c|1;j6i|2;j6m|1;j6q|;j6v|1;j6z|2;j74|;j78|;j7b|;j7g|;j7i|1;j7m|;j7o|;j7q|2;j7u|3;j7z|;j82|3;j88|2;j8c|1;j8f|5;j8n|1;j8q|1;j8u|;j8w|1;j8z|4;j96|;j98|2;j9d|2;j9m|;j9p|1;j9s|4;j9y|;ja0|2;jac|;jaf|2;jaj|1;jam|1;jaq|;jau|;jaw|;jay|4;jb7|;jba|6;jbj|;jbp|;jbr|;jby|1;jc3|;jc6|;jci|;jcm|2;jcq|;jcs|4;jd3|1;jd6|;jd8|2;jdc|2;jdg|2;jdk|;jdm|;jdq|1;jdt|1;jdy|1;je1|1;je5|1;je8|6;jeh|;jem|3;jer|;jev|7;jf5|2;jfb|1;jff|1;jfi|;jfn|;jfs|;jfy|;jg1|;jg3|;jg6|;jg9|1;jgc|;jge|2;jgj|1;jgm|;jgp|1;jgv|;jgx|1;jh0|4;jh7|;jhi|;jhk|;jhn|1;jhq|;jht|1;jhx|;ji1|;ji4|1;jia|;jic|9;jin|a;jiz|1;jj5|;jjg|3;jjl|;jjn|;jjp|2;jjx|2;jk1|1;jk7|;jk9|;jkc|;jkg|2;jl4|;jl6|1;jlb|;jll|2;jlp|1;jlu|2;jly|;jm1|;jm4|4;jmb|;jmd|;jmf|;jmi|;jmv|2;jmz|;jn2|;jn5|1;jna|1;jne|1;jnj|1;jnn|1;jnr|3;jnw|;jny|1;jo2|;jo6|;jo8|;job|1;jof|3;jol|;jon|3;jos|;jpa|;jpc|;jpf|1;jpi|;jpl|;jpr|1;jpu|;jpy|;jq2|1;jq7|2;jqb|;jqh|;jqj|;jql|1;jqq|;jqs|3;jra|;jrd|;jrh|;jrj|;jrm|;jro|;jrq|2;jrw|;js0|;js2|;js4|1;js8|;jsa|3;jsf|1;jsk|;jsm|;jsq|;jsu|;jtk|;jtn|;jtq|;jts|;jtz|;ju1|;ju5|;ju7|;jub|;jug|3;jul|;jut|;juw|;jv4|3;jv9|;jvd|2;jvh|2;jvo|1;jvt|;jvv|;jvx|1;jw0|;jw2|;jwb|1;jwe|1;jwh|;jwk|1;jwn|;jwp|1;jwt|1;jww|;jwy|;jx0|1;jx3|1;jx6|;jxc|3;jxh|2;jxo|1;jxr|;jxt|1;jxw|;jy2|;jy6|;jy8|;jya|;jyc|;jyf|;jyi|;jyn|;jys|;jyw|1;jz1|;jz6|2;jze|2;jzj|;jzm|;jzo|5;jzv|;jzx|2;k03|;k05|;k08|1;k0d|2;k0h|1;k0k|5;k0t|1;k0y|1;k12|;k18|1;k1e|;k1g|1;k1j|1;k1q|;k1t|2;k1x|;k1z|;k21|;k24|;k28|1;k2f|;k2h|;k2j|2;k2n|;k2p|;k2s|1;k2v|;k2z|2;k33|3;k3b|;k3d|;k3g|1;k3j|;k3l|5;k3u|2;k3z|;k42|;k47|;k4g|1;k4j|;k4l|1;k4o|1;k4s|1;k4x|1;k50|;k56|3;k5b|1;k5e|1;k5i|1;k5l|1;k5o|5;k5v|2;k63|1;k66|3;k6b|2;k6f|1;k6j|;k6l|;k6n|2;k6s|3;k6y|1;k75|3;k7c|1;k7f|1;k7i|3;k7t|2;k7x|5;k84|5;k8b|5;k8j|1;k8m|5;k8t|;k8v|;k90|;k93|2;k97|1;k9a|;k9c|1;k9i|2;k9m|;k9p|1;k9s|;k9u|1;ka3|1;ka6|;ka9|4;kag|3;kam|3;kas|5;kb7|1;kba|;kbc|6;kbk|;kbn|;kbq|;kbs|2;kbw|;kby|2;kc2|2;kc7|3;kcc|;kce|2;kcj|2;kco|5;kcw|;kd0|1;kd3|;kd7|;kd9|3;kde|1;kdi|2;kdm|4;kdt|;kdv|1;kdy|;ke2|;ke5|1;ked|1;keh|;kej|1;kem|3;ker|;keu|;kf0|4;kf9|;kfe|;kfg|1;kfj|4;kfp|;kfr|;kfv|1;kfy|1;kg3|;kg7|;kg9|;kgb|1;kgf|1;kgi|1;kgl|;kgn|3;kgs|1;khb|1;khe|1;khi|2;khq|;kht|;khw|1;ki2|;ki7|5;kie|4;kil|2;kiq|;kix|;kj0|;kj3|2;kj7|3;kjd|;kjf|;kji|1;kjn|1;kk0|;kk2|1;kk6|1;kkd|1;kkh|1;kkq|;kku|1;kkx|1;kl0|;kl4|1;kl7|2;klc|4;kli|;klk|1;klq|;kls|1;klv|1;kml|;kmn|;kms|;kmu|1;kn2|1;kn5|;kn7|;kn9|1;knj|;knn|1;knr|;knv|;knx|;knz|4;ko7|1;kod|;kof|2;koj|;kol|1;kp0|1;kp5|4;kpc|;kpe|;kph|3;kpm|;kpr|1;kpv|;kpz|1;kq4|;kq6|;kqa|;kqh|4;kqo|1;kqs|2;kqz|;kr1|2;kr5|1;krd|;krg|;krr|;ks0|;ks4|;ks6|;ks9|;ksd|;ksf|;ksi|;ksq|;ksv|;ksz|2;kt3|;kt5|1;kt9|1;ktc|3;kth|;ktk|;ktm|5;ktv|;ktx|;ktz|2;ku3|;ku5|;kum|;kup|;kus|1;kuw|;kuz|1;kv3|;kv8|3;kvh|1;kvk|2;kvo|;kvr|;kvu|2;kvy|3;kw3|;kw7|;kwa|6;kwj|;kwm|;kwy|;kx1|5;kx9|;kxe|;kxl|;kxn|;kxp|;kxr|1;kxu|;kxx|;ky2|1;ky9|3;kyf|;kyh|;kyj|;kym|1;kyp|;kyr|;kyx|;kyz|;kz9|;kzc|3;kzh|;kzn|2;kzr|6;l00|;l02|1;l08|2;l0f|;l0h|1;l0k|;l0m|;l0r|;l0y|;l11|;l1b|1;l1f|1;l1l|;l1p|1;l1s|;l1w|;l1z|;l24|1;l27|1;l2a|1;l2m|;l2r|;l2u|;l2z|1;l33|;l36|1;l3n|;l3u|5;l48|;l4a|;l4c|;l4m|;l4r|1;l4y|2;l56|;l58|;l5d|1;l5i|;l5q|;l5s|1;l5v|;l64|;l6a|;l6f|4;l6l|2;l6r|;l6u|1;l6x|1;l70|;l72|;l74|;l78|;l7d|2;l7j|8;l7t|1;l7z|;l82|;l87|4;l8f|1;l8i|2;l8m|;l8p|1;l8t|;l8x|;l92|;l94|;l9a|;l9e|;l9g|;l9n|;l9p|2;l9u|1;l9x|;l9z|;la2|;la4|1;la7|2;lac|2;laj|;lal|;lan|;laq|2;lau|2;lay|1;lbf|1;lbj|;lbn|;lbs|;lbz|;lc5|;lc8|;lcf|2;lcj|1;lcn|;lcr|;lcz|1;ldf|5;ldq|5;le3|;le6|2;lea|3;lef|;leh|7;leu|;lew|2;lf1|;lf4|;lf6|;lf8|;lfa|;lfe|;lfh|1;lfl|8;lfw|1;lg0|;lg2|4;lg8|3;lgi|;lgr|1;lgu|;lgw|1;lgz|;lh2|;lh4|1;lh7|4;lhd|1;lhg|2;lhl|1;lho|;lhs|1;lhv|2;lhz|;li1|4;li8|3;lid|;lig|;lij|;lim|3;lir|;lj3|;lj8|;ljb|;lje|2;ljl|1;ljo|;ljr|;ljt|;ljv|;ljy|1;lk3|;lk5|;lk7|5;lke|;lki|;lkl|1;lko|6;lkx|;lll|1;llo|;llt|;llv|4;lm1|1;lm4|;lm6|1;lma|;lmc|;lmf|2;lmn|;lmq|;lmt|;lmv|2;ln0|3;ln5|;ln7|4;lnu|2;lnz|;lo2|;lo4|1;lo7|1;loc|;lof|1;loj|5;lor|1;lov|3;lp2|;lp4|2;lp9|1;lpc|6;lpk|;lpm|2;lpq|;lpt|;lpv|;lpx|7;lqd|;lqg|;lqi|;lqv|;lqx|2;lr1|;lr3|7;lrc|;lrf|2;lrj|;lrm|;lro|;lrq|2;lru|;lrw|2;ls0|;ls3|2;lsa|;lsd|1;lsh|;lsj|3;lso|;lsr|1;lsu|1;lsz|;lt3|;lt7|;lta|1;lte|1;lth|;ltm|;lu7|1;lud|1;lug|;luk|1;lun|;luq|;lut|;luv|1;luy|1;lv3|;lv5|1;lv9|2;lve|;lvh|;lvm|3;lvs|1;lvv|1;lvy|;lw1|;lw3|2;lw9|;lws|1;lwv|;lwy|;lx0|1;lx3|1;lx8|;lxa|1;lxd|1;lxg|;lxi|;lxl|;lxo|;lxr|;lxt|;lxv|2;ly1|1;ly8|;lya|2;lye|2;lyi|3;lyo|3;lyw|;lz0|;lz2|1;lz5|;lzj|;lzl|1;lzo|;lzr|8;m01|3;m06|;m0d|4;m0k|;m0o|;m0q|;m0s|2;m0x|1;m10|;m12|3;m17|3;m1c|;m1e|;m1g|4;m1r|;m1t|;m1v|2;m1z|1;m22|;m26|1;m29|;m2b|;m2e|;m2h|;m2m|;m2o|3;m2u|1;m2x|1;m38|1;m3c|;m3e|1;m3i|3;m3o|2;m3t|;m3v|1;m3y|1;m41|;m43|1;m46|;m4a|;m4e|;m4h|;m4l|2;m4p|;m4r|;m4v|;m4x|2;m51|;m54|;m56|5;m5f|;m5i|2;m5r|1;m5u|;m5z|1;m64|;m66|;m6c|;m6e|;m6k|;m6m|;m6o|1;m6r|;m6w|;m71|1;m77|;m7a|;m7d|;m7f|1;m7j|1;m7s|;m7w|2;m81|;m85|1;m8a|;m8e|;m8i|;m8l|;m8o|3;m8x|;m90|;m92|;m97|5;m9f|;m9j|3;ma0|;ma2|1;ma7|;mab|1;mag|1;mak|1;man|;mb3|;mb5|;mbd|1;mbh|;mbn|1;mbq|;mbt|;mbw|;mc9|1;mcc|;mce|;mcg|1;mcm|;mct|4;md2|;mdf|;mdi|1;mdl|1;mdo|;mdq|;mds|;mdu|1;mdx|2;me1|;me4|2;mea|;mec|5;mek|;mem|;mf1|;mf4|;mf8|1;mfb|3;mfj|;mfm|;mfo|;mft|;mfv|;mfz|3;mg4|;mg8|1;mgc|;mgf|;mgh|1;mgp|1;mgu|;mgx|;mgz|;mh4|1;mh7|;mha|2;mhe|;mhg|2;mhl|;mhn|;mhr|1;mhx|2;mi4|2;mih|;mij|6;miu|1;miz|2;mj4|;mj8|;mjb|;mje|1;mjj|;mjp|;mjs|;mju|;mjw|1;mk0|;mk2|;mk5|1;mk8|3;mkd|3;mki|;mkm|2;mkr|1;mky|2;ml2|;ml4|3;ml9|;mlb|;mld|2;mlj|;mll|;mlr|;mlu|;mlw|;mm0|1;mm5|;mm8|2;mmf|;mml|;mmq|;mmu|;mn6|;mnb|;mng|1;mnj|;mnn|2;mo0|;mo2|;mo4|;mo9|;moe|;mog|;moi|;mon|;mop|;mox|1;mp1|;mp4|1;mp8|;mpg|;mpj|6;mq1|1;mqb|;mqe|3;mqj|2;mqq|;mqt|;mqv|4;mr5|;mr8|;mra|1;mri|1;mrn|2;mry|;ms0|;ms2|;ms7|1;msc|;msg|;mso|4;msv|1;msy|;mt1|;mt3|1;mt6|2;mtd|;mtg|;mti|3;mtn|;mtq|;mtu|;mtw|4;mu6|2;mue|1;muh|2;mul|;muq|2;muv|;mux|;muz|2;mv3|1;mv6|;mva|;mvc|2;mvg|1;mvj|;mvm|;mvq|3;mvx|1;mw0|;mw2|4;mw9|2;mwd|1;mwl|;mwn|2;mwt|1;mwx|;mwz|4;mx5|;mxf|;mxj|1;mxn|;mxp|;mxr|3;mxw|2;my0|;my2|2;my6|8;myg|;myi|;myn|7;myw|1;myz|1;mz2|;mz9|;mzb|;mzd|7;mzm|3;mzs|2;mzx|6;n0d|1;n0g|;n0i|5;n0p|3;n0w|;n14|;n18|3;n1d|;n1f|;n1h|;n1j|1;n1m|1;n1s|2;n1x|1;n20|1;n24|1;n27|1;n2e|;n2i|;n2l|;n2n|1;n2r|1;n2w|;n2y|2;n34|;n36|1;n3a|;n3d|;n3i|;n3m|1;n3r|;n41|;n43|1;n4c|2;n4h|;n4j|;n4l|;n4o|;n4q|2;n4u|1;n4y|4;n54|;n57|1;n5c|3;n5j|1;n5m|1;n5r|;n5v|;n5z|;n62|2;n66|1;n69|;n6b|1;n6h|4;n6o|;n6q|;n6s|3;n6y|1;n73|1;n79|1;n7c|;n7e|;n7j|;n7q|2;n7u|1;n7y|1;n81|1;n84|;n89|1;n8d|;n8j|;n8l|;n8p|;n8r|;n8x|4;n94|1;n98|2;n9c|;n9e|1;n9h|;n9j|;n9m|;n9p|1;n9u|3;na0|1;na3|;na6|;naa|2;naf|;nao|;naq|2;nax|1;nb0|;nb3|2;nbb|2;nbf|;nbh|;nbk|;nbp|;nbt|;nbz|3;nc4|;nc6|1;ncf|2;ncj|1;ncr|;ncy|1;nd2|3;nd8|;nda|;nde|;ndh|1;ndk|;ndo|;ndt|1;ndw|1;ndz|2;ne4|6;nee|;neg|;nei|4;neo|1;ner|1;neu|1;nez|;nf2|;nf4|;nf6|1;nfa|1;nfe|2;nfi|;nfo|;nfw|;nfy|;ng4|;ng6|;ng8|;nga|;ngf|;ngi|1;ngm|;ngo|;ngq|;ngs|2;ngy|2;nh2|;nh5|;nh7|1;nha|1;nhd|;nhf|2;nhj|;nhm|;nho|;nhq|;nht|1;nhw|;ni0|1;ni3|1;ni6|4;nic|;nif|5;nio|;niy|1;nj2|2;nj9|1;njc|1;njo|;njr|5;njy|;nk0|;nk3|;nk6|1;nkd|;nki|;nkq|1;nkv|4;nl1|1;nl4|;nl7|1;nlj|;nll|;nlp|2;nm3|;nm5|1;nm9|;nme|;nmh|;nmm|;nmo|;nmq|;nmt|;nmy|;nn0|2;nn4|;nn7|;nnd|;nnf|2;nnj|;nnr|;nnt|;nnx|;no7|;no9|3;noe|;noh|2;nol|;non|;nop|;not|3;noz|;np4|;np6|3;npe|;npj|;npo|;npr|;npt|1;npw|;nqa|;nqd|2;nqk|1;nqo|;nqq|;nqs|;nr7|;nr9|;nrj|;nrw|1;ns0|;ns7|1;nsa|2;nse|1;nss|;nsx|;nt0|;nt3|;nt8|3;ntd|;ntf|;ntj|;ntr|;ntv|1;ntz|2;nu4|1;nui|2;num|;nup|;nut|;nuw|;nuy|1;nv2|3;nv8|1;nve|;nvk|;nvr|1;nvu|;nvw|;nvz|;nw4|1;nw7|;nwa|3;nwh|;nws|;nwu|1;nwx|1;nx2|;nx5|;nxj|;nxm|3;nxt|;ny2|2;ny6|;ny8|1;nyc|6;nyo|;nyr|5;nyy|6;nz6|;nz9|;nzb|1;nzh|;nzt|1;nzw|;nzz|2;o0a|1;o0d|2;o0h|;o0k|;o0r|;o0t|;o12|2;o16|1;o1a|;o1c|1;o1f|1;o1k|9;o1w|;o1y|;o21|2;o29|1;o2d|;o2g|;o2m|1;o2q|2;o2u|1;o2x|3;o39|;o3c|;o3f|;o3k|2;o3p|;o3s|;o3u|3;o44|;o47|3;o4c|;o4e|2;o4i|;o4n|;o4u|;o4w|1;o4z|;o52|1;o55|;o57|2;o5b|1;o5e|;o5h|1;o5l|;o5o|2;o5z|;o68|2;o6e|;o6h|;o6j|;o6o|;o6s|2;o6x|1;o71|9;o7c|;o7e|;o7m|1;o7p|4;o7v|;o7z|1;o83|;o89|1;o8c|;o8e|1;o8j|;o8m|;o8p|2;o8u|1;o90|1;o93|1;o96|1;o9j|;o9l|;o9o|1;o9r|1;o9u|1;o9x|1;oa2|;oa5|;oa7|;oac|;oae|;oag|2;oal|;oan|;oau|;oaw|;oay|;ob0|;ob2|1;ob5|1;obc|1;obf|;obi|;obk|;obp|3;obw|1;obz|;oc3|;oc5|;oc9|;ocl|1;oco|1;ocr|2;ocv|5;od2|;odb|1;odh|2;odl|;odo|;odq|;odt|;odv|;odx|;oe5|;oef|;oej|;oel|2;oeq|;oes|1;oev|;oex|1;of0|1;of4|1;ofh|;ofl|;ofo|;ofs|;ofy|;og0|1;og4|;og6|1;og9|3;ogi|;ogk|;ogp|;ogr|;ogt|;ogw|1;oh0|;oh2|;oh5|1;ohf|;ohj|;ohq|;ohs|;ohz|;oi1|;oi3|;oi7|;oia|;oim|3;oiv|;oiy|1;ojb|1;ojh|2;ojn|;ojw|1;ok0|;ok2|;ok4|;okb|1;okf|1;okk|1;okn|;okp|;oks|;oky|1;ola|;old|;olf|;oll|;olp|;olu|;olx|;olz|1;om7|;oma|;omc|4;omm|;omp|2;omx|;on0|2;on9|1;one|;onp|2;ont|1;onw|4;oo2|;oo5|;oo7|;oof|;ooh|1;ook|2;ooo|3;oou|;oow|;ooy|6;op6|1;op9|;opc|;opf|2;opj|5;ops|2;oq3|1;oq6|5;oqd|;oqg|2;oqp|5;oqx|;or0|1;or4|1;or9|1;ord|;orf|1;ori|;orl|2;orq|;ors|2;ory|;os0|3;os5|1;os9|1;osf|;osj|;osm|;osu|1;osz|;ot4|;ot6|;ot8|;otc|;ote|1;oth|2;otl|;otn|3;ots|2;otw|1;ou0|;ou2|1;ou5|2;ouc|;ouf|;oui|3;oun|;ouu|2;ouy|;ov0|2;ov4|1;ov7|;ova|;ovc|1;ovg|;ovj|;ovo|;ovq|;ovt|;ovv|;ow3|;ow8|3;owg|1;owl|;own|1;owr|;owt|6;ox7|;oxa|1;oxd|2;oxh|;oxj|;oxl|;oxn|;oxp|1;oxt|;oxv|5;oy8|;oya|;oyc|3;oyh|1;oym|;oyp|1;oyx|2;oz1|;oz3|1;oza|;ozd|;ozg|2;ozl|1;ozr|1;ozu|;ozw|1;ozz|;p03|1;p06|;p08|;p0b|1;p0f|;p4m|2;p4q|;p4u|1;p4z|2;p53|;p57|3;p5c|5;p5k|;p5p|;p5r|2;p5v|;p5y|;p60|;p62|1;p66|;p68|;p6a|;p6d|;p6f|2;p6k|2;p6q|;p6t|3;p6y|;p70|;p72|;p78|;p7a|2;p7e|;p7h|1;p7l|;p7o|;p7s|1;p7v|;p7z|;p82|;p86|;p88|1;p8d|;p8f|;p8h|;p8l|;p8q|;p8s|;p8u|;p8y|;p90|2;p97|;p9b|2;p9f|1;p9i|;p9l|;p9n|1;p9q|;p9s|;p9v|;pa1|3;pa6|;pa8|9;pak|;pao|2;pas|5;pb2|;pb5|;pba|;pbc|;pbg|1;pbk|;pbn|;pbq|;pbx|;pbz|;pc3|;pc6|;pc8|;pca|;pci|;pcl|1;pco|;pcq|;pcu|;pcx|;pdb|4;pdh|2;pdp|3;pdw|3;pe1|;pe3|1;peb|;pee|;peg|;pei|1;pel|;pep|1;pet|1;pex|2;pf1|;pf3|;pf5|1;pf8|1;pfe|;pfn|1;pfq|;pfu|;pfw|;pfy|;pg5|1;pg9|3;pge|;pgg|1;pgk|1;pgv|;pgx|;ph0|;ph3|1;ph9|1;phe|;phh|5;phy|2;pi2|1;pib|1;pif|;pih|;pij|;pin|1;pix|1;pj2|;pj5|;pja|;pje|1;pji|;pjk|5;pk0|;pk4|2;pkb|;pkd|;pkg|1;pkk|;pkm|4;pkv|1;pky|2;pl2|;pl4|;pl6|1;plb|;plm|;plo|2;pls|;plv|;pm0|1;pm8|;pmb|2;pmg|2;pml|3;pmq|;pmu|;pmy|;pn1|;pn3|;pn5|;pnc|2;pnh|;pnj|1;pnn|;pnp|;pnr|1;pnu|;pnw|1;po3|1;po6|;poa|2;poe|;poh|2;pol|;pon|1;poq|;pos|1;pow|;poy|;pp2|;pp4|;pp7|1;ppa|1;ppd|;ppm|2;ppv|;ppx|4;pq5|;pq8|;pqd|;pqf|;pqp|;pqw|2;pr3|;pr8|;pra|;prc|;pre|1;pri|1;prl|1;pro|;prq|3;prx|1;ps3|;psa|1;psd|1;psg|;psi|;psk|;pso|2;pst|;psv|;psx|2;pt1|c;ptf|;ptj|2;ptn|4;ptx|;pu9|4;puf|;puj|1;pum|3;pur|;put|2;pux|;puz|;pv5|;pv7|1;pvd|2;pvh|8;pvs|1;pw7|;pwb|2;pwj|2;pwo|;pwq|1;pwv|;pwx|5;px4|1;px8|;pxc|;pxf|;pxj|;pxl|1;pxr|3;pyb|;pyr|;pyv|;pyy|1;pz6|;pz9|;pzd|1;pzi|;pzm|1;pzq|;pzs|;pzu|1;pzx|3;q02|;q08|3;q0t|5;q11|;q15|1;q18|;q1d|;q1f|1;q1i|;q1k|;q1o|;q1r|2;q21|;q23|;q27|3;q2c|;q2e|;q2h|;q2j|;q2l|;q2r|1;q2u|1;q2y|4;q3t|;q3w|;q41|;q45|;q48|1;q4c|1;q4m|;q4p|1;q4x|;q53|;q56|1;q5d|;q5f|;q5i|;q5l|4;q5r|2;q5v|;q5x|;q5z|;q62|;q6a|;q6o|1;q6s|;q6x|;q70|;q73|;q75|;q7c|;q7h|;q7j|;q7m|;q7o|;q7s|5;q7z|3;q84|;q86|;q89|2;q8d|;q8f|2;q8j|;q8m|;q8q|;q98|3;q9d|;q9g|;q9m|;q9o|1;q9s|;q9y|;qa6|;qa9|;qab|2;qaf|1;qai|;qam|1;qap|;qar|;qat|1;qay|;qb0|1;qb3|1;qbh|;qbj|;qbl|;qbn|;qbq|;qbt|2;qby|;qc3|;qc5|4;qce|;qch|;qcj|1;qco|3;qct|;qd4|;qd6|;qda|;qdc|;qdg|;qdi|1;qdl|1;qdo|;qdr|;qdt|;qdw|;qdz|;qe1|;qe3|;qe5|;qec|2;qeg|3;qen|1;qey|;qf5|;qfb|;qfd|;qfh|3;qfp|;qfw|1;qg4|1;qg9|1;qgn|;qgp|2;qgt|;qgv|1;qgy|;qh0|;qh2|1;qh6|1;qhi|2;qhm|;qhr|;qhu|;qhz|;qi1|1;qi5|;qi7|;qik|;qin|;qip|;qj1|1;qj4|;qj7|2;qjf|1;qji|1;qjr|;qjv|1;qjz|;qk1|;qk8|3;qkq|3;qkz|;ql1|;qlf|1;qlk|2;qlr|2;qlw|;qm8|;qmd|2;qmh|;qmj|;qms|;qmx|;qmz|;qn2|1;qn7|1;qnd|;qng|1;qns|1;qnv|;qny|;qo0|;qo2|1;qo6|;qo8|3;qoh|;qoo|;qoq|;qos|1;qox|;qp1|;qp4|1;qpg|1;qpj|;qpm|1;qpr|1;qq4|;qq6|;qqd|;qqf|;qqh|;qqn|1;qqs|2;qqw|;qr2|;qr8|;qra|;qrc|;qrm|1;qrw|1;qs8|;qse|1;qsi|1;qst|;qsz|1;qt6|1;qt9|;qtc|;qtg|;qtj|;qtm|1;qtu|;qu2|1;qu8|;qub|;quk|;qun|;quq|;quv|;qux|;quz|;qv2|;qv9|;qvh|;qvl|;qvp|;qvz|;qw1|2;qwh|1;qwm|;qwp|;qwr|;qww|;qx0|;qx2|;qx6|;qx8|2;qxe|1;qxj|;qxl|;qxn|;qxp|1;qxt|3;qy0|;qy3|;qy6|;qy8|;qya|;qyf|;qyl|2;qyp|1;qyw|;qyz|;qz1|;qz6|;qza|1;qzf|;qzh|1;qzm|;qzu|1;r04|;r0g|2;r0l|;r0q|;r0t|;r0v|;r0y|;r10|1;r14|1;r18|1;r1b|;r1d|;r1k|;r1r|;r1t|;r1v|2;r20|1;r25|1;r2c|;r2f|;r2i|;r2k|;r2o|3;r2t|;r2w|2;r39|;r3b|;r3e|1;r3j|1;r3q|;r3s|;r3u|1;r41|;r44|;r4d|;r4i|;r4m|;r4o|;r4s|;r4u|2;r50|;r56|;r59|;r5b|;r5e|;r5g|;r5q|3;r5v|;r5y|3;r63|;r67|;r6b|;r6e|2;r6i|;r6o|1;r6w|2;r70|;r73|;r76|1;r7a|1;r7e|;r7h|;r7j|2;r82|;r84|;r86|1;r8a|;r8c|1;r8j|;r8l|2;r8w|1;r8z|1;r92|;r94|;r9c|;r9e|1;r9j|3;r9o|;r9q|;r9s|8;ra3|;ra5|;ra7|;raa|1;rad|;rai|;ral|;rap|;rar|1;rau|;ray|2;rb2|;rb5|;rba|;rbf|;rbk|1;rbo|4;rbv|;rby|;rc0|3;rc6|;rc9|;rcb|3;rcg|3;rcl|;rcp|;rcs|;rcv|;rcy|;rd0|3;rd8|1;rdd|;rdf|;rdh|;rdk|;rdm|;rdq|;rds|8;re2|;re8|;rea|;reh|;rek|;rem|1;req|;res|;rev|;rex|;rez|;rf1|;rf3|;rf6|;rfa|1;rff|6;rfo|;rfq|1;rfu|1;rfx|1;rg0|4;rg6|2;rga|;rgc|;rge|;rgg|2;rgk|;rgn|;rgs|;rgu|;rgw|1;rh0|;rh2|1;rh5|4;rhc|;rhf|;rhi|;rhk|;rhn|1;rhv|;rhz|;ri1|;ri4|;ri6|;ri9|;rib|;rie|;rih|;rik|;rim|1;rir|1;riu|;riw|2;rj0|;rj2|1;rja|;rjf|1;rjj|2;rjo|;rjr|;rjx|;rjz|1;rk3|;rk9|1;rkc|;rke|;rkg|;rki|1;rkm|;rkq|;rks|;rku|;rkw|;rp3|;rpb|;rpd|;rpi|4;rpo|;rpq|;rps|;rpx|1;rq2|;rq9|1;rqg|;rqi|2;rqr|;rqw|2;rr6|1;rre|;rrg|1;rrn|1;rrs|;rrx|5;rs7|5;rsf|1;rsi|2;rsm|7;rsv|5;rt2|2;rt6|;rtd|;rtf|;rtl|3;rtq|;rts|6;ru2|;ru4|1;ru8|1;rub|1;ruj|2;rus|1;ruv|1;ruy|1;rv1|;rv3|1;rv7|1;rva|;rvf|;rvh|;rxg|;rxi|1;rxn|;rxp|1;rxs|;rxv|1;rxy|1;ry9|;ryd|;ryi|;rym|;ryo|;ryx|;rz4|;rz7|;rzc|;rzf|;rzm|1;rzu|;rzy|;s02|;s06|;s0b|1;s0e|1;s0l|2;s0r|;s0t|;s0v|;s0x|;s0z|;s14|;s16|3;s1b|;s1d|;s1f|;s1o|;s1y|;s20|2;s27|1;s2c|;s2l|2;s2y|;s34|;s38|2;s3e|;s3h|;s3k|;s3m|;s3o|;s3r|3;s3w|;s3z|;s45|;s49|;s4c|;s4f|1;s4j|1;s4y|;s50|;s52|;s57|;s5d|;s5h|;s5j|;s5l|2;s5p|;s5s|1;s5v|1;s61|;s66|;s69|;s6h|3;s6p|;s6r|;s72|;s74|;s7a|;s7e|3;s7m|;s7y|1;s82|;s88|;s8b|;s8o|4;s8u|;s8z|;s91|;s93|2;s9e|3;s9n|4;s9y|4;sa5|;sa7|1;sab|;sag|1;saj|;sam|2;saq|;sas|2;sax|;sb1|1;sb6|;sb8|;sbb|1;sbh|2;sbl|3;sbq|;sd7|1;sdb|;sde|1;sdi|;sdk|;sdp|5;sdx|1;se3|;se7|1;sea|3;sel|1;seo|1;ser|2;sf6|;sf8|2;sfc|;sfe|3;sfk|;sfm|;sfo|;sfr|3;sfw|1;sfz|4;sg5|1;sg8|;sgb|6;sgk|3;sgp|1;sgt|6;sha|;shd|1;shg|2;shk|;sho|;shq|;sht|1;shz|;si1|2;si5|8;sig|1;sij|3;sio|1;sir|;siw|1;sj0|3;sj6|;sj9|3;sje|;sjg|9;sjr|1;sju|;sjw|1;sjz|2;sk5|;sk7|2;skg|;ski|1;skm|;sko|;skq|;skv|2;skz|;sl1|;sl4|;sl9|1;sld|;slf|2;slm|;slq|;sm4|2;sm9|1;smg|;smi|1;sml|;smn|;smr|2;sn1|;sn6|;snm|;snp|2;snt|;sny|;so2|1;so7|;sod|;sog|2;sok|;sot|;sp4|6;spe|;spi|1;spu|3;sq1|1;sq4|;sqa|;sqc|5;sqr|;sqv|;sqx|;sqz|;sr1|;sr4|;sr6|;srg|;sri|;srm|;sru|2;sry|1;ss1|1;ss4|1;ssc|;ssg|1;ssj|;ssl|2;ssp|;ssr|6;st3|1;st8|1;stf|4;stl|1;stp|;stx|;su7|;suf|;sul|;suo|2;sus|1;suv|;sv0|;sv2|1;sva|;svl|;svo|1;svr|1;svu|;svz|2;sw4|1;sw9|;swb|;swd|5;swn|;swr|;swu|;swy|;sx0|2;sxj|1;sxo|;sxq|;sxs|;sxv|;sxx|;sy3|;sy9|;syb|;syd|1;syg|4;sz7|1;sza|1;szd|;szq|;szw|;szz|;t01|1;t05|;t07|;t0f|;t0k|1;t0q|;t0y|;t14|2;t18|2;t1c|;t1g|;t1i|;t1r|1;t1x|;t20|2;t26|6;t2e|2;t2i|2;t2m|1;t3c|3;t3h|;t3l|;t3o|;t3r|;t3v|2;t44|1;t4b|1;t4e|;t4g|;t4i|;t4l|;t4s|;t4u|;t56|;t58|;t5g|;t5i|1;t5m|1;t5r|2;t5v|1;t5z|;t64|1;t68|;t6j|;t6r|;t6v|1;t6y|2;t75|;t7a|2;t7g|3;t7l|1;t7o|;t7q|;t7s|;t86|;t88|1;t8b|;t8j|1;t8v|1;t8z|1;t94|1;t9h|;t9m|1;t9x|1;ta0|;ta2|;taa|;tac|;tai|;tak|;tap|1;tat|;taz|;tb2|;tb4|;tb6|1;tbe|1;tbk|2;tbp|;tbr|;tbw|3;tc5|;tiv|1;tj3|1;tj7|;tjc|3;tji|1;tjl|3;tjs|;tjw|;tjz|1;tk2|3;tk8|1;tkb|2;tkh|;tkm|;tkp|;tkr|3;tkz|;tl3|1;tl6|3;tlf|3;tlm|;tlo|;tlq|;tls|2;tlx|;tm0|;tng|1;tnl|;tno|;tnr|3;tnx|2;to2|;tob|;tof|1;toi|;tok|;tor|2;tow|;tp0|;tp2|;tp4|;tp7|4;tpd|3;tpm|;tpo|;tps|;tpu|7;tq4|1;tqc|2;tqi|1;tql|2;tqp|;tqs|1;tqv|1;tqz|1;tr7|1;trb|3;trk|1;trn|1;trq|3;trv|1;ts0|1;ts4|3;ts9|;tsb|3;tsl|1;tsp|5;tsy|1;tt4|2;ttb|1;tte|;tti|1;ttl|2;tts|;ttw|5;tu4|3;tu9|;tub|1;tue|;tuh|;tuk|;tum|;tur|;tuu|1;tuy|;tv4|;tv6|;tvc|1;tvh|;tvm|;tvo|;tvq|;tvs|1;tvw|;tw1|1;tw5|1;tw8|6;twg|2;twm|;two|1;twt|;twz|2;tx3|;tx6|;tx8|;txc|1;txg|1;txn|;txp|;txr|;ty0|;ty8|;tyb|;tye|;tyg|;tyj|2;typ|;tys|;tyw|1;tz5|;tz7|;tza|;tzf|2;tzk|;tzn|;tzt|;tzw|2;u00|1;u06|;u0d|1;u0h|2;u0l|1;u0q|1;u0u|5;u11|1;u14|;u16|;u18|7;u1i|2;u1q|;u1t|;u1v|1;u1y|;u23|;u25|1;u28|;u2a|;u2f|2;u2j|1;u2n|;u2q|;u2u|2;u2z|3;u36|3;u3c|2;u3g|;u3i|;u3p|2;u3v|;u3z|2;u43|2;u5k|;u5p|;u5r|;u5t|1;u5y|;u62|;u64|;u67|;u6a|;u6c|;u6e|1;u6h|;u6j|;u6m|;u6z|1;u72|4;u7a|1;u7e|1;u7h|2;u7l|;u7o|;u7v|3;u83|;u89|1;u8c|;u8g|;u8i|3;u8o|;u8q|;u8u|;u8w|;u92|2;u96|;u98|;u9a|;u9c|1;u9f|;u9l|;u9o|1;u9u|;u9x|;ua0|1;ua3|2;ua8|2;uac|1;uaf|;uak|;uam|;uar|;uc6|3;ucc|1;ucf|;uch|;ucj|;ucl|;ucn|1;ucq|;ucs|2;ucw|1;ucz|1;ud2|;ud5|;udd|;udg|1;udk|1;udr|3;udx|;ue0|1;ue3|4;uea|;ueg|;uei|;uel|1;uep|;uew|;uey|1;uf1|;uf3|;uf5|4;ufc|;uff|;ufh|2;ufl|;ufq|;ufs|1;ufv|;ugb|;ugd|;ugg|;ugl|3;ugu|;ugw|5;uh6|;uh8|3;uhe|;uhh|;uhj|1;uhm|1;uhr|;uhu|;uhw|1;ui1|1;ui4|;ujs|;uju|;uk0|;uk8|1;ukc|;ukf|1;ukm|;ukv|;ukx|;ukz|1;ul2|2;ulb|;uld|;ulf|;ulh|1;uln|;ulp|1;uls|;ulu|;ulw|;um1|2;um5|;uma|;umd|1;umi|1;uml|;umo|;umq|;umu|;umw|2;un3|;un6|1;un9|;unb|3;uni|1;unl|1;unu|;unw|;uo1|4;uo8|;uob|;uod|2;uoh|;uok|;uoo|;uoq|;up2|;upb|;upg|;ups|;upv|;uq6|;uq8|3;uqf|;uqn|;uqv|1;uqy|1;ur1|1;urd|;url|;urq|;urt|1;us4|;us6|;usb|;usi|;usk|;uso|;ut3|;utk|;utm|;uto|1;uts|;utu|1;utx|;uuc|1;uul|2;uup|1;uut|;uux|2;uv2|;uvb|;uvd|;uvj|;uvm|1;uvr|;uw0|;uw3|;uw7|;uwo|;uwr|1;uzp|2;uzt|;v03|1;v06|;v0j|;v0m|3;v0s|;v0y|;v11|;v14|1;v17|;v1a|1;v1f|;v1h|1;v1k|;v1r|1;v1y|;v23|;v29|1;v2c|;v2p|;v2r|1;v31|1;v34|1;v3a|;v3d|;v3g|;v3j|1;v3m|;v3r|;v3v|;v3y|;v44|;v49|1;v4m|;v4q|;v4x|;v50|;v55|;v58|;v5b|;v5g|1;v5k|1;v5n|;v5r|;v5t|1;v5w|;v5z|;v6b|;v6e|1;v6h|;v6u|;v6x|2;v74|3;v7c|2;v7h|;v7j|;v7r|;v7z|;v85|;v8a|5;vat|;vav|;vax|2;vb1|;vb3|1;vb6|;vb8|;vbf|1;vbj|;vbl|2;vbr|1;vbx|2;vc4|2;vc9|1;vcf|;vck|1;vcr|;vct|2;vcz|2;vd8|5;vdg|;vdi|;vdk|;vdm|4;vds|;vdx|;ve0|;ve6|1;vea|;vec|3;veh|7;veq|;ves|;vev|3;vf2|;vf4|;vf7|1;vfb|;vfd|;vfk|;vfm|;vfv|1;vfz|;vg4|;vg8|1;vgb|;vge|;vgq|1;vgu|;vgw|;vgy|;vh0|1;vh3|;vhb|2;vhi|1;vhl|3;vhu|;vhy|1;vi7|;vil|1;vio|2;vis|1;vix|;vj0|1;vj3|1;vj6|;vj9|;xgg|s;xz4|8mb;16ls|m;16mj|1c;1d6o|2m;1d9c|21;1dbf|2o;1dea|;1ded|2;1deh|5;1deq|;1deu|;1dey|2;1df2|3;1df7|a;1dfj|;1dfl|;1dfn|i;1dg7|;1dg9|f;1dgq|;1dkw|4;1e6o|9;1e7k|y;1e8k|i;1e94|3;1edd|59;1eiq|5;1eiy|5;1ej6|5;1eje|2;1ejk|6;1ejs|6;2q68|c;2q6o|2k;2q9c|1o;2qdc|2;2qds|17;2qf4|8;2qfk|1;2tav|;2td8|;2ua2|;2uco|;2v0k|;2wk5|;2wst|;2xec|;2xpj|;2zbw|;30ds|;30fh|;31an|;31wv|;32e8|;32t9|;339f|;33uj|;34rd|;36cx|;36hp|;37jd|;37jk|;37r5|;37rm|;3905|;39ku|;39o5|;39q6|;3ak2|;3aka|;3alw|;3at4|;3b2v|;3b87|;3br8|;3c5z|;3d7o|;3dnc|;3dxt|;3fic|;3gfz|;3gh1|;3gz6|;3hap|;3hfm|;3htb|;3i4d|;3i8r|;3id3|;3j7a|;3jdo|;3l3e|;3l41|;3l73|;3lxx|;3lyb|;3mji|;3mkp|;3mv3|;3n68|;3n7f|;3p9p|;3pow|;3q04|;3v9x|;3wlv|;3z9g|;42g9|;4651|;4654|;4656|;465o|;465v|;466q|;4676|;467r|;4684|;469e|;46b1|;46bg|;46cg|;46ek|;46hc|;46hr|;4949|;4an2|;")) +q.push(A.F("Noto Sans Kaithi","https://fonts.gstatic.com/s/notosanskaithi/v16/buEtppS9f8_vkXadMBJJu0tWjLwjQi0KdoZIKlo.ttf","w|;19|;4g|;1uu|9;6bv|2;6c0|;7gs|;x80|9;1hts|1t;1hvx|;")) +q.push(A.F("Noto Sans Kannada","https://fonts.gstatic.com/s/notosanskannada/v21/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvNzSIMLsPKrkY.ttf","w|2m;4g|3;4l|;4n|4;4t|3;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1u9|1;1us|1;2gw|c;2ha|2;2he|m;2i2|9;2id|4;2ik|8;2iu|2;2iy|3;2j9|1;2ji|;2jk|3;2jq|9;2k1|1;5ow|;5oy|;5p6|;5pu|;5pw|1;60w|5;61q|;642|1;6bv|2;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6gp|;6jm|;6qa|;7gs|;x80|5;")) +q.push(A.F("Noto Sans Kayah Li","https://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WCc3CZH4EXLuKVM.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6bw|1;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;xds|1b;")) +q.push(A.F("Noto Sans Kharoshthi","https://fonts.gstatic.com/s/notosanskharoshthi/v15/Fh4qPiLjKS30-P4-pGMMXCCfvkc5Vd7KE5z4rFyx5mR1.ttf","w|;19|;4g|;6bv|2;6c0|;7gs|;1gjk|3;1gjp|1;1gjw|7;1gk5|2;1gk9|s;1gl4|2;1glb|9;1gls|8;")) +q.push(A.F("Noto Sans Khmer","https://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAJz4kAbrddiA.ttf","w|2m;4g|3;4l|;4n|4;4t|3;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;4n4|2l;4ps|9;4q8|9;540|v;60w|5;61q|;642|1;6bv|2;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;")) +q.push(A.F("Noto Sans Khojki","https://fonts.gstatic.com/s/notosanskhojki/v16/-nFnOHM29Oofr2wohFbTuPPKVWpmK_d709jy92k.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;25i|9;60w|5;61q|;642|1;6bw|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;x80|9;1i4g|h;1i4z|17;")) +q.push(A.F("Noto Sans Khudawadi","https://fonts.gstatic.com/s/notosanskhudawadi/v16/fdNi9t6ZsWBZ2k5ltHN73zZ5hc8HANlHIjRnVVXz9MY.ttf","w|;4g|;1us|1;6bw|1;6c3|1;7gs|;x80|9;1i9c|1m;1ib4|9;")) +q.push(A.F("Noto Sans Lao","https://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccbdf5MK3riB2w.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;2v5|1;2v8|;2vb|1;2ve|;2vh|;2vo|3;2vt|6;2w1|2;2w5|;2w7|;2wa|1;2wd|c;2wr|2;2ww|4;2x2|;2x4|5;2xc|9;2xo|3;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|1;6jm|;6qa|;7gs|;")) +q.push(A.F("Noto Sans Lepcha","https://fonts.gstatic.com/s/notosanslepcha/v16/0QI7MWlB_JWgA166SKhu05TekNS32AJstqBXgd4.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;5j4|1j;5kr|e;5l9|2;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;")) +q.push(A.F("Noto Sans Limbu","https://fonts.gstatic.com/s/notosanslimbu/v22/3JnlSDv90Gmq2mrzckOBBRRoNJVj0MF3OHRDnA.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1us|1;4xs|u;4yo|b;4z4|b;4zk|;4zo|b;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;")) +q.push(A.F("Noto Sans Linear A","https://fonts.gstatic.com/s/notosanslineara/v16/oPWS_l16kP4jCuhpgEGmwJOiA18FZj22zmHQAGQicw.ttf","w|;4g|;1fr4|8m;1g00|l;1g0w|7;")) +q.push(A.F("Noto Sans Linear B","https://fonts.gstatic.com/s/notosanslinearb/v15/HhyJU4wt9vSgfHoORYOiXOckKNB737IV3BkFTq4EPw.ttf","w|;4g|;1ekg|b;1ekt|p;1elk|i;1em4|1;1em7|e;1emo|d;1eo0|3e;1erk|2;1err|18;1et3|8;")) +q.push(A.F("Noto Sans Lisu","https://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP2Vwt29IlxkVdig.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jg|;jq|1;jt|;jx|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;9hm|1;wk0|1b;1kts|;")) +q.push(A.F("Noto Sans Lycian","https://fonts.gstatic.com/s/notosanslycian/v15/QldVNSNMqAsHtsJ7UmqxBQA9r8wA5_naCJwn00E.ttf","w|;4g|;1f28|s;")) +q.push(A.F("Noto Sans Lydian","https://fonts.gstatic.com/s/notosanslydian/v15/c4m71mVzGN7s8FmIukZJ1v4ZlcPReUPXMoIjEQI.ttf","w|;4g|;1gdc|p;1ge7|;")) +q.push(A.F("Noto Sans Mahajani","https://fonts.gstatic.com/s/notosansmahajani/v15/-F6sfiVqLzI2JPCgQBnw60Agp0JrvD5Fh8ARHNh4zg.ttf","w|;4g|;1us|b;6bw|1;7gs|;x80|9;1hzk|12;")) +q.push(A.F("Noto Sans Malayalam","https://fonts.gstatic.com/s/notosansmalayalam/v21/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuD9BFzEr6HxEA.ttf","w|2m;4g|3;4l|;4n|4;4t|3;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;mb|;me|2;1u9|1;1us|1;2kg|c;2ku|2;2ky|1e;2me|2;2mi|5;2ms|f;2na|p;5p6|;60w|5;61q|;642|1;6bv|2;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6gp|;6jm|;6qa|;7gs|;x80|2;")) +q.push(A.F("Noto Sans Mandaic","https://fonts.gstatic.com/s/notosansmandaic/v15/cIfnMbdWt1w_HgCcilqhKQBo_OsMI5_A_gMk0izH.ttf","w|;4g|;18g|;1mo|r;1ni|;6bw|1;7gs|;")) +q.push(A.F("Noto Sans Manichaean","https://fonts.gstatic.com/s/notosansmanichaean/v15/taiVGntiC4--qtsfi4Jp9-_GkPZZCcrfekqCNTtFCtdX.ttf","w|;4g|;18g|;6bw|1;7gs|;1e68|;1gow|12;1gq3|b;")) +q.push(A.F("Noto Sans Marchen","https://fonts.gstatic.com/s/notosansmarchen/v17/aFTO7OZ_Y282EP-WyG6QTOX_C8WZMHhPk652ZaHk.ttf","w|;4g|;7gs|;1k6o|v;1k7m|l;1k89|d;")) +q.push(A.F("Noto Sans Masaram Gondi","https://fonts.gstatic.com/s/notosansmasaramgondi/v17/6xK_dThFKcWIu4bpRBjRYRV7KZCbUq6n_1kPnuGe7RI9WSWX.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1us|1;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;1kao|6;1kaw|1;1kaz|17;1kca|;1kcc|1;1kcf|8;1kcw|9;")) +q.push(A.F("Noto Sans Math","https://fonts.gstatic.com/s/notosansmath/v15/7Aump_cpkSecTWaHRlH2hyV5UHkG-V048PW0.ttf","w|2m;4g|;4n|;4s|;4x|;5z|;6v|;le|1;lh|;lj|1;mo|;pd|g;pv|6;q9|o;r5|;r9|1;s0|1;s4|1;6cy|5;6dz|;6hc|c;6ht|;6hx|a;6iq|;6iy|4;6j4|2;6j9|;6jd|4;6jo|;6js|;6jw|1;6jz|2;6k3|5;6kc|4;6kl|4;6mo|u;6nk|1h;6pd|1;6pg|7f;6x4|3;6xc|;6xl|;6xo|5;6ye|1w;70c|;711|;717|r;72o|;730|5;778|1;7fz|;7g3|;7g7|;7gd|;7gh|;7gq|;7gs|;7i3|;7l9|2;7uo|1r;83k|e7;8i6|3;8j4|s;8ou|;1efv|;1efx|;2kg0|2c;2kie|1y;2kke|1;2kki|;2kkl|1;2kkp|3;2kku|b;2kl7|;2kl9|6;2klh|1s;2knb|3;2knh|7;2knq|6;2kny|r;2kor|3;2kow|4;2kp2|;2kp6|6;2kpe|9f;2kyw|83;2l72|1d;2pkw|3;2pl1|q;2plt|1;2plw|;2plz|;2pm1|9;2pmc|3;2pmh|;2pmj|;2pmq|;2pmv|;2pmx|;2pmz|;2pn1|2;2pn5|1;2pn8|;2pnb|;2pnd|;2pnf|;2pnh|;2pnj|;2pnl|1;2pno|;2pnr|3;2pnw|6;2po4|3;2po9|3;2poe|;2pog|9;2por|g;2ppd|2;2pph|4;2ppn|g;2prk|1;")) +q.push(A.F("Noto Sans Mayan Numerals","https://fonts.gstatic.com/s/notosansmayannumerals/v15/PlIuFk25O6RzLfvNNVSivR09_KqYMwvvDKYjfIiE68oo6eepYQ.ttf","w|;4g|;2k80|j;")) +q.push(A.F("Noto Sans Medefaidrin","https://fonts.gstatic.com/s/notosansmedefaidrin/v21/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmErWlT318e5A3rw.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;20cg|2i;")) +q.push(A.F("Noto Sans Meetei Mayek","https://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ_vTW5PgeFYVa.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6gp|;6jm|;6qa|;7gs|;xr4|m;xxc|19;xyo|9;")) +q.push(A.F("Noto Sans Meroitic","https://fonts.gstatic.com/s/notosansmeroitic/v16/IFS5HfRJndhE3P4b5jnZ3ITPvC6i00UDgDhTiKY9KQ.ttf","w|;1m|;4g|;6cm|;6e5|;1gg0|1j;1gho|j;1gia|19;")) +q.push(A.F("Noto Sans Miao","https://fonts.gstatic.com/s/notosansmiao/v17/Dxxz8jmXMW75w3OmoDXVV4zyZUjgUYVslLhx.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;20hs|22;20jz|1k;20lr|g;")) +q.push(A.F("Noto Sans Modi","https://fonts.gstatic.com/s/notosansmodi/v20/pe03MIySN5pO62Z5YkFyT7jeav5qWVAgVol-.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1tp|;60w|5;61q|;642|1;6bw|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;x80|9;1iww|1w;1iz4|9;")) +q.push(A.F("Noto Sans Mongolian","https://fonts.gstatic.com/s/notosansmongolian/v17/VdGCAYADGIwE0EopZx8xQfHlgEAMsrToxLsg6-av1x0.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;4qo|e;4r4|9;4rk|2g;4u8|16;60w|5;61q|;642|1;6bw|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6cv|;6d5|1;6dk|1;6gc|;6jm|;6qa|;76o|j;7gs|;9hd|1;9hm|5;1e7x|1;1e81|3;1izk|c;")) +q.push(A.F("Noto Sans Mro","https://fonts.gstatic.com/s/notosansmro/v18/qWcsB6--pZv9TqnUQMhe9b39WDzRtjkho4M.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;1zk0|u;1zkw|9;1zla|1;")) +q.push(A.F("Noto Sans Multani","https://fonts.gstatic.com/s/notosansmultani/v20/9Bty3ClF38_RfOpe1gCaZ8p30BOFO1A0pfCs5Kos.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1us|1;21y|9;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;1i80|6;1i88|;1i8a|3;1i8f|e;1i8v|a;")) +q.push(A.F("Noto Sans Myanmar","https://fonts.gstatic.com/s/notosansmyanmar/v20/AlZq_y1ZtY3ymOryg38hOCSdOnFq0En23OU4o1AC.ttf","w|;1r|;4g|;35s|4f;6bv|2;6c8|1;6cc|1;6cm|;7gs|;xf2|;xk0|u;xnk|v;1e68|;")) +q.push(A.F("Noto Sans NKo","https://fonts.gstatic.com/s/notosansnko/v2/esDX31ZdNv-KYGGJpKGk2_RpMpCMHMLBrdA.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;170|;17f|;17j|;19m|;1j4|1m;1kt|2;60w|5;61q|;642|1;6bw|3;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;93w|1;1e0u|1;")) +q.push(A.F("Noto Sans Nabataean","https://fonts.gstatic.com/s/notosansnabataean/v15/IFS4HfVJndhE3P4b5jnZ34DfsjO330dNoBJ9hK8kMK4.ttf","w|;4g|;1g8w|u;1g9z|8;")) +q.push(A.F("Noto Sans New Tai Lue","https://fonts.gstatic.com/s/notosansnewtailue/v19/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdeXAYUbghFPKzeY.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;51c|17;52o|p;53k|1;53n|7;53y|1;60w|5;61q|;642|1;6bw|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;9hc|2;9hk|3;1edd|;1edk|1;1edo|;1edq|;1ee2|1;1ee7|;1eg1|;1eg4|;")) +q.push(A.F("Noto Sans Newa","https://fonts.gstatic.com/s/notosansnewa/v16/7r3fqXp6utEsO9pI4f8ok8sWg8n_qN4R5lNU.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;5x7|;60w|5;61q|;642|1;6bw|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;1iio|2j;1il9|4;")) +q.push(A.F("Noto Sans Nushu","https://fonts.gstatic.com/s/notosansnushu/v18/rnCw-xRQ3B7652emAbAe_Ai1IYaFWFAMArZKqQ.ttf","w|;4g|;20o1|;2dm8|az;")) +q.push(A.F("Noto Sans Ogham","https://fonts.gstatic.com/s/notosansogham/v15/kmKlZqk1GBDGN0mY6k5lmEmww4hrt5laQxcoCA.ttf","w|;4g|;4g0|s;")) +q.push(A.F("Noto Sans Ol Chiki","https://fonts.gstatic.com/s/notosansolchiki/v20/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALWk267I6gVrz5gQ.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;5lc|1b;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6gp|;6jm|;6qa|;")) +q.push(A.F("Noto Sans Old Hungarian","https://fonts.gstatic.com/s/notosansoldhungarian/v15/E213_cD6hP3GwCJPEUssHEM0KqLaHJXg2PiIgRfjbg5nCYXt.ttf","w|;4g|;6bx|;1h1c|1e;1h34|1e;1h4q|5;")) +q.push(A.F("Noto Sans Old Italic","https://fonts.gstatic.com/s/notosansolditalic/v15/TuGOUUFzXI5FBtUq5a8bh68BJxxEVam7tWlRdRhtCC4d.ttf","w|;4g|;1f5s|z;1f71|2;")) +q.push(A.F("Noto Sans Old North Arabian","https://fonts.gstatic.com/s/notosansoldnortharabian/v15/esDF30BdNv-KYGGJpKGk2tNiMt7Jar6olZDyNdr81zBQmUo_xw4ABw.ttf","w|;4g|;1gn4|v;")) +q.push(A.F("Noto Sans Old Permic","https://fonts.gstatic.com/s/notosansoldpermic/v16/snf1s1q1-dF8pli1TesqcbUY4Mr-ElrwKLdXgv_dKYB5.ttf","w|;4g|;lc|;li|2;lv|;w3|;6hn|;7gs|;1f80|16;")) +q.push(A.F("Noto Sans Old Persian","https://fonts.gstatic.com/s/notosansoldpersian/v15/wEOjEAbNnc5caQTFG18FHrZr9Bp6-8CmIJ_tqOlQfx9CjA.ttf","w|;4g|;1fa8|z;1fbc|d;")) +q.push(A.F("Noto Sans Old Sogdian","https://fonts.gstatic.com/s/notosansoldsogdian/v15/3JnjSCH90Gmq2mrzckOBBhFhdrMst48aURt7neIqM-9uyg.ttf","w|;4g|;1hj4|13;")) +q.push(A.F("Noto Sans Old South Arabian","https://fonts.gstatic.com/s/notosansoldsoutharabian/v15/3qT5oiOhnSyU8TNFIdhZTice3hB_HWKsEnF--0XCHiKx1OtDT9HwTA.ttf","w|;4g|;1gm8|v;")) +q.push(A.F("Noto Sans Old Turkic","https://fonts.gstatic.com/s/notosansoldturkic/v15/yMJNMJVya43H0SUF_WmcGEQVqoEMKDKbsE2RjEw-Vyws.ttf","w|;4g|;1gxs|20;")) +q.push(A.F("Noto Sans Oriya","https://fonts.gstatic.com/s/notosansoriya/v26/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivj0f6_c6LhHBRe-.ttf","w|c;1a|28;4g|3;4l|;4n|4;4t|3;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jg|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;nu|;1us|1;269|2;26d|7;26n|1;26r|l;27e|6;27m|1;27p|4;27w|8;287|1;28b|2;28m|1;28s|1;28v|4;292|h;60w|5;61q|;642|1;6bv|2;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6gp|;6jm|;6qa|;7gs|;")) +q.push(A.F("Noto Sans Osage","https://fonts.gstatic.com/s/notosansosage/v18/oPWX_kB6kP4jCuhpgEGmw4mtAVtXRlaSxkrMCQ.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;ns|;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;1fhs|z;1fiw|z;")) +q.push(A.F("Noto Sans Osmanya","https://fonts.gstatic.com/s/notosansosmanya/v18/8vIS7xs32H97qzQKnzfeWzUyUpOJmz6kR47NCV5Z.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;1fgg|t;1fhc|9;")) +q.push(A.F("Noto Sans Pahawh Hmong","https://fonts.gstatic.com/s/notosanspahawhhmong/v17/bWtp7e_KfBziStx7lIzKKaMUOBEA3UPQDW7krzc_c48aMpM.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6bw|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;1zpc|1x;1zrk|9;1zrv|6;1zs3|k;1zst|i;")) +q.push(A.F("Noto Sans Palmyrene","https://fonts.gstatic.com/s/notosanspalmyrene/v15/ZgNPjOdKPa7CHqq0h37c_ASCWvH93SFCPnK5ZpdNtcA.ttf","w|;4g|;1g80|v;")) +q.push(A.F("Noto Sans Pau Cin Hau","https://fonts.gstatic.com/s/notosanspaucinhau/v19/x3d-cl3IZKmUqiMg_9wBLLtzl22EayN7ehIdjEWqKMxsKw.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;1juo|1k;")) +q.push(A.F("Noto Sans Phags Pa","https://fonts.gstatic.com/s/notosansphagspa/v15/pxiZyoo6v8ZYyWh5WuPeJzMkd4SrGChkqkSsrvNXiA.ttf","w|;4g|;4qp|2;4qt|;6bv|4;6cl|1;7gs|;9hd|1;9hj|a;9hw|7;x8g|1j;1e68|;")) +q.push(A.F("Noto Sans Phoenician","https://fonts.gstatic.com/s/notosansphoenician/v15/jizFRF9Ksm4Bt9PvcTaEkIHiTVtxmFtS5X7Jot-p5561.ttf","w|;4g|;1gcg|r;1gdb|;")) +q.push(A.F("Noto Sans Psalter Pahlavi","https://fonts.gstatic.com/s/notosanspsalterpahlavi/v15/rP2Vp3K65FkAtHfwd-eISGznYihzggmsicPfud3w1G3KsUQBct4.ttf","w|;4g|;18g|;6bw|1;7gs|;1gu8|h;1gux|3;1gvd|6;")) +q.push(A.F("Noto Sans Rejang","https://fonts.gstatic.com/s/notosansrejang/v18/Ktk2AKuMeZjqPnXgyqrib7DIogqwN4O3WYZB_sU.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;xf4|z;xgf|;")) +q.push(A.F("Noto Sans Runic","https://fonts.gstatic.com/s/notosansrunic/v15/H4c_BXWPl9DZ0Xe_nHUaus7W68WWaxpvHtgIYg.ttf","w|;4g|;4gw|2g;")) +q.push(A.F("Noto Sans SC","https://fonts.gstatic.com/s/notosanssc/v26/k3kXo84MPvpLmixcA63oeALhL4iJ-Q7m8w.otf","w|2m;4g|2r;7k|3;7u|1;88|3;8z|1;93|1;98|3;9e|1;a0|5;b6|;bk|1;bz|1;ct|f;e0|1;gh|;gx|;jf|;jr|;jt|2;k9|;kq|1;lc|1;lg|;lj|;lo|;pd|g;pv|6;q9|o;sh|;sw|1r;up|;5z2|1;61s|2h;6bm|1;6c0|6;6c8|2;6cc|2;6cg|2;6cl|2;6cw|;6cy|1;6d1|;6d5|3;6de|;6dj|2;6dt|;6es|;6g9|;6gb|1;6hp|1;6io|;6ir|;6it|;6ix|1;6j3|;6j7|;6ja|;6jl|1;6jq|1;6jv|;6jy|;6k5|;6kb|;6lc|b;6ls|b;6mo|9;6ns|1;6o4|2;6ob|1;6og|;6oi|;6ok|;6p2|3;6ph|;6ps|;6pu|1;6px|6;6q7|;6q9|2;6qd|;6qi|;6ql|3;6qr|;6qt|9;6r8|3;6rh|;6rn|;6rp|;6rs|;6rw|;6s2|;6sg|2;6sk|3;6sq|1;6su|1;6sy|1;6t2|1;6te|5;6tm|1;6tx|4;6u8|;6ud|;6v3|;6vu|1;6wf|;6x1|2;6xe|;6xk|;6y1|1;71s|1;726|e;72m|;72y|1;74z|;76o|97;7g1|2;7g6|1;7gc|1;7gg|1;7gm|6;7gu|5;7he|4;7hr|;7i8|3;7id|1;7ih|;7im|1;7iu|1;7j0|3;7jj|;7k0|2;7kw|f;7le|b;7mo|;7nh|1;7pe|;7pv|;7q2|;7r1|;7r3|1;7rq|;7sm|t;7tt|;850|1;88v|;8ai|1;8hx|2;8ii|;8lx|;94q|1;96o|p;97f|2g;9a8|5x;9gw|b;9hc|1r;9j5|2d;9ll|2u;9ol|16;9pt|1e;9r9|15;9sg|17;9ts|z;9v4|1a;9wg|7f;a3x|58o;feo|g6n;1d6o|3;1d6t|1;1d6z|1;1d79|;1d7b|3;1d7l|;1d7w|1;1d7z|;1d81|4;1d87|3;1d8j|;1d8n|3;1d8u|;1d8y|1;1d9a|;1d9e|5;1d9q|;1d9u|;1d9w|;1d9y|;1da1|2;1da6|2;1dac|1;1dai|2;1dam|;1dar|;1dat|;1daw|;1dbi|;1dbn|;1dbr|;1dbv|;1dbx|1;1dc0|;1dc5|1;1dcg|;1dco|1;1dcs|4;1dcy|2;1dd3|;1dd5|;1ddd|;1ddg|1;1ddm|;1ddp|;1ddr|;1ddu|;1ddx|3;1de2|;1de4|3;1de9|;1deb|1;1deg|;1den|2;1der|1;1dev|2;1df3|;1df7|2;1dfb|1;1dfe|;1dfr|;1dft|;1dfv|;1dgd|1;1dkw|4;1e6o|9;1e7k|y;1e8k|i;1e94|3;1edd|4e;1eht|t;1eiq|5;1eiy|5;1ej6|5;1eje|2;1ejk|6;1ejs|6;2q68|c;2q6o|2k;2q9c|1o;2qdc|2;2qds|17;2qf4|8;2qfk|1;2t8n|;2t8p|;2tak|;2tes|;2uco|;2ueu|;2vo0|;2x0a|;2x3n|;2xg7|;31cf|;33rf|;353r|1;35er|;3666|;366m|;37jd|;37q3|;37r5|;37ul|;37wp|;39yq|;3a02|;3a20|;3b2v|;3bvb|;3cip|;3czx|;3ddi|;3dks|;3dxt|;3ecc|;3eht|;3gz6|;3i5r|;3id3|;3iex|;3j7s|;3jp4|;3jpx|;3jz4|;3knd|;3kuf|;3kun|;3kup|;3kus|;3l73|;3lax|;3mv3|;3n68|;3on2|;3on7|;3ong|;3qal|;3qij|;3qjb|;3qr4|;3qra|;3qs8|;3rtu|;3s4n|1;3s53|1;3sa5|;3shs|;3skj|;3skv|;3sky|;3sl9|;3sp0|;3spc|;3spf|;3srl|;3svb|;3svj|;3svq|;3svt|;3swd|1;3sxi|;3t0u|1;3t0z|;3t2f|;3t2s|;3t3w|1;3t46|2;3t4a|;3t4c|;3t79|1;3t7x|;3t9p|;3tex|;3tfp|;3tgm|;3th5|;3th8|;3thi|;3thm|;3ti4|;3tmg|;3u13|;3u5b|;3u5e|;3u64|;3u6b|;3uaj|;3uk7|;3ukn|;3unr|;3up5|;3v3d|1;3v6x|;3v7u|;3vf9|;3vfd|;3vg9|;3vjw|;3vk8|;3vl0|;3vo7|;3vq3|;3vq9|;3vqc|;3vyg|;3vys|;3vyv|;3w3m|;3w9f|;3w9k|;3w9t|;3wa1|;3wa3|2;3wa7|;3waq|;3way|1;3wh8|;3whb|;3wkf|;3wld|;3wn1|;3wt5|;3wta|;3wtd|;3wtv|;3wuf|;3wui|;3wv1|;3x1e|;3x1q|;3x4t|;3x61|;3x9l|;3x9p|1;3x9t|;3xa0|1;3xa3|;3xa7|;3xa9|;3xai|;3xam|;3xay|1;3xb8|;3xbd|;3xbg|;3xbj|;3xbn|;3xbq|;3xbs|;3xbw|;3xdd|;3xdr|1;3xe6|;3xhy|;3xi7|;3xmd|1;3xml|;3xmn|;3xmq|1;3xmy|;3xqj|;3xql|;3xqn|1;3xr3|1;3xrc|;3xrh|1;3xsl|;3xug|;3xui|;3xur|;3xuu|;3xuy|;3xx8|;3xxk|;3xxv|;3z9g|;4684|;469i|;4an1|1;4ay4|;")) +q.push(A.F("Noto Sans Saurashtra","https://fonts.gstatic.com/s/notosanssaurashtra/v18/ea8GacQ0Wfz_XKWXe6OtoA8w8zvmYwTef9ndjhPTSIx9.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;xa8|1x;xce|b;")) +q.push(A.F("Noto Sans Sharada","https://fonts.gstatic.com/s/notosanssharada/v16/gok0H7rwAEdtF9N8-mdTGALG6p0kwoXLPOwr4H8a.ttf","w|10;1y|2;22|4;28|4;2e|14;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1u9|1;5p3|;5p5|;5p8|1;5pc|;60w|5;61q|;642|1;6bw|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;1i0w|2n;")) +q.push(A.F("Noto Sans Shavian","https://fonts.gstatic.com/s/notosansshavian/v15/CHy5V_HZE0jxJBQlqAeCKjJvQBNF4EFQSplv2Cwg.ttf","w|;4g|;1ff4|1b;")) +q.push(A.F("Noto Sans Siddham","https://fonts.gstatic.com/s/notosanssiddham/v17/OZpZg-FwqiNLe9PELUikxTWDoCCeGqndk3Ic92ZH.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6bw|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;1itc|1h;1iuw|11;")) +q.push(A.F("Noto Sans Sinhala","https://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2a5lgLpJwbQRM.ttf","w|2m;4g|3;4l|;4n|4;4t|3;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1us|1;2o1|2;2o5|h;2oq|n;2pf|8;2pp|;2ps|6;2q2|;2q7|5;2qe|;2qg|7;2qu|9;2r6|2;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;1i3l|j;")) +q.push(A.F("Noto Sans Sogdian","https://fonts.gstatic.com/s/notosanssogdian/v15/taiQGn5iC4--qtsfi4Jp6eHPnfxQBo--Pm6KHidM.ttf","w|;4g|;18g|;6bw|;7gs|;1hkg|15;")) +q.push(A.F("Noto Sans Sora Sompeng","https://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHR818DpZXJQd4Mu.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;1hw0|o;1hww|9;")) +q.push(A.F("Noto Sans Soyombo","https://fonts.gstatic.com/s/notosanssoyombo/v15/RWmSoL-Y6-8q5LTtXs6MF6q7xsxgY0FrIFOcK25W.ttf","w|;4g|;7gs|;1jrk|2a;")) +q.push(A.F("Noto Sans Sundanese","https://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxpNNHCizv7fQES.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;5fk|1r;5og|7;60w|5;61q|;642|1;6bv|2;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;")) +q.push(A.F("Noto Sans Syloti Nagri","https://fonts.gstatic.com/s/notosanssylotinagri/v20/uU9eCAQZ75uhfF9UoWDRiY3q7Sf_VFV3m4dGFVfxN87gsj0.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1us|1;1ye|9;60w|5;61q|;642|1;6bv|2;6c0|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6dx|;6gc|;6jm|;6qa|;7gs|;x6o|18;")) +q.push(A.F("Noto Sans Syriac","https://fonts.gstatic.com/s/notosanssyriac/v15/Ktk2AKuMeZjqPnXgyqribqzQqgW0N4O3WYZB_sU.ttf","w|1;14|3;19|2;1m|;1p|;2j|2;4g|;4r|;4w|;57|;lf|1;lj|1;lm|;m8|;mb|2;ml|1;mo|1;170|;17f|;17j|;17l|;18g|;18r|a;19c|c;19s|;1ds|d;1e7|1n;1fx|2;6bw|3;6cm|;6dg|;6qa|;7gs|;7lc|1;")) +q.push(A.F("Noto Sans TC","https://fonts.gstatic.com/s/notosanstc/v26/-nF7OG829Oofr2wohFbTp9iFOSsLA_ZJ1g.otf","w|2m;4g|2r;7k|3;7u|1;88|3;8z|1;93|1;98|3;9e|1;a0|5;b6|;bk|1;bz|1;ct|f;e0|1;gh|;gx|;jf|;jr|;jt|2;k9|;kq|1;lc|1;lg|;lj|;lo|;pd|g;pv|6;q9|o;sh|;sw|1r;up|;5z2|1;61s|2h;6bm|1;6c0|6;6c8|2;6cc|2;6cg|2;6cl|2;6cw|;6cy|1;6d1|;6d5|3;6de|;6dj|2;6dt|;6es|;6g9|;6gb|1;6hp|1;6io|;6ir|;6it|;6ix|1;6j3|;6j7|;6ja|;6jl|1;6jq|1;6jv|;6jy|;6k5|;6kb|;6lc|b;6ls|b;6mo|9;6ns|1;6o4|2;6ob|1;6og|;6oi|;6ok|;6p2|3;6ph|;6ps|;6pu|1;6px|6;6q7|;6q9|2;6qd|;6qi|;6ql|3;6qr|;6qt|9;6r8|3;6rh|;6rn|;6rp|;6rs|;6rw|;6s2|;6sg|2;6sk|3;6sq|1;6su|1;6sy|1;6t2|1;6te|5;6tm|1;6tx|4;6u8|;6ud|;6v3|;6vu|1;6wf|;6x1|2;6xe|;6xk|;6y1|1;71s|1;726|e;72m|;72y|1;74z|;76o|97;7g1|2;7g6|1;7gc|1;7gg|1;7gm|6;7gu|5;7he|4;7hr|;7i8|3;7id|1;7ih|;7im|1;7iu|1;7j0|3;7jj|;7k0|2;7kw|f;7le|b;7mo|;7nh|1;7pe|;7pv|;7q2|;7r1|;7r3|1;7rq|;7sm|t;7tt|;850|1;88v|;8ai|1;8hx|2;8ii|;8lx|;94q|1;96o|p;97f|2g;9a8|5x;9gw|b;9hc|1r;9j5|2d;9ll|2u;9ol|16;9pt|1e;9r9|15;9sg|17;9ts|z;9v4|1a;9wg|7f;a3x|5u;ab9|;abk|;abu|;abw|;ack|;acz|;ad6|;ad9|1;adv|;ady|;aed|;aen|;af0|;af5|;afc|;afz|;ag4|;ag6|;agr|;ah2|;aim|;aj5|;aj7|;ajd|;ajl|;ajx|;ak0|;ak2|;ak7|1;akk|;al3|1;ald|;alh|;alp|;am7|;am9|;amd|;amf|;ami|;amm|;amq|;amu|;amz|;an1|;anl|2;anv|;any|;ao9|;aoo|;aoq|;aoz|;ap1|;ap9|;aph|;apl|;apq|;apz|2;aq6|;aqn|;aqp|;are|;arl|;asa|;asl|;asq|;ass|;asw|1;at1|;at5|;at8|;atd|;atf|2;atj|1;atv|1;aty|;au5|;au9|1;aud|1;aut|;av5|;av7|;avc|;ave|;avh|;avw|;aw2|1;aw5|;awc|1;awg|;awi|1;awq|;aww|;awz|;axu|;ay7|;azb|;azk|;b09|;b0e|;b12|;b1u|;b20|;b23|;b2n|;b2x|;b34|;b3h|;b3q|;b3s|;b4z|;b5h|;b6o|;b7n|;b7w|;b81|;b84|;b96|;b9k|;b9w|;baf|;baq|;bb3|;bbh|;bc3|;bco|;bcw|;bd5|1;bde|;bdl|;bdn|;bdt|;bdw|;beg|;bfg|;bfm|;bfp|;bfw|;bg8|;bgb|;bge|;bgh|;bgj|;bgm|;bh3|1;bhl|1;bhw|;bij|;biq|;biv|;bj0|;bj2|;bja|1;bkn|;bl7|;blp|;bmi|;bmm|;bmo|;bn4|;bn6|;bn9|;bnf|;bny|;bo9|;boi|;bor|;bp5|;bpe|;bq0|;bq8|;bqp|1;bqz|1;br4|;brp|1;brt|;bs1|;bss|;bsu|;bsy|;bt0|;btj|;btp|;bu4|;bua|2;bv1|;bv5|;bv9|;bvc|;bx0|;byj|;c0b|;c0d|;c0h|;c0m|;c0s|;c17|;c1b|;c2a|1;c2l|;c36|;c3f|;c3q|;c3w|;c3y|;c41|;c4f|;c4i|;c4p|1;c4v|;c51|;c59|;c5h|;c5k|;c5m|;c5r|;c5t|;c6d|;c6l|;c6s|;c73|;c7a|1;c7d|;c7g|1;c7n|;c7v|;c87|1;c8b|;c8j|1;c8n|;c8s|1;c92|;cao|;car|;caw|;cb9|;cc4|;cdk|2;cdp|;cdt|;ce0|;ce7|;cea|;cef|;cei|;cek|;ceo|1;ceu|1;cey|1;cf2|;cf5|1;cfb|;cfd|;cff|1;cfk|;cfn|1;cfu|;cfw|;cfz|1;cg4|;cg6|1;cge|;cib|;cig|1;cir|;cjg|;ck3|;clc|;clk|;clz|;cm4|;cmd|;cml|;cmx|1;cn8|;cnd|;cnx|;cop|;cp1|;cpf|;cpj|;cpu|;cpx|;cq2|;cq7|;cq9|;crs|;cs4|;csb|;csf|;cso|;ct4|;ctb|;cu0|;cu2|;cua|2;cuh|;cum|;cvl|1;cx3|;cx8|;cxa|;cxo|;cxr|;cxt|;cy8|;cz6|;czo|;czu|;czz|;d0b|;d0t|;d0v|;d15|;d1t|;d2b|;d34|;d40|;d4a|;d4m|;d4q|;d58|;d5g|;d5u|;d6d|;d6h|;d6k|;d84|;d8b|1;d8q|;d9n|;dbi|;dcn|;dcq|;ddm|;ddt|;deh|;den|;df1|;df4|;df6|;dfl|1;dg3|;dgl|;dgt|;diy|;djj|;djl|;djz|1;dk2|;dkg|;dkn|;dkt|;dkw|;dkz|;dl1|;dla|;dlp|2;dlt|;dlw|;dm1|3;dmc|;dmr|1;dmx|;dmz|;dna|;dnf|;dnh|;dnr|;dny|;do3|;do6|;dob|;dod|;dof|;doj|;dox|1;dp1|;dp4|;dp8|;dpd|1;dpm|;dpp|;dpz|1;dqd|;dra|;drn|;dsq|;dt5|1;dtv|;dty|;du7|;dud|;duf|;dwb|;dx6|;dxc|;dy9|;dym|;dyz|;dzj|1;e0l|;e0n|;e1f|;e1k|;e2e|;e2s|;e32|1;e4c|;e54|;e5i|;e6t|;e7h|;e7o|;e80|;e8b|;e9j|;eal|;eb5|;ecb|;ect|1;eds|;ee5|;eel|;eer|;eey|;efa|;efl|;efy|;eg5|;ega|;egd|;egf|1;egl|;egs|;egu|;eh1|;ehd|;ehf|;ehx|;ei2|;eia|;eix|;ejl|;ejr|;elb|;elh|;elj|;emn|;en1|;en8|;enp|;eqe|;eqs|;er8|;erc|;es1|;esk|;etb|;ets|;eu1|;eu8|;euk|;euv|;ewf|1;ewi|;ewr|;ewu|;exa|;exc|;exf|;exi|1;exp|;eyl|1;eyo|;f0k|;f0n|;f0u|;f1u|;f23|;f26|;f28|;f2f|;f2v|;f2z|;f3h|;f3r|;f3v|;f3x|;f41|;f45|;f50|;f5a|;f5c|;f5j|;f65|;f6p|1;f71|;f7r|;f7t|;f80|;f90|;fau|1;fbd|;fbl|;fbw|;feo|1;fer|1;fev|a;ff8|2;ffc|2;ffg|;ffi|1;ffl|1;ffo|;ffq|;ffs|;ffu|9;fg6|3;fgb|2;fgf|;fgi|1;fgl|;fgn|2;fgr|;fgt|2;fgy|1;fh2|;fh4|7;fhl|1;fhv|;fi0|;fi6|b;fij|3;fip|4;fiw|3;fj2|8;fjc|;fjf|3;fjn|;fjq|1;fjt|3;fjz|5;fk6|5;fkd|1;fkk|6;fks|3;fkx|;fkz|2;fl4|3;fla|;flc|8;fln|;flp|;flr|6;fm0|3;fm5|8;fmf|3;fml|;fmq|;fmw|1;fn0|1;fn3|1;fn6|2;fna|9;fnl|2;fnp|4;fnv|p;fon|;fop|3;fou|2;foy|p;fpp|;fpr|3;fpw|4;fq2|4;fqa|;fqg|;fqj|;fqm|2;fqq|5;fqx|2;fr1|;fr3|6;frb|a;frn|1;frq|b;fs4|1;fsc|;fse|c;fst|1;fsw|;fsz|;ft1|4;ft7|4;ftd|b;ftq|5;ftx|c;fub|2;fuf|;fuj|1;fuo|1;fur|;fut|a;fv5|;fv7|;fv9|3;fve|c;fvs|8;fw2|5;fwa|;fwd|;fwg|3;fwl|;fwn|1;fwr|3;fww|2;fx0|2;fx4|6;fxe|1;fxi|;fxo|c;fy2|5;fy9|1;fyc|7;fyl|4;fyr|4;fyx|2;fz1|;fz3|2;fz7|7;fzg|5;fzn|3;fzs|1;fzv|j;g0g|5;g0n|1;g0q|;g0s|;g0v|3;g10|2;g15|2;g19|1;g1c|5;g1j|6;g1r|2;g1v|6;g23|2;g29|1;g2c|3;g2h|a;g2t|;g2v|7;g35|;g38|5;g3g|;g3k|;g3m|;g3q|4;g3x|;g3z|;g41|7;g4a|;g4c|;g4e|;g4g|;g4i|;g4k|1;g4n|1;g4q|2;g4u|;g4w|9;g58|2;g5f|h;g5z|1;g63|7;g6c|;g6l|;g6o|1;g6r|3;g6w|2;g70|2;g74|3;g79|7;g7i|;g7k|3;g7q|1;g7w|5;g84|6;g8e|;g8g|8;g8q|2;g8x|;g8z|1;g92|1;g95|6;g9e|;g9g|3;g9l|9;ga0|7;gaa|3;gaf|6;gan|5;gav|6;gb3|2;gb7|1;gba|5;gbj|2;gbn|1;gbq|;gbs|6;gc5|;gc9|;gcb|1;gce|;gcg|3;gcl|;gcn|;gcp|;gcs|1;gcw|3;gd1|4;gd7|;gd9|7;gdi|;gdl|;gdn|;gdr|2;gdv|2;gdz|5;ge6|1;ge9|;ged|1;geg|3;gel|5;get|2;gex|1;gf0|1;gf3|5;gfb|;gfe|;gfg|1;gfj|5;gfr|2;gfv|a;gg7|3;ggc|2;ggh|3;ggn|;ggq|;ggs|5;ggz|1;gh2|1;gh5|;gh8|9;ghj|2;ghn|4;ghu|;ghw|;gi2|;gi6|1;gia|2;gie|4;gik|4;giq|;gis|a;gj4|;gj6|;gj8|;gja|;gjd|;gjf|;gjl|2;gjp|;gjs|5;gk0|2;gk4|;gk6|5;gkf|7;gko|b;gl1|3;gl7|1;gla|;gld|;glf|1;gli|e;gly|;gm0|9;gmb|m;gmz|8;gn9|3;gne|5;gno|;go0|d;gof|9;goq|8;gp0|4;gp7|d;gpm|;gpo|;gpq|;gps|k;gqe|j;gqz|5;gra|;gre|;gri|;grk|b;grx|2;gs1|2;gs7|1;gsa|3;gsf|;gsh|j;gt3|1;gt6|;gta|;gtf|;gth|3;gtm|f;gu3|1;gu6|3;gub|8;gul|6;gut|2;gv0|3;gv5|5;gvd|2;gvl|2;gvp|2;gvt|;gvv|9;gw6|f;gwo|2;gws|1;gwv|;gwx|d;gxc|5;gxl|3;gxr|w;gyp|9;gz0|;gz2|4;gz9|2;gzd|9;gzo|2;gzs|1;gzw|b;h0b|8;h0l|;h0n|;h0p|1;h0s|4;h0y|9;h19|6;h1h|1;h1k|2;h1o|4;h1u|2;h1z|3;h25|1;h28|6;h2g|c;h2u|6;h32|9;h3d|7;h3m|1;h3p|;h3r|3;h3w|3;h41|;h44|4;h4a|5;h4h|6;h4p|;h4s|7;h51|1;h54|5;h5d|;h5f|1;h5i|1;h5m|1;h5p|5;h5w|1;h5z|;h62|1;h65|4;h6f|;h6h|2;h6l|;h6n|5;h6v|6;h76|4;h7c|;h7e|6;h7m|1;h7s|2;h7w|4;h82|2;h8b|;h8d|6;h8l|2;h8p|9;h90|;h93|;h97|;h9b|;h9d|1;h9g|;h9i|5;h9p|;h9r|8;ha2|6;haa|1;hag|;hai|3;han|1;har|2;hav|e;hbb|;hbe|;hbi|;hbn|3;hbs|7;hc1|3;hc6|2;hcb|1;hce|2;hci|;hck|1;hcn|;hcs|b;hd5|;hd8|i;hds|e;he8|;hea|;hec|;heg|1;hej|3;heo|a;hf0|f;hfh|;hfj|1;hfo|;hfr|8;hg1|4;hg7|8;hgi|3;hgo|1;hgr|2;hgv|;hgx|5;hh5|a;hhh|6;hhq|6;hhy|;hi0|2;hi4|5;hib|;hid|7;him|3;hir|;hit|1;hiy|5;hj5|1;hj9|4;hjf|;hji|8;hjs|8;hk2|2;hk7|2;hkb|1;hkf|1;hki|2;hkp|6;hky|5;hl6|;hl8|3;hld|1;hlg|3;hll|1;hlo|1;hlr|1;hlu|;hlw|1;hlz|;hm1|6;hm9|1;hmc|;hmf|1;hmk|;hmm|;hmo|;hms|1;hmv|3;hn2|3;hn7|2;hnb|1;hne|;hng|;hnk|2;hnp|;hnr|;hnt|5;ho0|9;hob|a;hop|1;hot|3;hoy|2;hp2|4;hp9|b;hpo|;hpq|j;hqb|h;hqu|;hqw|6;hr4|1;hr7|3;hrc|r;hs9|4;hsf|;hsh|2;hsl|7;hsu|3;hsz|2;ht3|;ht5|5;htf|;hth|4;hto|2;hts|a;hu4|1;hu8|u;hv4|1;hvb|8;hvl|3;hvq|;hvs|;hvu|2;hvy|9;hw9|9;hwk|3;hwp|3;hwu|m;hxi|9;hxt|;hxv|;hxx|h;hyg|6;hyo|;hyq|9;hz1|2;hz5|2;hz9|;hzb|2;hzf|2;hzj|2;hzn|4;hzt|2;hzx|4;i03|5;i0a|6;i0i|;i0k|;i0o|;i0s|5;i0z|5;i16|7;i1f|5;i1m|3;i1r|;i1u|4;i20|1;i23|3;i28|8;i2i|3;i2n|6;i2v|2;i2z|1;i32|2;i36|1;i39|a;i3m|6;i3u|;i3w|2;i40|;i43|6;i4f|8;i4q|4;i4w|9;i57|;i5a|e;i5q|5;i5x|1;i60|;i62|;i67|;i69|;i6b|2;i6f|f;i6y|;i70|;i72|2;i76|3;i7c|;i7e|;i7g|;i7k|1;i7n|;i7r|5;i7y|3;i84|d;i8j|3;i8o|1;i8s|2;i8w|;i8y|3;i93|3;i98|3;i9d|;i9f|1;i9k|4;i9q|;i9x|1;ia0|5;ia7|6;iah|1;iak|l;ib7|;ib9|3;ibe|;ibl|1;ibq|6;iby|d;ice|1;icl|;ico|2;ics|5;id0|5;id7|2;idb|2;idi|1;idn|7;idw|7;ie5|3;iea|7;iek|;iem|c;if0|7;if9|7;ifi|;ifk|2;ifp|2;ift|;ifv|;ify|;ig2|1;ig5|;ig7|2;igb|1;igf|3;igk|;ign|b;ih0|7;ih9|1;ihe|3;ihj|;ihl|1;iho|6;ihw|;ihz|b;iic|6;iik|1;iio|3;iiu|1;iix|;iiz|;ij1|;ij3|;ij5|1;ij8|4;ijf|;ijh|5;ijp|3;ijv|;ijy|;ik0|5;ik7|;ik9|;ikd|2;iki|2;ikm|;ikp|3;iku|;ikx|1;il0|7;il9|;ilb|6;ilk|1;iln|;ilp|1;ilv|1;ily|2;im5|1;im8|5;img|;imi|5;imr|2;imv|2;imz|8;ina|a;inm|4;ins|8;io2|2;io6|7;iof|;ioi|;iol|2;iop|3;iow|;ioy|6;ip6|4;ipc|9;ipp|1;ipt|1;ipw|a;iq8|j;iqt|4;ir0|;ir2|1;ir5|3;ira|6;iri|1;irl|1;iro|1;irr|1;iru|5;is2|3;is7|1;isa|1;isd|;isf|;isi|7;ist|1;isw|1;isz|;it1|3;it6|2;itc|;itf|3;itk|9;itw|;ity|3;iu4|2;iu9|4;iuf|;iuh|4;iun|5;iuu|3;iuz|8;iv9|7;ivk|2;ivq|3;ivv|1;ivy|3;iw4|b;iwh|1;iwl|2;iwp|c;ix5|;ix8|1;ixb|3;ixg|5;ixn|;ixp|4;ixv|2;iy0|;iy2|1;iy5|2;iy9|;iyb|2;iyf|1;iyi|1;iyl|;iyn|1;iyx|e;izd|5;izk|f;j01|4;j07|;j09|;j0b|;j0g|7;j0p|4;j0w|;j0y|3;j14|3;j19|2;j1e|e;j1u|;j1x|;j1z|;j26|3;j2b|7;j2k|2;j2o|;j2q|;j2s|3;j2y|6;j36|2;j3a|2;j3k|h;j43|c;j4h|;j4j|2;j4n|d;j52|3;j5c|h;j5v|d;j6a|4;j6g|5;j6n|1;j6q|1;j6v|2;j6z|1;j72|2;j76|;j78|;j7a|1;j7f|;j7h|5;j7o|c;j82|4;j88|g;j8q|2;j8u|9;j95|1;j98|2;j9c|3;j9j|;j9l|5;j9s|6;ja0|5;ja7|;ja9|1;jac|;jaf|j;jb0|;jb2|5;jb9|8;jbj|1;jbn|;jbq|;jbs|;jbu|;jby|2;jc2|9;jcd|1;jcg|2;jcl|c;jcz|1;jd3|3;jd8|2;jdc|2;jdg|2;jdl|2;jdr|6;jdz|;je1|5;je8|;jea|2;jee|1;jeh|1;jel|6;jeu|8;jf4|4;jfc|4;jfi|;jfk|6;jfs|;jfx|7;jg6|1;jg9|h;jgs|;jgu|a;jh9|;jhg|;jhi|;jhk|9;jhv|3;ji0|1;ji3|4;ji9|r;jj3|;jj9|;jjf|o;jk7|2;jkb|6;jkj|3;jko|;jl4|7;jld|d;jls|h;jmc|6;jml|;jms|1;jmv|2;jmz|7;jn9|8;jnj|6;jnr|b;jo4|;jo6|3;job|a;jon|a;jp5|;jp9|1;jpc|j;jpx|m;jql|9;jqw|1;jqz|1;jr2|;jra|1;jrd|7;jrm|6;jru|2;jry|a;jsa|6;jsi|9;jst|4;jsz|;jt7|;jt9|1;jtc|4;jtk|9;jtx|4;ju3|i;jun|;juq|;jut|;juv|6;jv3|4;jv9|5;jvg|4;jvm|4;jvt|;jvv|9;jw6|;jwb|a;jwn|;jwp|2;jwt|3;jwy|2;jx2|5;jx9|;jxc|d;jxr|5;jxz|1;jy2|7;jyb|1;jye|1;jyh|1;jyk|5;jyr|6;jyz|b;jzd|7;jzm|7;jzv|;jzx|2;k01|;k03|;k05|1;k08|2;k0d|;k0f|;k0h|;k0j|7;k0s|3;k0y|6;k16|3;k1b|;k1e|a;k1r|a;k23|1;k28|2;k2c|3;k2h|;k2j|7;k2s|1;k2v|1;k2y|2;k32|2;k36|1;k39|4;k3f|4;k3l|5;k3v|9;k46|1;k4a|1;k4d|6;k4l|1;k4o|1;k4s|9;k56|3;k5b|1;k5e|j;k60|;k64|c;k6j|;k6l|9;k6x|1;k75|4;k7b|6;k7j|;k7l|2;k7r|;k7t|f;k8a|2;k8e|6;k8m|8;k8w|;k90|a;k9c|2;k9g|6;k9p|;k9r|3;k9w|;ka0|3;ka5|e;kal|3;kas|;kau|9;kb6|;kba|;kbc|6;kbk|;kbn|1;kbq|3;kbv|3;kc0|4;kc6|3;kcc|;kce|7;kco|8;kcy|7;kd7|;kd9|6;kdh|3;kdm|4;kdt|;kdv|3;ke0|7;kec|5;kej|6;ker|;ket|2;kex|1;kf0|6;kfb|;kfe|l;kg1|6;kg9|;kgb|a;kgn|3;kgs|1;kgv|1;kh0|;kh8|;kha|d;khr|7;ki0|c;kie|9;kiq|5;kix|h;kjg|;kji|6;kjx|;kk0|;kk2|2;kk6|2;kka|8;kkl|1;kko|3;kkt|2;kkx|d;klc|h;klv|3;km5|;kmd|;kmj|;kml|2;kmp|1;kms|5;kmz|h;knj|5;knq|2;knv|2;knz|5;ko6|g;kop|;kot|;kox|;koz|b;kpc|8;kpm|;kpo|5;kpv|1;kpy|6;kq6|f;kqo|l;krb|4;krp|;kru|;krw|;krz|1;ks2|7;ksb|b;kso|4;ksu|1;ksx|16;ku8|;kua|1;kud|1;kui|;kul|1;kuo|1;kur|9;kv2|p;kvt|;kvv|9;kw6|;kw9|8;kwj|3;kwp|;kwx|1;kx0|5;kx7|3;kxd|3;kxi|n;ky7|;ky9|;kyb|e;kyr|;kyt|4;kyz|2;kz6|3;kzc|9;kzn|6;kzv|g;l0d|e;l0t|;l0v|;l0x|;l10|;l12|;l16|;l1a|7;l1j|;l1l|1;l1o|b;l21|f;l2j|4;l2p|a;l31|1;l36|1;l39|8;l3j|2;l3n|1;l3s|9;l45|;l47|1;l4a|2;l4e|3;l4j|;l4m|;l4o|4;l4w|;l4y|3;l54|3;l5b|4;l5i|4;l5p|1;l5s|1;l5v|;l5x|;l60|;l64|1;l67|;l69|e;l6p|2;l6t|9;l74|2;l78|3;l7d|;l7f|1;l7i|9;l7u|;l7x|;l7z|;l82|;l84|;l86|5;l8e|6;l8m|;l8o|2;l8s|3;l8x|;l90|5;l97|;l9a|2;l9e|5;l9m|1;l9p|3;l9u|1;l9x|2;la2|;la4|1;la7|2;lab|a;lan|1;laq|2;lau|2;lay|2;lb2|;lb4|4;lba|2;lbe|2;lbj|1;lbm|1;lbr|f;lc8|1;lcb|2;lcf|2;lcj|3;lco|5;lcv|2;lcz|5;ld6|2;lda|d;ldp|6;ldy|;le1|7;lea|;lec|1;lef|a;let|6;lf1|9;lfc|3;lfh|j;lg2|4;lg8|5;lgf|;lgi|;lgq|a;lh2|h;lhl|e;li1|a;lid|;lif|c;lit|;lix|;lj3|j;ljq|5;ljx|3;lk2|;lk4|u;lla|;llj|5;llq|c;lm4|6;lmc|10;lne|;lno|1;lnu|2;lny|1;lo1|4;lo7|9;loi|;lok|9;lov|n;lpk|f;lq1|5;lq8|;lqa|3;lqi|;lqn|;lqt|;lqw|5;lr3|n;lrs|9;ls3|4;ls9|2;lsd|s;lt7|;lta|1;ltd|3;lti|3;lto|;lty|;lu0|1;lu3|;lu5|3;lua|2;lue|h;luy|1;lv2|14;lw8|5;lwi|;lwo|1;lwr|4;lwx|1;lx0|r;lxu|8;ly4|;ly6|9;lyh|o;lz7|1;lzi|a;lzu|a;m06|1;m09|7;m0i|2;m0m|c;m10|a;m1c|;m1e|5;m1p|p;m2g|c;m2u|9;m37|2;m3c|c;m3q|3;m3v|7;m44|;m46|2;m4a|2;m4e|3;m4j|4;m4p|6;m4x|;m50|g;m5i|6;m5r|6;m5z|5;m66|8;m6g|5;m6o|2;m6s|4;m6y|i;m7i|3;m7o|6;m7w|3;m81|5;m89|2;m8e|1;m8h|5;m8o|2;m8v|2;m8z|4;m95|;m97|6;m9f|2;m9j|7;m9s|;m9w|4;ma2|g;mak|6;mas|;mb3|2;mb7|d;mbm|;mbo|2;mbt|5;mc0|;mc3|;mc7|;mc9|a;mcl|1;mco|1;mcr|1;mcu|8;md6|1;mda|;mdc|7;mdl|b;mdy|4;me4|g;mem|;meo|8;mey|4;mf4|2;mf8|6;mfg|;mfi|4;mfo|;mfq|f;mg7|3;mgc|1;mgf|6;mgn|3;mgs|f;mha|4;mhg|2;mhk|5;mhr|3;mhw|4;mi3|3;mi8|2;mic|2;mig|1;mij|8;mit|2;mix|1;mj0|4;mj7|4;mjd|2;mjh|2;mjm|c;mk0|;mk5|1;mk8|3;mkd|5;mkk|;mkm|6;mkv|1;mky|1;ml1|e;mli|1;mll|1;mlo|;mlq|2;mlu|2;mly|3;mm3|7;mmc|5;mmj|d;mmy|1;mn1|2;mn5|9;mng|4;mnm|;mno|1;mnu|;mnx|;mnz|7;mo9|5;mog|2;mok|;mom|4;mos|;mov|5;mp2|;mp4|3;mpf|1;mpi|c;mpw|;mpz|1;mq2|2;mq7|4;mqe|3;mqj|3;mqq|1;mqt|9;mr4|c;mri|7;mrs|2;mrw|6;ms7|4;msd|5;msl|7;msu|a;mt6|i;mtq|1;mtu|6;mu4|6;muc|9;muq|a;mv2|2;mv6|e;mvm|c;mw0|b;mwd|2;mwj|q;mxd|1;mxg|3;mxl|d;my0|i;myk|;myn|o;mzd|c;mzr|f;n09|1;n0c|7;n0l|8;n0w|;n0y|;n10|1;n13|a;n1f|8;n1p|;n1r|3;n1w|7;n25|6;n2d|1;n2g|;n2i|2;n2n|1;n2r|m;n3g|;n3i|;n3k|2;n3o|4;n3v|;n3x|3;n42|3;n47|1;n4b|f;n4s|3;n4x|1;n51|1;n54|d;n5j|4;n5p|3;n5u|;n5y|2;n62|5;n69|;n6b|2;n6h|4;n6n|1;n6q|5;n6y|6;n76|;n7a|4;n7h|3;n7n|1;n7q|1;n7u|8;n84|1;n88|2;n8d|1;n8i|3;n8n|;n8q|1;n8w|6;n94|d;n9j|1;n9m|8;n9w|1;n9z|d;nae|1;nal|;nan|k;nbb|6;nbj|2;nbn|3;nbt|g;ncc|1;ncf|6;nco|;ncq|3;ncw|;ncy|1;nd2|3;nd8|8;ndi|4;ndo|;ndr|3;ndw|3;ne1|1;ne4|a;neg|7;nep|1;nes|;neu|5;nf2|2;nf6|1;nf9|1;nfd|5;nfl|;nfo|2;nfu|1;nfx|3;ng4|1;ng7|1;nga|1;ngd|2;ngi|4;ngo|2;ngs|2;ngy|2;nh2|;nh5|6;nhd|;nhf|4;nhl|1;nho|9;nhz|5;ni6|;ni9|;nib|2;nif|5;nim|5;nit|;nix|2;nj1|3;nj6|7;njf|;njh|;njj|;njl|d;nk0|;nk3|4;nka|5;nki|;nkk|2;nko|4;nku|5;nl1|a;nle|;nlj|e;nlz|2;nm3|4;nm9|;nmb|;nmd|;nmf|c;nmt|;nmv|1;nmy|3;nn3|8;nnd|6;nnm|3;nnr|;nnt|7;no3|2;no7|7;nog|;noi|1;nol|4;nos|8;np3|7;npe|1;nph|1;npk|1;npo|8;nq0|;nq4|7;nqd|g;nqv|2;nr0|1;nr6|3;nrb|7;nrk|4;nrw|2;ns0|;ns2|;ns4|2;ns8|9;nsp|3;nsu|3;nsz|6;nt8|3;ntd|;ntf|7;ntq|7;ntz|6;nu7|5;nue|;nug|4;num|;nup|;nur|2;nuv|e;nvb|1;nve|1;nvh|8;nvr|3;nvw|9;nw7|;nw9|6;nwh|1;nwk|2;nwp|;nws|;nwu|;nww|4;nx3|;nx5|;nx7|3;nxd|;nxf|c;nxt|5;ny0|a;nyc|8;nyn|m;nzb|4;nzh|;nzk|4;nzt|1;nzw|7;o06|2;o0a|1;o0d|g;o0v|3;o10|a;o1c|4;o1i|5;o1p|4;o1w|2;o20|a;o2c|2;o2g|;o2k|4;o2q|2;o2u|1;o2x|5;o35|;o38|;o3a|2;o3e|1;o3k|;o3m|4;o3s|;o3u|4;o40|5;o47|5;o4e|2;o4i|;o4m|;o4o|;o4q|8;o53|;o55|7;o5f|b;o5w|;o5y|2;o62|2;o67|3;o6d|;o6f|2;o6j|3;o6o|2;o6s|2;o6w|3;o71|4;o77|9;o7j|a;o7y|2;o82|1;o88|4;o8e|a;o8q|2;o8u|7;o93|4;o9b|;o9d|;o9f|;o9k|5;o9r|1;o9u|5;oa1|2;oa5|2;oae|1;oah|8;oas|2;oaw|4;ob2|6;obc|3;obh|3;obm|j;oc8|1;ocb|;ocg|;oci|g;od0|2;od4|;odc|7;odl|;odo|c;oe3|;oea|;oec|1;oef|1;oei|8;oes|9;of4|4;ofg|3;ofl|1;ofo|1;ofr|2;ofy|;og0|1;og4|3;og9|3;oge|2;ogk|1;ogo|k;ohc|4;ohj|c;ohx|2;oi1|9;oid|;oih|;oij|8;oit|8;oj4|;oj7|;oj9|;ojb|2;ojf|5;ojm|3;ojr|3;ojw|1;ok0|1;ok3|1;ok6|1;ok9|4;okf|1;okj|4;okp|7;oky|3;ol4|9;olf|3;olk|2;olo|2;olt|1;olw|4;om4|;om6|1;om9|2;omd|3;omk|;omm|1;omp|4;omw|7;on6|1;on9|;onb|7;onk|7;ont|1;onw|4;oo2|;oo6|2;ooa|;ooc|d;oor|3;oow|y;opx|;oq0|1;oq3|1;oq6|5;oqd|1;oqg|f;oqy|;or1|9;orc|;ore|5;orl|2;orq|5;orx|6;os9|4;osf|2;osj|3;oso|1;osr|4;osx|6;ot8|8;oti|f;otz|b;ouc|3;ouh|7;ouq|2;ouv|a;ov7|7;ovg|;ovi|9;ovt|5;ow3|;ow7|g;owq|b;ox3|;ox5|2;ox9|s;oy4|;oy8|c;oym|5;oyt|;oyv|9;oz6|g;ozq|2;ozu|5;p01|b;p0f|;p0k|;p0s|;p16|;p1j|;p1r|;p27|;p3a|;p4m|4;p4t|4;p4z|2;p53|e;p5k|;p5n|6;p5v|;p5x|9;p68|3;p6d|a;p6r|;p6t|a;p75|6;p7e|4;p7k|9;p7w|n;p8l|;p8n|;p8p|9;p90|1;p93|;p97|8;p9h|g;p9z|h;paj|7;pas|5;paz|6;pb8|2;pbc|2;pbg|;pbi|3;pbn|4;pbt|;pbv|4;pc3|;pc6|2;pca|;pcf|3;pck|;pcm|;pco|;pcq|4;pcx|3;pd2|1;pd8|;pdb|4;pdh|4;pdp|3;pdu|;pdw|3;pe1|3;pe7|1;pea|1;ped|1;peg|5;pen|;pep|2;pet|;pev|;pex|2;pf1|2;pf5|1;pf8|4;pfe|;pfg|1;pfm|8;pfw|5;pg4|a;pgg|1;pgj|3;pgp|;pgs|1;pgv|7;ph4|6;phc|3;phh|5;pho|;phq|;phu|;phw|7;pi5|2;pi9|4;pif|;pih|4;pin|3;pis|;piv|;pix|1;pj1|1;pj6|2;pja|2;pje|c;pjt|3;pjy|;pk0|2;pk4|3;pk9|;pkb|9;pkm|4;pks|1;pkv|1;pky|2;pl2|7;plb|;plf|;plh|;plj|9;plu|1;plx|7;pm6|;pm8|7;pmh|h;pn0|1;pn3|3;pn9|;pnb|4;pnh|d;pnw|3;po2|2;po6|6;poe|4;pok|1;pon|6;pow|2;pp0|2;pp4|;pp6|8;pph|1;ppk|5;ppr|;ppu|8;pq4|4;pqa|;pqc|1;pqf|;pqh|;pqj|;pqm|e;pr2|1;pr5|5;prc|1;prf|4;prl|1;pro|c;ps3|2;ps7|;psa|1;psd|7;pso|3;pst|k;ptf|d;ptu|2;pu2|;pu7|a;puj|1;pum|a;puy|v;pvv|2;pw6|8;pwg|;pwi|;pwk|9;pwv|;pwx|c;pxb|6;pxj|d;pxy|1;pya|1;pye|;pyn|;pyr|5;pyy|5;pz5|;pz7|;pz9|p;q00|;q02|a;q0e|2;q0p|;q0t|i;q1d|;q1f|6;q1n|a;q1z|f;q2g|7;q2p|;q2r|4;q2x|b;q3a|;q3c|;q3f|1;q3k|1;q3n|1;q3q|;q3t|;q3v|l;q4i|c;q4w|p;q5n|f;q65|3;q6a|;q6c|;q6e|;q6g|;q6l|7;q6u|e;q7b|b;q7o|;q7q|;q7s|a;q84|3;q89|b;q8m|1;q8q|1;q8u|;q8x|1;q90|1;q93|5;q9a|6;q9i|a;q9u|o;qak|5;qar|e;qb7|1;qbc|;qbf|;qbh|1;qbk|e;qc1|a;qcd|k;qcz|;qd1|7;qda|;qdc|h;qdv|h;qee|4;qen|2;qer|7;qf1|c;qff|;qfh|5;qfp|5;qfw|a;qg8|a;qgk|;qgm|c;qh0|3;qh5|4;qhb|2;qhf|1;qhi|6;qhq|c;qi4|3;qi9|5;qig|4;qim|2;qiq|1;qit|3;qiz|3;qj4|;qj6|4;qjd|;qjf|1;qji|1;qjl|4;qjr|d;qk7|;qk9|3;qke|;qkl|2;qkq|4;qkw|a;ql8|2;qlc|5;qlj|3;qlp|;qlr|q;qmj|1;qmo|1;qmr|1;qmu|9;qn6|2;qna|;qnc|5;qnj|;qnp|6;qny|;qo0|e;qoh|2;qol|;qoo|4;qou|;qow|a;qp8|2;qpc|5;qpj|1;qpm|2;qpq|5;qpy|;qq4|11;qr7|8;qrh|;qrl|8;qrv|2;qrz|5;qs6|2;qsa|5;qsi|3;qsp|t;qtk|4;qtq|;qtt|3;qty|i;qui|5;quq|5;qux|3;qv2|8;qvc|5;qvj|2;qvn|6;qvv|2;qvz|k;qwl|4;qwr|b;qx4|;qx6|5;qxe|1;qxh|2;qxl|2;qxp|1;qxs|5;qxz|4;qy5|5;qyc|3;qyh|;qyk|8;qyv|2;qyz|8;qz9|d;qzo|;qzr|1;qzu|2;qzy|;r01|1;r04|6;r0c|6;r0l|;r0n|;r0p|7;r0y|;r10|b;r1d|;r1i|2;r1n|1;r1q|k;r2d|2;r2h|3;r2m|;r2o|a;r32|1;r35|6;r3d|a;r3p|3;r3v|3;r41|3;r46|1;r49|;r4b|2;r4f|5;r4m|g;r55|6;r5d|3;r5i|1;r5l|3;r5q|5;r5x|6;r67|;r69|;r6b|5;r6j|4;r6p|6;r6x|1;r70|3;r76|;r7a|1;r7d|1;r7g|5;r7q|;r82|4;r89|4;r8f|a;r8r|2;r8w|4;r92|2;r96|2;r9a|2;r9e|2;r9j|1;r9m|;r9o|;r9q|5;r9x|3;ra3|4;raa|1;rad|;raf|;rah|4;rao|1;ras|;rau|;raw|9;rb8|2;rbc|2;rbg|6;rbo|5;rbv|;rby|;rc0|3;rc6|3;rcb|3;rcg|7;rcp|3;rcu|1;rcx|6;rd7|2;rdb|7;rdk|2;rdo|;rdq|;rds|1;rdv|9;re7|1;rea|;rec|;ree|;reg|8;req|7;rez|2;rf3|;rf5|h;rfo|;rfq|2;rfu|1;rfx|f;rge|4;rgk|4;rgq|m;rhe|6;rhm|7;rhv|;rhx|2;ri1|a;rid|l;rj0|4;rj6|1;rj9|8;rjj|1;rjo|;rjr|4;rjx|9;rk8|;rka|2;rke|2;rki|4;rko|4;rku|2;rlq|;rmq|;rp3|;rp5|;rp7|4;rpd|2;rph|c;rpw|3;rq2|;rq4|1;rq7|;rq9|1;rqc|2;rqg|5;rqn|4;rqt|6;rr1|;rr4|2;rr8|2;rrd|1;rrg|1;rrj|6;rrr|e;rs7|6;rsf|1;rsi|j;rt3|1;rt6|;rt8|1;rtb|;rtd|6;rtl|l;ru8|5;ruf|7;ruo|;ruq|b;rv3|a;rvf|2;rxg|;rxi|3;rxn|5;rxu|2;rxy|5;ry5|;ry8|2;ryc|1;ryh|1;ryk|a;ryx|;ryz|1;rz3|2;rz7|;rz9|a;rzm|5;rzt|1;rzw|;rzy|5;s05|3;s0b|6;s0j|a;s0v|5;s12|6;s1a|6;s1m|;s1o|b;s21|1;s25|u;s31|1;s34|1;s37|3;s3c|2;s3g|6;s3o|c;s43|4;s49|h;s4s|1;s4v|;s4x|7;s56|2;s5a|;s5c|2;s5g|a;s5s|8;s62|;s65|4;s6b|a;s6o|;s6q|;s6u|;s6x|1;s70|1;s74|;s76|1;s7d|6;s7l|3;s7r|1;s7u|8;s84|5;s8b|4;s8h|1;s8k|8;s8u|5;s91|6;s99|1;s9c|g;s9v|3;sa1|1;sa4|4;saa|7;saj|1;sam|d;sb1|n;sbq|1;sby|;scz|;sd7|1;sdb|1;sdf|;sdh|3;sdp|f;se6|1;se9|1;sec|2;seh|e;sey|;sf4|6;sfc|;sfe|1;sfh|1;sfk|;sfo|i;sg8|;sgb|2;sgf|3;sgk|3;sgp|b;sh9|2;shd|7;sho|3;sht|1;shw|;shy|1;si1|d;sig|1;sij|3;sio|4;siv|2;siz|5;sj6|m;sju|1;sjx|;sjz|2;sk4|1;sk7|2;skb|;ske|5;skl|3;skq|;sku|8;sl4|;sl7|;sl9|2;sld|;slf|2;slj|1;slm|1;slq|;slw|9;sm7|6;smg|5;smn|6;smx|g;snf|;snh|5;sno|;snq|e;so6|g;soo|3;sou|3;soz|g;sph|5;spo|;spq|7;spz|3;sq4|;sq6|2;sqa|8;sqk|;sqo|7;sqx|a;sra|;srd|a;srp|;srr|g;ss9|5;ssg|7;ssp|;ssr|6;ssz|7;st8|1;stb|;ste|c;stt|;stv|7;su5|d;suk|e;sv0|;sv2|;sv5|;sv7|5;sve|1;svh|1;svk|a;svw|5;sw4|2;sw8|g;swq|1;swt|a;sx7|5;sxe|;sxi|p;sy9|;syb|a;syo|c;sz2|;sz5|6;szd|3;szi|n;t07|2;t0b|;t0d|4;t0j|h;t12|e;t1i|3;t1n|5;t1u|4;t20|3;t25|k;t2r|3;t2w|1;t30|;t34|i;t3o|8;t3y|g;t4g|1;t4j|b;t4w|a;t58|6;t5g|m;t64|9;t6f|1;t6j|;t6l|;t6n|1;t6q|2;t6u|2;t6y|q;t7q|2;t7w|;t7y|;t80|1;t83|e;t8j|1;t8m|j;t97|;t99|;t9c|;t9g|f;t9x|b;taa|b;tan|3;tas|1;tav|1;taz|;tb1|1;tb4|;tb6|3;tbb|i;tbv|8;tc5|;tcv|;tcy|;tdt|;tdv|;tek|;tfa|;tgt|;thj|;tiv|1;tiy|3;tj3|1;tj6|1;tj9|1;tjc|1;tjf|9;tjq|3;tjv|1;tjy|g;tkg|2;tkl|2;tkp|7;tkz|;tl1|8;tlc|6;tlm|2;tlq|7;tm0|;tmc|;tng|2;tnk|4;tns|;tnu|;tnw|7;to8|5;tof|6;toq|7;toz|1;tp2|;tp4|;tp7|4;tpd|3;tpl|4;tpr|9;tq3|3;tq8|1;tqb|8;tql|2;tqp|8;tqz|1;tr2|;tr5|4;trb|3;trg|;tri|;trk|1;trn|1;trq|;trs|1;trv|2;trz|f;tsi|d;tsx|2;tt1|;tt4|2;ttb|3;ttg|7;ttp|;ttr|1;ttu|7;tu3|;tu5|6;tue|;tug|1;tuj|h;tv2|4;tv8|2;tvc|2;tvh|7;tvq|5;tw1|1;tw5|3;twa|8;twm|;two|2;tws|2;tww|4;tx2|2;tx6|b;txj|4;txp|2;txw|;txz|f;tyg|;tyi|4;typ|3;tyu|5;tz1|c;tzf|5;tzm|7;tzw|5;u03|;u05|1;u0d|1;u0g|3;u0l|1;u0o|3;u0t|b;u16|;u18|c;u1n|6;u1v|1;u1y|3;u23|;u25|3;u2a|3;u2f|2;u2j|;u2p|;u2r|g;u3a|3;u3f|5;u3m|a;u3z|6;u5k|1;u5o|3;u5t|3;u5y|e;u6e|6;u6m|;u6z|1;u72|5;u79|2;u7d|4;u7j|;u7l|1;u7o|2;u7t|1;u7w|2;u80|;u82|1;u85|;u87|3;u8c|;u8e|;u8g|c;u8u|1;u8x|;u90|1;u93|c;u9h|;u9j|c;u9x|;u9z|7;ua8|9;uaj|4;uap|2;uc6|3;ucb|3;uch|;ucj|5;ucq|b;ud4|5;udd|4;udj|;udl|;udn|i;ue7|8;ueh|1;uek|2;ueo|1;ues|b;uf5|6;ufd|8;ufo|2;uft|e;ug9|9;ugk|i;uh4|2;uh8|4;uhe|a;uhq|2;uhu|a;uj3|;ujs|;ujv|;ujx|;ujz|5;uk6|c;ukm|1;ukq|;ukt|;ukv|9;ul8|;ulb|4;uli|1;uln|4;ult|3;uly|1;um1|6;um9|5;umg|a;ums|6;un2|2;un6|3;unb|4;unh|2;unl|4;unr|;unt|3;uny|8;uo8|;uoa|8;uok|2;uoo|3;uov|2;up0|;up2|3;up8|;upb|2;upg|3;upm|9;upx|3;uq3|;uq5|6;uqd|;uqf|;uqi|1;uql|5;uqs|2;uqw|;uqy|1;ur1|3;ur9|1;urc|1;urh|;urj|2;urn|1;urq|4;urz|;us3|4;us9|5;usg|2;usk|9;usw|1;ut0|;ut3|1;ut9|;utb|;ute|;uth|9;uts|;utu|3;utz|;uu3|2;uu7|2;uub|3;uug|1;uuj|2;uun|;uup|6;uux|8;uv8|c;uvm|7;uvx|3;uw2|1;uw6|2;uwd|1;uwh|4;uwn|5;uzp|2;uzt|1;uzx|;v01|6;v09|4;v0f|1;v0i|7;v0s|;v0w|;v0y|;v10|5;v17|;v19|6;v1h|1;v1k|1;v1p|4;v1v|1;v1y|3;v23|;v25|8;v2h|3;v2m|6;v2u|b;v3b|e;v3r|2;v3v|h;v4g|;v4i|2;v4m|n;v5b|;v5d|k;v5z|o;v6p|5;v6w|1;v6z|5;v76|l;v7t|c;v87|8;vat|;vax|4;vb3|f;vbk|i;vc4|d;vck|3;vcr|9;vd2|2;vd8|5;vdf|3;vdk|;vdm|6;vdu|;vdw|4;ve3|;ve5|l;veu|4;vf2|2;vf6|1;vf9|7;vfi|;vfk|;vfm|n;vgb|;vgd|1;vgg|g;vgy|l;vhl|3;vhq|4;vhw|7;vi6|1;vil|1;vio|2;vis|5;vj0|;vj3|1;vj6|;vj8|f;vk7|4;vkg|;1d6o|3;1d6t|2;1d6z|;1d71|;1d79|;1d7b|;1d7e|;1d7m|;1d7x|;1d81|;1d87|;1d89|1;1d8j|;1d8n|1;1d8q|;1d8y|;1d9a|;1d9e|;1d9h|;1d9j|;1d9u|;1d9y|;1da0|1;1da6|;1da8|;1dae|;1dai|;1dam|;1dat|;1db0|;1db3|;1dbp|;1dbv|;1dbx|;1dc5|1;1dc8|;1dco|;1dcs|2;1dcw|;1dd0|;1dd3|;1dd5|;1ddg|1;1ddm|;1ddp|;1ddr|;1ddu|;1ddx|3;1de2|;1de4|1;1df7|2;1dfe|;1dft|;1dfv|;1dgd|1;1dkw|4;1e6o|9;1e7k|y;1e8k|i;1e94|3;1edd|4e;1eht|t;1eiq|5;1eiy|5;1ej6|5;1eje|2;1ejk|6;1ejs|6;2q68|c;2q6o|2k;2q9c|1o;2qdc|2;2qds|17;2qf4|8;2qfk|1;2t5t|;2t6m|;2t6u|;2t72|;2t7s|;2t8m|1;2t8q|;2t90|;2tai|3;2tap|;2tbi|;2tcc|;2tce|;2tco|;2tgk|;2tgp|;2tgr|;2thd|;2thw|;2tiq|;2tj8|;2tjg|;2tjo|;2tkp|;2tln|;2tmc|1;2tnd|;2tni|;2tnk|;2to7|;2tof|1;2tph|;2tqi|;2tr9|;2ts1|;2ts5|2;2ttq|2;2tuo|;2tuv|;2tv9|;2tvt|;2tvv|;2tx1|;2tx8|;2txv|1;2ty7|;2u05|;2u13|;2u1a|;2u1d|1;2u1v|;2u3b|;2u4c|;2u4e|;2u6f|;2u8e|;2u91|;2u9f|;2u9v|;2ua2|;2ua8|;2uad|;2uan|1;2uaz|;2uc1|;2uc5|;2uc9|1;2uco|;2ucw|;2udy|;2ueu|;2uj2|;2uk1|;2um1|;2ur0|;2usz|;2uvp|;2uxi|;2uxv|;2uz8|;2v09|;2v3b|;2v4h|;2v68|;2v73|;2v7u|;2v90|;2v9e|;2v9p|;2vbh|;2vf3|;2vfj|;2vfs|1;2vgf|;2vgm|;2vgr|;2vhe|;2vhn|;2vi3|;2vi7|;2vij|;2vil|;2vj4|;2vjo|;2vju|1;2vk1|2;2vkj|;2vl1|;2vlj|1;2vlo|;2vm5|;2vme|;2vmk|;2vn9|;2vnc|;2vnz|;2vo3|3;2vod|;2vot|;2vpb|;2vpx|;2vqg|;2vqp|1;2vra|3;2vrg|2;2vsf|;2vsh|;2vsk|;2vss|;2vsu|1;2vti|;2vto|;2vtz|;2vua|;2vuw|;2vwk|;2vwp|1;2vwt|4;2vx2|;2vx9|;2vyk|;2vzh|;2vzn|;2vzp|6;2w0c|;2w0m|;2w0o|;2w0t|;2w0y|;2w16|2;2w1i|;2w2f|1;2w2l|;2w3c|3;2w4d|;2w4m|;2w4t|1;2w4w|1;2w57|;2w5o|;2w6c|;2w7h|;2w7k|;2w8d|;2w8k|2;2w8s|;2w9r|;2wa2|3;2wb8|;2wbh|1;2wcv|;2wd8|;2wdr|;2wdx|3;2we3|;2weg|;2weu|;2wf1|;2wfo|;2wfz|2;2wg7|2;2wgf|;2wgj|;2wh0|;2whg|2;2wj3|;2wjf|;2wjh|;2wjp|;2wjs|;2wjz|;2wlc|;2wlj|;2wnt|;2wqk|;2wr3|;2wsc|;2wtk|1;2wts|;2wv7|;2wvy|;2ww2|3;2wxi|;2wxm|;2wz9|1;2wzy|;2x08|;2x0c|;2x1h|1;2x2l|;2x32|;2x3n|;2x3q|;2x44|;2x4v|;2x5e|;2x5g|1;2x6y|;2x7b|;2x86|;2x9k|;2xa5|;2xdj|;2xdu|;2xee|;2xhm|;2xhv|;2xi1|;2xj2|;2xk1|;2xle|;2xmg|;2xmi|;2xmo|2;2xn7|;2xn9|;2xnj|;2xnq|2;2xoa|2;2xoe|;2xot|;2xow|;2xpi|;2xq2|2;2xqv|;2xrg|5;2xrn|1;2xt7|;2xtc|5;2xtv|;2xtz|;2xuh|3;2xun|;2xv3|;2xv9|1;2xvc|4;2xwg|;2xwo|2;2xwt|;2xx5|2;2xxc|;2xxh|;2xxu|;2xy6|;2xy9|3;2xyv|;2xyz|;2xz7|2;2xzy|4;2y0u|1;2y1d|;2y1i|3;2y2i|;2y2r|2;2y34|2;2y39|;2y3g|;2y3m|;2y3r|;2y4b|;2y4k|;2y54|;2y5m|;2y64|;2y68|;2y6b|;2y6g|;2y6u|;2y8r|;2y9f|;2yb1|;2yb8|;2ybp|;2ybv|;2ycj|;2yis|;2ym9|1;2yp6|;2yr4|;2ysi|;2ysl|;2yss|;2yx2|;2yxf|;2yxq|;2yz4|;2z06|;2z0a|;2z0q|;2z0x|;2z1n|;2z21|;2z30|;2z37|;2z3r|;2z3x|;2z61|;2z6s|;2z6w|;2z7s|;2z85|;2z9r|;2z9x|;2zca|;2zdq|;2zdt|;2zfs|;2zid|;2zih|;2zjy|;2zkq|;2zlz|;2zng|;2zoq|;2zq3|;2zqr|;2zqy|;2zs1|;2zsx|;2zsz|;2zuw|;2zy4|;302p|;302t|;3071|;307k|;307r|;308q|;30bp|;30c1|;30cr|;30cx|;30ds|;30e4|;30e9|;30eh|;30ek|;30fh|;30gj|;30gr|;30hc|;30ic|;30jx|;30kv|;30la|;30nv|1;30ob|;30q0|;30qi|;30ra|;30rc|;30tw|2;30uq|;30us|;30uz|;30v3|;30ve|;30xh|;30xt|;30ye|;30z8|1;30zx|;311f|;313z|1;314h|;3165|;316p|;3187|;319i|;31a1|;31an|;31bb|;31bf|;31c0|;31cj|;31ie|;31lb|;31lh|;31ly|;31m0|;31n2|;31nm|;31of|;31oj|;31pm|;31sa|;31se|;31uu|1;31vc|;31vw|;31w1|;31w5|;31wi|;31xk|;31y3|;31y9|;31yh|;31yq|;31yv|;31z6|;31za|;31zd|;3213|1;321e|;322s|;3230|;323r|;324t|;3251|;325c|;325f|1;325z|;327i|;328d|;329i|;329u|;32bc|;32bv|;32cz|;32en|;32ic|;32ks|;32lf|;32nn|;32o4|;32ob|;32p2|;32pp|1;32q6|;32rb|;32rg|;32sa|;32tf|;32v1|;32wt|;32wy|;32xw|1;32yb|;32yw|1;32zu|;3307|2;330v|;331h|;331r|;331t|3;332u|;3332|;3336|;3341|;3349|1;3357|2;336a|;336o|1;337k|;337u|;338f|;33ck|;33d8|;33dq|;33dy|;33ec|1;33eh|1;33em|;33eo|;33gf|;33gw|;33hr|;33hu|;33l1|;33mh|;33n4|;33o1|;33oa|;33on|;33px|;33q1|;33q4|;33qz|;33rh|2;33sj|;33sw|;33tj|;33tm|;33uk|;33uo|;33vd|;33vj|;33w7|;33wu|;33xa|;33xi|;33xp|;33y2|;33z3|;33zi|;3403|;340m|;340w|;3419|;341b|;341r|;342u|;343l|;344i|;3458|;345e|;345x|2;348q|;34jm|;34pz|;34rf|;34ry|;34sa|;34t6|;34uy|;352b|;353t|2;354l|;354n|;3553|2;356k|3;358g|;3597|;35a6|;35an|;35bq|7;35cz|;35dk|;35dy|;35e9|;35f0|5;35fd|;35hk|3;35ix|;35j3|;35jr|;35kn|5;35md|;35mp|;35my|;35nl|;35of|3;35ov|;35pw|;35pz|;35q8|;35qd|;35rf|5;35sh|;35tl|4;35uf|;35vp|;35vv|2;35w1|;35xl|;35y9|;35yk|;35z8|;35zj|;35zt|;360v|1;3610|;361a|;361h|2;361o|;361r|;361t|;362f|;362i|;363n|2;363w|;3645|;364t|;365e|;3664|;366z|;368b|;368m|;368p|;369i|2;369w|;36ab|;36ad|;36at|;36bj|;36bl|;36bt|1;36cu|;36d6|;36dp|;36e2|;36es|;36fc|;36g2|3;36h8|;36hi|;36ho|;36il|;36ip|;36jt|1;36k2|;36k8|;36kk|;36lx|1;36my|1;36nn|;36o7|1;36pl|;36po|;36q6|;36qb|;36qe|;36rp|;36sh|;36uw|;36x4|;36zc|;36zu|;371h|;371w|;372v|;374k|;375y|;376t|;3773|;379r|;37c0|;37de|;37dv|;37gi|;37jd|;37jk|3;37jv|;37jz|2;37kc|;37km|1;37kp|;37lb|;37lf|1;37lq|5;37mq|1;37n8|2;37nf|;37nj|;37nm|;37ns|7;37o4|;37ok|;37on|;37op|;37or|2;37p3|4;37ph|;37ps|;37q2|;37q6|1;37qb|;37qd|;37qk|1;37qu|3;37qz|;37ri|;37rm|1;37rp|;37s1|9;37su|;37sy|;37t1|;37t6|;37ta|3;37tp|;37tx|2;37u9|;37uf|3;37v0|;37v7|3;37vo|3;37w1|2;37wa|2;37wg|;37wn|;37wq|;37wx|;37xb|;37xe|;37xl|;37yn|;381a|;3851|;385l|;389q|1;38ax|;38bd|;38cm|;38cz|;38hk|;38iy|1;38l7|;38ls|;38o5|;38o7|;38r2|;38t8|;38ua|;38ue|;38uv|;38uy|;38vd|;38vs|;38w2|;38z0|;3902|;3925|;3963|;396w|;398d|1;39al|;39b7|;39ba|1;39cw|1;39e8|;39g9|;39hj|;39i0|;39ji|;39jl|;39jn|;39qx|;39r9|;39rj|1;39s6|;39t8|;39ta|;39ui|;39yp|;39yt|;39z3|;39zv|3;3a02|;3a05|1;3a0x|;3a10|;3a1b|;3a2h|;3a39|;3a3f|;3a3k|;3a4l|;3a5x|;3a6p|;3a83|;3a8l|;3aar|;3aba|;3abq|;3acd|;3acl|;3ad9|;3aeq|;3ah3|;3ahr|2;3al3|;3al9|;3alu|;3ao8|;3aou|;3aox|;3apv|;3arq|;3as6|;3auk|;3avg|;3az8|;3b11|;3b18|;3b1q|1;3b2v|;3b3d|;3b78|;3b7t|;3b8z|1;3b9i|;3bac|;3bag|;3bb5|;3bba|;3bc1|;3bd6|;3bdx|;3bf5|;3bfo|;3bgg|1;3bi6|;3bj4|;3bjk|;3bk3|;3bmh|;3bnd|;3bpq|;3brd|;3bsx|2;3bty|;3buk|;3bvb|1;3bx6|;3byj|;3c2p|1;3c4h|;3c4p|;3c5k|;3c6c|;3c77|;3c7r|;3c84|1;3caq|;3cbl|;3cd5|3;3cfh|1;3cfm|;3cgt|;3ck8|;3ckh|;3ckq|1;3cnk|;3cqd|;3cqz|1;3cr5|;3cu6|;3cvp|;3cvs|;3cw2|;3cwg|2;3cy2|;3cyx|;3czo|;3czs|1;3czx|;3d08|;3d3m|;3d6a|;3d7k|;3d7x|;3d8f|;3daq|;3dba|;3df3|;3df5|;3df9|;3dga|;3dgo|;3dh8|;3dhy|;3dj5|;3dll|;3dmb|1;3dn0|;3dp8|;3dqe|;3dr2|;3dri|;3ds8|;3dsa|;3dsj|;3dtz|;3dvy|;3dw1|;3dwm|;3dx5|;3dxt|;3e08|;3e0l|;3e2a|;3e2i|;3e3x|1;3e44|;3e4i|;3e4x|1;3e9x|;3ea2|;3eab|;3ead|;3ear|;3eaw|;3ec0|3;3ecb|;3ed1|;3ede|;3edy|1;3ee5|;3eer|;3ef4|;3egn|;3eht|;3eio|1;3eiu|;3eke|4;3elg|;3elz|1;3em5|;3em8|;3emb|;3emp|;3eoy|8;3eq9|;3er8|;3esg|7;3esu|;3eu4|;3eui|1;3euo|;3ev4|;3ev9|;3evb|;3evm|;3ewy|3;3ey6|;3eya|;3eyf|;3eys|;3eyw|;3eyz|;3ezd|;3f0w|7;3f3a|;3f5f|1;3f6n|;3f6p|;3f7i|;3f8e|1;3f9q|;3fbf|;3fbm|1;3fd4|;3fe5|2;3ff1|;3ff6|;3fg0|;3fg8|;3fgp|;3fgs|1;3fhi|1;3fj8|1;3fjp|;3fm5|;3fob|;3fqf|;3fr4|;3fr9|;3frf|;3fsi|;3fsm|;3fty|;3fwy|;3fyy|;3g1r|;3g2q|;3g40|;3g5g|;3g5i|;3gc4|;3gdf|;3gf4|;3gf8|;3gfx|1;3gg7|;3ggc|;3ghe|;3ghl|;3gid|2;3gk4|;3gnj|;3gol|1;3gox|;3gpq|;3gqs|1;3gss|;3gwo|;3gxc|;3gyl|;3gz6|;3gzs|;3h2c|;3h47|;3h4q|;3h5s|;3h7h|;3h8d|;3h8q|;3h8u|;3ha6|;3har|;3hax|;3hbt|;3hc4|;3hdp|1;3hf8|;3hfq|;3hfv|;3hg8|;3hh4|2;3hhk|;3hid|;3hm7|;3hmc|;3hn6|;3hpo|;3hrl|;3hs5|;3hv3|;3hw3|1;3hwm|;3hwz|;3hxg|;3hxr|;3hy0|;3hz1|;3hzw|;3i31|;3i33|;3i9a|;3id3|;3iex|;3if6|;3ifd|;3ify|;3ig3|1;3ih4|;3iir|;3ij4|;3ikd|1;3ilk|1;3ilw|;3ini|;3iof|;3iot|;3ipb|;3iq1|;3ir3|;3irg|;3itj|;3iu0|;3iu2|;3ivq|;3iws|;3ixn|;3iz1|;3izm|;3j0m|;3j14|;3j1r|;3j22|;3j39|;3j3h|;3j3x|;3j4a|;3j82|;3jag|;3jak|;3jar|;3jb6|;3jep|;3jgc|1;3jho|;3jl4|;3jlg|;3jls|;3jm3|;3jmt|;3jnf|;3jqi|1;3jqq|;3jr0|;3jrs|;3js6|;3jtb|;3jtf|;3k04|;3k17|;3k7h|;3k8j|;3k94|1;3k9i|;3k9w|;3ka0|;3ka4|1;3kam|;3kax|;3kbs|;3kbu|1;3kc8|;3kcc|;3kcg|;3kd8|;3kda|;3kdd|;3kdf|1;3kdj|1;3ke1|3;3ken|;3keu|;3kf9|;3kfd|;3kfm|;3kfq|;3kg4|7;3kgp|1;3kht|2;3kii|2;3kjk|;3kjq|;3kjv|1;3kjy|;3kke|5;3kkl|;3kkq|;3kl8|;3klo|;3klv|;3km9|1;3kmj|2;3kmn|;3kna|;3kng|;3kni|;3knk|;3ko3|3;3koc|;3kpb|;3kpl|;3kpo|1;3kqh|;3kqq|;3kqt|;3kr8|;3krb|;3krd|1;3krr|5;3ks5|;3ksf|;3ksj|;3ksp|;3kt8|1;3ktf|;3kti|;3ktn|;3kts|;3ku1|;3ku3|;3ky2|;3ky5|;3kya|;3l10|;3l3t|;3l4p|;3l73|;3l86|;3l89|;3l9h|1;3lav|;3lbg|;3lbm|1;3lcp|;3ld3|;3lj9|;3lo9|;3loo|;3lor|;3loz|;3lpr|2;3lq8|;3lr8|1;3lrg|1;3lsd|;3lsg|;3lto|;3lu5|;3luj|;3lum|;3lv4|;3lwc|;3lwo|;3lxx|;3lyj|;3me5|;3me8|;3mer|;3mf3|;3mfc|;3mj4|;3mjd|1;3mjp|;3mjr|;3mou|;3mpc|;3mpk|;3mqf|;3mqx|;3mr8|;3mv3|;3mzk|;3n02|;3n4k|;3n68|;3n87|;3nac|;3nbl|;3nca|;3nch|;3ncq|;3ncz|;3nd1|;3ne7|;3net|;3nev|2;3nfh|;3nfu|;3nh9|;3nib|;3nih|;3nl4|;3nm5|;3nr9|;3nri|;3nx1|;3o1f|;3o31|;3o72|;3o7u|;3o8s|;3o9k|;3o9n|;3oc6|;3ocm|;3odp|;3ofc|;3oh8|;3ohc|;3ohv|;3ojc|;3okj|;3okw|;3oon|;3opq|;3or8|;3ouf|;3ovt|;3owx|;3ox9|;3oxf|;3oxk|;3oxq|;3oxz|;3oyr|;3oz7|1;3p00|;3p1u|1;3p2j|;3p2s|1;3p3z|;3p4l|;3p5s|;3p6b|;3p8z|;3p9b|;3p9u|;3p9w|;3p9y|;3pa2|;3pa5|;3pb3|;3pbz|;3pe9|;3pgp|;3pil|;3pkk|;3pln|;3pvq|;3pvv|;3pxd|;3pyq|;3pze|;3pzv|;3q21|;3ri7|;3z9g|;465h|;4663|;4668|;467s|;468k|;4692|;46a5|;46aj|;46fo|;46gi|;46gs|;46hg|;4an1|1;4ay4|;")) +q.push(A.F("Noto Sans Tagalog","https://fonts.gstatic.com/s/notosanstagalog/v17/J7aFnoNzCnFcV9ZI-sUYuvote1R0wwEAA8jHexnL.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;4jk|l;4kf|;4l1|1;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;")) +q.push(A.F("Noto Sans Tagbanwa","https://fonts.gstatic.com/s/notosanstagbanwa/v17/Y4GWYbB8VTEp4t3MKJSMmQdIKjRtt_nZRjQEaYpGoQ.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;4l1|1;4m8|c;4mm|2;4mq|1;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;")) +q.push(A.F("Noto Sans Tai Le","https://fonts.gstatic.com/s/notosanstaile/v17/vEFK2-VODB8RrNDvZSUmVxEATwR58tK1W77HtMo.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;37k|9;500|t;50w|4;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;9hd|1;9hk|3;")) +q.push(A.F("Noto Sans Tai Tham","https://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBCUbPgquyaRGKMw.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;55s|1q;57k|s;58f|a;58w|9;59c|d;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;6qh|;")) +q.push(A.F("Noto Sans Tai Viet","https://fonts.gstatic.com/s/notosanstaiviet/v16/8QIUdj3HhN_lv4jf9vsE-9GMOLsaSPZr644fWsRO9w.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;x3f|1;xog|1u;xqz|4;")) +q.push(A.F("Noto Sans Takri","https://fonts.gstatic.com/s/notosanstakri/v21/TuGJUVpzXI5FBtUq5a8bnKIOdTwQNO_W3khJXg.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1us|1;60w|5;61q|;642|1;6bw|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;x80|9;1j0g|1k;1j28|9;")) +q.push(A.F("Noto Sans Tamil","https://fonts.gstatic.com/s/notosanstamil/v26/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGo70RqKDt_EvT.ttf","w|2m;4g|3;4l|;4n|4;4t|3;4y|2;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1u9|1;1us|1;29u|1;29x|5;2a6|2;2aa|3;2ah|1;2ak|;2am|1;2ar|1;2aw|2;2b2|b;2bi|4;2bq|2;2bu|3;2c0|;2c7|;2cm|k;5p6|;60w|5;61q|;642|1;6bv|2;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6es|;6f6|2;6gc|;6gp|;6jm|;6qa|;7gs|;xdf|;1ibl|;1ibn|;1id7|1;")) +q.push(A.F("Noto Sans Tamil Supplement","https://fonts.gstatic.com/s/notosanstamilsupplement/v19/DdTz78kEtnooLS5rXF1DaruiCd_bFp_Ph4sGcn7ax_vsAeMkeq1x.ttf","1ku8|1d;1kvz|;")) +q.push(A.F("Noto Sans Telugu","https://fonts.gstatic.com/s/notosanstelugu/v19/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezbqQUbf-3v37w.ttf","w|2m;4g|3;4l|;4n|4;4t|3;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1u9|1;1us|1;2dc|c;2dq|2;2du|m;2ei|f;2f1|7;2fa|2;2fe|3;2fp|1;2fs|2;2g0|3;2g6|9;2gn|8;5p6|;5pu|;60w|5;61q|;642|1;6bv|2;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6gp|;6jm|;6qa|;7gs|;")) +q.push(A.F("Noto Sans Thaana","https://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbhLhnu4-tbNu.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;170|;17f|;17j|;19c|c;1hc|1d;60w|5;61q|;642|1;6bv|4;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;1e5u|;1e65|;")) +q.push(A.F("Noto Sans Thai","https://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RtpzF-QRvzzXg.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jg|;jq|1;jt|;k7|6;lc|4;li|2;lm|2;lu|;me|2;mp|;2rl|1l;2tb|s;60w|5;61q|;642|1;6bv|2;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;")) +q.push(A.F("Noto Sans Tifinagh","https://fonts.gstatic.com/s/notosanstifinagh/v17/I_uzMoCduATTei9eI8dawkHIwvmhCvbn6rnEcXfs4Q.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|6;lu|;mb|;me|2;mp|;60w|5;61q|;642|1;6bw|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6cu|;6d5|1;6gc|;6jm|;6qa|;7gs|;8xc|1j;8z3|1;8zj|;")) +q.push(A.F("Noto Sans Tirhuta","https://fonts.gstatic.com/s/notosanstirhuta/v15/t5t6IQYRNJ6TWjahPR6X-M-apUyby7uGUBsTrn5P.ttf","w|;4g|;1u9|1;1us|1;1ys|3;5pu|;6bw|1;7gs|;x80|9;1im8|1z;1iog|9;")) +q.push(A.F("Noto Sans Ugaritic","https://fonts.gstatic.com/s/notosansugaritic/v15/3qTwoiqhnSyU8TNFIdhZVCwbjCpkAXXkMhoIkiazfg.ttf","w|;4g|;1f9c|t;1fa7|;")) +q.push(A.F("Noto Sans Vai","https://fonts.gstatic.com/s/notosansvai/v17/NaPecZTSBuhTirw6IaFn_UrURMTsDIRSfr0.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;wlc|8b;")) +q.push(A.F("Noto Sans Wancho","https://fonts.gstatic.com/s/notosanswancho/v17/zrf-0GXXyfn6Fs0lH9P4cUubP0GBqAPopiRfKp8.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;2ncw|1l;2nen|;")) +q.push(A.F("Noto Sans Warang Citi","https://fonts.gstatic.com/s/notosanswarangciti/v17/EYqtmb9SzL1YtsZSScyKDXIeOv3w-zgsNvKRpeVCCXzdgA.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6bw|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;1jfk|2a;1ji7|;")) +q.push(A.F("Noto Sans Yi","https://fonts.gstatic.com/s/notosansyi/v18/sJoD3LFXjsSdcnzn071rO3apxVDJNVgSNg.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;9hd|1;9hk|9;9hw|7;9ob|;vls|wc;wi8|1i;1edd|;1edo|;1ee2|1;1ee7|;1eg1|4;")) +q.push(A.F("Noto Sans Zanabazar Square","https://fonts.gstatic.com/s/notosanszanabazarsquare/v16/Cn-jJsuGWQxOjaGwMQ6fOicyxLBEMRfDtkzl4uagQtJxOCEgN0Gc.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;1jpc|1z;")) +return q}) +r($,"asZ","yC",()=>{var q=t.S +return new A.Bs(A.az(q),A.az(q),A.akI(),A.a([],t.ex),A.a(["Roboto"],t.s),A.az(q))}) +r($,"avn","mA",()=>B.b.ks($.mB(),new A.a5O())) +r($,"avo","a79",()=>B.b.ks($.mB(),new A.a5P())) +r($,"avk","a76",()=>B.b.ks($.mB(),new A.a5L())) +r($,"avl","a77",()=>B.b.ks($.mB(),new A.a5M())) +r($,"avm","a78",()=>B.b.ks($.mB(),new A.a5N())) +r($,"auJ","ahb",()=>A.a([$.mA(),$.a79(),$.a76(),$.a77(),$.a78()],t.Ao)) +r($,"avp","aa6",()=>B.b.ks($.mB(),new A.a5Q())) +r($,"aw5","aag",()=>{var q=t.Ez +return new A.Bc(new A.Vc(),A.az(q),A.y(t.N,q))}) +s($,"auG","ah9",()=>A.ajf("ftyp")) +r($,"auO","ahd",()=>A.aqY(A.abm(new A.a5q()))) +r($,"aw4","ahZ",()=>new A.UV()) +s($,"auV","ahj",()=>124) +s($,"auW","ahk",()=>59) +s($,"auU","ahi",()=>A.alA(B.BG)) +s($,"auT","a75",()=>A.Ue(A.aj7($.ahi()))) +s($,"atF","a9Y",()=>{var q=A.a_("dD") +return new A.EW(1024,A.ak9(q),A.y(q,A.a_("a7L>")))}) +s($,"auK","ahc",()=>A.acX(A.aiX(A.a3()))) +s($,"ast","ag7",()=>A.YT()) +s($,"ass","ag6",()=>{var q=A.YT() +A.an4(q,0) +return q}) +s($,"awb","ai0",()=>{var q=t.N,p=A.a_("+breaks,graphemes,words(oK,oK,oK)"),o=A.a86(B.tO.a,q,p),n=A.a86(B.tP.a,q,p) +return new A.wQ(A.a86(B.tQ.a,q,p),n,o)}) +s($,"auS","ahh",()=>A.aL([B.jJ,A.aff("grapheme"),B.jK,A.aff("word")],A.a_("rC"),t.e)) +s($,"avU","ahX",()=>A.afi()) +s($,"avT","ahW",()=>{var q=A.ak8(self.window) +q.toString +return A.ap_(q,"createPolicy","flutter-engine",t.e.a({createScriptURL:A.abm(new A.a61())}))}) +s($,"atu","agr",()=>A.adx(0,0,1)) +s($,"auP","ahe",()=>B.K.bu(A.aL(["type","fontsChange"],t.N,t.z))) +s($,"aw3","aaf",()=>{var q=A.afg() +A.ab0(q,"width",0) +A.ab0(q,"height",0) +A.aaX(A.ab_(q),"absolute") +return q}) +s($,"auh","aa0",()=>A.CF(4)) +r($,"avu","aa7",()=>new A.YM()) +s($,"au0","agN",()=>A.ac7(A.a([0,1,2,2,3,0],t.t))) +s($,"avM","ahS",()=>A.a9w(A.a9w(A.a9w(self.window,"Image"),"prototype"),"decode")!=null) +s($,"aw7","aah",()=>{var q=t.N,p=t.S +return new A.VN(A.y(q,t.BO),A.y(p,t.e),A.az(q),A.y(p,q))}) +s($,"auY","aa2",()=>8589934852) +s($,"auZ","ahm",()=>8589934853) +s($,"av_","aa3",()=>8589934848) +s($,"av0","ahn",()=>8589934849) +s($,"av4","aa5",()=>8589934850) +s($,"av5","ahq",()=>8589934851) +s($,"av2","aa4",()=>8589934854) +s($,"av3","ahp",()=>8589934855) +s($,"ava","ahv",()=>458978) +s($,"avb","ahw",()=>458982) +s($,"aw1","aad",()=>458976) +s($,"aw2","aae",()=>458980) +s($,"ave","ahz",()=>458977) +s($,"avf","ahA",()=>458981) +s($,"avc","ahx",()=>458979) +s($,"avd","ahy",()=>458983) +s($,"av1","aho",()=>A.aL([$.aa2(),new A.a5w(),$.ahm(),new A.a5x(),$.aa3(),new A.a5y(),$.ahn(),new A.a5z(),$.aa5(),new A.a5A(),$.ahq(),new A.a5B(),$.aa4(),new A.a5C(),$.ahp(),new A.a5D()],t.S,A.a_("D(hd)"))) +r($,"at4","a7_",()=>new A.BG(A.a([],A.a_("v<~(D)>")),A.ab8(self.window,"(forced-colors: active)"))) +s($,"asU","aB",()=>{var q,p=A.a7O(),o=A.arb(),n=A.akp(0) +if(A.ak3($.a7_().b))n.sa0p(!0) +p=A.alS(n.aS(),!1,"/",p,B.U,!1,null,o) +o=t.K +q=A.ab8(self.window,"(prefers-color-scheme: dark)") +A.aqX() +q=new A.B3(p,A.y(o,A.a_("l7")),A.y(o,A.a_("G3")),q) +q.PA() +o=$.a7_() +p=o.a +if(B.b.gS(p))A.ak2(o.b,o.gDF()) +p.push(q.gFo()) +q.PD() +q.PH() +A.afV(q.gnI()) +return q}) +r($,"att","agq",()=>new A.XG()) +r($,"apt","ahf",()=>A.aq4()) +s($,"avr","ae",()=>(A.a69().gJS()!=null?A.a69().gJS()==="canvaskit":A.arE())?new A.zk():new A.SJ()) +r($,"avW","ahY",()=>{var q=self.window.ImageDecoder +q=(q==null?null:q)!=null&&A.aqz()===B.ax +return q}) +s($,"avs","ahF",()=>A.aL([B.tR,new A.a5S(),B.tS,new A.a5T(),B.tT,new A.a5U(),B.tU,new A.a5V(),B.tV,new A.a5W(),B.tW,new A.a5X(),B.tX,new A.a5Y(),B.tY,new A.a5Z()],t.zB,A.a_("eA(cp)"))) +s($,"at_","agf",()=>A.o4("[a-z0-9\\s]+",!1,!1)) +s($,"at0","agg",()=>A.o4("\\b\\d",!0,!1)) +s($,"awc","mC",()=>A.ajX(A.pE(0,0))) +s($,"atG","agw",()=>{var q=A.aqS("flt-ruler-host"),p=new A.Er(q),o=A.ab_(q) +A.aaX(o,"fixed") +A.ajU(o,"hidden") +A.ajS(o,"hidden") +A.ajT(o,"0") +A.ajR(o,"0") +A.ajV(o,"0") +A.ajQ(o,"0") +A.ak6(A.arh().gSi().gJ6(),q) +A.afV(p.gnI()) +return p}) +s($,"avR","aab",()=>A.anO(A.a([B.MH,B.ML,B.Mu,B.Mv,B.Mx,B.MI,B.Ms,B.Mt,B.Mw,B.MJ,B.MK,B.Mr,B.My,B.Mz,B.MA,B.MB,B.MC,B.MD,B.ME,B.MF,B.MG],A.a_("v>")),null,A.a_("kd?"))) +r($,"awf","yE",()=>A.anP("000a!E000b000cF000d!D000w!R000y!A0013!B0018!M001a!N001c001lO001m!L001n!M001t002iK002n!P002p003eK003p!F004q!K004t!I0051!K0053!L0056!K005c005yK0060006uK006w00k7K00ke00lbK00lc00ofG00og00okK00om00onK00oq00otK00ou!M00ov!K00p2!K00p3!L00p400p6K00p8!K00pa00ptK00pv00s5K00s700w1K00w300w9G00wa010vK010x011yK01210124K0126!K0127!L0128013cK013d!M013e!K013l014tG014v!G014x014yG01500151G0153!G015c0162C0167016aC016b!K016c!L016o016tI01700171M0174017eG017g!I017k018qK018r019bG019c019lO019n!O019o!M019q019rK019s!G019t01cjK01cl!K01cm01csG01ct!I01cv01d0G01d101d2K01d301d4G01d601d9G01da01dbK01dc01dlO01dm01doK01dr!K01e7!I01e8!K01e9!G01ea01f3K01f401fuG01fx01idK01ie01ioG01ip!K01j401jdO01je01kaK01kb01kjG01kk01klK01ko!M01kq!K01kt!G01kw01lhK01li01llG01lm!K01ln01lvG01lw!K01lx01lzG01m0!K01m101m5G01mo01ncK01nd01nfG01nk01nuK01pc01pwK01py01qfK01qr01r5G01r6!I01r701s3G01s401tlK01tm01toG01tp!K01tq01u7G01u8!K01u901ufG01ug01upK01uq01urG01uu01v3O01v501vkK01vl01vnG01vp01vwK01vz01w0K01w301woK01wq01wwK01wy!K01x201x5K01x8!G01x9!K01xa01xgG01xj01xkG01xn01xpG01xq!K01xz!G01y401y5K01y701y9K01ya01ybG01ye01ynO01yo01ypK01z0!K01z2!G01z501z7G01z901zeK01zj01zkK01zn0208K020a020gK020i020jK020l020mK020o020pK020s!G020u020yG02130214G02170219G021d!G021l021oK021q!K021y0227O02280229G022a022cK022d!G022p022rG022t0231K02330235K0237023sK023u0240K02420243K02450249K024c!G024d!K024e024lG024n024pG024r024tG024w!K025c025dK025e025fG025i025rO0261!K02620267G0269026bG026d026kK026n026oK026r027cK027e027kK027m027nK027p027tK027w!G027x!K027y0284G02870288G028b028dG028l028nG028s028tK028v028xK028y028zG0292029bO029d!K029u!G029v!K029x02a2K02a602a8K02aa02adK02ah02aiK02ak!K02am02anK02ar02asK02aw02ayK02b202bdK02bi02bmG02bq02bsG02bu02bxG02c0!K02c7!G02cm02cvO02dc02dgG02dh02doK02dq02dsK02du02egK02ei02exK02f1!K02f202f8G02fa02fcG02fe02fhG02fp02fqG02fs02fuK02g002g1K02g202g3G02g602gfO02gw!K02gx02gzG02h102h8K02ha02hcK02he02i0K02i202ibK02id02ihK02ik!G02il!K02im02isG02iu02iwG02iy02j1G02j902jaG02ji!K02jk02jlK02jm02jnG02jq02jzO02k102k2K02kg02kjG02kk02ksK02ku02kwK02ky02m2K02m302m4G02m5!K02m602mcG02me02mgG02mi02mlG02mm!K02ms02muK02mv!G02n302n5K02n602n7G02na02njO02nu02nzK02o102o3G02o502omK02oq02pdK02pf02pnK02pp!K02ps02pyK02q2!G02q702qcG02qe!G02qg02qnG02qu02r3O02r602r7G02sx!G02t002t6G02tj02tqG02ts02u1O02wh!G02wk02wsG02x402x9G02xc02xlO02yo!K02zc02zdG02zk02ztO0305!G0307!G0309!G030e030fG030g030nK030p031oK031t032cG032e032fG032g032kK032l032vG032x033wG0346!G036z037iG037k037tO03860389G038e038gG038i038kG038n038tG038x0390G039e039pG039r!G039s03a1O03a203a5G03a803b9K03bb!K03bh!K03bk03cqK03cs03m0K03m203m5K03m803meK03mg!K03mi03mlK03mo03nsK03nu03nxK03o003owK03oy03p1K03p403paK03pc!K03pe03phK03pk03pyK03q003rkK03rm03rpK03rs03tmK03tp03trG03uo03v3K03vk03xxK03y003y5K03y904fgK04fj04fzK04g0!R04g104gqK04gw04iyK04j204jcK04jk04jwK04jy04k1K04k204k4G04kg04kxK04ky04l0G04lc04ltK04lu04lvG04m804mkK04mm04moK04mq04mrG04ok04pfG04pp!G04ps04q1O04qz04r1G04r2!I04r404rdO04rk04u0K04u804ucK04ud04ueG04uf04vcK04vd!G04ve!K04vk04xhK04xs04ymK04yo04yzG04z404zfG04zq04zzO053k053tO054w055iK055j055nG0579057iG057k058cG058f!G058g058pO058w0595O059s05a8G05c005c4G05c505dfK05dg05dwG05dx05e3K05e805ehO05ez05f7G05fk05fmG05fn05ggK05gh05gtG05gu05gvK05gw05h5O05h605idK05ie05irG05j405k3K05k405knG05kw05l5O05l905lbK05lc05llO05lm05mlK05mo05mwK05n405oaK05od05ofK05ow05oyG05p005pkG05pl05poK05pp!G05pq05pvK05pw!G05px05pyK05pz05q1G05q2!K05q805vjK05vk05x5G05x705xbG05xc0651K06540659K065c066dK066g066lK066o066vK066x!K066z!K0671!K0673067xK0680069gK069i069oK069q!K069u069wK069y06a4K06a806abK06ae06ajK06ao06b0K06b606b8K06ba06bgK06bk06bqR06bs06buR06bw!G06bx!Q06by06bzI06c806c9N06ck!N06cn!L06co06cpF06cq06cuI06cv!P06db06dcP06dg!M06dw!P06e7!R06e806ecI06ee06enI06ep!K06f3!K06fk06fwK06hc06i8G06iq!K06iv!K06iy06j7K06j9!K06jd06jhK06jo!K06jq!K06js!K06ju06jxK06jz06k9K06kc06kfK06kl06kpK06ku!K06lc06mgK079207ahK08ow08q6K08q808riK08rk08v8K08vf08viK08vj08vlG08vm08vnK08w008x1K08x3!K08x9!K08xc08yvK08z3!K08zj!G08zk0906K090g090mK090o090uK090w0912K0914091aK091c091iK091k091qK091s091yK09200926K09280933G094f!K09hc!R09hh!K09ii09inG09ip09itJ09iz09j0K09ll09lmG09ln09loJ09ls09oaJ09oc09ofJ09ol09prK09pt09seK09sw09trK09v409vjJ0a1c0a2mJ0a2o0a53J0vls0wi4K0wk00wl9K0wlc0wssK0wsw0wtbK0wtc0wtlO0wtm0wtnK0wu80wviK0wvj0wvmG0wvo0wvxG0wvz0wwtK0wwu0wwvG0www0wz3K0wz40wz5G0wzs0x4vK0x4y0x56K0x6d0x6pK0x6q!G0x6r0x6tK0x6u!G0x6v0x6yK0x6z!G0x700x7mK0x7n0x7rG0x7w!G0x8g0x9vK0xa80xa9G0xaa0xbnK0xbo0xc5G0xcg0xcpO0xcw0xddG0xde0xdjK0xdn!K0xdp0xdqK0xdr!G0xds0xe1O0xe20xetK0xeu0xf1G0xf40xfqK0xfr0xg3G0xgg0xh8K0xhc0xhfG0xhg0xiqK0xir0xj4G0xjj!K0xjk0xjtO0xk5!G0xkg0xkpO0xkw0xm0K0xm10xmeG0xmo0xmqK0xmr!G0xms0xmzK0xn00xn1G0xn40xndO0xob0xodG0xps!G0xpu0xpwG0xpz0xq0G0xq60xq7G0xq9!G0xr40xreK0xrf0xrjG0xrm0xroK0xrp0xrqG0xs10xs6K0xs90xseK0xsh0xsmK0xsw0xt2K0xt40xtaK0xtc0xuxK0xv40xyaK0xyb0xyiG0xyk0xylG0xyo0xyxO0xz416lfK16ls16meK16mj16nvK1dkw1dl2K1dlf1dljK1dlp!C1dlq!G1dlr1dm0C1dm21dmeC1dmg1dmkC1dmm!C1dmo1dmpC1dmr1dmsC1dmu1dn3C1dn41dptK1dqr1e0tK1e1c1e33K1e361e4nK1e5s1e63K1e681e6nG1e6o!M1e6r!L1e6s!M1e741e7jG1e7n1e7oP1e8d1e8fP1e8g!M1e8i!N1e8k!M1e8l!L1e9c1e9gK1e9i1ed8K1edb!I1edj!N1edo!M1edq!N1eds1ee1O1ee2!L1ee3!M1ee91eeyK1ef3!P1ef51efuK1eg61ehpJ1ehq1ehrG1ehs1eimK1eiq1eivK1eiy1ej3K1ej61ejbK1eje1ejgK1ek91ekbI1ekg1ekrK1ekt1eliK1elk1em2K1em41em5K1em71emlK1emo1en1K1eo01ereK1etc1eusK1eyl!G1f281f30K1f341f4gK1f4w!G1f5s1f6nK1f711f7uK1f801f91K1f921f96G1f9c1fa5K1fa81fb7K1fbc1fbjK1fbl1fbpK1fcw1fh9K1fhc1fhlO1fhs1firK1fiw1fjvK1fk01fl3K1flc1fmrK1fr41fzqK1g001g0lK1g0w1g13K1g5c1g5hK1g5k!K1g5m1g6tK1g6v1g6wK1g70!K1g731g7pK1g801g8mK1g8w1g9qK1gbk1gc2K1gc41gc5K1gcg1gd1K1gdc1ge1K1gg01ghjK1ghq1ghrK1gjk!K1gjl1gjnG1gjp1gjqG1gjw1gjzG1gk01gk3K1gk51gk7K1gk91gl1K1gl41gl6G1glb!G1gm81gn0K1gn41gnwK1gow1gp3K1gp51gpwK1gpx1gpyG1gqo1gs5K1gsg1gt1K1gtc1gtuK1gu81gupK1gxs1gzsK1h1c1h2qK1h341h4iK1h4w1h5vK1h5w1h5zG1h681h6hO1hfk1hgpK1hgr1hgsG1hgw1hgxK1hj41hjwK1hk7!K1hkg1hl1K1hl21hlcG1ho01hokK1hpc1hpyK1hq81hqaG1hqb1hrrK1hrs1hs6G1ht21htbO1htr1htuG1htv1hv3K1hv41hveG1hvh!I1hvx!I1hw01hwoK1hww1hx5O1hxc1hxeG1hxf1hyeK1hyf1hysG1hyu1hz3O1hz8!K1hz91hzaG1hzb!K1hzk1i0iK1i0j!G1i0m!K1i0w1i0yG1i0z1i2aK1i2b1i2oG1i2p1i2sK1i2x1i30G1i321i33G1i341i3dO1i3e!K1i3g!K1i4g1i4xK1i4z1i5nK1i5o1i5zG1i66!G1i801i86K1i88!K1i8a1i8dK1i8f1i8tK1i8v1i94K1i9c1iamK1ian1iayG1ib41ibdO1ibk1ibnG1ibp1ibwK1ibz1ic0K1ic31icoK1icq1icwK1icy1iczK1id11id5K1id71id8G1id9!K1ida1idgG1idj1idkG1idn1idpG1ids!K1idz!G1ie51ie9K1iea1iebG1iee1iekG1ieo1iesG1iio1ik4K1ik51ikmG1ikn1ikqK1ikw1il5O1ila!G1ilb1ildK1im81injK1ink1io3G1io41io5K1io7!K1iog1iopO1itc1iumK1iun1iutG1iuw1iv4G1ivs1ivvK1ivw1ivxG1iww1iy7K1iy81iyoG1iys!K1iz41izdO1j0g1j1mK1j1n1j1zG1j20!K1j281j2hO1j4t1j57G1j5c1j5lO1jb41jcbK1jcc1jcqG1jfk1jhbK1jhc1jhlO1ji71jieK1jih!K1jik1jirK1jit1jiuK1jiw1jjjK1jjk1jjpG1jjr1jjsG1jjv1jjyG1jjz!K1jk0!G1jk1!K1jk21jk3G1jkg1jkpO1jmo1jmvK1jmy1jo0K1jo11jo7G1joa1jogG1joh!K1joj!K1jok!G1jpc!K1jpd1jpmG1jpn1jqqK1jqr1jqxG1jqy!K1jqz1jr2G1jrb!G1jrk!K1jrl1jrvG1jrw1jt5K1jt61jtlG1jtp!K1juo1jw8K1k3k1k3sK1k3u1k4uK1k4v1k52G1k541k5bG1k5c!K1k5s1k61O1k6q1k7jK1k7m1k87G1k891k8mG1kao1kauK1kaw1kaxK1kaz1kc0K1kc11kc6G1kca!G1kcc1kcdG1kcf1kclG1kcm!K1kcn!G1kcw1kd5O1kdc1kdhK1kdj1kdkK1kdm1kehK1kei1kemG1keo1kepG1ker1kevG1kew!K1kf41kfdO1ko01koiK1koj1komG1kts!K1kw01lllK1log1lriK1ls01lxfK1o1s1oviK1ovk1ovsI1s001sg6K1z401zjsK1zk01zkuK1zkw1zl5O1zo01zotK1zow1zp0G1zpc1zqnK1zqo1zquG1zr41zr7K1zrk1zrtO1zs31zsnK1zst1ztbK20cg20e7K20hs20juK20jz!G20k0!K20k120ljG20lr20luG20lv20m7K20o020o1K20o3!K20o4!G20og20ohG2dc0!J2dlw2dlzJ2fpc2fsaK2fsg2fssK2fsw2ft4K2ftc2ftlK2ftp2ftqG2fts2ftvI2jxh2jxlG2jxp2jxuG2jxv2jy2I2jy32jyaG2jyd2jyjG2jze2jzhG2k3m2k3oG2kg02kicK2kie2kkcK2kke2kkfK2kki!K2kkl2kkmK2kkp2kksK2kku2kl5K2kl7!K2kl92klfK2klh2kn9K2knb2kneK2knh2knoK2knq2knwK2kny2kopK2kor2kouK2kow2kp0K2kp2!K2kp62kpcK2kpe2kytK2kyw2kzkK2kzm2l0aK2l0c2l16K2l182l1wK2l1y2l2sK2l2u2l3iK2l3k2l4eK2l4g2l54K2l562l60K2l622l6qK2l6s2l6zK2l722l8fO2lmo2lo6G2lob2lpoG2lpx!G2lqc!G2lqz2lr3G2lr52lrjG2mtc2mtiG2mtk2mu0G2mu32mu9G2mub2mucG2mue2muiG2n0g2n1oK2n1s2n1yG2n1z2n25K2n282n2hO2n2m!K2ncw2ne3K2ne42ne7G2ne82nehO2oe82ojoK2ok02ok6G2olc2on7K2on82oneG2onf!K2onk2ontO2pkw2pkzK2pl12plrK2plt2pluK2plw!K2plz!K2pm12pmaK2pmc2pmfK2pmh!K2pmj!K2pmq!K2pmv!K2pmx!K2pmz!K2pn12pn3K2pn52pn6K2pn8!K2pnb!K2pnd!K2pnf!K2pnh!K2pnj!K2pnl2pnmK2pno!K2pnr2pnuK2pnw2po2K2po42po7K2po92pocK2poe!K2pog2popK2por2pp7K2ppd2ppfK2pph2pplK2ppn2pq3K2q7k2q89K2q8g2q95K2q9c2qa1K2qcm2qdbH2qrf2qrjG2sc02sc9Ojny9!Ijnz4jo1rGjo5cjobzG",231,B.BB,B.v5,A.a_("cq"))) +s($,"asn","ag5",()=>{var q=t.N +return new A.OB(A.aL(["birthday","bday","birthdayDay","bday-day","birthdayMonth","bday-month","birthdayYear","bday-year","countryCode","country","countryName","country-name","creditCardExpirationDate","cc-exp","creditCardExpirationMonth","cc-exp-month","creditCardExpirationYear","cc-exp-year","creditCardFamilyName","cc-family-name","creditCardGivenName","cc-given-name","creditCardMiddleName","cc-additional-name","creditCardName","cc-name","creditCardNumber","cc-number","creditCardSecurityCode","cc-csc","creditCardType","cc-type","email","email","familyName","family-name","fullStreetAddress","street-address","gender","sex","givenName","given-name","impp","impp","jobTitle","organization-title","language","language","middleName","middleName","name","name","namePrefix","honorific-prefix","nameSuffix","honorific-suffix","newPassword","new-password","nickname","nickname","oneTimeCode","one-time-code","organizationName","organization","password","current-password","photo","photo","postalCode","postal-code","streetAddressLevel1","address-level1","streetAddressLevel2","address-level2","streetAddressLevel3","address-level3","streetAddressLevel4","address-level4","streetAddressLine1","address-line1","streetAddressLine2","address-line2","streetAddressLine3","address-line3","telephoneNumber","tel","telephoneNumberAreaCode","tel-area-code","telephoneNumberCountryCode","tel-country-code","telephoneNumberExtension","tel-extension","telephoneNumberLocal","tel-local","telephoneNumberLocalPrefix","tel-local-prefix","telephoneNumberLocalSuffix","tel-local-suffix","telephoneNumberNational","tel-national","transactionAmount","transaction-amount","transactionCurrency","transaction-currency","url","url","username","username"],q,q))}) +s($,"awd","aai",()=>new A.SR()) +s($,"avP","ahU",()=>A.CF(4)) +s($,"avN","aaa",()=>A.CF(16)) +s($,"avO","ahT",()=>A.aln($.aaa())) +r($,"aw8","cI",()=>A.ajZ(A.ak7(self.window))) +s($,"awe","bC",()=>A.akt(0,$.aB())) +s($,"asG","a9T",()=>A.arq("_$dart_dartClosure")) +s($,"aw6","ai_",()=>B.a7.dO(new A.a6H())) +s($,"atP","agB",()=>A.iI(A.a_D({ +toString:function(){return"$receiver$"}}))) +s($,"atQ","agC",()=>A.iI(A.a_D({$method$:null, +toString:function(){return"$receiver$"}}))) +s($,"atR","agD",()=>A.iI(A.a_D(null))) +s($,"atS","agE",()=>A.iI(function(){var $argumentsExpr$="$arguments$" +try{null.$method$($argumentsExpr$)}catch(q){return q.message}}())) +s($,"atV","agH",()=>A.iI(A.a_D(void 0))) +s($,"atW","agI",()=>A.iI(function(){var $argumentsExpr$="$arguments$" +try{(void 0).$method$($argumentsExpr$)}catch(q){return q.message}}())) +s($,"atU","agG",()=>A.iI(A.ads(null))) +s($,"atT","agF",()=>A.iI(function(){try{null.$method$}catch(q){return q.message}}())) +s($,"atY","agK",()=>A.iI(A.ads(void 0))) +s($,"atX","agJ",()=>A.iI(function(){try{(void 0).$method$}catch(q){return q.message}}())) +s($,"avj","ahE",()=>A.adc(254)) +s($,"av6","ahr",()=>97) +s($,"avh","ahC",()=>65) +s($,"av7","ahs",()=>122) +s($,"avi","ahD",()=>90) +s($,"av8","aht",()=>48) +s($,"au6","a9Z",()=>A.ao_()) +s($,"at2","a9W",()=>A.a_("ai").a($.ai_())) +s($,"atZ","agL",()=>new A.a_R().$0()) +s($,"au_","agM",()=>new A.a_Q().$0()) +s($,"au7","agQ",()=>A.alC(A.pz(A.a([-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-1,-2,-2,-2,-2,-2,62,-2,62,-2,63,52,53,54,55,56,57,58,59,60,61,-2,-2,-2,-1,-2,-2,-2,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,-2,-2,-2,-2,63,-2,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,-2,-2,-2,-2,-2],t.t)))) +s($,"auq","ah0",()=>A.o4("^[\\-\\.0-9A-Z_a-z~]*$",!0,!1)) +r($,"auQ","ahg",()=>new Error().stack!=void 0) +s($,"auR","cU",()=>A.pH(B.M7)) +s($,"atJ","NH",()=>{A.amn() +return $.Wb}) +s($,"avt","ahG",()=>A.apc()) +s($,"asT","cG",()=>A.lv(A.ac7(A.a([1],t.t)).buffer,0,null).getInt8(0)===1?B.X:B.wd) +s($,"avX","NN",()=>new A.OY(A.y(t.N,A.a_("iP")))) +s($,"avg","ahB",()=>A.eJ(B.e3,B.h,t.uu)) +s($,"av9","ahu",()=>A.eJ(B.h,B.E8,t.uu)) +r($,"aub","agS",()=>A.ajC(B.MX,B.MW)) +s($,"avQ","ahV",()=>new A.a60().$0()) +s($,"auI","aha",()=>new A.a59().$0()) +r($,"asY","f8",()=>$.akG) +s($,"asq","b7",()=>A.aU(0,null,!1,t.xR)) +s($,"aua","yD",()=>new A.kh(0,$.agR())) +s($,"au9","agR",()=>A.aq_(0)) +s($,"auM","NK",()=>A.jK(null,t.N)) +s($,"auN","aa1",()=>A.anh()) +s($,"au4","agP",()=>A.alD(8)) +s($,"atI","agx",()=>A.o4("^\\s*at ([^\\s]+).*$",!0,!1)) +s($,"aum","agY",()=>A.eJ(0.75,1,t.i)) +s($,"aun","agZ",()=>A.jp(B.x0)) +s($,"at8","agh",()=>A.jp(B.b1)) +s($,"at9","agi",()=>A.jp(B.zH)) +s($,"auz","ah8",()=>{var q=t.i +return A.a([A.adr(A.eJ(0,0.4,q).h8(A.jp(B.yu)),0.166666,q),A.adr(A.eJ(0.4,1,q).h8(A.jp(B.yx)),0.833334,q)],A.a_("v>"))}) +s($,"auy","NI",()=>A.anL($.ah8(),t.i)) +s($,"aur","ah1",()=>A.eJ(0,1,t.i).h8(A.jp(B.zG))) +s($,"aus","ah2",()=>A.eJ(1.1,1,t.i).h8($.NI())) +s($,"aut","ah3",()=>A.eJ(0.85,1,t.i).h8($.NI())) +s($,"auu","ah4",()=>A.eJ(0,0.6,t.u6).h8(A.jp(B.zI))) +s($,"auv","ah5",()=>A.eJ(1,0,t.i).h8(A.jp(B.zJ))) +s($,"aux","ah7",()=>A.eJ(1,1.05,t.i).h8($.NI())) +s($,"auw","ah6",()=>A.eJ(1,0.9,t.i).h8($.NI())) +s($,"auc","agT",()=>A.eJ(0.875,1,t.i).h8(A.jp(B.dp))) +s($,"atO","agA",()=>A.anx()) +s($,"atN","agz",()=>new A.HP(A.y(A.a_("pa"),t.oz),5,A.a_("HP"))) +s($,"ate","a71",()=>A.alB(4)) +r($,"atp","agm",()=>B.xx) +r($,"atr","ago",()=>{var q=null +return A.adi(q,B.j6,q,q,q,q,"sans-serif",q,q,18,q,q,q,q,q,q,q,q,q,q,q)}) +r($,"atq","agn",()=>{var q=null +return A.a8g(q,q,q,q,q,q,q,q,q,B.hz,B.q,q)}) +s($,"auo","ah_",()=>A.alo()) +s($,"ats","agp",()=>A.adc(65532)) +s($,"avS","aac",()=>{var q=A.alM() +q.sac(0,B.H) +return q}) +s($,"atA","a73",()=>A.k8()) +s($,"atz","agt",()=>A.ac5(0)) +s($,"atB","agu",()=>A.ac5(0)) +s($,"atC","agv",()=>A.alp().a) +s($,"aw9","NO",()=>{var q=t.N,p=t.o0 +return new A.VI(A.y(q,A.a_("ad")),A.y(q,p),A.y(q,p))}) +s($,"atb","agj",()=>A.aL([4294967562,B.zS,4294967564,B.zT,4294967556,B.zU],t.S,t.vQ)) +s($,"ato","a72",()=>new A.Wp(A.a([],A.a_("v<~(fA)>")),A.y(t.F3,t.lT))) +s($,"atn","agl",()=>{var q=t.F3 +return A.aL([B.Nu,A.cA([B.bT],q),B.Nv,A.cA([B.bV],q),B.Nw,A.cA([B.bT,B.bV],q),B.Nt,A.cA([B.bT],q),B.Nq,A.cA([B.bS],q),B.Nr,A.cA([B.cT],q),B.Ns,A.cA([B.bS,B.cT],q),B.Np,A.cA([B.bS],q),B.Nm,A.cA([B.bR],q),B.Nn,A.cA([B.cS],q),B.No,A.cA([B.bR,B.cS],q),B.Nl,A.cA([B.bR],q),B.Ny,A.cA([B.bU],q),B.Nz,A.cA([B.cU],q),B.NA,A.cA([B.bU,B.cU],q),B.Nx,A.cA([B.bU],q),B.NB,A.cA([B.br],q),B.NC,A.cA([B.e7],q),B.ND,A.cA([B.e6],q),B.NE,A.cA([B.cR],q)],A.a_("c2"),A.a_("br"))}) +s($,"atm","a9X",()=>A.aL([B.bT,B.cH,B.bV,B.dS,B.bS,B.bP,B.cT,B.cG,B.bR,B.cF,B.cS,B.dR,B.bU,B.cI,B.cU,B.dT,B.br,B.cC,B.e7,B.dP,B.e6,B.dQ],t.F3,t.lT)) +s($,"atl","agk",()=>{var q=A.y(t.F3,t.lT) +q.l(0,B.cR,B.fK) +q.I(0,$.a9X()) +return q}) +s($,"atM","agy",()=>{var q=$.agW() +q=new A.Fv(q,A.cA([q],A.a_("v8")),A.y(t.N,A.a_("atv"))) +q.c=B.Eg +q.gQf().mb(q.gUq()) +return q}) +s($,"aui","agW",()=>new A.Jw()) +r($,"au3","agO",()=>{var q=A.a_("~(bf)") +return A.aL([B.LW,A.aaW(!0),B.Mp,A.aaW(!1),B.Mb,new A.Eh(A.tq(q)),B.M6,new A.CM(A.tq(q)),B.M9,new A.DC(A.tq(q)),B.LV,new A.AG(A.tq(q)),B.v1,A.amJ(),B.Ma,new A.DE(A.tq(q)),B.Mj,new A.G5(A.tq(q))],t.n,t.nT)}) +s($,"asI","a6Z",()=>{var q,p,o,n=t.c,m=A.y(t.me,n) +for(q=A.a_("af"),p=0;p<2;++p){o=B.fH[p] +m.I(0,A.aL([A.d2(B.at,!1,!1,!1,o),B.io,A.d2(B.at,!1,!0,!1,o),B.is,A.d2(B.at,!0,!1,!1,o),B.iq,A.d2(B.ai,!1,!1,!1,o),B.ip,A.d2(B.ai,!1,!0,!1,o),B.it,A.d2(B.ai,!0,!1,!1,o),B.ir],q,n))}m.l(0,B.ep,B.eU) +m.l(0,B.eq,B.eV) +m.l(0,B.el,B.eY) +m.l(0,B.em,B.eZ) +m.l(0,B.uk,B.ix) +m.l(0,B.ul,B.iy) +m.l(0,B.um,B.iF) +m.l(0,B.un,B.iG) +m.l(0,B.hr,B.cc) +m.l(0,B.hs,B.cd) +m.l(0,B.ht,B.eW) +m.l(0,B.hu,B.eX) +m.l(0,B.uo,B.iB) +m.l(0,B.up,B.iC) +m.l(0,B.uq,B.iz) +m.l(0,B.ur,B.iA) +m.l(0,B.us,B.iD) +m.l(0,B.ut,B.iE) +m.l(0,B.uu,B.wp) +m.l(0,B.uv,B.wq) +m.l(0,B.Gl,B.wl) +m.l(0,B.Gm,B.wm) +m.l(0,B.d6,B.iH) +m.l(0,B.d7,B.iI) +m.l(0,B.hq,B.iJ) +m.l(0,B.hv,B.iK) +m.l(0,B.uC,B.ik) +m.l(0,B.uD,B.il) +m.l(0,B.uE,B.iQ) +m.l(0,B.hw,B.iS) +m.l(0,B.GA,B.iU) +m.l(0,B.GB,B.iR) +m.l(0,B.er,B.o) +m.l(0,B.ei,B.o) +return m}) +s($,"asH","a9U",()=>$.a6Z()) +s($,"asJ","aga",()=>$.a9U()) +s($,"asL","agc",()=>{var q=A.nF($.a6Z(),t.me,t.c) +q.l(0,B.ej,B.cc) +q.l(0,B.ek,B.cd) +q.l(0,B.en,B.iB) +q.l(0,B.eo,B.iC) +return q}) +s($,"asM","a9V",()=>{var q,p,o,n=t.c,m=A.y(t.me,n) +for(q=A.a_("af"),p=0;p<2;++p){o=B.fH[p] +m.I(0,A.aL([A.d2(B.at,!1,!1,!1,o),B.io,A.d2(B.at,!0,!1,!1,o),B.is,A.d2(B.at,!1,!1,!0,o),B.iq,A.d2(B.ai,!1,!1,!1,o),B.ip,A.d2(B.ai,!0,!1,!1,o),B.it,A.d2(B.ai,!1,!1,!0,o),B.ir],q,n))}m.l(0,B.ep,B.eU) +m.l(0,B.eq,B.eV) +m.l(0,B.el,B.eY) +m.l(0,B.em,B.eZ) +m.l(0,B.uk,B.ix) +m.l(0,B.ul,B.iy) +m.l(0,B.um,B.iF) +m.l(0,B.un,B.iG) +m.l(0,B.hr,B.iD) +m.l(0,B.hs,B.iE) +m.l(0,B.ht,B.cc) +m.l(0,B.hu,B.cd) +m.l(0,B.uo,B.wr) +m.l(0,B.up,B.ws) +m.l(0,B.uq,B.wn) +m.l(0,B.ur,B.wo) +m.l(0,B.uw,B.cc) +m.l(0,B.ux,B.cd) +m.l(0,B.uy,B.eW) +m.l(0,B.uz,B.eX) +m.l(0,B.Gn,B.wf) +m.l(0,B.Go,B.wg) +m.l(0,B.Gp,B.iv) +m.l(0,B.Gq,B.iw) +m.l(0,B.GC,B.x1) +m.l(0,B.ej,B.wP) +m.l(0,B.ek,B.wQ) +m.l(0,B.en,B.iv) +m.l(0,B.eo,B.iw) +m.l(0,B.d6,B.u4) +m.l(0,B.d7,B.hl) +m.l(0,B.hq,B.iJ) +m.l(0,B.hv,B.iK) +m.l(0,B.uG,B.ik) +m.l(0,B.uH,B.il) +m.l(0,B.uI,B.iQ) +m.l(0,B.uF,B.iS) +m.l(0,B.Gt,B.iU) +m.l(0,B.Gu,B.iR) +m.l(0,B.Gv,B.cd) +m.l(0,B.hw,B.cc) +m.l(0,B.Gw,B.eV) +m.l(0,B.Gx,B.eU) +m.l(0,B.Gy,B.eZ) +m.l(0,B.Gz,B.eY) +m.l(0,B.er,B.o) +m.l(0,B.ei,B.o) +return m}) +s($,"asK","agb",()=>$.a9V()) +s($,"asO","age",()=>{var q=A.nF($.a6Z(),t.me,t.c) +q.l(0,B.d6,B.iH) +q.l(0,B.d7,B.iI) +q.l(0,B.ej,B.wh) +q.l(0,B.ek,B.wi) +q.l(0,B.en,B.wj) +q.l(0,B.eo,B.wk) +q.l(0,B.uA,B.eW) +q.l(0,B.uB,B.eX) +q.l(0,B.Gr,B.iz) +q.l(0,B.Gs,B.iA) +return q}) +s($,"asN","agd",()=>{var q,p,o,n=t.c,m=A.y(t.me,n) +for(q=A.a_("af"),p=0;p<2;++p){o=B.fH[p] +m.I(0,A.aL([A.d2(B.at,!1,!1,!1,o),B.o,A.d2(B.ai,!1,!1,!1,o),B.o,A.d2(B.at,!0,!1,!1,o),B.o,A.d2(B.ai,!0,!1,!1,o),B.o,A.d2(B.at,!1,!0,!1,o),B.o,A.d2(B.ai,!1,!0,!1,o),B.o,A.d2(B.at,!1,!1,!0,o),B.o,A.d2(B.ai,!1,!1,!0,o),B.o],q,n))}m.I(0,B.DF) +m.l(0,B.uC,B.o) +m.l(0,B.uG,B.o) +m.l(0,B.uD,B.o) +m.l(0,B.uH,B.o) +m.l(0,B.uE,B.o) +m.l(0,B.uI,B.o) +m.l(0,B.hw,B.o) +m.l(0,B.uF,B.o) +return m}) +r($,"aug","aa_",()=>new A.Jg(B.NG,B.Y)) +s($,"aue","agV",()=>A.eJ(1,0,t.i)) +s($,"atg","fX",()=>A.akw()) +r($,"auk","a74",()=>{var q=A.kg(null),p=A.ajk(t.H) +return new A.Jf(B.Fh,q,p)}) +s($,"aud","agU",()=>A.c4(16667,0)) +s($,"atw","ags",()=>A.ada(0.5,1.1,100)) +s($,"asv","a6Y",()=>A.afD(0.78)/A.afD(0.9))})();(function nativeSupport(){!function(){var s=function(a){var m={} +m[a]=1 +return Object.keys(hunkHelpers.convertToFastObject(m))[0]} +v.getIsolateTag=function(a){return s("___dart_"+a+v.isolateTag)} +var r="___dart_isolate_tags_" +var q=Object[r]||(Object[r]=Object.create(null)) +var p="_ZxYxX" +for(var o=0;;o++){var n=s(p+"_"+o+"_") +if(!(n in q)){q[n]=1 +v.isolateTag=n +break}}v.dispatchPropertyName=v.getIsolateTag("dispatch_record")}() +hunkHelpers.setOrUpdateInterceptorsByTag({WebGL:J.nx,AbortPaymentEvent:J.b,AnimationEffectReadOnly:J.b,AnimationEffectTiming:J.b,AnimationEffectTimingReadOnly:J.b,AnimationEvent:J.b,AnimationPlaybackEvent:J.b,AnimationTimeline:J.b,AnimationWorkletGlobalScope:J.b,ApplicationCacheErrorEvent:J.b,AuthenticatorAssertionResponse:J.b,AuthenticatorAttestationResponse:J.b,AuthenticatorResponse:J.b,BackgroundFetchClickEvent:J.b,BackgroundFetchEvent:J.b,BackgroundFetchFailEvent:J.b,BackgroundFetchFetch:J.b,BackgroundFetchManager:J.b,BackgroundFetchSettledFetch:J.b,BackgroundFetchedEvent:J.b,BarProp:J.b,BarcodeDetector:J.b,BeforeInstallPromptEvent:J.b,BeforeUnloadEvent:J.b,BlobEvent:J.b,BluetoothRemoteGATTDescriptor:J.b,Body:J.b,BudgetState:J.b,CacheStorage:J.b,CanMakePaymentEvent:J.b,CanvasGradient:J.b,CanvasPattern:J.b,CanvasRenderingContext2D:J.b,Client:J.b,Clients:J.b,ClipboardEvent:J.b,CloseEvent:J.b,CompositionEvent:J.b,CookieStore:J.b,Coordinates:J.b,Credential:J.b,CredentialUserData:J.b,CredentialsContainer:J.b,Crypto:J.b,CryptoKey:J.b,CSS:J.b,CSSVariableReferenceValue:J.b,CustomElementRegistry:J.b,CustomEvent:J.b,DataTransfer:J.b,DataTransferItem:J.b,DeprecatedStorageInfo:J.b,DeprecatedStorageQuota:J.b,DeprecationReport:J.b,DetectedBarcode:J.b,DetectedFace:J.b,DetectedText:J.b,DeviceAcceleration:J.b,DeviceMotionEvent:J.b,DeviceOrientationEvent:J.b,DeviceRotationRate:J.b,DirectoryEntry:J.b,webkitFileSystemDirectoryEntry:J.b,FileSystemDirectoryEntry:J.b,DirectoryReader:J.b,WebKitDirectoryReader:J.b,webkitFileSystemDirectoryReader:J.b,FileSystemDirectoryReader:J.b,DocumentOrShadowRoot:J.b,DocumentTimeline:J.b,DOMError:J.b,DOMImplementation:J.b,Iterator:J.b,DOMMatrix:J.b,DOMMatrixReadOnly:J.b,DOMParser:J.b,DOMPoint:J.b,DOMPointReadOnly:J.b,DOMQuad:J.b,DOMStringMap:J.b,Entry:J.b,webkitFileSystemEntry:J.b,FileSystemEntry:J.b,ErrorEvent:J.b,Event:J.b,InputEvent:J.b,SubmitEvent:J.b,ExtendableEvent:J.b,ExtendableMessageEvent:J.b,External:J.b,FaceDetector:J.b,FederatedCredential:J.b,FetchEvent:J.b,FileEntry:J.b,webkitFileSystemFileEntry:J.b,FileSystemFileEntry:J.b,DOMFileSystem:J.b,WebKitFileSystem:J.b,webkitFileSystem:J.b,FileSystem:J.b,FocusEvent:J.b,FontFace:J.b,FontFaceSetLoadEvent:J.b,FontFaceSource:J.b,ForeignFetchEvent:J.b,FormData:J.b,GamepadButton:J.b,GamepadEvent:J.b,GamepadPose:J.b,Geolocation:J.b,Position:J.b,GeolocationPosition:J.b,HashChangeEvent:J.b,Headers:J.b,HTMLHyperlinkElementUtils:J.b,IdleDeadline:J.b,ImageBitmap:J.b,ImageBitmapRenderingContext:J.b,ImageCapture:J.b,ImageData:J.b,InputDeviceCapabilities:J.b,InstallEvent:J.b,IntersectionObserver:J.b,IntersectionObserverEntry:J.b,InterventionReport:J.b,KeyboardEvent:J.b,KeyframeEffect:J.b,KeyframeEffectReadOnly:J.b,MediaCapabilities:J.b,MediaCapabilitiesInfo:J.b,MediaDeviceInfo:J.b,MediaEncryptedEvent:J.b,MediaError:J.b,MediaKeyMessageEvent:J.b,MediaKeyStatusMap:J.b,MediaKeySystemAccess:J.b,MediaKeys:J.b,MediaKeysPolicy:J.b,MediaMetadata:J.b,MediaQueryListEvent:J.b,MediaSession:J.b,MediaSettingsRange:J.b,MediaStreamEvent:J.b,MediaStreamTrackEvent:J.b,MemoryInfo:J.b,MessageChannel:J.b,MessageEvent:J.b,Metadata:J.b,MIDIConnectionEvent:J.b,MIDIMessageEvent:J.b,MouseEvent:J.b,DragEvent:J.b,MutationEvent:J.b,MutationObserver:J.b,WebKitMutationObserver:J.b,MutationRecord:J.b,NavigationPreloadManager:J.b,Navigator:J.b,NavigatorAutomationInformation:J.b,NavigatorConcurrentHardware:J.b,NavigatorCookies:J.b,NavigatorUserMediaError:J.b,NodeFilter:J.b,NodeIterator:J.b,NonDocumentTypeChildNode:J.b,NonElementParentNode:J.b,NoncedElement:J.b,NotificationEvent:J.b,OffscreenCanvasRenderingContext2D:J.b,OverconstrainedError:J.b,PageTransitionEvent:J.b,PaintRenderingContext2D:J.b,PaintSize:J.b,PaintWorkletGlobalScope:J.b,PasswordCredential:J.b,Path2D:J.b,PaymentAddress:J.b,PaymentInstruments:J.b,PaymentManager:J.b,PaymentRequestEvent:J.b,PaymentRequestUpdateEvent:J.b,PaymentResponse:J.b,PerformanceEntry:J.b,PerformanceLongTaskTiming:J.b,PerformanceMark:J.b,PerformanceMeasure:J.b,PerformanceNavigation:J.b,PerformanceNavigationTiming:J.b,PerformanceObserver:J.b,PerformanceObserverEntryList:J.b,PerformancePaintTiming:J.b,PerformanceResourceTiming:J.b,PerformanceServerTiming:J.b,PerformanceTiming:J.b,Permissions:J.b,PhotoCapabilities:J.b,PointerEvent:J.b,PopStateEvent:J.b,PositionError:J.b,GeolocationPositionError:J.b,Presentation:J.b,PresentationConnectionAvailableEvent:J.b,PresentationConnectionCloseEvent:J.b,PresentationReceiver:J.b,ProgressEvent:J.b,PromiseRejectionEvent:J.b,PublicKeyCredential:J.b,PushEvent:J.b,PushManager:J.b,PushMessageData:J.b,PushSubscription:J.b,PushSubscriptionOptions:J.b,Range:J.b,RelatedApplication:J.b,ReportBody:J.b,ReportingObserver:J.b,ResizeObserver:J.b,ResizeObserverEntry:J.b,RTCCertificate:J.b,RTCDataChannelEvent:J.b,RTCDTMFToneChangeEvent:J.b,RTCIceCandidate:J.b,mozRTCIceCandidate:J.b,RTCLegacyStatsReport:J.b,RTCPeerConnectionIceEvent:J.b,RTCRtpContributingSource:J.b,RTCRtpReceiver:J.b,RTCRtpSender:J.b,RTCSessionDescription:J.b,mozRTCSessionDescription:J.b,RTCStatsResponse:J.b,RTCTrackEvent:J.b,Screen:J.b,ScrollState:J.b,ScrollTimeline:J.b,SecurityPolicyViolationEvent:J.b,Selection:J.b,SensorErrorEvent:J.b,SharedArrayBuffer:J.b,SpeechRecognitionAlternative:J.b,SpeechRecognitionError:J.b,SpeechRecognitionEvent:J.b,SpeechSynthesisEvent:J.b,SpeechSynthesisVoice:J.b,StaticRange:J.b,StorageEvent:J.b,StorageManager:J.b,StyleMedia:J.b,StylePropertyMap:J.b,StylePropertyMapReadonly:J.b,SyncEvent:J.b,SyncManager:J.b,TaskAttributionTiming:J.b,TextDetector:J.b,TextEvent:J.b,TextMetrics:J.b,TouchEvent:J.b,TrackDefault:J.b,TrackEvent:J.b,TransitionEvent:J.b,WebKitTransitionEvent:J.b,TreeWalker:J.b,TrustedHTML:J.b,TrustedScriptURL:J.b,TrustedURL:J.b,UIEvent:J.b,UnderlyingSourceBase:J.b,URLSearchParams:J.b,VRCoordinateSystem:J.b,VRDeviceEvent:J.b,VRDisplayCapabilities:J.b,VRDisplayEvent:J.b,VREyeParameters:J.b,VRFrameData:J.b,VRFrameOfReference:J.b,VRPose:J.b,VRSessionEvent:J.b,VRStageBounds:J.b,VRStageBoundsPoint:J.b,VRStageParameters:J.b,ValidityState:J.b,VideoPlaybackQuality:J.b,VideoTrack:J.b,VTTRegion:J.b,WheelEvent:J.b,WindowClient:J.b,WorkletAnimation:J.b,WorkletGlobalScope:J.b,XPathEvaluator:J.b,XPathExpression:J.b,XPathNSResolver:J.b,XPathResult:J.b,XMLSerializer:J.b,XSLTProcessor:J.b,Bluetooth:J.b,BluetoothCharacteristicProperties:J.b,BluetoothRemoteGATTServer:J.b,BluetoothRemoteGATTService:J.b,BluetoothUUID:J.b,BudgetService:J.b,Cache:J.b,DOMFileSystemSync:J.b,DirectoryEntrySync:J.b,DirectoryReaderSync:J.b,EntrySync:J.b,FileEntrySync:J.b,FileReaderSync:J.b,FileWriterSync:J.b,HTMLAllCollection:J.b,Mojo:J.b,MojoHandle:J.b,MojoInterfaceRequestEvent:J.b,MojoWatcher:J.b,NFC:J.b,PagePopupController:J.b,Report:J.b,Request:J.b,ResourceProgressEvent:J.b,Response:J.b,SubtleCrypto:J.b,USBAlternateInterface:J.b,USBConfiguration:J.b,USBConnectionEvent:J.b,USBDevice:J.b,USBEndpoint:J.b,USBInTransferResult:J.b,USBInterface:J.b,USBIsochronousInTransferPacket:J.b,USBIsochronousInTransferResult:J.b,USBIsochronousOutTransferPacket:J.b,USBIsochronousOutTransferResult:J.b,USBOutTransferResult:J.b,WorkerLocation:J.b,WorkerNavigator:J.b,Worklet:J.b,IDBCursor:J.b,IDBCursorWithValue:J.b,IDBFactory:J.b,IDBIndex:J.b,IDBKeyRange:J.b,IDBObjectStore:J.b,IDBObservation:J.b,IDBObserver:J.b,IDBObserverChanges:J.b,IDBVersionChangeEvent:J.b,SVGAngle:J.b,SVGAnimatedAngle:J.b,SVGAnimatedBoolean:J.b,SVGAnimatedEnumeration:J.b,SVGAnimatedInteger:J.b,SVGAnimatedLength:J.b,SVGAnimatedLengthList:J.b,SVGAnimatedNumber:J.b,SVGAnimatedNumberList:J.b,SVGAnimatedPreserveAspectRatio:J.b,SVGAnimatedRect:J.b,SVGAnimatedString:J.b,SVGAnimatedTransformList:J.b,SVGMatrix:J.b,SVGPoint:J.b,SVGPreserveAspectRatio:J.b,SVGRect:J.b,SVGUnitTypes:J.b,AudioListener:J.b,AudioParam:J.b,AudioProcessingEvent:J.b,AudioTrack:J.b,AudioWorkletGlobalScope:J.b,AudioWorkletProcessor:J.b,OfflineAudioCompletionEvent:J.b,PeriodicWave:J.b,WebGLActiveInfo:J.b,ANGLEInstancedArrays:J.b,ANGLE_instanced_arrays:J.b,WebGLBuffer:J.b,WebGLCanvas:J.b,WebGLColorBufferFloat:J.b,WebGLCompressedTextureASTC:J.b,WebGLCompressedTextureATC:J.b,WEBGL_compressed_texture_atc:J.b,WebGLCompressedTextureETC1:J.b,WEBGL_compressed_texture_etc1:J.b,WebGLCompressedTextureETC:J.b,WebGLCompressedTexturePVRTC:J.b,WEBGL_compressed_texture_pvrtc:J.b,WebGLCompressedTextureS3TC:J.b,WEBGL_compressed_texture_s3tc:J.b,WebGLCompressedTextureS3TCsRGB:J.b,WebGLContextEvent:J.b,WebGLDebugRendererInfo:J.b,WEBGL_debug_renderer_info:J.b,WebGLDebugShaders:J.b,WEBGL_debug_shaders:J.b,WebGLDepthTexture:J.b,WEBGL_depth_texture:J.b,WebGLDrawBuffers:J.b,WEBGL_draw_buffers:J.b,EXTsRGB:J.b,EXT_sRGB:J.b,EXTBlendMinMax:J.b,EXT_blend_minmax:J.b,EXTColorBufferFloat:J.b,EXTColorBufferHalfFloat:J.b,EXTDisjointTimerQuery:J.b,EXTDisjointTimerQueryWebGL2:J.b,EXTFragDepth:J.b,EXT_frag_depth:J.b,EXTShaderTextureLOD:J.b,EXT_shader_texture_lod:J.b,EXTTextureFilterAnisotropic:J.b,EXT_texture_filter_anisotropic:J.b,WebGLFramebuffer:J.b,WebGLGetBufferSubDataAsync:J.b,WebGLLoseContext:J.b,WebGLExtensionLoseContext:J.b,WEBGL_lose_context:J.b,OESElementIndexUint:J.b,OES_element_index_uint:J.b,OESStandardDerivatives:J.b,OES_standard_derivatives:J.b,OESTextureFloat:J.b,OES_texture_float:J.b,OESTextureFloatLinear:J.b,OES_texture_float_linear:J.b,OESTextureHalfFloat:J.b,OES_texture_half_float:J.b,OESTextureHalfFloatLinear:J.b,OES_texture_half_float_linear:J.b,OESVertexArrayObject:J.b,OES_vertex_array_object:J.b,WebGLProgram:J.b,WebGLQuery:J.b,WebGLRenderbuffer:J.b,WebGLRenderingContext:J.b,WebGL2RenderingContext:J.b,WebGLSampler:J.b,WebGLShader:J.b,WebGLShaderPrecisionFormat:J.b,WebGLSync:J.b,WebGLTexture:J.b,WebGLTimerQueryEXT:J.b,WebGLTransformFeedback:J.b,WebGLUniformLocation:J.b,WebGLVertexArrayObject:J.b,WebGLVertexArrayObjectOES:J.b,WebGL2RenderingContextBase:J.b,ArrayBuffer:A.te,ArrayBufferView:A.ti,DataView:A.tf,Float32Array:A.tg,Float64Array:A.CG,Int16Array:A.CH,Int32Array:A.th,Int8Array:A.CI,Uint16Array:A.CJ,Uint32Array:A.CK,Uint8ClampedArray:A.tj,CanvasPixelArray:A.tj,Uint8Array:A.lw,HTMLAudioElement:A.a9,HTMLBRElement:A.a9,HTMLBaseElement:A.a9,HTMLBodyElement:A.a9,HTMLButtonElement:A.a9,HTMLCanvasElement:A.a9,HTMLContentElement:A.a9,HTMLDListElement:A.a9,HTMLDataElement:A.a9,HTMLDataListElement:A.a9,HTMLDetailsElement:A.a9,HTMLDialogElement:A.a9,HTMLDivElement:A.a9,HTMLEmbedElement:A.a9,HTMLFieldSetElement:A.a9,HTMLHRElement:A.a9,HTMLHeadElement:A.a9,HTMLHeadingElement:A.a9,HTMLHtmlElement:A.a9,HTMLIFrameElement:A.a9,HTMLImageElement:A.a9,HTMLInputElement:A.a9,HTMLLIElement:A.a9,HTMLLabelElement:A.a9,HTMLLegendElement:A.a9,HTMLLinkElement:A.a9,HTMLMapElement:A.a9,HTMLMediaElement:A.a9,HTMLMenuElement:A.a9,HTMLMetaElement:A.a9,HTMLMeterElement:A.a9,HTMLModElement:A.a9,HTMLOListElement:A.a9,HTMLObjectElement:A.a9,HTMLOptGroupElement:A.a9,HTMLOptionElement:A.a9,HTMLOutputElement:A.a9,HTMLParagraphElement:A.a9,HTMLParamElement:A.a9,HTMLPictureElement:A.a9,HTMLPreElement:A.a9,HTMLProgressElement:A.a9,HTMLQuoteElement:A.a9,HTMLScriptElement:A.a9,HTMLShadowElement:A.a9,HTMLSlotElement:A.a9,HTMLSourceElement:A.a9,HTMLSpanElement:A.a9,HTMLStyleElement:A.a9,HTMLTableCaptionElement:A.a9,HTMLTableCellElement:A.a9,HTMLTableDataCellElement:A.a9,HTMLTableHeaderCellElement:A.a9,HTMLTableColElement:A.a9,HTMLTableElement:A.a9,HTMLTableRowElement:A.a9,HTMLTableSectionElement:A.a9,HTMLTemplateElement:A.a9,HTMLTextAreaElement:A.a9,HTMLTimeElement:A.a9,HTMLTitleElement:A.a9,HTMLTrackElement:A.a9,HTMLUListElement:A.a9,HTMLUnknownElement:A.a9,HTMLVideoElement:A.a9,HTMLDirectoryElement:A.a9,HTMLFontElement:A.a9,HTMLFrameElement:A.a9,HTMLFrameSetElement:A.a9,HTMLMarqueeElement:A.a9,HTMLElement:A.a9,AccessibleNodeList:A.yL,HTMLAnchorElement:A.yN,HTMLAreaElement:A.yS,Blob:A.q5,CDATASection:A.h5,CharacterData:A.h5,Comment:A.h5,ProcessingInstruction:A.h5,Text:A.h5,CSSPerspective:A.Ag,CSSCharsetRule:A.bz,CSSConditionRule:A.bz,CSSFontFaceRule:A.bz,CSSGroupingRule:A.bz,CSSImportRule:A.bz,CSSKeyframeRule:A.bz,MozCSSKeyframeRule:A.bz,WebKitCSSKeyframeRule:A.bz,CSSKeyframesRule:A.bz,MozCSSKeyframesRule:A.bz,WebKitCSSKeyframesRule:A.bz,CSSMediaRule:A.bz,CSSNamespaceRule:A.bz,CSSPageRule:A.bz,CSSRule:A.bz,CSSStyleRule:A.bz,CSSSupportsRule:A.bz,CSSViewportRule:A.bz,CSSStyleDeclaration:A.n4,MSStyleCSSProperties:A.n4,CSS2Properties:A.n4,CSSImageValue:A.dJ,CSSKeywordValue:A.dJ,CSSNumericValue:A.dJ,CSSPositionValue:A.dJ,CSSResourceValue:A.dJ,CSSUnitValue:A.dJ,CSSURLImageValue:A.dJ,CSSStyleValue:A.dJ,CSSMatrixComponent:A.fd,CSSRotation:A.fd,CSSScale:A.fd,CSSSkew:A.fd,CSSTranslation:A.fd,CSSTransformComponent:A.fd,CSSTransformValue:A.Ah,CSSUnparsedValue:A.Ai,DataTransferItemList:A.Aq,DOMException:A.AM,ClientRectList:A.qP,DOMRectList:A.qP,DOMRectReadOnly:A.qQ,DOMStringList:A.AO,DOMTokenList:A.AQ,MathMLElement:A.a8,SVGAElement:A.a8,SVGAnimateElement:A.a8,SVGAnimateMotionElement:A.a8,SVGAnimateTransformElement:A.a8,SVGAnimationElement:A.a8,SVGCircleElement:A.a8,SVGClipPathElement:A.a8,SVGDefsElement:A.a8,SVGDescElement:A.a8,SVGDiscardElement:A.a8,SVGEllipseElement:A.a8,SVGFEBlendElement:A.a8,SVGFEColorMatrixElement:A.a8,SVGFEComponentTransferElement:A.a8,SVGFECompositeElement:A.a8,SVGFEConvolveMatrixElement:A.a8,SVGFEDiffuseLightingElement:A.a8,SVGFEDisplacementMapElement:A.a8,SVGFEDistantLightElement:A.a8,SVGFEFloodElement:A.a8,SVGFEFuncAElement:A.a8,SVGFEFuncBElement:A.a8,SVGFEFuncGElement:A.a8,SVGFEFuncRElement:A.a8,SVGFEGaussianBlurElement:A.a8,SVGFEImageElement:A.a8,SVGFEMergeElement:A.a8,SVGFEMergeNodeElement:A.a8,SVGFEMorphologyElement:A.a8,SVGFEOffsetElement:A.a8,SVGFEPointLightElement:A.a8,SVGFESpecularLightingElement:A.a8,SVGFESpotLightElement:A.a8,SVGFETileElement:A.a8,SVGFETurbulenceElement:A.a8,SVGFilterElement:A.a8,SVGForeignObjectElement:A.a8,SVGGElement:A.a8,SVGGeometryElement:A.a8,SVGGraphicsElement:A.a8,SVGImageElement:A.a8,SVGLineElement:A.a8,SVGLinearGradientElement:A.a8,SVGMarkerElement:A.a8,SVGMaskElement:A.a8,SVGMetadataElement:A.a8,SVGPathElement:A.a8,SVGPatternElement:A.a8,SVGPolygonElement:A.a8,SVGPolylineElement:A.a8,SVGRadialGradientElement:A.a8,SVGRectElement:A.a8,SVGScriptElement:A.a8,SVGSetElement:A.a8,SVGStopElement:A.a8,SVGStyleElement:A.a8,SVGElement:A.a8,SVGSVGElement:A.a8,SVGSwitchElement:A.a8,SVGSymbolElement:A.a8,SVGTSpanElement:A.a8,SVGTextContentElement:A.a8,SVGTextElement:A.a8,SVGTextPathElement:A.a8,SVGTextPositioningElement:A.a8,SVGTitleElement:A.a8,SVGUseElement:A.a8,SVGViewElement:A.a8,SVGGradientElement:A.a8,SVGComponentTransferFunctionElement:A.a8,SVGFEDropShadowElement:A.a8,SVGMPathElement:A.a8,Element:A.a8,AbsoluteOrientationSensor:A.N,Accelerometer:A.N,AccessibleNode:A.N,AmbientLightSensor:A.N,Animation:A.N,ApplicationCache:A.N,DOMApplicationCache:A.N,OfflineResourceList:A.N,BackgroundFetchRegistration:A.N,BatteryManager:A.N,BroadcastChannel:A.N,CanvasCaptureMediaStreamTrack:A.N,DedicatedWorkerGlobalScope:A.N,EventSource:A.N,FileReader:A.N,FontFaceSet:A.N,Gyroscope:A.N,XMLHttpRequest:A.N,XMLHttpRequestEventTarget:A.N,XMLHttpRequestUpload:A.N,LinearAccelerationSensor:A.N,Magnetometer:A.N,MediaDevices:A.N,MediaKeySession:A.N,MediaQueryList:A.N,MediaRecorder:A.N,MediaSource:A.N,MediaStream:A.N,MediaStreamTrack:A.N,MessagePort:A.N,MIDIAccess:A.N,MIDIInput:A.N,MIDIOutput:A.N,MIDIPort:A.N,NetworkInformation:A.N,Notification:A.N,OffscreenCanvas:A.N,OrientationSensor:A.N,PaymentRequest:A.N,Performance:A.N,PermissionStatus:A.N,PresentationAvailability:A.N,PresentationConnection:A.N,PresentationConnectionList:A.N,PresentationRequest:A.N,RelativeOrientationSensor:A.N,RemotePlayback:A.N,RTCDataChannel:A.N,DataChannel:A.N,RTCDTMFSender:A.N,RTCPeerConnection:A.N,webkitRTCPeerConnection:A.N,mozRTCPeerConnection:A.N,ScreenOrientation:A.N,Sensor:A.N,ServiceWorker:A.N,ServiceWorkerContainer:A.N,ServiceWorkerGlobalScope:A.N,ServiceWorkerRegistration:A.N,SharedWorker:A.N,SharedWorkerGlobalScope:A.N,SpeechRecognition:A.N,webkitSpeechRecognition:A.N,SpeechSynthesis:A.N,SpeechSynthesisUtterance:A.N,VR:A.N,VRDevice:A.N,VRDisplay:A.N,VRSession:A.N,VisualViewport:A.N,WebSocket:A.N,Window:A.N,DOMWindow:A.N,Worker:A.N,WorkerGlobalScope:A.N,WorkerPerformance:A.N,BluetoothDevice:A.N,BluetoothRemoteGATTCharacteristic:A.N,Clipboard:A.N,MojoInterfaceInterceptor:A.N,USB:A.N,IDBDatabase:A.N,IDBOpenDBRequest:A.N,IDBVersionChangeRequest:A.N,IDBRequest:A.N,IDBTransaction:A.N,AnalyserNode:A.N,RealtimeAnalyserNode:A.N,AudioBufferSourceNode:A.N,AudioDestinationNode:A.N,AudioNode:A.N,AudioScheduledSourceNode:A.N,AudioWorkletNode:A.N,BiquadFilterNode:A.N,ChannelMergerNode:A.N,AudioChannelMerger:A.N,ChannelSplitterNode:A.N,AudioChannelSplitter:A.N,ConstantSourceNode:A.N,ConvolverNode:A.N,DelayNode:A.N,DynamicsCompressorNode:A.N,GainNode:A.N,AudioGainNode:A.N,IIRFilterNode:A.N,MediaElementAudioSourceNode:A.N,MediaStreamAudioDestinationNode:A.N,MediaStreamAudioSourceNode:A.N,OscillatorNode:A.N,Oscillator:A.N,PannerNode:A.N,AudioPannerNode:A.N,webkitAudioPannerNode:A.N,ScriptProcessorNode:A.N,JavaScriptAudioNode:A.N,StereoPannerNode:A.N,WaveShaperNode:A.N,EventTarget:A.N,File:A.en,FileList:A.Bd,FileWriter:A.Be,HTMLFormElement:A.Bt,Gamepad:A.eo,History:A.BH,HTMLCollection:A.lf,HTMLFormControlsCollection:A.lf,HTMLOptionsCollection:A.lf,Location:A.Cg,MediaList:A.Cr,MIDIInputMap:A.Cv,MIDIOutputMap:A.Cw,MimeType:A.et,MimeTypeArray:A.Cx,Document:A.aZ,DocumentFragment:A.aZ,HTMLDocument:A.aZ,ShadowRoot:A.aZ,XMLDocument:A.aZ,Attr:A.aZ,DocumentType:A.aZ,Node:A.aZ,NodeList:A.to,RadioNodeList:A.to,Plugin:A.ey,PluginArray:A.Dx,RTCStatsReport:A.Eq,HTMLSelectElement:A.EH,SourceBuffer:A.eD,SourceBufferList:A.Fc,SpeechGrammar:A.eE,SpeechGrammarList:A.Fe,SpeechRecognitionResult:A.eF,Storage:A.Fk,CSSStyleSheet:A.dP,StyleSheet:A.dP,TextTrack:A.eH,TextTrackCue:A.dQ,VTTCue:A.dQ,TextTrackCueList:A.FA,TextTrackList:A.FB,TimeRanges:A.FG,Touch:A.eI,TouchList:A.FK,TrackDefaultList:A.FL,URL:A.FY,VideoTrackList:A.G0,CSSRuleList:A.H9,ClientRect:A.vR,DOMRect:A.vR,GamepadList:A.I9,NamedNodeMap:A.wv,MozNamedAttrMap:A.wv,SpeechRecognitionResultList:A.Le,StyleSheetList:A.Lq,SVGLength:A.fr,SVGLengthList:A.C8,SVGNumber:A.fu,SVGNumberList:A.CT,SVGPointList:A.Dy,SVGStringList:A.Fl,SVGTransform:A.fM,SVGTransformList:A.FN,AudioBuffer:A.yW,AudioParamMap:A.yX,AudioTrackList:A.yY,AudioContext:A.je,webkitAudioContext:A.je,BaseAudioContext:A.je,OfflineAudioContext:A.CU}) +hunkHelpers.setOrUpdateLeafTags({WebGL:true,AbortPaymentEvent:true,AnimationEffectReadOnly:true,AnimationEffectTiming:true,AnimationEffectTimingReadOnly:true,AnimationEvent:true,AnimationPlaybackEvent:true,AnimationTimeline:true,AnimationWorkletGlobalScope:true,ApplicationCacheErrorEvent:true,AuthenticatorAssertionResponse:true,AuthenticatorAttestationResponse:true,AuthenticatorResponse:true,BackgroundFetchClickEvent:true,BackgroundFetchEvent:true,BackgroundFetchFailEvent:true,BackgroundFetchFetch:true,BackgroundFetchManager:true,BackgroundFetchSettledFetch:true,BackgroundFetchedEvent:true,BarProp:true,BarcodeDetector:true,BeforeInstallPromptEvent:true,BeforeUnloadEvent:true,BlobEvent:true,BluetoothRemoteGATTDescriptor:true,Body:true,BudgetState:true,CacheStorage:true,CanMakePaymentEvent:true,CanvasGradient:true,CanvasPattern:true,CanvasRenderingContext2D:true,Client:true,Clients:true,ClipboardEvent:true,CloseEvent:true,CompositionEvent:true,CookieStore:true,Coordinates:true,Credential:true,CredentialUserData:true,CredentialsContainer:true,Crypto:true,CryptoKey:true,CSS:true,CSSVariableReferenceValue:true,CustomElementRegistry:true,CustomEvent:true,DataTransfer:true,DataTransferItem:true,DeprecatedStorageInfo:true,DeprecatedStorageQuota:true,DeprecationReport:true,DetectedBarcode:true,DetectedFace:true,DetectedText:true,DeviceAcceleration:true,DeviceMotionEvent:true,DeviceOrientationEvent:true,DeviceRotationRate:true,DirectoryEntry:true,webkitFileSystemDirectoryEntry:true,FileSystemDirectoryEntry:true,DirectoryReader:true,WebKitDirectoryReader:true,webkitFileSystemDirectoryReader:true,FileSystemDirectoryReader:true,DocumentOrShadowRoot:true,DocumentTimeline:true,DOMError:true,DOMImplementation:true,Iterator:true,DOMMatrix:true,DOMMatrixReadOnly:true,DOMParser:true,DOMPoint:true,DOMPointReadOnly:true,DOMQuad:true,DOMStringMap:true,Entry:true,webkitFileSystemEntry:true,FileSystemEntry:true,ErrorEvent:true,Event:true,InputEvent:true,SubmitEvent:true,ExtendableEvent:true,ExtendableMessageEvent:true,External:true,FaceDetector:true,FederatedCredential:true,FetchEvent:true,FileEntry:true,webkitFileSystemFileEntry:true,FileSystemFileEntry:true,DOMFileSystem:true,WebKitFileSystem:true,webkitFileSystem:true,FileSystem:true,FocusEvent:true,FontFace:true,FontFaceSetLoadEvent:true,FontFaceSource:true,ForeignFetchEvent:true,FormData:true,GamepadButton:true,GamepadEvent:true,GamepadPose:true,Geolocation:true,Position:true,GeolocationPosition:true,HashChangeEvent:true,Headers:true,HTMLHyperlinkElementUtils:true,IdleDeadline:true,ImageBitmap:true,ImageBitmapRenderingContext:true,ImageCapture:true,ImageData:true,InputDeviceCapabilities:true,InstallEvent:true,IntersectionObserver:true,IntersectionObserverEntry:true,InterventionReport:true,KeyboardEvent:true,KeyframeEffect:true,KeyframeEffectReadOnly:true,MediaCapabilities:true,MediaCapabilitiesInfo:true,MediaDeviceInfo:true,MediaEncryptedEvent:true,MediaError:true,MediaKeyMessageEvent:true,MediaKeyStatusMap:true,MediaKeySystemAccess:true,MediaKeys:true,MediaKeysPolicy:true,MediaMetadata:true,MediaQueryListEvent:true,MediaSession:true,MediaSettingsRange:true,MediaStreamEvent:true,MediaStreamTrackEvent:true,MemoryInfo:true,MessageChannel:true,MessageEvent:true,Metadata:true,MIDIConnectionEvent:true,MIDIMessageEvent:true,MouseEvent:true,DragEvent:true,MutationEvent:true,MutationObserver:true,WebKitMutationObserver:true,MutationRecord:true,NavigationPreloadManager:true,Navigator:true,NavigatorAutomationInformation:true,NavigatorConcurrentHardware:true,NavigatorCookies:true,NavigatorUserMediaError:true,NodeFilter:true,NodeIterator:true,NonDocumentTypeChildNode:true,NonElementParentNode:true,NoncedElement:true,NotificationEvent:true,OffscreenCanvasRenderingContext2D:true,OverconstrainedError:true,PageTransitionEvent:true,PaintRenderingContext2D:true,PaintSize:true,PaintWorkletGlobalScope:true,PasswordCredential:true,Path2D:true,PaymentAddress:true,PaymentInstruments:true,PaymentManager:true,PaymentRequestEvent:true,PaymentRequestUpdateEvent:true,PaymentResponse:true,PerformanceEntry:true,PerformanceLongTaskTiming:true,PerformanceMark:true,PerformanceMeasure:true,PerformanceNavigation:true,PerformanceNavigationTiming:true,PerformanceObserver:true,PerformanceObserverEntryList:true,PerformancePaintTiming:true,PerformanceResourceTiming:true,PerformanceServerTiming:true,PerformanceTiming:true,Permissions:true,PhotoCapabilities:true,PointerEvent:true,PopStateEvent:true,PositionError:true,GeolocationPositionError:true,Presentation:true,PresentationConnectionAvailableEvent:true,PresentationConnectionCloseEvent:true,PresentationReceiver:true,ProgressEvent:true,PromiseRejectionEvent:true,PublicKeyCredential:true,PushEvent:true,PushManager:true,PushMessageData:true,PushSubscription:true,PushSubscriptionOptions:true,Range:true,RelatedApplication:true,ReportBody:true,ReportingObserver:true,ResizeObserver:true,ResizeObserverEntry:true,RTCCertificate:true,RTCDataChannelEvent:true,RTCDTMFToneChangeEvent:true,RTCIceCandidate:true,mozRTCIceCandidate:true,RTCLegacyStatsReport:true,RTCPeerConnectionIceEvent:true,RTCRtpContributingSource:true,RTCRtpReceiver:true,RTCRtpSender:true,RTCSessionDescription:true,mozRTCSessionDescription:true,RTCStatsResponse:true,RTCTrackEvent:true,Screen:true,ScrollState:true,ScrollTimeline:true,SecurityPolicyViolationEvent:true,Selection:true,SensorErrorEvent:true,SharedArrayBuffer:true,SpeechRecognitionAlternative:true,SpeechRecognitionError:true,SpeechRecognitionEvent:true,SpeechSynthesisEvent:true,SpeechSynthesisVoice:true,StaticRange:true,StorageEvent:true,StorageManager:true,StyleMedia:true,StylePropertyMap:true,StylePropertyMapReadonly:true,SyncEvent:true,SyncManager:true,TaskAttributionTiming:true,TextDetector:true,TextEvent:true,TextMetrics:true,TouchEvent:true,TrackDefault:true,TrackEvent:true,TransitionEvent:true,WebKitTransitionEvent:true,TreeWalker:true,TrustedHTML:true,TrustedScriptURL:true,TrustedURL:true,UIEvent:true,UnderlyingSourceBase:true,URLSearchParams:true,VRCoordinateSystem:true,VRDeviceEvent:true,VRDisplayCapabilities:true,VRDisplayEvent:true,VREyeParameters:true,VRFrameData:true,VRFrameOfReference:true,VRPose:true,VRSessionEvent:true,VRStageBounds:true,VRStageBoundsPoint:true,VRStageParameters:true,ValidityState:true,VideoPlaybackQuality:true,VideoTrack:true,VTTRegion:true,WheelEvent:true,WindowClient:true,WorkletAnimation:true,WorkletGlobalScope:true,XPathEvaluator:true,XPathExpression:true,XPathNSResolver:true,XPathResult:true,XMLSerializer:true,XSLTProcessor:true,Bluetooth:true,BluetoothCharacteristicProperties:true,BluetoothRemoteGATTServer:true,BluetoothRemoteGATTService:true,BluetoothUUID:true,BudgetService:true,Cache:true,DOMFileSystemSync:true,DirectoryEntrySync:true,DirectoryReaderSync:true,EntrySync:true,FileEntrySync:true,FileReaderSync:true,FileWriterSync:true,HTMLAllCollection:true,Mojo:true,MojoHandle:true,MojoInterfaceRequestEvent:true,MojoWatcher:true,NFC:true,PagePopupController:true,Report:true,Request:true,ResourceProgressEvent:true,Response:true,SubtleCrypto:true,USBAlternateInterface:true,USBConfiguration:true,USBConnectionEvent:true,USBDevice:true,USBEndpoint:true,USBInTransferResult:true,USBInterface:true,USBIsochronousInTransferPacket:true,USBIsochronousInTransferResult:true,USBIsochronousOutTransferPacket:true,USBIsochronousOutTransferResult:true,USBOutTransferResult:true,WorkerLocation:true,WorkerNavigator:true,Worklet:true,IDBCursor:true,IDBCursorWithValue:true,IDBFactory:true,IDBIndex:true,IDBKeyRange:true,IDBObjectStore:true,IDBObservation:true,IDBObserver:true,IDBObserverChanges:true,IDBVersionChangeEvent:true,SVGAngle:true,SVGAnimatedAngle:true,SVGAnimatedBoolean:true,SVGAnimatedEnumeration:true,SVGAnimatedInteger:true,SVGAnimatedLength:true,SVGAnimatedLengthList:true,SVGAnimatedNumber:true,SVGAnimatedNumberList:true,SVGAnimatedPreserveAspectRatio:true,SVGAnimatedRect:true,SVGAnimatedString:true,SVGAnimatedTransformList:true,SVGMatrix:true,SVGPoint:true,SVGPreserveAspectRatio:true,SVGRect:true,SVGUnitTypes:true,AudioListener:true,AudioParam:true,AudioProcessingEvent:true,AudioTrack:true,AudioWorkletGlobalScope:true,AudioWorkletProcessor:true,OfflineAudioCompletionEvent:true,PeriodicWave:true,WebGLActiveInfo:true,ANGLEInstancedArrays:true,ANGLE_instanced_arrays:true,WebGLBuffer:true,WebGLCanvas:true,WebGLColorBufferFloat:true,WebGLCompressedTextureASTC:true,WebGLCompressedTextureATC:true,WEBGL_compressed_texture_atc:true,WebGLCompressedTextureETC1:true,WEBGL_compressed_texture_etc1:true,WebGLCompressedTextureETC:true,WebGLCompressedTexturePVRTC:true,WEBGL_compressed_texture_pvrtc:true,WebGLCompressedTextureS3TC:true,WEBGL_compressed_texture_s3tc:true,WebGLCompressedTextureS3TCsRGB:true,WebGLContextEvent:true,WebGLDebugRendererInfo:true,WEBGL_debug_renderer_info:true,WebGLDebugShaders:true,WEBGL_debug_shaders:true,WebGLDepthTexture:true,WEBGL_depth_texture:true,WebGLDrawBuffers:true,WEBGL_draw_buffers:true,EXTsRGB:true,EXT_sRGB:true,EXTBlendMinMax:true,EXT_blend_minmax:true,EXTColorBufferFloat:true,EXTColorBufferHalfFloat:true,EXTDisjointTimerQuery:true,EXTDisjointTimerQueryWebGL2:true,EXTFragDepth:true,EXT_frag_depth:true,EXTShaderTextureLOD:true,EXT_shader_texture_lod:true,EXTTextureFilterAnisotropic:true,EXT_texture_filter_anisotropic:true,WebGLFramebuffer:true,WebGLGetBufferSubDataAsync:true,WebGLLoseContext:true,WebGLExtensionLoseContext:true,WEBGL_lose_context:true,OESElementIndexUint:true,OES_element_index_uint:true,OESStandardDerivatives:true,OES_standard_derivatives:true,OESTextureFloat:true,OES_texture_float:true,OESTextureFloatLinear:true,OES_texture_float_linear:true,OESTextureHalfFloat:true,OES_texture_half_float:true,OESTextureHalfFloatLinear:true,OES_texture_half_float_linear:true,OESVertexArrayObject:true,OES_vertex_array_object:true,WebGLProgram:true,WebGLQuery:true,WebGLRenderbuffer:true,WebGLRenderingContext:true,WebGL2RenderingContext:true,WebGLSampler:true,WebGLShader:true,WebGLShaderPrecisionFormat:true,WebGLSync:true,WebGLTexture:true,WebGLTimerQueryEXT:true,WebGLTransformFeedback:true,WebGLUniformLocation:true,WebGLVertexArrayObject:true,WebGLVertexArrayObjectOES:true,WebGL2RenderingContextBase:true,ArrayBuffer:true,ArrayBufferView:false,DataView:true,Float32Array:true,Float64Array:true,Int16Array:true,Int32Array:true,Int8Array:true,Uint16Array:true,Uint32Array:true,Uint8ClampedArray:true,CanvasPixelArray:true,Uint8Array:false,HTMLAudioElement:true,HTMLBRElement:true,HTMLBaseElement:true,HTMLBodyElement:true,HTMLButtonElement:true,HTMLCanvasElement:true,HTMLContentElement:true,HTMLDListElement:true,HTMLDataElement:true,HTMLDataListElement:true,HTMLDetailsElement:true,HTMLDialogElement:true,HTMLDivElement:true,HTMLEmbedElement:true,HTMLFieldSetElement:true,HTMLHRElement:true,HTMLHeadElement:true,HTMLHeadingElement:true,HTMLHtmlElement:true,HTMLIFrameElement:true,HTMLImageElement:true,HTMLInputElement:true,HTMLLIElement:true,HTMLLabelElement:true,HTMLLegendElement:true,HTMLLinkElement:true,HTMLMapElement:true,HTMLMediaElement:true,HTMLMenuElement:true,HTMLMetaElement:true,HTMLMeterElement:true,HTMLModElement:true,HTMLOListElement:true,HTMLObjectElement:true,HTMLOptGroupElement:true,HTMLOptionElement:true,HTMLOutputElement:true,HTMLParagraphElement:true,HTMLParamElement:true,HTMLPictureElement:true,HTMLPreElement:true,HTMLProgressElement:true,HTMLQuoteElement:true,HTMLScriptElement:true,HTMLShadowElement:true,HTMLSlotElement:true,HTMLSourceElement:true,HTMLSpanElement:true,HTMLStyleElement:true,HTMLTableCaptionElement:true,HTMLTableCellElement:true,HTMLTableDataCellElement:true,HTMLTableHeaderCellElement:true,HTMLTableColElement:true,HTMLTableElement:true,HTMLTableRowElement:true,HTMLTableSectionElement:true,HTMLTemplateElement:true,HTMLTextAreaElement:true,HTMLTimeElement:true,HTMLTitleElement:true,HTMLTrackElement:true,HTMLUListElement:true,HTMLUnknownElement:true,HTMLVideoElement:true,HTMLDirectoryElement:true,HTMLFontElement:true,HTMLFrameElement:true,HTMLFrameSetElement:true,HTMLMarqueeElement:true,HTMLElement:false,AccessibleNodeList:true,HTMLAnchorElement:true,HTMLAreaElement:true,Blob:false,CDATASection:true,CharacterData:true,Comment:true,ProcessingInstruction:true,Text:true,CSSPerspective:true,CSSCharsetRule:true,CSSConditionRule:true,CSSFontFaceRule:true,CSSGroupingRule:true,CSSImportRule:true,CSSKeyframeRule:true,MozCSSKeyframeRule:true,WebKitCSSKeyframeRule:true,CSSKeyframesRule:true,MozCSSKeyframesRule:true,WebKitCSSKeyframesRule:true,CSSMediaRule:true,CSSNamespaceRule:true,CSSPageRule:true,CSSRule:true,CSSStyleRule:true,CSSSupportsRule:true,CSSViewportRule:true,CSSStyleDeclaration:true,MSStyleCSSProperties:true,CSS2Properties:true,CSSImageValue:true,CSSKeywordValue:true,CSSNumericValue:true,CSSPositionValue:true,CSSResourceValue:true,CSSUnitValue:true,CSSURLImageValue:true,CSSStyleValue:false,CSSMatrixComponent:true,CSSRotation:true,CSSScale:true,CSSSkew:true,CSSTranslation:true,CSSTransformComponent:false,CSSTransformValue:true,CSSUnparsedValue:true,DataTransferItemList:true,DOMException:true,ClientRectList:true,DOMRectList:true,DOMRectReadOnly:false,DOMStringList:true,DOMTokenList:true,MathMLElement:true,SVGAElement:true,SVGAnimateElement:true,SVGAnimateMotionElement:true,SVGAnimateTransformElement:true,SVGAnimationElement:true,SVGCircleElement:true,SVGClipPathElement:true,SVGDefsElement:true,SVGDescElement:true,SVGDiscardElement:true,SVGEllipseElement:true,SVGFEBlendElement:true,SVGFEColorMatrixElement:true,SVGFEComponentTransferElement:true,SVGFECompositeElement:true,SVGFEConvolveMatrixElement:true,SVGFEDiffuseLightingElement:true,SVGFEDisplacementMapElement:true,SVGFEDistantLightElement:true,SVGFEFloodElement:true,SVGFEFuncAElement:true,SVGFEFuncBElement:true,SVGFEFuncGElement:true,SVGFEFuncRElement:true,SVGFEGaussianBlurElement:true,SVGFEImageElement:true,SVGFEMergeElement:true,SVGFEMergeNodeElement:true,SVGFEMorphologyElement:true,SVGFEOffsetElement:true,SVGFEPointLightElement:true,SVGFESpecularLightingElement:true,SVGFESpotLightElement:true,SVGFETileElement:true,SVGFETurbulenceElement:true,SVGFilterElement:true,SVGForeignObjectElement:true,SVGGElement:true,SVGGeometryElement:true,SVGGraphicsElement:true,SVGImageElement:true,SVGLineElement:true,SVGLinearGradientElement:true,SVGMarkerElement:true,SVGMaskElement:true,SVGMetadataElement:true,SVGPathElement:true,SVGPatternElement:true,SVGPolygonElement:true,SVGPolylineElement:true,SVGRadialGradientElement:true,SVGRectElement:true,SVGScriptElement:true,SVGSetElement:true,SVGStopElement:true,SVGStyleElement:true,SVGElement:true,SVGSVGElement:true,SVGSwitchElement:true,SVGSymbolElement:true,SVGTSpanElement:true,SVGTextContentElement:true,SVGTextElement:true,SVGTextPathElement:true,SVGTextPositioningElement:true,SVGTitleElement:true,SVGUseElement:true,SVGViewElement:true,SVGGradientElement:true,SVGComponentTransferFunctionElement:true,SVGFEDropShadowElement:true,SVGMPathElement:true,Element:false,AbsoluteOrientationSensor:true,Accelerometer:true,AccessibleNode:true,AmbientLightSensor:true,Animation:true,ApplicationCache:true,DOMApplicationCache:true,OfflineResourceList:true,BackgroundFetchRegistration:true,BatteryManager:true,BroadcastChannel:true,CanvasCaptureMediaStreamTrack:true,DedicatedWorkerGlobalScope:true,EventSource:true,FileReader:true,FontFaceSet:true,Gyroscope:true,XMLHttpRequest:true,XMLHttpRequestEventTarget:true,XMLHttpRequestUpload:true,LinearAccelerationSensor:true,Magnetometer:true,MediaDevices:true,MediaKeySession:true,MediaQueryList:true,MediaRecorder:true,MediaSource:true,MediaStream:true,MediaStreamTrack:true,MessagePort:true,MIDIAccess:true,MIDIInput:true,MIDIOutput:true,MIDIPort:true,NetworkInformation:true,Notification:true,OffscreenCanvas:true,OrientationSensor:true,PaymentRequest:true,Performance:true,PermissionStatus:true,PresentationAvailability:true,PresentationConnection:true,PresentationConnectionList:true,PresentationRequest:true,RelativeOrientationSensor:true,RemotePlayback:true,RTCDataChannel:true,DataChannel:true,RTCDTMFSender:true,RTCPeerConnection:true,webkitRTCPeerConnection:true,mozRTCPeerConnection:true,ScreenOrientation:true,Sensor:true,ServiceWorker:true,ServiceWorkerContainer:true,ServiceWorkerGlobalScope:true,ServiceWorkerRegistration:true,SharedWorker:true,SharedWorkerGlobalScope:true,SpeechRecognition:true,webkitSpeechRecognition:true,SpeechSynthesis:true,SpeechSynthesisUtterance:true,VR:true,VRDevice:true,VRDisplay:true,VRSession:true,VisualViewport:true,WebSocket:true,Window:true,DOMWindow:true,Worker:true,WorkerGlobalScope:true,WorkerPerformance:true,BluetoothDevice:true,BluetoothRemoteGATTCharacteristic:true,Clipboard:true,MojoInterfaceInterceptor:true,USB:true,IDBDatabase:true,IDBOpenDBRequest:true,IDBVersionChangeRequest:true,IDBRequest:true,IDBTransaction:true,AnalyserNode:true,RealtimeAnalyserNode:true,AudioBufferSourceNode:true,AudioDestinationNode:true,AudioNode:true,AudioScheduledSourceNode:true,AudioWorkletNode:true,BiquadFilterNode:true,ChannelMergerNode:true,AudioChannelMerger:true,ChannelSplitterNode:true,AudioChannelSplitter:true,ConstantSourceNode:true,ConvolverNode:true,DelayNode:true,DynamicsCompressorNode:true,GainNode:true,AudioGainNode:true,IIRFilterNode:true,MediaElementAudioSourceNode:true,MediaStreamAudioDestinationNode:true,MediaStreamAudioSourceNode:true,OscillatorNode:true,Oscillator:true,PannerNode:true,AudioPannerNode:true,webkitAudioPannerNode:true,ScriptProcessorNode:true,JavaScriptAudioNode:true,StereoPannerNode:true,WaveShaperNode:true,EventTarget:false,File:true,FileList:true,FileWriter:true,HTMLFormElement:true,Gamepad:true,History:true,HTMLCollection:true,HTMLFormControlsCollection:true,HTMLOptionsCollection:true,Location:true,MediaList:true,MIDIInputMap:true,MIDIOutputMap:true,MimeType:true,MimeTypeArray:true,Document:true,DocumentFragment:true,HTMLDocument:true,ShadowRoot:true,XMLDocument:true,Attr:true,DocumentType:true,Node:false,NodeList:true,RadioNodeList:true,Plugin:true,PluginArray:true,RTCStatsReport:true,HTMLSelectElement:true,SourceBuffer:true,SourceBufferList:true,SpeechGrammar:true,SpeechGrammarList:true,SpeechRecognitionResult:true,Storage:true,CSSStyleSheet:true,StyleSheet:true,TextTrack:true,TextTrackCue:true,VTTCue:true,TextTrackCueList:true,TextTrackList:true,TimeRanges:true,Touch:true,TouchList:true,TrackDefaultList:true,URL:true,VideoTrackList:true,CSSRuleList:true,ClientRect:true,DOMRect:true,GamepadList:true,NamedNodeMap:true,MozNamedAttrMap:true,SpeechRecognitionResultList:true,StyleSheetList:true,SVGLength:true,SVGLengthList:true,SVGNumber:true,SVGNumberList:true,SVGPointList:true,SVGStringList:true,SVGTransform:true,SVGTransformList:true,AudioBuffer:true,AudioParamMap:true,AudioTrackList:true,AudioContext:true,webkitAudioContext:true,BaseAudioContext:false,OfflineAudioContext:true}) +A.nS.$nativeSuperclassTag="ArrayBufferView" +A.ww.$nativeSuperclassTag="ArrayBufferView" +A.wx.$nativeSuperclassTag="ArrayBufferView" +A.jP.$nativeSuperclassTag="ArrayBufferView" +A.wy.$nativeSuperclassTag="ArrayBufferView" +A.wz.$nativeSuperclassTag="ArrayBufferView" +A.ex.$nativeSuperclassTag="ArrayBufferView" +A.xp.$nativeSuperclassTag="EventTarget" +A.xq.$nativeSuperclassTag="EventTarget" +A.xE.$nativeSuperclassTag="EventTarget" +A.xF.$nativeSuperclassTag="EventTarget"})() +Function.prototype.$0=function(){return this()} +Function.prototype.$1=function(a){return this(a)} +Function.prototype.$2=function(a,b){return this(a,b)} +Function.prototype.$3=function(a,b,c){return this(a,b,c)} +Function.prototype.$4=function(a,b,c,d){return this(a,b,c,d)} +Function.prototype.$1$1=function(a){return this(a)} +Function.prototype.$1$0=function(){return this()} +Function.prototype.$2$1=function(a){return this(a)} +Function.prototype.$5=function(a,b,c,d,e){return this(a,b,c,d,e)} +Function.prototype.$1$2=function(a,b){return this(a,b)} +Function.prototype.$1$5=function(a,b,c,d,e){return this(a,b,c,d,e)} +Function.prototype.$2$0=function(){return this()} +Function.prototype.$6=function(a,b,c,d,e,f){return this(a,b,c,d,e,f)} +convertAllToFastObject(w) +convertToFastObject($);(function(a){if(typeof document==="undefined"){a(null) +return}if(typeof document.currentScript!="undefined"){a(document.currentScript) +return}var s=document.scripts +function onLoad(b){for(var q=0;q=2.12.0 <4.0.0' - flutter: '>=2.0.0' - -dependencies: - flutter: - sdk: flutter - -dev_dependencies: - flutter_lints: ^3.0.1 - -topics: - - glow-effect - - custom-widget - - ripple-effect - - sound-wave - - avatar - -screenshots: - - description: 'Package Demo' - path: src/app.gif \ No newline at end of file diff --git a/src/app.gif b/src/app.gif deleted file mode 100644 index 36bc805..0000000 Binary files a/src/app.gif and /dev/null differ diff --git a/version.json b/version.json new file mode 100644 index 0000000..f112dc0 --- /dev/null +++ b/version.json @@ -0,0 +1 @@ +{"app_name":"example","version":"1.0.0","build_number":"1","package_name":"example"} \ No newline at end of file